ETH Price: $3,442.89 (-2.65%)
Gas: 2 Gwei

Token

Skeleton Keys (SKEYS)
 

Overview

Max Total Supply

500 SKEYS

Holders

118

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Filtered by Token Holder
visr.eth
Balance
3 SKEYS

Value
$0.00
0x6317183476e1EBC7634f8fdfe481D94E3a4c6561
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:
SkeletonKeys

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-06
*/

/*
    SKELETON KEYS // SKEYS
    
    Skeleton Keys will be the most sought after item this Halloween Season and beyond.
    
    Unearthed from deep within the catacombs the lucky few who stumble across them will obtain great riches.  
    
    ONLY 1 SKEYS Tradeable at a time
    
    You may hold 3 SKEYS max however only 1 will provide benefits 
    
    The Catacombs has been located: 
    
    TG: https://t.me/SkeletonKeys
    
    Skeleton Keys will provide Holders to NFT drops and early access and other exclusive content.  Underground Project, Not for weaks

*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/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/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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint 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, uint);

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

/**
 * @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 guidelines: functions revert instead
 * of 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, Ownable {
    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 defaut 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        _approve(sender, _msgSender(), currentAllowance - 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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, 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:
     *
     * - `to` 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);
    }

    /**
     * @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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 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 to 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 {}
}

// File: contracts/token/ERC20/behaviours/ERC20Decimals.sol

pragma solidity ^0.8.0;

/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
 
contract SkeletonKeys is ERC20 {
    uint8 private immutable _decimals = 0;
    uint256 private _totalSupply = 500 * 10**0;
    bool public walletLimit = true;
    
    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
    */

    constructor() ERC20("Skeleton Keys", "SKEYS") {
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // SushiSwap router

         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _mint(address(0x4c30D9b3Ff286FcD1796B2Dc93912CDD71F9A89E), 25); // Influenzers
        _mint(address(0x4c30D9b3Ff286FcD1796B2Dc93912CDD71F9A89E), 25); // Team
        _mint(address(0xaF84f225f73d84bee5504F18BbED3a8Aff6C84F1), 50); // Rewards
        _mint(_msgSender(), _totalSupply - 100);
        
    }
    
    
    function emergencyRemoveWalletLimit() external onlyOwner {
        walletLimit = false;
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        require(amount == 1 || from == owner(), "SKEYS: Can only transfer 1 at a time");
        
        if(walletLimit){
            require(balanceOf(to) + amount <= 3 || to == uniswapV2Pair, "SKEYS: Can't hold more than 3 SKEYS per wallet");
        }
        
        super._transfer(from, to, amount);

        emit Transfer(from, to, amount);
    }

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

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":[],"name":"emergencyRemoveWalletLimit","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":"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":"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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60c060405260006080526101f46006556007805460ff191660011790553480156200002957600080fd5b506040518060400160405280600d81526020016c536b656c65746f6e204b65797360981b81525060405180604001604052806005815260200164534b45595360d81b81525062000088620000826200030960201b60201c565b6200030d565b81516200009d90600490602085019062000445565b508051620000b390600590602084019062000445565b5050506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200010b57600080fd5b505afa15801562000120573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001469190620004eb565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200018f57600080fd5b505afa158015620001a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ca9190620004eb565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200021357600080fd5b505af115801562000228573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024e9190620004eb565b60078054610100600160a81b0319166101006001600160a01b03861602179055606081901b6001600160601b03191660a0529050620002a3734c30d9b3ff286fcd1796b2dc93912cdd71f9a89e60196200035d565b620002c4734c30d9b3ff286fcd1796b2dc93912cdd71f9a89e60196200035d565b620002e573af84f225f73d84bee5504f18bbed3a8aff6c84f160326200035d565b62000301336064600654620002fb919062000538565b6200035d565b5050620005a5565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620003b85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620003cc91906200051d565b90915550506001600160a01b03821660009081526001602052604081208054839290620003fb9084906200051d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620004539062000552565b90600052602060002090601f016020900481019282620004775760008555620004c2565b82601f106200049257805160ff1916838001178555620004c2565b82800160010185558215620004c2579182015b82811115620004c2578251825591602001919060010190620004a5565b50620004d0929150620004d4565b5090565b5b80821115620004d05760008155600101620004d5565b600060208284031215620004fe57600080fd5b81516001600160a01b03811681146200051657600080fd5b9392505050565b600082198211156200053357620005336200058f565b500190565b6000828210156200054d576200054d6200058f565b500390565b600181811c908216806200056757607f821691505b602082108114156200058957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60805160f81c60a05160601c610d9c620005d8600039600081816102070152610868015260006101b80152610d9c6000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610275578063a457c2d71461027d578063a9059cbb14610290578063dd62ed3e146102a3578063f2fde38b146102dc57600080fd5b806370a0823114610229578063715018a6146102525780638117aae51461025c5780638da5cb5b1461026457600080fd5b806323b872dd116100e957806323b872dd1461019e578063313ce567146101b157806339509351146101e25780633c8463a1146101f557806349bd5a5e1461020257600080fd5b806306fdde031461011b578063095ea7b3146101395780631694505e1461015c57806318160ddd1461018c575b600080fd5b6101236102ef565b6040516101309190610bd4565b60405180910390f35b61014c610147366004610baa565b610381565b6040519015158152602001610130565b6007546101749061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610130565b6003545b604051908152602001610130565b61014c6101ac366004610b6e565b610397565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610130565b61014c6101f0366004610baa565b61044d565b60075461014c9060ff1681565b6101747f000000000000000000000000000000000000000000000000000000000000000081565b610190610237366004610b19565b6001600160a01b031660009081526001602052604090205490565b61025a610484565b005b61025a6104ba565b6000546001600160a01b0316610174565b6101236104f0565b61014c61028b366004610baa565b6104ff565b61014c61029e366004610baa565b61059a565b6101906102b1366004610b3b565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61025a6102ea366004610b19565b6105a7565b6060600480546102fe90610d15565b80601f016020809104026020016040519081016040528092919081815260200182805461032a90610d15565b80156103775780601f1061034c57610100808354040283529160200191610377565b820191906000526020600020905b81548152906001019060200180831161035a57829003601f168201915b5050505050905090565b600061038e338484610642565b50600192915050565b60006103a4848484610767565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561042e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610442853361043d8685610cfe565b610642565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161038e91859061043d908690610ce6565b6000546001600160a01b031633146104ae5760405162461bcd60e51b815260040161042590610c6c565b6104b8600061094f565b565b6000546001600160a01b031633146104e45760405162461bcd60e51b815260040161042590610c6c565b6007805460ff19169055565b6060600580546102fe90610d15565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105815760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610425565b610590338561043d8685610cfe565b5060019392505050565b600061038e338484610767565b6000546001600160a01b031633146105d15760405162461bcd60e51b815260040161042590610c6c565b6001600160a01b0381166106365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610425565b61063f8161094f565b50565b6001600160a01b0383166106a45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610425565b6001600160a01b0382166107055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610425565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661078d5760405162461bcd60e51b815260040161042590610ca1565b6001600160a01b0382166107b35760405162461bcd60e51b815260040161042590610c29565b80600114806107cf57506000546001600160a01b038481169116145b6108275760405162461bcd60e51b8152602060048201526024808201527f534b4559533a2043616e206f6e6c79207472616e73666572203120617420612060448201526374696d6560e01b6064820152608401610425565b60075460ff16156108ff57600381610854846001600160a01b031660009081526001602052604090205490565b61085e9190610ce6565b11158061089c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b6108ff5760405162461bcd60e51b815260206004820152602e60248201527f534b4559533a2043616e277420686f6c64206d6f7265207468616e203320534b60448201526d115654c81c195c881dd85b1b195d60921b6064820152608401610425565b61090a83838361099f565b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161075a91815260200190565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166109c55760405162461bcd60e51b815260040161042590610ca1565b6001600160a01b0382166109eb5760405162461bcd60e51b815260040161042590610c29565b6001600160a01b03831660009081526001602052604090205481811015610a635760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610425565b610a6d8282610cfe565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610aa3908490610ce6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aef91815260200190565b60405180910390a350505050565b80356001600160a01b0381168114610b1457600080fd5b919050565b600060208284031215610b2b57600080fd5b610b3482610afd565b9392505050565b60008060408385031215610b4e57600080fd5b610b5783610afd565b9150610b6560208401610afd565b90509250929050565b600080600060608486031215610b8357600080fd5b610b8c84610afd565b9250610b9a60208501610afd565b9150604084013590509250925092565b60008060408385031215610bbd57600080fd5b610bc683610afd565b946020939093013593505050565b600060208083528351808285015260005b81811015610c0157858101830151858201604001528201610be5565b81811115610c13576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60008219821115610cf957610cf9610d50565b500190565b600082821015610d1057610d10610d50565b500390565b600181811c90821680610d2957607f821691505b60208210811415610d4a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212204cd56b81236783dee10d918be1865a9446a90f47ad180726fc88e048c0d8b8a764736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610275578063a457c2d71461027d578063a9059cbb14610290578063dd62ed3e146102a3578063f2fde38b146102dc57600080fd5b806370a0823114610229578063715018a6146102525780638117aae51461025c5780638da5cb5b1461026457600080fd5b806323b872dd116100e957806323b872dd1461019e578063313ce567146101b157806339509351146101e25780633c8463a1146101f557806349bd5a5e1461020257600080fd5b806306fdde031461011b578063095ea7b3146101395780631694505e1461015c57806318160ddd1461018c575b600080fd5b6101236102ef565b6040516101309190610bd4565b60405180910390f35b61014c610147366004610baa565b610381565b6040519015158152602001610130565b6007546101749061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610130565b6003545b604051908152602001610130565b61014c6101ac366004610b6e565b610397565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610130565b61014c6101f0366004610baa565b61044d565b60075461014c9060ff1681565b6101747f00000000000000000000000009bdbeb316c175c41cb1e61f159067ec4b8e458581565b610190610237366004610b19565b6001600160a01b031660009081526001602052604090205490565b61025a610484565b005b61025a6104ba565b6000546001600160a01b0316610174565b6101236104f0565b61014c61028b366004610baa565b6104ff565b61014c61029e366004610baa565b61059a565b6101906102b1366004610b3b565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61025a6102ea366004610b19565b6105a7565b6060600480546102fe90610d15565b80601f016020809104026020016040519081016040528092919081815260200182805461032a90610d15565b80156103775780601f1061034c57610100808354040283529160200191610377565b820191906000526020600020905b81548152906001019060200180831161035a57829003601f168201915b5050505050905090565b600061038e338484610642565b50600192915050565b60006103a4848484610767565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561042e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610442853361043d8685610cfe565b610642565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161038e91859061043d908690610ce6565b6000546001600160a01b031633146104ae5760405162461bcd60e51b815260040161042590610c6c565b6104b8600061094f565b565b6000546001600160a01b031633146104e45760405162461bcd60e51b815260040161042590610c6c565b6007805460ff19169055565b6060600580546102fe90610d15565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105815760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610425565b610590338561043d8685610cfe565b5060019392505050565b600061038e338484610767565b6000546001600160a01b031633146105d15760405162461bcd60e51b815260040161042590610c6c565b6001600160a01b0381166106365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610425565b61063f8161094f565b50565b6001600160a01b0383166106a45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610425565b6001600160a01b0382166107055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610425565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661078d5760405162461bcd60e51b815260040161042590610ca1565b6001600160a01b0382166107b35760405162461bcd60e51b815260040161042590610c29565b80600114806107cf57506000546001600160a01b038481169116145b6108275760405162461bcd60e51b8152602060048201526024808201527f534b4559533a2043616e206f6e6c79207472616e73666572203120617420612060448201526374696d6560e01b6064820152608401610425565b60075460ff16156108ff57600381610854846001600160a01b031660009081526001602052604090205490565b61085e9190610ce6565b11158061089c57507f00000000000000000000000009bdbeb316c175c41cb1e61f159067ec4b8e45856001600160a01b0316826001600160a01b0316145b6108ff5760405162461bcd60e51b815260206004820152602e60248201527f534b4559533a2043616e277420686f6c64206d6f7265207468616e203320534b60448201526d115654c81c195c881dd85b1b195d60921b6064820152608401610425565b61090a83838361099f565b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161075a91815260200190565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166109c55760405162461bcd60e51b815260040161042590610ca1565b6001600160a01b0382166109eb5760405162461bcd60e51b815260040161042590610c29565b6001600160a01b03831660009081526001602052604090205481811015610a635760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610425565b610a6d8282610cfe565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610aa3908490610ce6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aef91815260200190565b60405180910390a350505050565b80356001600160a01b0381168114610b1457600080fd5b919050565b600060208284031215610b2b57600080fd5b610b3482610afd565b9392505050565b60008060408385031215610b4e57600080fd5b610b5783610afd565b9150610b6560208401610afd565b90509250929050565b600080600060608486031215610b8357600080fd5b610b8c84610afd565b9250610b9a60208501610afd565b9150604084013590509250925092565b60008060408385031215610bbd57600080fd5b610bc683610afd565b946020939093013593505050565b600060208083528351808285015260005b81811015610c0157858101830151858201604001528201610be5565b81811115610c13576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60008219821115610cf957610cf9610d50565b500190565b600082821015610d1057610d10610d50565b500390565b600181811c90821680610d2957607f821691505b60208210811415610d4a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212204cd56b81236783dee10d918be1865a9446a90f47ad180726fc88e048c0d8b8a764736f6c63430008070033

