ETH Price: $3,059.82 (+1.18%)
Gas: 3 Gwei

Token

NFTWiki Token (NFTK)
 

Overview

Max Total Supply

507,129,163.741084 NFTK

Holders

342 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
mashalince.eth
Balance
4,260.02 NFTK

Value
$0.00
0x28b5b2733ee20037bb7b7e47993e41cca6b42576
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

NFTWiki is a hyperverse combining real world NFT arts, social NFT reviewing platform and blockchain games. NFTK token is the main currency used here.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
nftk_erc20_eth

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-09
*/

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol


// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMathUpgradeable {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165Upgradeable {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol


// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library StringsUpgradeable {
    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);
    }
}

// File: @openzeppelin/contracts-upgradeable/access/IAccessControlUpgradeable.sol


// OpenZeppelin Contracts v4.4.0 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControlUpgradeable {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol


// OpenZeppelin Contracts v4.4.0 (proxy/utils/Initializable.sol)

pragma solidity ^0.8.0;

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
 * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() initializer {}
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        require(_initializing || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }
}

// File: @openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal initializer {
        __ERC165_init_unchained();
    }

    function __ERC165_init_unchained() internal initializer {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }
    uint256[50] private __gap;
}

// File: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol


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

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 ContextUpgradeable is Initializable {
    function __Context_init() internal initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    uint256[50] private __gap;
}

// File: @openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol


// OpenZeppelin Contracts v4.4.0 (access/AccessControl.sol)

pragma solidity ^0.8.0;






/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable {
    function __AccessControl_init() internal initializer {
        __Context_init_unchained();
        __ERC165_init_unchained();
        __AccessControl_init_unchained();
    }

    function __AccessControl_init_unchained() internal initializer {
    }
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        StringsUpgradeable.toHexString(uint160(account), 20),
                        " is missing role ",
                        StringsUpgradeable.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
    uint256[49] private __gap;
}

