ETH Price: $2,274.44 (+0.14%)

Token

DisDAO (DISD)
 

Overview

Max Total Supply

99,999,962,299,989.000000003838899999 DISD

Holders

137

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
lionartist.eth
Balance
2,193,900,000 DISD

Value
$0.00
0x9C98F3a430163C1D3F07C33479719D0d1cC96478
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DisDAO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

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

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

    // 30 days
    uint256 public constant LOCK_TIME = 2592000;
    uint256 public constant END_AIRDROP = 1646092800;

    // for DAO
    uint256 public constant AMOUNT_DAO = MAX_SUPPLY / 100 * 25;
    address public constant ADDR_DAO = 0xE450fe0f9DeAad5B1cB8fC691d95Ce1f723e0ced;

    // for team, lock 2.5 year, unlock 1/30 per month
    uint256 public constant AMOUNT_STAKING = MAX_SUPPLY / 100 * 10;
    address public constant ADDR_STAKING = 0x1fF3A2Bf533ABd1F863B5aE5f601554068A5818F;
    uint256 public constant AMOUNT_UNLOCKED_MONTH = AMOUNT_STAKING / 30;

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

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

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

    uint256 public START_TIME = 0;
    string constant public APPROVE_MSG = "approve(address account, uint256 amount)";
    address public immutable signer;

    constructor(string memory _name, string memory _symbol, address _signer) ERC20(_name, _symbol) EIP712("DisDAO", "1.0") {
        _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;
        signer = _signer;
        START_TIME = block.timestamp;
    }


    function claim(uint256 amount, uint8 v, bytes32 r, bytes32 s) external {
        require(block.timestamp < END_AIRDROP, "AirDrop Expired");
        uint256 total = _totalSupply + amount;
        require(total <= MAX_SUPPLY, "Exceed maximum supply");
        require(minted(msg.sender) == 0, "Already Claimed");
        bytes32 digest = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32",
                                   keccak256(abi.encode(APPROVE_MSG, msg.sender, amount))));
        require(ecrecover(digest, v, r, s) == signer, "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 * (30 - passed);
                uint256 least_amount = locked_amount + amount;
                require(balanceOf(ADDR_STAKING) >= least_amount, "Transfer Locked");
            }
        }
        if(msg.sender == ADDR_DAO || msg.sender == ADDR_LP){
                require(block.timestamp > END_AIRDROP, "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 3 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 4 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 5 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":"APPROVE_MSG","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"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":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]

61016060405260006005553480156200001757600080fd5b50604051620036883803806200368883398181016040528101906200003d919062000878565b6040518060400160405280600681526020017f44697344414f00000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f312e30000000000000000000000000000000000000000000000000000000000081525084848160039080519060200190620000c392919062000733565b508060049080519060200190620000dc92919062000733565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a0818152505062000148818484620004fa60201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b8152505080610120818152505050505050506200020573e450fe0f9deaad5b1cb8fc691d95ce1f723e0ced601960646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620001ed919062000a7b565b620001f9919062000ab3565b6200053660201b60201c565b62000276731ff3a2bf533abd1f863b5ae5f601554068a5818f600a60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166200025e919062000a7b565b6200026a919062000ab3565b6200053660201b60201c565b620002e7735bc4e9f6feee3d381803ad70849f5928262d3c66600e60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620002cf919062000a7b565b620002db919062000ab3565b6200053660201b60201c565b6200035873b1a77965b8dae65e21001e528043a21607265be1600160646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1662000340919062000a7b565b6200034c919062000ab3565b6200053660201b60201c565b600160646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1662000398919062000a7b565b620003a4919062000ab3565b600e60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620003e4919062000a7b565b620003f0919062000ab3565b600a60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1662000430919062000a7b565b6200043c919062000ab3565b601960646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166200047c919062000a7b565b62000488919062000ab3565b62000494919062000a1e565b620004a0919062000a1e565b620004ac919062000a1e565b6002819055508073ffffffffffffffffffffffffffffffffffffffff166101408173ffffffffffffffffffffffffffffffffffffffff1660601b815250504260058190555050505062000cf9565b600083838346306040516020016200051795949392919062000945565b6040516020818303038152906040528051906020012090509392505050565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620005d3919062000a1e565b9050806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555060016000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051620007269190620009a2565b60405180910390a3505050565b828054620007419062000b92565b90600052602060002090601f016020900481019282620007655760008555620007b1565b82601f106200078057805160ff1916838001178555620007b1565b82800160010185558215620007b1579182015b82811115620007b057825182559160200191906001019062000793565b5b509050620007c09190620007c4565b5090565b5b80821115620007df576000816000905550600101620007c5565b5090565b6000620007fa620007f484620009e8565b620009bf565b90508281526020810184848401111562000819576200081862000cbf565b5b6200082684828562000b5c565b509392505050565b6000815190506200083f8162000cdf565b92915050565b600082601f8301126200085d576200085c62000cba565b5b81516200086f848260208601620007e3565b91505092915050565b60008060006060848603121562000894576200089362000cc9565b5b600084015167ffffffffffffffff811115620008b557620008b462000cc4565b5b620008c38682870162000845565b935050602084015167ffffffffffffffff811115620008e757620008e662000cc4565b5b620008f58682870162000845565b925050604062000908868287016200082e565b9150509250925092565b6200091d8162000b14565b82525050565b6200092e8162000b28565b82525050565b6200093f8162000b52565b82525050565b600060a0820190506200095c600083018862000923565b6200096b602083018762000923565b6200097a604083018662000923565b62000989606083018562000934565b62000998608083018462000912565b9695505050505050565b6000602082019050620009b9600083018462000934565b92915050565b6000620009cb620009de565b9050620009d9828262000bc8565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a065762000a0562000c8b565b5b62000a118262000cce565b9050602081019050919050565b600062000a2b8262000b52565b915062000a388362000b52565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a705762000a6f62000bfe565b5b828201905092915050565b600062000a888262000b52565b915062000a958362000b52565b92508262000aa85762000aa762000c2d565b5b828204905092915050565b600062000ac08262000b52565b915062000acd8362000b52565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b095762000b0862000bfe565b5b828202905092915050565b600062000b218262000b32565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b7c57808201518184015260208101905062000b5f565b8381111562000b8c576000848401525b50505050565b6000600282049050600182168062000bab57607f821691505b6020821081141562000bc25762000bc162000c5c565b5b50919050565b62000bd38262000cce565b810181811067ffffffffffffffff8211171562000bf55762000bf462000c8b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000cea8162000b14565b811462000cf657600080fd5b50565b60805160a05160c05160601c60e05161010051610120516101405160601c61293962000d4f600039600081816107fc015261095601526000505060005050600050506000505060005050600050506129396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a082311161010457806395d89b41116100a2578063b43bbd1111610071578063b43bbd111461053e578063da394aec1461055c578063dd62ed3e1461057a578063ddaa26ad146105aa576101cf565b806395d89b41146104a25780639aafa7a4146104c0578063a457c2d7146104de578063a9059cbb1461050e576101cf565b806380ef0160116100de57806380ef01601461042a57806382a384001461044857806386fdbdc11461046657806387d45de714610484576101cf565b806370a08231146103be578063720248de146103ee57806375df1d7c1461040c576101cf565b8063313ce567116101715780633f1eaf0f1161014b5780633f1eaf0f14610346578063413d9c3a1461036457806346de26731461038257806357b3a501146103a0576101cf565b8063313ce567146102da57806332cb6b0c146102f85780633950935114610316576101cf565b806318160ddd116101ad57806318160ddd1461023e5780631e7269c51461025c578063238ac9331461028c57806323b872dd146102aa576101cf565b806306fdde03146101d4578063095ea7b3146101f25780631278e00a14610222575b600080fd5b6101dc6105c8565b6040516101e9919061201d565b60405180910390f35b61020c60048036038101906102079190611c73565b61065a565b6040516102199190611fbd565b60405180910390f35b61023c60048036038101906102379190611cb3565b610678565b005b6102466108ef565b60405161025391906121fd565b60405180910390f35b61027660048036038101906102719190611bb3565b6108f9565b60405161028391906121fd565b60405180910390f35b610294610954565b6040516102a19190611fa2565b60405180910390f35b6102c460048036038101906102bf9190611c20565b610978565b6040516102d19190611fbd565b60405180910390f35b6102e2610a70565b6040516102ef9190612218565b60405180910390f35b610300610a79565b60405161030d91906121fd565b60405180910390f35b610330600480360381019061032b9190611c73565b610aac565b60405161033d9190611fbd565b60405180910390f35b61034e610b58565b60405161035b91906121fd565b60405180910390f35b61036c610ba3565b60405161037991906121fd565b60405180910390f35b61038a610baa565b6040516103979190611fa2565b60405180910390f35b6103a8610bc2565b6040516103b591906121fd565b60405180910390f35b6103d860048036038101906103d39190611bb3565b610bca565b6040516103e591906121fd565b60405180910390f35b6103f6610c61565b60405161040391906121fd565b60405180910390f35b610414610cac565b6040516104219190611fa2565b60405180910390f35b610432610cc4565b60405161043f91906121fd565b60405180910390f35b610450610e3f565b60405161045d919061201d565b60405180910390f35b61046e610e5b565b60405161047b91906121fd565b60405180910390f35b61048c610ea6565b6040516104999190611fa2565b60405180910390f35b6104aa610ebe565b6040516104b7919061201d565b60405180910390f35b6104c8610f50565b6040516104d591906121fd565b60405180910390f35b6104f860048036038101906104f39190611c73565b610fa7565b6040516105059190611fbd565b60405180910390f35b61052860048036038101906105239190611c73565b611092565b6040516105359190611fbd565b60405180910390f35b6105466110b0565b60405161055391906121fd565b60405180910390f35b6105646110fb565b6040516105719190611fa2565b60405180910390f35b610594600480360381019061058f9190611be0565b611113565b6040516105a191906121fd565b60405180910390f35b6105b261119a565b6040516105bf91906121fd565b60405180910390f35b6060600380546105d790612481565b80601f016020809104026020016040519081016040528092919081815260200182805461060390612481565b80156106505780601f1061062557610100808354040283529160200191610650565b820191906000526020600020905b81548152906001019060200180831161063357829003601f168201915b5050505050905090565b600061066e6106676111a0565b84846111a8565b6001905092915050565b63621d620042106106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b59061215d565b60405180910390fd5b6000846002546106ce91906122af565b90506d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16811115610742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610739906120dd565b60405180910390fd5b600061074d336108f9565b1461078d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610784906121bd565b60405180910390fd5b60006040518060600160405280602881526020016128dc6028913933876040516020016107bc9392919061203f565b604051602081830303815290604052805190602001206040516020016107e29190611f7c565b6040516020818303038152906040528051906020012090507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16600182878787604051600081526020016040526040516108549493929190611fd8565b6020604051602081039080840390855afa158015610876573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16146108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd9061211d565b60405180910390fd5b816002819055506108e73387611373565b505050505050565b6000600254905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff1660ff169050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061098584848461156c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006109d06111a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a479061213d565b60405180910390fd5b610a6485610a5c6111a0565b8584036111a8565b60019150509392505050565b60006012905090565b6d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681565b6000610b4e610ab96111a0565b848460016000610ac76111a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b4991906122af565b6111a8565b6001905092915050565b600160646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610b969190612305565b610ba09190612336565b81565b62278d0081565b735bc4e9f6feee3d381803ad70849f5928262d3c6681565b63621d620081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050919050565b601960646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610c9f9190612305565b610ca99190612336565b81565b731ff3a2bf533abd1f863b5ae5f601554068a5818f81565b600160646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610d029190612305565b610d0c9190612336565b600e60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610d4a9190612305565b610d549190612336565b600a60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610d929190612305565b610d9c9190612336565b601960646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610dda9190612305565b610de49190612336565b610dee91906122af565b610df891906122af565b610e0291906122af565b6d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610e3c9190612390565b81565b6040518060600160405280602881526020016128dc6028913981565b600e60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610e999190612305565b610ea39190612336565b81565b73b1a77965b8dae65e21001e528043a21607265be181565b606060048054610ecd90612481565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef990612481565b8015610f465780601f10610f1b57610100808354040283529160200191610f46565b820191906000526020600020905b815481529060010190602001808311610f2957829003601f168201915b5050505050905090565b601e600a60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610f909190612305565b610f9a9190612336565b610fa49190612305565b81565b60008060016000610fb66111a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a906121dd565b60405180910390fd5b61108761107e6111a0565b858584036111a8565b600191505092915050565b60006110a661109f6111a0565b848461156c565b6001905092915050565b600a60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166110ee9190612305565b6110f89190612336565b81565b73e450fe0f9deaad5b1cb8fc691d95ce1f723e0ced81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60055481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f9061219d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f9061209d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161136691906121fd565b60405180910390a3505050565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661140e91906122af565b9050806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555060016000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161155f91906121fd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d39061217d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116439061207d565b60405180910390fd5b61165581611912565b611660838383611b3f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16905081811015611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c906120bd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160018282829054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611848919061225a565b92506101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118f991906121fd565b60405180910390a361190c848484611b44565b50505050565b731ff3a2bf533abd1f863b5ae5f601554068a5818f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611a635760006119766005544261196d9190612390565b62278d00611b49565b9050603c8111611a6157600081601e61198f9190612390565b601e600a60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166119cf9190612305565b6119d99190612336565b6119e39190612305565b6119ed9190612336565b9050600083826119fd91906122af565b905080611a1d731ff3a2bf533abd1f863b5ae5f601554068a5818f610bca565b1015611a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a55906120fd565b60405180910390fd5b50505b505b73e450fe0f9deaad5b1cb8fc691d95ce1f723e0ced73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611af05750735bc4e9f6feee3d381803ad70849f5928262d3c6673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b15611b3c5763621d62004211611b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b32906120fd565b60405180910390fd5b5b50565b505050565b505050565b60008183611b579190612305565b905092915050565b600081359050611b6e8161287f565b92915050565b600081359050611b8381612896565b92915050565b600081359050611b98816128ad565b92915050565b600081359050611bad816128c4565b92915050565b600060208284031215611bc957611bc861254a565b5b6000611bd784828501611b5f565b91505092915050565b60008060408385031215611bf757611bf661254a565b5b6000611c0585828601611b5f565b9250506020611c1685828601611b5f565b9150509250929050565b600080600060608486031215611c3957611c3861254a565b5b6000611c4786828701611b5f565b9350506020611c5886828701611b5f565b9250506040611c6986828701611b89565b9150509250925092565b60008060408385031215611c8a57611c8961254a565b5b6000611c9885828601611b5f565b9250506020611ca985828601611b89565b9150509250929050565b60008060008060808587031215611ccd57611ccc61254a565b5b6000611cdb87828801611b89565b9450506020611cec87828801611b9e565b9350506040611cfd87828801611b74565b9250506060611d0e87828801611b74565b91505092959194509250565b611d23816123c4565b82525050565b611d32816123d6565b82525050565b611d41816123e2565b82525050565b611d58611d53826123e2565b6124b3565b82525050565b6000611d6982612233565b611d73818561223e565b9350611d8381856020860161244e565b611d8c8161254f565b840191505092915050565b6000611da460238361223e565b9150611daf82612560565b604082019050919050565b6000611dc7601c8361224f565b9150611dd2826125af565b601c82019050919050565b6000611dea60228361223e565b9150611df5826125d8565b604082019050919050565b6000611e0d60268361223e565b9150611e1882612627565b604082019050919050565b6000611e3060158361223e565b9150611e3b82612676565b602082019050919050565b6000611e53600f8361223e565b9150611e5e8261269f565b602082019050919050565b6000611e76600e8361223e565b9150611e81826126c8565b602082019050919050565b6000611e9960288361223e565b9150611ea4826126f1565b604082019050919050565b6000611ebc600f8361223e565b9150611ec782612740565b602082019050919050565b6000611edf60258361223e565b9150611eea82612769565b604082019050919050565b6000611f0260248361223e565b9150611f0d826127b8565b604082019050919050565b6000611f25600f8361223e565b9150611f3082612807565b602082019050919050565b6000611f4860258361223e565b9150611f5382612830565b604082019050919050565b611f6781612437565b82525050565b611f7681612441565b82525050565b6000611f8782611dba565b9150611f938284611d47565b60208201915081905092915050565b6000602082019050611fb76000830184611d1a565b92915050565b6000602082019050611fd26000830184611d29565b92915050565b6000608082019050611fed6000830187611d38565b611ffa6020830186611f6d565b6120076040830185611d38565b6120146060830184611d38565b95945050505050565b600060208201905081810360008301526120378184611d5e565b905092915050565b600060608201905081810360008301526120598186611d5e565b90506120686020830185611d1a565b6120756040830184611f5e565b949350505050565b6000602082019050818103600083015261209681611d97565b9050919050565b600060208201905081810360008301526120b681611ddd565b9050919050565b600060208201905081810360008301526120d681611e00565b9050919050565b600060208201905081810360008301526120f681611e23565b9050919050565b6000602082019050818103600083015261211681611e46565b9050919050565b6000602082019050818103600083015261213681611e69565b9050919050565b6000602082019050818103600083015261215681611e8c565b9050919050565b6000602082019050818103600083015261217681611eaf565b9050919050565b6000602082019050818103600083015261219681611ed2565b9050919050565b600060208201905081810360008301526121b681611ef5565b9050919050565b600060208201905081810360008301526121d681611f18565b9050919050565b600060208201905081810360008301526121f681611f3b565b9050919050565b60006020820190506122126000830184611f5e565b92915050565b600060208201905061222d6000830184611f6d565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006122658261240c565b91506122708361240c565b9250827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122a4576122a36124bd565b5b828201905092915050565b60006122ba82612437565b91506122c583612437565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122fa576122f96124bd565b5b828201905092915050565b600061231082612437565b915061231b83612437565b92508261232b5761232a6124ec565b5b828204905092915050565b600061234182612437565b915061234c83612437565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612385576123846124bd565b5b828202905092915050565b600061239b82612437565b91506123a683612437565b9250828210156123b9576123b86124bd565b5b828203905092915050565b60006123cf826123ec565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561246c578082015181840152602081019050612451565b8381111561247b576000848401525b50505050565b6000600282049050600182168061249957607f821691505b602082108114156124ad576124ac61251b565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f457863656564206d6178696d756d20737570706c790000000000000000000000600082015250565b7f5472616e73666572204c6f636b65640000000000000000000000000000000000600082015250565b7f496e76616c6964207369676e6572000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f41697244726f7020457870697265640000000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416c726561647920436c61696d65640000000000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b612888816123c4565b811461289357600080fd5b50565b61289f816123e2565b81146128aa57600080fd5b50565b6128b681612437565b81146128c157600080fd5b50565b6128cd81612441565b81146128d857600080fd5b5056fe617070726f76652861646472657373206163636f756e742c2075696e7432353620616d6f756e7429a2646970667358221220cfbe7c8652dc0dcde98e2aebb8c6a42d5a86656f30be796585f300e8f21078e664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000384706511fa6b9d67696d8bcacf39f6f41b89b85000000000000000000000000000000000000000000000000000000000000000644697344414f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044449534400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a082311161010457806395d89b41116100a2578063b43bbd1111610071578063b43bbd111461053e578063da394aec1461055c578063dd62ed3e1461057a578063ddaa26ad146105aa576101cf565b806395d89b41146104a25780639aafa7a4146104c0578063a457c2d7146104de578063a9059cbb1461050e576101cf565b806380ef0160116100de57806380ef01601461042a57806382a384001461044857806386fdbdc11461046657806387d45de714610484576101cf565b806370a08231146103be578063720248de146103ee57806375df1d7c1461040c576101cf565b8063313ce567116101715780633f1eaf0f1161014b5780633f1eaf0f14610346578063413d9c3a1461036457806346de26731461038257806357b3a501146103a0576101cf565b8063313ce567146102da57806332cb6b0c146102f85780633950935114610316576101cf565b806318160ddd116101ad57806318160ddd1461023e5780631e7269c51461025c578063238ac9331461028c57806323b872dd146102aa576101cf565b806306fdde03146101d4578063095ea7b3146101f25780631278e00a14610222575b600080fd5b6101dc6105c8565b6040516101e9919061201d565b60405180910390f35b61020c60048036038101906102079190611c73565b61065a565b6040516102199190611fbd565b60405180910390f35b61023c60048036038101906102379190611cb3565b610678565b005b6102466108ef565b60405161025391906121fd565b60405180910390f35b61027660048036038101906102719190611bb3565b6108f9565b60405161028391906121fd565b60405180910390f35b610294610954565b6040516102a19190611fa2565b60405180910390f35b6102c460048036038101906102bf9190611c20565b610978565b6040516102d19190611fbd565b60405180910390f35b6102e2610a70565b6040516102ef9190612218565b60405180910390f35b610300610a79565b60405161030d91906121fd565b60405180910390f35b610330600480360381019061032b9190611c73565b610aac565b60405161033d9190611fbd565b60405180910390f35b61034e610b58565b60405161035b91906121fd565b60405180910390f35b61036c610ba3565b60405161037991906121fd565b60405180910390f35b61038a610baa565b6040516103979190611fa2565b60405180910390f35b6103a8610bc2565b6040516103b591906121fd565b60405180910390f35b6103d860048036038101906103d39190611bb3565b610bca565b6040516103e591906121fd565b60405180910390f35b6103f6610c61565b60405161040391906121fd565b60405180910390f35b610414610cac565b6040516104219190611fa2565b60405180910390f35b610432610cc4565b60405161043f91906121fd565b60405180910390f35b610450610e3f565b60405161045d919061201d565b60405180910390f35b61046e610e5b565b60405161047b91906121fd565b60405180910390f35b61048c610ea6565b6040516104999190611fa2565b60405180910390f35b6104aa610ebe565b6040516104b7919061201d565b60405180910390f35b6104c8610f50565b6040516104d591906121fd565b60405180910390f35b6104f860048036038101906104f39190611c73565b610fa7565b6040516105059190611fbd565b60405180910390f35b61052860048036038101906105239190611c73565b611092565b6040516105359190611fbd565b60405180910390f35b6105466110b0565b60405161055391906121fd565b60405180910390f35b6105646110fb565b6040516105719190611fa2565b60405180910390f35b610594600480360381019061058f9190611be0565b611113565b6040516105a191906121fd565b60405180910390f35b6105b261119a565b6040516105bf91906121fd565b60405180910390f35b6060600380546105d790612481565b80601f016020809104026020016040519081016040528092919081815260200182805461060390612481565b80156106505780601f1061062557610100808354040283529160200191610650565b820191906000526020600020905b81548152906001019060200180831161063357829003601f168201915b5050505050905090565b600061066e6106676111a0565b84846111a8565b6001905092915050565b63621d620042106106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b59061215d565b60405180910390fd5b6000846002546106ce91906122af565b90506d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16811115610742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610739906120dd565b60405180910390fd5b600061074d336108f9565b1461078d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610784906121bd565b60405180910390fd5b60006040518060600160405280602881526020016128dc6028913933876040516020016107bc9392919061203f565b604051602081830303815290604052805190602001206040516020016107e29190611f7c565b6040516020818303038152906040528051906020012090507f000000000000000000000000384706511fa6b9d67696d8bcacf39f6f41b89b8573ffffffffffffffffffffffffffffffffffffffff16600182878787604051600081526020016040526040516108549493929190611fd8565b6020604051602081039080840390855afa158015610876573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16146108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd9061211d565b60405180910390fd5b816002819055506108e73387611373565b505050505050565b6000600254905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff1660ff169050919050565b7f000000000000000000000000384706511fa6b9d67696d8bcacf39f6f41b89b8581565b600061098584848461156c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006109d06111a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a479061213d565b60405180910390fd5b610a6485610a5c6111a0565b8584036111a8565b60019150509392505050565b60006012905090565b6d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681565b6000610b4e610ab96111a0565b848460016000610ac76111a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b4991906122af565b6111a8565b6001905092915050565b600160646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610b969190612305565b610ba09190612336565b81565b62278d0081565b735bc4e9f6feee3d381803ad70849f5928262d3c6681565b63621d620081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050919050565b601960646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610c9f9190612305565b610ca99190612336565b81565b731ff3a2bf533abd1f863b5ae5f601554068a5818f81565b600160646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610d029190612305565b610d0c9190612336565b600e60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610d4a9190612305565b610d549190612336565b600a60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610d929190612305565b610d9c9190612336565b601960646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610dda9190612305565b610de49190612336565b610dee91906122af565b610df891906122af565b610e0291906122af565b6d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610e3c9190612390565b81565b6040518060600160405280602881526020016128dc6028913981565b600e60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610e999190612305565b610ea39190612336565b81565b73b1a77965b8dae65e21001e528043a21607265be181565b606060048054610ecd90612481565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef990612481565b8015610f465780601f10610f1b57610100808354040283529160200191610f46565b820191906000526020600020905b815481529060010190602001808311610f2957829003601f168201915b5050505050905090565b601e600a60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610f909190612305565b610f9a9190612336565b610fa49190612305565b81565b60008060016000610fb66111a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a906121dd565b60405180910390fd5b61108761107e6111a0565b858584036111a8565b600191505092915050565b60006110a661109f6111a0565b848461156c565b6001905092915050565b600a60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166110ee9190612305565b6110f89190612336565b81565b73e450fe0f9deaad5b1cb8fc691d95ce1f723e0ced81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60055481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f9061219d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f9061209d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161136691906121fd565b60405180910390a3505050565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661140e91906122af565b9050806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555060016000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161155f91906121fd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d39061217d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116439061207d565b60405180910390fd5b61165581611912565b611660838383611b3f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16905081811015611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c906120bd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160018282829054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611848919061225a565b92506101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118f991906121fd565b60405180910390a361190c848484611b44565b50505050565b731ff3a2bf533abd1f863b5ae5f601554068a5818f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611a635760006119766005544261196d9190612390565b62278d00611b49565b9050603c8111611a6157600081601e61198f9190612390565b601e600a60646d04ee2d6d415b85acef81000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166119cf9190612305565b6119d99190612336565b6119e39190612305565b6119ed9190612336565b9050600083826119fd91906122af565b905080611a1d731ff3a2bf533abd1f863b5ae5f601554068a5818f610bca565b1015611a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a55906120fd565b60405180910390fd5b50505b505b73e450fe0f9deaad5b1cb8fc691d95ce1f723e0ced73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611af05750735bc4e9f6feee3d381803ad70849f5928262d3c6673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b15611b3c5763621d62004211611b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b32906120fd565b60405180910390fd5b5b50565b505050565b505050565b60008183611b579190612305565b905092915050565b600081359050611b6e8161287f565b92915050565b600081359050611b8381612896565b92915050565b600081359050611b98816128ad565b92915050565b600081359050611bad816128c4565b92915050565b600060208284031215611bc957611bc861254a565b5b6000611bd784828501611b5f565b91505092915050565b60008060408385031215611bf757611bf661254a565b5b6000611c0585828601611b5f565b9250506020611c1685828601611b5f565b9150509250929050565b600080600060608486031215611c3957611c3861254a565b5b6000611c4786828701611b5f565b9350506020611c5886828701611b5f565b9250506040611c6986828701611b89565b9150509250925092565b60008060408385031215611c8a57611c8961254a565b5b6000611c9885828601611b5f565b9250506020611ca985828601611b89565b9150509250929050565b60008060008060808587031215611ccd57611ccc61254a565b5b6000611cdb87828801611b89565b9450506020611cec87828801611b9e565b9350506040611cfd87828801611b74565b9250506060611d0e87828801611b74565b91505092959194509250565b611d23816123c4565b82525050565b611d32816123d6565b82525050565b611d41816123e2565b82525050565b611d58611d53826123e2565b6124b3565b82525050565b6000611d6982612233565b611d73818561223e565b9350611d8381856020860161244e565b611d8c8161254f565b840191505092915050565b6000611da460238361223e565b9150611daf82612560565b604082019050919050565b6000611dc7601c8361224f565b9150611dd2826125af565b601c82019050919050565b6000611dea60228361223e565b9150611df5826125d8565b604082019050919050565b6000611e0d60268361223e565b9150611e1882612627565b604082019050919050565b6000611e3060158361223e565b9150611e3b82612676565b602082019050919050565b6000611e53600f8361223e565b9150611e5e8261269f565b602082019050919050565b6000611e76600e8361223e565b9150611e81826126c8565b602082019050919050565b6000611e9960288361223e565b9150611ea4826126f1565b604082019050919050565b6000611ebc600f8361223e565b9150611ec782612740565b602082019050919050565b6000611edf60258361223e565b9150611eea82612769565b604082019050919050565b6000611f0260248361223e565b9150611f0d826127b8565b604082019050919050565b6000611f25600f8361223e565b9150611f3082612807565b602082019050919050565b6000611f4860258361223e565b9150611f5382612830565b604082019050919050565b611f6781612437565b82525050565b611f7681612441565b82525050565b6000611f8782611dba565b9150611f938284611d47565b60208201915081905092915050565b6000602082019050611fb76000830184611d1a565b92915050565b6000602082019050611fd26000830184611d29565b92915050565b6000608082019050611fed6000830187611d38565b611ffa6020830186611f6d565b6120076040830185611d38565b6120146060830184611d38565b95945050505050565b600060208201905081810360008301526120378184611d5e565b905092915050565b600060608201905081810360008301526120598186611d5e565b90506120686020830185611d1a565b6120756040830184611f5e565b949350505050565b6000602082019050818103600083015261209681611d97565b9050919050565b600060208201905081810360008301526120b681611ddd565b9050919050565b600060208201905081810360008301526120d681611e00565b9050919050565b600060208201905081810360008301526120f681611e23565b9050919050565b6000602082019050818103600083015261211681611e46565b9050919050565b6000602082019050818103600083015261213681611e69565b9050919050565b6000602082019050818103600083015261215681611e8c565b9050919050565b6000602082019050818103600083015261217681611eaf565b9050919050565b6000602082019050818103600083015261219681611ed2565b9050919050565b600060208201905081810360008301526121b681611ef5565b9050919050565b600060208201905081810360008301526121d681611f18565b9050919050565b600060208201905081810360008301526121f681611f3b565b9050919050565b60006020820190506122126000830184611f5e565b92915050565b600060208201905061222d6000830184611f6d565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006122658261240c565b91506122708361240c565b9250827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122a4576122a36124bd565b5b828201905092915050565b60006122ba82612437565b91506122c583612437565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122fa576122f96124bd565b5b828201905092915050565b600061231082612437565b915061231b83612437565b92508261232b5761232a6124ec565b5b828204905092915050565b600061234182612437565b915061234c83612437565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612385576123846124bd565b5b828202905092915050565b600061239b82612437565b91506123a683612437565b9250828210156123b9576123b86124bd565b5b828203905092915050565b60006123cf826123ec565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561246c578082015181840152602081019050612451565b8381111561247b576000848401525b50505050565b6000600282049050600182168061249957607f821691505b602082108114156124ad576124ac61251b565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f457863656564206d6178696d756d20737570706c790000000000000000000000600082015250565b7f5472616e73666572204c6f636b65640000000000000000000000000000000000600082015250565b7f496e76616c6964207369676e6572000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f41697244726f7020457870697265640000000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416c726561647920436c61696d65640000000000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b612888816123c4565b811461289357600080fd5b50565b61289f816123e2565b81146128aa57600080fd5b50565b6128b681612437565b81146128c157600080fd5b50565b6128cd81612441565b81146128d857600080fd5b5056fe617070726f76652861646472657373206163636f756e742c2075696e7432353620616d6f756e7429a2646970667358221220cfbe7c8652dc0dcde98e2aebb8c6a42d5a86656f30be796585f300e8f21078e664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000384706511fa6b9d67696d8bcacf39f6f41b89b85000000000000000000000000000000000000000000000000000000000000000644697344414f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044449534400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): DisDAO
Arg [1] : _symbol (string): DISD
Arg [2] : _signer (address): 0x384706511Fa6B9d67696D8BcaCF39f6F41B89b85

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000384706511fa6b9d67696d8bcacf39f6f41b89b85
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 44697344414f0000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4449534400000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

146:3010:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2204:98:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4427:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1893:636:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3292:106:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3595:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1427:31:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5060:478:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3141:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;185:56:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5933:212:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1026:57:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;263:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;907:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;312:48;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3456:133:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;382:58:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;652:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1192:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1342:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;844:57;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1089:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2415:102:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;739:67:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6632:405:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3910:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;584:62:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;446:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4140:149:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1307:29:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2204:98:4;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;1893:636:1:-;350:10;1982:15;:29;1974:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;2041:13;2072:6;2057:12;;:21;;;;:::i;:::-;2041:37;;230:10;2105;;2096:5;:19;;2088:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;2181:1;2159:18;2166:10;2159:6;:18::i;:::-;:23;2151:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;2212:14;2348:11;;;;;;;;;;;;;;;;;2361:10;2373:6;2337:43;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2327:54;;;;;;2239:143;;;;;;;;:::i;:::-;;;;;;;;;;;;;2229:154;;;;;;2212:171;;2431:6;2401:36;;:26;2411:6;2419:1;2422;2425;2401:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;2393:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2481:5;2466:12;:20;;;;2496:25;2502:10;2514:6;2496:5;:25::i;:::-;1964:565;;1893:636;;;;:::o;3292:106:4:-;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;1427:31:1:-;;;:::o;5060:478:4:-;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;185:56:1:-;230:10;185:56;;;:::o;5933:212:4:-;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;1026:57:1:-;1082:1;1076:3;230:10;1063;;:16;;;;:::i;:::-;:20;;;;:::i;:::-;1026:57;:::o;263:43::-;299:7;263:43;:::o;907:76::-;941:42;907:76;:::o;312:48::-;350:10;312:48;:::o;3456:133:4:-;3530:7;3556:9;:18;3566:7;3556:18;;;;;;;;;;;;;;;:26;;;;;;;;;;;;3549:33;;;;3456:133;;;:::o;382:58:1:-;438:2;432:3;230:10;419;;:16;;;;:::i;:::-;:21;;;;:::i;:::-;382:58;:::o;652:81::-;691:42;652:81;:::o;1192:108::-;1082:1;1076:3;230:10;1063;;:16;;;;:::i;:::-;:20;;;;:::i;:::-;899:2;893:3;230:10;880;;:16;;;;:::i;:::-;:21;;;;:::i;:::-;644:2;638:3;230:10;625;;:16;;;;:::i;:::-;:21;;;;:::i;:::-;438:2;432:3;230:10;419;;:16;;;;:::i;:::-;:21;;;;:::i;:::-;1247:27;;;;:::i;:::-;:39;;;;:::i;:::-;:52;;;;:::i;:::-;230:10;1233;;:67;;;;:::i;:::-;1192:108;:::o;1342:79::-;;;;;;;;;;;;;;;;;;;:::o;844:57::-;899:2;893:3;230:10;880;;:16;;;;:::i;:::-;:21;;;;:::i;:::-;844:57;:::o;1089:77::-;1124:42;1089:77;:::o;2415:102:4:-;2471:13;2503:7;2496:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2415:102;:::o;739:67:1:-;804:2;644;638:3;230:10;625;;:16;;;;:::i;:::-;:21;;;;:::i;:::-;787:19;;;;:::i;:::-;739:67;:::o;6632:405:4:-;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;584:62:1:-;644:2;638:3;230:10;625;;:16;;;;:::i;:::-;:21;;;;:::i;:::-;584:62;:::o;446:77::-;481:42;446:77;:::o;4140:149:4:-;4229:7;4255:11;:18;4267:5;4255:18;;;;;;;;;;;;;;;:27;4274:7;4255:27;;;;;;;;;;;;;;;;4248:34;;4140:149;;;;:::o;1307:29:1:-;;;;:::o;587:96:0:-;640:7;666:10;659:17;;587:96;:::o;10424:370:4:-;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;8575:505::-;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;:::-;;;;;;;;8640:440;8575:505;;:::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;:::-;7628:671;7511:788;;;:::o;2535:619:1:-;691:42;2613:26;;:10;:26;;;2610:392;;;2654:14;2671:49;2698:10;;2680:15;:28;;;;:::i;:::-;299:7;2671:8;:49::i;:::-;2654:66;;2747:2;2737:6;:12;2734:258;;2768:21;2822:6;2817:2;:11;;;;:::i;:::-;804:2;644;638:3;230:10;625;;:16;;;;:::i;:::-;:21;;;;:::i;:::-;787:19;;;;:::i;:::-;2792:37;;;;:::i;:::-;2768:61;;2847:20;2886:6;2870:13;:22;;;;:::i;:::-;2847:45;;2945:12;2918:23;691:42;2918:9;:23::i;:::-;:39;;2910:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2750:242;;2734:258;2640:362;2610:392;481:42;3014:22;;:10;:22;;;:47;;;;941:42;3040:21;;:10;:21;;;3014:47;3011:137;;;350:10;3088:15;:29;3080:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3011:137;2535:619;:::o;11378:126:4:-;;;;:::o;12173:120::-;;;;:::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;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:::-;343:5;381:6;368:20;359:29;;397:33;424:5;397:33;:::i;:::-;297:139;;;;:::o;442:135::-;486:5;524:6;511:20;502:29;;540:31;565:5;540:31;:::i;:::-;442:135;;;;:::o;583:329::-;642:6;691:2;679:9;670:7;666:23;662:32;659:119;;;697:79;;:::i;:::-;659:119;817:1;842:53;887:7;878:6;867:9;863:22;842:53;:::i;:::-;832:63;;788:117;583:329;;;;:::o;918:474::-;986:6;994;1043:2;1031:9;1022:7;1018:23;1014:32;1011:119;;;1049:79;;:::i;:::-;1011:119;1169:1;1194:53;1239:7;1230:6;1219:9;1215:22;1194:53;:::i;:::-;1184:63;;1140:117;1296:2;1322:53;1367:7;1358:6;1347:9;1343:22;1322:53;:::i;:::-;1312:63;;1267:118;918:474;;;;;:::o;1398:619::-;1475:6;1483;1491;1540:2;1528:9;1519:7;1515:23;1511:32;1508:119;;;1546:79;;:::i;:::-;1508:119;1666:1;1691:53;1736:7;1727:6;1716:9;1712:22;1691:53;:::i;:::-;1681:63;;1637:117;1793:2;1819:53;1864:7;1855:6;1844:9;1840:22;1819:53;:::i;:::-;1809:63;;1764:118;1921:2;1947:53;1992:7;1983:6;1972:9;1968:22;1947:53;:::i;:::-;1937:63;;1892:118;1398:619;;;;;:::o;2023:474::-;2091:6;2099;2148:2;2136:9;2127:7;2123:23;2119:32;2116:119;;;2154:79;;:::i;:::-;2116:119;2274:1;2299:53;2344:7;2335:6;2324:9;2320:22;2299:53;:::i;:::-;2289:63;;2245:117;2401:2;2427:53;2472:7;2463:6;2452:9;2448:22;2427:53;:::i;:::-;2417:63;;2372:118;2023:474;;;;;:::o;2503:761::-;2587:6;2595;2603;2611;2660:3;2648:9;2639:7;2635:23;2631:33;2628:120;;;2667:79;;:::i;:::-;2628:120;2787:1;2812:53;2857:7;2848:6;2837:9;2833:22;2812:53;:::i;:::-;2802:63;;2758:117;2914:2;2940:51;2983:7;2974:6;2963:9;2959:22;2940:51;:::i;:::-;2930:61;;2885:116;3040:2;3066:53;3111:7;3102:6;3091:9;3087:22;3066:53;:::i;:::-;3056:63;;3011:118;3168:2;3194:53;3239:7;3230:6;3219:9;3215:22;3194:53;:::i;:::-;3184:63;;3139:118;2503:761;;;;;;;:::o;3270:118::-;3357:24;3375:5;3357:24;:::i;:::-;3352:3;3345:37;3270:118;;:::o;3394:109::-;3475:21;3490:5;3475:21;:::i;:::-;3470:3;3463:34;3394:109;;:::o;3509:118::-;3596:24;3614:5;3596:24;:::i;:::-;3591:3;3584:37;3509:118;;:::o;3633:157::-;3738:45;3758:24;3776:5;3758:24;:::i;:::-;3738:45;:::i;:::-;3733:3;3726:58;3633:157;;:::o;3796:364::-;3884:3;3912:39;3945:5;3912:39;:::i;:::-;3967:71;4031:6;4026:3;3967:71;:::i;:::-;3960:78;;4047:52;4092:6;4087:3;4080:4;4073:5;4069:16;4047:52;:::i;:::-;4124:29;4146:6;4124:29;:::i;:::-;4119:3;4115:39;4108:46;;3888:272;3796:364;;;;:::o;4166:366::-;4308:3;4329:67;4393:2;4388:3;4329:67;:::i;:::-;4322:74;;4405:93;4494:3;4405:93;:::i;:::-;4523:2;4518:3;4514:12;4507:19;;4166:366;;;:::o;4538:402::-;4698:3;4719:85;4801:2;4796:3;4719:85;:::i;:::-;4712:92;;4813:93;4902:3;4813:93;:::i;:::-;4931:2;4926:3;4922:12;4915:19;;4538:402;;;:::o;4946:366::-;5088:3;5109:67;5173:2;5168:3;5109:67;:::i;:::-;5102:74;;5185:93;5274:3;5185:93;:::i;:::-;5303:2;5298:3;5294:12;5287:19;;4946:366;;;:::o;5318:::-;5460:3;5481:67;5545:2;5540:3;5481:67;:::i;:::-;5474:74;;5557:93;5646:3;5557:93;:::i;:::-;5675:2;5670:3;5666:12;5659:19;;5318:366;;;:::o;5690:::-;5832:3;5853:67;5917:2;5912:3;5853:67;:::i;:::-;5846:74;;5929:93;6018:3;5929:93;:::i;:::-;6047:2;6042:3;6038:12;6031:19;;5690:366;;;:::o;6062:::-;6204:3;6225:67;6289:2;6284:3;6225:67;:::i;:::-;6218:74;;6301:93;6390:3;6301:93;:::i;:::-;6419:2;6414:3;6410:12;6403:19;;6062:366;;;:::o;6434:::-;6576:3;6597:67;6661:2;6656:3;6597:67;:::i;:::-;6590:74;;6673:93;6762:3;6673:93;:::i;:::-;6791:2;6786:3;6782:12;6775:19;;6434:366;;;:::o;6806:::-;6948:3;6969:67;7033:2;7028:3;6969:67;:::i;:::-;6962:74;;7045:93;7134:3;7045:93;:::i;:::-;7163:2;7158:3;7154:12;7147:19;;6806:366;;;:::o;7178:::-;7320:3;7341:67;7405:2;7400:3;7341:67;:::i;:::-;7334:74;;7417:93;7506:3;7417:93;:::i;:::-;7535:2;7530:3;7526:12;7519:19;;7178:366;;;:::o;7550:::-;7692:3;7713:67;7777:2;7772:3;7713:67;:::i;:::-;7706:74;;7789:93;7878:3;7789:93;:::i;:::-;7907:2;7902:3;7898:12;7891:19;;7550:366;;;:::o;7922:::-;8064:3;8085:67;8149:2;8144:3;8085:67;:::i;:::-;8078:74;;8161:93;8250:3;8161:93;:::i;:::-;8279:2;8274:3;8270:12;8263:19;;7922:366;;;:::o;8294:::-;8436:3;8457:67;8521:2;8516:3;8457:67;:::i;:::-;8450:74;;8533:93;8622:3;8533:93;:::i;:::-;8651:2;8646:3;8642:12;8635:19;;8294:366;;;:::o;8666:::-;8808:3;8829:67;8893:2;8888:3;8829:67;:::i;:::-;8822:74;;8905:93;8994:3;8905:93;:::i;:::-;9023:2;9018:3;9014:12;9007:19;;8666:366;;;:::o;9038:118::-;9125:24;9143:5;9125:24;:::i;:::-;9120:3;9113:37;9038:118;;:::o;9162:112::-;9245:22;9261:5;9245:22;:::i;:::-;9240:3;9233:35;9162:112;;:::o;9280:522::-;9493:3;9515:148;9659:3;9515:148;:::i;:::-;9508:155;;9673:75;9744:3;9735:6;9673:75;:::i;:::-;9773:2;9768:3;9764:12;9757:19;;9793:3;9786:10;;9280:522;;;;:::o;9808:222::-;9901:4;9939:2;9928:9;9924:18;9916:26;;9952:71;10020:1;10009:9;10005:17;9996:6;9952:71;:::i;:::-;9808:222;;;;:::o;10036:210::-;10123:4;10161:2;10150:9;10146:18;10138:26;;10174:65;10236:1;10225:9;10221:17;10212:6;10174:65;:::i;:::-;10036:210;;;;:::o;10252:545::-;10425:4;10463:3;10452:9;10448:19;10440:27;;10477:71;10545:1;10534:9;10530:17;10521:6;10477:71;:::i;:::-;10558:68;10622:2;10611:9;10607:18;10598:6;10558:68;:::i;:::-;10636:72;10704:2;10693:9;10689:18;10680:6;10636:72;:::i;:::-;10718;10786:2;10775:9;10771:18;10762:6;10718:72;:::i;:::-;10252:545;;;;;;;:::o;10803:313::-;10916:4;10954:2;10943:9;10939:18;10931:26;;11003:9;10997:4;10993:20;10989:1;10978:9;10974:17;10967:47;11031:78;11104:4;11095:6;11031:78;:::i;:::-;11023:86;;10803:313;;;;:::o;11122:533::-;11291:4;11329:2;11318:9;11314:18;11306:26;;11378:9;11372:4;11368:20;11364:1;11353:9;11349:17;11342:47;11406:78;11479:4;11470:6;11406:78;:::i;:::-;11398:86;;11494:72;11562:2;11551:9;11547:18;11538:6;11494:72;:::i;:::-;11576;11644:2;11633:9;11629:18;11620:6;11576:72;:::i;:::-;11122:533;;;;;;:::o;11661:419::-;11827:4;11865:2;11854:9;11850:18;11842:26;;11914:9;11908:4;11904:20;11900:1;11889:9;11885:17;11878:47;11942:131;12068:4;11942:131;:::i;:::-;11934:139;;11661:419;;;:::o;12086:::-;12252:4;12290:2;12279:9;12275:18;12267:26;;12339:9;12333:4;12329:20;12325:1;12314:9;12310:17;12303:47;12367:131;12493:4;12367:131;:::i;:::-;12359:139;;12086:419;;;:::o;12511:::-;12677:4;12715:2;12704:9;12700:18;12692:26;;12764:9;12758:4;12754:20;12750:1;12739:9;12735:17;12728:47;12792:131;12918:4;12792:131;:::i;:::-;12784:139;;12511:419;;;:::o;12936:::-;13102:4;13140:2;13129:9;13125:18;13117:26;;13189:9;13183:4;13179:20;13175:1;13164:9;13160:17;13153:47;13217:131;13343:4;13217:131;:::i;:::-;13209:139;;12936:419;;;:::o;13361:::-;13527:4;13565:2;13554:9;13550:18;13542:26;;13614:9;13608:4;13604:20;13600:1;13589:9;13585:17;13578:47;13642:131;13768:4;13642:131;:::i;:::-;13634:139;;13361:419;;;:::o;13786:::-;13952:4;13990:2;13979:9;13975:18;13967:26;;14039:9;14033:4;14029:20;14025:1;14014:9;14010:17;14003:47;14067:131;14193:4;14067:131;:::i;:::-;14059:139;;13786:419;;;:::o;14211:::-;14377:4;14415:2;14404:9;14400:18;14392:26;;14464:9;14458:4;14454:20;14450:1;14439:9;14435:17;14428:47;14492:131;14618:4;14492:131;:::i;:::-;14484:139;;14211:419;;;:::o;14636:::-;14802:4;14840:2;14829:9;14825:18;14817:26;;14889:9;14883:4;14879:20;14875:1;14864:9;14860:17;14853:47;14917:131;15043:4;14917:131;:::i;:::-;14909:139;;14636:419;;;:::o;15061:::-;15227:4;15265:2;15254:9;15250:18;15242:26;;15314:9;15308:4;15304:20;15300:1;15289:9;15285:17;15278:47;15342:131;15468:4;15342:131;:::i;:::-;15334:139;;15061:419;;;:::o;15486:::-;15652:4;15690:2;15679:9;15675:18;15667:26;;15739:9;15733:4;15729:20;15725:1;15714:9;15710:17;15703:47;15767:131;15893:4;15767:131;:::i;:::-;15759:139;;15486:419;;;:::o;15911:::-;16077:4;16115:2;16104:9;16100:18;16092:26;;16164:9;16158:4;16154:20;16150:1;16139:9;16135:17;16128:47;16192:131;16318:4;16192:131;:::i;:::-;16184:139;;15911:419;;;:::o;16336:::-;16502:4;16540:2;16529:9;16525:18;16517:26;;16589:9;16583:4;16579:20;16575:1;16564:9;16560:17;16553:47;16617:131;16743:4;16617:131;:::i;:::-;16609:139;;16336:419;;;:::o;16761:222::-;16854:4;16892:2;16881:9;16877:18;16869:26;;16905:71;16973:1;16962:9;16958:17;16949:6;16905:71;:::i;:::-;16761:222;;;;:::o;16989:214::-;17078:4;17116:2;17105:9;17101:18;17093:26;;17129:67;17193:1;17182:9;17178:17;17169:6;17129:67;:::i;:::-;16989:214;;;;:::o;17290:99::-;17342:6;17376:5;17370:12;17360:22;;17290:99;;;:::o;17395:169::-;17479:11;17513:6;17508:3;17501:19;17553:4;17548:3;17544:14;17529:29;;17395:169;;;;:::o;17570:148::-;17672:11;17709:3;17694:18;;17570:148;;;;:::o;17724:303::-;17764:3;17783:20;17801:1;17783:20;:::i;:::-;17778:25;;17817:20;17835:1;17817:20;:::i;:::-;17812:25;;17969:1;17903:64;17899:72;17896:1;17893:79;17890:105;;;17975:18;;:::i;:::-;17890:105;18019:1;18016;18012:9;18005:16;;17724:303;;;;:::o;18033:305::-;18073:3;18092:20;18110:1;18092:20;:::i;:::-;18087:25;;18126:20;18144:1;18126:20;:::i;:::-;18121:25;;18280:1;18212:66;18208:74;18205:1;18202:81;18199:107;;;18286:18;;:::i;:::-;18199:107;18330:1;18327;18323:9;18316:16;;18033:305;;;;:::o;18344:185::-;18384:1;18401:20;18419:1;18401:20;:::i;:::-;18396:25;;18435:20;18453:1;18435:20;:::i;:::-;18430:25;;18474:1;18464:35;;18479:18;;:::i;:::-;18464:35;18521:1;18518;18514:9;18509:14;;18344:185;;;;:::o;18535:348::-;18575:7;18598:20;18616:1;18598:20;:::i;:::-;18593:25;;18632:20;18650:1;18632:20;:::i;:::-;18627:25;;18820:1;18752:66;18748:74;18745:1;18742:81;18737:1;18730:9;18723:17;18719:105;18716:131;;;18827:18;;:::i;:::-;18716:131;18875:1;18872;18868:9;18857:20;;18535:348;;;;:::o;18889:191::-;18929:4;18949:20;18967:1;18949:20;:::i;:::-;18944:25;;18983:20;19001:1;18983:20;:::i;:::-;18978:25;;19022:1;19019;19016:8;19013:34;;;19027:18;;:::i;:::-;19013:34;19072:1;19069;19065:9;19057:17;;18889:191;;;;:::o;19086:96::-;19123:7;19152:24;19170:5;19152:24;:::i;:::-;19141:35;;19086:96;;;:::o;19188:90::-;19222:7;19265:5;19258:13;19251:21;19240:32;;19188:90;;;:::o;19284:77::-;19321:7;19350:5;19339:16;;19284:77;;;:::o;19367:126::-;19404:7;19444:42;19437:5;19433:54;19422:65;;19367:126;;;:::o;19499:148::-;19536:7;19576:64;19569:5;19565:76;19554:87;;19499:148;;;:::o;19653:77::-;19690:7;19719:5;19708:16;;19653:77;;;:::o;19736:86::-;19771:7;19811:4;19804:5;19800:16;19789:27;;19736:86;;;:::o;19828:307::-;19896:1;19906:113;19920:6;19917:1;19914:13;19906:113;;;20005:1;20000:3;19996:11;19990:18;19986:1;19981:3;19977:11;19970:39;19942:2;19939:1;19935:10;19930:15;;19906:113;;;20037:6;20034:1;20031:13;20028:101;;;20117:1;20108:6;20103:3;20099:16;20092:27;20028:101;19877:258;19828:307;;;:::o;20141:320::-;20185:6;20222:1;20216:4;20212:12;20202:22;;20269:1;20263:4;20259:12;20290:18;20280:81;;20346:4;20338:6;20334:17;20324:27;;20280:81;20408:2;20400:6;20397:14;20377:18;20374:38;20371:84;;;20427:18;;:::i;:::-;20371:84;20192:269;20141:320;;;:::o;20467:79::-;20506:7;20535:5;20524:16;;20467:79;;;:::o;20552:180::-;20600:77;20597:1;20590:88;20697:4;20694:1;20687:15;20721:4;20718:1;20711:15;20738:180;20786:77;20783:1;20776:88;20883:4;20880:1;20873:15;20907:4;20904:1;20897:15;20924:180;20972:77;20969:1;20962:88;21069:4;21066:1;21059:15;21093:4;21090:1;21083:15;21233:117;21342:1;21339;21332:12;21356:102;21397:6;21448:2;21444:7;21439:2;21432:5;21428:14;21424:28;21414:38;;21356:102;;;:::o;21464:222::-;21604:34;21600:1;21592:6;21588:14;21581:58;21673:5;21668:2;21660:6;21656:15;21649:30;21464:222;:::o;21692:214::-;21832:66;21828:1;21820:6;21816:14;21809:90;21692:214;:::o;21912:221::-;22052:34;22048:1;22040:6;22036:14;22029:58;22121:4;22116:2;22108:6;22104:15;22097:29;21912:221;:::o;22139:225::-;22279:34;22275:1;22267:6;22263:14;22256:58;22348:8;22343:2;22335:6;22331:15;22324:33;22139:225;:::o;22370:171::-;22510:23;22506:1;22498:6;22494:14;22487:47;22370:171;:::o;22547:165::-;22687:17;22683:1;22675:6;22671:14;22664:41;22547:165;:::o;22718:164::-;22858:16;22854:1;22846:6;22842:14;22835:40;22718:164;:::o;22888:227::-;23028:34;23024:1;23016:6;23012:14;23005:58;23097:10;23092:2;23084:6;23080:15;23073:35;22888:227;:::o;23121:165::-;23261:17;23257:1;23249:6;23245:14;23238:41;23121:165;:::o;23292:224::-;23432:34;23428:1;23420:6;23416:14;23409:58;23501:7;23496:2;23488:6;23484:15;23477:32;23292:224;:::o;23522:223::-;23662:34;23658:1;23650:6;23646:14;23639:58;23731:6;23726:2;23718:6;23714:15;23707:31;23522:223;:::o;23751:165::-;23891:17;23887:1;23879:6;23875:14;23868:41;23751:165;:::o;23922:224::-;24062:34;24058:1;24050:6;24046:14;24039:58;24131:7;24126:2;24118:6;24114:15;24107:32;23922:224;:::o;24152:122::-;24225:24;24243:5;24225:24;:::i;:::-;24218:5;24215:35;24205:63;;24264:1;24261;24254:12;24205:63;24152:122;:::o;24280:::-;24353:24;24371:5;24353:24;:::i;:::-;24346:5;24343:35;24333:63;;24392:1;24389;24382:12;24333:63;24280:122;:::o;24408:::-;24481:24;24499:5;24481:24;:::i;:::-;24474:5;24471:35;24461:63;;24520:1;24517;24510:12;24461:63;24408:122;:::o;24536:118::-;24607:22;24623:5;24607:22;:::i;:::-;24600:5;24597:33;24587:61;;24644:1;24641;24634:12;24587:61;24536:118;:::o

Swarm Source

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

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