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

Overview

Max Total Supply

21,000,000 $bobby

Holders

177,198 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
seongcoen.base.eth
Balance
10 $bobby

Value
$0.00
0x84f2466d8F4dbf3Ba8B14dD8376E128CFddA7E73
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

$Bobby is a community-focused token designed for small participants. It promotes engagement through airdrops, unique artwork by in-house artists, and educational activities via Bobby’s School.

Contract Source Code Verified (Exact Match)

Contract Name:
bobby

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2024-07-29
*/

// SPDX-License-Identifier: MIT
/**
no but I got that fish in me 

 ___.         ___.  ___.           
\_ |__   ____\_ |__\_ |__ ___.__. 
 | __ \ /  _ \| __ \| __ <   |  | 
 | \_\ (  <_> ) \_\ \ \_\ \___  | 
 |___  /\____/|___  /___  / ____| 
     \/           \/    \/\/  

     bobbythebass.com                         
/**
pragma solidity ^0.8.15;

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

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

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

/**
 * @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}.
 */
pragma solidity ^0.8.15;
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}
// File contracts/bobbyERC20.sol
pragma solidity ^0.8.15;
contract bobby is ERC20 { 
    constructor() ERC20("bobby", "$bobby") {
        _mint(msg.sender, 21000000 * 10 ** decimals());
    } 
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"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"}]