// File: @openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20Upgradeable {
    /**
     * @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: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;





/**
 * @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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += 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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

// File: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20BurnableUpgradeable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;




/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20BurnableUpgradeable is Initializable, ContextUpgradeable, ERC20Upgradeable {
    function __ERC20Burnable_init() internal initializer {
        __Context_init_unchained();
        __ERC20Burnable_init_unchained();
    }

    function __ERC20Burnable_init_unchained() internal initializer {
    }
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
    uint256[50] private __gap;
}

// File: erc20.sol


pragma solidity ^0.8.2;







interface  Minion{
    function minionSupply() external view returns (uint);
}

contract nftk_erc20_eth is Initializable, ERC20Upgradeable, ERC20BurnableUpgradeable,AccessControlUpgradeable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant CONSENSUS_MINT_ROLE = keccak256("CONSENSUS_MINT_ROLE");
    bool public isPreMint=false;
    uint public initBlock;
    address public minionAddress;

    uint public maxSupply=1890000000*10 ** decimals();

    uint public minionCount;
    uint maxMinionCount=2000000;
    uint public currConsensusMint=1*10**decimals()/6250;

    //2300000
    uint constant _difficultyBomb=2300000;

    uint constant _consensusMintInterval=100;

    uint public lastConsensusMintBlock;

    uint public maxBatchMint=126000000*10 ** decimals();
    uint public batchMinted=0;

    struct Consensus{
        address to;
        uint256 amount;
    }

    /// @custom:oz-upgrades-unsafe-allow constructor
    constructor(address daoAddr,address teamAddr,address consensusAddr,address batchMintAddr) initializer {
        __ERC20_init("NFTWiki Token", "NFTK");
        __ERC20Burnable_init();
        __AccessControl_init();

        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(MINTER_ROLE, batchMintAddr);
        _grantRole(CONSENSUS_MINT_ROLE, consensusAddr);

        initBlock=block.number;
        lastConsensusMintBlock=block.number;

        preMint(daoAddr,294000000 * 10 ** decimals());
        preMint(teamAddr,210000000 * 10 ** decimals());
        isPreMint=true;
    }
    function preMint(address to,uint amount)  private {
        require(!isPreMint,"Pre Mint has been executed");
        _mint(to, amount);
    }

    function setMinionAddress(address addr) public onlyRole(CONSENSUS_MINT_ROLE){
        require(minionAddress==address (0),"Address must be zero");
        require(Address.isContract(addr),"Address must be contract");
        minionAddress=addr;
    }
    function syncMinionCount()public onlyRole(CONSENSUS_MINT_ROLE){
        if(minionAddress!=address(0)){
            minionCount= Minion(minionAddress).minionSupply();
            if(minionCount>maxMinionCount){
                minionCount=maxMinionCount;
            }
        }
    }

    /// consensus Mint,
    function consensusMint(address to)public onlyRole(CONSENSUS_MINT_ROLE){
        require(lastConsensusMintBlock+_consensusMintInterval<block.number,"consensus Mint too fast");
        mint(to,getMintableAmt());
        lastConsensusMintBlock= block.number;
        bool step=(lastConsensusMintBlock-initBlock)>=_difficultyBomb;
        if(step){
            currConsensusMint=currConsensusMint*4/5;
            initBlock=block.number;
        }
    }

    function getMintableAmt()public view returns(uint amount){
        return (block.number-lastConsensusMintBlock)*minionCount*currConsensusMint;
    }

    function mint(address to, uint256 amount) private  {
        require(totalSupply()+amount<=maxSupply,"Too many coins");
        _mint(to, amount);
    }
    function batchMint(Consensus[] memory cs) public  onlyRole(MINTER_ROLE){

        require(batchMinted<=maxBatchMint,"minted too more");
        for(uint i =0;i<cs.length;i++){
            batchMinted=batchMinted+cs[i].amount;
            if(batchMinted<=maxBatchMint){
                _mint(cs[i].to,cs[i].amount);
            }
        }
    }

    function batchTransfer(address from,Consensus[] memory cs) public{
        for(uint i =0;i<cs.length;i++){
            transferFrom(from,cs[i].to,cs[i].amount);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"daoAddr","type":"address"},{"internalType":"address","name":"teamAddr","type":"address"},{"internalType":"address","name":"consensusAddr","type":"address"},{"internalType":"address","name":"batchMintAddr","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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"CONSENSUS_MINT_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct nftk_erc20_eth.Consensus[]","name":"cs","type":"tuple[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"batchMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct nftk_erc20_eth.Consensus[]","name":"cs","type":"tuple[]"}],"name":"batchTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"consensusMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currConsensusMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMintableAmt","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastConsensusMintBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minionAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minionCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setMinionAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"syncMinionCount","outputs":[],"stateMutability":"nonpayable","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"}]

6080604052600060fb60006101000a81548160ff0219169083151502179055506200002f620003aa60201b60201c565b600a6200003d9190620011e8565b6370a71c806200004e919062001325565b60fe55621e84806101005561186a6200006c620003aa60201b60201c565b600a6200007a9190620011e8565b600162000088919062001325565b62000094919062001155565b61010155620000a8620003aa60201b60201c565b600a620000b69190620011e8565b6307829b80620000c7919062001325565b61010355600061010455348015620000de57600080fd5b5060405162004af838038062004af8833981810160405281019062000104919062000f6c565b600060019054906101000a900460ff16806200012b575060008054906101000a900460ff16155b6200016d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001649062001064565b60405180910390fd5b60008060019054906101000a900460ff161590508015620001be576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6200023a6040518060400160405280600d81526020017f4e465457696b6920546f6b656e000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e46544b00000000000000000000000000000000000000000000000000000000815250620003b360201b60201c565b6200024a620004b660201b60201c565b6200025a620005b560201b60201c565b6200026f6000801b33620006c460201b60201c565b620002a17f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a683620006c460201b60201c565b620002d37f265075643878447c846a0de4efcf3bb6cd3990560733c11686a1cf7acde19c4084620006c460201b60201c565b4360fc8190555043610102819055506200032285620002f7620003aa60201b60201c565b600a620003059190620011e8565b631186158062000316919062001325565b620007b660201b60201c565b620003628462000337620003aa60201b60201c565b600a620003459190620011e8565b630c84588062000356919062001325565b620007b660201b60201c565b600160fb60006101000a81548160ff02191690831515021790555080156200039f5760008060016101000a81548160ff0219169083151502179055505b505050505062001561565b60006012905090565b600060019054906101000a900460ff1680620003da575060008054906101000a900460ff16155b6200041c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004139062001064565b60405180910390fd5b60008060019054906101000a900460ff1615905080156200046d576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6200047d6200081f60201b60201c565b6200048f8383620008fe60201b60201c565b8015620004b15760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff1680620004dd575060008054906101000a900460ff16155b6200051f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005169062001064565b60405180910390fd5b60008060019054906101000a900460ff16159050801562000570576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b620005806200081f60201b60201c565b6200059062000a1160201b60201c565b8015620005b25760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680620005dc575060008054906101000a900460ff16155b6200061e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006159062001064565b60405180910390fd5b60008060019054906101000a900460ff1615905080156200066f576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6200067f6200081f60201b60201c565b6200068f62000af060201b60201c565b6200069f62000bcf60201b60201c565b8015620006c15760008060016101000a81548160ff0219169083151502179055505b50565b620006d6828262000cae60201b60201c565b620007b257600160c9600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200075762000d1960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60fb60009054906101000a900460ff161562000809576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008009062001086565b60405180910390fd5b6200081b828262000d2160201b60201c565b5050565b600060019054906101000a900460ff168062000846575060008054906101000a900460ff16155b62000888576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200087f9062001064565b60405180910390fd5b60008060019054906101000a900460ff161590508015620008d9576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8015620008fb5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff168062000925575060008054906101000a900460ff16155b62000967576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200095e9062001064565b60405180910390fd5b60008060019054906101000a900460ff161590508015620009b8576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8260369080519060200190620009d092919062000ea5565b508160379080519060200190620009e992919062000ea5565b50801562000a0c5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff168062000a38575060008054906101000a900460ff16155b62000a7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a719062001064565b60405180910390fd5b60008060019054906101000a900460ff16159050801562000acb576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b801562000aed5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff168062000b17575060008054906101000a900460ff16155b62000b59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b509062001064565b60405180910390fd5b60008060019054906101000a900460ff16159050801562000baa576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b801562000bcc5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff168062000bf6575060008054906101000a900460ff16155b62000c38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c2f9062001064565b60405180910390fd5b60008060019054906101000a900460ff16159050801562000c89576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b801562000cab5760008060016101000a81548160ff0219169083151502179055505b50565b600060c9600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000d94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d8b90620010a8565b60405180910390fd5b62000da86000838362000e9b60201b60201c565b806035600082825462000dbc9190620010f8565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000e149190620010f8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000e7b9190620010ca565b60405180910390a362000e976000838362000ea060201b60201c565b5050565b505050565b505050565b82805462000eb390620013d1565b90600052602060002090601f01602090048101928262000ed7576000855562000f23565b82601f1062000ef257805160ff191683800117855562000f23565b8280016001018555821562000f23579182015b8281111562000f2257825182559160200191906001019062000f05565b5b50905062000f32919062000f36565b5090565b5b8082111562000f5157600081600090555060010162000f37565b5090565b60008151905062000f668162001547565b92915050565b6000806000806080858703121562000f895762000f8862001494565b5b600062000f998782880162000f55565b945050602062000fac8782880162000f55565b935050604062000fbf8782880162000f55565b925050606062000fd28782880162000f55565b91505092959194509250565b600062000fed602e83620010e7565b915062000ffa82620014a6565b604082019050919050565b600062001014601a83620010e7565b91506200102182620014f5565b602082019050919050565b60006200103b601f83620010e7565b915062001048826200151e565b602082019050919050565b6200105e81620013ba565b82525050565b600060208201905081810360008301526200107f8162000fde565b9050919050565b60006020820190508181036000830152620010a18162001005565b9050919050565b60006020820190508181036000830152620010c3816200102c565b9050919050565b6000602082019050620010e1600083018462001053565b92915050565b600082825260208201905092915050565b60006200110582620013ba565b91506200111283620013ba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200114a576200114962001407565b5b828201905092915050565b60006200116282620013ba565b91506200116f83620013ba565b92508262001182576200118162001436565b5b828204905092915050565b6000808291508390505b6001851115620011df57808604811115620011b757620011b662001407565b5b6001851615620011c75780820291505b8081029050620011d78562001499565b945062001197565b94509492505050565b6000620011f582620013ba565b91506200120283620013c4565b9250620012317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001239565b905092915050565b6000826200124b57600190506200131e565b816200125b57600090506200131e565b81600181146200127457600281146200127f57620012b5565b60019150506200131e565b60ff84111562001294576200129362001407565b5b8360020a915084821115620012ae57620012ad62001407565b5b506200131e565b5060208310610133831016604e8410600b8410161715620012ef5782820a905083811115620012e957620012e862001407565b5b6200131e565b620012fe84848460016200118d565b9250905081840481111562001318576200131762001407565b5b81810290505b9392505050565b60006200133282620013ba565b91506200133f83620013ba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200137b576200137a62001407565b5b828202905092915050565b600062001393826200139a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620013ea57607f821691505b6020821081141562001401576200140062001465565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b60008160011c9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f507265204d696e7420686173206265656e206578656375746564000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620015528162001386565b81146200155e57600080fd5b50565b61358780620015716000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c806370a0823111610130578063a457c2d7116100b8578063d5abeb011161007c578063d5abeb011461066a578063dd62ed3e14610688578063e4079489146106b8578063e79973a1146106d4578063f2b661af146106f257610227565b8063a457c2d7146105b4578063a8ad2e06146105e4578063a9059cbb14610600578063d539139314610630578063d547741f1461064e57610227565b806391d14854116100ff57806391d148541461050e5780639386e1971461053e578063942fa8e11461055a57806395d89b4114610578578063a217fddf1461059657610227565b806370a082311461048657806379cc6790146104b65780637cb7cce5146104d2578063877107dc146104f057610227565b8063313ce567116101b357806342966c681161018257806342966c68146103f457806346fb6e40146104105780635cd1bd4c1461042e5780635d05125b1461044c57806369d1aabe1461046a57610227565b8063313ce5671461036c57806336568abe1461038a57806339509351146103a65780633f8c1a94146103d657610227565b806309f74c09116101fa57806309f74c09146102c857806318160ddd146102d257806323b872dd146102f0578063248a9ca3146103205780632f2ff15d1461035057610227565b806301ffc9a71461022c57806306fdde031461025c578063095ea7b31461027a57806309a3a9c1146102aa575b600080fd5b610246600480360381019061024191906124ce565b610710565b604051610253919061291b565b60405180910390f35b61026461078a565b6040516102719190612951565b60405180910390f35b610294600480360381019061028f91906123d8565b61081c565b6040516102a1919061291b565b60405180910390f35b6102b261083a565b6040516102bf9190612bb3565b60405180910390f35b6102d0610841565b005b6102da61098b565b6040516102e79190612bb3565b60405180910390f35b61030a60048036038101906103059190612329565b610995565b604051610317919061291b565b60405180910390f35b61033a60048036038101906103359190612461565b610a8d565b6040516103479190612936565b60405180910390f35b61036a6004803603810190610365919061248e565b610aad565b005b610374610ad6565b6040516103819190612bce565b60405180910390f35b6103a4600480360381019061039f919061248e565b610adf565b005b6103c060048036038101906103bb91906123d8565b610b62565b6040516103cd919061291b565b60405180910390f35b6103de610c0e565b6040516103eb9190612900565b60405180910390f35b61040e600480360381019061040991906124fb565b610c34565b005b610418610c48565b6040516104259190612936565b60405180910390f35b610436610c6c565b6040516104439190612bb3565b60405180910390f35b610454610c73565b6040516104619190612bb3565b60405180910390f35b610484600480360381019061047f91906122bc565b610c79565b005b6104a0600480360381019061049b91906122bc565b610dc9565b6040516104ad9190612bb3565b60405180910390f35b6104d060048036038101906104cb91906123d8565b610e12565b005b6104da610e8d565b6040516104e79190612bb3565b60405180910390f35b6104f8610e93565b6040516105059190612bb3565b60405180910390f35b6105286004803603810190610523919061248e565b610e9a565b604051610535919061291b565b60405180910390f35b61055860048036038101906105539190612418565b610f05565b005b61056261102c565b60405161056f9190612bb3565b60405180910390f35b610580611033565b60405161058d9190612951565b60405180910390f35b61059e6110c5565b6040516105ab9190612936565b60405180910390f35b6105ce60048036038101906105c991906123d8565b6110cc565b6040516105db919061291b565b60405180910390f35b6105fe60048036038101906105f9919061237c565b6111b7565b005b61061a600480360381019061061591906123d8565b611223565b604051610627919061291b565b60405180910390f35b610638611241565b6040516106459190612936565b60405180910390f35b6106686004803603810190610663919061248e565b611265565b005b61067261128e565b60405161067f9190612bb3565b60405180910390f35b6106a2600480360381019061069d91906122e9565b611294565b6040516106af9190612bb3565b60405180910390f35b6106d260048036038101906106cd91906122bc565b61131b565b005b6106dc611408565b6040516106e9919061291b565b60405180910390f35b6106fa61141b565b6040516107079190612bb3565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078357506107828261144c565b5b9050919050565b60606036805461079990612e5e565b80601f01602080910402602001604051908101604052809291908181526020018280546107c590612e5e565b80156108125780601f106107e757610100808354040283529160200191610812565b820191906000526020600020905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b60006108306108296114b6565b84846114be565b6001905092915050565b6101035481565b7f265075643878447c846a0de4efcf3bb6cd3990560733c11686a1cf7acde19c406108738161086e6114b6565b611689565b600073ffffffffffffffffffffffffffffffffffffffff1660fd60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109885760fd60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663453ba9e86040518163ffffffff1660e01b815260040160206040518083038186803b15801561093157600080fd5b505afa158015610945573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109699190612528565b60ff819055506101005460ff541115610987576101005460ff819055505b5b50565b6000603554905090565b60006109a2848484611726565b6000603460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006109ed6114b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6490612a73565b60405180910390fd5b610a8185610a796114b6565b8584036114be565b60019150509392505050565b600060c96000838152602001908152602001600020600101549050919050565b610ab682610a8d565b610ac781610ac26114b6565b611689565b610ad183836119aa565b505050565b60006012905090565b610ae76114b6565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b90612b53565b60405180910390fd5b610b5e8282611a8b565b5050565b6000610c04610b6f6114b6565b848460346000610b7d6114b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bff9190612c61565b6114be565b6001905092915050565b60fd60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c45610c3f6114b6565b82611b6d565b50565b7f265075643878447c846a0de4efcf3bb6cd3990560733c11686a1cf7acde19c4081565b6101015481565b60fc5481565b7f265075643878447c846a0de4efcf3bb6cd3990560733c11686a1cf7acde19c40610cab81610ca66114b6565b611689565b600073ffffffffffffffffffffffffffffffffffffffff1660fd60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390612b93565b60405180910390fd5b610d4582611d46565b610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b906129d3565b60405180910390fd5b8160fd60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610e2583610e206114b6565b611294565b905081811015610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6190612a93565b60405180910390fd5b610e7e83610e766114b6565b8484036114be565b610e888383611b6d565b505050565b60ff5481565b6101045481565b600060c9600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610f3781610f326114b6565b611689565b61010354610104541115610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790612973565b60405180910390fd5b60005b825181101561102757828181518110610f9f57610f9e612f97565b5b60200260200101516020015161010454610fb99190612c61565b6101048190555061010354610104541161101457611013838281518110610fe357610fe2612f97565b5b60200260200101516000015184838151811061100257611001612f97565b5b602002602001015160200151611d59565b5b808061101f90612ec1565b915050610f83565b505050565b6101025481565b60606037805461104290612e5e565b80601f016020809104026020016040519081016040528092919081815260200182805461106e90612e5e565b80156110bb5780601f10611090576101008083540402835291602001916110bb565b820191906000526020600020905b81548152906001019060200180831161109e57829003601f168201915b5050505050905090565b6000801b81565b600080603460006110db6114b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90612b33565b60405180910390fd5b6111ac6111a36114b6565b858584036114be565b600191505092915050565b60005b815181101561121e5761120a838383815181106111da576111d9612f97565b5b6020026020010151600001518484815181106111f9576111f8612f97565b5b602002602001015160200151610995565b50808061121690612ec1565b9150506111ba565b505050565b60006112376112306114b6565b8484611726565b6001905092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61126e82610a8d565b61127f8161127a6114b6565b611689565b6112898383611a8b565b505050565b60fe5481565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f265075643878447c846a0de4efcf3bb6cd3990560733c11686a1cf7acde19c4061134d816113486114b6565b611689565b4360646101025461135e9190612c61565b1061139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590612b13565b60405180910390fd5b6113af826113aa61141b565b611eba565b436101028190555060006223186060fc54610102546113ce9190612d42565b1015905080156114035760056004610101546113ea9190612ce8565b6113f49190612cb7565b610101819055504360fc819055505b505050565b60fb60009054906101000a900460ff1681565b60006101015460ff5461010254436114339190612d42565b61143d9190612ce8565b6114479190612ce8565b905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561152e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152590612af3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159590612a13565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161167c9190612bb3565b60405180910390a3505050565b6116938282610e9a565b611722576116b88173ffffffffffffffffffffffffffffffffffffffff166014611f1f565b6116c68360001c6020611f1f565b6040516020016116d79291906128c6565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117199190612951565b60405180910390fd5b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178d90612ad3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd906129b3565b60405180910390fd5b61181183838361215b565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188f90612a33565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461192d9190612c61565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119919190612bb3565b60405180910390a36119a4848484612160565b50505050565b6119b48282610e9a565b611a8757600160c9600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a2c6114b6565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611a958282610e9a565b15611b6957600060c9600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611b0e6114b6565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490612ab3565b60405180910390fd5b611be98260008361215b565b6000603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c67906129f3565b60405180910390fd5b818103603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160356000828254611cc89190612d42565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d2d9190612bb3565b60405180910390a3611d4183600084612160565b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090612b73565b60405180910390fd5b611dd56000838361215b565b8060356000828254611de79190612c61565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e3d9190612c61565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ea29190612bb3565b60405180910390a3611eb660008383612160565b5050565b60fe5481611ec661098b565b611ed09190612c61565b1115611f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0890612a53565b60405180910390fd5b611f1b8282611d59565b5050565b606060006002836002611f329190612ce8565b611f3c9190612c61565b67ffffffffffffffff811115611f5557611f54612fc6565b5b6040519080825280601f01601f191660200182016040528015611f875781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611fbf57611fbe612f97565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061202357612022612f97565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026120639190612ce8565b61206d9190612c61565b90505b600181111561210d577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106120af576120ae612f97565b5b1a60f81b8282815181106120c6576120c5612f97565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061210690612e34565b9050612070565b5060008414612151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214890612993565b60405180910390fd5b8091505092915050565b505050565b505050565b600061217861217384612c0e565b612be9565b9050808382526020820190508285604086028201111561219b5761219a612fff565b5b60005b858110156121cb57816121b18882612242565b84526020840193506040830192505060018101905061219e565b5050509392505050565b6000813590506121e4816134f5565b92915050565b600082601f8301126121ff576121fe612ff5565b5b813561220f848260208601612165565b91505092915050565b6000813590506122278161350c565b92915050565b60008135905061223c81613523565b92915050565b60006040828403121561225857612257612ffa565b5b6122626040612be9565b90506000612272848285016121d5565b600083015250602061228684828501612292565b60208301525092915050565b6000813590506122a18161353a565b92915050565b6000815190506122b68161353a565b92915050565b6000602082840312156122d2576122d1613009565b5b60006122e0848285016121d5565b91505092915050565b60008060408385031215612300576122ff613009565b5b600061230e858286016121d5565b925050602061231f858286016121d5565b9150509250929050565b60008060006060848603121561234257612341613009565b5b6000612350868287016121d5565b9350506020612361868287016121d5565b925050604061237286828701612292565b9150509250925092565b6000806040838503121561239357612392613009565b5b60006123a1858286016121d5565b925050602083013567ffffffffffffffff8111156123c2576123c1613004565b5b6123ce858286016121ea565b9150509250929050565b600080604083850312156123ef576123ee613009565b5b60006123fd858286016121d5565b925050602061240e85828601612292565b9150509250929050565b60006020828403121561242e5761242d613009565b5b600082013567ffffffffffffffff81111561244c5761244b613004565b5b612458848285016121ea565b91505092915050565b60006020828403121561247757612476613009565b5b600061248584828501612218565b91505092915050565b600080604083850312156124a5576124a4613009565b5b60006124b385828601612218565b92505060206124c4858286016121d5565b9150509250929050565b6000602082840312156124e4576124e3613009565b5b60006124f28482850161222d565b91505092915050565b60006020828403121561251157612510613009565b5b600061251f84828501612292565b91505092915050565b60006020828403121561253e5761253d613009565b5b600061254c848285016122a7565b91505092915050565b61255e81612d76565b82525050565b61256d81612d88565b82525050565b61257c81612d94565b82525050565b600061258d82612c3a565b6125978185612c45565b93506125a7818560208601612e01565b6125b08161300e565b840191505092915050565b60006125c682612c3a565b6125d08185612c56565b93506125e0818560208601612e01565b80840191505092915050565b60006125f9600f83612c45565b91506126048261301f565b602082019050919050565b600061261c602083612c45565b915061262782613048565b602082019050919050565b600061263f602383612c45565b915061264a82613071565b604082019050919050565b6000612662601883612c45565b915061266d826130c0565b602082019050919050565b6000612685602283612c45565b9150612690826130e9565b604082019050919050565b60006126a8602283612c45565b91506126b382613138565b604082019050919050565b60006126cb602683612c45565b91506126d682613187565b604082019050919050565b60006126ee600e83612c45565b91506126f9826131d6565b602082019050919050565b6000612711602883612c45565b915061271c826131ff565b604082019050919050565b6000612734602483612c45565b915061273f8261324e565b604082019050919050565b6000612757602183612c45565b91506127628261329d565b604082019050919050565b600061277a602583612c45565b9150612785826132ec565b604082019050919050565b600061279d602483612c45565b91506127a88261333b565b604082019050919050565b60006127c0601783612c56565b91506127cb8261338a565b601782019050919050565b60006127e3601783612c45565b91506127ee826133b3565b602082019050919050565b6000612806602583612c45565b9150612811826133dc565b604082019050919050565b6000612829601183612c56565b91506128348261342b565b601182019050919050565b600061284c602f83612c45565b915061285782613454565b604082019050919050565b600061286f601f83612c45565b915061287a826134a3565b602082019050919050565b6000612892601483612c45565b915061289d826134cc565b602082019050919050565b6128b181612dea565b82525050565b6128c081612df4565b82525050565b60006128d1826127b3565b91506128dd82856125bb565b91506128e88261281c565b91506128f482846125bb565b91508190509392505050565b60006020820190506129156000830184612555565b92915050565b60006020820190506129306000830184612564565b92915050565b600060208201905061294b6000830184612573565b92915050565b6000602082019050818103600083015261296b8184612582565b905092915050565b6000602082019050818103600083015261298c816125ec565b9050919050565b600060208201905081810360008301526129ac8161260f565b9050919050565b600060208201905081810360008301526129cc81612632565b9050919050565b600060208201905081810360008301526129ec81612655565b9050919050565b60006020820190508181036000830152612a0c81612678565b9050919050565b60006020820190508181036000830152612a2c8161269b565b9050919050565b60006020820190508181036000830152612a4c816126be565b9050919050565b60006020820190508181036000830152612a6c816126e1565b9050919050565b60006020820190508181036000830152612a8c81612704565b9050919050565b60006020820190508181036000830152612aac81612727565b9050919050565b60006020820190508181036000830152612acc8161274a565b9050919050565b60006020820190508181036000830152612aec8161276d565b9050919050565b60006020820190508181036000830152612b0c81612790565b9050919050565b60006020820190508181036000830152612b2c816127d6565b9050919050565b60006020820190508181036000830152612b4c816127f9565b9050919050565b60006020820190508181036000830152612b6c8161283f565b9050919050565b60006020820190508181036000830152612b8c81612862565b9050919050565b60006020820190508181036000830152612bac81612885565b9050919050565b6000602082019050612bc860008301846128a8565b92915050565b6000602082019050612be360008301846128b7565b92915050565b6000612bf3612c04565b9050612bff8282612e90565b919050565b6000604051905090565b600067ffffffffffffffff821115612c2957612c28612fc6565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612c6c82612dea565b9150612c7783612dea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cac57612cab612f0a565b5b828201905092915050565b6000612cc282612dea565b9150612ccd83612dea565b925082612cdd57612cdc612f39565b5b828204905092915050565b6000612cf382612dea565b9150612cfe83612dea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d3757612d36612f0a565b5b828202905092915050565b6000612d4d82612dea565b9150612d5883612dea565b925082821015612d6b57612d6a612f0a565b5b828203905092915050565b6000612d8182612dca565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612e1f578082015181840152602081019050612e04565b83811115612e2e576000848401525b50505050565b6000612e3f82612dea565b91506000821415612e5357612e52612f0a565b5b600182039050919050565b60006002820490506001821680612e7657607f821691505b60208210811415612e8a57612e89612f68565b5b50919050565b612e998261300e565b810181811067ffffffffffffffff82111715612eb857612eb7612fc6565b5b80604052505050565b6000612ecc82612dea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612eff57612efe612f0a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6d696e74656420746f6f206d6f72650000000000000000000000000000000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f41646472657373206d75737420626520636f6e74726163740000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920636f696e73000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f636f6e73656e737573204d696e7420746f6f2066617374000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f41646472657373206d757374206265207a65726f000000000000000000000000600082015250565b6134fe81612d76565b811461350957600080fd5b50565b61351581612d94565b811461352057600080fd5b50565b61352c81612d9e565b811461353757600080fd5b50565b61354381612dea565b811461354e57600080fd5b5056fea2646970667358221220f4f2bc32a715576937492ec4947f166940a2e15329585e805495e3076a5e251864736f6c63430008050033000000000000000000000000afd43ef5e17206182601907b89cb6dcd42e1aee50000000000000000000000005c81d77065c8f87fc2f4d53a11cb25efc3f9afd50000000000000000000000002e0a970fbb2e661d2978f1abaf0fe3dd194c03b7000000000000000000000000166161ee1937dbb3a9d36ea3443571800b63826d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102275760003560e01c806370a0823111610130578063a457c2d7116100b8578063d5abeb011161007c578063d5abeb011461066a578063dd62ed3e14610688578063e4079489146106b8578063e79973a1146106d4578063f2b661af146106f257610227565b8063a457c2d7146105b4578063a8ad2e06146105e4578063a9059cbb14610600578063d539139314610630578063d547741f1461064e57610227565b806391d14854116100ff57806391d148541461050e5780639386e1971461053e578063942fa8e11461055a57806395d89b4114610578578063a217fddf1461059657610227565b806370a082311461048657806379cc6790146104b65780637cb7cce5146104d2578063877107dc146104f057610227565b8063313ce567116101b357806342966c681161018257806342966c68146103f457806346fb6e40146104105780635cd1bd4c1461042e5780635d05125b1461044c57806369d1aabe1461046a57610227565b8063313ce5671461036c57806336568abe1461038a57806339509351146103a65780633f8c1a94146103d657610227565b806309f74c09116101fa57806309f74c09146102c857806318160ddd146102d257806323b872dd146102f0578063248a9ca3146103205780632f2ff15d1461035057610227565b806301ffc9a71461022c57806306fdde031461025c578063095ea7b31461027a57806309a3a9c1146102aa575b600080fd5b610246600480360381019061024191906124ce565b610710565b604051610253919061291b565b60405180910390f35b61026461078a565b6040516102719190612951565b60405180910390f35b610294600480360381019061028f91906123d8565b61081c565b6040516102a1919061291b565b60405180910390f35b6102b261083a565b6040516102bf9190612bb3565b60405180910390f35b6102d0610841565b005b6102da61098b565b6040516102e79190612bb3565b60405180910390f35b61030a60048036038101906103059190612329565b610995565b604051610317919061291b565b60405180910390f35b61033a60048036038101906103359190612461565b610a8d565b6040516103479190612936565b60405180910390f35b61036a6004803603810190610365919061248e565b610aad565b005b610374610ad6565b6040516103819190612bce565b60405180910390f35b6103a4600480360381019061039f919061248e565b610adf565b005b6103c060048036038101906103bb91906123d8565b610b62565b6040516103cd919061291b565b60405180910390f35b6103de610c0e565b6040516103eb9190612900565b60405180910390f35b61040e600480360381019061040991906124fb565b610c34565b005b610418610c48565b6040516104259190612936565b60405180910390f35b610436610c6c565b6040516104439190612bb3565b60405180910390f35b610454610c73565b6040516104619190612bb3565b60405180910390f35b610484600480360381019061047f91906122bc565b610c79565b005b6104a0600480360381019061049b91906122bc565b610dc9565b6040516104ad9190612bb3565b60405180910390f35b6104d060048036038101906104cb91906123d8565b610e12565b005b6104da610e8d565b6040516104e79190612bb3565b60405180910390f35b6104f8610e93565b6040516105059190612bb3565b60405180910390f35b6105286004803603810190610523919061248e565b610e9a565b604051610535919061291b565b60405180910390f35b61055860048036038101906105539190612418565b610f05565b005b61056261102c565b60405161056f9190612bb3565b60405180910390f35b610580611033565b60405161058d9190612951565b60405180910390f35b61059e6110c5565b6040516105ab9190612936565b60405180910390f35b6105ce60048036038101906105c991906123d8565b6110cc565b6040516105db919061291b565b60405180910390f35b6105fe60048036038101906105f9919061237c565b6111b7565b005b61061a600480360381019061061591906123d8565b611223565b604051610627919061291b565b60405180910390f35b610638611241565b6040516106459190612936565b60405180910390f35b6106686004803603810190610663919061248e565b611265565b005b61067261128e565b60405161067f9190612bb3565b60405180910390f35b6106a2600480360381019061069d91906122e9565b611294565b6040516106af9190612bb3565b60405180910390f35b6106d260048036038101906106cd91906122bc565b61131b565b005b6106dc611408565b6040516106e9919061291b565b60405180910390f35b6106fa61141b565b6040516107079190612bb3565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078357506107828261144c565b5b9050919050565b60606036805461079990612e5e565b80601f01602080910402602001604051908101604052809291908181526020018280546107c590612e5e565b80156108125780601f106107e757610100808354040283529160200191610812565b820191906000526020600020905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b60006108306108296114b6565b84846114be565b6001905092915050565b6101035481565b7f265075643878447c846a0de4efcf3bb6cd3990560733c11686a1cf7acde19c406108738161086e6114b6565b611689565b600073ffffffffffffffffffffffffffffffffffffffff1660fd60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109885760fd60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663453ba9e86040518163ffffffff1660e01b815260040160206040518083038186803b15801561093157600080fd5b505afa158015610945573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109699190612528565b60ff819055506101005460ff541115610987576101005460ff819055505b5b50565b6000603554905090565b60006109a2848484611726565b6000603460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006109ed6114b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6490612a73565b60405180910390fd5b610a8185610a796114b6565b8584036114be565b60019150509392505050565b600060c96000838152602001908152602001600020600101549050919050565b610ab682610a8d565b610ac781610ac26114b6565b611689565b610ad183836119aa565b505050565b60006012905090565b610ae76114b6565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b90612b53565b60405180910390fd5b610b5e8282611a8b565b5050565b6000610c04610b6f6114b6565b848460346000610b7d6114b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bff9190612c61565b6114be565b6001905092915050565b60fd60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c45610c3f6114b6565b82611b6d565b50565b7f265075643878447c846a0de4efcf3bb6cd3990560733c11686a1cf7acde19c4081565b6101015481565b60fc5481565b7f265075643878447c846a0de4efcf3bb6cd3990560733c11686a1cf7acde19c40610cab81610ca66114b6565b611689565b600073ffffffffffffffffffffffffffffffffffffffff1660fd60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390612b93565b60405180910390fd5b610d4582611d46565b610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b906129d3565b60405180910390fd5b8160fd60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610e2583610e206114b6565b611294565b905081811015610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6190612a93565b60405180910390fd5b610e7e83610e766114b6565b8484036114be565b610e888383611b6d565b505050565b60ff5481565b6101045481565b600060c9600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610f3781610f326114b6565b611689565b61010354610104541115610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790612973565b60405180910390fd5b60005b825181101561102757828181518110610f9f57610f9e612f97565b5b60200260200101516020015161010454610fb99190612c61565b6101048190555061010354610104541161101457611013838281518110610fe357610fe2612f97565b5b60200260200101516000015184838151811061100257611001612f97565b5b602002602001015160200151611d59565b5b808061101f90612ec1565b915050610f83565b505050565b6101025481565b60606037805461104290612e5e565b80601f016020809104026020016040519081016040528092919081815260200182805461106e90612e5e565b80156110bb5780601f10611090576101008083540402835291602001916110bb565b820191906000526020600020905b81548152906001019060200180831161109e57829003601f168201915b5050505050905090565b6000801b81565b600080603460006110db6114b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90612b33565b60405180910390fd5b6111ac6111a36114b6565b858584036114be565b600191505092915050565b60005b815181101561121e5761120a838383815181106111da576111d9612f97565b5b6020026020010151600001518484815181106111f9576111f8612f97565b5b602002602001015160200151610995565b50808061121690612ec1565b9150506111ba565b505050565b60006112376112306114b6565b8484611726565b6001905092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61126e82610a8d565b61127f8161127a6114b6565b611689565b6112898383611a8b565b505050565b60fe5481565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f265075643878447c846a0de4efcf3bb6cd3990560733c11686a1cf7acde19c4061134d816113486114b6565b611689565b4360646101025461135e9190612c61565b1061139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590612b13565b60405180910390fd5b6113af826113aa61141b565b611eba565b436101028190555060006223186060fc54610102546113ce9190612d42565b1015905080156114035760056004610101546113ea9190612ce8565b6113f49190612cb7565b610101819055504360fc819055505b505050565b60fb60009054906101000a900460ff1681565b60006101015460ff5461010254436114339190612d42565b61143d9190612ce8565b6114479190612ce8565b905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561152e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152590612af3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159590612a13565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161167c9190612bb3565b60405180910390a3505050565b6116938282610e9a565b611722576116b88173ffffffffffffffffffffffffffffffffffffffff166014611f1f565b6116c68360001c6020611f1f565b6040516020016116d79291906128c6565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117199190612951565b60405180910390fd5b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178d90612ad3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd906129b3565b60405180910390fd5b61181183838361215b565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188f90612a33565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461192d9190612c61565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119919190612bb3565b60405180910390a36119a4848484612160565b50505050565b6119b48282610e9a565b611a8757600160c9600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a2c6114b6565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611a958282610e9a565b15611b6957600060c9600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611b0e6114b6565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490612ab3565b60405180910390fd5b611be98260008361215b565b6000603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c67906129f3565b60405180910390fd5b818103603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160356000828254611cc89190612d42565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d2d9190612bb3565b60405180910390a3611d4183600084612160565b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090612b73565b60405180910390fd5b611dd56000838361215b565b8060356000828254611de79190612c61565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e3d9190612c61565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ea29190612bb3565b60405180910390a3611eb660008383612160565b5050565b60fe5481611ec661098b565b611ed09190612c61565b1115611f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0890612a53565b60405180910390fd5b611f1b8282611d59565b5050565b606060006002836002611f329190612ce8565b611f3c9190612c61565b67ffffffffffffffff811115611f5557611f54612fc6565b5b6040519080825280601f01601f191660200182016040528015611f875781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611fbf57611fbe612f97565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061202357612022612f97565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026120639190612ce8565b61206d9190612c61565b90505b600181111561210d577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106120af576120ae612f97565b5b1a60f81b8282815181106120c6576120c5612f97565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061210690612e34565b9050612070565b5060008414612151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214890612993565b60405180910390fd5b8091505092915050565b505050565b505050565b600061217861217384612c0e565b612be9565b9050808382526020820190508285604086028201111561219b5761219a612fff565b5b60005b858110156121cb57816121b18882612242565b84526020840193506040830192505060018101905061219e565b5050509392505050565b6000813590506121e4816134f5565b92915050565b600082601f8301126121ff576121fe612ff5565b5b813561220f848260208601612165565b91505092915050565b6000813590506122278161350c565b92915050565b60008135905061223c81613523565b92915050565b60006040828403121561225857612257612ffa565b5b6122626040612be9565b90506000612272848285016121d5565b600083015250602061228684828501612292565b60208301525092915050565b6000813590506122a18161353a565b92915050565b6000815190506122b68161353a565b92915050565b6000602082840312156122d2576122d1613009565b5b60006122e0848285016121d5565b91505092915050565b60008060408385031215612300576122ff613009565b5b600061230e858286016121d5565b925050602061231f858286016121d5565b9150509250929050565b60008060006060848603121561234257612341613009565b5b6000612350868287016121d5565b9350506020612361868287016121d5565b925050604061237286828701612292565b9150509250925092565b6000806040838503121561239357612392613009565b5b60006123a1858286016121d5565b925050602083013567ffffffffffffffff8111156123c2576123c1613004565b5b6123ce858286016121ea565b9150509250929050565b600080604083850312156123ef576123ee613009565b5b60006123fd858286016121d5565b925050602061240e85828601612292565b9150509250929050565b60006020828403121561242e5761242d613009565b5b600082013567ffffffffffffffff81111561244c5761244b613004565b5b612458848285016121ea565b91505092915050565b60006020828403121561247757612476613009565b5b600061248584828501612218565b91505092915050565b600080604083850312156124a5576124a4613009565b5b60006124b385828601612218565b92505060206124c4858286016121d5565b9150509250929050565b6000602082840312156124e4576124e3613009565b5b60006124f28482850161222d565b91505092915050565b60006020828403121561251157612510613009565b5b600061251f84828501612292565b91505092915050565b60006020828403121561253e5761253d613009565b5b600061254c848285016122a7565b91505092915050565b61255e81612d76565b82525050565b61256d81612d88565b82525050565b61257c81612d94565b82525050565b600061258d82612c3a565b6125978185612c45565b93506125a7818560208601612e01565b6125b08161300e565b840191505092915050565b60006125c682612c3a565b6125d08185612c56565b93506125e0818560208601612e01565b80840191505092915050565b60006125f9600f83612c45565b91506126048261301f565b602082019050919050565b600061261c602083612c45565b915061262782613048565b602082019050919050565b600061263f602383612c45565b915061264a82613071565b604082019050919050565b6000612662601883612c45565b915061266d826130c0565b602082019050919050565b6000612685602283612c45565b9150612690826130e9565b604082019050919050565b60006126a8602283612c45565b91506126b382613138565b604082019050919050565b60006126cb602683612c45565b91506126d682613187565b604082019050919050565b60006126ee600e83612c45565b91506126f9826131d6565b602082019050919050565b6000612711602883612c45565b915061271c826131ff565b604082019050919050565b6000612734602483612c45565b915061273f8261324e565b604082019050919050565b6000612757602183612c45565b91506127628261329d565b604082019050919050565b600061277a602583612c45565b9150612785826132ec565b604082019050919050565b600061279d602483612c45565b91506127a88261333b565b604082019050919050565b60006127c0601783612c56565b91506127cb8261338a565b601782019050919050565b60006127e3601783612c45565b91506127ee826133b3565b602082019050919050565b6000612806602583612c45565b9150612811826133dc565b604082019050919050565b6000612829601183612c56565b91506128348261342b565b601182019050919050565b600061284c602f83612c45565b915061285782613454565b604082019050919050565b600061286f601f83612c45565b915061287a826134a3565b602082019050919050565b6000612892601483612c45565b915061289d826134cc565b602082019050919050565b6128b181612dea565b82525050565b6128c081612df4565b82525050565b60006128d1826127b3565b91506128dd82856125bb565b91506128e88261281c565b91506128f482846125bb565b91508190509392505050565b60006020820190506129156000830184612555565b92915050565b60006020820190506129306000830184612564565b92915050565b600060208201905061294b6000830184612573565b92915050565b6000602082019050818103600083015261296b8184612582565b905092915050565b6000602082019050818103600083015261298c816125ec565b9050919050565b600060208201905081810360008301526129ac8161260f565b9050919050565b600060208201905081810360008301526129cc81612632565b9050919050565b600060208201905081810360008301526129ec81612655565b9050919050565b60006020820190508181036000830152612a0c81612678565b9050919050565b60006020820190508181036000830152612a2c8161269b565b9050919050565b60006020820190508181036000830152612a4c816126be565b9050919050565b60006020820190508181036000830152612a6c816126e1565b9050919050565b60006020820190508181036000830152612a8c81612704565b9050919050565b60006020820190508181036000830152612aac81612727565b9050919050565b60006020820190508181036000830152612acc8161274a565b9050919050565b60006020820190508181036000830152612aec8161276d565b9050919050565b60006020820190508181036000830152612b0c81612790565b9050919050565b60006020820190508181036000830152612b2c816127d6565b9050919050565b60006020820190508181036000830152612b4c816127f9565b9050919050565b60006020820190508181036000830152612b6c8161283f565b9050919050565b60006020820190508181036000830152612b8c81612862565b9050919050565b60006020820190508181036000830152612bac81612885565b9050919050565b6000602082019050612bc860008301846128a8565b92915050565b6000602082019050612be360008301846128b7565b92915050565b6000612bf3612c04565b9050612bff8282612e90565b919050565b6000604051905090565b600067ffffffffffffffff821115612c2957612c28612fc6565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612c6c82612dea565b9150612c7783612dea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cac57612cab612f0a565b5b828201905092915050565b6000612cc282612dea565b9150612ccd83612dea565b925082612cdd57612cdc612f39565b5b828204905092915050565b6000612cf382612dea565b9150612cfe83612dea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d3757612d36612f0a565b5b828202905092915050565b6000612d4d82612dea565b9150612d5883612dea565b925082821015612d6b57612d6a612f0a565b5b828203905092915050565b6000612d8182612dca565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612e1f578082015181840152602081019050612e04565b83811115612e2e576000848401525b50505050565b6000612e3f82612dea565b91506000821415612e5357612e52612f0a565b5b600182039050919050565b60006002820490506001821680612e7657607f821691505b60208210811415612e8a57612e89612f68565b5b50919050565b612e998261300e565b810181811067ffffffffffffffff82111715612eb857612eb7612fc6565b5b80604052505050565b6000612ecc82612dea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612eff57612efe612f0a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6d696e74656420746f6f206d6f72650000000000000000000000000000000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f41646472657373206d75737420626520636f6e74726163740000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920636f696e73000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f636f6e73656e737573204d696e7420746f6f2066617374000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f41646472657373206d757374206265207a65726f000000000000000000000000600082015250565b6134fe81612d76565b811461350957600080fd5b50565b61351581612d94565b811461352057600080fd5b50565b61352c81612d9e565b811461353757600080fd5b50565b61354381612dea565b811461354e57600080fd5b5056fea2646970667358221220f4f2bc32a715576937492ec4947f166940a2e15329585e805495e3076a5e251864736f6c63430008050033

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

000000000000000000000000afd43ef5e17206182601907b89cb6dcd42e1aee50000000000000000000000005c81d77065c8f87fc2f4d53a11cb25efc3f9afd50000000000000000000000002e0a970fbb2e661d2978f1abaf0fe3dd194c03b7000000000000000000000000166161ee1937dbb3a9d36ea3443571800b63826d

-----Decoded View---------------
Arg [0] : daoAddr (address): 0xAfD43EF5e17206182601907b89cB6DCd42e1aEE5
Arg [1] : teamAddr (address): 0x5c81D77065C8F87Fc2F4D53a11cb25EfC3F9AFd5
Arg [2] : consensusAddr (address): 0x2E0a970Fbb2E661d2978F1aBAf0FE3Dd194C03b7
Arg [3] : batchMintAddr (address): 0x166161EE1937dbb3a9D36eA3443571800B63826D

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000afd43ef5e17206182601907b89cb6dcd42e1aee5
Arg [1] : 0000000000000000000000005c81d77065c8f87fc2f4d53a11cb25efc3f9afd5
Arg [2] : 0000000000000000000000002e0a970fbb2e661d2978f1abaf0fe3dd194c03b7
Arg [3] : 000000000000000000000000166161ee1937dbb3a9d36ea3443571800b63826d


Deployed Bytecode Sourcemap

52248:3605:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29243:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40424:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42591:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52953:51;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54201:290;;;:::i;:::-;;41544:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43242:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30687:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31072:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41386:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32120:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44143:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52581:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51284:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52434:78;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52740:51;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52553:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53942:253;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41715:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51694:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52676:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53011:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29550:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55309:353;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52910:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40643:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28630:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44861:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55670:180;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42055:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52365:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31464:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52618:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42293:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54524:458;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52519:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54990:150;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29243:215;29328:4;29367:43;29352:58;;;:11;:58;;;;:98;;;;29414:36;29438:11;29414:23;:36::i;:::-;29352:98;29345:105;;29243:215;;;:::o;40424:100::-;40478:13;40511:5;40504:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40424:100;:::o;42591:169::-;42674:4;42691:39;42700:12;:10;:12::i;:::-;42714:7;42723:6;42691:8;:39::i;:::-;42748:4;42741:11;;42591:169;;;;:::o;52953:51::-;;;;:::o;54201:290::-;52480:32;29121:30;29132:4;29138:12;:10;:12::i;:::-;29121:10;:30::i;:::-;54300:1:::1;54277:25;;:13;;;;;;;;;;;:25;;;54274:210;;54338:13;;;;;;;;;;;54331:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54318:11;:49;;;;54397:14;;54385:11;;:26;54382:91;;;54443:14;;54431:11;:26;;;;54382:91;54274:210;54201:290:::0;:::o;41544:108::-;41605:7;41632:12;;41625:19;;41544:108;:::o;43242:492::-;43382:4;43399:36;43409:6;43417:9;43428:6;43399:9;:36::i;:::-;43448:24;43475:11;:19;43487:6;43475:19;;;;;;;;;;;;;;;:33;43495:12;:10;:12::i;:::-;43475:33;;;;;;;;;;;;;;;;43448:60;;43547:6;43527:16;:26;;43519:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;43634:57;43643:6;43651:12;:10;:12::i;:::-;43684:6;43665:16;:25;43634:8;:57::i;:::-;43722:4;43715:11;;;43242:492;;;;;:::o;30687:123::-;30753:7;30780:6;:12;30787:4;30780:12;;;;;;;;;;;:22;;;30773:29;;30687:123;;;:::o;31072:147::-;31155:18;31168:4;31155:12;:18::i;:::-;29121:30;29132:4;29138:12;:10;:12::i;:::-;29121:10;:30::i;:::-;31186:25:::1;31197:4;31203:7;31186:10;:25::i;:::-;31072:147:::0;;;:::o;41386:93::-;41444:5;41469:2;41462:9;;41386:93;:::o;32120:218::-;32227:12;:10;:12::i;:::-;32216:23;;:7;:23;;;32208:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;32304:26;32316:4;32322:7;32304:11;:26::i;:::-;32120:218;;:::o;44143:215::-;44231:4;44248:80;44257:12;:10;:12::i;:::-;44271:7;44317:10;44280:11;:25;44292:12;:10;:12::i;:::-;44280:25;;;;;;;;;;;;;;;:34;44306:7;44280:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;44248:8;:80::i;:::-;44346:4;44339:11;;44143:215;;;;:::o;52581:28::-;;;;;;;;;;;;;:::o;51284:91::-;51340:27;51346:12;:10;:12::i;:::-;51360:6;51340:5;:27::i;:::-;51284:91;:::o;52434:78::-;52480:32;52434:78;:::o;52740:51::-;;;;:::o;52553:21::-;;;;:::o;53942:253::-;52480:32;29121:30;29132:4;29138:12;:10;:12::i;:::-;29121:10;:30::i;:::-;54061:1:::1;54037:26;;:13;;;;;;;;;;;:26;;;54029:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;54106:24;54125:4;54106:18;:24::i;:::-;54098:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;54183:4;54169:13;;:18;;;;;;;;;;;;;;;;;;53942:253:::0;;:::o;41715:127::-;41789:7;41816:9;:18;41826:7;41816:18;;;;;;;;;;;;;;;;41809:25;;41715:127;;;:::o;51694:368::-;51771:24;51798:32;51808:7;51817:12;:10;:12::i;:::-;51798:9;:32::i;:::-;51771:59;;51869:6;51849:16;:26;;51841:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;51952:58;51961:7;51970:12;:10;:12::i;:::-;52003:6;51984:16;:25;51952:8;:58::i;:::-;52032:22;52038:7;52047:6;52032:5;:22::i;:::-;51760:302;51694:368;;:::o;52676:23::-;;;;:::o;53011:25::-;;;;:::o;29550:139::-;29628:4;29652:6;:12;29659:4;29652:12;;;;;;;;;;;:20;;:29;29673:7;29652:29;;;;;;;;;;;;;;;;;;;;;;;;;29645:36;;29550:139;;;;:::o;55309:353::-;52403:24;29121:30;29132:4;29138:12;:10;:12::i;:::-;29121:10;:30::i;:::-;55414:12:::1;;55401:11;;:25;;55393:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;55460:6;55456:199;55472:2;:9;55470:1;:11;55456:199;;;55525:2;55528:1;55525:5;;;;;;;;:::i;:::-;;;;;;;;:12;;;55513:11;;:24;;;;:::i;:::-;55501:11;:36;;;;55568:12;;55555:11;;:25;55552:92;;55600:28;55606:2;55609:1;55606:5;;;;;;;;:::i;:::-;;;;;;;;:8;;;55615:2;55618:1;55615:5;;;;;;;;:::i;:::-;;;;;;;;:12;;;55600:5;:28::i;:::-;55552:92;55482:3;;;;;:::i;:::-;;;;55456:199;;;;55309:353:::0;;:::o;52910:34::-;;;;:::o;40643:104::-;40699:13;40732:7;40725:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40643:104;:::o;28630:49::-;28675:4;28630:49;;;:::o;44861:413::-;44954:4;44971:24;44998:11;:25;45010:12;:10;:12::i;:::-;44998:25;;;;;;;;;;;;;;;:34;45024:7;44998:34;;;;;;;;;;;;;;;;44971:61;;45071:15;45051:16;:35;;45043:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45164:67;45173:12;:10;:12::i;:::-;45187:7;45215:15;45196:16;:34;45164:8;:67::i;:::-;45262:4;45255:11;;;44861:413;;;;:::o;55670:180::-;55750:6;55746:97;55762:2;:9;55760:1;:11;55746:97;;;55791:40;55804:4;55809:2;55812:1;55809:5;;;;;;;;:::i;:::-;;;;;;;;:8;;;55818:2;55821:1;55818:5;;;;;;;;:::i;:::-;;;;;;;;:12;;;55791;:40::i;:::-;;55772:3;;;;;:::i;:::-;;;;55746:97;;;;55670:180;;:::o;42055:175::-;42141:4;42158:42;42168:12;:10;:12::i;:::-;42182:9;42193:6;42158:9;:42::i;:::-;42218:4;42211:11;;42055:175;;;;:::o;52365:62::-;52403:24;52365:62;:::o;31464:149::-;31548:18;31561:4;31548:12;:18::i;:::-;29121:30;29132:4;29138:12;:10;:12::i;:::-;29121:10;:30::i;:::-;31579:26:::1;31591:4;31597:7;31579:11;:26::i;:::-;31464:149:::0;;;:::o;52618:49::-;;;;:::o;42293:151::-;42382:7;42409:11;:18;42421:5;42409:18;;;;;;;;;;;;;;;:27;42428:7;42409:27;;;;;;;;;;;;;;;;42402:34;;42293:151;;;;:::o;54524:458::-;52480:32;29121:30;29132:4;29138:12;:10;:12::i;:::-;29121:10;:30::i;:::-;54659:12:::1;52898:3;54613:22;;:45;;;;:::i;:::-;:58;54605:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;54709:25;54714:2;54717:16;:14;:16::i;:::-;54709:4;:25::i;:::-;54769:12;54745:22;:36;;;;54792:9;52845:7;54826:9;;54803:22;;:32;;;;:::i;:::-;54802:51;;54792:61;;54867:4;54864:111;;;54925:1;54923;54905:17;;:19;;;;:::i;:::-;:21;;;;:::i;:::-;54887:17;:39;;;;54951:12;54941:9;:22;;;;54864:111;54594:388;54524:458:::0;;:::o;52519:27::-;;;;;;;;;;;;;:::o;54990:150::-;55035:11;55115:17;;55103:11;;55079:22;;55066:12;:35;;;;:::i;:::-;55065:49;;;;:::i;:::-;:67;;;;:::i;:::-;55058:74;;54990:150;:::o;24965:168::-;25050:4;25089:36;25074:51;;;:11;:51;;;;25067:58;;24965:168;;;:::o;26075:98::-;26128:7;26155:10;26148:17;;26075:98;:::o;48545:380::-;48698:1;48681:19;;:5;:19;;;;48673:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48779:1;48760:21;;:7;:21;;;;48752:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48863:6;48833:11;:18;48845:5;48833:18;;;;;;;;;;;;;;;:27;48852:7;48833:27;;;;;;;;;;;;;;;:36;;;;48901:7;48885:32;;48894:5;48885:32;;;48910:6;48885:32;;;;;;:::i;:::-;;;;;;;;48545:380;;;:::o;29979:519::-;30060:22;30068:4;30074:7;30060;:22::i;:::-;30055:436;;30248:52;30287:7;30248:52;;30297:2;30248:30;:52::i;:::-;30373:49;30412:4;30404:13;;30419:2;30373:30;:49::i;:::-;30153:292;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30099:380;;;;;;;;;;;:::i;:::-;;;;;;;;30055:436;29979:519;;:::o;45764:733::-;45922:1;45904:20;;:6;:20;;;;45896:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;46006:1;45985:23;;:9;:23;;;;45977:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;46061:47;46082:6;46090:9;46101:6;46061:20;:47::i;:::-;46121:21;46145:9;:17;46155:6;46145:17;;;;;;;;;;;;;;;;46121:41;;46198:6;46181:13;:23;;46173:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46319:6;46303:13;:22;46283:9;:17;46293:6;46283:17;;;;;;;;;;;;;;;:42;;;;46371:6;46347:9;:20;46357:9;46347:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;46412:9;46395:35;;46404:6;46395:35;;;46423:6;46395:35;;;;;;:::i;:::-;;;;;;;;46443:46;46463:6;46471:9;46482:6;46443:19;:46::i;:::-;45885:612;45764:733;;;:::o;33621:238::-;33705:22;33713:4;33719:7;33705;:22::i;:::-;33700:152;;33776:4;33744:6;:12;33751:4;33744:12;;;;;;;;;;;:20;;:29;33765:7;33744:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;33827:12;:10;:12::i;:::-;33800:40;;33818:7;33800:40;;33812:4;33800:40;;;;;;;;;;33700:152;33621:238;;:::o;33991:239::-;34075:22;34083:4;34089:7;34075;:22::i;:::-;34071:152;;;34146:5;34114:6;:12;34121:4;34114:12;;;;;;;;;;;:20;;:29;34135:7;34114:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;34198:12;:10;:12::i;:::-;34171:40;;34189:7;34171:40;;34183:4;34171:40;;;;;;;;;;34071:152;33991:239;;:::o;47516:591::-;47619:1;47600:21;;:7;:21;;;;47592:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;47672:49;47693:7;47710:1;47714:6;47672:20;:49::i;:::-;47734:22;47759:9;:18;47769:7;47759:18;;;;;;;;;;;;;;;;47734:43;;47814:6;47796:14;:24;;47788:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;47933:6;47916:14;:23;47895:9;:18;47905:7;47895:18;;;;;;;;;;;;;;;:44;;;;47977:6;47961:12;;:22;;;;;;;:::i;:::-;;;;;;;;48027:1;48001:37;;48010:7;48001:37;;;48031:6;48001:37;;;;;;:::i;:::-;;;;;;;;48051:48;48071:7;48088:1;48092:6;48051:19;:48::i;:::-;47581:526;47516:591;;:::o;820:387::-;880:4;1088:12;1155:7;1143:20;1135:28;;1198:1;1191:4;:8;1184:15;;;820:387;;;:::o;46784:399::-;46887:1;46868:21;;:7;:21;;;;46860:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46938:49;46967:1;46971:7;46980:6;46938:20;:49::i;:::-;47016:6;47000:12;;:22;;;;;;;:::i;:::-;;;;;;;;47055:6;47033:9;:18;47043:7;47033:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;47098:7;47077:37;;47094:1;47077:37;;;47107:6;47077:37;;;;;;:::i;:::-;;;;;;;;47127:48;47155:1;47159:7;47168:6;47127:19;:48::i;:::-;46784:399;;:::o;55148:155::-;55240:9;;55232:6;55218:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:31;;55210:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;55278:17;55284:2;55288:6;55278:5;:17::i;:::-;55148:155;;:::o;17863:451::-;17938:13;17964:19;18009:1;18000:6;17996:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;17986:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17964:47;;18022:15;:6;18029:1;18022:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;18048;:6;18055:1;18048:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;18079:9;18104:1;18095:6;18091:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;18079:26;;18074:135;18111:1;18107;:5;18074:135;;;18146:12;18167:3;18159:5;:11;18146:25;;;;;;;:::i;:::-;;;;;18134:6;18141:1;18134:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;18196:1;18186:11;;;;;18114:3;;;;:::i;:::-;;;18074:135;;;;18236:1;18227:5;:10;18219:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;18299:6;18285:21;;;17863:451;;;;:::o;49525:125::-;;;;:::o;50254:124::-;;;;:::o;48:803:1:-;171:5;196:108;212:91;296:6;212:91;:::i;:::-;196:108;:::i;:::-;187:117;;324:5;353:6;346:5;339:21;387:4;380:5;376:16;369:23;;413:6;463:3;455:4;447:6;443:17;438:3;434:27;431:36;428:2;;;482:79;;:::i;:::-;428:2;595:1;580:265;605:6;602:1;599:13;580:265;;;673:3;702:64;762:3;750:10;702:64;:::i;:::-;697:3;690:77;796:4;791:3;787:14;780:21;;830:4;825:3;821:14;814:21;;640:205;627:1;624;620:9;615:14;;580:265;;;584:14;177:674;;;;;;;:::o;857:139::-;903:5;941:6;928:20;919:29;;957:33;984:5;957:33;:::i;:::-;909:87;;;;:::o;1043:424::-;1141:5;1190:3;1183:4;1175:6;1171:17;1167:27;1157:2;;1198:79;;:::i;:::-;1157:2;1315:6;1302:20;1340:121;1457:3;1449:6;1442:4;1434:6;1430:17;1340:121;:::i;:::-;1331:130;;1147:320;;;;;:::o;1473:139::-;1519:5;1557:6;1544:20;1535:29;;1573:33;1600:5;1573:33;:::i;:::-;1525:87;;;;:::o;1618:137::-;1663:5;1701:6;1688:20;1679:29;;1717:32;1743:5;1717:32;:::i;:::-;1669:86;;;;:::o;1800:576::-;1876:5;1920:4;1908:9;1903:3;1899:19;1895:30;1892:2;;;1928:79;;:::i;:::-;1892:2;2027:21;2043:4;2027:21;:::i;:::-;2018:30;;2105:1;2145:49;2190:3;2181:6;2170:9;2166:22;2145:49;:::i;:::-;2138:4;2131:5;2127:16;2120:75;2058:148;2267:2;2308:49;2353:3;2344:6;2333:9;2329:22;2308:49;:::i;:::-;2301:4;2294:5;2290:16;2283:75;2216:153;1882:494;;;;:::o;2382:139::-;2428:5;2466:6;2453:20;2444:29;;2482:33;2509:5;2482:33;:::i;:::-;2434:87;;;;:::o;2527:143::-;2584:5;2615:6;2609:13;2600:22;;2631:33;2658:5;2631:33;:::i;:::-;2590:80;;;;:::o;2676:329::-;2735:6;2784:2;2772:9;2763:7;2759:23;2755:32;2752:2;;;2790:79;;:::i;:::-;2752:2;2910:1;2935:53;2980:7;2971:6;2960:9;2956:22;2935:53;:::i;:::-;2925:63;;2881:117;2742:263;;;;:::o;3011:474::-;3079:6;3087;3136:2;3124:9;3115:7;3111:23;3107:32;3104:2;;;3142:79;;:::i;:::-;3104:2;3262:1;3287:53;3332:7;3323:6;3312:9;3308:22;3287:53;:::i;:::-;3277:63;;3233:117;3389:2;3415:53;3460:7;3451:6;3440:9;3436:22;3415:53;:::i;:::-;3405:63;;3360:118;3094:391;;;;;:::o;3491:619::-;3568:6;3576;3584;3633:2;3621:9;3612:7;3608:23;3604:32;3601:2;;;3639:79;;:::i;:::-;3601:2;3759:1;3784:53;3829:7;3820:6;3809:9;3805:22;3784:53;:::i;:::-;3774:63;;3730:117;3886:2;3912:53;3957:7;3948:6;3937:9;3933:22;3912:53;:::i;:::-;3902:63;;3857:118;4014:2;4040:53;4085:7;4076:6;4065:9;4061:22;4040:53;:::i;:::-;4030:63;;3985:118;3591:519;;;;;:::o;4116:738::-;4236:6;4244;4293:2;4281:9;4272:7;4268:23;4264:32;4261:2;;;4299:79;;:::i;:::-;4261:2;4419:1;4444:53;4489:7;4480:6;4469:9;4465:22;4444:53;:::i;:::-;4434:63;;4390:117;4574:2;4563:9;4559:18;4546:32;4605:18;4597:6;4594:30;4591:2;;;4627:79;;:::i;:::-;4591:2;4732:105;4829:7;4820:6;4809:9;4805:22;4732:105;:::i;:::-;4722:115;;4517:330;4251:603;;;;;:::o;4860:474::-;4928:6;4936;4985:2;4973:9;4964:7;4960:23;4956:32;4953:2;;;4991:79;;:::i;:::-;4953:2;5111:1;5136:53;5181:7;5172:6;5161:9;5157:22;5136:53;:::i;:::-;5126:63;;5082:117;5238:2;5264:53;5309:7;5300:6;5289:9;5285:22;5264:53;:::i;:::-;5254:63;;5209:118;4943:391;;;;;:::o;5340:593::-;5451:6;5500:2;5488:9;5479:7;5475:23;5471:32;5468:2;;;5506:79;;:::i;:::-;5468:2;5654:1;5643:9;5639:17;5626:31;5684:18;5676:6;5673:30;5670:2;;;5706:79;;:::i;:::-;5670:2;5811:105;5908:7;5899:6;5888:9;5884:22;5811:105;:::i;:::-;5801:115;;5597:329;5458:475;;;;:::o;5939:329::-;5998:6;6047:2;6035:9;6026:7;6022:23;6018:32;6015:2;;;6053:79;;:::i;:::-;6015:2;6173:1;6198:53;6243:7;6234:6;6223:9;6219:22;6198:53;:::i;:::-;6188:63;;6144:117;6005:263;;;;:::o;6274:474::-;6342:6;6350;6399:2;6387:9;6378:7;6374:23;6370:32;6367:2;;;6405:79;;:::i;:::-;6367:2;6525:1;6550:53;6595:7;6586:6;6575:9;6571:22;6550:53;:::i;:::-;6540:63;;6496:117;6652:2;6678:53;6723:7;6714:6;6703:9;6699:22;6678:53;:::i;:::-;6668:63;;6623:118;6357:391;;;;;:::o;6754:327::-;6812:6;6861:2;6849:9;6840:7;6836:23;6832:32;6829:2;;;6867:79;;:::i;:::-;6829:2;6987:1;7012:52;7056:7;7047:6;7036:9;7032:22;7012:52;:::i;:::-;7002:62;;6958:116;6819:262;;;;:::o;7087:329::-;7146:6;7195:2;7183:9;7174:7;7170:23;7166:32;7163:2;;;7201:79;;:::i;:::-;7163:2;7321:1;7346:53;7391:7;7382:6;7371:9;7367:22;7346:53;:::i;:::-;7336:63;;7292:117;7153:263;;;;:::o;7422:351::-;7492:6;7541:2;7529:9;7520:7;7516:23;7512:32;7509:2;;;7547:79;;:::i;:::-;7509:2;7667:1;7692:64;7748:7;7739:6;7728:9;7724:22;7692:64;:::i;:::-;7682:74;;7638:128;7499:274;;;;:::o;7779:118::-;7866:24;7884:5;7866:24;:::i;:::-;7861:3;7854:37;7844:53;;:::o;7903:109::-;7984:21;7999:5;7984:21;:::i;:::-;7979:3;7972:34;7962:50;;:::o;8018:118::-;8105:24;8123:5;8105:24;:::i;:::-;8100:3;8093:37;8083:53;;:::o;8142:364::-;8230:3;8258:39;8291:5;8258:39;:::i;:::-;8313:71;8377:6;8372:3;8313:71;:::i;:::-;8306:78;;8393:52;8438:6;8433:3;8426:4;8419:5;8415:16;8393:52;:::i;:::-;8470:29;8492:6;8470:29;:::i;:::-;8465:3;8461:39;8454:46;;8234:272;;;;;:::o;8512:377::-;8618:3;8646:39;8679:5;8646:39;:::i;:::-;8701:89;8783:6;8778:3;8701:89;:::i;:::-;8694:96;;8799:52;8844:6;8839:3;8832:4;8825:5;8821:16;8799:52;:::i;:::-;8876:6;8871:3;8867:16;8860:23;;8622:267;;;;;:::o;8895:366::-;9037:3;9058:67;9122:2;9117:3;9058:67;:::i;:::-;9051:74;;9134:93;9223:3;9134:93;:::i;:::-;9252:2;9247:3;9243:12;9236:19;;9041:220;;;:::o;9267:366::-;9409:3;9430:67;9494:2;9489:3;9430:67;:::i;:::-;9423:74;;9506:93;9595:3;9506:93;:::i;:::-;9624:2;9619:3;9615:12;9608:19;;9413:220;;;:::o;9639:366::-;9781:3;9802:67;9866:2;9861:3;9802:67;:::i;:::-;9795:74;;9878:93;9967:3;9878:93;:::i;:::-;9996:2;9991:3;9987:12;9980:19;;9785:220;;;:::o;10011:366::-;10153:3;10174:67;10238:2;10233:3;10174:67;:::i;:::-;10167:74;;10250:93;10339:3;10250:93;:::i;:::-;10368:2;10363:3;10359:12;10352:19;;10157:220;;;:::o;10383:366::-;10525:3;10546:67;10610:2;10605:3;10546:67;:::i;:::-;10539:74;;10622:93;10711:3;10622:93;:::i;:::-;10740:2;10735:3;10731:12;10724:19;;10529:220;;;:::o;10755:366::-;10897:3;10918:67;10982:2;10977:3;10918:67;:::i;:::-;10911:74;;10994:93;11083:3;10994:93;:::i;:::-;11112:2;11107:3;11103:12;11096:19;;10901:220;;;:::o;11127:366::-;11269:3;11290:67;11354:2;11349:3;11290:67;:::i;:::-;11283:74;;11366:93;11455:3;11366:93;:::i;:::-;11484:2;11479:3;11475:12;11468:19;;11273:220;;;:::o;11499:366::-;11641:3;11662:67;11726:2;11721:3;11662:67;:::i;:::-;11655:74;;11738:93;11827:3;11738:93;:::i;:::-;11856:2;11851:3;11847:12;11840:19;;11645:220;;;:::o;11871:366::-;12013:3;12034:67;12098:2;12093:3;12034:67;:::i;:::-;12027:74;;12110:93;12199:3;12110:93;:::i;:::-;12228:2;12223:3;12219:12;12212:19;;12017:220;;;:::o;12243:366::-;12385:3;12406:67;12470:2;12465:3;12406:67;:::i;:::-;12399:74;;12482:93;12571:3;12482:93;:::i;:::-;12600:2;12595:3;12591:12;12584:19;;12389:220;;;:::o;12615:366::-;12757:3;12778:67;12842:2;12837:3;12778:67;:::i;:::-;12771:74;;12854:93;12943:3;12854:93;:::i;:::-;12972:2;12967:3;12963:12;12956:19;;12761:220;;;:::o;12987:366::-;13129:3;13150:67;13214:2;13209:3;13150:67;:::i;:::-;13143:74;;13226:93;13315:3;13226:93;:::i;:::-;13344:2;13339:3;13335:12;13328:19;;13133:220;;;:::o;13359:366::-;13501:3;13522:67;13586:2;13581:3;13522:67;:::i;:::-;13515:74;;13598:93;13687:3;13598:93;:::i;:::-;13716:2;13711:3;13707:12;13700:19;;13505:220;;;:::o;13731:402::-;13891:3;13912:85;13994:2;13989:3;13912:85;:::i;:::-;13905:92;;14006:93;14095:3;14006:93;:::i;:::-;14124:2;14119:3;14115:12;14108:19;;13895:238;;;:::o;14139:366::-;14281:3;14302:67;14366:2;14361:3;14302:67;:::i;:::-;14295:74;;14378:93;14467:3;14378:93;:::i;:::-;14496:2;14491:3;14487:12;14480:19;;14285:220;;;:::o;14511:366::-;14653:3;14674:67;14738:2;14733:3;14674:67;:::i;:::-;14667:74;;14750:93;14839:3;14750:93;:::i;:::-;14868:2;14863:3;14859:12;14852:19;;14657:220;;;:::o;14883:402::-;15043:3;15064:85;15146:2;15141:3;15064:85;:::i;:::-;15057:92;;15158:93;15247:3;15158:93;:::i;:::-;15276:2;15271:3;15267:12;15260:19;;15047:238;;;:::o;15291:366::-;15433:3;15454:67;15518:2;15513:3;15454:67;:::i;:::-;15447:74;;15530:93;15619:3;15530:93;:::i;:::-;15648:2;15643:3;15639:12;15632:19;;15437:220;;;:::o;15663:366::-;15805:3;15826:67;15890:2;15885:3;15826:67;:::i;:::-;15819:74;;15902:93;15991:3;15902:93;:::i;:::-;16020:2;16015:3;16011:12;16004:19;;15809:220;;;:::o;16035:366::-;16177:3;16198:67;16262:2;16257:3;16198:67;:::i;:::-;16191:74;;16274:93;16363:3;16274:93;:::i;:::-;16392:2;16387:3;16383:12;16376:19;;16181:220;;;:::o;16407:118::-;16494:24;16512:5;16494:24;:::i;:::-;16489:3;16482:37;16472:53;;:::o;16531:112::-;16614:22;16630:5;16614:22;:::i;:::-;16609:3;16602:35;16592:51;;:::o;16649:967::-;17031:3;17053:148;17197:3;17053:148;:::i;:::-;17046:155;;17218:95;17309:3;17300:6;17218:95;:::i;:::-;17211:102;;17330:148;17474:3;17330:148;:::i;:::-;17323:155;;17495:95;17586:3;17577:6;17495:95;:::i;:::-;17488:102;;17607:3;17600:10;;17035:581;;;;;:::o;17622:222::-;17715:4;17753:2;17742:9;17738:18;17730:26;;17766:71;17834:1;17823:9;17819:17;17810:6;17766:71;:::i;:::-;17720:124;;;;:::o;17850:210::-;17937:4;17975:2;17964:9;17960:18;17952:26;;17988:65;18050:1;18039:9;18035:17;18026:6;17988:65;:::i;:::-;17942:118;;;;:::o;18066:222::-;18159:4;18197:2;18186:9;18182:18;18174:26;;18210:71;18278:1;18267:9;18263:17;18254:6;18210:71;:::i;:::-;18164:124;;;;:::o;18294:313::-;18407:4;18445:2;18434:9;18430:18;18422:26;;18494:9;18488:4;18484:20;18480:1;18469:9;18465:17;18458:47;18522:78;18595:4;18586:6;18522:78;:::i;:::-;18514:86;;18412:195;;;;:::o;18613:419::-;18779:4;18817:2;18806:9;18802:18;18794:26;;18866:9;18860:4;18856:20;18852:1;18841:9;18837:17;18830:47;18894:131;19020:4;18894:131;:::i;:::-;18886:139;;18784:248;;;:::o;19038:419::-;19204:4;19242:2;19231:9;19227:18;19219:26;;19291:9;19285:4;19281:20;19277:1;19266:9;19262:17;19255:47;19319:131;19445:4;19319:131;:::i;:::-;19311:139;;19209:248;;;:::o;19463:419::-;19629:4;19667:2;19656:9;19652:18;19644:26;;19716:9;19710:4;19706:20;19702:1;19691:9;19687:17;19680:47;19744:131;19870:4;19744:131;:::i;:::-;19736:139;;19634:248;;;:::o;19888:419::-;20054:4;20092:2;20081:9;20077:18;20069:26;;20141:9;20135:4;20131:20;20127:1;20116:9;20112:17;20105:47;20169:131;20295:4;20169:131;:::i;:::-;20161:139;;20059:248;;;:::o;20313:419::-;20479:4;20517:2;20506:9;20502:18;20494:26;;20566:9;20560:4;20556:20;20552:1;20541:9;20537:17;20530:47;20594:131;20720:4;20594:131;:::i;:::-;20586:139;;20484:248;;;:::o;20738:419::-;20904:4;20942:2;20931:9;20927:18;20919:26;;20991:9;20985:4;20981:20;20977:1;20966:9;20962:17;20955:47;21019:131;21145:4;21019:131;:::i;:::-;21011:139;;20909:248;;;:::o;21163:419::-;21329:4;21367:2;21356:9;21352:18;21344:26;;21416:9;21410:4;21406:20;21402:1;21391:9;21387:17;21380:47;21444:131;21570:4;21444:131;:::i;:::-;21436:139;;21334:248;;;:::o;21588:419::-;21754:4;21792:2;21781:9;21777:18;21769:26;;21841:9;21835:4;21831:20;21827:1;21816:9;21812:17;21805:47;21869:131;21995:4;21869:131;:::i;:::-;21861:139;;21759:248;;;:::o;22013:419::-;22179:4;22217:2;22206:9;22202:18;22194:26;;22266:9;22260:4;22256:20;22252:1;22241:9;22237:17;22230:47;22294:131;22420:4;22294:131;:::i;:::-;22286:139;;22184:248;;;:::o;22438:419::-;22604:4;22642:2;22631:9;22627:18;22619:26;;22691:9;22685:4;22681:20;22677:1;22666:9;22662:17;22655:47;22719:131;22845:4;22719:131;:::i;:::-;22711:139;;22609:248;;;:::o;22863:419::-;23029:4;23067:2;23056:9;23052:18;23044:26;;23116:9;23110:4;23106:20;23102:1;23091:9;23087:17;23080:47;23144:131;23270:4;23144:131;:::i;:::-;23136:139;;23034:248;;;:::o;23288:419::-;23454:4;23492:2;23481:9;23477:18;23469:26;;23541:9;23535:4;23531:20;23527:1;23516:9;23512:17;23505:47;23569:131;23695:4;23569:131;:::i;:::-;23561:139;;23459:248;;;:::o;23713:419::-;23879:4;23917:2;23906:9;23902:18;23894:26;;23966:9;23960:4;23956:20;23952:1;23941:9;23937:17;23930:47;23994:131;24120:4;23994:131;:::i;:::-;23986:139;;23884:248;;;:::o;24138:419::-;24304:4;24342:2;24331:9;24327:18;24319:26;;24391:9;24385:4;24381:20;24377:1;24366:9;24362:17;24355:47;24419:131;24545:4;24419:131;:::i;:::-;24411:139;;24309:248;;;:::o;24563:419::-;24729:4;24767:2;24756:9;24752:18;24744:26;;24816:9;24810:4;24806:20;24802:1;24791:9;24787:17;24780:47;24844:131;24970:4;24844:131;:::i;:::-;24836:139;;24734:248;;;:::o;24988:419::-;25154:4;25192:2;25181:9;25177:18;25169:26;;25241:9;25235:4;25231:20;25227:1;25216:9;25212:17;25205:47;25269:131;25395:4;25269:131;:::i;:::-;25261:139;;25159:248;;;:::o;25413:419::-;25579:4;25617:2;25606:9;25602:18;25594:26;;25666:9;25660:4;25656:20;25652:1;25641:9;25637:17;25630:47;25694:131;25820:4;25694:131;:::i;:::-;25686:139;;25584:248;;;:::o;25838:419::-;26004:4;26042:2;26031:9;26027:18;26019:26;;26091:9;26085:4;26081:20;26077:1;26066:9;26062:17;26055:47;26119:131;26245:4;26119:131;:::i;:::-;26111:139;;26009:248;;;:::o;26263:222::-;26356:4;26394:2;26383:9;26379:18;26371:26;;26407:71;26475:1;26464:9;26460:17;26451:6;26407:71;:::i;:::-;26361:124;;;;:::o;26491:214::-;26580:4;26618:2;26607:9;26603:18;26595:26;;26631:67;26695:1;26684:9;26680:17;26671:6;26631:67;:::i;:::-;26585:120;;;;:::o;26711:129::-;26745:6;26772:20;;:::i;:::-;26762:30;;26801:33;26829:4;26821:6;26801:33;:::i;:::-;26752:88;;;:::o;26846:75::-;26879:6;26912:2;26906:9;26896:19;;26886:35;:::o;26927:338::-;27031:4;27121:18;27113:6;27110:30;27107:2;;;27143:18;;:::i;:::-;27107:2;27193:4;27185:6;27181:17;27173:25;;27253:4;27247;27243:15;27235:23;;27036:229;;;:::o;27271:99::-;27323:6;27357:5;27351:12;27341:22;;27330:40;;;:::o;27376:169::-;27460:11;27494:6;27489:3;27482:19;27534:4;27529:3;27525:14;27510:29;;27472:73;;;;:::o;27551:148::-;27653:11;27690:3;27675:18;;27665:34;;;;:::o;27705:305::-;27745:3;27764:20;27782:1;27764:20;:::i;:::-;27759:25;;27798:20;27816:1;27798:20;:::i;:::-;27793:25;;27952:1;27884:66;27880:74;27877:1;27874:81;27871:2;;;27958:18;;:::i;:::-;27871:2;28002:1;27999;27995:9;27988:16;;27749:261;;;;:::o;28016:185::-;28056:1;28073:20;28091:1;28073:20;:::i;:::-;28068:25;;28107:20;28125:1;28107:20;:::i;:::-;28102:25;;28146:1;28136:2;;28151:18;;:::i;:::-;28136:2;28193:1;28190;28186:9;28181:14;;28058:143;;;;:::o;28207:348::-;28247:7;28270:20;28288:1;28270:20;:::i;:::-;28265:25;;28304:20;28322:1;28304:20;:::i;:::-;28299:25;;28492:1;28424:66;28420:74;28417:1;28414:81;28409:1;28402:9;28395:17;28391:105;28388:2;;;28499:18;;:::i;:::-;28388:2;28547:1;28544;28540:9;28529:20;;28255:300;;;;:::o;28561:191::-;28601:4;28621:20;28639:1;28621:20;:::i;:::-;28616:25;;28655:20;28673:1;28655:20;:::i;:::-;28650:25;;28694:1;28691;28688:8;28685:2;;;28699:18;;:::i;:::-;28685:2;28744:1;28741;28737:9;28729:17;;28606:146;;;;:::o;28758:96::-;28795:7;28824:24;28842:5;28824:24;:::i;:::-;28813:35;;28803:51;;;:::o;28860:90::-;28894:7;28937:5;28930:13;28923:21;28912:32;;28902:48;;;:::o;28956:77::-;28993:7;29022:5;29011:16;;29001:32;;;:::o;29039:149::-;29075:7;29115:66;29108:5;29104:78;29093:89;;29083:105;;;:::o;29194:126::-;29231:7;29271:42;29264:5;29260:54;29249:65;;29239:81;;;:::o;29326:77::-;29363:7;29392:5;29381:16;;29371:32;;;:::o;29409:86::-;29444:7;29484:4;29477:5;29473:16;29462:27;;29452:43;;;:::o;29501:307::-;29569:1;29579:113;29593:6;29590:1;29587:13;29579:113;;;29678:1;29673:3;29669:11;29663:18;29659:1;29654:3;29650:11;29643:39;29615:2;29612:1;29608:10;29603:15;;29579:113;;;29710:6;29707:1;29704:13;29701:2;;;29790:1;29781:6;29776:3;29772:16;29765:27;29701:2;29550:258;;;;:::o;29814:171::-;29853:3;29876:24;29894:5;29876:24;:::i;:::-;29867:33;;29922:4;29915:5;29912:15;29909:2;;;29930:18;;:::i;:::-;29909:2;29977:1;29970:5;29966:13;29959:20;;29857:128;;;:::o;29991:320::-;30035:6;30072:1;30066:4;30062:12;30052:22;;30119:1;30113:4;30109:12;30140:18;30130:2;;30196:4;30188:6;30184:17;30174:27;;30130:2;30258;30250:6;30247:14;30227:18;30224:38;30221:2;;;30277:18;;:::i;:::-;30221:2;30042:269;;;;:::o;30317:281::-;30400:27;30422:4;30400:27;:::i;:::-;30392:6;30388:40;30530:6;30518:10;30515:22;30494:18;30482:10;30479:34;30476:62;30473:2;;;30541:18;;:::i;:::-;30473:2;30581:10;30577:2;30570:22;30360:238;;;:::o;30604:233::-;30643:3;30666:24;30684:5;30666:24;:::i;:::-;30657:33;;30712:66;30705:5;30702:77;30699:2;;;30782:18;;:::i;:::-;30699:2;30829:1;30822:5;30818:13;30811:20;;30647:190;;;:::o;30843:180::-;30891:77;30888:1;30881:88;30988:4;30985:1;30978:15;31012:4;31009:1;31002:15;31029:180;31077:77;31074:1;31067:88;31174:4;31171:1;31164:15;31198:4;31195:1;31188:15;31215:180;31263:77;31260:1;31253:88;31360:4;31357:1;31350:15;31384:4;31381:1;31374:15;31401:180;31449:77;31446:1;31439:88;31546:4;31543:1;31536:15;31570:4;31567:1;31560:15;31587:180;31635:77;31632:1;31625:88;31732:4;31729:1;31722:15;31756:4;31753:1;31746:15;31773:117;31882:1;31879;31872:12;31896:117;32005:1;32002;31995:12;32142:117;32251:1;32248;32241:12;32265:117;32374:1;32371;32364:12;32388:117;32497:1;32494;32487:12;32511:102;32552:6;32603:2;32599:7;32594:2;32587:5;32583:14;32579:28;32569:38;;32559:54;;;:::o;32619:165::-;32759:17;32755:1;32747:6;32743:14;32736:41;32725:59;:::o;32790:182::-;32930:34;32926:1;32918:6;32914:14;32907:58;32896:76;:::o;32978:222::-;33118:34;33114:1;33106:6;33102:14;33095:58;33187:5;33182:2;33174:6;33170:15;33163:30;33084:116;:::o;33206:174::-;33346:26;33342:1;33334:6;33330:14;33323:50;33312:68;:::o;33386:221::-;33526:34;33522:1;33514:6;33510:14;33503:58;33595:4;33590:2;33582:6;33578:15;33571:29;33492:115;:::o;33613:221::-;33753:34;33749:1;33741:6;33737:14;33730:58;33822:4;33817:2;33809:6;33805:15;33798:29;33719:115;:::o;33840:225::-;33980:34;33976:1;33968:6;33964:14;33957:58;34049:8;34044:2;34036:6;34032:15;34025:33;33946:119;:::o;34071:164::-;34211:16;34207:1;34199:6;34195:14;34188:40;34177:58;:::o;34241:227::-;34381:34;34377:1;34369:6;34365:14;34358:58;34450:10;34445:2;34437:6;34433:15;34426:35;34347:121;:::o;34474:223::-;34614:34;34610:1;34602:6;34598:14;34591:58;34683:6;34678:2;34670:6;34666:15;34659:31;34580:117;:::o;34703:220::-;34843:34;34839:1;34831:6;34827:14;34820:58;34912:3;34907:2;34899:6;34895:15;34888:28;34809:114;:::o;34929:224::-;35069:34;35065:1;35057:6;35053:14;35046:58;35138:7;35133:2;35125:6;35121:15;35114:32;35035:118;:::o;35159:223::-;35299:34;35295:1;35287:6;35283:14;35276:58;35368:6;35363:2;35355:6;35351:15;35344:31;35265:117;:::o;35388:173::-;35528:25;35524:1;35516:6;35512:14;35505:49;35494:67;:::o;35567:173::-;35707:25;35703:1;35695:6;35691:14;35684:49;35673:67;:::o;35746:224::-;35886:34;35882:1;35874:6;35870:14;35863:58;35955:7;35950:2;35942:6;35938:15;35931:32;35852:118;:::o;35976:167::-;36116:19;36112:1;36104:6;36100:14;36093:43;36082:61;:::o;36149:234::-;36289:34;36285:1;36277:6;36273:14;36266:58;36358:17;36353:2;36345:6;36341:15;36334:42;36255:128;:::o;36389:181::-;36529:33;36525:1;36517:6;36513:14;36506:57;36495:75;:::o;36576:170::-;36716:22;36712:1;36704:6;36700:14;36693:46;36682:64;:::o;36752:122::-;36825:24;36843:5;36825:24;:::i;:::-;36818:5;36815:35;36805:2;;36864:1;36861;36854:12;36805:2;36795:79;:::o;36880:122::-;36953:24;36971:5;36953:24;:::i;:::-;36946:5;36943:35;36933:2;;36992:1;36989;36982:12;36933:2;36923:79;:::o;37008:120::-;37080:23;37097:5;37080:23;:::i;:::-;37073:5;37070:34;37060:2;;37118:1;37115;37108:12;37060:2;37050:78;:::o;37134:122::-;37207:24;37225:5;37207:24;:::i;:::-;37200:5;37197:35;37187:2;;37246:1;37243;37236:12;37187:2;37177:79;:::o

Swarm Source

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