ETH Price: $2,946.81 (-3.42%)
Gas: 3 Gwei

Token

GroupDAO (GDO)
 

Overview

Max Total Supply

56,858,170,458,080 GDO

Holders

4,958 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
55,912,778 GDO

Value
$0.00
0x37e25702ef2946fa5885ebbf5b2411c06f1a93ac
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

$GDB is a token designed to reward the guys who have made unrequited contributions to Twitter and to build a new generation of web3.0-based social media platforms with these guys. We will create this platform together, govern it through DAO, and share its development rewards.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GroupDAO

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 9: GroupDao.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./ERC20.sol";
import "./Math.sol";
import "./EIP712.sol";
import "./ECDSA.sol";

contract GroupDAO is ERC20, EIP712 {
    uint256 public constant MAX_SUPPLY = uint248(1e14 ether);

    // 1 month
    uint256 public constant LOCK_TIME = 2592000;
    uint256 public constant END_AIRDROP = 1643644800;

    // for DAO
    uint256 public constant AMOUNT_DAO = MAX_SUPPLY / 100 * 20;
    address public constant ADDR_DAO = 0x58E5a5df8eF5EbEbe9FF2943cE45f79E7511e2d7;

    // for team, lock 5 year, unlock 1/60 per month
    uint256 public constant AMOUNT_STAKING = MAX_SUPPLY / 100 * 20;
    address public constant ADDR_STAKING = 0xEF0E03599a3a4a72A1be22A1dFAdCe2005681eaF;
    uint256 public constant AMOUNT_UNLOCKED_MONTH = AMOUNT_STAKING / 60;

    // for liquidity providers
    uint256 public constant AMOUNT_LP = MAX_SUPPLY / 100 * 9;
    address public constant ADDR_LP = 0xfE287b54288189bd492ee5c39A4114001Ace1bAa;

    // for init liquidity providers
    uint256 public constant AMOUNT_ILP = MAX_SUPPLY / 100 * 1;
    address public constant ADDR_ILP = 0x51c0037aeEdAE7B046D539eeFf3FFa1B9232a0b6;

    // for airdrop
    uint256 public constant AMOUNT_AIRDROP = MAX_SUPPLY - (AMOUNT_DAO + AMOUNT_STAKING + AMOUNT_LP + AMOUNT_ILP);

    uint256 public START_TIME = 0;
    bytes32 constant public MINT_CALL_HASH_TYPE = keccak256("mint(address receiver,uint256 amount)");
    address public immutable cSigner;

    constructor(string memory _name, string memory _symbol, address _signer) ERC20(_name, _symbol) EIP712("GroupDAO", "1") {
        _mint(ADDR_DAO, AMOUNT_DAO);
        _mint(ADDR_STAKING, AMOUNT_STAKING);
        _mint(ADDR_LP, AMOUNT_LP);
        _mint(ADDR_ILP, AMOUNT_ILP);
        _totalSupply = AMOUNT_DAO + AMOUNT_STAKING + AMOUNT_LP + AMOUNT_ILP;
        cSigner = _signer;
        START_TIME = block.timestamp;
    }


    function claim(uint256 amountV, bytes32 r, bytes32 s) external {
        require(block.timestamp < END_AIRDROP, "GroupDAO: AirDrop Finished");

        uint256 amount = uint248(amountV);
        uint8 v = uint8(amountV >> 248);
        uint256 total = _totalSupply + amount;
        require(total <= MAX_SUPPLY, "GroupDAO: Exceed max supply");
        require(minted(msg.sender) == 0, "GroupDAO: Claimed");
        bytes32 digest = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32",
                ECDSA.toTypedDataHash(_domainSeparatorV4(),
                keccak256(abi.encode(MINT_CALL_HASH_TYPE, msg.sender, amount))
        )));
        require(ecrecover(digest, v, r, s) == cSigner, "GroupDAO: Invalid signer");
        _totalSupply = total;
        _mint(msg.sender, amount);

    }

    function _checkSenderLock(uint256 amount) internal override view{
        if(msg.sender == ADDR_STAKING){
            uint256 passed = Math.div(block.timestamp - START_TIME, LOCK_TIME);
            if(passed <= 60){
                uint256 locked_amount = AMOUNT_UNLOCKED_MONTH * (60 - passed);
                uint256 least_amount = locked_amount + amount;
                require(balanceOf(ADDR_STAKING) >= least_amount, "GroupDAO: Transfer Locked");
            }
        }
        if(msg.sender == ADDR_DAO || msg.sender == ADDR_LP){
                require(block.timestamp > END_AIRDROP, "GroupDAO: Transfer Locked");
        }
    }
}

File 1 of 9: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 2 of 9: ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "./Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}


File 3 of 9: EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}


File 4 of 9: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.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 {
    struct MintBalance {
        uint8 minted;
        uint248 balance;
    }

    mapping(address => MintBalance) private _balances;

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

    uint256 internal _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].balance;
    }

    function minted(address account) public view returns (uint256) {
        return _balances[account].minted;
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        _checkSenderLock(amount);
        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender].balance;
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender].balance = uint248(senderBalance - amount);
        }
        _balances[recipient].balance += uint248(amount);

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        uint256 b = _balances[account].balance + amount;
        _balances[account].balance = uint248(b);
        _balances[account].minted = 1;
        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].balance;
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account].balance = uint248(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 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 {
    }

    function _checkSenderLock(
        uint256 amount
    ) internal virtual {}

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


}


File 6 of 9: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        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);
}

File 7 of 9: IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.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);
}

File 8 of 9: Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This is same with standard division with `/`.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }


    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 9 of 9: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}


Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_signer","type":"address"}],"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_ILP","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDR_LP","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDR_STAKING","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_AIRDROP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_DAO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_ILP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_LP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_STAKING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_UNLOCKED_MONTH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"END_AIRDROP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCK_TIME","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":[],"name":"MINT_CALL_HASH_TYPE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START_TIME","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":"cSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountV","type":"uint256"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"account","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

