ETH Price: $2,192.77 (-0.75%)

Token

1CC (1CC)
 

Overview

Max Total Supply

102,400,000,000 1CC

Holders

22

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
mingyan.eth
Balance
12,800,000 1CC

Value
$0.00
0x7c633fbbfc792f9c9a89d80634bf811eadb2cb79
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:
OneCC

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-05-18
*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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);
}


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

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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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


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



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/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 Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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;
    }

    /**
     * @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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
    unchecked {
        _approve(owner, spender, currentAllowance - subtractedValue);
    }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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;
    }
        _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;
        _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;
    }
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
        unchecked {
            _approve(owner, spender, currentAllowance - amount);
        }
        }
    }

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

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

contract OneCC is ERC20 {
    uint256 public constant MAX_SUPPLY = 1024 * 10 ** 8 * 10 ** 18;

    // For DAO 9%
    uint256 public constant AMOUNT_DAO = MAX_SUPPLY * 9 / 100;
    address public constant ADDR_DAO = 0x3bC597b3919b79646C4932D172941027Ae2614e1;

    // For Team 1%
    uint256 public constant AMOUNT_TEAM = MAX_SUPPLY * 1 / 100;
    address public constant ADDR_TEAM = 0xbc4fA4aa51f3598B5041fA98e6B1750f5B47843c;

    // For Withdraw 90%
    uint256 public constant AMOUNT_WITHDRAW = MAX_SUPPLY * 90 / 100;

    constructor() ERC20("1CC", "1CC") {
        _mint(msg.sender, AMOUNT_WITHDRAW);
        _mint(ADDR_DAO, AMOUNT_DAO);
        _mint(ADDR_TEAM, AMOUNT_TEAM);
    }
}

Contract Security Audit

Contract ABI

API
[{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADDR_DAO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDR_TEAM","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_DAO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_TEAM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_WITHDRAW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600381526020017f31434300000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f314343000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000313565b508060049080519060200190620000af92919062000313565b505050620000ed336064605a6c014adf4b7320334b9000000000620000d59190620003fc565b620000e191906200048c565b6200019160201b60201c565b6200013c733bc597b3919b79646c4932d172941027ae2614e1606460096c014adf4b7320334b9000000000620001249190620003fc565b6200013091906200048c565b6200019160201b60201c565b6200018b73bc4fa4aa51f3598b5041fa98e6b1750f5b47843c606460016c014adf4b7320334b9000000000620001739190620003fc565b6200017f91906200048c565b6200019160201b60201c565b62000636565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000203576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001fa9062000525565b60405180910390fd5b62000217600083836200030960201b60201c565b80600260008282546200022b919062000547565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000282919062000547565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002e99190620005b5565b60405180910390a362000305600083836200030e60201b60201c565b5050565b505050565b505050565b828054620003219062000601565b90600052602060002090601f01602090048101928262000345576000855562000391565b82601f106200036057805160ff191683800117855562000391565b8280016001018555821562000391579182015b828111156200039057825182559160200191906001019062000373565b5b509050620003a09190620003a4565b5090565b5b80821115620003bf576000816000905550600101620003a5565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200040982620003c3565b91506200041683620003c3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620004525762000451620003cd565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200049982620003c3565b9150620004a683620003c3565b925082620004b957620004b86200045d565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200050d601f83620004c4565b91506200051a82620004d5565b602082019050919050565b600060208201905081810360008301526200054081620004fe565b9050919050565b60006200055482620003c3565b91506200056183620003c3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005995762000598620003cd565b5b828201905092915050565b620005af81620003c3565b82525050565b6000602082019050620005cc6000830184620005a4565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200061a57607f821691505b60208210810362000630576200062f620005d2565b5b50919050565b6115ff80620006466000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806339509351116100a2578063a457c2d711610071578063a457c2d7146102c0578063a9059cbb146102f0578063b8fcfa5e14610320578063da394aec1461033e578063dd62ed3e1461035c5761010b565b8063395093511461022457806370a0823114610254578063720248de1461028457806395d89b41146102a25761010b565b80631d630591116100de5780631d6305911461019a57806323b872dd146101b8578063313ce567146101e857806332cb6b0c146102065761010b565b80630389223d1461011057806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c575b600080fd5b61011861038c565b6040516101259190610d56565b60405180910390f35b6101366103b5565b6040516101439190610e0a565b60405180910390f35b61016660048036038101906101619190610ebb565b610447565b6040516101739190610f16565b60405180910390f35b61018461046a565b6040516101919190610d56565b60405180910390f35b6101a2610474565b6040516101af9190610d56565b60405180910390f35b6101d260048036038101906101cd9190610f31565b61049d565b6040516101df9190610f16565b60405180910390f35b6101f06104cc565b6040516101fd9190610fa0565b60405180910390f35b61020e6104d5565b60405161021b9190610d56565b60405180910390f35b61023e60048036038101906102399190610ebb565b6104e6565b60405161024b9190610f16565b60405180910390f35b61026e60048036038101906102699190610fbb565b610590565b60405161027b9190610d56565b60405180910390f35b61028c6105d8565b6040516102999190610d56565b60405180910390f35b6102aa610601565b6040516102b79190610e0a565b60405180910390f35b6102da60048036038101906102d59190610ebb565b610693565b6040516102e79190610f16565b60405180910390f35b61030a60048036038101906103059190610ebb565b61077d565b6040516103179190610f16565b60405180910390f35b6103286107a0565b6040516103359190610ff7565b60405180910390f35b6103466107b8565b6040516103539190610ff7565b60405180910390f35b61037660048036038101906103719190611012565b6107d0565b6040516103839190610d56565b60405180910390f35b606460016c014adf4b7320334b90000000006103a89190611081565b6103b2919061110a565b81565b6060600380546103c49061116a565b80601f01602080910402602001604051908101604052809291908181526020018280546103f09061116a565b801561043d5780601f106104125761010080835404028352916020019161043d565b820191906000526020600020905b81548152906001019060200180831161042057829003601f168201915b5050505050905090565b600080610452610857565b905061045f81858561085f565b600191505092915050565b6000600254905090565b6064605a6c014adf4b7320334b90000000006104909190611081565b61049a919061110a565b81565b6000806104a8610857565b90506104b5858285610a28565b6104c0858585610ab4565b60019150509392505050565b60006012905090565b6c014adf4b7320334b900000000081565b6000806104f1610857565b9050610585818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610580919061119b565b61085f565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606460096c014adf4b7320334b90000000006105f49190611081565b6105fe919061110a565b81565b6060600480546106109061116a565b80601f016020809104026020016040519081016040528092919081815260200182805461063c9061116a565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b60008061069e610857565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90611263565b60405180910390fd5b610771828686840361085f565b60019250505092915050565b600080610788610857565b9050610795818585610ab4565b600191505092915050565b73bc4fa4aa51f3598b5041fa98e6b1750f5b47843c81565b733bc597b3919b79646c4932d172941027ae2614e181565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c5906112f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361093d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093490611387565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a1b9190610d56565b60405180910390a3505050565b6000610a3484846107d0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610aae5781811015610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a97906113f3565b60405180910390fd5b610aad848484840361085f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a90611485565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8990611517565b60405180910390fd5b610b9d838383610d33565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a906115a9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cb6919061119b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d1a9190610d56565b60405180910390a3610d2d848484610d38565b50505050565b505050565b505050565b6000819050919050565b610d5081610d3d565b82525050565b6000602082019050610d6b6000830184610d47565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610dab578082015181840152602081019050610d90565b83811115610dba576000848401525b50505050565b6000601f19601f8301169050919050565b6000610ddc82610d71565b610de68185610d7c565b9350610df6818560208601610d8d565b610dff81610dc0565b840191505092915050565b60006020820190508181036000830152610e248184610dd1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e5c82610e31565b9050919050565b610e6c81610e51565b8114610e7757600080fd5b50565b600081359050610e8981610e63565b92915050565b610e9881610d3d565b8114610ea357600080fd5b50565b600081359050610eb581610e8f565b92915050565b60008060408385031215610ed257610ed1610e2c565b5b6000610ee085828601610e7a565b9250506020610ef185828601610ea6565b9150509250929050565b60008115159050919050565b610f1081610efb565b82525050565b6000602082019050610f2b6000830184610f07565b92915050565b600080600060608486031215610f4a57610f49610e2c565b5b6000610f5886828701610e7a565b9350506020610f6986828701610e7a565b9250506040610f7a86828701610ea6565b9150509250925092565b600060ff82169050919050565b610f9a81610f84565b82525050565b6000602082019050610fb56000830184610f91565b92915050565b600060208284031215610fd157610fd0610e2c565b5b6000610fdf84828501610e7a565b91505092915050565b610ff181610e51565b82525050565b600060208201905061100c6000830184610fe8565b92915050565b6000806040838503121561102957611028610e2c565b5b600061103785828601610e7a565b925050602061104885828601610e7a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061108c82610d3d565b915061109783610d3d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156110d0576110cf611052565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061111582610d3d565b915061112083610d3d565b9250826111305761112f6110db565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061118257607f821691505b6020821081036111955761119461113b565b5b50919050565b60006111a682610d3d565b91506111b183610d3d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156111e6576111e5611052565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061124d602583610d7c565b9150611258826111f1565b604082019050919050565b6000602082019050818103600083015261127c81611240565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006112df602483610d7c565b91506112ea82611283565b604082019050919050565b6000602082019050818103600083015261130e816112d2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611371602283610d7c565b915061137c82611315565b604082019050919050565b600060208201905081810360008301526113a081611364565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006113dd601d83610d7c565b91506113e8826113a7565b602082019050919050565b6000602082019050818103600083015261140c816113d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061146f602583610d7c565b915061147a82611413565b604082019050919050565b6000602082019050818103600083015261149e81611462565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611501602383610d7c565b915061150c826114a5565b604082019050919050565b60006020820190508181036000830152611530816114f4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611593602683610d7c565b915061159e82611537565b604082019050919050565b600060208201905081810360008301526115c281611586565b905091905056fea264697066735822122045fe1350a7a0686584f2aa0f10c6fbae0519fb74cb891fd3743c23c6c90d7e7964736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806339509351116100a2578063a457c2d711610071578063a457c2d7146102c0578063a9059cbb146102f0578063b8fcfa5e14610320578063da394aec1461033e578063dd62ed3e1461035c5761010b565b8063395093511461022457806370a0823114610254578063720248de1461028457806395d89b41146102a25761010b565b80631d630591116100de5780631d6305911461019a57806323b872dd146101b8578063313ce567146101e857806332cb6b0c146102065761010b565b80630389223d1461011057806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c575b600080fd5b61011861038c565b6040516101259190610d56565b60405180910390f35b6101366103b5565b6040516101439190610e0a565b60405180910390f35b61016660048036038101906101619190610ebb565b610447565b6040516101739190610f16565b60405180910390f35b61018461046a565b6040516101919190610d56565b60405180910390f35b6101a2610474565b6040516101af9190610d56565b60405180910390f35b6101d260048036038101906101cd9190610f31565b61049d565b6040516101df9190610f16565b60405180910390f35b6101f06104cc565b6040516101fd9190610fa0565b60405180910390f35b61020e6104d5565b60405161021b9190610d56565b60405180910390f35b61023e60048036038101906102399190610ebb565b6104e6565b60405161024b9190610f16565b60405180910390f35b61026e60048036038101906102699190610fbb565b610590565b60405161027b9190610d56565b60405180910390f35b61028c6105d8565b6040516102999190610d56565b60405180910390f35b6102aa610601565b6040516102b79190610e0a565b60405180910390f35b6102da60048036038101906102d59190610ebb565b610693565b6040516102e79190610f16565b60405180910390f35b61030a60048036038101906103059190610ebb565b61077d565b6040516103179190610f16565b60405180910390f35b6103286107a0565b6040516103359190610ff7565b60405180910390f35b6103466107b8565b6040516103539190610ff7565b60405180910390f35b61037660048036038101906103719190611012565b6107d0565b6040516103839190610d56565b60405180910390f35b606460016c014adf4b7320334b90000000006103a89190611081565b6103b2919061110a565b81565b6060600380546103c49061116a565b80601f01602080910402602001604051908101604052809291908181526020018280546103f09061116a565b801561043d5780601f106104125761010080835404028352916020019161043d565b820191906000526020600020905b81548152906001019060200180831161042057829003601f168201915b5050505050905090565b600080610452610857565b905061045f81858561085f565b600191505092915050565b6000600254905090565b6064605a6c014adf4b7320334b90000000006104909190611081565b61049a919061110a565b81565b6000806104a8610857565b90506104b5858285610a28565b6104c0858585610ab4565b60019150509392505050565b60006012905090565b6c014adf4b7320334b900000000081565b6000806104f1610857565b9050610585818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610580919061119b565b61085f565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606460096c014adf4b7320334b90000000006105f49190611081565b6105fe919061110a565b81565b6060600480546106109061116a565b80601f016020809104026020016040519081016040528092919081815260200182805461063c9061116a565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b60008061069e610857565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b90611263565b60405180910390fd5b610771828686840361085f565b60019250505092915050565b600080610788610857565b9050610795818585610ab4565b600191505092915050565b73bc4fa4aa51f3598b5041fa98e6b1750f5b47843c81565b733bc597b3919b79646c4932d172941027ae2614e181565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c5906112f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361093d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093490611387565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a1b9190610d56565b60405180910390a3505050565b6000610a3484846107d0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610aae5781811015610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a97906113f3565b60405180910390fd5b610aad848484840361085f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a90611485565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8990611517565b60405180910390fd5b610b9d838383610d33565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a906115a9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cb6919061119b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d1a9190610d56565b60405180910390a3610d2d848484610d38565b50505050565b505050565b505050565b6000819050919050565b610d5081610d3d565b82525050565b6000602082019050610d6b6000830184610d47565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610dab578082015181840152602081019050610d90565b83811115610dba576000848401525b50505050565b6000601f19601f8301169050919050565b6000610ddc82610d71565b610de68185610d7c565b9350610df6818560208601610d8d565b610dff81610dc0565b840191505092915050565b60006020820190508181036000830152610e248184610dd1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e5c82610e31565b9050919050565b610e6c81610e51565b8114610e7757600080fd5b50565b600081359050610e8981610e63565b92915050565b610e9881610d3d565b8114610ea357600080fd5b50565b600081359050610eb581610e8f565b92915050565b60008060408385031215610ed257610ed1610e2c565b5b6000610ee085828601610e7a565b9250506020610ef185828601610ea6565b9150509250929050565b60008115159050919050565b610f1081610efb565b82525050565b6000602082019050610f2b6000830184610f07565b92915050565b600080600060608486031215610f4a57610f49610e2c565b5b6000610f5886828701610e7a565b9350506020610f6986828701610e7a565b9250506040610f7a86828701610ea6565b9150509250925092565b600060ff82169050919050565b610f9a81610f84565b82525050565b6000602082019050610fb56000830184610f91565b92915050565b600060208284031215610fd157610fd0610e2c565b5b6000610fdf84828501610e7a565b91505092915050565b610ff181610e51565b82525050565b600060208201905061100c6000830184610fe8565b92915050565b6000806040838503121561102957611028610e2c565b5b600061103785828601610e7a565b925050602061104885828601610e7a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061108c82610d3d565b915061109783610d3d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156110d0576110cf611052565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061111582610d3d565b915061112083610d3d565b9250826111305761112f6110db565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061118257607f821691505b6020821081036111955761119461113b565b5b50919050565b60006111a682610d3d565b91506111b183610d3d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156111e6576111e5611052565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061124d602583610d7c565b9150611258826111f1565b604082019050919050565b6000602082019050818103600083015261127c81611240565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006112df602483610d7c565b91506112ea82611283565b604082019050919050565b6000602082019050818103600083015261130e816112d2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611371602283610d7c565b915061137c82611315565b604082019050919050565b600060208201905081810360008301526113a081611364565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006113dd601d83610d7c565b91506113e8826113a7565b602082019050919050565b6000602082019050818103600083015261140c816113d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061146f602583610d7c565b915061147a82611413565b604082019050919050565b6000602082019050818103600083015261149e81611462565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611501602383610d7c565b915061150c826114a5565b604082019050919050565b60006020820190508181036000830152611530816114f4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611593602683610d7c565b915061159e82611537565b604082019050919050565b600060208201905081810360008301526115c281611586565b905091905056fea264697066735822122045fe1350a7a0686584f2aa0f10c6fbae0519fb74cb891fd3743c23c6c90d7e7964736f6c634300080d0033

Deployed Bytecode Sourcemap

17104:708:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17395:58;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6357:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8708:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7477:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17572:63;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9489:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7319:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17135:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10193:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7648:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17225:57;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6576:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10936:426;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7981:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17460:78;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17289:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8237:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17395:58;17450:3;17446:1;17172:25;17433:14;;;;:::i;:::-;:20;;;;:::i;:::-;17395:58;:::o;6357:100::-;6411:13;6444:5;6437:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6357:100;:::o;8708:201::-;8791:4;8808:13;8824:12;:10;:12::i;:::-;8808:28;;8847:32;8856:5;8863:7;8872:6;8847:8;:32::i;:::-;8897:4;8890:11;;;8708:201;;;;:::o;7477:108::-;7538:7;7565:12;;7558:19;;7477:108;:::o;17572:63::-;17632:3;17627:2;17172:25;17614:15;;;;:::i;:::-;:21;;;;:::i;:::-;17572:63;:::o;9489:295::-;9620:4;9637:15;9655:12;:10;:12::i;:::-;9637:30;;9678:38;9694:4;9700:7;9709:6;9678:15;:38::i;:::-;9727:27;9737:4;9743:2;9747:6;9727:9;:27::i;:::-;9772:4;9765:11;;;9489:295;;;;;:::o;7319:93::-;7377:5;7402:2;7395:9;;7319:93;:::o;17135:62::-;17172:25;17135:62;:::o;10193:240::-;10281:4;10298:13;10314:12;:10;:12::i;:::-;10298:28;;10337:66;10346:5;10353:7;10392:10;10362:11;:18;10374:5;10362:18;;;;;;;;;;;;;;;:27;10381:7;10362:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;10337:8;:66::i;:::-;10421:4;10414:11;;;10193:240;;;;:::o;7648:127::-;7722:7;7749:9;:18;7759:7;7749:18;;;;;;;;;;;;;;;;7742:25;;7648:127;;;:::o;17225:57::-;17279:3;17275:1;17172:25;17262:14;;;;:::i;:::-;:20;;;;:::i;:::-;17225:57;:::o;6576:104::-;6632:13;6665:7;6658:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6576:104;:::o;10936:426::-;11029:4;11046:13;11062:12;:10;:12::i;:::-;11046:28;;11085:24;11112:11;:18;11124:5;11112:18;;;;;;;;;;;;;;;:27;11131:7;11112:27;;;;;;;;;;;;;;;;11085:54;;11178:15;11158:16;:35;;11150:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11263:60;11272:5;11279:7;11307:15;11288:16;:34;11263:8;:60::i;:::-;11350:4;11343:11;;;;10936:426;;;;:::o;7981:193::-;8060:4;8077:13;8093:12;:10;:12::i;:::-;8077:28;;8116;8126:5;8133:2;8137:6;8116:9;:28::i;:::-;8162:4;8155:11;;;7981:193;;;;:::o;17460:78::-;17496:42;17460:78;:::o;17289:77::-;17324:42;17289:77;:::o;8237:151::-;8326:7;8353:11;:18;8365:5;8353:18;;;;;;;;;;;;;;;:27;8372:7;8353:27;;;;;;;;;;;;;;;;8346:34;;8237:151;;;;:::o;4084:98::-;4137:7;4164:10;4157:17;;4084:98;:::o;14536:380::-;14689:1;14672:19;;:5;:19;;;14664:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14770:1;14751:21;;:7;:21;;;14743:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14854:6;14824:11;:18;14836:5;14824:18;;;;;;;;;;;;;;;:27;14843:7;14824:27;;;;;;;;;;;;;;;:36;;;;14892:7;14876:32;;14885:5;14876:32;;;14901:6;14876:32;;;;;;:::i;:::-;;;;;;;;14536:380;;;:::o;15203:441::-;15338:24;15365:25;15375:5;15382:7;15365:9;:25::i;:::-;15338:52;;15425:17;15405:16;:37;15401:236;;15487:6;15467:16;:26;;15459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15563:51;15572:5;15579:7;15607:6;15588:16;:25;15563:8;:51::i;:::-;15401:236;15327:317;15203:441;;;:::o;11841:659::-;11988:1;11972:18;;:4;:18;;;11964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12065:1;12051:16;;:2;:16;;;12043:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12120:38;12141:4;12147:2;12151:6;12120:20;:38::i;:::-;12171:19;12193:9;:15;12203:4;12193:15;;;;;;;;;;;;;;;;12171:37;;12242:6;12227:11;:21;;12219:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12351:6;12337:11;:20;12319:9;:15;12329:4;12319:15;;;;;;;;;;;;;;;:38;;;;12392:6;12375:9;:13;12385:2;12375:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12431:2;12416:26;;12425:4;12416:26;;;12435:6;12416:26;;;;;;:::i;:::-;;;;;;;;12455:37;12475:4;12481:2;12485:6;12455:19;:37::i;:::-;11953:547;11841:659;;;:::o;16244:125::-;;;;:::o;16973:124::-;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:307::-;790:1;800:113;814:6;811:1;808:13;800:113;;;899:1;894:3;890:11;884:18;880:1;875:3;871:11;864:39;836:2;833:1;829:10;824:15;;800:113;;;931:6;928:1;925:13;922:101;;;1011:1;1002:6;997:3;993:16;986:27;922:101;771:258;722:307;;;:::o;1035:102::-;1076:6;1127:2;1123:7;1118:2;1111:5;1107:14;1103:28;1093:38;;1035:102;;;:::o;1143:364::-;1231:3;1259:39;1292:5;1259:39;:::i;:::-;1314:71;1378:6;1373:3;1314:71;:::i;:::-;1307:78;;1394:52;1439:6;1434:3;1427:4;1420:5;1416:16;1394:52;:::i;:::-;1471:29;1493:6;1471:29;:::i;:::-;1466:3;1462:39;1455:46;;1235:272;1143:364;;;;:::o;1513:313::-;1626:4;1664:2;1653:9;1649:18;1641:26;;1713:9;1707:4;1703:20;1699:1;1688:9;1684:17;1677:47;1741:78;1814:4;1805:6;1741:78;:::i;:::-;1733:86;;1513:313;;;;:::o;1913:117::-;2022:1;2019;2012:12;2159:126;2196:7;2236:42;2229:5;2225:54;2214:65;;2159:126;;;:::o;2291:96::-;2328:7;2357:24;2375:5;2357:24;:::i;:::-;2346:35;;2291:96;;;:::o;2393:122::-;2466:24;2484:5;2466:24;:::i;:::-;2459:5;2456:35;2446:63;;2505:1;2502;2495:12;2446:63;2393:122;:::o;2521:139::-;2567:5;2605:6;2592:20;2583:29;;2621:33;2648:5;2621:33;:::i;:::-;2521:139;;;;:::o;2666:122::-;2739:24;2757:5;2739:24;:::i;:::-;2732:5;2729:35;2719:63;;2778:1;2775;2768:12;2719:63;2666:122;:::o;2794:139::-;2840:5;2878:6;2865:20;2856:29;;2894:33;2921:5;2894:33;:::i;:::-;2794:139;;;;:::o;2939:474::-;3007:6;3015;3064:2;3052:9;3043:7;3039:23;3035:32;3032:119;;;3070:79;;:::i;:::-;3032:119;3190:1;3215:53;3260:7;3251:6;3240:9;3236:22;3215:53;:::i;:::-;3205:63;;3161:117;3317:2;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3288:118;2939:474;;;;;:::o;3419:90::-;3453:7;3496:5;3489:13;3482:21;3471:32;;3419:90;;;:::o;3515:109::-;3596:21;3611:5;3596:21;:::i;:::-;3591:3;3584:34;3515:109;;:::o;3630:210::-;3717:4;3755:2;3744:9;3740:18;3732:26;;3768:65;3830:1;3819:9;3815:17;3806:6;3768:65;:::i;:::-;3630:210;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:474::-;5656:6;5664;5713:2;5701:9;5692:7;5688:23;5684:32;5681:119;;;5719:79;;:::i;:::-;5681:119;5839:1;5864:53;5909:7;5900:6;5889:9;5885:22;5864:53;:::i;:::-;5854:63;;5810:117;5966:2;5992:53;6037:7;6028:6;6017:9;6013:22;5992:53;:::i;:::-;5982:63;;5937:118;5588:474;;;;;:::o;6068:180::-;6116:77;6113:1;6106:88;6213:4;6210:1;6203:15;6237:4;6234:1;6227:15;6254:348;6294:7;6317:20;6335:1;6317:20;:::i;:::-;6312:25;;6351:20;6369:1;6351:20;:::i;:::-;6346:25;;6539:1;6471:66;6467:74;6464:1;6461:81;6456:1;6449:9;6442:17;6438:105;6435:131;;;6546:18;;:::i;:::-;6435:131;6594:1;6591;6587:9;6576:20;;6254:348;;;;:::o;6608:180::-;6656:77;6653:1;6646:88;6753:4;6750:1;6743:15;6777:4;6774:1;6767:15;6794:185;6834:1;6851:20;6869:1;6851:20;:::i;:::-;6846:25;;6885:20;6903:1;6885:20;:::i;:::-;6880:25;;6924:1;6914:35;;6929:18;;:::i;:::-;6914:35;6971:1;6968;6964:9;6959:14;;6794:185;;;;:::o;6985:180::-;7033:77;7030:1;7023:88;7130:4;7127:1;7120:15;7154:4;7151:1;7144:15;7171:320;7215:6;7252:1;7246:4;7242:12;7232:22;;7299:1;7293:4;7289:12;7320:18;7310:81;;7376:4;7368:6;7364:17;7354:27;;7310:81;7438:2;7430:6;7427:14;7407:18;7404:38;7401:84;;7457:18;;:::i;:::-;7401:84;7222:269;7171:320;;;:::o;7497:305::-;7537:3;7556:20;7574:1;7556:20;:::i;:::-;7551:25;;7590:20;7608:1;7590:20;:::i;:::-;7585:25;;7744:1;7676:66;7672:74;7669:1;7666:81;7663:107;;;7750:18;;:::i;:::-;7663:107;7794:1;7791;7787:9;7780:16;;7497:305;;;;:::o;7808:224::-;7948:34;7944:1;7936:6;7932:14;7925:58;8017:7;8012:2;8004:6;8000:15;7993:32;7808:224;:::o;8038:366::-;8180:3;8201:67;8265:2;8260:3;8201:67;:::i;:::-;8194:74;;8277:93;8366:3;8277:93;:::i;:::-;8395:2;8390:3;8386:12;8379:19;;8038:366;;;:::o;8410:419::-;8576:4;8614:2;8603:9;8599:18;8591:26;;8663:9;8657:4;8653:20;8649:1;8638:9;8634:17;8627:47;8691:131;8817:4;8691:131;:::i;:::-;8683:139;;8410:419;;;:::o;8835:223::-;8975:34;8971:1;8963:6;8959:14;8952:58;9044:6;9039:2;9031:6;9027:15;9020:31;8835:223;:::o;9064:366::-;9206:3;9227:67;9291:2;9286:3;9227:67;:::i;:::-;9220:74;;9303:93;9392:3;9303:93;:::i;:::-;9421:2;9416:3;9412:12;9405:19;;9064:366;;;:::o;9436:419::-;9602:4;9640:2;9629:9;9625:18;9617:26;;9689:9;9683:4;9679:20;9675:1;9664:9;9660:17;9653:47;9717:131;9843:4;9717:131;:::i;:::-;9709:139;;9436:419;;;:::o;9861:221::-;10001:34;9997:1;9989:6;9985:14;9978:58;10070:4;10065:2;10057:6;10053:15;10046:29;9861:221;:::o;10088:366::-;10230:3;10251:67;10315:2;10310:3;10251:67;:::i;:::-;10244:74;;10327:93;10416:3;10327:93;:::i;:::-;10445:2;10440:3;10436:12;10429:19;;10088:366;;;:::o;10460:419::-;10626:4;10664:2;10653:9;10649:18;10641:26;;10713:9;10707:4;10703:20;10699:1;10688:9;10684:17;10677:47;10741:131;10867:4;10741:131;:::i;:::-;10733:139;;10460:419;;;:::o;10885:179::-;11025:31;11021:1;11013:6;11009:14;11002:55;10885:179;:::o;11070:366::-;11212:3;11233:67;11297:2;11292:3;11233:67;:::i;:::-;11226:74;;11309:93;11398:3;11309:93;:::i;:::-;11427:2;11422:3;11418:12;11411:19;;11070:366;;;:::o;11442:419::-;11608:4;11646:2;11635:9;11631:18;11623:26;;11695:9;11689:4;11685:20;11681:1;11670:9;11666:17;11659:47;11723:131;11849:4;11723:131;:::i;:::-;11715:139;;11442:419;;;:::o;11867:224::-;12007:34;12003:1;11995:6;11991:14;11984:58;12076:7;12071:2;12063:6;12059:15;12052:32;11867:224;:::o;12097:366::-;12239:3;12260:67;12324:2;12319:3;12260:67;:::i;:::-;12253:74;;12336:93;12425:3;12336:93;:::i;:::-;12454:2;12449:3;12445:12;12438:19;;12097:366;;;:::o;12469:419::-;12635:4;12673:2;12662:9;12658:18;12650:26;;12722:9;12716:4;12712:20;12708:1;12697:9;12693:17;12686:47;12750:131;12876:4;12750:131;:::i;:::-;12742:139;;12469:419;;;:::o;12894:222::-;13034:34;13030:1;13022:6;13018:14;13011:58;13103:5;13098:2;13090:6;13086:15;13079:30;12894:222;:::o;13122:366::-;13264:3;13285:67;13349:2;13344:3;13285:67;:::i;:::-;13278:74;;13361:93;13450:3;13361:93;:::i;:::-;13479:2;13474:3;13470:12;13463:19;;13122:366;;;:::o;13494:419::-;13660:4;13698:2;13687:9;13683:18;13675:26;;13747:9;13741:4;13737:20;13733:1;13722:9;13718:17;13711:47;13775:131;13901:4;13775:131;:::i;:::-;13767:139;;13494:419;;;:::o;13919:225::-;14059:34;14055:1;14047:6;14043:14;14036:58;14128:8;14123:2;14115:6;14111:15;14104:33;13919:225;:::o;14150:366::-;14292:3;14313:67;14377:2;14372:3;14313:67;:::i;:::-;14306:74;;14389:93;14478:3;14389:93;:::i;:::-;14507:2;14502:3;14498:12;14491:19;;14150:366;;;:::o;14522:419::-;14688:4;14726:2;14715:9;14711:18;14703:26;;14775:9;14769:4;14765:20;14761:1;14750:9;14746:17;14739:47;14803:131;14929:4;14803:131;:::i;:::-;14795:139;;14522:419;;;:::o

Swarm Source

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