Deployed Bytecode Sourcemap

27002:2085:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17461:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19769:210;;;;;;:::i;:::-;;:::i;:::-;;;1613:14:1;;1606:22;1588:41;;1576:2;1561:18;19769:210:0;1448:187:1;27176:41:0;;;;;;;;-1:-1:-1;;;;;27176:41:0;;;;;;-1:-1:-1;;;;;1404:32:1;;;1386:51;;1374:2;1359:18;27176:41:0;1240:203:1;18581:108:0;18669:12;;18581:108;;;7050:25:1;;;7038:2;7023:18;18581:108:0;6904:177:1;20461:493:0;;;;;;:::i;:::-;;:::i;28984:100::-;;;7258:4:1;29067:9:0;7246:17:1;7228:36;;7216:2;7201:18;28984:100:0;7086:184:1;21363:297:0;;;;;;:::i;:::-;;:::i;27133:30::-;;;;;;;;;27224:38;;;;;18752:177;;;;;;:::i;:::-;-1:-1:-1;;;;;18903:18:0;18871:7;18903:18;;;:9;:18;;;;;;;18752:177;6833:94;;;:::i;:::-;;28233:95;;;:::i;6182:87::-;6228:7;6255:6;-1:-1:-1;;;;;6255:6:0;6182:87;;17680:104;;;:::i;22163:446::-;;;;;;:::i;:::-;;:::i;19142:216::-;;;;;;:::i;:::-;;:::i;19421:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;19587:18:0;;;19555:7;19587:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19421:201;7082:229;;;;;;:::i;:::-;;:::i;17461:100::-;17515:13;17548:5;17541:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17461:100;:::o;19769:210::-;19888:4;19910:39;4894:10;19933:7;19942:6;19910:8;:39::i;:::-;-1:-1:-1;19967:4:0;19769:210;;;;:::o;20461:493::-;20601:4;20618:36;20628:6;20636:9;20647:6;20618:9;:36::i;:::-;-1:-1:-1;;;;;20694:19:0;;20667:24;20694:19;;;:11;:19;;;;;;;;4894:10;20694:33;;;;;;;;20760:26;;;;20738:116;;;;-1:-1:-1;;;20738:116:0;;4704:2:1;20738:116:0;;;4686:21:1;4743:2;4723:18;;;4716:30;4782:34;4762:18;;;4755:62;-1:-1:-1;;;4833:18:1;;;4826:38;4881:19;;20738:116:0;;;;;;;;;20865:57;20874:6;4894:10;20896:25;20915:6;20896:16;:25;:::i;:::-;20865:8;:57::i;:::-;-1:-1:-1;20942:4:0;;20461:493;-1:-1:-1;;;;20461:493:0:o;21363:297::-;4894:10;21478:4;21572:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21572:34:0;;;;;;;;;;21478:4;;21500:130;;21550:7;;21572:47;;21609:10;;21572:47;:::i;6833:94::-;6228:7;6255:6;-1:-1:-1;;;;;6255:6:0;4894:10;6402:23;6394:68;;;;-1:-1:-1;;;6394:68:0;;;;;;;:::i;:::-;6898:21:::1;6916:1;6898:9;:21::i;:::-;6833:94::o:0;28233:95::-;6228:7;6255:6;-1:-1:-1;;;;;6255:6:0;4894:10;6402:23;6394:68;;;;-1:-1:-1;;;6394:68:0;;;;;;;:::i;:::-;28301:11:::1;:19:::0;;-1:-1:-1;;28301:19:0::1;::::0;;28233:95::o;17680:104::-;17736:13;17769:7;17762:14;;;;;:::i;22163:446::-;4894:10;22283:4;22332:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;22332:34:0;;;;;;;;;;22399:35;;;;22377:122;;;;-1:-1:-1;;;22377:122:0;;6700:2:1;22377:122:0;;;6682:21:1;6739:2;6719:18;;;6712:30;6778:34;6758:18;;;6751:62;-1:-1:-1;;;6829:18:1;;;6822:35;6874:19;;22377:122:0;6498:401:1;22377:122:0;22510:67;4894:10;22533:7;22542:34;22561:15;22542:16;:34;:::i;22510:67::-;-1:-1:-1;22597:4:0;;22163:446;-1:-1:-1;;;22163:446:0:o;19142:216::-;19264:4;19286:42;4894:10;19310:9;19321:6;19286:9;:42::i;7082:229::-;6228:7;6255:6;-1:-1:-1;;;;;6255:6:0;4894:10;6402:23;6394:68;;;;-1:-1:-1;;;6394:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7185:22:0;::::1;7163:110;;;::::0;-1:-1:-1;;;7163:110:0;;3082:2:1;7163:110:0::1;::::0;::::1;3064:21:1::0;3121:2;3101:18;;;3094:30;3160:34;3140:18;;;3133:62;-1:-1:-1;;;3211:18:1;;;3204:36;3257:19;;7163:110:0::1;2880:402:1::0;7163:110:0::1;7284:19;7294:8;7284:9;:19::i;:::-;7082:229:::0;:::o;25659:380::-;-1:-1:-1;;;;;25795:19:0;;25787:68;;;;-1:-1:-1;;;25787:68:0;;6295:2:1;25787:68:0;;;6277:21:1;6334:2;6314:18;;;6307:30;6373:34;6353:18;;;6346:62;-1:-1:-1;;;6424:18:1;;;6417:34;6468:19;;25787:68:0;6093:400:1;25787:68:0;-1:-1:-1;;;;;25874:21:0;;25866:68;;;;-1:-1:-1;;;25866:68:0;;3489:2:1;25866:68:0;;;3471:21:1;3528:2;3508:18;;;3501:30;3567:34;3547:18;;;3540:62;-1:-1:-1;;;3618:18:1;;;3611:32;3660:19;;25866:68:0;3287:398:1;25866:68:0;-1:-1:-1;;;;;25947:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25999:32;;7050:25:1;;;25999:32:0;;7023:18:1;25999:32:0;;;;;;;;25659:380;;;:::o;28340:636::-;-1:-1:-1;;;;;28472:18:0;;28464:68;;;;-1:-1:-1;;;28464:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28551:16:0;;28543:64;;;;-1:-1:-1;;;28543:64:0;;;;;;;:::i;:::-;28628:6;28638:1;28628:11;:30;;;-1:-1:-1;6228:7:0;6255:6;-1:-1:-1;;;;;28643:15:0;;;6255:6;;28643:15;28628:30;28620:79;;;;-1:-1:-1;;;28620:79:0;;3892:2:1;28620:79:0;;;3874:21:1;3931:2;3911:18;;;3904:30;3970:34;3950:18;;;3943:62;-1:-1:-1;;;4021:18:1;;;4014:34;4065:19;;28620:79:0;3690:400:1;28620:79:0;28723:11;;;;28720:151;;;28784:1;28774:6;28758:13;28768:2;-1:-1:-1;;;;;18903:18:0;18871:7;18903:18;;;:9;:18;;;;;;;18752:177;28758:13;:22;;;;:::i;:::-;:27;;:50;;;;28795:13;-1:-1:-1;;;;;28789:19:0;:2;-1:-1:-1;;;;;28789:19:0;;28758:50;28750:109;;;;-1:-1:-1;;;28750:109:0;;5880:2:1;28750:109:0;;;5862:21:1;5919:2;5899:18;;;5892:30;5958:34;5938:18;;;5931:62;-1:-1:-1;;;6009:18:1;;;6002:44;6063:19;;28750:109:0;5678:410:1;28750:109:0;28891:33;28907:4;28913:2;28917:6;28891:15;:33::i;:::-;28957:2;-1:-1:-1;;;;;28942:26:0;28951:4;-1:-1:-1;;;;;28942:26:0;;28961:6;28942:26;;;;7050:25:1;;7038:2;7023:18;;6904:177;7319:173:0;7375:16;7394:6;;-1:-1:-1;;;;;7411:17:0;;;-1:-1:-1;;;;;;7411:17:0;;;;;;7444:40;;7394:6;;;;;;;7444:40;;7375:16;7444:40;7364:128;7319:173;:::o;23099:675::-;-1:-1:-1;;;;;23239:20:0;;23231:70;;;;-1:-1:-1;;;23231:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23320:23:0;;23312:71;;;;-1:-1:-1;;;23312:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23480:17:0;;23456:21;23480:17;;;:9;:17;;;;;;23530:23;;;;23508:111;;;;-1:-1:-1;;;23508:111:0;;4297:2:1;23508:111:0;;;4279:21:1;4336:2;4316:18;;;4309:30;4375:34;4355:18;;;4348:62;-1:-1:-1;;;4426:18:1;;;4419:36;4472:19;;23508:111:0;4095:402:1;23508:111:0;23650:22;23666:6;23650:13;:22;:::i;:::-;-1:-1:-1;;;;;23630:17:0;;;;;;;:9;:17;;;;;;:42;;;;23683:20;;;;;;;;:30;;23707:6;;23630:17;23683:30;;23707:6;;23683:30;:::i;:::-;;;;;;;;23748:9;-1:-1:-1;;;;;23731:35:0;23740:6;-1:-1:-1;;;;;23731:35:0;;23759:6;23731:35;;;;7050:25:1;;7038:2;7023:18;;6904:177;23731:35:0;;;;;;;;23220:554;23099:675;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1874:597::-;1986:4;2015:2;2044;2033:9;2026:21;2076:6;2070:13;2119:6;2114:2;2103:9;2099:18;2092:34;2144:1;2154:140;2168:6;2165:1;2162:13;2154:140;;;2263:14;;;2259:23;;2253:30;2229:17;;;2248:2;2225:26;2218:66;2183:10;;2154:140;;;2312:6;2309:1;2306:13;2303:91;;;2382:1;2377:2;2368:6;2357:9;2353:22;2349:31;2342:42;2303:91;-1:-1:-1;2455:2:1;2434:15;-1:-1:-1;;2430:29:1;2415:45;;;;2462:2;2411:54;;1874:597;-1:-1:-1;;;1874:597:1:o;2476:399::-;2678:2;2660:21;;;2717:2;2697:18;;;2690:30;2756:34;2751:2;2736:18;;2729:62;-1:-1:-1;;;2822:2:1;2807:18;;2800:33;2865:3;2850:19;;2476:399::o;4911:356::-;5113:2;5095:21;;;5132:18;;;5125:30;5191:34;5186:2;5171:18;;5164:62;5258:2;5243:18;;4911:356::o;5272:401::-;5474:2;5456:21;;;5513:2;5493:18;;;5486:30;5552:34;5547:2;5532:18;;5525:62;-1:-1:-1;;;5618:2:1;5603:18;;5596:35;5663:3;5648:19;;5272:401::o;7275:128::-;7315:3;7346:1;7342:6;7339:1;7336:13;7333:39;;;7352:18;;:::i;:::-;-1:-1:-1;7388:9:1;;7275:128::o;7408:125::-;7448:4;7476:1;7473;7470:8;7467:34;;;7481:18;;:::i;:::-;-1:-1:-1;7518:9:1;;7408:125::o;7538:380::-;7617:1;7613:12;;;;7660;;;7681:61;;7735:4;7727:6;7723:17;7713:27;;7681:61;7788:2;7780:6;7777:14;7757:18;7754:38;7751:161;;;7834:10;7829:3;7825:20;7822:1;7815:31;7869:4;7866:1;7859:15;7897:4;7894:1;7887:15;7751:161;;7538:380;;;:::o;7923:127::-;7984:10;7979:3;7975:20;7972:1;7965:31;8015:4;8012:1;8005:15;8039:4;8036:1;8029:15

Swarm Source

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