61016060405260006005553480156200001757600080fd5b50604051620038a8380380620038a883398181016040528101906200003d91906200086c565b6040518060400160405280600881526020017f47726f757044414f0000000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525084848160039080519060200190620000c392919062000733565b508060049080519060200190620000dc92919062000733565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a0818152505062000148818484620004fa60201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508061012081815250505050505050620002057358e5a5df8ef5ebebe9ff2943ce45f79e7511e2d7601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620001ed919062000a5d565b620001f9919062000a95565b6200053660201b60201c565b6200027673ef0e03599a3a4a72a1be22a1dfadce2005681eaf601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166200025e919062000a5d565b6200026a919062000a95565b6200053660201b60201c565b620002e773fe287b54288189bd492ee5c39a4114001ace1baa600960646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620002cf919062000a5d565b620002db919062000a95565b6200053660201b60201c565b620003587351c0037aeedae7b046d539eeff3ffa1b9232a0b6600160646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1662000340919062000a5d565b6200034c919062000a95565b6200053660201b60201c565b600160646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1662000398919062000a5d565b620003a4919062000a95565b600960646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620003e4919062000a5d565b620003f0919062000a95565b601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1662000430919062000a5d565b6200043c919062000a95565b601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166200047c919062000a5d565b62000488919062000a95565b62000494919062000a00565b620004a0919062000a00565b620004ac919062000a00565b6002819055508073ffffffffffffffffffffffffffffffffffffffff166101408173ffffffffffffffffffffffffffffffffffffffff1660601b815250504260058190555050505062000cc7565b600083838346306040516020016200051795949392919062000927565b6040516020818303038152906040528051906020012090509392505050565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620005d3919062000a00565b9050806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555060016000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162000726919062000984565b60405180910390a3505050565b828054620007419062000b74565b90600052602060002090601f016020900481019282620007655760008555620007b1565b82601f106200078057805160ff1916838001178555620007b1565b82800160010185558215620007b1579182015b82811115620007b057825182559160200191906001019062000793565b5b509050620007c09190620007c4565b5090565b5b80821115620007df576000816000905550600101620007c5565b5090565b6000620007fa620007f484620009ca565b620009a1565b9050828152602081018484840111156200081357600080fd5b6200082084828562000b3e565b509392505050565b600081519050620008398162000cad565b92915050565b600082601f8301126200085157600080fd5b815162000863848260208601620007e3565b91505092915050565b6000806000606084860312156200088257600080fd5b600084015167ffffffffffffffff8111156200089d57600080fd5b620008ab868287016200083f565b935050602084015167ffffffffffffffff811115620008c957600080fd5b620008d7868287016200083f565b9250506040620008ea8682870162000828565b9150509250925092565b620008ff8162000af6565b82525050565b620009108162000b0a565b82525050565b620009218162000b34565b82525050565b600060a0820190506200093e600083018862000905565b6200094d602083018762000905565b6200095c604083018662000905565b6200096b606083018562000916565b6200097a6080830184620008f4565b9695505050505050565b60006020820190506200099b600083018462000916565b92915050565b6000620009ad620009c0565b9050620009bb828262000baa565b919050565b6000604051905090565b600067ffffffffffffffff821115620009e857620009e762000c6d565b5b620009f38262000c9c565b9050602081019050919050565b600062000a0d8262000b34565b915062000a1a8362000b34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a525762000a5162000be0565b5b828201905092915050565b600062000a6a8262000b34565b915062000a778362000b34565b92508262000a8a5762000a8962000c0f565b5b828204905092915050565b600062000aa28262000b34565b915062000aaf8362000b34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000aeb5762000aea62000be0565b5b828202905092915050565b600062000b038262000b14565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b5e57808201518184015260208101905062000b41565b8381111562000b6e576000848401525b50505050565b6000600282049050600182168062000b8d57607f821691505b6020821081141562000ba45762000ba362000c3e565b5b50919050565b62000bb58262000c9c565b810181811067ffffffffffffffff8211171562000bd75762000bd662000c6d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000cb88162000af6565b811462000cc457600080fd5b50565b60805160a05160c05160601c60e05161010051610120516101405160601c612b7962000d2f600039600081816109290152610fe80152600061181701526000611859015260006118380152600061176d015260006117c3015260006117ec0152612b796000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063720248de11610104578063a457c2d7116100a2578063c688387f11610071578063c688387f1461053e578063da394aec1461055c578063dd62ed3e1461057a578063ddaa26ad146105aa576101cf565b8063a457c2d7146104a4578063a9059cbb146104d4578063abf2ebd814610504578063b43bbd1114610520576101cf565b806386fdbdc1116100de57806386fdbdc11461042c57806387d45de71461044a57806395d89b41146104685780639aafa7a414610486576101cf565b8063720248de146103d257806375df1d7c146103f057806380ef01601461040e576101cf565b8063395093511161017157806346de26731161014b57806346de2673146103485780635760cc5d1461036657806357b3a5011461038457806370a08231146103a2576101cf565b806339509351146102dc5780633f1eaf0f1461030c578063413d9c3a1461032a576101cf565b80631e7269c5116101ad5780631e7269c51461024057806323b872dd14610270578063313ce567146102a057806332cb6b0c146102be576101cf565b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610222575b600080fd5b6101dc6105c8565b6040516101e991906122b6565b60405180910390f35b61020c60048036038101906102079190611e29565b61065a565b60405161021991906121b1565b60405180910390f35b61022a610678565b6040516102379190612458565b60405180910390f35b61025a60048036038101906102559190611d75565b610682565b6040516102679190612458565b60405180910390f35b61028a60048036038101906102859190611dda565b6106dd565b60405161029791906121b1565b60405180910390f35b6102a86107d5565b6040516102b59190612473565b60405180910390f35b6102c66107de565b6040516102d39190612458565b60405180910390f35b6102f660048036038101906102f19190611e29565b610811565b60405161030391906121b1565b60405180910390f35b6103146108bd565b6040516103219190612458565b60405180910390f35b610332610908565b60405161033f9190612458565b60405180910390f35b61035061090f565b60405161035d9190612196565b60405180910390f35b61036e610927565b60405161037b9190612196565b60405180910390f35b61038c61094b565b6040516103999190612458565b60405180910390f35b6103bc60048036038101906103b79190611d75565b610953565b6040516103c99190612458565b60405180910390f35b6103da6109ea565b6040516103e79190612458565b60405180910390f35b6103f8610a35565b6040516104059190612196565b60405180910390f35b610416610a4d565b6040516104239190612458565b60405180910390f35b610434610bc8565b6040516104419190612458565b60405180910390f35b610452610c13565b60405161045f9190612196565b60405180910390f35b610470610c2b565b60405161047d91906122b6565b60405180910390f35b61048e610cbd565b60405161049b9190612458565b60405180910390f35b6104be60048036038101906104b99190611e29565b610d14565b6040516104cb91906121b1565b60405180910390f35b6104ee60048036038101906104e99190611e29565b610dff565b6040516104fb91906121b1565b60405180910390f35b61051e60048036038101906105199190611e65565b610e1d565b005b6105286110dc565b6040516105359190612458565b60405180910390f35b610546611127565b60405161055391906121cc565b60405180910390f35b61056461114b565b6040516105719190612196565b60405180910390f35b610594600480360381019061058f9190611d9e565b611163565b6040516105a19190612458565b60405180910390f35b6105b26111ea565b6040516105bf9190612458565b60405180910390f35b6060600380546105d7906126dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610603906126dc565b80156106505780601f1061062557610100808354040283529160200191610650565b820191906000526020600020905b81548152906001019060200180831161063357829003601f168201915b5050505050905090565b600061066e6106676111f0565b84846111f8565b6001905092915050565b6000600254905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff1660ff169050919050565b60006106ea8484846113c3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107356111f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac906123b8565b60405180910390fd5b6107c9856107c16111f0565b8584036111f8565b60019150509392505050565b60006012905090565b6d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681565b60006108b361081e6111f0565b84846001600061082c6111f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108ae919061250a565b6111f8565b6001905092915050565b600160646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166108fb9190612560565b6109059190612591565b81565b62278d0081565b73fe287b54288189bd492ee5c39a4114001ace1baa81565b7f000000000000000000000000000000000000000000000000000000000000000081565b6361f8078081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050919050565b601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610a289190612560565b610a329190612591565b81565b73ef0e03599a3a4a72a1be22a1dfadce2005681eaf81565b600160646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610a8b9190612560565b610a959190612591565b600960646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610ad39190612560565b610add9190612591565b601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610b1b9190612560565b610b259190612591565b601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610b639190612560565b610b6d9190612591565b610b77919061250a565b610b81919061250a565b610b8b919061250a565b6d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610bc591906125eb565b81565b600960646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610c069190612560565b610c109190612591565b81565b7351c0037aeedae7b046d539eeff3ffa1b9232a0b681565b606060048054610c3a906126dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610c66906126dc565b8015610cb35780601f10610c8857610100808354040283529160200191610cb3565b820191906000526020600020905b815481529060010190602001808311610c9657829003601f168201915b5050505050905090565b603c601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610cfd9190612560565b610d079190612591565b610d119190612560565b81565b60008060016000610d236111f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790612418565b60405180910390fd5b610df4610deb6111f0565b858584036111f8565b600191505092915050565b6000610e13610e0c6111f0565b84846113c3565b6001905092915050565b6361f807804210610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90612398565b60405180910390fd5b6000837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050600060f885901c9050600082600254610ea2919061250a565b90506d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16811115610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90612378565b60405180910390fd5b6000610f2133610682565b14610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890612358565b60405180910390fd5b6000610fbe610f6e611769565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea3387604051602001610fa3939291906121e7565b60405160208183030381529060405280519060200120611883565b604051602001610fce9190612139565b6040516020818303038152906040528051906020012090507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16600182858989604051600081526020016040526040516110409493929190612271565b6020604051602081039080840390855afa158015611062573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16146110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990612438565b60405180910390fd5b816002819055506110d333856118b6565b50505050505050565b601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661111a9190612560565b6111249190612591565b81565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea81565b7358e5a5df8ef5ebebe9ff2943ce45f79e7511e2d781565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60055481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f906123f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90612318565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113b69190612458565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a906123d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149a906122d8565b60405180910390fd5b6114ac81611aaf565b6114b7838383611cdc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1690508181101561158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390612338565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160018282829054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661169f91906124b5565b92506101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117509190612458565b60405180910390a3611763848484611ce1565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156117e557507f000000000000000000000000000000000000000000000000000000000000000046145b15611812577f00000000000000000000000000000000000000000000000000000000000000009050611880565b61187d7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611ce6565b90505b90565b6000828260405160200161189892919061215f565b60405160208183030381529060405280519060200120905092915050565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611951919061250a565b9050806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555060016000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aa29190612458565b60405180910390a3505050565b73ef0e03599a3a4a72a1be22a1dfadce2005681eaf73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611c00576000611b1360055442611b0a91906125eb565b62278d00611d20565b9050603c8111611bfe57600081603c611b2c91906125eb565b603c601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611b6c9190612560565b611b769190612591565b611b809190612560565b611b8a9190612591565b905060008382611b9a919061250a565b905080611bba73ef0e03599a3a4a72a1be22a1dfadce2005681eaf610953565b1015611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf2906122f8565b60405180910390fd5b50505b505b7358e5a5df8ef5ebebe9ff2943ce45f79e7511e2d773ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611c8d575073fe287b54288189bd492ee5c39a4114001ace1baa73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b15611cd9576361f807804211611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf906122f8565b60405180910390fd5b5b50565b505050565b505050565b60008383834630604051602001611d0195949392919061221e565b6040516020818303038152906040528051906020012090509392505050565b60008183611d2e9190612560565b905092915050565b600081359050611d4581612afe565b92915050565b600081359050611d5a81612b15565b92915050565b600081359050611d6f81612b2c565b92915050565b600060208284031215611d8757600080fd5b6000611d9584828501611d36565b91505092915050565b60008060408385031215611db157600080fd5b6000611dbf85828601611d36565b9250506020611dd085828601611d36565b9150509250929050565b600080600060608486031215611def57600080fd5b6000611dfd86828701611d36565b9350506020611e0e86828701611d36565b9250506040611e1f86828701611d60565b9150509250925092565b60008060408385031215611e3c57600080fd5b6000611e4a85828601611d36565b9250506020611e5b85828601611d60565b9150509250929050565b600080600060608486031215611e7a57600080fd5b6000611e8886828701611d60565b9350506020611e9986828701611d4b565b9250506040611eaa86828701611d4b565b9150509250925092565b611ebd8161261f565b82525050565b611ecc81612631565b82525050565b611edb8161263d565b82525050565b611ef2611eed8261263d565b61270e565b82525050565b6000611f038261248e565b611f0d8185612499565b9350611f1d8185602086016126a9565b611f26816127a5565b840191505092915050565b6000611f3e602383612499565b9150611f49826127b6565b604082019050919050565b6000611f61601c836124aa565b9150611f6c82612805565b601c82019050919050565b6000611f84601983612499565b9150611f8f8261282e565b602082019050919050565b6000611fa7602283612499565b9150611fb282612857565b604082019050919050565b6000611fca6002836124aa565b9150611fd5826128a6565b600282019050919050565b6000611fed602683612499565b9150611ff8826128cf565b604082019050919050565b6000612010601183612499565b915061201b8261291e565b602082019050919050565b6000612033601b83612499565b915061203e82612947565b602082019050919050565b6000612056601a83612499565b915061206182612970565b602082019050919050565b6000612079602883612499565b915061208482612999565b604082019050919050565b600061209c602583612499565b91506120a7826129e8565b604082019050919050565b60006120bf602483612499565b91506120ca82612a37565b604082019050919050565b60006120e2602583612499565b91506120ed82612a86565b604082019050919050565b6000612105601883612499565b915061211082612ad5565b602082019050919050565b61212481612692565b82525050565b6121338161269c565b82525050565b600061214482611f54565b91506121508284611ee1565b60208201915081905092915050565b600061216a82611fbd565b91506121768285611ee1565b6020820191506121868284611ee1565b6020820191508190509392505050565b60006020820190506121ab6000830184611eb4565b92915050565b60006020820190506121c66000830184611ec3565b92915050565b60006020820190506121e16000830184611ed2565b92915050565b60006060820190506121fc6000830186611ed2565b6122096020830185611eb4565b612216604083018461211b565b949350505050565b600060a0820190506122336000830188611ed2565b6122406020830187611ed2565b61224d6040830186611ed2565b61225a606083018561211b565b6122676080830184611eb4565b9695505050505050565b60006080820190506122866000830187611ed2565b612293602083018661212a565b6122a06040830185611ed2565b6122ad6060830184611ed2565b95945050505050565b600060208201905081810360008301526122d08184611ef8565b905092915050565b600060208201905081810360008301526122f181611f31565b9050919050565b6000602082019050818103600083015261231181611f77565b9050919050565b6000602082019050818103600083015261233181611f9a565b9050919050565b6000602082019050818103600083015261235181611fe0565b9050919050565b6000602082019050818103600083015261237181612003565b9050919050565b6000602082019050818103600083015261239181612026565b9050919050565b600060208201905081810360008301526123b181612049565b9050919050565b600060208201905081810360008301526123d18161206c565b9050919050565b600060208201905081810360008301526123f18161208f565b9050919050565b60006020820190508181036000830152612411816120b2565b9050919050565b60006020820190508181036000830152612431816120d5565b9050919050565b60006020820190508181036000830152612451816120f8565b9050919050565b600060208201905061246d600083018461211b565b92915050565b6000602082019050612488600083018461212a565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006124c082612667565b91506124cb83612667565b9250827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124ff576124fe612718565b5b828201905092915050565b600061251582612692565b915061252083612692565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561255557612554612718565b5b828201905092915050565b600061256b82612692565b915061257683612692565b92508261258657612585612747565b5b828204905092915050565b600061259c82612692565b91506125a783612692565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125e0576125df612718565b5b828202905092915050565b60006125f682612692565b915061260183612692565b92508282101561261457612613612718565b5b828203905092915050565b600061262a82612647565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156126c75780820151818401526020810190506126ac565b838111156126d6576000848401525b50505050565b600060028204905060018216806126f457607f821691505b6020821081141561270857612707612776565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f47726f757044414f3a205472616e73666572204c6f636b656400000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f47726f757044414f3a20436c61696d6564000000000000000000000000000000600082015250565b7f47726f757044414f3a20457863656564206d617820737570706c790000000000600082015250565b7f47726f757044414f3a2041697244726f702046696e6973686564000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f47726f757044414f3a20496e76616c6964207369676e65720000000000000000600082015250565b612b078161261f565b8114612b1257600080fd5b50565b612b1e8161263d565b8114612b2957600080fd5b50565b612b3581612692565b8114612b4057600080fd5b5056fea264697066735822122079bb35e7eb74b40b69ed6b11aa1accf97a6f73b96a263448408660f07cdb932b64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000ce044735bb3527d9d9e0b8add1118186900bb86c000000000000000000000000000000000000000000000000000000000000000847726f757044414f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000347444f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063720248de11610104578063a457c2d7116100a2578063c688387f11610071578063c688387f1461053e578063da394aec1461055c578063dd62ed3e1461057a578063ddaa26ad146105aa576101cf565b8063a457c2d7146104a4578063a9059cbb146104d4578063abf2ebd814610504578063b43bbd1114610520576101cf565b806386fdbdc1116100de57806386fdbdc11461042c57806387d45de71461044a57806395d89b41146104685780639aafa7a414610486576101cf565b8063720248de146103d257806375df1d7c146103f057806380ef01601461040e576101cf565b8063395093511161017157806346de26731161014b57806346de2673146103485780635760cc5d1461036657806357b3a5011461038457806370a08231146103a2576101cf565b806339509351146102dc5780633f1eaf0f1461030c578063413d9c3a1461032a576101cf565b80631e7269c5116101ad5780631e7269c51461024057806323b872dd14610270578063313ce567146102a057806332cb6b0c146102be576101cf565b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610222575b600080fd5b6101dc6105c8565b6040516101e991906122b6565b60405180910390f35b61020c60048036038101906102079190611e29565b61065a565b60405161021991906121b1565b60405180910390f35b61022a610678565b6040516102379190612458565b60405180910390f35b61025a60048036038101906102559190611d75565b610682565b6040516102679190612458565b60405180910390f35b61028a60048036038101906102859190611dda565b6106dd565b60405161029791906121b1565b60405180910390f35b6102a86107d5565b6040516102b59190612473565b60405180910390f35b6102c66107de565b6040516102d39190612458565b60405180910390f35b6102f660048036038101906102f19190611e29565b610811565b60405161030391906121b1565b60405180910390f35b6103146108bd565b6040516103219190612458565b60405180910390f35b610332610908565b60405161033f9190612458565b60405180910390f35b61035061090f565b60405161035d9190612196565b60405180910390f35b61036e610927565b60405161037b9190612196565b60405180910390f35b61038c61094b565b6040516103999190612458565b60405180910390f35b6103bc60048036038101906103b79190611d75565b610953565b6040516103c99190612458565b60405180910390f35b6103da6109ea565b6040516103e79190612458565b60405180910390f35b6103f8610a35565b6040516104059190612196565b60405180910390f35b610416610a4d565b6040516104239190612458565b60405180910390f35b610434610bc8565b6040516104419190612458565b60405180910390f35b610452610c13565b60405161045f9190612196565b60405180910390f35b610470610c2b565b60405161047d91906122b6565b60405180910390f35b61048e610cbd565b60405161049b9190612458565b60405180910390f35b6104be60048036038101906104b99190611e29565b610d14565b6040516104cb91906121b1565b60405180910390f35b6104ee60048036038101906104e99190611e29565b610dff565b6040516104fb91906121b1565b60405180910390f35b61051e60048036038101906105199190611e65565b610e1d565b005b6105286110dc565b6040516105359190612458565b60405180910390f35b610546611127565b60405161055391906121cc565b60405180910390f35b61056461114b565b6040516105719190612196565b60405180910390f35b610594600480360381019061058f9190611d9e565b611163565b6040516105a19190612458565b60405180910390f35b6105b26111ea565b6040516105bf9190612458565b60405180910390f35b6060600380546105d7906126dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610603906126dc565b80156106505780601f1061062557610100808354040283529160200191610650565b820191906000526020600020905b81548152906001019060200180831161063357829003601f168201915b5050505050905090565b600061066e6106676111f0565b84846111f8565b6001905092915050565b6000600254905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff1660ff169050919050565b60006106ea8484846113c3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107356111f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac906123b8565b60405180910390fd5b6107c9856107c16111f0565b8584036111f8565b60019150509392505050565b60006012905090565b6d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681565b60006108b361081e6111f0565b84846001600061082c6111f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108ae919061250a565b6111f8565b6001905092915050565b600160646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166108fb9190612560565b6109059190612591565b81565b62278d0081565b73fe287b54288189bd492ee5c39a4114001ace1baa81565b7f000000000000000000000000ce044735bb3527d9d9e0b8add1118186900bb86c81565b6361f8078081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050919050565b601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610a289190612560565b610a329190612591565b81565b73ef0e03599a3a4a72a1be22a1dfadce2005681eaf81565b600160646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610a8b9190612560565b610a959190612591565b600960646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610ad39190612560565b610add9190612591565b601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610b1b9190612560565b610b259190612591565b601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610b639190612560565b610b6d9190612591565b610b77919061250a565b610b81919061250a565b610b8b919061250a565b6d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610bc591906125eb565b81565b600960646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610c069190612560565b610c109190612591565b81565b7351c0037aeedae7b046d539eeff3ffa1b9232a0b681565b606060048054610c3a906126dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610c66906126dc565b8015610cb35780601f10610c8857610100808354040283529160200191610cb3565b820191906000526020600020905b815481529060010190602001808311610c9657829003601f168201915b5050505050905090565b603c601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610cfd9190612560565b610d079190612591565b610d119190612560565b81565b60008060016000610d236111f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790612418565b60405180910390fd5b610df4610deb6111f0565b858584036111f8565b600191505092915050565b6000610e13610e0c6111f0565b84846113c3565b6001905092915050565b6361f807804210610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90612398565b60405180910390fd5b6000837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050600060f885901c9050600082600254610ea2919061250a565b90506d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16811115610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90612378565b60405180910390fd5b6000610f2133610682565b14610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890612358565b60405180910390fd5b6000610fbe610f6e611769565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea3387604051602001610fa3939291906121e7565b60405160208183030381529060405280519060200120611883565b604051602001610fce9190612139565b6040516020818303038152906040528051906020012090507f000000000000000000000000ce044735bb3527d9d9e0b8add1118186900bb86c73ffffffffffffffffffffffffffffffffffffffff16600182858989604051600081526020016040526040516110409493929190612271565b6020604051602081039080840390855afa158015611062573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16146110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990612438565b60405180910390fd5b816002819055506110d333856118b6565b50505050505050565b601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661111a9190612560565b6111249190612591565b81565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea81565b7358e5a5df8ef5ebebe9ff2943ce45f79e7511e2d781565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60055481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f906123f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90612318565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113b69190612458565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a906123d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149a906122d8565b60405180910390fd5b6114ac81611aaf565b6114b7838383611cdc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1690508181101561158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390612338565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160018282829054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661169f91906124b5565b92506101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117509190612458565b60405180910390a3611763848484611ce1565b50505050565b60007f00000000000000000000000016f78145ad0b9af58747e9a97ebd99175378bd3d73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156117e557507f000000000000000000000000000000000000000000000000000000000000000146145b15611812577ffebc849ca077c2b1795e2e930853971056b690ff9885263c17eeb27f617c665d9050611880565b61187d7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fa782b7d3ce2855850d919a81e4cdbfd9910c8169737494c6e7ae647a4f3cd3bf7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611ce6565b90505b90565b6000828260405160200161189892919061215f565b60405160208183030381529060405280519060200120905092915050565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611951919061250a565b9050806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555060016000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aa29190612458565b60405180910390a3505050565b73ef0e03599a3a4a72a1be22a1dfadce2005681eaf73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611c00576000611b1360055442611b0a91906125eb565b62278d00611d20565b9050603c8111611bfe57600081603c611b2c91906125eb565b603c601460646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611b6c9190612560565b611b769190612591565b611b809190612560565b611b8a9190612591565b905060008382611b9a919061250a565b905080611bba73ef0e03599a3a4a72a1be22a1dfadce2005681eaf610953565b1015611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf2906122f8565b60405180910390fd5b50505b505b7358e5a5df8ef5ebebe9ff2943ce45f79e7511e2d773ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611c8d575073fe287b54288189bd492ee5c39a4114001ace1baa73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b15611cd9576361f807804211611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf906122f8565b60405180910390fd5b5b50565b505050565b505050565b60008383834630604051602001611d0195949392919061221e565b6040516020818303038152906040528051906020012090509392505050565b60008183611d2e9190612560565b905092915050565b600081359050611d4581612afe565b92915050565b600081359050611d5a81612b15565b92915050565b600081359050611d6f81612b2c565b92915050565b600060208284031215611d8757600080fd5b6000611d9584828501611d36565b91505092915050565b60008060408385031215611db157600080fd5b6000611dbf85828601611d36565b9250506020611dd085828601611d36565b9150509250929050565b600080600060608486031215611def57600080fd5b6000611dfd86828701611d36565b9350506020611e0e86828701611d36565b9250506040611e1f86828701611d60565b9150509250925092565b60008060408385031215611e3c57600080fd5b6000611e4a85828601611d36565b9250506020611e5b85828601611d60565b9150509250929050565b600080600060608486031215611e7a57600080fd5b6000611e8886828701611d60565b9350506020611e9986828701611d4b565b9250506040611eaa86828701611d4b565b9150509250925092565b611ebd8161261f565b82525050565b611ecc81612631565b82525050565b611edb8161263d565b82525050565b611ef2611eed8261263d565b61270e565b82525050565b6000611f038261248e565b611f0d8185612499565b9350611f1d8185602086016126a9565b611f26816127a5565b840191505092915050565b6000611f3e602383612499565b9150611f49826127b6565b604082019050919050565b6000611f61601c836124aa565b9150611f6c82612805565b601c82019050919050565b6000611f84601983612499565b9150611f8f8261282e565b602082019050919050565b6000611fa7602283612499565b9150611fb282612857565b604082019050919050565b6000611fca6002836124aa565b9150611fd5826128a6565b600282019050919050565b6000611fed602683612499565b9150611ff8826128cf565b604082019050919050565b6000612010601183612499565b915061201b8261291e565b602082019050919050565b6000612033601b83612499565b915061203e82612947565b602082019050919050565b6000612056601a83612499565b915061206182612970565b602082019050919050565b6000612079602883612499565b915061208482612999565b604082019050919050565b600061209c602583612499565b91506120a7826129e8565b604082019050919050565b60006120bf602483612499565b91506120ca82612a37565b604082019050919050565b60006120e2602583612499565b91506120ed82612a86565b604082019050919050565b6000612105601883612499565b915061211082612ad5565b602082019050919050565b61212481612692565b82525050565b6121338161269c565b82525050565b600061214482611f54565b91506121508284611ee1565b60208201915081905092915050565b600061216a82611fbd565b91506121768285611ee1565b6020820191506121868284611ee1565b6020820191508190509392505050565b60006020820190506121ab6000830184611eb4565b92915050565b60006020820190506121c66000830184611ec3565b92915050565b60006020820190506121e16000830184611ed2565b92915050565b60006060820190506121fc6000830186611ed2565b6122096020830185611eb4565b612216604083018461211b565b949350505050565b600060a0820190506122336000830188611ed2565b6122406020830187611ed2565b61224d6040830186611ed2565b61225a606083018561211b565b6122676080830184611eb4565b9695505050505050565b60006080820190506122866000830187611ed2565b612293602083018661212a565b6122a06040830185611ed2565b6122ad6060830184611ed2565b95945050505050565b600060208201905081810360008301526122d08184611ef8565b905092915050565b600060208201905081810360008301526122f181611f31565b9050919050565b6000602082019050818103600083015261231181611f77565b9050919050565b6000602082019050818103600083015261233181611f9a565b9050919050565b6000602082019050818103600083015261235181611fe0565b9050919050565b6000602082019050818103600083015261237181612003565b9050919050565b6000602082019050818103600083015261239181612026565b9050919050565b600060208201905081810360008301526123b181612049565b9050919050565b600060208201905081810360008301526123d18161206c565b9050919050565b600060208201905081810360008301526123f18161208f565b9050919050565b60006020820190508181036000830152612411816120b2565b9050919050565b60006020820190508181036000830152612431816120d5565b9050919050565b60006020820190508181036000830152612451816120f8565b9050919050565b600060208201905061246d600083018461211b565b92915050565b6000602082019050612488600083018461212a565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006124c082612667565b91506124cb83612667565b9250827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124ff576124fe612718565b5b828201905092915050565b600061251582612692565b915061252083612692565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561255557612554612718565b5b828201905092915050565b600061256b82612692565b915061257683612692565b92508261258657612585612747565b5b828204905092915050565b600061259c82612692565b91506125a783612692565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125e0576125df612718565b5b828202905092915050565b60006125f682612692565b915061260183612692565b92508282101561261457612613612718565b5b828203905092915050565b600061262a82612647565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156126c75780820151818401526020810190506126ac565b838111156126d6576000848401525b50505050565b600060028204905060018216806126f457607f821691505b6020821081141561270857612707612776565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f47726f757044414f3a205472616e73666572204c6f636b656400000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f47726f757044414f3a20436c61696d6564000000000000000000000000000000600082015250565b7f47726f757044414f3a20457863656564206d617820737570706c790000000000600082015250565b7f47726f757044414f3a2041697244726f702046696e6973686564000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f47726f757044414f3a20496e76616c6964207369676e65720000000000000000600082015250565b612b078161261f565b8114612b1257600080fd5b50565b612b1e8161263d565b8114612b2957600080fd5b50565b612b3581612692565b8114612b4057600080fd5b5056fea264697066735822122079bb35e7eb74b40b69ed6b11aa1accf97a6f73b96a263448408660f07cdb932b64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000ce044735bb3527d9d9e0b8add1118186900bb86c000000000000000000000000000000000000000000000000000000000000000847726f757044414f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000347444f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): GroupDAO
Arg [1] : _symbol (string): GDO
Arg [2] : _signer (address): 0xcE044735bB3527d9D9e0B8aDD1118186900bB86C

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000ce044735bb3527d9d9e0b8add1118186900bb86c
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 47726f757044414f000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 47444f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

