ETH Price: $3,277.44 (+0.92%)
Gas: 2 Gwei

Token

CloudBTC (CBTC)
 

Overview

Max Total Supply

10,000,000,000 CBTC

Holders

471

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.63382934853536661 CBTC

Value
$0.00
0x46f73a1aced6ec32afb237afb56ec45c7fc89b13
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:
CloudBTC

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-14
*/

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @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: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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) 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 {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        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));
        }
        _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: CloudBTC Token/Token_Flat.sol


pragma solidity ^0.8.20;



contract CloudBTC is ERC20, Ownable {
    bool public isPresaleActive;
    mapping(address => bool) public whitelist;

    constructor(
        string memory name,
        string memory symbol,
        uint256 totalSupply,
        address[] memory wallets
    ) ERC20(name, symbol) Ownable(msg.sender) {
        require(wallets.length == 8, "CloudBTC: Incorrect number of wallets");

        uint256[] memory percentages = new uint256[](8);
        percentages[0] = 43;  // Presale
        percentages[1] = 40;  // Staking
        percentages[2] = 5;  // Liquidity
        percentages[3] = 2;  // Development
        percentages[4] = 3;  // Core Team
        percentages[5] = 3;  // Marketing
        percentages[6] = 3;  // CEX Listing
        percentages[7] = 1;  // Airdrop/Giveaways

        for (uint256 i = 0; i < wallets.length; i++) {
            uint256 walletSupply = totalSupply * percentages[i] / 100 * (10 ** decimals());
            _mint(wallets[i], walletSupply);
        }
    }

    function setIsPresaleActive(bool active) external onlyOwner {
        isPresaleActive = active;
    }

    function addToWhitelist(address addr) external onlyOwner {
        whitelist[addr] = true;
    }

    function removeFromWhitelist(address addr) external onlyOwner {
        whitelist[addr] = false;
    }

    function transfer(address to, uint256 amount) public override returns (bool) {
        require(canTransfer(_msgSender(), to), "Presale: transfer not allowed");
        return super.transfer(to, amount);
    }

    function transferFrom(address from, address to, uint256 amount) public override returns (bool) {
        require(canTransfer(from, to), "Presale: transfer not allowed");
        return super.transferFrom(from, to, amount);
    }

    function canTransfer(address from, address to) internal view returns (bool) {
        if (isPresaleActive) {
            return whitelist[from] || whitelist[to];
        }
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"address[]","name":"wallets","type":"address[]"}],"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":"addr","type":"address"}],"name":"addToWhitelist","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":"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setIsPresaleActive","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":"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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