608060405234801561000f575f80fd5b5060405180604001604052806005815260200164626f62627960d81b8152506040518060400160405280600681526020016524626f62627960d01b815250816003908161005c9190610222565b5060046100698282610222565b50505061009c3361007e6100a160201b60201c565b61008990600a6103d5565b610097906301406f406103ea565b6100a6565b610414565b601290565b6001600160a01b0382166101005760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f8282546101119190610401565b90915550506001600160a01b0382165f908152602081905260408120805483929061013d908490610401565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806101b357607f821691505b6020821081036101d157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561018657805f5260205f20601f840160051c810160208510156101fc5750805b601f840160051c820191505b8181101561021b575f8155600101610208565b5050505050565b81516001600160401b0381111561023b5761023b61018b565b61024f81610249845461019f565b846101d7565b6020601f821160018114610281575f831561026a5750848201515b5f19600385901b1c1916600184901b17845561021b565b5f84815260208120601f198516915b828110156102b05787850151825560209485019460019092019101610290565b50848210156102cd57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b6001815b600184111561032b5780850481111561030f5761030f6102dc565b600184161561031d57908102905b60019390931c9280026102f4565b935093915050565b5f82610341575060016103cf565b8161034d57505f6103cf565b8160018114610363576002811461036d57610389565b60019150506103cf565b60ff84111561037e5761037e6102dc565b50506001821b6103cf565b5060208310610133831016604e8410600b84101617156103ac575081810a6103cf565b6103b85f1984846102f0565b805f19048211156103cb576103cb6102dc565b0290505b92915050565b5f6103e360ff841683610333565b9392505050565b80820281158282048414176103cf576103cf6102dc565b808201808211156103cf576103cf6102dc565b610949806104215f395ff3fe608060405234801561000f575f80fd5b50600436106100c4575f3560e01c8063395093511161007d578063a457c2d711610058578063a457c2d714610180578063a9059cbb14610193578063dd62ed3e146101a6575f80fd5b8063395093511461013d57806370a082311461015057806395d89b4114610178575f80fd5b806318160ddd116100ad57806318160ddd1461010957806323b872dd1461011b578063313ce5671461012e575f80fd5b806306fdde03146100c8578063095ea7b3146100e6575b5f80fd5b6100d06101de565b6040516100dd91906107b9565b60405180910390f35b6100f96100f4366004610809565b61026e565b60405190151581526020016100dd565b6002545b6040519081526020016100dd565b6100f9610129366004610831565b610284565b604051601281526020016100dd565b6100f961014b366004610809565b610346565b61010d61015e36600461086b565b6001600160a01b03165f9081526020819052604090205490565b6100d0610381565b6100f961018e366004610809565b610390565b6100f96101a1366004610809565b610440565b61010d6101b436600461088b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101ed906108bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610219906108bc565b80156102645780601f1061023b57610100808354040283529160200191610264565b820191905f5260205f20905b81548152906001019060200180831161024757829003601f168201915b5050505050905090565b5f61027a33848461044c565b5060015b92915050565b5f6102908484846105a3565b6001600160a01b0384165f9081526001602090815260408083203384529091529020548281101561032e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61033b853385840361044c565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161027a91859061037c9086906108f4565b61044c565b6060600480546101ed906108bc565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156104295760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610325565b610436338585840361044c565b5060019392505050565b5f61027a3384846105a3565b6001600160a01b0383166104c75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610325565b6001600160a01b0382166105435760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610325565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661061f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610325565b6001600160a01b03821661069b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610325565b6001600160a01b0383165f90815260208190526040902054818110156107295760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610325565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061075f9084906108f4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107ab91815260200190565b60405180910390a350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610804575f80fd5b919050565b5f806040838503121561081a575f80fd5b610823836107ee565b946020939093013593505050565b5f805f60608486031215610843575f80fd5b61084c846107ee565b925061085a602085016107ee565b929592945050506040919091013590565b5f6020828403121561087b575f80fd5b610884826107ee565b9392505050565b5f806040838503121561089c575f80fd5b6108a5836107ee565b91506108b3602084016107ee565b90509250929050565b600181811c908216806108d057607f821691505b6020821081036108ee57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561027e57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220a3597c4032ec6fb7baa8aecfe99b138817ad503a34505c3aafdbf0a20625388764736f6c634300081a0033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100c4575f3560e01c8063395093511161007d578063a457c2d711610058578063a457c2d714610180578063a9059cbb14610193578063dd62ed3e146101a6575f80fd5b8063395093511461013d57806370a082311461015057806395d89b4114610178575f80fd5b806318160ddd116100ad57806318160ddd1461010957806323b872dd1461011b578063313ce5671461012e575f80fd5b806306fdde03146100c8578063095ea7b3146100e6575b5f80fd5b6100d06101de565b6040516100dd91906107b9565b60405180910390f35b6100f96100f4366004610809565b61026e565b60405190151581526020016100dd565b6002545b6040519081526020016100dd565b6100f9610129366004610831565b610284565b604051601281526020016100dd565b6100f961014b366004610809565b610346565b61010d61015e36600461086b565b6001600160a01b03165f9081526020819052604090205490565b6100d0610381565b6100f961018e366004610809565b610390565b6100f96101a1366004610809565b610440565b61010d6101b436600461088b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101ed906108bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610219906108bc565b80156102645780601f1061023b57610100808354040283529160200191610264565b820191905f5260205f20905b81548152906001019060200180831161024757829003601f168201915b5050505050905090565b5f61027a33848461044c565b5060015b92915050565b5f6102908484846105a3565b6001600160a01b0384165f9081526001602090815260408083203384529091529020548281101561032e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61033b853385840361044c565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161027a91859061037c9086906108f4565b61044c565b6060600480546101ed906108bc565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156104295760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610325565b610436338585840361044c565b5060019392505050565b5f61027a3384846105a3565b6001600160a01b0383166104c75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610325565b6001600160a01b0382166105435760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610325565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661061f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610325565b6001600160a01b03821661069b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610325565b6001600160a01b0383165f90815260208190526040902054818110156107295760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610325565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061075f9084906108f4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107ab91815260200190565b60405180910390a350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610804575f80fd5b919050565b5f806040838503121561081a575f80fd5b610823836107ee565b946020939093013593505050565b5f805f60608486031215610843575f80fd5b61084c846107ee565b925061085a602085016107ee565b929592945050506040919091013590565b5f6020828403121561087b575f80fd5b610884826107ee565b9392505050565b5f806040838503121561089c575f80fd5b6108a5836107ee565b91506108b3602084016107ee565b90509250929050565b600181811c908216806108d057607f821691505b6020821081036108ee57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561027e57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220a3597c4032ec6fb7baa8aecfe99b138817ad503a34505c3aafdbf0a20625388764736f6c634300081a0033