146:3213:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2204:98:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4427:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3292:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3595:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5060:478;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3141:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;187:56:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5933:212:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1025:57:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;265:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;906:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1443:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;314:48;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3456:133:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;384:58:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;652:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1191:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;844:56;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1088:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2415:102:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;739:67:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6632:405:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3910:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1911:802:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;584:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1341:96;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;448:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4140:149:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1306:29:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2204:98:3;2258:13;2290:5;2283:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2204:98;:::o;4427:166::-;4510:4;4526:39;4535:12;:10;:12::i;:::-;4549:7;4558:6;4526:8;:39::i;:::-;4582:4;4575:11;;4427:166;;;;:::o;3292:106::-;3353:7;3379:12;;3372:19;;3292:106;:::o;3595:112::-;3649:7;3675:9;:18;3685:7;3675:18;;;;;;;;;;;;;;;:25;;;;;;;;;;;;3668:32;;;;3595:112;;;:::o;5060:478::-;5196:4;5212:36;5222:6;5230:9;5241:6;5212:9;:36::i;:::-;5259:24;5286:11;:19;5298:6;5286:19;;;;;;;;;;;;;;;:33;5306:12;:10;:12::i;:::-;5286:33;;;;;;;;;;;;;;;;5259:60;;5357:6;5337:16;:26;;5329:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5442:57;5451:6;5459:12;:10;:12::i;:::-;5492:6;5473:16;:25;5442:8;:57::i;:::-;5527:4;5520:11;;;5060:478;;;;;:::o;3141:91::-;3199:5;3223:2;3216:9;;3141:91;:::o;187:56:4:-;232:10;187:56;;;:::o;5933:212:3:-;6021:4;6037:80;6046:12;:10;:12::i;:::-;6060:7;6106:10;6069:11;:25;6081:12;:10;:12::i;:::-;6069:25;;;;;;;;;;;;;;;:34;6095:7;6069:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;6037:8;:80::i;:::-;6134:4;6127:11;;5933:212;;;;:::o;1025:57:4:-;1081:1;1075:3;232:10;1062;;:16;;;;:::i;:::-;:20;;;;:::i;:::-;1025:57;:::o;265:43::-;301:7;265:43;:::o;906:76::-;940:42;906:76;:::o;1443:32::-;;;:::o;314:48::-;352:10;314:48;:::o;3456:133:3:-;3530:7;3556:9;:18;3566:7;3556:18;;;;;;;;;;;;;;;:26;;;;;;;;;;;;3549:33;;;;3456:133;;;:::o;384:58:4:-;440:2;434:3;232:10;421;;:16;;;;:::i;:::-;:21;;;;:::i;:::-;384:58;:::o;652:81::-;691:42;652:81;:::o;1191:108::-;1081:1;1075:3;232:10;1062;;:16;;;;:::i;:::-;:20;;;;:::i;:::-;899:1;893:3;232:10;880;;:16;;;;:::i;:::-;:20;;;;:::i;:::-;644:2;638:3;232:10;625;;:16;;;;:::i;:::-;:21;;;;:::i;:::-;440:2;434:3;232:10;421;;:16;;;;:::i;:::-;:21;;;;:::i;:::-;1246:27;;;;:::i;:::-;:39;;;;:::i;:::-;:52;;;;:::i;:::-;232:10;1232;;:67;;;;:::i;:::-;1191:108;:::o;844:56::-;899:1;893:3;232:10;880;;:16;;;;:::i;:::-;:20;;;;:::i;:::-;844:56;:::o;1088:77::-;1123:42;1088:77;:::o;2415:102:3:-;2471:13;2503:7;2496:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2415:102;:::o;739:67:4:-;804:2;644;638:3;232:10;625;;:16;;;;:::i;:::-;:21;;;;:::i;:::-;787:19;;;;:::i;:::-;739:67;:::o;6632:405:3:-;6725:4;6741:24;6768:11;:25;6780:12;:10;:12::i;:::-;6768:25;;;;;;;;;;;;;;;:34;6794:7;6768:34;;;;;;;;;;;;;;;;6741:61;;6840:15;6820:16;:35;;6812:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6931:67;6940:12;:10;:12::i;:::-;6954:7;6982:15;6963:16;:34;6931:8;:67::i;:::-;7026:4;7019:11;;;6632:405;;;;:::o;3910:172::-;3996:4;4012:42;4022:12;:10;:12::i;:::-;4036:9;4047:6;4012:9;:42::i;:::-;4071:4;4064:11;;3910:172;;;;:::o;1911:802:4:-;352:10;1992:15;:29;1984:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2063:14;2088:7;2063:33;;;;2106:7;2133:3;2122:7;:14;;2106:31;;2147:13;2178:6;2163:12;;:21;;;;:::i;:::-;2147:37;;232:10;2211;;2202:5;:19;;2194:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:1;2271:18;2278:10;2271:6;:18::i;:::-;:23;2263:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;2326:14;2422:132;2444:20;:18;:20::i;:::-;1387:50;2524:10;2536:6;2492:51;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2482:62;;;;;;2422:21;:132::i;:::-;2353:202;;;;;;;;:::i;:::-;;;;;;;;;;;;;2343:213;;;;;;2326:230;;2604:7;2574:37;;:26;2584:6;2592:1;2595;2598;2574:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;2566:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2665:5;2650:12;:20;;;;2680:25;2686:10;2698:6;2680:5;:25::i;:::-;1911:802;;;;;;;:::o;584:62::-;644:2;638:3;232:10;625;;:16;;;;:::i;:::-;:21;;;;:::i;:::-;584:62;:::o;1341:96::-;1387:50;1341:96;:::o;448:77::-;483:42;448:77;:::o;4140:149:3:-;4229:7;4255:11;:18;4267:5;4255:18;;;;;;;;;;;;;;;:27;4274:7;4255:27;;;;;;;;;;;;;;;;4248:34;;4140:149;;;;:::o;1306:29:4:-;;;;:::o;587:96:0:-;640:7;666:10;659:17;;587:96;:::o;10424:370:3:-;10572:1;10555:19;;:5;:19;;;;10547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10652:1;10633:21;;:7;:21;;;;10625:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10734:6;10704:11;:18;10716:5;10704:18;;;;;;;;;;;;;;;:27;10723:7;10704:27;;;;;;;;;;;;;;;:36;;;;10771:7;10755:32;;10764:5;10755:32;;;10780:6;10755:32;;;;;;:::i;:::-;;;;;;;;10424:370;;;:::o;7511:788::-;7664:1;7646:20;;:6;:20;;;;7638:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7747:1;7726:23;;:9;:23;;;;7718:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7799:24;7816:6;7799:16;:24::i;:::-;7833:47;7854:6;7862:9;7873:6;7833:20;:47::i;:::-;7891:21;7915:9;:17;7925:6;7915:17;;;;;;;;;;;;;;;:25;;;;;;;;;;;;7891:49;;;;7975:6;7958:13;:23;;7950:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;8110:6;8094:13;:22;8058:9;:17;8068:6;8058:17;;;;;;;;;;;;;;;:25;;;:59;;;;;;;;;;;;;;;;;;8177:6;8137:9;:20;8147:9;8137:20;;;;;;;;;;;;;;;:28;;;:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;8217:9;8200:35;;8209:6;8200:35;;;8228:6;8200:35;;;;;;:::i;:::-;;;;;;;;8246:46;8266:6;8274:9;8285:6;8246:19;:46::i;:::-;7511:788;;;;:::o;3143:308:2:-;3196:7;3236:12;3219:29;;3227:4;3219:29;;;:66;;;;;3269:16;3252:13;:33;3219:66;3215:230;;;3308:24;3301:31;;;;3215:230;3370:64;3392:10;3404:12;3418:15;3370:21;:64::i;:::-;3363:71;;3143:308;;:::o;9124:194:1:-;9217:7;9282:15;9299:10;9253:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9243:68;;;;;;9236:75;;9124:194;;;;:::o;8575:505:3:-;8825:9;8866:6;8837:9;:18;8847:7;8837:18;;;;;;;;;;;;;;;:26;;;;;;;;;;;;:35;;;;;;:::i;:::-;8825:47;;8919:1;8882:9;:18;8892:7;8882:18;;;;;;;;;;;;;;;:26;;;:39;;;;;;;;;;;;;;;;;;8959:1;8931:9;:18;8941:7;8931:18;;;;;;;;;;;;;;;:25;;;:29;;;;;;;;;;;;;;;;;;8996:7;8975:37;;8992:1;8975:37;;;9005:6;8975:37;;;;;;:::i;:::-;;;;;;;;8575:505;;;:::o;2719:638:4:-;691:42;2796:26;;:10;:26;;;2793:402;;;2837:14;2854:49;2881:10;;2863:15;:28;;;;:::i;:::-;301:7;2854:8;:49::i;:::-;2837:66;;2930:2;2920:6;:12;2917:268;;2951:21;3005:6;3000:2;:11;;;;:::i;:::-;804:2;644;638:3;232:10;625;;:16;;;;:::i;:::-;:21;;;;:::i;:::-;787:19;;;;:::i;:::-;2975:37;;;;:::i;:::-;2951:61;;3030:20;3069:6;3053:13;:22;;;;:::i;:::-;3030:45;;3128:12;3101:23;691:42;3101:9;:23::i;:::-;:39;;3093:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;2917:268;;;2793:402;;483:42;3207:22;;:10;:22;;;:47;;;;940:42;3233:21;;:10;:21;;;3207:47;3204:147;;;352:10;3281:15;:29;3273:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;3204:147;2719:638;:::o;11378:126:3:-;;;;:::o;12173:120::-;;;;:::o;3457:257:2:-;3597:7;3644:8;3654;3664:11;3677:13;3700:4;3633:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3623:84;;;;;;3616:91;;3457:257;;;;;:::o;962:167:7:-;1020:7;1121:1;1117;:5;;;;:::i;:::-;1110:12;;962:167;;;;:::o;7:139:9:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:139::-;343:5;381:6;368:20;359:29;;397:33;424:5;397:33;:::i;:::-;349:87;;;;:::o;442:262::-;501:6;550:2;538:9;529:7;525:23;521:32;518:2;;;566:1;563;556:12;518:2;609:1;634:53;679:7;670:6;659:9;655:22;634:53;:::i;:::-;624:63;;580:117;508:196;;;;:::o;710:407::-;778:6;786;835:2;823:9;814:7;810:23;806:32;803:2;;;851:1;848;841:12;803:2;894:1;919:53;964:7;955:6;944:9;940:22;919:53;:::i;:::-;909:63;;865:117;1021:2;1047:53;1092:7;1083:6;1072:9;1068:22;1047:53;:::i;:::-;1037:63;;992:118;793:324;;;;;:::o;1123:552::-;1200:6;1208;1216;1265:2;1253:9;1244:7;1240:23;1236:32;1233:2;;;1281:1;1278;1271:12;1233:2;1324:1;1349:53;1394:7;1385:6;1374:9;1370:22;1349:53;:::i;:::-;1339:63;;1295:117;1451:2;1477:53;1522:7;1513:6;1502:9;1498:22;1477:53;:::i;:::-;1467:63;;1422:118;1579:2;1605:53;1650:7;1641:6;1630:9;1626:22;1605:53;:::i;:::-;1595:63;;1550:118;1223:452;;;;;:::o;1681:407::-;1749:6;1757;1806:2;1794:9;1785:7;1781:23;1777:32;1774:2;;;1822:1;1819;1812:12;1774:2;1865:1;1890:53;1935:7;1926:6;1915:9;1911:22;1890:53;:::i;:::-;1880:63;;1836:117;1992:2;2018:53;2063:7;2054:6;2043:9;2039:22;2018:53;:::i;:::-;2008:63;;1963:118;1764:324;;;;;:::o;2094:552::-;2171:6;2179;2187;2236:2;2224:9;2215:7;2211:23;2207:32;2204:2;;;2252:1;2249;2242:12;2204:2;2295:1;2320:53;2365:7;2356:6;2345:9;2341:22;2320:53;:::i;:::-;2310:63;;2266:117;2422:2;2448:53;2493:7;2484:6;2473:9;2469:22;2448:53;:::i;:::-;2438:63;;2393:118;2550:2;2576:53;2621:7;2612:6;2601:9;2597:22;2576:53;:::i;:::-;2566:63;;2521:118;2194:452;;;;;:::o;2652:118::-;2739:24;2757:5;2739:24;:::i;:::-;2734:3;2727:37;2717:53;;:::o;2776:109::-;2857:21;2872:5;2857:21;:::i;:::-;2852:3;2845:34;2835:50;;:::o;2891:118::-;2978:24;2996:5;2978:24;:::i;:::-;2973:3;2966:37;2956:53;;:::o;3015:157::-;3120:45;3140:24;3158:5;3140:24;:::i;:::-;3120:45;:::i;:::-;3115:3;3108:58;3098:74;;:::o;3178:364::-;3266:3;3294:39;3327:5;3294:39;:::i;:::-;3349:71;3413:6;3408:3;3349:71;:::i;:::-;3342:78;;3429:52;3474:6;3469:3;3462:4;3455:5;3451:16;3429:52;:::i;:::-;3506:29;3528:6;3506:29;:::i;:::-;3501:3;3497:39;3490:46;;3270:272;;;;;:::o;3548:366::-;3690:3;3711:67;3775:2;3770:3;3711:67;:::i;:::-;3704:74;;3787:93;3876:3;3787:93;:::i;:::-;3905:2;3900:3;3896:12;3889:19;;3694:220;;;:::o;3920:402::-;4080:3;4101:85;4183:2;4178:3;4101:85;:::i;:::-;4094:92;;4195:93;4284:3;4195:93;:::i;:::-;4313:2;4308:3;4304:12;4297:19;;4084:238;;;:::o;4328:366::-;4470:3;4491:67;4555:2;4550:3;4491:67;:::i;:::-;4484:74;;4567:93;4656:3;4567:93;:::i;:::-;4685:2;4680:3;4676:12;4669:19;;4474:220;;;:::o;4700:366::-;4842:3;4863:67;4927:2;4922:3;4863:67;:::i;:::-;4856:74;;4939:93;5028:3;4939:93;:::i;:::-;5057:2;5052:3;5048:12;5041:19;;4846:220;;;:::o;5072:400::-;5232:3;5253:84;5335:1;5330:3;5253:84;:::i;:::-;5246:91;;5346:93;5435:3;5346:93;:::i;:::-;5464:1;5459:3;5455:11;5448:18;;5236:236;;;:::o;5478:366::-;5620:3;5641:67;5705:2;5700:3;5641:67;:::i;:::-;5634:74;;5717:93;5806:3;5717:93;:::i;:::-;5835:2;5830:3;5826:12;5819:19;;5624:220;;;:::o;5850:366::-;5992:3;6013:67;6077:2;6072:3;6013:67;:::i;:::-;6006:74;;6089:93;6178:3;6089:93;:::i;:::-;6207:2;6202:3;6198:12;6191:19;;5996:220;;;:::o;6222:366::-;6364:3;6385:67;6449:2;6444:3;6385:67;:::i;:::-;6378:74;;6461:93;6550:3;6461:93;:::i;:::-;6579:2;6574:3;6570:12;6563:19;;6368:220;;;:::o;6594:366::-;6736:3;6757:67;6821:2;6816:3;6757:67;:::i;:::-;6750:74;;6833:93;6922:3;6833:93;:::i;:::-;6951:2;6946:3;6942:12;6935:19;;6740:220;;;:::o;6966:366::-;7108:3;7129:67;7193:2;7188:3;7129:67;:::i;:::-;7122:74;;7205:93;7294:3;7205:93;:::i;:::-;7323:2;7318:3;7314:12;7307:19;;7112:220;;;:::o;7338:366::-;7480:3;7501:67;7565:2;7560:3;7501:67;:::i;:::-;7494:74;;7577:93;7666:3;7577:93;:::i;:::-;7695:2;7690:3;7686:12;7679:19;;7484:220;;;:::o;7710:366::-;7852:3;7873:67;7937:2;7932:3;7873:67;:::i;:::-;7866:74;;7949:93;8038:3;7949:93;:::i;:::-;8067:2;8062:3;8058:12;8051:19;;7856:220;;;:::o;8082:366::-;8224:3;8245:67;8309:2;8304:3;8245:67;:::i;:::-;8238:74;;8321:93;8410:3;8321:93;:::i;:::-;8439:2;8434:3;8430:12;8423:19;;8228:220;;;:::o;8454:366::-;8596:3;8617:67;8681:2;8676:3;8617:67;:::i;:::-;8610:74;;8693:93;8782:3;8693:93;:::i;:::-;8811:2;8806:3;8802:12;8795:19;;8600:220;;;:::o;8826:118::-;8913:24;8931:5;8913:24;:::i;:::-;8908:3;8901:37;8891:53;;:::o;8950:112::-;9033:22;9049:5;9033:22;:::i;:::-;9028:3;9021:35;9011:51;;:::o;9068:522::-;9281:3;9303:148;9447:3;9303:148;:::i;:::-;9296:155;;9461:75;9532:3;9523:6;9461:75;:::i;:::-;9561:2;9556:3;9552:12;9545:19;;9581:3;9574:10;;9285:305;;;;:::o;9596:663::-;9837:3;9859:148;10003:3;9859:148;:::i;:::-;9852:155;;10017:75;10088:3;10079:6;10017:75;:::i;:::-;10117:2;10112:3;10108:12;10101:19;;10130:75;10201:3;10192:6;10130:75;:::i;:::-;10230:2;10225:3;10221:12;10214:19;;10250:3;10243:10;;9841:418;;;;;:::o;10265:222::-;10358:4;10396:2;10385:9;10381:18;10373:26;;10409:71;10477:1;10466:9;10462:17;10453:6;10409:71;:::i;:::-;10363:124;;;;:::o;10493:210::-;10580:4;10618:2;10607:9;10603:18;10595:26;;10631:65;10693:1;10682:9;10678:17;10669:6;10631:65;:::i;:::-;10585:118;;;;:::o;10709:222::-;10802:4;10840:2;10829:9;10825:18;10817:26;;10853:71;10921:1;10910:9;10906:17;10897:6;10853:71;:::i;:::-;10807:124;;;;:::o;10937:442::-;11086:4;11124:2;11113:9;11109:18;11101:26;;11137:71;11205:1;11194:9;11190:17;11181:6;11137:71;:::i;:::-;11218:72;11286:2;11275:9;11271:18;11262:6;11218:72;:::i;:::-;11300;11368:2;11357:9;11353:18;11344:6;11300:72;:::i;:::-;11091:288;;;;;;:::o;11385:664::-;11590:4;11628:3;11617:9;11613:19;11605:27;;11642:71;11710:1;11699:9;11695:17;11686:6;11642:71;:::i;:::-;11723:72;11791:2;11780:9;11776:18;11767:6;11723:72;:::i;:::-;11805;11873:2;11862:9;11858:18;11849:6;11805:72;:::i;:::-;11887;11955:2;11944:9;11940:18;11931:6;11887:72;:::i;:::-;11969:73;12037:3;12026:9;12022:19;12013:6;11969:73;:::i;:::-;11595:454;;;;;;;;:::o;12055:545::-;12228:4;12266:3;12255:9;12251:19;12243:27;;12280:71;12348:1;12337:9;12333:17;12324:6;12280:71;:::i;:::-;12361:68;12425:2;12414:9;12410:18;12401:6;12361:68;:::i;:::-;12439:72;12507:2;12496:9;12492:18;12483:6;12439:72;:::i;:::-;12521;12589:2;12578:9;12574:18;12565:6;12521:72;:::i;:::-;12233:367;;;;;;;:::o;12606:313::-;12719:4;12757:2;12746:9;12742:18;12734:26;;12806:9;12800:4;12796:20;12792:1;12781:9;12777:17;12770:47;12834:78;12907:4;12898:6;12834:78;:::i;:::-;12826:86;;12724:195;;;;:::o;12925:419::-;13091:4;13129:2;13118:9;13114:18;13106:26;;13178:9;13172:4;13168:20;13164:1;13153:9;13149:17;13142:47;13206:131;13332:4;13206:131;:::i;:::-;13198:139;;13096:248;;;:::o;13350:419::-;13516:4;13554:2;13543:9;13539:18;13531:26;;13603:9;13597:4;13593:20;13589:1;13578:9;13574:17;13567:47;13631:131;13757:4;13631:131;:::i;:::-;13623:139;;13521:248;;;:::o;13775:419::-;13941:4;13979:2;13968:9;13964:18;13956:26;;14028:9;14022:4;14018:20;14014:1;14003:9;13999:17;13992:47;14056:131;14182:4;14056:131;:::i;:::-;14048:139;;13946:248;;;:::o;14200:419::-;14366:4;14404:2;14393:9;14389:18;14381:26;;14453:9;14447:4;14443:20;14439:1;14428:9;14424:17;14417:47;14481:131;14607:4;14481:131;:::i;:::-;14473:139;;14371:248;;;:::o;14625:419::-;14791:4;14829:2;14818:9;14814:18;14806:26;;14878:9;14872:4;14868:20;14864:1;14853:9;14849:17;14842:47;14906:131;15032:4;14906:131;:::i;:::-;14898:139;;14796:248;;;:::o;15050:419::-;15216:4;15254:2;15243:9;15239:18;15231:26;;15303:9;15297:4;15293:20;15289:1;15278:9;15274:17;15267:47;15331:131;15457:4;15331:131;:::i;:::-;15323:139;;15221:248;;;:::o;15475:419::-;15641:4;15679:2;15668:9;15664:18;15656:26;;15728:9;15722:4;15718:20;15714:1;15703:9;15699:17;15692:47;15756:131;15882:4;15756:131;:::i;:::-;15748:139;;15646:248;;;:::o;15900:419::-;16066:4;16104:2;16093:9;16089:18;16081:26;;16153:9;16147:4;16143:20;16139:1;16128:9;16124:17;16117:47;16181:131;16307:4;16181:131;:::i;:::-;16173:139;;16071:248;;;:::o;16325:419::-;16491:4;16529:2;16518:9;16514:18;16506:26;;16578:9;16572:4;16568:20;16564:1;16553:9;16549:17;16542:47;16606:131;16732:4;16606:131;:::i;:::-;16598:139;;16496:248;;;:::o;16750:419::-;16916:4;16954:2;16943:9;16939:18;16931:26;;17003:9;16997:4;16993:20;16989:1;16978:9;16974:17;16967:47;17031:131;17157:4;17031:131;:::i;:::-;17023:139;;16921:248;;;:::o;17175:419::-;17341:4;17379:2;17368:9;17364:18;17356:26;;17428:9;17422:4;17418:20;17414:1;17403:9;17399:17;17392:47;17456:131;17582:4;17456:131;:::i;:::-;17448:139;;17346:248;;;:::o;17600:419::-;17766:4;17804:2;17793:9;17789:18;17781:26;;17853:9;17847:4;17843:20;17839:1;17828:9;17824:17;17817:47;17881:131;18007:4;17881:131;:::i;:::-;17873:139;;17771:248;;;:::o;18025:222::-;18118:4;18156:2;18145:9;18141:18;18133:26;;18169:71;18237:1;18226:9;18222:17;18213:6;18169:71;:::i;:::-;18123:124;;;;:::o;18253:214::-;18342:4;18380:2;18369:9;18365:18;18357:26;;18393:67;18457:1;18446:9;18442:17;18433:6;18393:67;:::i;:::-;18347:120;;;;:::o;18473:99::-;18525:6;18559:5;18553:12;18543:22;;18532:40;;;:::o;18578:169::-;18662:11;18696:6;18691:3;18684:19;18736:4;18731:3;18727:14;18712:29;;18674:73;;;;:::o;18753:148::-;18855:11;18892:3;18877:18;;18867:34;;;;:::o;18907:303::-;18947:3;18966:20;18984:1;18966:20;:::i;:::-;18961:25;;19000:20;19018:1;19000:20;:::i;:::-;18995:25;;19152:1;19086:64;19082:72;19079:1;19076:79;19073:2;;;19158:18;;:::i;:::-;19073:2;19202:1;19199;19195:9;19188:16;;18951:259;;;;:::o;19216:305::-;19256:3;19275:20;19293:1;19275:20;:::i;:::-;19270:25;;19309:20;19327:1;19309:20;:::i;:::-;19304:25;;19463:1;19395:66;19391:74;19388:1;19385:81;19382:2;;;19469:18;;:::i;:::-;19382:2;19513:1;19510;19506:9;19499:16;;19260:261;;;;:::o;19527:185::-;19567:1;19584:20;19602:1;19584:20;:::i;:::-;19579:25;;19618:20;19636:1;19618:20;:::i;:::-;19613:25;;19657:1;19647:2;;19662:18;;:::i;:::-;19647:2;19704:1;19701;19697:9;19692:14;;19569:143;;;;:::o;19718:348::-;19758:7;19781:20;19799:1;19781:20;:::i;:::-;19776:25;;19815:20;19833:1;19815:20;:::i;:::-;19810:25;;20003:1;19935:66;19931:74;19928:1;19925:81;19920:1;19913:9;19906:17;19902:105;19899:2;;;20010:18;;:::i;:::-;19899:2;20058:1;20055;20051:9;20040:20;;19766:300;;;;:::o;20072:191::-;20112:4;20132:20;20150:1;20132:20;:::i;:::-;20127:25;;20166:20;20184:1;20166:20;:::i;:::-;20161:25;;20205:1;20202;20199:8;20196:2;;;20210:18;;:::i;:::-;20196:2;20255:1;20252;20248:9;20240:17;;20117:146;;;;:::o;20269:96::-;20306:7;20335:24;20353:5;20335:24;:::i;:::-;20324:35;;20314:51;;;:::o;20371:90::-;20405:7;20448:5;20441:13;20434:21;20423:32;;20413:48;;;:::o;20467:77::-;20504:7;20533:5;20522:16;;20512:32;;;:::o;20550:126::-;20587:7;20627:42;20620:5;20616:54;20605:65;;20595:81;;;:::o;20682:148::-;20719:7;20759:64;20752:5;20748:76;20737:87;;20727:103;;;:::o;20836:77::-;20873:7;20902:5;20891:16;;20881:32;;;:::o;20919:86::-;20954:7;20994:4;20987:5;20983:16;20972:27;;20962:43;;;:::o;21011:307::-;21079:1;21089:113;21103:6;21100:1;21097:13;21089:113;;;21188:1;21183:3;21179:11;21173:18;21169:1;21164:3;21160:11;21153:39;21125:2;21122:1;21118:10;21113:15;;21089:113;;;21220:6;21217:1;21214:13;21211:2;;;21300:1;21291:6;21286:3;21282:16;21275:27;21211:2;21060:258;;;;:::o;21324:320::-;21368:6;21405:1;21399:4;21395:12;21385:22;;21452:1;21446:4;21442:12;21473:18;21463:2;;21529:4;21521:6;21517:17;21507:27;;21463:2;21591;21583:6;21580:14;21560:18;21557:38;21554:2;;;21610:18;;:::i;:::-;21554:2;21375:269;;;;:::o;21650:79::-;21689:7;21718:5;21707:16;;21697:32;;;:::o;21735:180::-;21783:77;21780:1;21773:88;21880:4;21877:1;21870:15;21904:4;21901:1;21894:15;21921:180;21969:77;21966:1;21959:88;22066:4;22063:1;22056:15;22090:4;22087:1;22080:15;22107:180;22155:77;22152:1;22145:88;22252:4;22249:1;22242:15;22276:4;22273:1;22266:15;22293:102;22334:6;22385:2;22381:7;22376:2;22369:5;22365:14;22361:28;22351:38;;22341:54;;;:::o;22401:222::-;22541:34;22537:1;22529:6;22525:14;22518:58;22610:5;22605:2;22597:6;22593:15;22586:30;22507:116;:::o;22629:214::-;22769:66;22765:1;22757:6;22753:14;22746:90;22735:108;:::o;22849:175::-;22989:27;22985:1;22977:6;22973:14;22966:51;22955:69;:::o;23030:221::-;23170:34;23166:1;23158:6;23154:14;23147:58;23239:4;23234:2;23226:6;23222:15;23215:29;23136:115;:::o;23257:214::-;23397:66;23393:1;23385:6;23381:14;23374:90;23363:108;:::o;23477:225::-;23617:34;23613:1;23605:6;23601:14;23594:58;23686:8;23681:2;23673:6;23669:15;23662:33;23583:119;:::o;23708:167::-;23848:19;23844:1;23836:6;23832:14;23825:43;23814:61;:::o;23881:177::-;24021:29;24017:1;24009:6;24005:14;23998:53;23987:71;:::o;24064:176::-;24204:28;24200:1;24192:6;24188:14;24181:52;24170:70;:::o;24246:227::-;24386:34;24382:1;24374:6;24370:14;24363:58;24455:10;24450:2;24442:6;24438:15;24431:35;24352:121;:::o;24479:224::-;24619:34;24615:1;24607:6;24603:14;24596:58;24688:7;24683:2;24675:6;24671:15;24664:32;24585:118;:::o;24709:223::-;24849:34;24845:1;24837:6;24833:14;24826:58;24918:6;24913:2;24905:6;24901:15;24894:31;24815:117;:::o;24938:224::-;25078:34;25074:1;25066:6;25062:14;25055:58;25147:7;25142:2;25134:6;25130:15;25123:32;25044:118;:::o;25168:174::-;25308:26;25304:1;25296:6;25292:14;25285:50;25274:68;:::o;25348:122::-;25421:24;25439:5;25421:24;:::i;:::-;25414:5;25411:35;25401:2;;25460:1;25457;25450:12;25401:2;25391:79;:::o;25476:122::-;25549:24;25567:5;25549:24;:::i;:::-;25542:5;25539:35;25529:2;;25588:1;25585;25578:12;25529:2;25519:79;:::o;25604:122::-;25677:24;25695:5;25677:24;:::i;:::-;25670:5;25667:35;25657:2;;25716:1;25713;25706:12;25657:2;25647:79;:::o

Swarm Source

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