ETH Price: $3,406.21 (+3.96%)

Token

Schizo of Psyop (SCHIZOP)
 

Overview

Max Total Supply

54,541,839,999.23 SCHIZOP

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
34,650,000 SCHIZOP

Value
$0.00
0x307b50fa0cd6b9a7fd04668adc3eb47b54194107
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:
Schizop

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-24
*/

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: Schizop.sol


pragma solidity >=0.8.0;

/**                                                                                 
    SCHIZO OF PSYOP
    https://twitter.com/schizoptoken

    FINALE COMMUNITY
    https://twitter.com/FinaleCommunity

    Contract forked from Bens Finale
    Deployed by vas0x.eth with schizop tweaks

    This token is strictly for distribution between Finale holders & enthusiasts.
    Any purchase made for reasons which do not align with the Finale will render your schizop membership revoked.
    Participate at own risk. We will not be held liable for missing & or lost funds due to your investment or interest in the schizop.
 */



contract Schizop is ERC20, Ownable {
    uint256 public maxHoldingAmount; // $Finale $Finale $Finale
    bool public tradingOn = true; // $Finale $Finale $Finale
    bool public sellingOn = true; // $Finale $Finale $Finale
    bool public limitOn = false; // $Finale $Finale $Finale
    address public feeWallet = 0x96606D22Ada1ba55BB2EEdE8341b33B9658F8405; // Sell fees sent here. Finale Buybacks | OR | Burned.
    uint256 public sellFee = 1; // $Finale $Finale $Finale
    mapping(address => bool) public blacklist; // $Finale $Finale $Finale
    address public requiredToken = 0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374; // $Finale $Finale $Finale
    uint256 public requiredTokenAmount; // $Finale $Finale $Finale
    bool public requiredTokenRuleOn = false; // $Finale $Finale $Finale

    constructor() ERC20("Schizo of Psyop", "SCHIZOP") {
        // 55 billion tokens
        uint256 _totalSupply = 55 * 10 ** 9 * 10 ** 18; // $Finale $Finale $Finale
        uint256 initialMint = _totalSupply * 2 / 1000; // fraction % of the total supply to presalers

        // PROOF OF PARTICIPATION. CONGRATULATIONS
        address[] memory initialAddresses = new address[](3); // $Finale $Finale $Finale
        initialAddresses[0] = 0xdf5B260C0F5871f77842Df5d1926e1cDFc1008cf; // $Finale $Finale $Finale
        initialAddresses[1] = 0x48eCc378A1025bA8469Bb697751BFc7a1e0d3800; // $Finale $Finale $Finale
        initialAddresses[2] = 0x53748A25d3C0192bE92aF0249AC399108b909281; // $Finale $Finale $Finale

        for (uint i = 0; i < initialAddresses.length; i++) {
            _mint(initialAddresses[i], initialMint); // $Finale $Finale $Finale
        }

        // Mint the remaining tokens to the contract owner
        uint256 remainingSupply = _totalSupply - initialMint * initialAddresses.length;
        _mint(msg.sender, remainingSupply); // $Finale $Finale $Finale

        maxHoldingAmount = _totalSupply / 100; // $Finale $Finale $Finale
        requiredTokenAmount = 55 * 10 ** 9 * 10 ** 18 / 10000; // $Finale $Finale $Finale
    }

    function setBlacklist(address _address, bool _isBlacklisted) external onlyOwner {
        blacklist[_address] = _isBlacklisted; // $Finale $Finale $Finale
    }

    function setRule(bool _tradingOn, bool _sellingOn, bool _limitOn, uint256 _maxHoldingAmount, uint256 _sellFee, bool _requiredTokenRuleOn, uint256 _requiredTokenAmount) external onlyOwner {
        tradingOn = _tradingOn; // $Finale $Finale $Finale
        sellingOn = _sellingOn; // $Finale $Finale $Finale
        limitOn = _limitOn; // $Finale $Finale $Finale
        maxHoldingAmount = _maxHoldingAmount; // $Finale $Finale $Finale
        sellFee = _sellFee; // $Finale $Finale $Finale
        requiredTokenRuleOn = _requiredTokenRuleOn; // $Finale $Finale $Finale
        requiredTokenAmount = _requiredTokenAmount; // $Finale $Finale $Finale
    }

    function burn(uint256 amount) external {
        _burn(msg.sender, amount); // $Finale $Finale $Finale
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        require(!blacklist[to] && !blacklist[from], "Blacklisted"); // $Finale $Finale $Finale
        if (!tradingOn) {
            require(from == owner() || to == owner(), "Trading not enabled"); // $Finale $Finale $Finale
        } else {
            require(sellingOn, "Selling not enabled"); // $Finale $Finale $Finale
            if (limitOn) {
                require(super.balanceOf(to) + amount <= maxHoldingAmount, "Max holding amount exceeded"); // $Finale $Finale $Finale
            }
            if (requiredTokenRuleOn) {
                require(IERC20(requiredToken).balanceOf(from) >= requiredTokenAmount, "Insufficient Finale balance in wallet"); // $Finale $Finale $Finale
            }
        }
    }

    function _transfer(address sender, address recipient, uint256 amount) internal virtual override {
        uint256 feeAmount = amount * sellFee / 100; // $Finale $Finale $Finale
        uint256 amountAfterFee = amount - feeAmount; // $Finale $Finale $Finale
        super._transfer(sender, feeWallet, feeAmount); // $Finale $Finale $Finale
        super._transfer(sender, recipient, amountAfterFee); // $Finale $Finale $Finale
    }
}

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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"limitOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"requiredToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"requiredTokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"requiredTokenRuleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellingOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisted","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradingOn","type":"bool"},{"internalType":"bool","name":"_sellingOn","type":"bool"},{"internalType":"bool","name":"_limitOn","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"bool","name":"_requiredTokenRuleOn","type":"bool"},{"internalType":"uint256","name":"_requiredTokenAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

6080604052600780547696606d22ada1ba55bb2eede8341b33b9658f84050001016001600160b81b03199091161790556001600855600a80546001600160a01b03191673c7a2572fa8fdb0f7e81d6d3c4e3ccf78fb0dc374179055600c805460ff191690553480156200007157600080fd5b506040518060400160405280600f81526020016e0536368697a6f206f66205073796f7608c1b815250604051806040016040528060078152602001660534348495a4f560cc1b8152508160039081620000cb919062000780565b506004620000da828262000780565b505050620000f7620000f1620002d060201b60201c565b620002d4565b6bb1b6ef0655cb8d15d800000060006103e86200011683600262000862565b62000122919062000882565b60408051600380825260808201909252919250600091906020820160608036833701905050905073df5b260c0f5871f77842df5d1926e1cdfc1008cf81600081518110620001745762000174620008a5565b60200260200101906001600160a01b031690816001600160a01b0316815250507348ecc378a1025ba8469bb697751bfc7a1e0d380081600181518110620001bf57620001bf620008a5565b60200260200101906001600160a01b031690816001600160a01b0316815250507353748a25d3c0192be92af0249ac399108b909281816002815181106200020a576200020a620008a5565b60200260200101906001600160a01b031690816001600160a01b03168152505060005b81518110156200027a5762000265828281518110620002505762000250620008a5565b6020026020010151846200032660201b60201c565b806200027181620008bb565b9150506200022d565b5060008151836200028c919062000862565b620002989085620008d7565b9050620002a6338262000326565b620002b360648562000882565b60065550506a048cab98f1671af5800000600b55506200091d9050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003825760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200039060008383620003fb565b8060026000828254620003a49190620008ed565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03821660009081526009602052604090205460ff161580156200043e57506001600160a01b03831660009081526009602052604090205460ff16155b6200047a5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640162000379565b60075460ff1662000502576005546001600160a01b0384811691161480620004af57506005546001600160a01b038381169116145b620004fd5760405162461bcd60e51b815260206004820152601360248201527f54726164696e67206e6f7420656e61626c656400000000000000000000000000604482015260640162000379565b505050565b600754610100900460ff166200055b5760405162461bcd60e51b815260206004820152601360248201527f53656c6c696e67206e6f7420656e61626c656400000000000000000000000000604482015260640162000379565b60075462010000900460ff1615620005e357600654816200058784620006c160201b620004e51760201c565b620005939190620008ed565b1115620005e35760405162461bcd60e51b815260206004820152601b60248201527f4d617820686f6c64696e6720616d6f756e742065786365656465640000000000604482015260640162000379565b600c5460ff1615620004fd57600b54600a546040516370a0823160e01b81526001600160a01b038681166004830152909116906370a0823190602401602060405180830381865afa1580156200063d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000663919062000903565b1015620004fd5760405162461bcd60e51b815260206004820152602560248201527f496e73756666696369656e742046696e616c652062616c616e636520696e2077604482015264185b1b195d60da1b606482015260840162000379565b6001600160a01b031660009081526020819052604090205490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200070757607f821691505b6020821081036200072857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004fd57600081815260208120601f850160051c81016020861015620007575750805b601f850160051c820191505b81811015620007785782815560010162000763565b505050505050565b81516001600160401b038111156200079c576200079c620006dc565b620007b481620007ad8454620006f2565b846200072e565b602080601f831160018114620007ec5760008415620007d35750858301515b600019600386901b1c1916600185901b17855562000778565b600085815260208120601f198616915b828110156200081d57888601518255948401946001909101908401620007fc565b50858210156200083c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200087c576200087c6200084c565b92915050565b600082620008a057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201620008d057620008d06200084c565b5060010190565b818103818111156200087c576200087c6200084c565b808201808211156200087c576200087c6200084c565b6000602082840312156200091657600080fd5b5051919050565b6111bb806200092d6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806389f9a1d3116100f9578063e0d875ea11610097578063f25f4b5611610071578063f25f4b5614610356578063f2fde38b14610370578063f9f92be414610383578063fd1bc2ca146103a657600080fd5b8063e0d875ea14610324578063e402aa5814610337578063efe8e7b51461034957600080fd5b806395d89b41116100d357806395d89b41146102e3578063a457c2d7146102eb578063a9059cbb146102fe578063dd62ed3e1461031157600080fd5b806389f9a1d31461029e5780638a204ed6146102a75780638da5cb5b146102d257600080fd5b80632b14ca561161016657806342966c681161014057806342966c681461025d57806370a0823114610270578063715018a61461028357806371f482341461028b57600080fd5b80632b14ca5614610232578063313ce5671461023b578063395093511461024a57600080fd5b806306fdde03146101ae578063095ea7b3146101cc578063153b0d1e146101ef57806318160ddd1461020457806323b872dd1461021657806329d428ca14610229575b600080fd5b6101b66103b3565b6040516101c39190610ed4565b60405180910390f35b6101df6101da366004610f3e565b610445565b60405190151581526020016101c3565b6102026101fd366004610f78565b61045f565b005b6002545b6040519081526020016101c3565b6101df610224366004610fab565b610492565b610208600b5481565b61020860085481565b604051601281526020016101c3565b6101df610258366004610f3e565b6104b6565b61020261026b366004610fe7565b6104d8565b61020861027e366004611000565b6104e5565b610202610500565b6007546101df9062010000900460ff1681565b61020860065481565b600a546102ba906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b6005546001600160a01b03166102ba565b6101b6610514565b6101df6102f9366004610f3e565b610523565b6101df61030c366004610f3e565b6105a3565b61020861031f366004611022565b6105b1565b61020261033236600461104c565b6105dc565b6007546101df90610100900460ff1681565b600c546101df9060ff1681565b6007546102ba90630100000090046001600160a01b031681565b61020261037e366004611000565b61063f565b6101df610391366004611000565b60096020526000908152604090205460ff1681565b6007546101df9060ff1681565b6060600380546103c2906110bd565b80601f01602080910402602001604051908101604052809291908181526020018280546103ee906110bd565b801561043b5780601f106104105761010080835404028352916020019161043b565b820191906000526020600020905b81548152906001019060200180831161041e57829003601f168201915b5050505050905090565b6000336104538185856106b5565b60019150505b92915050565b6104676107da565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6000336104a0858285610834565b6104ab8585856108ae565b506001949350505050565b6000336104538185856104c983836105b1565b6104d3919061110d565b6106b5565b6104e2338261090c565b50565b6001600160a01b031660009081526020819052604090205490565b6105086107da565b6105126000610a47565b565b6060600480546103c2906110bd565b6000338161053182866105b1565b9050838110156105965760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104ab82868684036106b5565b6000336104538185856108ae565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105e46107da565b6007805461ffff191697151561ff00191697909717610100961515969096029590951762ff00001916620100009415159490940293909317909455600655600892909255600c805460ff191692151592909217909155600b55565b6106476107da565b6001600160a01b0381166106ac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161058d565b6104e281610a47565b6001600160a01b0383166107175760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161058d565b6001600160a01b0382166107785760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161058d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146105125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161058d565b600061084084846105b1565b905060001981146108a8578181101561089b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161058d565b6108a884848484036106b5565b50505050565b60006064600854836108c09190611120565b6108ca9190611137565b905060006108d88284611159565b90506108fa85600760039054906101000a90046001600160a01b031684610a99565b610905858583610a99565b5050505050565b6001600160a01b03821661096c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161058d565b61097882600083610c48565b6001600160a01b038216600090815260208190526040902054818110156109ec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161058d565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107cd565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610afd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161058d565b6001600160a01b038216610b5f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161058d565b610b6a838383610c48565b6001600160a01b03831660009081526020819052604090205481811015610be25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161058d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108a8565b6001600160a01b03821660009081526009602052604090205460ff16158015610c8a57506001600160a01b03831660009081526009602052604090205460ff16155b610cc45760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640161058d565b60075460ff16610d39576005546001600160a01b0384811691161480610cf757506005546001600160a01b038381169116145b610a425760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b604482015260640161058d565b600754610100900460ff16610d865760405162461bcd60e51b815260206004820152601360248201527214d95b1b1a5b99c81b9bdd08195b98589b1959606a1b604482015260640161058d565b60075462010000900460ff1615610dfc5760065481610da4846104e5565b610dae919061110d565b1115610dfc5760405162461bcd60e51b815260206004820152601b60248201527f4d617820686f6c64696e6720616d6f756e742065786365656465640000000000604482015260640161058d565b600c5460ff1615610a4257600b54600a546040516370a0823160e01b81526001600160a01b038681166004830152909116906370a0823190602401602060405180830381865afa158015610e54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e78919061116c565b1015610a425760405162461bcd60e51b815260206004820152602560248201527f496e73756666696369656e742046696e616c652062616c616e636520696e2077604482015264185b1b195d60da1b606482015260840161058d565b600060208083528351808285015260005b81811015610f0157858101830151858201604001528201610ee5565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f3957600080fd5b919050565b60008060408385031215610f5157600080fd5b610f5a83610f22565b946020939093013593505050565b80358015158114610f3957600080fd5b60008060408385031215610f8b57600080fd5b610f9483610f22565b9150610fa260208401610f68565b90509250929050565b600080600060608486031215610fc057600080fd5b610fc984610f22565b9250610fd760208501610f22565b9150604084013590509250925092565b600060208284031215610ff957600080fd5b5035919050565b60006020828403121561101257600080fd5b61101b82610f22565b9392505050565b6000806040838503121561103557600080fd5b61103e83610f22565b9150610fa260208401610f22565b600080600080600080600060e0888a03121561106757600080fd5b61107088610f68565b965061107e60208901610f68565b955061108c60408901610f68565b945060608801359350608088013592506110a860a08901610f68565b915060c0880135905092959891949750929550565b600181811c908216806110d157607f821691505b6020821081036110f157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610459576104596110f7565b8082028115828204841417610459576104596110f7565b60008261115457634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610459576104596110f7565b60006020828403121561117e57600080fd5b505191905056fea2646970667358221220114dd8bd83a4aa3dda0186975ae77735d7be31d56bc0abe5c4d90d1d73b9c3c264736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806389f9a1d3116100f9578063e0d875ea11610097578063f25f4b5611610071578063f25f4b5614610356578063f2fde38b14610370578063f9f92be414610383578063fd1bc2ca146103a657600080fd5b8063e0d875ea14610324578063e402aa5814610337578063efe8e7b51461034957600080fd5b806395d89b41116100d357806395d89b41146102e3578063a457c2d7146102eb578063a9059cbb146102fe578063dd62ed3e1461031157600080fd5b806389f9a1d31461029e5780638a204ed6146102a75780638da5cb5b146102d257600080fd5b80632b14ca561161016657806342966c681161014057806342966c681461025d57806370a0823114610270578063715018a61461028357806371f482341461028b57600080fd5b80632b14ca5614610232578063313ce5671461023b578063395093511461024a57600080fd5b806306fdde03146101ae578063095ea7b3146101cc578063153b0d1e146101ef57806318160ddd1461020457806323b872dd1461021657806329d428ca14610229575b600080fd5b6101b66103b3565b6040516101c39190610ed4565b60405180910390f35b6101df6101da366004610f3e565b610445565b60405190151581526020016101c3565b6102026101fd366004610f78565b61045f565b005b6002545b6040519081526020016101c3565b6101df610224366004610fab565b610492565b610208600b5481565b61020860085481565b604051601281526020016101c3565b6101df610258366004610f3e565b6104b6565b61020261026b366004610fe7565b6104d8565b61020861027e366004611000565b6104e5565b610202610500565b6007546101df9062010000900460ff1681565b61020860065481565b600a546102ba906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b6005546001600160a01b03166102ba565b6101b6610514565b6101df6102f9366004610f3e565b610523565b6101df61030c366004610f3e565b6105a3565b61020861031f366004611022565b6105b1565b61020261033236600461104c565b6105dc565b6007546101df90610100900460ff1681565b600c546101df9060ff1681565b6007546102ba90630100000090046001600160a01b031681565b61020261037e366004611000565b61063f565b6101df610391366004611000565b60096020526000908152604090205460ff1681565b6007546101df9060ff1681565b6060600380546103c2906110bd565b80601f01602080910402602001604051908101604052809291908181526020018280546103ee906110bd565b801561043b5780601f106104105761010080835404028352916020019161043b565b820191906000526020600020905b81548152906001019060200180831161041e57829003601f168201915b5050505050905090565b6000336104538185856106b5565b60019150505b92915050565b6104676107da565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6000336104a0858285610834565b6104ab8585856108ae565b506001949350505050565b6000336104538185856104c983836105b1565b6104d3919061110d565b6106b5565b6104e2338261090c565b50565b6001600160a01b031660009081526020819052604090205490565b6105086107da565b6105126000610a47565b565b6060600480546103c2906110bd565b6000338161053182866105b1565b9050838110156105965760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104ab82868684036106b5565b6000336104538185856108ae565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105e46107da565b6007805461ffff191697151561ff00191697909717610100961515969096029590951762ff00001916620100009415159490940293909317909455600655600892909255600c805460ff191692151592909217909155600b55565b6106476107da565b6001600160a01b0381166106ac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161058d565b6104e281610a47565b6001600160a01b0383166107175760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161058d565b6001600160a01b0382166107785760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161058d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146105125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161058d565b600061084084846105b1565b905060001981146108a8578181101561089b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161058d565b6108a884848484036106b5565b50505050565b60006064600854836108c09190611120565b6108ca9190611137565b905060006108d88284611159565b90506108fa85600760039054906101000a90046001600160a01b031684610a99565b610905858583610a99565b5050505050565b6001600160a01b03821661096c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161058d565b61097882600083610c48565b6001600160a01b038216600090815260208190526040902054818110156109ec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161058d565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107cd565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610afd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161058d565b6001600160a01b038216610b5f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161058d565b610b6a838383610c48565b6001600160a01b03831660009081526020819052604090205481811015610be25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161058d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108a8565b6001600160a01b03821660009081526009602052604090205460ff16158015610c8a57506001600160a01b03831660009081526009602052604090205460ff16155b610cc45760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640161058d565b60075460ff16610d39576005546001600160a01b0384811691161480610cf757506005546001600160a01b038381169116145b610a425760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b604482015260640161058d565b600754610100900460ff16610d865760405162461bcd60e51b815260206004820152601360248201527214d95b1b1a5b99c81b9bdd08195b98589b1959606a1b604482015260640161058d565b60075462010000900460ff1615610dfc5760065481610da4846104e5565b610dae919061110d565b1115610dfc5760405162461bcd60e51b815260206004820152601b60248201527f4d617820686f6c64696e6720616d6f756e742065786365656465640000000000604482015260640161058d565b600c5460ff1615610a4257600b54600a546040516370a0823160e01b81526001600160a01b038681166004830152909116906370a0823190602401602060405180830381865afa158015610e54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e78919061116c565b1015610a425760405162461bcd60e51b815260206004820152602560248201527f496e73756666696369656e742046696e616c652062616c616e636520696e2077604482015264185b1b195d60da1b606482015260840161058d565b600060208083528351808285015260005b81811015610f0157858101830151858201604001528201610ee5565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f3957600080fd5b919050565b60008060408385031215610f5157600080fd5b610f5a83610f22565b946020939093013593505050565b80358015158114610f3957600080fd5b60008060408385031215610f8b57600080fd5b610f9483610f22565b9150610fa260208401610f68565b90509250929050565b600080600060608486031215610fc057600080fd5b610fc984610f22565b9250610fd760208501610f22565b9150604084013590509250925092565b600060208284031215610ff957600080fd5b5035919050565b60006020828403121561101257600080fd5b61101b82610f22565b9392505050565b6000806040838503121561103557600080fd5b61103e83610f22565b9150610fa260208401610f22565b600080600080600080600060e0888a03121561106757600080fd5b61107088610f68565b965061107e60208901610f68565b955061108c60408901610f68565b945060608801359350608088013592506110a860a08901610f68565b915060c0880135905092959891949750929550565b600181811c908216806110d157607f821691505b6020821081036110f157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610459576104596110f7565b8082028115828204841417610459576104596110f7565b60008261115457634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610459576104596110f7565b60006020828403121561117e57600080fd5b505191905056fea2646970667358221220114dd8bd83a4aa3dda0186975ae77735d7be31d56bc0abe5c4d90d1d73b9c3c264736f6c63430008120033

Deployed Bytecode Sourcemap

21036:4327:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9345:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11705:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11705:201:0;1004:187:1;23124:162:0;;;;;;:::i;:::-;;:::i;:::-;;10474:108;10562:12;;10474:108;;;1766:25:1;;;1754:2;1739:18;10474:108:0;1620:177:1;12486:261:0;;;;;;:::i;:::-;;:::i;21701:34::-;;;;;;21459:26;;;;;;10316:93;;;10399:2;2277:36:1;;2265:2;2250:18;10316:93:0;2135:184:1;13156:238:0;;;;;;:::i;:::-;;:::i;23963:110::-;;;;;;:::i;:::-;;:::i;10645:127::-;;;;;;:::i;:::-;;:::i;2800:103::-;;;:::i;21267:27::-;;;;;;;;;;;;21078:31;;;;;;21594:73;;;;;-1:-1:-1;;;;;21594:73:0;;;;;;-1:-1:-1;;;;;2864:32:1;;;2846:51;;2834:2;2819:18;21594:73:0;2700:203:1;2159:87:0;2232:6;;-1:-1:-1;;;;;2232:6:0;2159:87;;9564:104;;;:::i;13897:436::-;;;;;;:::i;:::-;;:::i;10978:193::-;;;;;;:::i;:::-;;:::i;11234:151::-;;;;;;:::i;:::-;;:::i;23294:661::-;;;;;;:::i;:::-;;:::i;21205:28::-;;;;;;;;;;;;21769:39;;;;;;;;;21328:69;;;;;;;;-1:-1:-1;;;;;21328:69:0;;;3058:201;;;;;;:::i;:::-;;:::i;21519:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;21143:28;;;;;;;;;9345:100;9399:13;9432:5;9425:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9345:100;:::o;11705:201::-;11788:4;790:10;11844:32;790:10;11860:7;11869:6;11844:8;:32::i;:::-;11894:4;11887:11;;;11705:201;;;;;:::o;23124:162::-;2045:13;:11;:13::i;:::-;-1:-1:-1;;;;;23215:19:0;;;::::1;;::::0;;;:9:::1;:19;::::0;;;;:36;;-1:-1:-1;;23215:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23124:162::o;12486:261::-;12583:4;790:10;12641:38;12657:4;790:10;12672:6;12641:15;:38::i;:::-;12690:27;12700:4;12706:2;12710:6;12690:9;:27::i;:::-;-1:-1:-1;12735:4:0;;12486:261;-1:-1:-1;;;;12486:261:0:o;13156:238::-;13244:4;790:10;13300:64;790:10;13316:7;13353:10;13325:25;790:10;13316:7;13325:9;:25::i;:::-;:38;;;;:::i;:::-;13300:8;:64::i;23963:110::-;24013:25;24019:10;24031:6;24013:5;:25::i;:::-;23963:110;:::o;10645:127::-;-1:-1:-1;;;;;10746:18:0;10719:7;10746:18;;;;;;;;;;;;10645:127::o;2800:103::-;2045:13;:11;:13::i;:::-;2865:30:::1;2892:1;2865:18;:30::i;:::-;2800:103::o:0;9564:104::-;9620:13;9653:7;9646:14;;;;;:::i;13897:436::-;13990:4;790:10;13990:4;14073:25;790:10;14090:7;14073:9;:25::i;:::-;14046:52;;14137:15;14117:16;:35;;14109:85;;;;-1:-1:-1;;;14109:85:0;;4619:2:1;14109:85:0;;;4601:21:1;4658:2;4638:18;;;4631:30;4697:34;4677:18;;;4670:62;-1:-1:-1;;;4748:18:1;;;4741:35;4793:19;;14109:85:0;;;;;;;;;14230:60;14239:5;14246:7;14274:15;14255:16;:34;14230:8;:60::i;10978:193::-;11057:4;790:10;11113:28;790:10;11130:2;11134:6;11113:9;:28::i;11234:151::-;-1:-1:-1;;;;;11350:18:0;;;11323:7;11350:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11234:151::o;23294:661::-;2045:13;:11;:13::i;:::-;23492:9:::1;:22:::0;;-1:-1:-1;;23552:22:0;23492;::::1;;-1:-1:-1::0;;23552:22:0;;;;;23492::::1;23552::::0;::::1;;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;23612:18:0::1;::::0;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;;23668:16:::1;:36:::0;23742:7:::1;:18:::0;;;;23798:19:::1;:42:::0;;-1:-1:-1;;23798:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;23878:19:::1;:42:::0;23294:661::o;3058:201::-;2045:13;:11;:13::i;:::-;-1:-1:-1;;;;;3147:22:0;::::1;3139:73;;;::::0;-1:-1:-1;;;3139:73:0;;5025:2:1;3139:73:0::1;::::0;::::1;5007:21:1::0;5064:2;5044:18;;;5037:30;5103:34;5083:18;;;5076:62;-1:-1:-1;;;5154:18:1;;;5147:36;5200:19;;3139:73:0::1;4823:402:1::0;3139:73:0::1;3223:28;3242:8;3223:18;:28::i;17890:346::-:0;-1:-1:-1;;;;;17992:19:0;;17984:68;;;;-1:-1:-1;;;17984:68:0;;5432:2:1;17984:68:0;;;5414:21:1;5471:2;5451:18;;;5444:30;5510:34;5490:18;;;5483:62;-1:-1:-1;;;5561:18:1;;;5554:34;5605:19;;17984:68:0;5230:400:1;17984:68:0;-1:-1:-1;;;;;18071:21:0;;18063:68;;;;-1:-1:-1;;;18063:68:0;;5837:2:1;18063:68:0;;;5819:21:1;5876:2;5856:18;;;5849:30;5915:34;5895:18;;;5888:62;-1:-1:-1;;;5966:18:1;;;5959:32;6008:19;;18063:68:0;5635:398:1;18063:68:0;-1:-1:-1;;;;;18144:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18196:32;;1766:25:1;;;18196:32:0;;1739:18:1;18196:32:0;;;;;;;;17890:346;;;:::o;2324:132::-;2232:6;;-1:-1:-1;;;;;2232:6:0;790:10;2388:23;2380:68;;;;-1:-1:-1;;;2380:68:0;;6240:2:1;2380:68:0;;;6222:21:1;;;6259:18;;;6252:30;6318:34;6298:18;;;6291:62;6370:18;;2380:68:0;6038:356:1;18527:419:0;18628:24;18655:25;18665:5;18672:7;18655:9;:25::i;:::-;18628:52;;-1:-1:-1;;18695:16:0;:37;18691:248;;18777:6;18757:16;:26;;18749:68;;;;-1:-1:-1;;;18749:68:0;;6601:2:1;18749:68:0;;;6583:21:1;6640:2;6620:18;;;6613:30;6679:31;6659:18;;;6652:59;6728:18;;18749:68:0;6399:353:1;18749:68:0;18861:51;18870:5;18877:7;18905:6;18886:16;:25;18861:8;:51::i;:::-;18617:329;18527:419;;;:::o;24924:436::-;25031:17;25070:3;25060:7;;25051:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;25031:42;-1:-1:-1;25111:22:0;25136:18;25031:42;25136:6;:18;:::i;:::-;25111:43;;25192:45;25208:6;25216:9;;;;;;;;;-1:-1:-1;;;;;25216:9:0;25227;25192:15;:45::i;:::-;25275:50;25291:6;25299:9;25310:14;25275:15;:50::i;:::-;25020:340;;24924:436;;;:::o;16777:675::-;-1:-1:-1;;;;;16861:21:0;;16853:67;;;;-1:-1:-1;;;16853:67:0;;7487:2:1;16853:67:0;;;7469:21:1;7526:2;7506:18;;;7499:30;7565:34;7545:18;;;7538:62;-1:-1:-1;;;7616:18:1;;;7609:31;7657:19;;16853:67:0;7285:397:1;16853:67:0;16933:49;16954:7;16971:1;16975:6;16933:20;:49::i;:::-;-1:-1:-1;;;;;17020:18:0;;16995:22;17020:18;;;;;;;;;;;17057:24;;;;17049:71;;;;-1:-1:-1;;;17049:71:0;;7889:2:1;17049:71:0;;;7871:21:1;7928:2;7908:18;;;7901:30;7967:34;7947:18;;;7940:62;-1:-1:-1;;;8018:18:1;;;8011:32;8060:19;;17049:71:0;7687:398:1;17049:71:0;-1:-1:-1;;;;;17156:18:0;;:9;:18;;;;;;;;;;;17177:23;;;17156:44;;17295:12;:22;;;;;;;17346:37;1766:25:1;;;17156:9:0;;:18;17346:37;;1739:18:1;17346:37:0;1620:177:1;17396:48:0;16842:610;16777:675;;:::o;3419:191::-;3512:6;;;-1:-1:-1;;;;;3529:17:0;;;-1:-1:-1;;;;;;3529:17:0;;;;;;;3562:40;;3512:6;;;3529:17;3512:6;;3562:40;;3493:16;;3562:40;3482:128;3419:191;:::o;14803:806::-;-1:-1:-1;;;;;14900:18:0;;14892:68;;;;-1:-1:-1;;;14892:68:0;;8292:2:1;14892:68:0;;;8274:21:1;8331:2;8311:18;;;8304:30;8370:34;8350:18;;;8343:62;-1:-1:-1;;;8421:18:1;;;8414:35;8466:19;;14892:68:0;8090:401:1;14892:68:0;-1:-1:-1;;;;;14979:16:0;;14971:64;;;;-1:-1:-1;;;14971:64:0;;8698:2:1;14971:64:0;;;8680:21:1;8737:2;8717:18;;;8710:30;8776:34;8756:18;;;8749:62;-1:-1:-1;;;8827:18:1;;;8820:33;8870:19;;14971:64:0;8496:399:1;14971:64:0;15048:38;15069:4;15075:2;15079:6;15048:20;:38::i;:::-;-1:-1:-1;;;;;15121:15:0;;15099:19;15121:15;;;;;;;;;;;15155:21;;;;15147:72;;;;-1:-1:-1;;;15147:72:0;;9102:2:1;15147:72:0;;;9084:21:1;9141:2;9121:18;;;9114:30;9180:34;9160:18;;;9153:62;-1:-1:-1;;;9231:18:1;;;9224:36;9277:19;;15147:72:0;8900:402:1;15147:72:0;-1:-1:-1;;;;;15255:15:0;;;:9;:15;;;;;;;;;;;15273:20;;;15255:38;;15473:13;;;;;;;;;;:23;;;;;;15525:26;;1766:25:1;;;15473:13:0;;15525:26;;1739:18:1;15525:26:0;;;;;;;15564:37;16777:675;24081:835;-1:-1:-1;;;;;24199:13:0;;;;;;:9;:13;;;;;;;;24198:14;:34;;;;-1:-1:-1;;;;;;24217:15:0;;;;;;:9;:15;;;;;;;;24216:16;24198:34;24190:58;;;;-1:-1:-1;;;24190:58:0;;9509:2:1;24190:58:0;;;9491:21:1;9548:2;9528:18;;;9521:30;-1:-1:-1;;;9567:18:1;;;9560:41;9618:18;;24190:58:0;9307:335:1;24190:58:0;24291:9;;;;24286:623;;2232:6;;-1:-1:-1;;;;;24325:15:0;;;2232:6;;24325:15;;:32;;-1:-1:-1;2232:6:0;;-1:-1:-1;;;;;24344:13:0;;;2232:6;;24344:13;24325:32;24317:64;;;;-1:-1:-1;;;24317:64:0;;9849:2:1;24317:64:0;;;9831:21:1;9888:2;9868:18;;;9861:30;-1:-1:-1;;;9907:18:1;;;9900:49;9966:18;;24317:64:0;9647:343:1;24286:623:0;24449:9;;;;;;;24441:41;;;;-1:-1:-1;;;24441:41:0;;10197:2:1;24441:41:0;;;10179:21:1;10236:2;10216:18;;;10209:30;-1:-1:-1;;;10255:18:1;;;10248:49;10314:18;;24441:41:0;9995:343:1;24441:41:0;24528:7;;;;;;;24524:163;;;24596:16;;24586:6;24564:19;24580:2;24564:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;24556:88;;;;-1:-1:-1;;;24556:88:0;;10545:2:1;24556:88:0;;;10527:21:1;10584:2;10564:18;;;10557:30;10623:29;10603:18;;;10596:57;10670:18;;24556:88:0;10343:351:1;24556:88:0;24705:19;;;;24701:197;;;24794:19;;24760:13;;24753:37;;-1:-1:-1;;;24753:37:0;;-1:-1:-1;;;;;2864:32:1;;;24753:37:0;;;2846:51:1;24760:13:0;;;;24753:31;;2819:18:1;;24753:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:60;;24745:110;;;;-1:-1:-1;;;24745:110:0;;11090:2:1;24745:110:0;;;11072:21:1;11129:2;11109:18;;;11102:30;11168:34;11148:18;;;11141:62;-1:-1:-1;;;11219:18:1;;;11212:35;11264:19;;24745:110:0;10888:401:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:160::-;1261:20;;1317:13;;1310:21;1300:32;;1290:60;;1346:1;1343;1336:12;1361:254;1426:6;1434;1487:2;1475:9;1466:7;1462:23;1458:32;1455:52;;;1503:1;1500;1493:12;1455:52;1526:29;1545:9;1526:29;:::i;:::-;1516:39;;1574:35;1605:2;1594:9;1590:18;1574:35;:::i;:::-;1564:45;;1361:254;;;;;:::o;1802:328::-;1879:6;1887;1895;1948:2;1936:9;1927:7;1923:23;1919:32;1916:52;;;1964:1;1961;1954:12;1916:52;1987:29;2006:9;1987:29;:::i;:::-;1977:39;;2035:38;2069:2;2058:9;2054:18;2035:38;:::i;:::-;2025:48;;2120:2;2109:9;2105:18;2092:32;2082:42;;1802:328;;;;;:::o;2324:180::-;2383:6;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;-1:-1:-1;2475:23:1;;2324:180;-1:-1:-1;2324:180:1:o;2509:186::-;2568:6;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;2660:29;2679:9;2660:29;:::i;:::-;2650:39;2509:186;-1:-1:-1;;;2509:186:1:o;2908:260::-;2976:6;2984;3037:2;3025:9;3016:7;3012:23;3008:32;3005:52;;;3053:1;3050;3043:12;3005:52;3076:29;3095:9;3076:29;:::i;:::-;3066:39;;3124:38;3158:2;3147:9;3143:18;3124:38;:::i;3173:592::-;3274:6;3282;3290;3298;3306;3314;3322;3375:3;3363:9;3354:7;3350:23;3346:33;3343:53;;;3392:1;3389;3382:12;3343:53;3415:26;3431:9;3415:26;:::i;:::-;3405:36;;3460:35;3491:2;3480:9;3476:18;3460:35;:::i;:::-;3450:45;;3514:35;3545:2;3534:9;3530:18;3514:35;:::i;:::-;3504:45;;3596:2;3585:9;3581:18;3568:32;3558:42;;3647:3;3636:9;3632:19;3619:33;3609:43;;3671:36;3702:3;3691:9;3687:19;3671:36;:::i;:::-;3661:46;;3754:3;3743:9;3739:19;3726:33;3716:43;;3173:592;;;;;;;;;;:::o;3770:380::-;3849:1;3845:12;;;;3892;;;3913:61;;3967:4;3959:6;3955:17;3945:27;;3913:61;4020:2;4012:6;4009:14;3989:18;3986:38;3983:161;;4066:10;4061:3;4057:20;4054:1;4047:31;4101:4;4098:1;4091:15;4129:4;4126:1;4119:15;3983:161;;3770:380;;;:::o;4155:127::-;4216:10;4211:3;4207:20;4204:1;4197:31;4247:4;4244:1;4237:15;4271:4;4268:1;4261:15;4287:125;4352:9;;;4373:10;;;4370:36;;;4386:18;;:::i;6757:168::-;6830:9;;;6861;;6878:15;;;6872:22;;6858:37;6848:71;;6899:18;;:::i;6930:217::-;6970:1;6996;6986:132;;7040:10;7035:3;7031:20;7028:1;7021:31;7075:4;7072:1;7065:15;7103:4;7100:1;7093:15;6986:132;-1:-1:-1;7132:9:1;;6930:217::o;7152:128::-;7219:9;;;7240:11;;;7237:37;;;7254:18;;:::i;10699:184::-;10769:6;10822:2;10810:9;10801:7;10797:23;10793:32;10790:52;;;10838:1;10835;10828:12;10790:52;-1:-1:-1;10861:16:1;;10699:184;-1:-1:-1;10699:184:1:o

Swarm Source

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