Deployed Bytecode Sourcemap

16838:140:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6819:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8986:169;;;;;;:::i;:::-;;:::i;:::-;;;1108:14:1;;1101:22;1083:41;;1071:2;1056:18;8986:169:0;943:187:1;7939:108:0;8027:12;;7939:108;;;1281:25:1;;;1269:2;1254:18;7939:108:0;1135:177:1;9637:492:0;;;;;;:::i;:::-;;:::i;7781:93::-;;;7864:2;1838:36:1;;1826:2;1811:18;7781:93:0;1696:184:1;10538:215:0;;;;;;:::i;:::-;;:::i;8110:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8211:18:0;8184:7;8211:18;;;;;;;;;;;;8110:127;7038:104;;;:::i;11256:413::-;;;;;;:::i;:::-;;:::i;8450:175::-;;;;;;:::i;:::-;;:::i;8688:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8804:18:0;;;8777:7;8804:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8688:151;6819:100;6873:13;6906:5;6899:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6819:100;:::o;8986:169::-;9069:4;9086:39;982:10;9109:7;9118:6;9086:8;:39::i;:::-;-1:-1:-1;9143:4:0;8986:169;;;;;:::o;9637:492::-;9777:4;9794:36;9804:6;9812:9;9823:6;9794:9;:36::i;:::-;-1:-1:-1;;;;;9870:19:0;;9843:24;9870:19;;;:11;:19;;;;;;;;982:10;9870:33;;;;;;;;9922:26;;;;9914:79;;;;-1:-1:-1;;;9914:79:0;;2985:2:1;9914:79:0;;;2967:21:1;3024:2;3004:18;;;2997:30;3063:34;3043:18;;;3036:62;3134:10;3114:18;;;3107:38;3162:19;;9914:79:0;;;;;;;;;10029:57;10038:6;982:10;10079:6;10060:16;:25;10029:8;:57::i;:::-;-1:-1:-1;10117:4:0;;9637:492;-1:-1:-1;;;;9637:492:0:o;10538:215::-;982:10;10626:4;10675:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10675:34:0;;;;;;;;;;10626:4;;10643:80;;10666:7;;10675:47;;10712:10;;10675:47;:::i;:::-;10643:8;:80::i;7038:104::-;7094:13;7127:7;7120:14;;;;;:::i;11256:413::-;982:10;11349:4;11393:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11393:34:0;;;;;;;;;;11446:35;;;;11438:85;;;;-1:-1:-1;;;11438:85:0;;3678:2:1;11438:85:0;;;3660:21:1;3717:2;3697:18;;;3690:30;3756:34;3736:18;;;3729:62;3827:7;3807:18;;;3800:35;3852:19;;11438:85:0;3476:401:1;11438:85:0;11559:67;982:10;11582:7;11610:15;11591:16;:34;11559:8;:67::i;:::-;-1:-1:-1;11657:4:0;;11256:413;-1:-1:-1;;;11256:413:0:o;8450:175::-;8536:4;8553:42;982:10;8577:9;8588:6;8553:9;:42::i;14940:380::-;-1:-1:-1;;;;;15076:19:0;;15068:68;;;;-1:-1:-1;;;15068:68:0;;4084:2:1;15068:68:0;;;4066:21:1;4123:2;4103:18;;;4096:30;4162:34;4142:18;;;4135:62;4233:6;4213:18;;;4206:34;4257:19;;15068:68:0;3882:400:1;15068:68:0;-1:-1:-1;;;;;15155:21:0;;15147:68;;;;-1:-1:-1;;;15147:68:0;;4489:2:1;15147:68:0;;;4471:21:1;4528:2;4508:18;;;4501:30;4567:34;4547:18;;;4540:62;4638:4;4618:18;;;4611:32;4660:19;;15147:68:0;4287:398:1;15147:68:0;-1:-1:-1;;;;;15228:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15280:32;;1281:25:1;;;15280:32:0;;1254:18:1;15280:32:0;;;;;;;14940:380;;;:::o;12159:733::-;-1:-1:-1;;;;;12299:20:0;;12291:70;;;;-1:-1:-1;;;12291:70:0;;4892:2:1;12291:70:0;;;4874:21:1;4931:2;4911:18;;;4904:30;4970:34;4950:18;;;4943:62;5041:7;5021:18;;;5014:35;5066:19;;12291:70:0;4690:401:1;12291:70:0;-1:-1:-1;;;;;12380:23:0;;12372:71;;;;-1:-1:-1;;;12372:71:0;;5298:2:1;12372:71:0;;;5280:21:1;5337:2;5317:18;;;5310:30;5376:34;5356:18;;;5349:62;5447:5;5427:18;;;5420:33;5470:19;;12372:71:0;5096:399:1;12372:71:0;-1:-1:-1;;;;;12540:17:0;;12516:21;12540:17;;;;;;;;;;;12576:23;;;;12568:74;;;;-1:-1:-1;;;12568:74:0;;5702:2:1;12568:74:0;;;5684:21:1;5741:2;5721:18;;;5714:30;5780:34;5760:18;;;5753:62;5851:8;5831:18;;;5824:36;5877:19;;12568:74:0;5500:402:1;12568:74:0;-1:-1:-1;;;;;12678:17:0;;;:9;:17;;;;;;;;;;;12698:22;;;12678:42;;12742:20;;;;;;;;:30;;12714:6;;12678:9;12742:30;;12714:6;;12742:30;:::i;:::-;;;;;;;;12807:9;-1:-1:-1;;;;;12790:35:0;12799:6;-1:-1:-1;;;;;12790:35:0;;12818:6;12790:35;;;;1281:25:1;;1269:2;1254:18;;1135:177;12790:35:0;;;;;;;;12280:612;12159:733;;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:196::-;505:20;;-1:-1:-1;;;;;554:54:1;;544:65;;534:93;;623:1;620;613:12;534:93;437:196;;;:::o;638:300::-;706:6;714;767:2;755:9;746:7;742:23;738:32;735:52;;;783:1;780;773:12;735:52;806:29;825:9;806:29;:::i;:::-;796:39;904:2;889:18;;;;876:32;;-1:-1:-1;;;638:300:1:o;1317:374::-;1394:6;1402;1410;1463:2;1451:9;1442:7;1438:23;1434:32;1431:52;;;1479:1;1476;1469:12;1431:52;1502:29;1521:9;1502:29;:::i;:::-;1492:39;;1550:38;1584:2;1573:9;1569:18;1550:38;:::i;:::-;1317:374;;1540:48;;-1:-1:-1;;;1657:2:1;1642:18;;;;1629:32;;1317:374::o;1885:186::-;1944:6;1997:2;1985:9;1976:7;1972:23;1968:32;1965:52;;;2013:1;2010;2003:12;1965:52;2036:29;2055:9;2036:29;:::i;:::-;2026:39;1885:186;-1:-1:-1;;;1885:186:1:o;2076:260::-;2144:6;2152;2205:2;2193:9;2184:7;2180:23;2176:32;2173:52;;;2221:1;2218;2211:12;2173:52;2244:29;2263:9;2244:29;:::i;:::-;2234:39;;2292:38;2326:2;2315:9;2311:18;2292:38;:::i;:::-;2282:48;;2076:260;;;;;:::o;2341:437::-;2420:1;2416:12;;;;2463;;;2484:61;;2538:4;2530:6;2526:17;2516:27;;2484:61;2591:2;2583:6;2580:14;2560:18;2557:38;2554:218;;-1:-1:-1;;;2625:1:1;2618:88;2729:4;2726:1;2719:15;2757:4;2754:1;2747:15;2554:218;;2341:437;;;:::o;3192:279::-;3257:9;;;3278:10;;;3275:190;;;-1:-1:-1;;;3318:1:1;3311:88;3422:4;3419:1;3412:15;3450:4;3447:1;3440:15

Swarm Source

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