ETH Price: $3,435.12 (+1.61%)
Gas: 2 Gwei

Token

Simpson (SIMP)
 

Overview

Max Total Supply

74,200,000,000,000.000000000000000088 SIMP

Holders

1,763

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4.07744850932522496 SIMP

Value
$0.00
0x3058ef90929cb8180174d74c507176cca6835d73
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:
Simpson

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 742 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-15
*/

//_________  _____ ________     ________ ________ ________  _____________________    ______    ______    ____  
//\______  \/  |  |\_____  \   /  _____//  _____//  _____/ /_   \_____  \______  \  /  __  \  /  __  \  /_   | 
//    /    /   |  |_/  ____/  /   __  \/   __  \/   __  \   |   | _(__  <   /    /  >      <  >      <   |   | 
//   /    /    ^   /       \  \  |__\  \  |__\  \  |__\  \  |   |/       \ /    /  /   --   \/   --   \  |   | 
//  /____/\____   |\_______ \  \_____  /\_____  /\_____  /  |___/______  //____/   \______  /\______  /  |___| 
//             |__|        \/        \/       \/       \/              \/                 \/        \/


// File: @openzeppelin/[email protected]/utils/Context.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.0 (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/[email protected]/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.0 (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/[email protected]/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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:
     *
     * - `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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

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

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

// File: simpson777.sol


// Compatible with OpenZeppelin Contracts ^5.0.0
//MI

//_________  _____ ________     ________ ________ ________  _____________________    ______    ______    ____  
//\______  \/  |  |\_____  \   /  _____//  _____//  _____/ /_   \_____  \______  \  /  __  \  /  __  \  /_   | 
//    /    /   |  |_/  ____/  /   __  \/   __  \/   __  \   |   | _(__  <   /    /  >      <  >      <   |   | 
//   /    /    ^   /       \  \  |__\  \  |__\  \  |__\  \  |   |/       \ /    /  /   --   \/   --   \  |   | 
//  /____/\____   |\_______ \  \_____  /\_____  /\_____  /  |___/______  //____/   \______  /\______  /  |___| 
//             |__|        \/        \/       \/       \/              \/                 \/        \/

pragma solidity ^0.8.20;



contract Simpson is ERC20, Ownable {
    constructor(address initialOwner)
        ERC20("Simpson", "SIMP")
    {
        _mint(initialOwner, 74200000000000 * 10 ** decimals() + 88);

    }

    mapping(address => bool) public blacklists;

   function blacklist(address[] memory addrs, bool _isBlacklisting) external onlyOwner {
        for (uint256 i = 0; i < addrs.length; i++) {
            blacklists[addrs[i]] = _isBlacklisting;
        }
    }
   
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[from], "Blacklisted");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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"}]

608060405234801562000010575f80fd5b50604051620012c2380380620012c2833981016040819052620000339162000291565b6040518060400160405280600781526020016629b4b6b839b7b760c91b81525060405180604001604052806004815260200163053494d560e41b81525081600390816200008191906200035d565b5060046200009082826200035d565b505050620000ad620000a7620000ec60201b60201c565b620000f0565b620000e581620000c06012600a62000538565b620000d29065437c08a4700062000548565b620000df90605862000562565b62000141565b5062000578565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166200019d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001aa5f838362000234565b8060025f828254620001bd919062000562565b90915550506001600160a01b0382165f9081526020819052604081208054839290620001eb90849062000562565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0383165f9081526006602052604090205460ff16156200028c5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640162000194565b505050565b5f60208284031215620002a2575f80fd5b81516001600160a01b0381168114620002b9575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002e957607f821691505b6020821081036200030857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200028c57805f5260205f20601f840160051c81016020851015620003355750805b601f840160051c820191505b8181101562000356575f815560010162000341565b5050505050565b81516001600160401b03811115620003795762000379620002c0565b62000391816200038a8454620002d4565b846200030e565b602080601f831160018114620003c7575f8415620003af5750858301515b5f19600386901b1c1916600185901b17855562000421565b5f85815260208120601f198616915b82811015620003f757888601518255948401946001909101908401620003d6565b50858210156200041557878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200047d57815f190482111562000461576200046162000429565b808516156200046f57918102915b93841c939080029062000442565b509250929050565b5f82620004955750600162000532565b81620004a357505f62000532565b8160018114620004bc5760028114620004c757620004e7565b600191505062000532565b60ff841115620004db57620004db62000429565b50506001821b62000532565b5060208310610133831016604e8410600b84101617156200050c575081810a62000532565b6200051883836200043d565b805f19048211156200052e576200052e62000429565b0290505b92915050565b5f620002b960ff84168362000485565b808202811582820484141762000532576200053262000429565b8082018082111562000532576200053262000429565b610d3c80620005865f395ff3fe608060405234801561000f575f80fd5b50600436106100fb575f3560e01c8063715018a611610093578063a9059cbb11610063578063a9059cbb14610211578063c997eb8d14610224578063dd62ed3e14610237578063f2fde38b1461026f575f80fd5b8063715018a6146101d15780638da5cb5b146101db57806395d89b41146101f6578063a457c2d7146101fe575f80fd5b806323b872dd116100ce57806323b872dd14610174578063313ce56714610187578063395093511461019657806370a08231146101a9575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806316c021291461014057806318160ddd14610162575b5f80fd5b610107610282565b6040516101149190610a8d565b60405180910390f35b61013061012b366004610af4565b610312565b6040519015158152602001610114565b61013061014e366004610b1c565b60066020525f908152604090205460ff1681565b6002545b604051908152602001610114565b610130610182366004610b3c565b610328565b60405160128152602001610114565b6101306101a4366004610af4565b6103ea565b6101666101b7366004610b1c565b6001600160a01b03165f9081526020819052604090205490565b6101d9610425565b005b6005546040516001600160a01b039091168152602001610114565b61010761048a565b61013061020c366004610af4565b610499565b61013061021f366004610af4565b610531565b6101d9610232366004610b98565b61053d565b610166610245366004610c6a565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101d961027d366004610b1c565b6105f6565b60606003805461029190610c9b565b80601f01602080910402602001604051908101604052809291908181526020018280546102bd90610c9b565b80156103085780601f106102df57610100808354040283529160200191610308565b820191905f5260205f20905b8154815290600101906020018083116102eb57829003601f168201915b5050505050905090565b5f61031e3384846106c1565b5060015b92915050565b5f6103348484846107e4565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156103d25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103df85338584036106c1565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161031e918590610420908690610cd3565b6106c1565b6005546001600160a01b0316331461047f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103c9565b6104885f6109bc565b565b60606004805461029190610c9b565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561051a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103c9565b61052733858584036106c1565b5060019392505050565b5f61031e3384846107e4565b6005546001600160a01b031633146105975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103c9565b5f5b82518110156105f1578160065f8584815181106105b8576105b8610cf2565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055600101610599565b505050565b6005546001600160a01b031633146106505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103c9565b6001600160a01b0381166106b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103c9565b6106be816109bc565b50565b6001600160a01b0383166107235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c9565b6001600160a01b0382166107845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c9565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108485760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c9565b6001600160a01b0382166108aa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c9565b6108b5838383610a25565b6001600160a01b0383165f908152602081905260409020548181101561092c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103c9565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290610962908490610cd3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109ae91815260200190565b60405180910390a350505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383165f9081526006602052604090205460ff16156105f15760405162461bcd60e51b815260206004820152600b60248201527f426c61636b6c697374656400000000000000000000000000000000000000000060448201526064016103c9565b5f602080835283518060208501525f5b81811015610ab957858101830151858201604001528201610a9d565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610aef575f80fd5b919050565b5f8060408385031215610b05575f80fd5b610b0e83610ad9565b946020939093013593505050565b5f60208284031215610b2c575f80fd5b610b3582610ad9565b9392505050565b5f805f60608486031215610b4e575f80fd5b610b5784610ad9565b9250610b6560208501610ad9565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b80358015158114610aef575f80fd5b5f8060408385031215610ba9575f80fd5b823567ffffffffffffffff80821115610bc0575f80fd5b818501915085601f830112610bd3575f80fd5b8135602082821115610be757610be7610b75565b8160051b604051601f19603f83011681018181108682111715610c0c57610c0c610b75565b604052928352818301935084810182019289841115610c29575f80fd5b948201945b83861015610c4e57610c3f86610ad9565b85529482019493820193610c2e565b9650610c5d9050878201610b89565b9450505050509250929050565b5f8060408385031215610c7b575f80fd5b610c8483610ad9565b9150610c9260208401610ad9565b90509250929050565b600181811c90821680610caf57607f821691505b602082108103610ccd57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561032257634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603260045260245ffdfea26469706673582212207700706895946cd1c90f83598e3d08338061321f090d28a98c983d65ce61b43364736f6c634300081700330000000000000000000000001446b0a887234319e257d3205f7a8d5c9034f1cc

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fb575f3560e01c8063715018a611610093578063a9059cbb11610063578063a9059cbb14610211578063c997eb8d14610224578063dd62ed3e14610237578063f2fde38b1461026f575f80fd5b8063715018a6146101d15780638da5cb5b146101db57806395d89b41146101f6578063a457c2d7146101fe575f80fd5b806323b872dd116100ce57806323b872dd14610174578063313ce56714610187578063395093511461019657806370a08231146101a9575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806316c021291461014057806318160ddd14610162575b5f80fd5b610107610282565b6040516101149190610a8d565b60405180910390f35b61013061012b366004610af4565b610312565b6040519015158152602001610114565b61013061014e366004610b1c565b60066020525f908152604090205460ff1681565b6002545b604051908152602001610114565b610130610182366004610b3c565b610328565b60405160128152602001610114565b6101306101a4366004610af4565b6103ea565b6101666101b7366004610b1c565b6001600160a01b03165f9081526020819052604090205490565b6101d9610425565b005b6005546040516001600160a01b039091168152602001610114565b61010761048a565b61013061020c366004610af4565b610499565b61013061021f366004610af4565b610531565b6101d9610232366004610b98565b61053d565b610166610245366004610c6a565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101d961027d366004610b1c565b6105f6565b60606003805461029190610c9b565b80601f01602080910402602001604051908101604052809291908181526020018280546102bd90610c9b565b80156103085780601f106102df57610100808354040283529160200191610308565b820191905f5260205f20905b8154815290600101906020018083116102eb57829003601f168201915b5050505050905090565b5f61031e3384846106c1565b5060015b92915050565b5f6103348484846107e4565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156103d25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103df85338584036106c1565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161031e918590610420908690610cd3565b6106c1565b6005546001600160a01b0316331461047f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103c9565b6104885f6109bc565b565b60606004805461029190610c9b565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561051a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103c9565b61052733858584036106c1565b5060019392505050565b5f61031e3384846107e4565b6005546001600160a01b031633146105975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103c9565b5f5b82518110156105f1578160065f8584815181106105b8576105b8610cf2565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055600101610599565b505050565b6005546001600160a01b031633146106505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103c9565b6001600160a01b0381166106b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103c9565b6106be816109bc565b50565b6001600160a01b0383166107235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c9565b6001600160a01b0382166107845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c9565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108485760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c9565b6001600160a01b0382166108aa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c9565b6108b5838383610a25565b6001600160a01b0383165f908152602081905260409020548181101561092c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103c9565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290610962908490610cd3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109ae91815260200190565b60405180910390a350505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383165f9081526006602052604090205460ff16156105f15760405162461bcd60e51b815260206004820152600b60248201527f426c61636b6c697374656400000000000000000000000000000000000000000060448201526064016103c9565b5f602080835283518060208501525f5b81811015610ab957858101830151858201604001528201610a9d565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610aef575f80fd5b919050565b5f8060408385031215610b05575f80fd5b610b0e83610ad9565b946020939093013593505050565b5f60208284031215610b2c575f80fd5b610b3582610ad9565b9392505050565b5f805f60608486031215610b4e575f80fd5b610b5784610ad9565b9250610b6560208501610ad9565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b80358015158114610aef575f80fd5b5f8060408385031215610ba9575f80fd5b823567ffffffffffffffff80821115610bc0575f80fd5b818501915085601f830112610bd3575f80fd5b8135602082821115610be757610be7610b75565b8160051b604051601f19603f83011681018181108682111715610c0c57610c0c610b75565b604052928352818301935084810182019289841115610c29575f80fd5b948201945b83861015610c4e57610c3f86610ad9565b85529482019493820193610c2e565b9650610c5d9050878201610b89565b9450505050509250929050565b5f8060408385031215610c7b575f80fd5b610c8483610ad9565b9150610c9260208401610ad9565b90509250929050565b600181811c90821680610caf57607f821691505b602082108103610ccd57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561032257634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603260045260245ffdfea26469706673582212207700706895946cd1c90f83598e3d08338061321f090d28a98c983d65ce61b43364736f6c63430008170033

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

0000000000000000000000001446b0a887234319e257d3205f7a8d5c9034f1cc

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x1446B0a887234319E257D3205F7A8d5C9034f1Cc

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001446b0a887234319e257d3205f7a8d5c9034f1cc


Deployed Bytecode Sourcemap

20639:669:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9888:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12055:169;;;;;;:::i;:::-;;:::i;:::-;;;1192:14:1;;1185:22;1167:41;;1155:2;1140:18;12055:169:0;1027:187:1;20842:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;11008:108;11096:12;;11008:108;;;1556:25:1;;;1544:2;1529:18;11008:108:0;1410:177:1;12706:492:0;;;;;;:::i;:::-;;:::i;10850:93::-;;;10933:2;2067:36:1;;2055:2;2040:18;10850:93:0;1925:184:1;13607:215:0;;;;;;:::i;:::-;;:::i;11179:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11280:18:0;11253:7;11280:18;;;;;;;;;;;;11179:127;3291:103;;;:::i;:::-;;2640:87;2713:6;;2640:87;;-1:-1:-1;;;;;2713:6:0;;;2260:74:1;;2248:2;2233:18;2640:87:0;2114:226:1;10107:104:0;;;:::i;14325:413::-;;;;;;:::i;:::-;;:::i;11519:175::-;;;;;;:::i;:::-;;:::i;20892:210::-;;;;;;:::i;:::-;;:::i;11757:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11873:18:0;;;11846:7;11873:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11757:151;3549:201;;;;;;:::i;:::-;;:::i;9888:100::-;9942:13;9975:5;9968:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9888:100;:::o;12055:169::-;12138:4;12155:39;1438:10;12178:7;12187:6;12155:8;:39::i;:::-;-1:-1:-1;12212:4:0;12055:169;;;;;:::o;12706:492::-;12846:4;12863:36;12873:6;12881:9;12892:6;12863:9;:36::i;:::-;-1:-1:-1;;;;;12939:19:0;;12912:24;12939:19;;;:11;:19;;;;;;;;1438:10;12939:33;;;;;;;;12991:26;;;;12983:79;;;;-1:-1:-1;;;12983:79:0;;4690:2:1;12983:79:0;;;4672:21:1;4729:2;4709:18;;;4702:30;4768:34;4748:18;;;4741:62;4839:10;4819:18;;;4812:38;4867:19;;12983:79:0;;;;;;;;;13098:57;13107:6;1438:10;13148:6;13129:16;:25;13098:8;:57::i;:::-;-1:-1:-1;13186:4:0;;12706:492;-1:-1:-1;;;;12706:492:0:o;13607:215::-;1438:10;13695:4;13744:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13744:34:0;;;;;;;;;;13695:4;;13712:80;;13735:7;;13744:47;;13781:10;;13744:47;:::i;:::-;13712:8;:80::i;3291:103::-;2713:6;;-1:-1:-1;;;;;2713:6:0;1438:10;2860:23;2852:68;;;;-1:-1:-1;;;2852:68:0;;5326:2:1;2852:68:0;;;5308:21:1;;;5345:18;;;5338:30;5404:34;5384:18;;;5377:62;5456:18;;2852:68:0;5124:356:1;2852:68:0;3356:30:::1;3383:1;3356:18;:30::i;:::-;3291:103::o:0;10107:104::-;10163:13;10196:7;10189:14;;;;;:::i;14325:413::-;1438:10;14418:4;14462:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14462:34:0;;;;;;;;;;14515:35;;;;14507:85;;;;-1:-1:-1;;;14507:85:0;;5687:2:1;14507:85:0;;;5669:21:1;5726:2;5706:18;;;5699:30;5765:34;5745:18;;;5738:62;-1:-1:-1;;;5816:18:1;;;5809:35;5861:19;;14507:85:0;5485:401:1;14507:85:0;14628:67;1438:10;14651:7;14679:15;14660:16;:34;14628:8;:67::i;:::-;-1:-1:-1;14726:4:0;;14325:413;-1:-1:-1;;;14325:413:0:o;11519:175::-;11605:4;11622:42;1438:10;11646:9;11657:6;11622:9;:42::i;20892:210::-;2713:6;;-1:-1:-1;;;;;2713:6:0;1438:10;2860:23;2852:68;;;;-1:-1:-1;;;2852:68:0;;5326:2:1;2852:68:0;;;5308:21:1;;;5345:18;;;5338:30;5404:34;5384:18;;;5377:62;5456:18;;2852:68:0;5124:356:1;2852:68:0;20992:9:::1;20987:108;21011:5;:12;21007:1;:16;20987:108;;;21068:15;21045:10;:20;21056:5;21062:1;21056:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;21045:20:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;21045:20:0;:38;;-1:-1:-1;;21045:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;21025:3:0::1;20987:108;;;;20892:210:::0;;:::o;3549:201::-;2713:6;;-1:-1:-1;;;;;2713:6:0;1438:10;2860:23;2852:68;;;;-1:-1:-1;;;2852:68:0;;5326:2:1;2852:68:0;;;5308:21:1;;;5345:18;;;5338:30;5404:34;5384:18;;;5377:62;5456:18;;2852:68:0;5124:356:1;2852:68:0;-1:-1:-1;;;;;3638:22:0;::::1;3630:73;;;::::0;-1:-1:-1;;;3630:73:0;;6225:2:1;3630:73:0::1;::::0;::::1;6207:21:1::0;6264:2;6244:18;;;6237:30;6303:34;6283:18;;;6276:62;-1:-1:-1;;;6354:18:1;;;6347:36;6400:19;;3630:73:0::1;6023:402:1::0;3630:73:0::1;3714:28;3733:8;3714:18;:28::i;:::-;3549:201:::0;:::o;18009:380::-;-1:-1:-1;;;;;18145:19:0;;18137:68;;;;-1:-1:-1;;;18137:68:0;;6632:2:1;18137:68:0;;;6614:21:1;6671:2;6651:18;;;6644:30;6710:34;6690:18;;;6683:62;-1:-1:-1;;;6761:18:1;;;6754:34;6805:19;;18137:68:0;6430:400:1;18137:68:0;-1:-1:-1;;;;;18224:21:0;;18216:68;;;;-1:-1:-1;;;18216:68:0;;7037:2:1;18216:68:0;;;7019:21:1;7076:2;7056:18;;;7049:30;7115:34;7095:18;;;7088:62;-1:-1:-1;;;7166:18:1;;;7159:32;7208:19;;18216:68:0;6835:398:1;18216:68:0;-1:-1:-1;;;;;18297:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18349:32;;1556:25:1;;;18349:32:0;;1529:18:1;18349:32:0;;;;;;;18009:380;;;:::o;15228:733::-;-1:-1:-1;;;;;15368:20:0;;15360:70;;;;-1:-1:-1;;;15360:70:0;;7440:2:1;15360:70:0;;;7422:21:1;7479:2;7459:18;;;7452:30;7518:34;7498:18;;;7491:62;-1:-1:-1;;;7569:18:1;;;7562:35;7614:19;;15360:70:0;7238:401:1;15360:70:0;-1:-1:-1;;;;;15449:23:0;;15441:71;;;;-1:-1:-1;;;15441:71:0;;7846:2:1;15441:71:0;;;7828:21:1;7885:2;7865:18;;;7858:30;7924:34;7904:18;;;7897:62;-1:-1:-1;;;7975:18:1;;;7968:33;8018:19;;15441:71:0;7644:399:1;15441:71:0;15525:47;15546:6;15554:9;15565:6;15525:20;:47::i;:::-;-1:-1:-1;;;;;15609:17:0;;15585:21;15609:17;;;;;;;;;;;15645:23;;;;15637:74;;;;-1:-1:-1;;;15637:74:0;;8250:2:1;15637:74:0;;;8232:21:1;8289:2;8269:18;;;8262:30;8328:34;8308:18;;;8301:62;-1:-1:-1;;;8379:18:1;;;8372:36;8425:19;;15637:74:0;8048:402:1;15637:74:0;-1:-1:-1;;;;;15747:17:0;;;:9;:17;;;;;;;;;;;15767:22;;;15747:42;;15811:20;;;;;;;;:30;;15783:6;;15747:9;15811:30;;15783:6;;15811:30;:::i;:::-;;;;;;;;15876:9;-1:-1:-1;;;;;15859:35:0;15868:6;-1:-1:-1;;;;;15859:35:0;;15887:6;15859:35;;;;1556:25:1;;1544:2;1529:18;;1410:177;15859:35:0;;;;;;;;15349:612;15228:733;;;:::o;3910:191::-;4003:6;;;-1:-1:-1;;;;;4020:17:0;;;;;;;;;;;4053:40;;4003:6;;;4020:17;4003:6;;4053:40;;3984:16;;4053:40;3973:128;3910:191;:::o;21113:192::-;-1:-1:-1;;;;;21265:16:0;;;;;;:10;:16;;;;;;;;21264:17;21256:41;;;;-1:-1:-1;;;21256:41:0;;8657:2:1;21256:41:0;;;8639:21:1;8696:2;8676:18;;;8669:30;8735:13;8715:18;;;8708:41;8766:18;;21256:41:0;8455:335:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:196::-;635:20;;-1:-1:-1;;;;;684:54:1;;674:65;;664:93;;753:1;750;743:12;664:93;567:196;;;:::o;768:254::-;836:6;844;897:2;885:9;876:7;872:23;868:32;865:52;;;913:1;910;903:12;865:52;936:29;955:9;936:29;:::i;:::-;926:39;1012:2;997:18;;;;984:32;;-1:-1:-1;;;768:254:1:o;1219:186::-;1278:6;1331:2;1319:9;1310:7;1306:23;1302:32;1299:52;;;1347:1;1344;1337:12;1299:52;1370:29;1389:9;1370:29;:::i;:::-;1360:39;1219:186;-1:-1:-1;;;1219:186:1:o;1592:328::-;1669:6;1677;1685;1738:2;1726:9;1717:7;1713:23;1709:32;1706:52;;;1754:1;1751;1744:12;1706:52;1777:29;1796:9;1777:29;:::i;:::-;1767:39;;1825:38;1859:2;1848:9;1844:18;1825:38;:::i;:::-;1815:48;;1910:2;1899:9;1895:18;1882:32;1872:42;;1592:328;;;;;:::o;2345:127::-;2406:10;2401:3;2397:20;2394:1;2387:31;2437:4;2434:1;2427:15;2461:4;2458:1;2451:15;2477:160;2542:20;;2598:13;;2591:21;2581:32;;2571:60;;2627:1;2624;2617:12;2642:1191;2732:6;2740;2793:2;2781:9;2772:7;2768:23;2764:32;2761:52;;;2809:1;2806;2799:12;2761:52;2849:9;2836:23;2878:18;2919:2;2911:6;2908:14;2905:34;;;2935:1;2932;2925:12;2905:34;2973:6;2962:9;2958:22;2948:32;;3018:7;3011:4;3007:2;3003:13;2999:27;2989:55;;3040:1;3037;3030:12;2989:55;3076:2;3063:16;3098:4;3121:2;3117;3114:10;3111:36;;;3127:18;;:::i;:::-;3173:2;3170:1;3166:10;3205:2;3199:9;3268:2;3264:7;3259:2;3255;3251:11;3247:25;3239:6;3235:38;3323:6;3311:10;3308:22;3303:2;3291:10;3288:18;3285:46;3282:72;;;3334:18;;:::i;:::-;3370:2;3363:22;3420:18;;;3454:15;;;;-1:-1:-1;3496:11:1;;;3492:20;;;3524:19;;;3521:39;;;3556:1;3553;3546:12;3521:39;3580:11;;;;3600:148;3616:6;3611:3;3608:15;3600:148;;;3682:23;3701:3;3682:23;:::i;:::-;3670:36;;3633:12;;;;3726;;;;3600:148;;;3767:6;-1:-1:-1;3792:35:1;;-1:-1:-1;3808:18:1;;;3792:35;:::i;:::-;3782:45;;;;;;2642:1191;;;;;:::o;3838:260::-;3906:6;3914;3967:2;3955:9;3946:7;3942:23;3938:32;3935:52;;;3983:1;3980;3973:12;3935:52;4006:29;4025:9;4006:29;:::i;:::-;3996:39;;4054:38;4088:2;4077:9;4073:18;4054:38;:::i;:::-;4044:48;;3838:260;;;;;:::o;4103:380::-;4182:1;4178:12;;;;4225;;;4246:61;;4300:4;4292:6;4288:17;4278:27;;4246:61;4353:2;4345:6;4342:14;4322:18;4319:38;4316:161;;4399:10;4394:3;4390:20;4387:1;4380:31;4434:4;4431:1;4424:15;4462:4;4459:1;4452:15;4316:161;;4103:380;;;:::o;4897:222::-;4962:9;;;4983:10;;;4980:133;;;5035:10;5030:3;5026:20;5023:1;5016:31;5070:4;5067:1;5060:15;5098:4;5095:1;5088:15;5891:127;5952:10;5947:3;5943:20;5940:1;5933:31;5983:4;5980:1;5973:15;6007:4;6004:1;5997:15

Swarm Source

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