608060405234801562000010575f80fd5b50604051620026e9380380620026e98339818101604052810190620000369190620009d5565b33848481600390816200004a919062000ccf565b5080600490816200005c919062000ccf565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000d2575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000c9919062000dc4565b60405180910390fd5b620000e3816200036760201b60201c565b5060088151146200012b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001229062000e63565b60405180910390fd5b5f600867ffffffffffffffff8111156200014a576200014962000709565b5b604051908082528060200260200182016040528015620001795781602001602082028036833780820191505090505b509050602b815f8151811062000194576200019362000e83565b5b602002602001018181525050602881600181518110620001b957620001b862000e83565b5b602002602001018181525050600581600281518110620001de57620001dd62000e83565b5b60200260200101818152505060028160038151811062000203576200020262000e83565b5b60200260200101818152505060038160048151811062000228576200022762000e83565b5b6020026020010181815250506003816005815181106200024d576200024c62000e83565b5b60200260200101818152505060038160068151811062000272576200027162000e83565b5b60200260200101818152505060018160078151811062000297576200029662000e83565b5b6020026020010181815250505f5b82518110156200035b575f620002c06200042a60201b60201c565b600a620002ce919062001039565b6064848481518110620002e657620002e562000e83565b5b602002602001015187620002fb919062001089565b62000307919062001100565b62000313919062001089565b9050620003448483815181106200032f576200032e62000e83565b5b6020026020010151826200043260201b60201c565b508080620003529062001137565b915050620002a5565b50505050505062001224565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004a5575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200049c919062000dc4565b60405180910390fd5b620004b85f8383620004bc60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000510578060025f82825462000503919062001183565b92505081905550620005e1565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200059c578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200059393929190620011ce565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200062a578060025f828254039250508190555062000674565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006d3919062001209565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6200074182620006f9565b810181811067ffffffffffffffff8211171562000763576200076262000709565b5b80604052505050565b5f62000777620006e0565b905062000785828262000736565b919050565b5f67ffffffffffffffff821115620007a757620007a662000709565b5b620007b282620006f9565b9050602081019050919050565b5f5b83811015620007de578082015181840152602081019050620007c1565b5f8484015250505050565b5f620007ff620007f9846200078a565b6200076c565b9050828152602081018484840111156200081e576200081d620006f5565b5b6200082b848285620007bf565b509392505050565b5f82601f8301126200084a5762000849620006f1565b5b81516200085c848260208601620007e9565b91505092915050565b5f819050919050565b620008798162000865565b811462000884575f80fd5b50565b5f8151905062000897816200086e565b92915050565b5f67ffffffffffffffff821115620008ba57620008b962000709565b5b602082029050602081019050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620008fa82620008cf565b9050919050565b6200090c81620008ee565b811462000917575f80fd5b50565b5f815190506200092a8162000901565b92915050565b5f6200094662000940846200089d565b6200076c565b905080838252602082019050602084028301858111156200096c576200096b620008cb565b5b835b818110156200099957806200098488826200091a565b8452602084019350506020810190506200096e565b5050509392505050565b5f82601f830112620009ba57620009b9620006f1565b5b8151620009cc84826020860162000930565b91505092915050565b5f805f8060808587031215620009f057620009ef620006e9565b5b5f85015167ffffffffffffffff81111562000a105762000a0f620006ed565b5b62000a1e8782880162000833565b945050602085015167ffffffffffffffff81111562000a425762000a41620006ed565b5b62000a508782880162000833565b935050604062000a638782880162000887565b925050606085015167ffffffffffffffff81111562000a875762000a86620006ed565b5b62000a9587828801620009a3565b91505092959194509250565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000af057607f821691505b60208210810362000b065762000b0562000aab565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000b6a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b2d565b62000b76868362000b2d565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000bb762000bb162000bab8462000865565b62000b8e565b62000865565b9050919050565b5f819050919050565b62000bd28362000b97565b62000bea62000be18262000bbe565b84845462000b39565b825550505050565b5f90565b62000c0062000bf2565b62000c0d81848462000bc7565b505050565b5b8181101562000c345762000c285f8262000bf6565b60018101905062000c13565b5050565b601f82111562000c835762000c4d8162000b0c565b62000c588462000b1e565b8101602085101562000c68578190505b62000c8062000c778562000b1e565b83018262000c12565b50505b505050565b5f82821c905092915050565b5f62000ca55f198460080262000c88565b1980831691505092915050565b5f62000cbf838362000c94565b9150826002028217905092915050565b62000cda8262000aa1565b67ffffffffffffffff81111562000cf65762000cf562000709565b5b62000d02825462000ad8565b62000d0f82828562000c38565b5f60209050601f83116001811462000d45575f841562000d30578287015190505b62000d3c858262000cb2565b86555062000dab565b601f19841662000d558662000b0c565b5f5b8281101562000d7e5784890151825560018201915060208501945060208101905062000d57565b8683101562000d9e578489015162000d9a601f89168262000c94565b8355505b6001600288020188555050505b505050505050565b62000dbe81620008ee565b82525050565b5f60208201905062000dd95f83018462000db3565b92915050565b5f82825260208201905092915050565b7f436c6f75644254433a20496e636f7272656374206e756d626572206f662077615f8201527f6c6c657473000000000000000000000000000000000000000000000000000000602082015250565b5f62000e4b60258362000ddf565b915062000e588262000def565b604082019050919050565b5f6020820190508181035f83015262000e7c8162000e3d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000f3a5780860481111562000f125762000f1162000eb0565b5b600185161562000f225780820291505b808102905062000f328562000edd565b945062000ef2565b94509492505050565b5f8262000f54576001905062001026565b8162000f63575f905062001026565b816001811462000f7c576002811462000f875762000fbd565b600191505062001026565b60ff84111562000f9c5762000f9b62000eb0565b5b8360020a91508482111562000fb65762000fb562000eb0565b5b5062001026565b5060208310610133831016604e8410600b841016171562000ff75782820a90508381111562000ff15762000ff062000eb0565b5b62001026565b62001006848484600162000ee9565b9250905081840481111562001020576200101f62000eb0565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620010458262000865565b915062001052836200102d565b9250620010817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000f43565b905092915050565b5f620010958262000865565b9150620010a28362000865565b9250828202620010b28162000865565b91508282048414831517620010cc57620010cb62000eb0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6200110c8262000865565b9150620011198362000865565b9250826200112c576200112b620010d3565b5b828204905092915050565b5f620011438262000865565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362001178576200117762000eb0565b5b600182019050919050565b5f6200118f8262000865565b91506200119c8362000865565b9250828201905080821115620011b757620011b662000eb0565b5b92915050565b620011c88162000865565b82525050565b5f606082019050620011e35f83018662000db3565b620011f26020830185620011bd565b620012016040830184620011bd565b949350505050565b5f6020820190506200121e5f830184620011bd565b92915050565b6114b780620012325f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a05780639b19251a1161006f5780639b19251a14610293578063a9059cbb146102c3578063dd62ed3e146102f3578063e43252d714610323578063f2fde38b1461033f57610109565b8063715018a6146102315780638ab1d6811461023b5780638da5cb5b1461025757806395d89b411461027557610109565b8063313ce567116100dc578063313ce567146101a9578063443da2a2146101c757806360d938dc146101e357806370a082311461020157610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561035b565b6040516101229190611073565b60405180910390f35b61014560048036038101906101409190611124565b6103eb565b604051610152919061117c565b60405180910390f35b61016361040d565b60405161017091906111a4565b60405180910390f35b610193600480360381019061018e91906111bd565b610416565b6040516101a0919061117c565b60405180910390f35b6101b1610474565b6040516101be9190611228565b60405180910390f35b6101e160048036038101906101dc919061126b565b61047c565b005b6101eb6104a1565b6040516101f8919061117c565b60405180910390f35b61021b60048036038101906102169190611296565b6104b4565b60405161022891906111a4565b60405180910390f35b6102396104f9565b005b61025560048036038101906102509190611296565b61050c565b005b61025f61056b565b60405161026c91906112d0565b60405180910390f35b61027d610593565b60405161028a9190611073565b60405180910390f35b6102ad60048036038101906102a89190611296565b610623565b6040516102ba919061117c565b60405180910390f35b6102dd60048036038101906102d89190611124565b610640565b6040516102ea919061117c565b60405180910390f35b61030d600480360381019061030891906112e9565b6106a3565b60405161031a91906111a4565b60405180910390f35b61033d60048036038101906103389190611296565b610725565b005b61035960048036038101906103549190611296565b610785565b005b60606003805461036a90611354565b80601f016020809104026020016040519081016040528092919081815260200182805461039690611354565b80156103e15780601f106103b8576101008083540402835291602001916103e1565b820191905f5260205f20905b8154815290600101906020018083116103c457829003601f168201915b5050505050905090565b5f806103f5610809565b9050610402818585610810565b600191505092915050565b5f600254905090565b5f6104218484610822565b610460576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610457906113ce565b60405180910390fd5b61046b8484846108e5565b90509392505050565b5f6012905090565b610484610913565b80600560146101000a81548160ff02191690831515021790555050565b600560149054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610501610913565b61050a5f61099a565b565b610514610913565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105a290611354565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce90611354565b80156106195780601f106105f057610100808354040283529160200191610619565b820191905f5260205f20905b8154815290600101906020018083116105fc57829003601f168201915b5050505050905090565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f61065261064c610809565b84610822565b610691576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610688906113ce565b60405180910390fd5b61069b8383610a5d565b905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61072d610913565b600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61078d610913565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107fd575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016107f491906112d0565b60405180910390fd5b6108068161099a565b50565b5f33905090565b61081d8383836001610a7f565b505050565b5f600560149054906101000a900460ff16156108da5760065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806108d3575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b90506108df565b600190505b92915050565b5f806108ef610809565b90506108fc858285610c4e565b610907858585610ce0565b60019150509392505050565b61091b610809565b73ffffffffffffffffffffffffffffffffffffffff1661093961056b565b73ffffffffffffffffffffffffffffffffffffffff16146109985761095c610809565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161098f91906112d0565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80610a67610809565b9050610a74818585610ce0565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610aef575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ae691906112d0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b5f575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b5691906112d0565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610c48578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c3f91906111a4565b60405180910390a35b50505050565b5f610c5984846106a3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cda5781811015610ccb578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610cc2939291906113ec565b60405180910390fd5b610cd984848484035f610a7f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d50575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d4791906112d0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dc0575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610db791906112d0565b60405180910390fd5b610dcb838383610dd0565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e20578060025f828254610e14919061144e565b92505081905550610eee565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ea9578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ea0939291906113ec565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f35578060025f8282540392505081905550610f7f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fdc91906111a4565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611020578082015181840152602081019050611005565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61104582610fe9565b61104f8185610ff3565b935061105f818560208601611003565b6110688161102b565b840191505092915050565b5f6020820190508181035f83015261108b818461103b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110c082611097565b9050919050565b6110d0816110b6565b81146110da575f80fd5b50565b5f813590506110eb816110c7565b92915050565b5f819050919050565b611103816110f1565b811461110d575f80fd5b50565b5f8135905061111e816110fa565b92915050565b5f806040838503121561113a57611139611093565b5b5f611147858286016110dd565b925050602061115885828601611110565b9150509250929050565b5f8115159050919050565b61117681611162565b82525050565b5f60208201905061118f5f83018461116d565b92915050565b61119e816110f1565b82525050565b5f6020820190506111b75f830184611195565b92915050565b5f805f606084860312156111d4576111d3611093565b5b5f6111e1868287016110dd565b93505060206111f2868287016110dd565b925050604061120386828701611110565b9150509250925092565b5f60ff82169050919050565b6112228161120d565b82525050565b5f60208201905061123b5f830184611219565b92915050565b61124a81611162565b8114611254575f80fd5b50565b5f8135905061126581611241565b92915050565b5f602082840312156112805761127f611093565b5b5f61128d84828501611257565b91505092915050565b5f602082840312156112ab576112aa611093565b5b5f6112b8848285016110dd565b91505092915050565b6112ca816110b6565b82525050565b5f6020820190506112e35f8301846112c1565b92915050565b5f80604083850312156112ff576112fe611093565b5b5f61130c858286016110dd565b925050602061131d858286016110dd565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061136b57607f821691505b60208210810361137e5761137d611327565b5b50919050565b7f50726573616c653a207472616e73666572206e6f7420616c6c6f7765640000005f82015250565b5f6113b8601d83610ff3565b91506113c382611384565b602082019050919050565b5f6020820190508181035f8301526113e5816113ac565b9050919050565b5f6060820190506113ff5f8301866112c1565b61140c6020830185611195565b6114196040830184611195565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611458826110f1565b9150611463836110f1565b925082820190508082111561147b5761147a611421565b5b9291505056fea26469706673582212208cff8708edf7043eef59058be61254c26a0706cc6cef08de75429ef23cd1308a64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000002540be40000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000008436c6f7564425443000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443425443000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000e84c28e595fa741c5b846e39ae25b257e05c4868000000000000000000000000b2980c7e51b5a0218373bd23f3be59d8c846e1f10000000000000000000000000c04af8e2fc57935a5b505161e7a1c12184f1b51000000000000000000000000a0703e7eb09e8ee2415dffa94eba14489494599f0000000000000000000000004229ddbafa5bc350c4c3a3ec717a03c99f8fb15f000000000000000000000000434c5d8b7ec64a43961db075f4868ef76a2a85c3000000000000000000000000c34d0d24cbdeef76f5a5f001f7a3c8798d8f5099000000000000000000000000738dd1fb0c72e03be7ad05cad19c82af6f5cf418

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a05780639b19251a1161006f5780639b19251a14610293578063a9059cbb146102c3578063dd62ed3e146102f3578063e43252d714610323578063f2fde38b1461033f57610109565b8063715018a6146102315780638ab1d6811461023b5780638da5cb5b1461025757806395d89b411461027557610109565b8063313ce567116100dc578063313ce567146101a9578063443da2a2146101c757806360d938dc146101e357806370a082311461020157610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561035b565b6040516101229190611073565b60405180910390f35b61014560048036038101906101409190611124565b6103eb565b604051610152919061117c565b60405180910390f35b61016361040d565b60405161017091906111a4565b60405180910390f35b610193600480360381019061018e91906111bd565b610416565b6040516101a0919061117c565b60405180910390f35b6101b1610474565b6040516101be9190611228565b60405180910390f35b6101e160048036038101906101dc919061126b565b61047c565b005b6101eb6104a1565b6040516101f8919061117c565b60405180910390f35b61021b60048036038101906102169190611296565b6104b4565b60405161022891906111a4565b60405180910390f35b6102396104f9565b005b61025560048036038101906102509190611296565b61050c565b005b61025f61056b565b60405161026c91906112d0565b60405180910390f35b61027d610593565b60405161028a9190611073565b60405180910390f35b6102ad60048036038101906102a89190611296565b610623565b6040516102ba919061117c565b60405180910390f35b6102dd60048036038101906102d89190611124565b610640565b6040516102ea919061117c565b60405180910390f35b61030d600480360381019061030891906112e9565b6106a3565b60405161031a91906111a4565b60405180910390f35b61033d60048036038101906103389190611296565b610725565b005b61035960048036038101906103549190611296565b610785565b005b60606003805461036a90611354565b80601f016020809104026020016040519081016040528092919081815260200182805461039690611354565b80156103e15780601f106103b8576101008083540402835291602001916103e1565b820191905f5260205f20905b8154815290600101906020018083116103c457829003601f168201915b5050505050905090565b5f806103f5610809565b9050610402818585610810565b600191505092915050565b5f600254905090565b5f6104218484610822565b610460576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610457906113ce565b60405180910390fd5b61046b8484846108e5565b90509392505050565b5f6012905090565b610484610913565b80600560146101000a81548160ff02191690831515021790555050565b600560149054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610501610913565b61050a5f61099a565b565b610514610913565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105a290611354565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce90611354565b80156106195780601f106105f057610100808354040283529160200191610619565b820191905f5260205f20905b8154815290600101906020018083116105fc57829003601f168201915b5050505050905090565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f61065261064c610809565b84610822565b610691576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610688906113ce565b60405180910390fd5b61069b8383610a5d565b905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61072d610913565b600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61078d610913565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107fd575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016107f491906112d0565b60405180910390fd5b6108068161099a565b50565b5f33905090565b61081d8383836001610a7f565b505050565b5f600560149054906101000a900460ff16156108da5760065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806108d3575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b90506108df565b600190505b92915050565b5f806108ef610809565b90506108fc858285610c4e565b610907858585610ce0565b60019150509392505050565b61091b610809565b73ffffffffffffffffffffffffffffffffffffffff1661093961056b565b73ffffffffffffffffffffffffffffffffffffffff16146109985761095c610809565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161098f91906112d0565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80610a67610809565b9050610a74818585610ce0565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610aef575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ae691906112d0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b5f575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b5691906112d0565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610c48578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c3f91906111a4565b60405180910390a35b50505050565b5f610c5984846106a3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cda5781811015610ccb578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610cc2939291906113ec565b60405180910390fd5b610cd984848484035f610a7f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d50575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d4791906112d0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dc0575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610db791906112d0565b60405180910390fd5b610dcb838383610dd0565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e20578060025f828254610e14919061144e565b92505081905550610eee565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ea9578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ea0939291906113ec565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f35578060025f8282540392505081905550610f7f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fdc91906111a4565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611020578082015181840152602081019050611005565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61104582610fe9565b61104f8185610ff3565b935061105f818560208601611003565b6110688161102b565b840191505092915050565b5f6020820190508181035f83015261108b818461103b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110c082611097565b9050919050565b6110d0816110b6565b81146110da575f80fd5b50565b5f813590506110eb816110c7565b92915050565b5f819050919050565b611103816110f1565b811461110d575f80fd5b50565b5f8135905061111e816110fa565b92915050565b5f806040838503121561113a57611139611093565b5b5f611147858286016110dd565b925050602061115885828601611110565b9150509250929050565b5f8115159050919050565b61117681611162565b82525050565b5f60208201905061118f5f83018461116d565b92915050565b61119e816110f1565b82525050565b5f6020820190506111b75f830184611195565b92915050565b5f805f606084860312156111d4576111d3611093565b5b5f6111e1868287016110dd565b93505060206111f2868287016110dd565b925050604061120386828701611110565b9150509250925092565b5f60ff82169050919050565b6112228161120d565b82525050565b5f60208201905061123b5f830184611219565b92915050565b61124a81611162565b8114611254575f80fd5b50565b5f8135905061126581611241565b92915050565b5f602082840312156112805761127f611093565b5b5f61128d84828501611257565b91505092915050565b5f602082840312156112ab576112aa611093565b5b5f6112b8848285016110dd565b91505092915050565b6112ca816110b6565b82525050565b5f6020820190506112e35f8301846112c1565b92915050565b5f80604083850312156112ff576112fe611093565b5b5f61130c858286016110dd565b925050602061131d858286016110dd565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061136b57607f821691505b60208210810361137e5761137d611327565b5b50919050565b7f50726573616c653a207472616e73666572206e6f7420616c6c6f7765640000005f82015250565b5f6113b8601d83610ff3565b91506113c382611384565b602082019050919050565b5f6020820190508181035f8301526113e5816113ac565b9050919050565b5f6060820190506113ff5f8301866112c1565b61140c6020830185611195565b6114196040830184611195565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611458826110f1565b9150611463836110f1565b925082820190508082111561147b5761147a611421565b5b9291505056fea26469706673582212208cff8708edf7043eef59058be61254c26a0706cc6cef08de75429ef23cd1308a64736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000002540be40000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000008436c6f7564425443000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443425443000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000e84c28e595fa741c5b846e39ae25b257e05c4868000000000000000000000000b2980c7e51b5a0218373bd23f3be59d8c846e1f10000000000000000000000000c04af8e2fc57935a5b505161e7a1c12184f1b51000000000000000000000000a0703e7eb09e8ee2415dffa94eba14489494599f0000000000000000000000004229ddbafa5bc350c4c3a3ec717a03c99f8fb15f000000000000000000000000434c5d8b7ec64a43961db075f4868ef76a2a85c3000000000000000000000000c34d0d24cbdeef76f5a5f001f7a3c8798d8f5099000000000000000000000000738dd1fb0c72e03be7ad05cad19c82af6f5cf418

