ETH Price: $3,166.30 (-7.39%)
Gas: 4 Gwei

Token

Do You Like Money? (MONEY)
 

Overview

Max Total Supply

100,000,000 MONEY

Holders

157

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
227,146.602218659920301135 MONEY

Value
$0.00
0x50152Eb210c294e0f57331c27609C68a91465E2F
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:
DoYouLikeMoney

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-16
*/

// website: https://doyoulikemoney.lol/
// Twitter: https://twitter.com/gobuy_money
// Telegram: https://t.me/Money_erc20

// SPDX-License-Identifier: MIT
// 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/contracts/access/[email protected]


// 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/contracts/token/ERC20/[email protected]


// 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/contracts/token/ERC20/extensions/[email protected]


// 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/contracts/token/ERC20/[email protected]


// 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 {}
}

pragma solidity ^0.8.0;


contract DoYouLikeMoney is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    bool private tradingActive;
    mapping(address => bool) public blacklists;

    constructor(uint256 _totalSupply) ERC20("Do You Like Money?", "MONEY") {
        _mint(msg.sender, _totalSupply);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function enableTrading() external onlyOwner {
        tradingActive = true;
    }

    function setRule(bool _limited, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");
        if (from!= owner() && to!= owner()) require(tradingActive, "Trading not yet enabled."); //transfers disabled before openTrading

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":"_address","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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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"}]

60806040523480156200001157600080fd5b506040516200178c3803806200178c833981016040819052620000349162000462565b60405180604001604052806012815260200171446f20596f75204c696b65204d6f6e65793f60701b815250604051806040016040528060058152602001644d4f4e455960d81b8152506200009762000091620000de60201b60201c565b620000e2565b8151620000ac906004906020850190620003bc565b508051620000c2906005906020840190620003bc565b505050620000d733826200013260201b60201c565b5062000599565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001645760405162461bcd60e51b81526004016200015b90620004d2565b60405180910390fd5b620001726000838362000214565b806003600082825462000186919062000537565b90915550506001600160a01b03821660009081526001602052604081208054839290620001b590849062000537565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001fa9085906200052e565b60405180910390a362000210600083836200038d565b5050565b6001600160a01b0382166000908152600a602052604090205460ff161580156200025757506001600160a01b0383166000908152600a602052604090205460ff16155b620002765760405162461bcd60e51b81526004016200015b9062000509565b6200028062000392565b6001600160a01b0316836001600160a01b031614158015620002bd5750620002a762000392565b6001600160a01b0316826001600160a01b031614155b15620002ef57600954600160a01b900460ff16620002ef5760405162461bcd60e51b81526004016200015b906200049b565b60065460ff1680156200030f57506009546001600160a01b038481169116145b156200038d57600754816200032f84620003a160201b620005221760201c565b6200033b919062000537565b111580156200036e5750600854816200035f84620003a160201b620005221760201c565b6200036b919062000537565b10155b6200038d5760405162461bcd60e51b81526004016200015b906200047b565b505050565b6000546001600160a01b031690565b6001600160a01b031660009081526001602052604090205490565b828054620003ca906200055c565b90600052602060002090601f016020900481019282620003ee576000855562000439565b82601f106200040957805160ff191683800117855562000439565b8280016001018555821562000439579182015b82811115620004395782518255916020019190600101906200041c565b50620004479291506200044b565b5090565b5b808211156200044757600081556001016200044c565b60006020828403121562000474578081fd5b5051919050565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526018908201527f54726164696e67206e6f742079657420656e61626c65642e0000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b600082198211156200055757634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200057157607f821691505b602082108114156200059357634e487b7160e01b600052602260045260246000fd5b50919050565b6111e380620005a96000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c357806395d89b411161007c57806395d89b4114610273578063a457c2d71461027b578063a9059cbb1461028e578063d07ea4e2146102a1578063dd62ed3e146102b4578063f2fde38b146102c75761014d565b806370a0823114610238578063715018a61461024b578063860a32ec1461025357806389f9a1d31461025b5780638a8c523c146102635780638da5cb5b1461026b5761014d565b806323b872dd1161011557806323b872dd146101c0578063313ce567146101d357806339509351146101e8578063404e5129146101fb57806342966c681461021057806349bd5a5e146102235761014d565b806306fdde0314610152578063095ea7b31461017057806316c021291461019057806318160ddd146101a35780631ab99e12146101b8575b600080fd5b61015a6102da565b6040516101679190610d68565b60405180910390f35b61018361017e366004610cd6565b61036c565b6040516101679190610d5d565b61018361019e366004610c1f565b610389565b6101ab61039e565b6040516101679190611116565b6101ab6103a4565b6101836101ce366004610c72565b6103aa565b6101db610443565b604051610167919061111f565b6101836101f6366004610cd6565b610448565b61020e610209366004610cad565b61049c565b005b61020e61021e366004610d31565b610506565b61022b610513565b6040516101679190610d49565b6101ab610246366004610c1f565b610522565b61020e610541565b61018361058c565b6101ab610595565b61020e61059b565b61022b6105ef565b61015a6105fe565b610183610289366004610cd6565b61060d565b61018361029c366004610cd6565b610686565b61020e6102af366004610cff565b61069a565b6101ab6102c2366004610c40565b6106f3565b61020e6102d5366004610c1f565b61071e565b6060600480546102e99061115c565b80601f01602080910402602001604051908101604052809291908181526020018280546103159061115c565b80156103625780601f1061033757610100808354040283529160200191610362565b820191906000526020600020905b81548152906001019060200180831161034557829003601f168201915b5050505050905090565b600061038061037961078c565b8484610790565b50600192915050565b600a6020526000908152604090205460ff1681565b60035490565b60085481565b60006103b7848484610844565b6001600160a01b0384166000908152600260205260408120816103d861078c565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104245760405162461bcd60e51b815260040161041b90610f2e565b60405180910390fd5b6104388561043061078c565b858403610790565b506001949350505050565b601290565b600061038061045561078c565b84846002600061046361078c565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054610497919061112d565b610790565b6104a461078c565b6001600160a01b03166104b56105ef565b6001600160a01b0316146104db5760405162461bcd60e51b815260040161041b90610f76565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b610510338261096e565b50565b6009546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b61054961078c565b6001600160a01b031661055a6105ef565b6001600160a01b0316146105805760405162461bcd60e51b815260040161041b90610f76565b61058a6000610a60565b565b60065460ff1681565b60075481565b6105a361078c565b6001600160a01b03166105b46105ef565b6001600160a01b0316146105da5760405162461bcd60e51b815260040161041b90610f76565b6009805460ff60a01b1916600160a01b179055565b6000546001600160a01b031690565b6060600580546102e99061115c565b6000806002600061061c61078c565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106685760405162461bcd60e51b815260040161041b906110ac565b61067c61067361078c565b85858403610790565b5060019392505050565b600061038061069361078c565b8484610844565b6106a261078c565b6001600160a01b03166106b36105ef565b6001600160a01b0316146106d95760405162461bcd60e51b815260040161041b90610f76565b6006805460ff191693151593909317909255600755600855565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61072661078c565b6001600160a01b03166107376105ef565b6001600160a01b03161461075d5760405162461bcd60e51b815260040161041b90610f76565b6001600160a01b0381166107835760405162461bcd60e51b815260040161041b90610e40565b61051081610a60565b3390565b6001600160a01b0383166107b65760405162461bcd60e51b815260040161041b90611031565b6001600160a01b0382166107dc5760405162461bcd60e51b815260040161041b90610e86565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610837908590611116565b60405180910390a3505050565b6001600160a01b03831661086a5760405162461bcd60e51b815260040161041b90610fec565b6001600160a01b0382166108905760405162461bcd60e51b815260040161041b90610dbb565b61089b838383610ab0565b6001600160a01b038316600090815260016020526040902054818110156108d45760405162461bcd60e51b815260040161041b90610ec8565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061090b90849061112d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109559190611116565b60405180910390a3610968848484610a5b565b50505050565b6001600160a01b0382166109945760405162461bcd60e51b815260040161041b90610fab565b6109a082600083610ab0565b6001600160a01b038216600090815260016020526040902054818110156109d95760405162461bcd60e51b815260040161041b90610dfe565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610a08908490611145565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a4b908690611116565b60405180910390a3610a5b836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610af257506001600160a01b0383166000908152600a602052604090205460ff16155b610b0e5760405162461bcd60e51b815260040161041b906110f1565b610b166105ef565b6001600160a01b0316836001600160a01b031614158015610b505750610b3a6105ef565b6001600160a01b0316826001600160a01b031614155b15610b7e57600954600160a01b900460ff16610b7e5760405162461bcd60e51b815260040161041b90611075565b60065460ff168015610b9d57506009546001600160a01b038481169116145b15610a5b5760075481610baf84610522565b610bb9919061112d565b11158015610bdc575060085481610bcf84610522565b610bd9919061112d565b10155b610a5b5760405162461bcd60e51b815260040161041b90610f0e565b80356001600160a01b038116811461053c57600080fd5b8035801515811461053c57600080fd5b600060208284031215610c30578081fd5b610c3982610bf8565b9392505050565b60008060408385031215610c52578081fd5b610c5b83610bf8565b9150610c6960208401610bf8565b90509250929050565b600080600060608486031215610c86578081fd5b610c8f84610bf8565b9250610c9d60208501610bf8565b9150604084013590509250925092565b60008060408385031215610cbf578182fd5b610cc883610bf8565b9150610c6960208401610c0f565b60008060408385031215610ce8578182fd5b610cf183610bf8565b946020939093013593505050565b600080600060608486031215610d13578283fd5b610d1c84610c0f565b95602085013595506040909401359392505050565b600060208284031215610d42578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610d9457858101830151858201604001528201610d78565b81811115610da55783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526018908201527f54726164696e67206e6f742079657420656e61626c65642e0000000000000000604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b6000821982111561114057611140611197565b500190565b60008282101561115757611157611197565b500390565b60028104600182168061117057607f821691505b6020821081141561119157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220b1a432b9a280e5b50fb5a799a8e1cd5a7b4d90ee584f31c5403e50dd0ddb1d5064736f6c6343000800003300000000000000000000000000000000000000000052b7d2dcc80cd2e4000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c357806395d89b411161007c57806395d89b4114610273578063a457c2d71461027b578063a9059cbb1461028e578063d07ea4e2146102a1578063dd62ed3e146102b4578063f2fde38b146102c75761014d565b806370a0823114610238578063715018a61461024b578063860a32ec1461025357806389f9a1d31461025b5780638a8c523c146102635780638da5cb5b1461026b5761014d565b806323b872dd1161011557806323b872dd146101c0578063313ce567146101d357806339509351146101e8578063404e5129146101fb57806342966c681461021057806349bd5a5e146102235761014d565b806306fdde0314610152578063095ea7b31461017057806316c021291461019057806318160ddd146101a35780631ab99e12146101b8575b600080fd5b61015a6102da565b6040516101679190610d68565b60405180910390f35b61018361017e366004610cd6565b61036c565b6040516101679190610d5d565b61018361019e366004610c1f565b610389565b6101ab61039e565b6040516101679190611116565b6101ab6103a4565b6101836101ce366004610c72565b6103aa565b6101db610443565b604051610167919061111f565b6101836101f6366004610cd6565b610448565b61020e610209366004610cad565b61049c565b005b61020e61021e366004610d31565b610506565b61022b610513565b6040516101679190610d49565b6101ab610246366004610c1f565b610522565b61020e610541565b61018361058c565b6101ab610595565b61020e61059b565b61022b6105ef565b61015a6105fe565b610183610289366004610cd6565b61060d565b61018361029c366004610cd6565b610686565b61020e6102af366004610cff565b61069a565b6101ab6102c2366004610c40565b6106f3565b61020e6102d5366004610c1f565b61071e565b6060600480546102e99061115c565b80601f01602080910402602001604051908101604052809291908181526020018280546103159061115c565b80156103625780601f1061033757610100808354040283529160200191610362565b820191906000526020600020905b81548152906001019060200180831161034557829003601f168201915b5050505050905090565b600061038061037961078c565b8484610790565b50600192915050565b600a6020526000908152604090205460ff1681565b60035490565b60085481565b60006103b7848484610844565b6001600160a01b0384166000908152600260205260408120816103d861078c565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104245760405162461bcd60e51b815260040161041b90610f2e565b60405180910390fd5b6104388561043061078c565b858403610790565b506001949350505050565b601290565b600061038061045561078c565b84846002600061046361078c565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054610497919061112d565b610790565b6104a461078c565b6001600160a01b03166104b56105ef565b6001600160a01b0316146104db5760405162461bcd60e51b815260040161041b90610f76565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b610510338261096e565b50565b6009546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b61054961078c565b6001600160a01b031661055a6105ef565b6001600160a01b0316146105805760405162461bcd60e51b815260040161041b90610f76565b61058a6000610a60565b565b60065460ff1681565b60075481565b6105a361078c565b6001600160a01b03166105b46105ef565b6001600160a01b0316146105da5760405162461bcd60e51b815260040161041b90610f76565b6009805460ff60a01b1916600160a01b179055565b6000546001600160a01b031690565b6060600580546102e99061115c565b6000806002600061061c61078c565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106685760405162461bcd60e51b815260040161041b906110ac565b61067c61067361078c565b85858403610790565b5060019392505050565b600061038061069361078c565b8484610844565b6106a261078c565b6001600160a01b03166106b36105ef565b6001600160a01b0316146106d95760405162461bcd60e51b815260040161041b90610f76565b6006805460ff191693151593909317909255600755600855565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61072661078c565b6001600160a01b03166107376105ef565b6001600160a01b03161461075d5760405162461bcd60e51b815260040161041b90610f76565b6001600160a01b0381166107835760405162461bcd60e51b815260040161041b90610e40565b61051081610a60565b3390565b6001600160a01b0383166107b65760405162461bcd60e51b815260040161041b90611031565b6001600160a01b0382166107dc5760405162461bcd60e51b815260040161041b90610e86565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610837908590611116565b60405180910390a3505050565b6001600160a01b03831661086a5760405162461bcd60e51b815260040161041b90610fec565b6001600160a01b0382166108905760405162461bcd60e51b815260040161041b90610dbb565b61089b838383610ab0565b6001600160a01b038316600090815260016020526040902054818110156108d45760405162461bcd60e51b815260040161041b90610ec8565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061090b90849061112d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109559190611116565b60405180910390a3610968848484610a5b565b50505050565b6001600160a01b0382166109945760405162461bcd60e51b815260040161041b90610fab565b6109a082600083610ab0565b6001600160a01b038216600090815260016020526040902054818110156109d95760405162461bcd60e51b815260040161041b90610dfe565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610a08908490611145565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a4b908690611116565b60405180910390a3610a5b836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610af257506001600160a01b0383166000908152600a602052604090205460ff16155b610b0e5760405162461bcd60e51b815260040161041b906110f1565b610b166105ef565b6001600160a01b0316836001600160a01b031614158015610b505750610b3a6105ef565b6001600160a01b0316826001600160a01b031614155b15610b7e57600954600160a01b900460ff16610b7e5760405162461bcd60e51b815260040161041b90611075565b60065460ff168015610b9d57506009546001600160a01b038481169116145b15610a5b5760075481610baf84610522565b610bb9919061112d565b11158015610bdc575060085481610bcf84610522565b610bd9919061112d565b10155b610a5b5760405162461bcd60e51b815260040161041b90610f0e565b80356001600160a01b038116811461053c57600080fd5b8035801515811461053c57600080fd5b600060208284031215610c30578081fd5b610c3982610bf8565b9392505050565b60008060408385031215610c52578081fd5b610c5b83610bf8565b9150610c6960208401610bf8565b90509250929050565b600080600060608486031215610c86578081fd5b610c8f84610bf8565b9250610c9d60208501610bf8565b9150604084013590509250925092565b60008060408385031215610cbf578182fd5b610cc883610bf8565b9150610c6960208401610c0f565b60008060408385031215610ce8578182fd5b610cf183610bf8565b946020939093013593505050565b600080600060608486031215610d13578283fd5b610d1c84610c0f565b95602085013595506040909401359392505050565b600060208284031215610d42578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610d9457858101830151858201604001528201610d78565b81811115610da55783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526018908201527f54726164696e67206e6f742079657420656e61626c65642e0000000000000000604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b6000821982111561114057611140611197565b500190565b60008282101561115757611157611197565b500390565b60028104600182168061117057607f821691505b6020821081141561119157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220b1a432b9a280e5b50fb5a799a8e1cd5a7b4d90ee584f31c5403e50dd0ddb1d5064736f6c63430008000033

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

00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 100000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000


Deployed Bytecode Sourcemap

19305:1513:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9315:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11482:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;19524:42::-;;;;;;:::i;:::-;;:::i;10435:108::-;;;:::i;:::-;;;;;;;:::i;19418:31::-;;;:::i;12133:492::-;;;;;;:::i;:::-;;:::i;10277:93::-;;;:::i;:::-;;;;;;;:::i;13034:215::-;;;;;;:::i;:::-;;:::i;19704:135::-;;;;;;:::i;:::-;;:::i;:::-;;20734:81;;;;;;:::i;:::-;;:::i;19456:28::-;;;:::i;:::-;;;;;;;:::i;10606:127::-;;;;;;:::i;:::-;;:::i;2716:103::-;;;:::i;19354:19::-;;;:::i;19380:31::-;;;:::i;19847:83::-;;;:::i;2065:87::-;;;:::i;9534:104::-;;;:::i;13752:413::-;;;;;;:::i;:::-;;:::i;10946:175::-;;;;;;:::i;:::-;;:::i;19938:236::-;;;;;;:::i;:::-;;:::i;11184:151::-;;;;;;:::i;:::-;;:::i;2974:201::-;;;;;;:::i;:::-;;:::i;9315:100::-;9369:13;9402:5;9395:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9315:100;:::o;11482:169::-;11565:4;11582:39;11591:12;:10;:12::i;:::-;11605:7;11614:6;11582:8;:39::i;:::-;-1:-1:-1;11639:4:0;11482:169;;;;:::o;19524:42::-;;;;;;;;;;;;;;;:::o;10435:108::-;10523:12;;10435:108;:::o;19418:31::-;;;;:::o;12133:492::-;12273:4;12290:36;12300:6;12308:9;12319:6;12290:9;:36::i;:::-;-1:-1:-1;;;;;12366:19:0;;12339:24;12366:19;;;:11;:19;;;;;12339:24;12386:12;:10;:12::i;:::-;-1:-1:-1;;;;;12366:33:0;-1:-1:-1;;;;;12366:33:0;;;;;;;;;;;;;12339:60;;12438:6;12418:16;:26;;12410:79;;;;-1:-1:-1;;;12410:79:0;;;;;;;:::i;:::-;;;;;;;;;12525:57;12534:6;12542:12;:10;:12::i;:::-;12575:6;12556:16;:25;12525:8;:57::i;:::-;-1:-1:-1;12613:4:0;;12133:492;-1:-1:-1;;;;12133:492:0:o;10277:93::-;10360:2;10277:93;:::o;13034:215::-;13122:4;13139:80;13148:12;:10;:12::i;:::-;13162:7;13208:10;13171:11;:25;13183:12;:10;:12::i;:::-;-1:-1:-1;;;;;13171:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13171:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;13139:8;:80::i;19704:135::-;2296:12;:10;:12::i;:::-;-1:-1:-1;;;;;2285:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2285:23:0;;2277:68;;;;-1:-1:-1;;;2277:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19793:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;19793:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19704:135::o;20734:81::-;20783:24;20789:10;20801:5;20783;:24::i;:::-;20734:81;:::o;19456:28::-;;;-1:-1:-1;;;;;19456:28:0;;:::o;10606:127::-;-1:-1:-1;;;;;10707:18:0;;10680:7;10707:18;;;:9;:18;;;;;;10606:127;;;;:::o;2716:103::-;2296:12;:10;:12::i;:::-;-1:-1:-1;;;;;2285:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2285:23:0;;2277:68;;;;-1:-1:-1;;;2277:68:0;;;;;;;:::i;:::-;2781:30:::1;2808:1;2781:18;:30::i;:::-;2716:103::o:0;19354:19::-;;;;;;:::o;19380:31::-;;;;:::o;19847:83::-;2296:12;:10;:12::i;:::-;-1:-1:-1;;;;;2285:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2285:23:0;;2277:68;;;;-1:-1:-1;;;2277:68:0;;;;;;;:::i;:::-;19902:13:::1;:20:::0;;-1:-1:-1;;;;19902:20:0::1;-1:-1:-1::0;;;19902:20:0::1;::::0;;19847:83::o;2065:87::-;2111:7;2138:6;-1:-1:-1;;;;;2138:6:0;2065:87;:::o;9534:104::-;9590:13;9623:7;9616:14;;;;;:::i;13752:413::-;13845:4;13862:24;13889:11;:25;13901:12;:10;:12::i;:::-;-1:-1:-1;;;;;13889:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13889:25:0;;;:34;;;;;;;;;;;-1:-1:-1;13942:35:0;;;;13934:85;;;;-1:-1:-1;;;13934:85:0;;;;;;;:::i;:::-;14055:67;14064:12;:10;:12::i;:::-;14078:7;14106:15;14087:16;:34;14055:8;:67::i;:::-;-1:-1:-1;14153:4:0;;13752:413;-1:-1:-1;;;13752:413:0:o;10946:175::-;11032:4;11049:42;11059:12;:10;:12::i;:::-;11073:9;11084:6;11049:9;:42::i;19938:236::-;2296:12;:10;:12::i;:::-;-1:-1:-1;;;;;2285:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2285:23:0;;2277:68;;;;-1:-1:-1;;;2277:68:0;;;;;;;:::i;:::-;20054:7:::1;:18:::0;;-1:-1:-1;;20054:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;20083:16:::1;:36:::0;20130:16:::1;:36:::0;19938:236::o;11184:151::-;-1:-1:-1;;;;;11300:18:0;;;11273:7;11300:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11184:151::o;2974:201::-;2296:12;:10;:12::i;:::-;-1:-1:-1;;;;;2285:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2285:23:0;;2277:68;;;;-1:-1:-1;;;2277:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3063:22:0;::::1;3055:73;;;;-1:-1:-1::0;;;3055:73:0::1;;;;;;;:::i;:::-;3139:28;3158:8;3139:18;:28::i;783:98::-:0;863:10;783:98;:::o;17436:380::-;-1:-1:-1;;;;;17572:19:0;;17564:68;;;;-1:-1:-1;;;17564:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17651:21:0;;17643:68;;;;-1:-1:-1;;;17643:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17724:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17776:32;;;;;17754:6;;17776:32;:::i;:::-;;;;;;;;17436:380;;;:::o;14655:733::-;-1:-1:-1;;;;;14795:20:0;;14787:70;;;;-1:-1:-1;;;14787:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14876:23:0;;14868:71;;;;-1:-1:-1;;;14868:71:0;;;;;;;:::i;:::-;14952:47;14973:6;14981:9;14992:6;14952:20;:47::i;:::-;-1:-1:-1;;;;;15036:17:0;;15012:21;15036:17;;;:9;:17;;;;;;15072:23;;;;15064:74;;;;-1:-1:-1;;;15064:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15174:17:0;;;;;;;:9;:17;;;;;;15194:22;;;15174:42;;15238:20;;;;;;;;:30;;15210:6;;15174:17;15238:30;;15210:6;;15238:30;:::i;:::-;;;;;;;;15303:9;-1:-1:-1;;;;;15286:35:0;15295:6;-1:-1:-1;;;;;15286:35:0;;15314:6;15286:35;;;;;;:::i;:::-;;;;;;;;15334:46;15354:6;15362:9;15373:6;15334:19;:46::i;:::-;14655:733;;;;:::o;16407:591::-;-1:-1:-1;;;;;16491:21:0;;16483:67;;;;-1:-1:-1;;;16483:67:0;;;;;;;:::i;:::-;16563:49;16584:7;16601:1;16605:6;16563:20;:49::i;:::-;-1:-1:-1;;;;;16650:18:0;;16625:22;16650:18;;;:9;:18;;;;;;16687:24;;;;16679:71;;;;-1:-1:-1;;;16679:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16786:18:0;;;;;;:9;:18;;;;;16807:23;;;16786:44;;16852:12;:22;;16824:6;;16786:18;16852:22;;16824:6;;16852:22;:::i;:::-;;;;-1:-1:-1;;16892:37:0;;16918:1;;-1:-1:-1;;;;;16892:37:0;;;;;;;16922:6;;16892:37;:::i;:::-;;;;;;;;16942:48;16962:7;16979:1;16983:6;16942:48;16407:591;;;:::o;3335:191::-;3409:16;3428:6;;-1:-1:-1;;;;;3445:17:0;;;-1:-1:-1;;;;;;3445:17:0;;;;;;3478:40;;3428:6;;;;;;;3478:40;;3409:16;3478:40;3335:191;;:::o;20182:544::-;-1:-1:-1;;;;;20334:14:0;;;;;;:10;:14;;;;;;;;20333:15;:36;;;;-1:-1:-1;;;;;;20353:16:0;;;;;;:10;:16;;;;;;;;20352:17;20333:36;20325:60;;;;-1:-1:-1;;;20325:60:0;;;;;;;:::i;:::-;20407:7;:5;:7::i;:::-;-1:-1:-1;;;;;20400:14:0;:4;-1:-1:-1;;;;;20400:14:0;;;:30;;;;;20423:7;:5;:7::i;:::-;-1:-1:-1;;;;;20418:12:0;:2;-1:-1:-1;;;;;20418:12:0;;;20400:30;20396:86;;;20440:13;;-1:-1:-1;;;20440:13:0;;;;20432:50;;;;-1:-1:-1;;;20432:50:0;;;;;;;:::i;:::-;20539:7;;;;:32;;;;-1:-1:-1;20558:13:0;;-1:-1:-1;;;;;20550:21:0;;;20558:13;;20550:21;20539:32;20535:184;;;20628:16;;20618:6;20596:19;20612:2;20596:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20680:16;;20670:6;20648:19;20664:2;20648:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20596:100;20588:119;;;;-1:-1:-1;;;20588:119:0;;;;;;;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:162;261:20;;317:13;;310:21;300:32;;290:2;;346:1;343;336:12;361:198;;473:2;461:9;452:7;448:23;444:32;441:2;;;494:6;486;479:22;441:2;522:31;543:9;522:31;:::i;:::-;512:41;431:128;-1:-1:-1;;;431:128:1:o;564:274::-;;;693:2;681:9;672:7;668:23;664:32;661:2;;;714:6;706;699:22;661:2;742:31;763:9;742:31;:::i;:::-;732:41;;792:40;828:2;817:9;813:18;792:40;:::i;:::-;782:50;;651:187;;;;;:::o;843:342::-;;;;989:2;977:9;968:7;964:23;960:32;957:2;;;1010:6;1002;995:22;957:2;1038:31;1059:9;1038:31;:::i;:::-;1028:41;;1088:40;1124:2;1113:9;1109:18;1088:40;:::i;:::-;1078:50;;1175:2;1164:9;1160:18;1147:32;1137:42;;947:238;;;;;:::o;1190:268::-;;;1316:2;1304:9;1295:7;1291:23;1287:32;1284:2;;;1337:6;1329;1322:22;1284:2;1365:31;1386:9;1365:31;:::i;:::-;1355:41;;1415:37;1448:2;1437:9;1433:18;1415:37;:::i;1463:266::-;;;1592:2;1580:9;1571:7;1567:23;1563:32;1560:2;;;1613:6;1605;1598:22;1560:2;1641:31;1662:9;1641:31;:::i;:::-;1631:41;1719:2;1704:18;;;;1691:32;;-1:-1:-1;;;1550:179:1:o;1734:328::-;;;;1877:2;1865:9;1856:7;1852:23;1848:32;1845:2;;;1898:6;1890;1883:22;1845:2;1926:28;1944:9;1926:28;:::i;:::-;1916:38;2001:2;1986:18;;1973:32;;-1:-1:-1;2052:2:1;2037:18;;;2024:32;;1835:227;-1:-1:-1;;;1835:227:1:o;2067:190::-;;2179:2;2167:9;2158:7;2154:23;2150:32;2147:2;;;2200:6;2192;2185:22;2147:2;-1:-1:-1;2228:23:1;;2137:120;-1:-1:-1;2137:120:1:o;2262:203::-;-1:-1:-1;;;;;2426:32:1;;;;2408:51;;2396:2;2381:18;;2363:102::o;2470:187::-;2635:14;;2628:22;2610:41;;2598:2;2583:18;;2565:92::o;2662:603::-;;2803:2;2832;2821:9;2814:21;2864:6;2858:13;2907:6;2902:2;2891:9;2887:18;2880:34;2932:4;2945:140;2959:6;2956:1;2953:13;2945:140;;;3054:14;;;3050:23;;3044:30;3020:17;;;3039:2;3016:26;3009:66;2974:10;;2945:140;;;3103:6;3100:1;3097:13;3094:2;;;3173:4;3168:2;3159:6;3148:9;3144:22;3140:31;3133:45;3094:2;-1:-1:-1;3249:2:1;3228:15;-1:-1:-1;;3224:29:1;3209:45;;;;3256:2;3205:54;;2783:482;-1:-1:-1;;;2783:482:1:o;3270:399::-;3472:2;3454:21;;;3511:2;3491:18;;;3484:30;3550:34;3545:2;3530:18;;3523:62;-1:-1:-1;;;3616:2:1;3601:18;;3594:33;3659:3;3644:19;;3444:225::o;3674:398::-;3876:2;3858:21;;;3915:2;3895:18;;;3888:30;3954:34;3949:2;3934:18;;3927:62;-1:-1:-1;;;4020:2:1;4005:18;;3998:32;4062:3;4047:19;;3848:224::o;4077:402::-;4279:2;4261:21;;;4318:2;4298:18;;;4291:30;4357:34;4352:2;4337:18;;4330:62;-1:-1:-1;;;4423:2:1;4408:18;;4401:36;4469:3;4454:19;;4251:228::o;4484:398::-;4686:2;4668:21;;;4725:2;4705:18;;;4698:30;4764:34;4759:2;4744:18;;4737:62;-1:-1:-1;;;4830:2:1;4815:18;;4808:32;4872:3;4857:19;;4658:224::o;4887:402::-;5089:2;5071:21;;;5128:2;5108:18;;;5101:30;5167:34;5162:2;5147:18;;5140:62;-1:-1:-1;;;5233:2:1;5218:18;;5211:36;5279:3;5264:19;;5061:228::o;5294:329::-;5496:2;5478:21;;;5535:1;5515:18;;;5508:29;-1:-1:-1;;;5568:2:1;5553:18;;5546:36;5614:2;5599:18;;5468:155::o;5628:404::-;5830:2;5812:21;;;5869:2;5849:18;;;5842:30;5908:34;5903:2;5888:18;;5881:62;-1:-1:-1;;;5974:2:1;5959:18;;5952:38;6022:3;6007:19;;5802:230::o;6037:356::-;6239:2;6221:21;;;6258:18;;;6251:30;6317:34;6312:2;6297:18;;6290:62;6384:2;6369:18;;6211:182::o;6398:397::-;6600:2;6582:21;;;6639:2;6619:18;;;6612:30;6678:34;6673:2;6658:18;;6651:62;-1:-1:-1;;;6744:2:1;6729:18;;6722:31;6785:3;6770:19;;6572:223::o;6800:401::-;7002:2;6984:21;;;7041:2;7021:18;;;7014:30;7080:34;7075:2;7060:18;;7053:62;-1:-1:-1;;;7146:2:1;7131:18;;7124:35;7191:3;7176:19;;6974:227::o;7206:400::-;7408:2;7390:21;;;7447:2;7427:18;;;7420:30;7486:34;7481:2;7466:18;;7459:62;-1:-1:-1;;;7552:2:1;7537:18;;7530:34;7596:3;7581:19;;7380:226::o;7611:348::-;7813:2;7795:21;;;7852:2;7832:18;;;7825:30;7891:26;7886:2;7871:18;;7864:54;7950:2;7935:18;;7785:174::o;7964:401::-;8166:2;8148:21;;;8205:2;8185:18;;;8178:30;8244:34;8239:2;8224:18;;8217:62;-1:-1:-1;;;8310:2:1;8295:18;;8288:35;8355:3;8340:19;;8138:227::o;8370:335::-;8572:2;8554:21;;;8611:2;8591:18;;;8584:30;-1:-1:-1;;;8645:2:1;8630:18;;8623:41;8696:2;8681:18;;8544:161::o;8710:177::-;8856:25;;;8844:2;8829:18;;8811:76::o;8892:184::-;9064:4;9052:17;;;;9034:36;;9022:2;9007:18;;8989:87::o;9081:128::-;;9152:1;9148:6;9145:1;9142:13;9139:2;;;9158:18;;:::i;:::-;-1:-1:-1;9194:9:1;;9129:80::o;9214:125::-;;9282:1;9279;9276:8;9273:2;;;9287:18;;:::i;:::-;-1:-1:-1;9324:9:1;;9263:76::o;9344:380::-;9429:1;9419:12;;9476:1;9466:12;;;9487:2;;9541:4;9533:6;9529:17;9519:27;;9487:2;9594;9586:6;9583:14;9563:18;9560:38;9557:2;;;9640:10;9635:3;9631:20;9628:1;9621:31;9675:4;9672:1;9665:15;9703:4;9700:1;9693:15;9557:2;;9399:325;;;:::o;9729:127::-;9790:10;9785:3;9781:20;9778:1;9771:31;9821:4;9818:1;9811:15;9845:4;9842:1;9835:15

Swarm Source

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