ETH Price: $3,443.82 (-2.21%)
Gas: 3 Gwei

Token

PAULY2.0 (PAULY2.0)
 

Overview

Max Total Supply

10,000,000,000,000 PAULY2.0

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.141247444073499854 PAULY2.0

Value
$0.00
0xc1f1650ca144487e5d2ca2088c242ca30ed94e7c
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:
PAULY2

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

pragma solidity 0.6.12;


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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}



pragma solidity 0.6.12;

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





pragma solidity 0.6.12;

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 anananan");

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


contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping(address => uint256) public _balances;

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

    uint256 public  _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @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_,uint8 decimals_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals =decimals_;
    }

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

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


    function decimals() public view virtual  returns (uint8) {
        return _decimals;
    }

    /**
     * @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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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.
     */


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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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);
    }


    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}



// SPDX-License-Identifier: MIT



pragma solidity 0.6.12;



contract  PAULY2 is ERC20 {
    using SafeMath for uint256;
 
    constructor() public ERC20("PAULY2.0", "PAULY2.0",18) {   
        _totalSupply = (1*10**13) * (10**18);
        _balances[msg.sender] = (1*10**13) * (10**18);
          emit Transfer(address(0), msg.sender, (1*10**13) * (10**18));
    }

    receive() external payable {

  	}



    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        super._transfer(from, to, 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":"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":"","type":"address"}],"name":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","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":"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"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b5060408051808201825260088082526705041554c59322e360c41b60208084018281528551808701909652928552840152815191929160129161005691600391906100e0565b50815161006a9060049060208501906100e0565b506005805460ff191660ff9290921691909117905550506c7e37be2022c0914b2680000000600281905533600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3610173565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061012157805160ff191683800117855561014e565b8280016001018555821561014e579182015b8281111561014e578251825591602001919060010190610133565b5061015a92915061015e565b5090565b5b8082111561015a576000815560010161015f565b610bbe806101826000396000f3fe6080604052600436106100c65760003560e01c80633eaaf86b1161007f57806395d89b411161005957806395d89b41146102f2578063a457c2d714610307578063a9059cbb14610340578063dd62ed3e14610379576100cd565b80633eaaf86b146102775780636ebcf6071461028c57806370a08231146102bf576100cd565b806306fdde03146100d2578063095ea7b31461015c57806318160ddd146101a957806323b872dd146101d0578063313ce56714610213578063395093511461023e576100cd565b366100cd57005b600080fd5b3480156100de57600080fd5b506100e76103b4565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610121578181015183820152602001610109565b50505050905090810190601f16801561014e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016857600080fd5b506101956004803603604081101561017f57600080fd5b506001600160a01b03813516906020013561044a565b604080519115158252519081900360200190f35b3480156101b557600080fd5b506101be610467565b60408051918252519081900360200190f35b3480156101dc57600080fd5b50610195600480360360608110156101f357600080fd5b506001600160a01b0381358116916020810135909116906040013561046d565b34801561021f57600080fd5b506102286104f4565b6040805160ff9092168252519081900360200190f35b34801561024a57600080fd5b506101956004803603604081101561026157600080fd5b506001600160a01b0381351690602001356104fd565b34801561028357600080fd5b506101be61054b565b34801561029857600080fd5b506101be600480360360208110156102af57600080fd5b50356001600160a01b0316610551565b3480156102cb57600080fd5b506101be600480360360208110156102e257600080fd5b50356001600160a01b0316610563565b3480156102fe57600080fd5b506100e761057e565b34801561031357600080fd5b506101956004803603604081101561032a57600080fd5b506001600160a01b0381351690602001356105df565b34801561034c57600080fd5b506101956004803603604081101561036357600080fd5b506001600160a01b038135169060200135610647565b34801561038557600080fd5b506101be6004803603604081101561039c57600080fd5b506001600160a01b038135811691602001351661065b565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104405780601f1061041557610100808354040283529160200191610440565b820191906000526020600020905b81548152906001019060200180831161042357829003601f168201915b5050505050905090565b600061045e610457610686565b848461068a565b50600192915050565b60025490565b600061047a848484610776565b6104ea84610486610686565b6104e585604051806060016040528060288152602001610af3602891396001600160a01b038a166000908152600160205260408120906104c4610686565b6001600160a01b031681526020810191909152604001600020549190610826565b61068a565b5060019392505050565b60055460ff1690565b600061045e61050a610686565b846104e5856001600061051b610686565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906108bd565b60025481565b60006020819052908152604090205481565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104405780601f1061041557610100808354040283529160200191610440565b600061045e6105ec610686565b846104e585604051806060016040528060258152602001610b646025913960016000610616610686565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610826565b600061045e610654610686565b8484610776565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166106cf5760405162461bcd60e51b8152600401808060200182810382526024815260200180610b406024913960400191505060405180910390fd5b6001600160a01b0382166107145760405162461bcd60e51b8152600401808060200182810382526022815260200180610a876022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166107bb5760405162461bcd60e51b8152600401808060200182810382526025815260200180610b1b6025913960400191505060405180910390fd5b6001600160a01b0382166108005760405162461bcd60e51b8152600401808060200182810382526023815260200180610a646023913960400191505060405180910390fd5b806108165761081183836000610908565b610821565b610821838383610908565b505050565b600081848411156108b55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561087a578181015183820152602001610862565b50505050905090810190601f1680156108a75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156109015760405162461bcd60e51b8152600401808060200182810382526024815260200180610acf6024913960400191505060405180910390fd5b9392505050565b6001600160a01b03831661094d5760405162461bcd60e51b8152600401808060200182810382526025815260200180610b1b6025913960400191505060405180910390fd5b6001600160a01b0382166109925760405162461bcd60e51b8152600401808060200182810382526023815260200180610a646023913960400191505060405180910390fd5b61099d838383610821565b6109da81604051806060016040528060268152602001610aa9602691396001600160a01b0386166000908152602081905260409020549190610826565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610a0990826108bd565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206164646974696f6e206f766572666c6f7720616e616e616e616e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b46f4e38e8c36963715d1a50c18114b5657d1abef127a5e2e225ca2c801b2bde64736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106100c65760003560e01c80633eaaf86b1161007f57806395d89b411161005957806395d89b41146102f2578063a457c2d714610307578063a9059cbb14610340578063dd62ed3e14610379576100cd565b80633eaaf86b146102775780636ebcf6071461028c57806370a08231146102bf576100cd565b806306fdde03146100d2578063095ea7b31461015c57806318160ddd146101a957806323b872dd146101d0578063313ce56714610213578063395093511461023e576100cd565b366100cd57005b600080fd5b3480156100de57600080fd5b506100e76103b4565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610121578181015183820152602001610109565b50505050905090810190601f16801561014e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016857600080fd5b506101956004803603604081101561017f57600080fd5b506001600160a01b03813516906020013561044a565b604080519115158252519081900360200190f35b3480156101b557600080fd5b506101be610467565b60408051918252519081900360200190f35b3480156101dc57600080fd5b50610195600480360360608110156101f357600080fd5b506001600160a01b0381358116916020810135909116906040013561046d565b34801561021f57600080fd5b506102286104f4565b6040805160ff9092168252519081900360200190f35b34801561024a57600080fd5b506101956004803603604081101561026157600080fd5b506001600160a01b0381351690602001356104fd565b34801561028357600080fd5b506101be61054b565b34801561029857600080fd5b506101be600480360360208110156102af57600080fd5b50356001600160a01b0316610551565b3480156102cb57600080fd5b506101be600480360360208110156102e257600080fd5b50356001600160a01b0316610563565b3480156102fe57600080fd5b506100e761057e565b34801561031357600080fd5b506101956004803603604081101561032a57600080fd5b506001600160a01b0381351690602001356105df565b34801561034c57600080fd5b506101956004803603604081101561036357600080fd5b506001600160a01b038135169060200135610647565b34801561038557600080fd5b506101be6004803603604081101561039c57600080fd5b506001600160a01b038135811691602001351661065b565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104405780601f1061041557610100808354040283529160200191610440565b820191906000526020600020905b81548152906001019060200180831161042357829003601f168201915b5050505050905090565b600061045e610457610686565b848461068a565b50600192915050565b60025490565b600061047a848484610776565b6104ea84610486610686565b6104e585604051806060016040528060288152602001610af3602891396001600160a01b038a166000908152600160205260408120906104c4610686565b6001600160a01b031681526020810191909152604001600020549190610826565b61068a565b5060019392505050565b60055460ff1690565b600061045e61050a610686565b846104e5856001600061051b610686565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906108bd565b60025481565b60006020819052908152604090205481565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104405780601f1061041557610100808354040283529160200191610440565b600061045e6105ec610686565b846104e585604051806060016040528060258152602001610b646025913960016000610616610686565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610826565b600061045e610654610686565b8484610776565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166106cf5760405162461bcd60e51b8152600401808060200182810382526024815260200180610b406024913960400191505060405180910390fd5b6001600160a01b0382166107145760405162461bcd60e51b8152600401808060200182810382526022815260200180610a876022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166107bb5760405162461bcd60e51b8152600401808060200182810382526025815260200180610b1b6025913960400191505060405180910390fd5b6001600160a01b0382166108005760405162461bcd60e51b8152600401808060200182810382526023815260200180610a646023913960400191505060405180910390fd5b806108165761081183836000610908565b610821565b610821838383610908565b505050565b600081848411156108b55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561087a578181015183820152602001610862565b50505050905090810190601f1680156108a75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156109015760405162461bcd60e51b8152600401808060200182810382526024815260200180610acf6024913960400191505060405180910390fd5b9392505050565b6001600160a01b03831661094d5760405162461bcd60e51b8152600401808060200182810382526025815260200180610b1b6025913960400191505060405180910390fd5b6001600160a01b0382166109925760405162461bcd60e51b8152600401808060200182810382526023815260200180610a646023913960400191505060405180910390fd5b61099d838383610821565b6109da81604051806060016040528060268152602001610aa9602691396001600160a01b0386166000908152602081905260409020549190610826565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610a0990826108bd565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206164646974696f6e206f766572666c6f7720616e616e616e616e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b46f4e38e8c36963715d1a50c18114b5657d1abef127a5e2e225ca2c801b2bde64736f6c634300060c0033

Deployed Bytecode Sourcemap

15912:790:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8837:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10358:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;10358:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;9311:108;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;11009:355;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11009:355:0;;;;;;;;;;;;;;;;;:::i;9154:92::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11773:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11773:218:0;;;;;;;;:::i;8160:28::-;;;;;;;;;;;;;:::i;8031:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8031:44:0;-1:-1:-1;;;;;8031:44:0;;:::i;9482:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9482:127:0;-1:-1:-1;;;;;9482:127:0;;:::i;9048:96::-;;;;;;;;;;;;;:::i;12494:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12494:269:0;;;;;;;;:::i;9822:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9822:175:0;;;;;;;;:::i;10060:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;10060:151:0;;;;;;;;;;:::i;8837:92::-;8916:5;8909:12;;;;;;;;-1:-1:-1;;8909:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8883:13;;8909:12;;8916:5;;8909:12;;8916:5;8909:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8837:92;:::o;10358:169::-;10441:4;10458:39;10467:12;:10;:12::i;:::-;10481:7;10490:6;10458:8;:39::i;:::-;-1:-1:-1;10515:4:0;10358:169;;;;:::o;9311:108::-;9399:12;;9311:108;:::o;11009:355::-;11149:4;11166:36;11176:6;11184:9;11195:6;11166:9;:36::i;:::-;11213:121;11222:6;11230:12;:10;:12::i;:::-;11244:89;11282:6;11244:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11244:19:0;;;;;;:11;:19;;;;;;11264:12;:10;:12::i;:::-;-1:-1:-1;;;;;11244:33:0;;;;;;;;;;;;-1:-1:-1;11244:33:0;;;:89;:37;:89::i;:::-;11213:8;:121::i;:::-;-1:-1:-1;11352:4:0;11009:355;;;;;:::o;9154:92::-;9229:9;;;;9154:92;:::o;11773:218::-;11861:4;11878:83;11887:12;:10;:12::i;:::-;11901:7;11910:50;11949:10;11910:11;:25;11922:12;:10;:12::i;:::-;-1:-1:-1;;;;;11910:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11910:25:0;;;:34;;;;;;;;;;;:38;:50::i;8160:28::-;;;;:::o;8031:44::-;;;;;;;;;;;;;;:::o;9482:127::-;-1:-1:-1;;;;;9583:18:0;9556:7;9583:18;;;;;;;;;;;;9482:127::o;9048:96::-;9129:7;9122:14;;;;;;;;-1:-1:-1;;9122:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9096:13;;9122:14;;9129:7;;9122:14;;9129:7;9122:14;;;;;;;;;;;;;;;;;;;;;;;;12494:269;12587:4;12604:129;12613:12;:10;:12::i;:::-;12627:7;12636:96;12675:15;12636:96;;;;;;;;;;;;;;;;;:11;:25;12648:12;:10;:12::i;:::-;-1:-1:-1;;;;;12636:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;12636:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;9822:175::-;9908:4;9925:42;9935:12;:10;:12::i;:::-;9949:9;9960:6;9925:9;:42::i;10060:151::-;-1:-1:-1;;;;;10176:18:0;;;10149:7;10176:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10060:151::o;62:98::-;142:10;62:98;:::o;15316:380::-;-1:-1:-1;;;;;15452:19:0;;15444:68;;;;-1:-1:-1;;;15444:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15531:21:0;;15523:68;;;;-1:-1:-1;;;15523:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15604:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15656:32;;;;;;;;;;;;;;;;;15316:380;;;:::o;16278:421::-;-1:-1:-1;;;;;16410:18:0;;16402:68;;;;-1:-1:-1;;;16402:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16489:16:0;;16481:64;;;;-1:-1:-1;;;16481:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16559:11;16556:92;;16587:28;16603:4;16609:2;16613:1;16587:15;:28::i;:::-;16630:7;;16556:92;16658:33;16674:4;16680:2;16684:6;16658:15;:33::i;:::-;16278:421;;;:::o;4396:192::-;4482:7;4518:12;4510:6;;;;4502:29;;;;-1:-1:-1;;;4502:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4554:5:0;;;4396:192::o;3484:190::-;3542:7;3574:5;;;3598:6;;;;3590:55;;;;-1:-1:-1;;;3590:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3665:1;3484:190;-1:-1:-1;;;3484:190:0:o;13269:573::-;-1:-1:-1;;;;;13409:20:0;;13401:70;;;;-1:-1:-1;;;13401:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13490:23:0;;13482:71;;;;-1:-1:-1;;;13482:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13566:47;13587:6;13595:9;13606:6;13566:20;:47::i;:::-;13646:71;13668:6;13646:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13646:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13626:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13751:20;;;;;;;:32;;13776:6;13751:24;:32::i;:::-;-1:-1:-1;;;;;13728:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13799:35;;;;;;;13728:20;;13799:35;;;;;;;;;;;;;13269:573;;;:::o

Swarm Source

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