POL Price: $0.312001 (-3.27%)
 

Overview

Max Total Supply

50,000,000 FARM

Holders

40

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Welcome to CryptoFarmers, a captivating browser based Web3 adventure where you cultivate your digital green thumb to earn real cryptocurrency.

Contract Source Code Verified (Exact Match)

Contract Name:
FARM

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2024-09-15
*/

// SPDX-License-Identifier: MIT
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.6/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.6/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.6/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.6/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.6/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.6/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.6/contracts/access/Ownable2Step.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides 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} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}

// File: FARM_Token_v1-certik-fix.sol


pragma solidity ^0.8.18;




contract FARM is ERC20, Pausable, Ownable2Step {


    constructor(
        uint256 initialsupply,
        address supplyaddress,
        string memory name,
        string memory symbol

    ) ERC20(name, symbol) {
        _mint(supplyaddress, initialsupply * 10**6);  // decimals is 6
    }

   function decimals() public view virtual override returns (uint8) {
        return 6;
    }
    
    mapping(address => bool) public isBlocked;

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function toBlackList(address forBlock) public onlyOwner {
        isBlocked[forBlock] = true;
    }

    function fromBlackList(address forUnblock) public onlyOwner {
        isBlocked[forUnblock] = false;
    }

    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        require(isBlocked[msg.sender] == false, "Your address is blacklisted!");
        require(isBlocked[to] == false, "Recipient address is blacklisted!");
        require(to != address(0), "ERC20: transfer to the zero address");
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        require(isBlocked[from] == false, "From address is blacklisted!");
        require(isBlocked[to] == false, "Recipient address is blacklisted!");
        require(
            isBlocked[msg.sender] == false,
            "Your address is blacklisted!"
        );
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function burn(uint256 amount) public {
        require(isBlocked[msg.sender] == false, "Your address is blacklisted!");
        _burn(_msgSender(), amount);
    }

    function burnBlackFunds(address account, uint256 amount) public onlyOwner {
        require(isBlocked[account] == true, "The address is not blacklisted!");
        _burn(account, amount);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override whenNotPaused {
        super._beforeTokenTransfer(from, to, amount);
    }

    function renounceOwnership() public virtual override onlyOwner {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialsupply","type":"uint256"},{"internalType":"address","name":"supplyaddress","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":"OwnershipTransferStarted","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnBlackFunds","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":[{"internalType":"address","name":"forUnblock","type":"address"}],"name":"fromBlackList","outputs":[],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"forBlock","type":"address"}],"name":"toBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620033273803806200332783398181016040528101906200003791906200060b565b818181600390816200004a9190620008fc565b5080600490816200005c9190620008fc565b5050506000600560006101000a81548160ff0219169083151502179055506200009a6200008e620000c660201b60201c565b620000ce60201b60201c565b620000bc83620f424086620000b0919062000a12565b6200010760201b60201c565b5050505062000bbb565b600033905090565b600660006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905562000104816200027460201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001709062000abe565b60405180910390fd5b6200018d600083836200033a60201b60201c565b8060026000828254620001a1919062000ae0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000254919062000b2c565b60405180910390a362000270600083836200036260201b60201c565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200034a6200036760201b60201c565b6200035d838383620003bc60201b60201c565b505050565b505050565b62000377620003c160201b60201c565b15620003ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b19062000b99565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6200040181620003ec565b81146200040d57600080fd5b50565b6000815190506200042181620003f6565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004548262000427565b9050919050565b620004668162000447565b81146200047257600080fd5b50565b60008151905062000486816200045b565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004e18262000496565b810181811067ffffffffffffffff82111715620005035762000502620004a7565b5b80604052505050565b600062000518620003d8565b9050620005268282620004d6565b919050565b600067ffffffffffffffff821115620005495762000548620004a7565b5b620005548262000496565b9050602081019050919050565b60005b838110156200058157808201518184015260208101905062000564565b60008484015250505050565b6000620005a46200059e846200052b565b6200050c565b905082815260208101848484011115620005c357620005c262000491565b5b620005d084828562000561565b509392505050565b600082601f830112620005f057620005ef6200048c565b5b8151620006028482602086016200058d565b91505092915050565b60008060008060808587031215620006285762000627620003e2565b5b6000620006388782880162000410565b94505060206200064b8782880162000475565b935050604085015167ffffffffffffffff8111156200066f576200066e620003e7565b5b6200067d87828801620005d8565b925050606085015167ffffffffffffffff811115620006a157620006a0620003e7565b5b620006af87828801620005d8565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070e57607f821691505b602082108103620007245762000723620006c6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200078e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200074f565b6200079a86836200074f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007dd620007d7620007d184620003ec565b620007b2565b620003ec565b9050919050565b6000819050919050565b620007f983620007bc565b620008116200080882620007e4565b8484546200075c565b825550505050565b600090565b6200082862000819565b62000835818484620007ee565b505050565b5b818110156200085d57620008516000826200081e565b6001810190506200083b565b5050565b601f821115620008ac5762000876816200072a565b62000881846200073f565b8101602085101562000891578190505b620008a9620008a0856200073f565b8301826200083a565b50505b505050565b600082821c905092915050565b6000620008d160001984600802620008b1565b1980831691505092915050565b6000620008ec8383620008be565b9150826002028217905092915050565b6200090782620006bb565b67ffffffffffffffff811115620009235762000922620004a7565b5b6200092f8254620006f5565b6200093c82828562000861565b600060209050601f8311600181146200097457600084156200095f578287015190505b6200096b8582620008de565b865550620009db565b601f19841662000984866200072a565b60005b82811015620009ae5784890151825560018201915060208501945060208101905062000987565b86831015620009ce5784890151620009ca601f891682620008be565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a1f82620003ec565b915062000a2c83620003ec565b925082820262000a3c81620003ec565b9150828204841483151762000a565762000a55620009e3565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000aa6601f8362000a5d565b915062000ab38262000a6e565b602082019050919050565b6000602082019050818103600083015262000ad98162000a97565b9050919050565b600062000aed82620003ec565b915062000afa83620003ec565b925082820190508082111562000b155762000b14620009e3565b5b92915050565b62000b2681620003ec565b82525050565b600060208201905062000b43600083018462000b1b565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000b8160108362000a5d565b915062000b8e8262000b49565b602082019050919050565b6000602082019050818103600083015262000bb48162000b72565b9050919050565b61275c8062000bcb6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610400578063e30c397814610430578063f2fde38b1461044e578063fbac39511461046a57610173565b8063a9059cbb14610398578063cbcee0fc146103c8578063dbad491a146103e457610173565b8063715018a61461030e57806379ba5097146103185780638456cb59146103225780638da5cb5b1461032c57806395d89b411461034a578063a457c2d71461036857610173565b80633950935111610130578063395093511461024e5780633f4ba83a1461027e57806340c10f191461028857806342966c68146102a45780635c975abb146102c057806370a08231146102de57610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806320188d72146101e457806323b872dd14610200578063313ce56714610230575b600080fd5b61018061049a565b60405161018d9190611aa6565b60405180910390f35b6101b060048036038101906101ab9190611b61565b61052c565b6040516101bd9190611bbc565b60405180910390f35b6101ce61054f565b6040516101db9190611be6565b60405180910390f35b6101fe60048036038101906101f99190611c01565b610559565b005b61021a60048036038101906102159190611c2e565b6105bc565b6040516102279190611bbc565b60405180910390f35b6102386107a4565b6040516102459190611c9d565b60405180910390f35b61026860048036038101906102639190611b61565b6107ad565b6040516102759190611bbc565b60405180910390f35b6102866107e4565b005b6102a2600480360381019061029d9190611b61565b6107f6565b005b6102be60048036038101906102b99190611cb8565b61080c565b005b6102c86108b3565b6040516102d59190611bbc565b60405180910390f35b6102f860048036038101906102f39190611c01565b6108ca565b6040516103059190611be6565b60405180910390f35b610316610912565b005b61032061091c565b005b61032a6109a9565b005b6103346109bb565b6040516103419190611cf4565b60405180910390f35b6103526109e5565b60405161035f9190611aa6565b60405180910390f35b610382600480360381019061037d9190611b61565b610a77565b60405161038f9190611bbc565b60405180910390f35b6103b260048036038101906103ad9190611b61565b610aee565b6040516103bf9190611bbc565b60405180910390f35b6103e260048036038101906103dd9190611b61565b610ca6565b005b6103fe60048036038101906103f99190611c01565b610d4f565b005b61041a60048036038101906104159190611d0f565b610db2565b6040516104279190611be6565b60405180910390f35b610438610e39565b6040516104459190611cf4565b60405180910390f35b61046860048036038101906104639190611c01565b610e63565b005b610484600480360381019061047f9190611c01565b610f10565b6040516104919190611bbc565b60405180910390f35b6060600380546104a990611d7e565b80601f01602080910402602001604051908101604052809291908181526020018280546104d590611d7e565b80156105225780601f106104f757610100808354040283529160200191610522565b820191906000526020600020905b81548152906001019060200180831161050557829003601f168201915b5050505050905090565b600080610537610f30565b9050610544818585610f38565b600191505092915050565b6000600254905090565b610561611101565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000801515600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064790611dfb565b60405180910390fd5b60001515600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146106e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106da90611e8d565b60405180910390fd5b60001515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076d90611ef9565b60405180910390fd5b6000610780610f30565b905061078d85828561117f565b61079885858561120b565b60019150509392505050565b60006006905090565b6000806107b8610f30565b90506107d98185856107ca8589610db2565b6107d49190611f48565b610f38565b600191505092915050565b6107ec611101565b6107f4611481565b565b6107fe611101565b61080882826114e4565b5050565b60001515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461089f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089690611ef9565b60405180910390fd5b6108b06108aa610f30565b8261163a565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61091a611101565b565b6000610926610f30565b90508073ffffffffffffffffffffffffffffffffffffffff16610947610e39565b73ffffffffffffffffffffffffffffffffffffffff161461099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611fee565b60405180910390fd5b6109a681611807565b50565b6109b1611101565b6109b9611838565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109f490611d7e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2090611d7e565b8015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b5050505050905090565b600080610a82610f30565b90506000610a908286610db2565b905083811015610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90612080565b60405180910390fd5b610ae28286868403610f38565b60019250505092915050565b6000801515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7990611ef9565b60405180910390fd5b60001515600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90611e8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b90612112565b60405180910390fd5b6000610c8e610f30565b9050610c9b81858561120b565b600191505092915050565b610cae611101565b60011515600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d389061217e565b60405180910390fd5b610d4b828261163a565b5050565b610d57611101565b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e6b611101565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16610ecb6109bb565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60076020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90612210565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d906122a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110f49190611be6565b60405180910390a3505050565b611109610f30565b73ffffffffffffffffffffffffffffffffffffffff166111276109bb565b73ffffffffffffffffffffffffffffffffffffffff161461117d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111749061230e565b60405180910390fd5b565b600061118b8484610db2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461120557818110156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee9061237a565b60405180910390fd5b6112048484848403610f38565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361127a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112719061240c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e090612112565b60405180910390fd5b6112f483838361189b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561137a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113719061249e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114689190611be6565b60405180910390a361147b8484846118b3565b50505050565b6114896118b8565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6114cd610f30565b6040516114da9190611cf4565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a9061250a565b60405180910390fd5b61155f6000838361189b565b80600260008282546115719190611f48565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116229190611be6565b60405180910390a3611636600083836118b3565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a09061259c565b60405180910390fd5b6116b58260008361189b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561173b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117329061262e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117ee9190611be6565b60405180910390a3611802836000846118b3565b505050565b600660006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561183581611901565b50565b6118406119c7565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611884610f30565b6040516118919190611cf4565b60405180910390a1565b6118a36119c7565b6118ae838383611a11565b505050565b505050565b6118c06108b3565b6118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f69061269a565b60405180910390fd5b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119cf6108b3565b15611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0690612706565b60405180910390fd5b565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a50578082015181840152602081019050611a35565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a7882611a16565b611a828185611a21565b9350611a92818560208601611a32565b611a9b81611a5c565b840191505092915050565b60006020820190508181036000830152611ac08184611a6d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611af882611acd565b9050919050565b611b0881611aed565b8114611b1357600080fd5b50565b600081359050611b2581611aff565b92915050565b6000819050919050565b611b3e81611b2b565b8114611b4957600080fd5b50565b600081359050611b5b81611b35565b92915050565b60008060408385031215611b7857611b77611ac8565b5b6000611b8685828601611b16565b9250506020611b9785828601611b4c565b9150509250929050565b60008115159050919050565b611bb681611ba1565b82525050565b6000602082019050611bd16000830184611bad565b92915050565b611be081611b2b565b82525050565b6000602082019050611bfb6000830184611bd7565b92915050565b600060208284031215611c1757611c16611ac8565b5b6000611c2584828501611b16565b91505092915050565b600080600060608486031215611c4757611c46611ac8565b5b6000611c5586828701611b16565b9350506020611c6686828701611b16565b9250506040611c7786828701611b4c565b9150509250925092565b600060ff82169050919050565b611c9781611c81565b82525050565b6000602082019050611cb26000830184611c8e565b92915050565b600060208284031215611cce57611ccd611ac8565b5b6000611cdc84828501611b4c565b91505092915050565b611cee81611aed565b82525050565b6000602082019050611d096000830184611ce5565b92915050565b60008060408385031215611d2657611d25611ac8565b5b6000611d3485828601611b16565b9250506020611d4585828601611b16565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d9657607f821691505b602082108103611da957611da8611d4f565b5b50919050565b7f46726f6d206164647265737320697320626c61636b6c69737465642100000000600082015250565b6000611de5601c83611a21565b9150611df082611daf565b602082019050919050565b60006020820190508181036000830152611e1481611dd8565b9050919050565b7f526563697069656e74206164647265737320697320626c61636b6c697374656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e77602183611a21565b9150611e8282611e1b565b604082019050919050565b60006020820190508181036000830152611ea681611e6a565b9050919050565b7f596f7572206164647265737320697320626c61636b6c69737465642100000000600082015250565b6000611ee3601c83611a21565b9150611eee82611ead565b602082019050919050565b60006020820190508181036000830152611f1281611ed6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f5382611b2b565b9150611f5e83611b2b565b9250828201905080821115611f7657611f75611f19565b5b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b6000611fd8602983611a21565b9150611fe382611f7c565b604082019050919050565b6000602082019050818103600083015261200781611fcb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061206a602583611a21565b91506120758261200e565b604082019050919050565b600060208201905081810360008301526120998161205d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120fc602383611a21565b9150612107826120a0565b604082019050919050565b6000602082019050818103600083015261212b816120ef565b9050919050565b7f5468652061646472657373206973206e6f7420626c61636b6c69737465642100600082015250565b6000612168601f83611a21565b915061217382612132565b602082019050919050565b600060208201905081810360008301526121978161215b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121fa602483611a21565b91506122058261219e565b604082019050919050565b60006020820190508181036000830152612229816121ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061228c602283611a21565b915061229782612230565b604082019050919050565b600060208201905081810360008301526122bb8161227f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006122f8602083611a21565b9150612303826122c2565b602082019050919050565b60006020820190508181036000830152612327816122eb565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612364601d83611a21565b915061236f8261232e565b602082019050919050565b6000602082019050818103600083015261239381612357565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123f6602583611a21565b91506124018261239a565b604082019050919050565b60006020820190508181036000830152612425816123e9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612488602683611a21565b91506124938261242c565b604082019050919050565b600060208201905081810360008301526124b78161247b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006124f4601f83611a21565b91506124ff826124be565b602082019050919050565b60006020820190508181036000830152612523816124e7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612586602183611a21565b91506125918261252a565b604082019050919050565b600060208201905081810360008301526125b581612579565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612618602283611a21565b9150612623826125bc565b604082019050919050565b600060208201905081810360008301526126478161260b565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612684601483611a21565b915061268f8261264e565b602082019050919050565b600060208201905081810360008301526126b381612677565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006126f0601083611a21565b91506126fb826126ba565b602082019050919050565b6000602082019050818103600083015261271f816126e3565b905091905056fea26469706673582212200f8b797ff83125370e81832922dd2edd3d5bc5a6e601f8f1ab7c9cb7763cb66664736f6c634300081300330000000000000000000000000000000000000000000000000000000002faf0800000000000000000000000003a607353613d63d03bc08cd174d0c50fc5505b14000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000d43727970746f4661726d6572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044641524d00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610400578063e30c397814610430578063f2fde38b1461044e578063fbac39511461046a57610173565b8063a9059cbb14610398578063cbcee0fc146103c8578063dbad491a146103e457610173565b8063715018a61461030e57806379ba5097146103185780638456cb59146103225780638da5cb5b1461032c57806395d89b411461034a578063a457c2d71461036857610173565b80633950935111610130578063395093511461024e5780633f4ba83a1461027e57806340c10f191461028857806342966c68146102a45780635c975abb146102c057806370a08231146102de57610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806320188d72146101e457806323b872dd14610200578063313ce56714610230575b600080fd5b61018061049a565b60405161018d9190611aa6565b60405180910390f35b6101b060048036038101906101ab9190611b61565b61052c565b6040516101bd9190611bbc565b60405180910390f35b6101ce61054f565b6040516101db9190611be6565b60405180910390f35b6101fe60048036038101906101f99190611c01565b610559565b005b61021a60048036038101906102159190611c2e565b6105bc565b6040516102279190611bbc565b60405180910390f35b6102386107a4565b6040516102459190611c9d565b60405180910390f35b61026860048036038101906102639190611b61565b6107ad565b6040516102759190611bbc565b60405180910390f35b6102866107e4565b005b6102a2600480360381019061029d9190611b61565b6107f6565b005b6102be60048036038101906102b99190611cb8565b61080c565b005b6102c86108b3565b6040516102d59190611bbc565b60405180910390f35b6102f860048036038101906102f39190611c01565b6108ca565b6040516103059190611be6565b60405180910390f35b610316610912565b005b61032061091c565b005b61032a6109a9565b005b6103346109bb565b6040516103419190611cf4565b60405180910390f35b6103526109e5565b60405161035f9190611aa6565b60405180910390f35b610382600480360381019061037d9190611b61565b610a77565b60405161038f9190611bbc565b60405180910390f35b6103b260048036038101906103ad9190611b61565b610aee565b6040516103bf9190611bbc565b60405180910390f35b6103e260048036038101906103dd9190611b61565b610ca6565b005b6103fe60048036038101906103f99190611c01565b610d4f565b005b61041a60048036038101906104159190611d0f565b610db2565b6040516104279190611be6565b60405180910390f35b610438610e39565b6040516104459190611cf4565b60405180910390f35b61046860048036038101906104639190611c01565b610e63565b005b610484600480360381019061047f9190611c01565b610f10565b6040516104919190611bbc565b60405180910390f35b6060600380546104a990611d7e565b80601f01602080910402602001604051908101604052809291908181526020018280546104d590611d7e565b80156105225780601f106104f757610100808354040283529160200191610522565b820191906000526020600020905b81548152906001019060200180831161050557829003601f168201915b5050505050905090565b600080610537610f30565b9050610544818585610f38565b600191505092915050565b6000600254905090565b610561611101565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000801515600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064790611dfb565b60405180910390fd5b60001515600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146106e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106da90611e8d565b60405180910390fd5b60001515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076d90611ef9565b60405180910390fd5b6000610780610f30565b905061078d85828561117f565b61079885858561120b565b60019150509392505050565b60006006905090565b6000806107b8610f30565b90506107d98185856107ca8589610db2565b6107d49190611f48565b610f38565b600191505092915050565b6107ec611101565b6107f4611481565b565b6107fe611101565b61080882826114e4565b5050565b60001515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461089f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089690611ef9565b60405180910390fd5b6108b06108aa610f30565b8261163a565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61091a611101565b565b6000610926610f30565b90508073ffffffffffffffffffffffffffffffffffffffff16610947610e39565b73ffffffffffffffffffffffffffffffffffffffff161461099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611fee565b60405180910390fd5b6109a681611807565b50565b6109b1611101565b6109b9611838565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109f490611d7e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2090611d7e565b8015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b5050505050905090565b600080610a82610f30565b90506000610a908286610db2565b905083811015610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90612080565b60405180910390fd5b610ae28286868403610f38565b60019250505092915050565b6000801515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7990611ef9565b60405180910390fd5b60001515600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90611e8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b90612112565b60405180910390fd5b6000610c8e610f30565b9050610c9b81858561120b565b600191505092915050565b610cae611101565b60011515600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d389061217e565b60405180910390fd5b610d4b828261163a565b5050565b610d57611101565b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e6b611101565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16610ecb6109bb565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60076020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90612210565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d906122a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110f49190611be6565b60405180910390a3505050565b611109610f30565b73ffffffffffffffffffffffffffffffffffffffff166111276109bb565b73ffffffffffffffffffffffffffffffffffffffff161461117d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111749061230e565b60405180910390fd5b565b600061118b8484610db2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461120557818110156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee9061237a565b60405180910390fd5b6112048484848403610f38565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361127a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112719061240c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e090612112565b60405180910390fd5b6112f483838361189b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561137a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113719061249e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114689190611be6565b60405180910390a361147b8484846118b3565b50505050565b6114896118b8565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6114cd610f30565b6040516114da9190611cf4565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a9061250a565b60405180910390fd5b61155f6000838361189b565b80600260008282546115719190611f48565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116229190611be6565b60405180910390a3611636600083836118b3565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a09061259c565b60405180910390fd5b6116b58260008361189b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561173b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117329061262e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117ee9190611be6565b60405180910390a3611802836000846118b3565b505050565b600660006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561183581611901565b50565b6118406119c7565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611884610f30565b6040516118919190611cf4565b60405180910390a1565b6118a36119c7565b6118ae838383611a11565b505050565b505050565b6118c06108b3565b6118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f69061269a565b60405180910390fd5b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119cf6108b3565b15611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0690612706565b60405180910390fd5b565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a50578082015181840152602081019050611a35565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a7882611a16565b611a828185611a21565b9350611a92818560208601611a32565b611a9b81611a5c565b840191505092915050565b60006020820190508181036000830152611ac08184611a6d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611af882611acd565b9050919050565b611b0881611aed565b8114611b1357600080fd5b50565b600081359050611b2581611aff565b92915050565b6000819050919050565b611b3e81611b2b565b8114611b4957600080fd5b50565b600081359050611b5b81611b35565b92915050565b60008060408385031215611b7857611b77611ac8565b5b6000611b8685828601611b16565b9250506020611b9785828601611b4c565b9150509250929050565b60008115159050919050565b611bb681611ba1565b82525050565b6000602082019050611bd16000830184611bad565b92915050565b611be081611b2b565b82525050565b6000602082019050611bfb6000830184611bd7565b92915050565b600060208284031215611c1757611c16611ac8565b5b6000611c2584828501611b16565b91505092915050565b600080600060608486031215611c4757611c46611ac8565b5b6000611c5586828701611b16565b9350506020611c6686828701611b16565b9250506040611c7786828701611b4c565b9150509250925092565b600060ff82169050919050565b611c9781611c81565b82525050565b6000602082019050611cb26000830184611c8e565b92915050565b600060208284031215611cce57611ccd611ac8565b5b6000611cdc84828501611b4c565b91505092915050565b611cee81611aed565b82525050565b6000602082019050611d096000830184611ce5565b92915050565b60008060408385031215611d2657611d25611ac8565b5b6000611d3485828601611b16565b9250506020611d4585828601611b16565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d9657607f821691505b602082108103611da957611da8611d4f565b5b50919050565b7f46726f6d206164647265737320697320626c61636b6c69737465642100000000600082015250565b6000611de5601c83611a21565b9150611df082611daf565b602082019050919050565b60006020820190508181036000830152611e1481611dd8565b9050919050565b7f526563697069656e74206164647265737320697320626c61636b6c697374656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e77602183611a21565b9150611e8282611e1b565b604082019050919050565b60006020820190508181036000830152611ea681611e6a565b9050919050565b7f596f7572206164647265737320697320626c61636b6c69737465642100000000600082015250565b6000611ee3601c83611a21565b9150611eee82611ead565b602082019050919050565b60006020820190508181036000830152611f1281611ed6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f5382611b2b565b9150611f5e83611b2b565b9250828201905080821115611f7657611f75611f19565b5b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b6000611fd8602983611a21565b9150611fe382611f7c565b604082019050919050565b6000602082019050818103600083015261200781611fcb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061206a602583611a21565b91506120758261200e565b604082019050919050565b600060208201905081810360008301526120998161205d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120fc602383611a21565b9150612107826120a0565b604082019050919050565b6000602082019050818103600083015261212b816120ef565b9050919050565b7f5468652061646472657373206973206e6f7420626c61636b6c69737465642100600082015250565b6000612168601f83611a21565b915061217382612132565b602082019050919050565b600060208201905081810360008301526121978161215b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121fa602483611a21565b91506122058261219e565b604082019050919050565b60006020820190508181036000830152612229816121ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061228c602283611a21565b915061229782612230565b604082019050919050565b600060208201905081810360008301526122bb8161227f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006122f8602083611a21565b9150612303826122c2565b602082019050919050565b60006020820190508181036000830152612327816122eb565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612364601d83611a21565b915061236f8261232e565b602082019050919050565b6000602082019050818103600083015261239381612357565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123f6602583611a21565b91506124018261239a565b604082019050919050565b60006020820190508181036000830152612425816123e9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612488602683611a21565b91506124938261242c565b604082019050919050565b600060208201905081810360008301526124b78161247b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006124f4601f83611a21565b91506124ff826124be565b602082019050919050565b60006020820190508181036000830152612523816124e7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612586602183611a21565b91506125918261252a565b604082019050919050565b600060208201905081810360008301526125b581612579565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612618602283611a21565b9150612623826125bc565b604082019050919050565b600060208201905081810360008301526126478161260b565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612684601483611a21565b915061268f8261264e565b602082019050919050565b600060208201905081810360008301526126b381612677565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006126f0601083611a21565b91506126fb826126ba565b602082019050919050565b6000602082019050818103600083015261271f816126e3565b905091905056fea26469706673582212200f8b797ff83125370e81832922dd2edd3d5bc5a6e601f8f1ab7c9cb7763cb66664736f6c63430008130033

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

0000000000000000000000000000000000000000000000000000000002faf0800000000000000000000000003a607353613d63d03bc08cd174d0c50fc5505b14000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000d43727970746f4661726d6572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044641524d00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialsupply (uint256): 50000000
Arg [1] : supplyaddress (address): 0x3A607353613D63D03bc08cd174d0C50Fc5505b14
Arg [2] : name (string): CryptoFarmers
Arg [3] : symbol (string): FARM

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000002faf080
Arg [1] : 0000000000000000000000003a607353613d63d03bc08cd174d0c50fc5505b14
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 43727970746f4661726d65727300000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4641524d00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

25577:2643:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6988:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9348:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8117:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26253;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26847:569;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25887:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10799:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27870:65;;;:::i;:::-;;26041:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27424:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19707:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8288:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28152:65;;;:::i;:::-;;25277:216;;;:::i;:::-;;27801:61;;;:::i;:::-;;21977:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7207:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11540:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26369:470;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27597:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26144:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8877:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24365:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24665:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25991:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6988:100;7042:13;7075:5;7068:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6988:100;:::o;9348:201::-;9431:4;9448:13;9464:12;:10;:12::i;:::-;9448:28;;9487:32;9496:5;9503:7;9512:6;9487:8;:32::i;:::-;9537:4;9530:11;;;9348:201;;;;:::o;8117:108::-;8178:7;8205:12;;8198:19;;8117:108;:::o;26253:::-;21863:13;:11;:13::i;:::-;26348:5:::1;26324:9;:21;26334:10;26324:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;26253:108:::0;:::o;26847:569::-;26978:4;27022:5;27003:24;;:9;:15;27013:4;27003:15;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;26995:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;27096:5;27079:22;;:9;:13;27089:2;27079:13;;;;;;;;;;;;;;;;;;;;;;;;;:22;;;27071:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27197:5;27172:30;;:9;:21;27182:10;27172:21;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;27150:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;27269:15;27287:12;:10;:12::i;:::-;27269:30;;27310:38;27326:4;27332:7;27341:6;27310:15;:38::i;:::-;27359:27;27369:4;27375:2;27379:6;27359:9;:27::i;:::-;27404:4;27397:11;;;26847:569;;;;;:::o;25887:92::-;25945:5;25970:1;25963:8;;25887:92;:::o;10799:238::-;10887:4;10904:13;10920:12;:10;:12::i;:::-;10904:28;;10943:64;10952:5;10959:7;10996:10;10968:25;10978:5;10985:7;10968:9;:25::i;:::-;:38;;;;:::i;:::-;10943:8;:64::i;:::-;11025:4;11018:11;;;10799:238;;;;:::o;27870:65::-;21863:13;:11;:13::i;:::-;27917:10:::1;:8;:10::i;:::-;27870:65::o:0;26041:95::-;21863:13;:11;:13::i;:::-;26111:17:::1;26117:2;26121:6;26111:5;:17::i;:::-;26041:95:::0;;:::o;27424:165::-;27505:5;27480:30;;:9;:21;27490:10;27480:21;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;27472:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27554:27;27560:12;:10;:12::i;:::-;27574:6;27554:5;:27::i;:::-;27424:165;:::o;19707:86::-;19754:4;19778:7;;;;;;;;;;;19771:14;;19707:86;:::o;8288:127::-;8362:7;8389:9;:18;8399:7;8389:18;;;;;;;;;;;;;;;;8382:25;;8288:127;;;:::o;28152:65::-;21863:13;:11;:13::i;:::-;28152:65::o;25277:216::-;25330:14;25347:12;:10;:12::i;:::-;25330:29;;25396:6;25378:24;;:14;:12;:14::i;:::-;:24;;;25370:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;25459:26;25478:6;25459:18;:26::i;:::-;25319:174;25277:216::o;27801:61::-;21863:13;:11;:13::i;:::-;27846:8:::1;:6;:8::i;:::-;27801:61::o:0;21977:87::-;22023:7;22050:6;;;;;;;;;;;22043:13;;21977:87;:::o;7207:104::-;7263:13;7296:7;7289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7207:104;:::o;11540:436::-;11633:4;11650:13;11666:12;:10;:12::i;:::-;11650:28;;11689:24;11716:25;11726:5;11733:7;11716:9;:25::i;:::-;11689:52;;11780:15;11760:16;:35;;11752:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11873:60;11882:5;11889:7;11917:15;11898:16;:34;11873:8;:60::i;:::-;11964:4;11957:11;;;;11540:436;;;;:::o;26369:470::-;26484:4;26539:5;26514:30;;:9;:21;26524:10;26514:21;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;26506:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26613:5;26596:22;;:9;:13;26606:2;26596:13;;;;;;;;;;;;;;;;;;;;;;;;;:22;;;26588:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26689:1;26675:16;;:2;:16;;;26667:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26742:13;26758:12;:10;:12::i;:::-;26742:28;;26781;26791:5;26798:2;26802:6;26781:9;:28::i;:::-;26827:4;26820:11;;;26369:470;;;;:::o;27597:196::-;21863:13;:11;:13::i;:::-;27712:4:::1;27690:26;;:9;:18;27700:7;27690:18;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;27682:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;27763:22;27769:7;27778:6;27763:5;:22::i;:::-;27597:196:::0;;:::o;26144:101::-;21863:13;:11;:13::i;:::-;26233:4:::1;26211:9;:19;26221:8;26211:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;26144:101:::0;:::o;8877:151::-;8966:7;8993:11;:18;9005:5;8993:18;;;;;;;;;;;;;;;:27;9012:7;8993:27;;;;;;;;;;;;;;;;8986:34;;8877:151;;;;:::o;24365:101::-;24418:7;24445:13;;;;;;;;;;;24438:20;;24365:101;:::o;24665:181::-;21863:13;:11;:13::i;:::-;24771:8:::1;24755:13;;:24;;;;;;;;;;;;;;;;;;24829:8;24795:43;;24820:7;:5;:7::i;:::-;24795:43;;;;;;;;;;;;24665:181:::0;:::o;25991:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;4466:98::-;4519:7;4546:10;4539:17;;4466:98;:::o;15533:346::-;15652:1;15635:19;;:5;:19;;;15627:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15733:1;15714:21;;:7;:21;;;15706:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15817:6;15787:11;:18;15799:5;15787:18;;;;;;;;;;;;;;;:27;15806:7;15787:27;;;;;;;;;;;;;;;:36;;;;15855:7;15839:32;;15848:5;15839:32;;;15864:6;15839:32;;;;;;:::i;:::-;;;;;;;;15533:346;;;:::o;22142:132::-;22217:12;:10;:12::i;:::-;22206:23;;:7;:5;:7::i;:::-;:23;;;22198:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22142:132::o;16170:419::-;16271:24;16298:25;16308:5;16315:7;16298:9;:25::i;:::-;16271:52;;16358:17;16338:16;:37;16334:248;;16420:6;16400:16;:26;;16392:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16504:51;16513:5;16520:7;16548:6;16529:16;:25;16504:8;:51::i;:::-;16334:248;16260:329;16170:419;;;:::o;12446:806::-;12559:1;12543:18;;:4;:18;;;12535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12636:1;12622:16;;:2;:16;;;12614:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12691:38;12712:4;12718:2;12722:6;12691:20;:38::i;:::-;12742:19;12764:9;:15;12774:4;12764:15;;;;;;;;;;;;;;;;12742:37;;12813:6;12798:11;:21;;12790:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12930:6;12916:11;:20;12898:9;:15;12908:4;12898:15;;;;;;;;;;;;;;;:38;;;;13133:6;13116:9;:13;13126:2;13116:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13183:2;13168:26;;13177:4;13168:26;;;13187:6;13168:26;;;;;;:::i;:::-;;;;;;;;13207:37;13227:4;13233:2;13237:6;13207:19;:37::i;:::-;12524:728;12446:806;;;:::o;20562:120::-;19571:16;:14;:16::i;:::-;20631:5:::1;20621:7;;:15;;;;;;;;;;;;;;;;;;20652:22;20661:12;:10;:12::i;:::-;20652:22;;;;;;:::i;:::-;;;;;;;;20562:120::o:0;13539:548::-;13642:1;13623:21;;:7;:21;;;13615:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13693:49;13722:1;13726:7;13735:6;13693:20;:49::i;:::-;13771:6;13755:12;;:22;;;;;;;:::i;:::-;;;;;;;;13948:6;13926:9;:18;13936:7;13926:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;14002:7;13981:37;;13998:1;13981:37;;;14011:6;13981:37;;;;;;:::i;:::-;;;;;;;;14031:48;14059:1;14063:7;14072:6;14031:19;:48::i;:::-;13539:548;;:::o;14420:675::-;14523:1;14504:21;;:7;:21;;;14496:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14576:49;14597:7;14614:1;14618:6;14576:20;:49::i;:::-;14638:22;14663:9;:18;14673:7;14663:18;;;;;;;;;;;;;;;;14638:43;;14718:6;14700:14;:24;;14692:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14837:6;14820:14;:23;14799:9;:18;14809:7;14799:18;;;;;;;;;;;;;;;:44;;;;14954:6;14938:12;;:22;;;;;;;;;;;15015:1;14989:37;;14998:7;14989:37;;;15019:6;14989:37;;;;;;:::i;:::-;;;;;;;;15039:48;15059:7;15076:1;15080:6;15039:19;:48::i;:::-;14485:610;14420:675;;:::o;25036:156::-;25126:13;;25119:20;;;;;;;;;;;25150:34;25175:8;25150:24;:34::i;:::-;25036:156;:::o;20303:118::-;19312:19;:17;:19::i;:::-;20373:4:::1;20363:7;;:14;;;;;;;;;;;;;;;;;;20393:20;20400:12;:10;:12::i;:::-;20393:20;;;;;;:::i;:::-;;;;;;;;20303:118::o:0;27943:201::-;19312:19;:17;:19::i;:::-;28092:44:::1;28119:4;28125:2;28129:6;28092:26;:44::i;:::-;27943:201:::0;;;:::o;17884:90::-;;;;:::o;20051:108::-;20118:8;:6;:8::i;:::-;20110:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;20051:108::o;23237:191::-;23311:16;23330:6;;;;;;;;;;;23311:25;;23356:8;23347:6;;:17;;;;;;;;;;;;;;;;;;23411:8;23380:40;;23401:8;23380:40;;;;;;;;;;;;23300:128;23237:191;:::o;19866:108::-;19937:8;:6;:8::i;:::-;19936:9;19928:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;19866:108::o;17189:91::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:329::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:178::-;7007:30;7003:1;6995:6;6991:14;6984:54;6867:178;:::o;7051:366::-;7193:3;7214:67;7278:2;7273:3;7214:67;:::i;:::-;7207:74;;7290:93;7379:3;7290:93;:::i;:::-;7408:2;7403:3;7399:12;7392:19;;7051:366;;;:::o;7423:419::-;7589:4;7627:2;7616:9;7612:18;7604:26;;7676:9;7670:4;7666:20;7662:1;7651:9;7647:17;7640:47;7704:131;7830:4;7704:131;:::i;:::-;7696:139;;7423:419;;;:::o;7848:220::-;7988:34;7984:1;7976:6;7972:14;7965:58;8057:3;8052:2;8044:6;8040:15;8033:28;7848:220;:::o;8074:366::-;8216:3;8237:67;8301:2;8296:3;8237:67;:::i;:::-;8230:74;;8313:93;8402:3;8313:93;:::i;:::-;8431:2;8426:3;8422:12;8415:19;;8074:366;;;:::o;8446:419::-;8612:4;8650:2;8639:9;8635:18;8627:26;;8699:9;8693:4;8689:20;8685:1;8674:9;8670:17;8663:47;8727:131;8853:4;8727:131;:::i;:::-;8719:139;;8446:419;;;:::o;8871:178::-;9011:30;9007:1;8999:6;8995:14;8988:54;8871:178;:::o;9055:366::-;9197:3;9218:67;9282:2;9277:3;9218:67;:::i;:::-;9211:74;;9294:93;9383:3;9294:93;:::i;:::-;9412:2;9407:3;9403:12;9396:19;;9055:366;;;:::o;9427:419::-;9593:4;9631:2;9620:9;9616:18;9608:26;;9680:9;9674:4;9670:20;9666:1;9655:9;9651:17;9644:47;9708:131;9834:4;9708:131;:::i;:::-;9700:139;;9427:419;;;:::o;9852:180::-;9900:77;9897:1;9890:88;9997:4;9994:1;9987:15;10021:4;10018:1;10011:15;10038:191;10078:3;10097:20;10115:1;10097:20;:::i;:::-;10092:25;;10131:20;10149:1;10131:20;:::i;:::-;10126:25;;10174:1;10171;10167:9;10160:16;;10195:3;10192:1;10189:10;10186:36;;;10202:18;;:::i;:::-;10186:36;10038:191;;;;:::o;10235:228::-;10375:34;10371:1;10363:6;10359:14;10352:58;10444:11;10439:2;10431:6;10427:15;10420:36;10235:228;:::o;10469:366::-;10611:3;10632:67;10696:2;10691:3;10632:67;:::i;:::-;10625:74;;10708:93;10797:3;10708:93;:::i;:::-;10826:2;10821:3;10817:12;10810:19;;10469:366;;;:::o;10841:419::-;11007:4;11045:2;11034:9;11030:18;11022:26;;11094:9;11088:4;11084:20;11080:1;11069:9;11065:17;11058:47;11122:131;11248:4;11122:131;:::i;:::-;11114:139;;10841:419;;;:::o;11266:224::-;11406:34;11402:1;11394:6;11390:14;11383:58;11475:7;11470:2;11462:6;11458:15;11451:32;11266:224;:::o;11496:366::-;11638:3;11659:67;11723:2;11718:3;11659:67;:::i;:::-;11652:74;;11735:93;11824:3;11735:93;:::i;:::-;11853:2;11848:3;11844:12;11837:19;;11496:366;;;:::o;11868:419::-;12034:4;12072:2;12061:9;12057:18;12049:26;;12121:9;12115:4;12111:20;12107:1;12096:9;12092:17;12085:47;12149:131;12275:4;12149:131;:::i;:::-;12141:139;;11868:419;;;:::o;12293:222::-;12433:34;12429:1;12421:6;12417:14;12410:58;12502:5;12497:2;12489:6;12485:15;12478:30;12293:222;:::o;12521:366::-;12663:3;12684:67;12748:2;12743:3;12684:67;:::i;:::-;12677:74;;12760:93;12849:3;12760:93;:::i;:::-;12878:2;12873:3;12869:12;12862:19;;12521:366;;;:::o;12893:419::-;13059:4;13097:2;13086:9;13082:18;13074:26;;13146:9;13140:4;13136:20;13132:1;13121:9;13117:17;13110:47;13174:131;13300:4;13174:131;:::i;:::-;13166:139;;12893:419;;;:::o;13318:181::-;13458:33;13454:1;13446:6;13442:14;13435:57;13318:181;:::o;13505:366::-;13647:3;13668:67;13732:2;13727:3;13668:67;:::i;:::-;13661:74;;13744:93;13833:3;13744:93;:::i;:::-;13862:2;13857:3;13853:12;13846:19;;13505:366;;;:::o;13877:419::-;14043:4;14081:2;14070:9;14066:18;14058:26;;14130:9;14124:4;14120:20;14116:1;14105:9;14101:17;14094:47;14158:131;14284:4;14158:131;:::i;:::-;14150:139;;13877:419;;;:::o;14302:223::-;14442:34;14438:1;14430:6;14426:14;14419:58;14511:6;14506:2;14498:6;14494:15;14487:31;14302:223;:::o;14531:366::-;14673:3;14694:67;14758:2;14753:3;14694:67;:::i;:::-;14687:74;;14770:93;14859:3;14770:93;:::i;:::-;14888:2;14883:3;14879:12;14872:19;;14531:366;;;:::o;14903:419::-;15069:4;15107:2;15096:9;15092:18;15084:26;;15156:9;15150:4;15146:20;15142:1;15131:9;15127:17;15120:47;15184:131;15310:4;15184:131;:::i;:::-;15176:139;;14903:419;;;:::o;15328:221::-;15468:34;15464:1;15456:6;15452:14;15445:58;15537:4;15532:2;15524:6;15520:15;15513:29;15328:221;:::o;15555:366::-;15697:3;15718:67;15782:2;15777:3;15718:67;:::i;:::-;15711:74;;15794:93;15883:3;15794:93;:::i;:::-;15912:2;15907:3;15903:12;15896:19;;15555:366;;;:::o;15927:419::-;16093:4;16131:2;16120:9;16116:18;16108:26;;16180:9;16174:4;16170:20;16166:1;16155:9;16151:17;16144:47;16208:131;16334:4;16208:131;:::i;:::-;16200:139;;15927:419;;;:::o;16352:182::-;16492:34;16488:1;16480:6;16476:14;16469:58;16352:182;:::o;16540:366::-;16682:3;16703:67;16767:2;16762:3;16703:67;:::i;:::-;16696:74;;16779:93;16868:3;16779:93;:::i;:::-;16897:2;16892:3;16888:12;16881:19;;16540:366;;;:::o;16912:419::-;17078:4;17116:2;17105:9;17101:18;17093:26;;17165:9;17159:4;17155:20;17151:1;17140:9;17136:17;17129:47;17193:131;17319:4;17193:131;:::i;:::-;17185:139;;16912:419;;;:::o;17337:179::-;17477:31;17473:1;17465:6;17461:14;17454:55;17337:179;:::o;17522:366::-;17664:3;17685:67;17749:2;17744:3;17685:67;:::i;:::-;17678:74;;17761:93;17850:3;17761:93;:::i;:::-;17879:2;17874:3;17870:12;17863:19;;17522:366;;;:::o;17894:419::-;18060:4;18098:2;18087:9;18083:18;18075:26;;18147:9;18141:4;18137:20;18133:1;18122:9;18118:17;18111:47;18175:131;18301:4;18175:131;:::i;:::-;18167:139;;17894:419;;;:::o;18319:224::-;18459:34;18455:1;18447:6;18443:14;18436:58;18528:7;18523:2;18515:6;18511:15;18504:32;18319:224;:::o;18549:366::-;18691:3;18712:67;18776:2;18771:3;18712:67;:::i;:::-;18705:74;;18788:93;18877:3;18788:93;:::i;:::-;18906:2;18901:3;18897:12;18890:19;;18549:366;;;:::o;18921:419::-;19087:4;19125:2;19114:9;19110:18;19102:26;;19174:9;19168:4;19164:20;19160:1;19149:9;19145:17;19138:47;19202:131;19328:4;19202:131;:::i;:::-;19194:139;;18921:419;;;:::o;19346:225::-;19486:34;19482:1;19474:6;19470:14;19463:58;19555:8;19550:2;19542:6;19538:15;19531:33;19346:225;:::o;19577:366::-;19719:3;19740:67;19804:2;19799:3;19740:67;:::i;:::-;19733:74;;19816:93;19905:3;19816:93;:::i;:::-;19934:2;19929:3;19925:12;19918:19;;19577:366;;;:::o;19949:419::-;20115:4;20153:2;20142:9;20138:18;20130:26;;20202:9;20196:4;20192:20;20188:1;20177:9;20173:17;20166:47;20230:131;20356:4;20230:131;:::i;:::-;20222:139;;19949:419;;;:::o;20374:181::-;20514:33;20510:1;20502:6;20498:14;20491:57;20374:181;:::o;20561:366::-;20703:3;20724:67;20788:2;20783:3;20724:67;:::i;:::-;20717:74;;20800:93;20889:3;20800:93;:::i;:::-;20918:2;20913:3;20909:12;20902:19;;20561:366;;;:::o;20933:419::-;21099:4;21137:2;21126:9;21122:18;21114:26;;21186:9;21180:4;21176:20;21172:1;21161:9;21157:17;21150:47;21214:131;21340:4;21214:131;:::i;:::-;21206:139;;20933:419;;;:::o;21358:220::-;21498:34;21494:1;21486:6;21482:14;21475:58;21567:3;21562:2;21554:6;21550:15;21543:28;21358:220;:::o;21584:366::-;21726:3;21747:67;21811:2;21806:3;21747:67;:::i;:::-;21740:74;;21823:93;21912:3;21823:93;:::i;:::-;21941:2;21936:3;21932:12;21925:19;;21584:366;;;:::o;21956:419::-;22122:4;22160:2;22149:9;22145:18;22137:26;;22209:9;22203:4;22199:20;22195:1;22184:9;22180:17;22173:47;22237:131;22363:4;22237:131;:::i;:::-;22229:139;;21956:419;;;:::o;22381:221::-;22521:34;22517:1;22509:6;22505:14;22498:58;22590:4;22585:2;22577:6;22573:15;22566:29;22381:221;:::o;22608:366::-;22750:3;22771:67;22835:2;22830:3;22771:67;:::i;:::-;22764:74;;22847:93;22936:3;22847:93;:::i;:::-;22965:2;22960:3;22956:12;22949:19;;22608:366;;;:::o;22980:419::-;23146:4;23184:2;23173:9;23169:18;23161:26;;23233:9;23227:4;23223:20;23219:1;23208:9;23204:17;23197:47;23261:131;23387:4;23261:131;:::i;:::-;23253:139;;22980:419;;;:::o;23405:170::-;23545:22;23541:1;23533:6;23529:14;23522:46;23405:170;:::o;23581:366::-;23723:3;23744:67;23808:2;23803:3;23744:67;:::i;:::-;23737:74;;23820:93;23909:3;23820:93;:::i;:::-;23938:2;23933:3;23929:12;23922:19;;23581:366;;;:::o;23953:419::-;24119:4;24157:2;24146:9;24142:18;24134:26;;24206:9;24200:4;24196:20;24192:1;24181:9;24177:17;24170:47;24234:131;24360:4;24234:131;:::i;:::-;24226:139;;23953:419;;;:::o;24378:166::-;24518:18;24514:1;24506:6;24502:14;24495:42;24378:166;:::o;24550:366::-;24692:3;24713:67;24777:2;24772:3;24713:67;:::i;:::-;24706:74;;24789:93;24878:3;24789:93;:::i;:::-;24907:2;24902:3;24898:12;24891:19;;24550:366;;;:::o;24922:419::-;25088:4;25126:2;25115:9;25111:18;25103:26;;25175:9;25169:4;25165:20;25161:1;25150:9;25146:17;25139:47;25203:131;25329:4;25203:131;:::i;:::-;25195:139;;24922:419;;;:::o

Swarm Source

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