-----Decoded View---------------
Arg [0] : name (string): CloudBTC
Arg [1] : symbol (string): CBTC
Arg [2] : totalSupply (uint256): 10000000000
Arg [3] : wallets (address[]): 0xe84C28E595Fa741c5b846e39AE25B257E05c4868,0xB2980c7e51b5a0218373Bd23f3BE59d8c846E1F1,0x0C04af8e2fc57935A5b505161E7a1c12184F1b51,0xA0703E7eb09E8eE2415dffA94EBa14489494599F,0x4229ddBafA5Bc350c4c3A3Ec717a03c99F8fB15f,0x434C5D8B7eC64a43961Db075F4868EF76a2a85C3,0xc34D0D24cbdeEF76f5A5F001f7a3C8798d8f5099,0x738Dd1fB0c72e03Be7ad05caD19c82Af6F5cF418

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000002540be400
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 436c6f7564425443000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4342544300000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [9] : 000000000000000000000000e84c28e595fa741c5b846e39ae25b257e05c4868
Arg [10] : 000000000000000000000000b2980c7e51b5a0218373bd23f3be59d8c846e1f1
Arg [11] : 0000000000000000000000000c04af8e2fc57935a5b505161e7a1c12184f1b51
Arg [12] : 000000000000000000000000a0703e7eb09e8ee2415dffa94eba14489494599f
Arg [13] : 0000000000000000000000004229ddbafa5bc350c4c3a3ec717a03c99f8fb15f
Arg [14] : 000000000000000000000000434c5d8b7ec64a43961db075f4868ef76a2a85c3
Arg [15] : 000000000000000000000000c34d0d24cbdeef76f5a5f001f7a3c8798d8f5099
Arg [16] : 000000000000000000000000738dd1fb0c72e03be7ad05cad19c82af6f5cf418


Deployed Bytecode Sourcemap

25884:2022:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16478:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18771:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17580:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27461:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17431:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26913:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25927:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17742:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10091:103;;;:::i;:::-;;27130:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9416:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16688:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25961:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27242:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18310:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27024:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10349:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16478:91;16523:13;16556:5;16549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16478:91;:::o;18771:190::-;18844:4;18861:13;18877:12;:10;:12::i;:::-;18861:28;;18900:31;18909:5;18916:7;18925:5;18900:8;:31::i;:::-;18949:4;18942:11;;;18771:190;;;;:::o;17580:99::-;17632:7;17659:12;;17652:19;;17580:99;:::o;27461:231::-;27550:4;27575:21;27587:4;27593:2;27575:11;:21::i;:::-;27567:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27648:36;27667:4;27673:2;27677:6;27648:18;:36::i;:::-;27641:43;;27461:231;;;;;:::o;17431:84::-;17480:5;17505:2;17498:9;;17431:84;:::o;26913:103::-;9302:13;:11;:13::i;:::-;27002:6:::1;26984:15;;:24;;;;;;;;;;;;;;;;;;26913:103:::0;:::o;25927:27::-;;;;;;;;;;;;;:::o;17742:118::-;17807:7;17834:9;:18;17844:7;17834:18;;;;;;;;;;;;;;;;17827:25;;17742:118;;;:::o;10091:103::-;9302:13;:11;:13::i;:::-;10156:30:::1;10183:1;10156:18;:30::i;:::-;10091:103::o:0;27130:104::-;9302:13;:11;:13::i;:::-;27221:5:::1;27203:9;:15;27213:4;27203:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;27130:104:::0;:::o;9416:87::-;9462:7;9489:6;;;;;;;;;;;9482:13;;9416:87;:::o;16688:95::-;16735:13;16768:7;16761:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16688:95;:::o;25961:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;27242:211::-;27313:4;27338:29;27350:12;:10;:12::i;:::-;27364:2;27338:11;:29::i;:::-;27330:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27419:26;27434:2;27438:6;27419:14;:26::i;:::-;27412:33;;27242:211;;;;:::o;18310:142::-;18390:7;18417:11;:18;18429:5;18417:18;;;;;;;;;;;;;;;:27;18436:7;18417:27;;;;;;;;;;;;;;;;18410:34;;18310:142;;;;:::o;27024:98::-;9302:13;:11;:13::i;:::-;27110:4:::1;27092:9;:15;27102:4;27092:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;27024:98:::0;:::o;10349:220::-;9302:13;:11;:13::i;:::-;10454:1:::1;10434:22;;:8;:22;;::::0;10430:93:::1;;10508:1;10480:31;;;;;;;;;;;:::i;:::-;;;;;;;;10430:93;10533:28;10552:8;10533:18;:28::i;:::-;10349:220:::0;:::o;7425:98::-;7478:7;7505:10;7498:17;;7425:98;:::o;23598:130::-;23683:37;23692:5;23699:7;23708:5;23715:4;23683:8;:37::i;:::-;23598:130;;;:::o;27700:203::-;27770:4;27791:15;;;;;;;;;;;27787:87;;;27830:9;:15;27840:4;27830:15;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;;27849:9;:13;27859:2;27849:13;;;;;;;;;;;;;;;;;;;;;;;;;27830:32;27823:39;;;;27787:87;27891:4;27884:11;;27700:203;;;;;:::o;19539:249::-;19626:4;19643:15;19661:12;:10;:12::i;:::-;19643:30;;19684:37;19700:4;19706:7;19715:5;19684:15;:37::i;:::-;19732:26;19742:4;19748:2;19752:5;19732:9;:26::i;:::-;19776:4;19769:11;;;19539:249;;;;;:::o;9581:166::-;9652:12;:10;:12::i;:::-;9641:23;;:7;:5;:7::i;:::-;:23;;;9637:103;;9715:12;:10;:12::i;:::-;9688:40;;;;;;;;;;;:::i;:::-;;;;;;;;9637:103;9581:166::o;10729:191::-;10803:16;10822:6;;;;;;;;;;;10803:25;;10848:8;10839:6;;:17;;;;;;;;;;;;;;;;;;10903:8;10872:40;;10893:8;10872:40;;;;;;;;;;;;10792:128;10729:191;:::o;18065:182::-;18134:4;18151:13;18167:12;:10;:12::i;:::-;18151:28;;18190:27;18200:5;18207:2;18211:5;18190:9;:27::i;:::-;18235:4;18228:11;;;18065:182;;;;:::o;24579:443::-;24709:1;24692:19;;:5;:19;;;24688:91;;24764:1;24735:32;;;;;;;;;;;:::i;:::-;;;;;;;;24688:91;24812:1;24793:21;;:7;:21;;;24789:92;;24866:1;24838:31;;;;;;;;;;;:::i;:::-;;;;;;;;24789:92;24921:5;24891:11;:18;24903:5;24891:18;;;;;;;;;;;;;;;:27;24910:7;24891:27;;;;;;;;;;;;;;;:35;;;;24941:9;24937:78;;;24988:7;24972:31;;24981:5;24972:31;;;24997:5;24972:31;;;;;;:::i;:::-;;;;;;;;24937:78;24579:443;;;;:::o;25314:487::-;25414:24;25441:25;25451:5;25458:7;25441:9;:25::i;:::-;25414:52;;25501:17;25481:16;:37;25477:317;;25558:5;25539:16;:24;25535:132;;;25618:7;25627:16;25645:5;25591:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25535:132;25710:57;25719:5;25726:7;25754:5;25735:16;:24;25761:5;25710:8;:57::i;:::-;25477:317;25403:398;25314:487;;;:::o;20173:308::-;20273:1;20257:18;;:4;:18;;;20253:88;;20326:1;20299:30;;;;;;;;;;;:::i;:::-;;;;;;;;20253:88;20369:1;20355:16;;:2;:16;;;20351:88;;20424:1;20395:32;;;;;;;;;;;:::i;:::-;;;;;;;;20351:88;20449:24;20457:4;20463:2;20467:5;20449:7;:24::i;:::-;20173:308;;;:::o;20805:1135::-;20911:1;20895:18;;:4;:18;;;20891:552;;21049:5;21033:12;;:21;;;;;;;:::i;:::-;;;;;;;;20891:552;;;21087:19;21109:9;:15;21119:4;21109:15;;;;;;;;;;;;;;;;21087:37;;21157:5;21143:11;:19;21139:117;;;21215:4;21221:11;21234:5;21190:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21139:117;21411:5;21397:11;:19;21379:9;:15;21389:4;21379:15;;;;;;;;;;;;;;;:37;;;;21072:371;20891:552;21473:1;21459:16;;:2;:16;;;21455:435;;21641:5;21625:12;;:21;;;;;;;;;;;21455:435;;;21858:5;21841:9;:13;21851:2;21841:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21455:435;21922:2;21907:25;;21916:4;21907:25;;;21926:5;21907:25;;;;;;:::i;:::-;;;;;;;;20805:1135;;;:::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: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:116::-;4923:21;4938:5;4923:21;:::i;:::-;4916:5;4913:32;4903:60;;4959:1;4956;4949:12;4903:60;4853:116;:::o;4975:133::-;5018:5;5056:6;5043:20;5034:29;;5072:30;5096:5;5072:30;:::i;:::-;4975:133;;;;:::o;5114:323::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:50;5412:7;5403:6;5392:9;5388:22;5370:50;:::i;:::-;5360:60;;5316:114;5114:323;;;;:::o;5443:329::-;5502:6;5551:2;5539:9;5530:7;5526:23;5522:32;5519:119;;;5557:79;;:::i;:::-;5519:119;5677:1;5702:53;5747:7;5738:6;5727:9;5723:22;5702:53;:::i;:::-;5692:63;;5648:117;5443:329;;;;:::o;5778:118::-;5865:24;5883:5;5865:24;:::i;:::-;5860:3;5853:37;5778:118;;:::o;5902:222::-;5995:4;6033:2;6022:9;6018:18;6010:26;;6046:71;6114:1;6103:9;6099:17;6090:6;6046:71;:::i;:::-;5902:222;;;;:::o;6130:474::-;6198:6;6206;6255:2;6243:9;6234:7;6230:23;6226:32;6223:119;;;6261:79;;:::i;:::-;6223:119;6381:1;6406:53;6451:7;6442:6;6431:9;6427:22;6406:53;:::i;:::-;6396:63;;6352:117;6508:2;6534:53;6579:7;6570:6;6559:9;6555:22;6534:53;:::i;:::-;6524:63;;6479:118;6130:474;;;;;:::o;6610:180::-;6658:77;6655:1;6648:88;6755:4;6752:1;6745:15;6779:4;6776:1;6769:15;6796:320;6840:6;6877:1;6871:4;6867:12;6857:22;;6924:1;6918:4;6914:12;6945:18;6935:81;;7001:4;6993:6;6989:17;6979:27;;6935:81;7063:2;7055:6;7052:14;7032:18;7029:38;7026:84;;7082:18;;:::i;:::-;7026:84;6847:269;6796:320;;;:::o;7122:179::-;7262:31;7258:1;7250:6;7246:14;7239:55;7122:179;:::o;7307:366::-;7449:3;7470:67;7534:2;7529:3;7470:67;:::i;:::-;7463:74;;7546:93;7635:3;7546:93;:::i;:::-;7664:2;7659:3;7655:12;7648:19;;7307:366;;;:::o;7679:419::-;7845:4;7883:2;7872:9;7868:18;7860:26;;7932:9;7926:4;7922:20;7918:1;7907:9;7903:17;7896:47;7960:131;8086:4;7960:131;:::i;:::-;7952:139;;7679:419;;;:::o;8104:442::-;8253:4;8291:2;8280:9;8276:18;8268:26;;8304:71;8372:1;8361:9;8357:17;8348:6;8304:71;:::i;:::-;8385:72;8453:2;8442:9;8438:18;8429:6;8385:72;:::i;:::-;8467;8535:2;8524:9;8520:18;8511:6;8467:72;:::i;:::-;8104:442;;;;;;:::o;8552:180::-;8600:77;8597:1;8590:88;8697:4;8694:1;8687:15;8721:4;8718:1;8711:15;8738:191;8778:3;8797:20;8815:1;8797:20;:::i;:::-;8792:25;;8831:20;8849:1;8831:20;:::i;:::-;8826:25;;8874:1;8871;8867:9;8860:16;;8895:3;8892:1;8889:10;8886:36;;;8902:18;;:::i;:::-;8886:36;8738:191;;;;:::o

Swarm Source

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