ETH Price: $3,457.59 (-0.52%)
Gas: 3 Gwei

Token

Authencity. (AUTH)
 

Overview

Max Total Supply

1,000,000,000 AUTH

Holders

145

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
4,608.04716688 AUTH

Value
$0.00
0x9C60C861C88D247f3faAD3247beAFe1B8ca52F50
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20PresetMinterPauser

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-15
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 *  Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable.
 *  See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 *  In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}
// OpenZeppelin Contracts v4.4.1 (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 IERC165 {
    /**
     * @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);
}

// OpenZeppelin Contracts v4.4.1 (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 ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @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;
}

// OpenZeppelin Contracts (last updated v4.7.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 AccessControl is Context, IAccessControl, ERC165 {
    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);
        _;
    }

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

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

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @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 virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.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 virtual 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.
     *
     * May emit a {RoleGranted} event.
     */
    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.
     *
     * May emit a {RoleRevoked} event.
     */
    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`.
     *
     * May emit a {RoleRevoked} event.
     */
    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.
     *
     * May emit a {RoleGranted} event.
     *
     * [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.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "AccessControl: must have ADMIN_ROLE");
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

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

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

// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns minted amount of tokens.
     */
    function mintedSupply() external view returns (uint256);

    /**
     * @dev Returns the limit amount for a single coin transaction of tokens
     */
    function mintLimitAmount() external view returns (uint256);

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (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 IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}

// OpenZeppelin Contracts (last updated v4.7.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;
    uint256 private _mintedSupply;
    uint256 private _mintLimitAmount;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        require(_mintedSupply + amount <= _totalSupply, "ERC20: Exceeding the TotalSupply.");

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

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

    /**
     * @dev SetMintLimitAmount
     */
    function _setMintLimitAmount(uint256 limitAmount) internal virtual returns (bool) {
        _mintLimitAmount = limitAmount;
        return true;
    }

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.5.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 ERC20Burnable is Context, ERC20 {
    /**
     * @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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 *
 * _Deprecated in favor of https://wizard.openzeppelin.com/[Contracts Wizard]._
 */
contract ERC20PresetMinterPauser is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol, uint256 totalSupply) ERC20(name, symbol, totalSupply) {
        _grantAdminRole(_msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function setMintLimitAmount(uint256 amount) public virtual {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have ADMIN_ROLE");
        _setMintLimitAmount(amount);
    }

    /**
     * @dev Set limitForMint
     *
     * See {ERC20- _setMintLimit}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
        _mint(to, amount);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":[],"name":"PAUSER_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":[{"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintLimitAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"amount","type":"uint256"}],"name":"setMintLimitAmount","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003e9938038062003e99833981810160405281019062000037919062000676565b82828282600790805190602001906200005292919062000531565b5081600890805190602001906200006b92919062000531565b50806004819055505050506000600960006101000a81548160ff021916908315150217905550620000b1620000a56200013c60201b60201c565b6200014460201b60201c565b620000f27f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620000e66200013c60201b60201c565b6200023d60201b60201c565b620001337f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001276200013c60201b60201c565b6200023d60201b60201c565b50505062000961565b600033905090565b620001596000801b826200025360201b60201c565b6200023a5760016000808060001b815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001dc6200013c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff166000801b7f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b50565b6200024f8282620002bd60201b60201c565b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b620002d482826200030560201b62000df31760201c565b6200030081600160008581526020019081526020016000206200045c60201b62000f261790919060201c565b505050565b620003296000801b6200031d6200013c60201b60201c565b6200025360201b60201c565b6200036b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003629062000737565b60405180910390fd5b6200037d82826200025360201b60201c565b6200045857600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003fd6200013c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200048c836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200049460201b60201c565b905092915050565b6000620004a883836200050e60201b60201c565b6200050357826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000508565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200053f9062000809565b90600052602060002090601f016020900481019282620005635760008555620005af565b82601f106200057e57805160ff1916838001178555620005af565b82800160010185558215620005af579182015b82811115620005ae57825182559160200191906001019062000591565b5b509050620005be9190620005c2565b5090565b5b80821115620005dd576000816000905550600101620005c3565b5090565b6000620005f8620005f28462000782565b62000759565b905082815260208101848484011115620006175762000616620008d8565b5b62000624848285620007d3565b509392505050565b600082601f830112620006445762000643620008d3565b5b815162000656848260208601620005e1565b91505092915050565b600081519050620006708162000947565b92915050565b600080600060608486031215620006925762000691620008e2565b5b600084015167ffffffffffffffff811115620006b357620006b2620008dd565b5b620006c1868287016200062c565b935050602084015167ffffffffffffffff811115620006e557620006e4620008dd565b5b620006f3868287016200062c565b925050604062000706868287016200065f565b9150509250925092565b60006200071f602383620007b8565b91506200072c82620008f8565b604082019050919050565b60006020820190508181036000830152620007528162000710565b9050919050565b60006200076562000778565b90506200077382826200083f565b919050565b6000604051905090565b600067ffffffffffffffff821115620007a0576200079f620008a4565b5b620007ab82620008e7565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b83811015620007f3578082015181840152602081019050620007d6565b8381111562000803576000848401525b50505050565b600060028204905060018216806200082257607f821691505b6020821081141562000839576200083862000875565b5b50919050565b6200084a82620008e7565b810181811067ffffffffffffffff821117156200086c576200086b620008a4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f416363657373436f6e74726f6c3a206d75737420686176652041444d494e5f5260008201527f4f4c450000000000000000000000000000000000000000000000000000000000602082015250565b6200095281620007c9565b81146200095e57600080fd5b50565b61352880620009716000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a4c32cc4116100a2578063d539139311610071578063d5391393146105a6578063d547741f146105c4578063dd62ed3e146105e0578063e63ab1e914610610576101e5565b8063a4c32cc41461050a578063a9059cbb14610528578063c1bd8cf914610558578063ca15c87314610576576101e5565b806391d14854116100de57806391d148541461046e57806395d89b411461049e578063a217fddf146104bc578063a457c2d7146104da576101e5565b806370a08231146103e857806379cc6790146104185780638456cb59146104345780639010d07c1461043e576101e5565b80632f2ff15d116101875780633f4ba83a116101565780633f4ba83a1461038857806340c10f191461039257806342966c68146103ae5780635c975abb146103ca576101e5565b80632f2ff15d14610302578063313ce5671461031e57806336568abe1461033c5780633950935114610358576101e5565b80630e8b75c5116101c35780630e8b75c51461026857806318160ddd1461028457806323b872dd146102a2578063248a9ca3146102d2576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063095ea7b314610238575b600080fd5b61020460048036038101906101ff919061233e565b61062e565b60405161021191906127ea565b60405180910390f35b6102226106a8565b60405161022f9190612820565b60405180910390f35b610252600480360381019061024d9190612251565b61073a565b60405161025f91906127ea565b60405180910390f35b610282600480360381019061027d919061236b565b61075d565b005b61028c6107bd565b6040516102999190612b02565b60405180910390f35b6102bc60048036038101906102b791906121fe565b6107c7565b6040516102c991906127ea565b60405180910390f35b6102ec60048036038101906102e79190612291565b6107f6565b6040516102f99190612805565b60405180910390f35b61031c600480360381019061031791906122be565b610815565b005b610326610836565b6040516103339190612b1d565b60405180910390f35b610356600480360381019061035191906122be565b61083f565b005b610372600480360381019061036d9190612251565b6108c2565b60405161037f91906127ea565b60405180910390f35b6103906108f9565b005b6103ac60048036038101906103a79190612251565b610973565b005b6103c860048036038101906103c3919061236b565b6109f1565b005b6103d2610a05565b6040516103df91906127ea565b60405180910390f35b61040260048036038101906103fd9190612191565b610a1c565b60405161040f9190612b02565b60405180910390f35b610432600480360381019061042d9190612251565b610a65565b005b61043c610a85565b005b610458600480360381019061045391906122fe565b610aff565b60405161046591906127cf565b60405180910390f35b610488600480360381019061048391906122be565b610b2e565b60405161049591906127ea565b60405180910390f35b6104a6610b98565b6040516104b39190612820565b60405180910390f35b6104c4610c2a565b6040516104d19190612805565b60405180910390f35b6104f460048036038101906104ef9190612251565b610c31565b60405161050191906127ea565b60405180910390f35b610512610ca8565b60405161051f9190612b02565b60405180910390f35b610542600480360381019061053d9190612251565b610cb2565b60405161054f91906127ea565b60405180910390f35b610560610cd5565b60405161056d9190612b02565b60405180910390f35b610590600480360381019061058b9190612291565b610cdf565b60405161059d9190612b02565b60405180910390f35b6105ae610d03565b6040516105bb9190612805565b60405180910390f35b6105de60048036038101906105d991906122be565b610d27565b005b6105fa60048036038101906105f591906121be565b610d48565b6040516106079190612b02565b60405180910390f35b610618610dcf565b6040516106259190612805565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a157506106a082610f56565b5b9050919050565b6060600780546106b790612d2b565b80601f01602080910402602001604051908101604052809291908181526020018280546106e390612d2b565b80156107305780601f1061070557610100808354040283529160200191610730565b820191906000526020600020905b81548152906001019060200180831161071357829003601f168201915b5050505050905090565b600080610745610fd0565b9050610752818585610fd8565b600191505092915050565b6107716000801b61076c610fd0565b610b2e565b6107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a7906128e2565b60405180910390fd5b6107b9816111a3565b5050565b6000600454905090565b6000806107d2610fd0565b90506107df8582856111b5565b6107ea858585611241565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b61081e826107f6565b610827816114bc565b61083183836114d0565b505050565b60006008905090565b610847610fd0565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ab90612aa2565b60405180910390fd5b6108be8282611504565b5050565b6000806108cd610fd0565b90506108ee8185856108df8589610d48565b6108e99190612b5f565b610fd8565b600191505092915050565b61092a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610925610fd0565b610b2e565b610969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610960906128c2565b60405180910390fd5b610971611538565b565b6109a47f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661099f610fd0565b610b2e565b6109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da906129c2565b60405180910390fd5b6109ed828261159b565b5050565b610a026109fc610fd0565b8261178a565b50565b6000600960009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a7782610a71610fd0565b836111b5565b610a81828261178a565b5050565b610ab67f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610ab1610fd0565b610b2e565b610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec90612a42565b60405180910390fd5b610afd61195a565b565b6000610b2682600160008681526020019081526020016000206119bd90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060088054610ba790612d2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd390612d2b565b8015610c205780601f10610bf557610100808354040283529160200191610c20565b820191906000526020600020905b815481529060010190602001808311610c0357829003601f168201915b5050505050905090565b6000801b81565b600080610c3c610fd0565b90506000610c4a8286610d48565b905083811015610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8690612a82565b60405180910390fd5b610c9c8286868403610fd8565b60019250505092915050565b6000600654905090565b600080610cbd610fd0565b9050610cca818585611241565b600191505092915050565b6000600554905090565b6000610cfc600160008481526020019081526020016000206119d7565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610d30826107f6565b610d39816114bc565b610d438383611504565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610e076000801b610e02610fd0565b610b2e565b610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d906129a2565b60405180910390fd5b610e508282610b2e565b610f2257600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ec7610fd0565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000610f4e836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6119ec565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610fc95750610fc882611a5c565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90612a22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90612902565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111969190612b02565b60405180910390a3505050565b60008160068190555060019050919050565b60006111c18484610d48565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461123b578181101561122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612942565b60405180910390fd5b61123a8484848403610fd8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890612a02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890612862565b60405180910390fd5b61132c838383611ac6565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa90612962565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114a39190612b02565b60405180910390a36114b6848484611ad6565b50505050565b6114cd816114c8610fd0565b611adb565b50565b6114da8282610df3565b6114ff8160016000858152602001908152602001600020610f2690919063ffffffff16565b505050565b61150e8282611b60565b6115338160016000858152602001908152602001600020611c4190919063ffffffff16565b505050565b611540611c71565b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611584610fd0565b60405161159191906127cf565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290612ac2565b60405180910390fd5b600654811115611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790612a62565b60405180910390fd5b61165c60008383611ac6565b6004548160055461166d9190612b5f565b11156116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590612922565b60405180910390fd5b80600560008282546116c09190612b5f565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117729190612b02565b60405180910390a361178660008383611ad6565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f1906129e2565b60405180910390fd5b61180682600083611ac6565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561188d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611884906128a2565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600560008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119419190612b02565b60405180910390a361195583600084611ad6565b505050565b611962611cba565b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119a6610fd0565b6040516119b391906127cf565b60405180910390a1565b60006119cc8360000183611d04565b60001c905092915050565b60006119e582600001611d2f565b9050919050565b60006119f88383611d40565b611a51578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611a56565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611ad1838383611d63565b505050565b505050565b611ae58282610b2e565b611b5c57611af281611dbb565b611b008360001c6020611de8565b604051602001611b11929190612795565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b539190612820565b60405180910390fd5b5050565b611b6a8282610b2e565b15611c3d57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611be2610fd0565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000611c69836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612024565b905092915050565b611c79610a05565b611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf90612882565b60405180910390fd5b565b611cc2610a05565b15611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990612982565b60405180910390fd5b565b6000826000018281548110611d1c57611d1b612dea565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b611d6e838383612138565b611d76610a05565b15611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90612ae2565b60405180910390fd5b505050565b6060611de18273ffffffffffffffffffffffffffffffffffffffff16601460ff16611de8565b9050919050565b606060006002836002611dfb9190612bb5565b611e059190612b5f565b67ffffffffffffffff811115611e1e57611e1d612e19565b5b6040519080825280601f01601f191660200182016040528015611e505781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611e8857611e87612dea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611eec57611eeb612dea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611f2c9190612bb5565b611f369190612b5f565b90505b6001811115611fd6577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611f7857611f77612dea565b5b1a60f81b828281518110611f8f57611f8e612dea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611fcf90612d01565b9050611f39565b506000841461201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190612842565b60405180910390fd5b8091505092915050565b6000808360010160008481526020019081526020016000205490506000811461212c5760006001826120569190612c0f565b905060006001866000018054905061206e9190612c0f565b90508181146120dd57600086600001828154811061208f5761208e612dea565b5b90600052602060002001549050808760000184815481106120b3576120b2612dea565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806120f1576120f0612dbb565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612132565b60009150505b92915050565b505050565b60008135905061214c81613496565b92915050565b600081359050612161816134ad565b92915050565b600081359050612176816134c4565b92915050565b60008135905061218b816134db565b92915050565b6000602082840312156121a7576121a6612e48565b5b60006121b58482850161213d565b91505092915050565b600080604083850312156121d5576121d4612e48565b5b60006121e38582860161213d565b92505060206121f48582860161213d565b9150509250929050565b60008060006060848603121561221757612216612e48565b5b60006122258682870161213d565b93505060206122368682870161213d565b92505060406122478682870161217c565b9150509250925092565b6000806040838503121561226857612267612e48565b5b60006122768582860161213d565b92505060206122878582860161217c565b9150509250929050565b6000602082840312156122a7576122a6612e48565b5b60006122b584828501612152565b91505092915050565b600080604083850312156122d5576122d4612e48565b5b60006122e385828601612152565b92505060206122f48582860161213d565b9150509250929050565b6000806040838503121561231557612314612e48565b5b600061232385828601612152565b92505060206123348582860161217c565b9150509250929050565b60006020828403121561235457612353612e48565b5b600061236284828501612167565b91505092915050565b60006020828403121561238157612380612e48565b5b600061238f8482850161217c565b91505092915050565b6123a181612c43565b82525050565b6123b081612c55565b82525050565b6123bf81612c61565b82525050565b60006123d082612b38565b6123da8185612b43565b93506123ea818560208601612cce565b6123f381612e4d565b840191505092915050565b600061240982612b38565b6124138185612b54565b9350612423818560208601612cce565b80840191505092915050565b600061243c602083612b43565b915061244782612e5e565b602082019050919050565b600061245f602383612b43565b915061246a82612e87565b604082019050919050565b6000612482601483612b43565b915061248d82612ed6565b602082019050919050565b60006124a5602283612b43565b91506124b082612eff565b604082019050919050565b60006124c8603983612b43565b91506124d382612f4e565b604082019050919050565b60006124eb602d83612b43565b91506124f682612f9d565b604082019050919050565b600061250e602283612b43565b915061251982612fec565b604082019050919050565b6000612531602183612b43565b915061253c8261303b565b604082019050919050565b6000612554601d83612b43565b915061255f8261308a565b602082019050919050565b6000612577602683612b43565b9150612582826130b3565b604082019050919050565b600061259a601083612b43565b91506125a582613102565b602082019050919050565b60006125bd602383612b43565b91506125c88261312b565b604082019050919050565b60006125e0603683612b43565b91506125eb8261317a565b604082019050919050565b6000612603602183612b43565b915061260e826131c9565b604082019050919050565b6000612626602583612b43565b915061263182613218565b604082019050919050565b6000612649602483612b43565b915061265482613267565b604082019050919050565b600061266c603783612b43565b9150612677826132b6565b604082019050919050565b600061268f601783612b54565b915061269a82613305565b601782019050919050565b60006126b2601783612b43565b91506126bd8261332e565b602082019050919050565b60006126d5602583612b43565b91506126e082613357565b604082019050919050565b60006126f8601183612b54565b9150612703826133a6565b601182019050919050565b600061271b602f83612b43565b9150612726826133cf565b604082019050919050565b600061273e601f83612b43565b91506127498261341e565b602082019050919050565b6000612761602a83612b43565b915061276c82613447565b604082019050919050565b61278081612cb7565b82525050565b61278f81612cc1565b82525050565b60006127a082612682565b91506127ac82856123fe565b91506127b7826126eb565b91506127c382846123fe565b91508190509392505050565b60006020820190506127e46000830184612398565b92915050565b60006020820190506127ff60008301846123a7565b92915050565b600060208201905061281a60008301846123b6565b92915050565b6000602082019050818103600083015261283a81846123c5565b905092915050565b6000602082019050818103600083015261285b8161242f565b9050919050565b6000602082019050818103600083015261287b81612452565b9050919050565b6000602082019050818103600083015261289b81612475565b9050919050565b600060208201905081810360008301526128bb81612498565b9050919050565b600060208201905081810360008301526128db816124bb565b9050919050565b600060208201905081810360008301526128fb816124de565b9050919050565b6000602082019050818103600083015261291b81612501565b9050919050565b6000602082019050818103600083015261293b81612524565b9050919050565b6000602082019050818103600083015261295b81612547565b9050919050565b6000602082019050818103600083015261297b8161256a565b9050919050565b6000602082019050818103600083015261299b8161258d565b9050919050565b600060208201905081810360008301526129bb816125b0565b9050919050565b600060208201905081810360008301526129db816125d3565b9050919050565b600060208201905081810360008301526129fb816125f6565b9050919050565b60006020820190508181036000830152612a1b81612619565b9050919050565b60006020820190508181036000830152612a3b8161263c565b9050919050565b60006020820190508181036000830152612a5b8161265f565b9050919050565b60006020820190508181036000830152612a7b816126a5565b9050919050565b60006020820190508181036000830152612a9b816126c8565b9050919050565b60006020820190508181036000830152612abb8161270e565b9050919050565b60006020820190508181036000830152612adb81612731565b9050919050565b60006020820190508181036000830152612afb81612754565b9050919050565b6000602082019050612b176000830184612777565b92915050565b6000602082019050612b326000830184612786565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612b6a82612cb7565b9150612b7583612cb7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612baa57612ba9612d5d565b5b828201905092915050565b6000612bc082612cb7565b9150612bcb83612cb7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c0457612c03612d5d565b5b828202905092915050565b6000612c1a82612cb7565b9150612c2583612cb7565b925082821015612c3857612c37612d5d565b5b828203905092915050565b6000612c4e82612c97565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612cec578082015181840152602081019050612cd1565b83811115612cfb576000848401525b50505050565b6000612d0c82612cb7565b91506000821415612d2057612d1f612d5d565b5b600182039050919050565b60006002820490506001821680612d4357607f821691505b60208210811415612d5757612d56612d8c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652041444d494e5f524f4c4500000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20457863656564696e672074686520546f74616c537570706c7960008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206d75737420686176652041444d494e5f5260008201527f4f4c450000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a206572726f72206d696e74206c696d6974000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61349f81612c43565b81146134aa57600080fd5b50565b6134b681612c61565b81146134c157600080fd5b50565b6134cd81612c6b565b81146134d857600080fd5b50565b6134e481612cb7565b81146134ef57600080fd5b5056fea2646970667358221220deeb97b96f7684052bc4bd8804540423ed2e221a0e1fd7668618e121e0aa4f9564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000016345785d8a0000000000000000000000000000000000000000000000000000000000000000000b41757468656e636974792e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044155544800000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a4c32cc4116100a2578063d539139311610071578063d5391393146105a6578063d547741f146105c4578063dd62ed3e146105e0578063e63ab1e914610610576101e5565b8063a4c32cc41461050a578063a9059cbb14610528578063c1bd8cf914610558578063ca15c87314610576576101e5565b806391d14854116100de57806391d148541461046e57806395d89b411461049e578063a217fddf146104bc578063a457c2d7146104da576101e5565b806370a08231146103e857806379cc6790146104185780638456cb59146104345780639010d07c1461043e576101e5565b80632f2ff15d116101875780633f4ba83a116101565780633f4ba83a1461038857806340c10f191461039257806342966c68146103ae5780635c975abb146103ca576101e5565b80632f2ff15d14610302578063313ce5671461031e57806336568abe1461033c5780633950935114610358576101e5565b80630e8b75c5116101c35780630e8b75c51461026857806318160ddd1461028457806323b872dd146102a2578063248a9ca3146102d2576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063095ea7b314610238575b600080fd5b61020460048036038101906101ff919061233e565b61062e565b60405161021191906127ea565b60405180910390f35b6102226106a8565b60405161022f9190612820565b60405180910390f35b610252600480360381019061024d9190612251565b61073a565b60405161025f91906127ea565b60405180910390f35b610282600480360381019061027d919061236b565b61075d565b005b61028c6107bd565b6040516102999190612b02565b60405180910390f35b6102bc60048036038101906102b791906121fe565b6107c7565b6040516102c991906127ea565b60405180910390f35b6102ec60048036038101906102e79190612291565b6107f6565b6040516102f99190612805565b60405180910390f35b61031c600480360381019061031791906122be565b610815565b005b610326610836565b6040516103339190612b1d565b60405180910390f35b610356600480360381019061035191906122be565b61083f565b005b610372600480360381019061036d9190612251565b6108c2565b60405161037f91906127ea565b60405180910390f35b6103906108f9565b005b6103ac60048036038101906103a79190612251565b610973565b005b6103c860048036038101906103c3919061236b565b6109f1565b005b6103d2610a05565b6040516103df91906127ea565b60405180910390f35b61040260048036038101906103fd9190612191565b610a1c565b60405161040f9190612b02565b60405180910390f35b610432600480360381019061042d9190612251565b610a65565b005b61043c610a85565b005b610458600480360381019061045391906122fe565b610aff565b60405161046591906127cf565b60405180910390f35b610488600480360381019061048391906122be565b610b2e565b60405161049591906127ea565b60405180910390f35b6104a6610b98565b6040516104b39190612820565b60405180910390f35b6104c4610c2a565b6040516104d19190612805565b60405180910390f35b6104f460048036038101906104ef9190612251565b610c31565b60405161050191906127ea565b60405180910390f35b610512610ca8565b60405161051f9190612b02565b60405180910390f35b610542600480360381019061053d9190612251565b610cb2565b60405161054f91906127ea565b60405180910390f35b610560610cd5565b60405161056d9190612b02565b60405180910390f35b610590600480360381019061058b9190612291565b610cdf565b60405161059d9190612b02565b60405180910390f35b6105ae610d03565b6040516105bb9190612805565b60405180910390f35b6105de60048036038101906105d991906122be565b610d27565b005b6105fa60048036038101906105f591906121be565b610d48565b6040516106079190612b02565b60405180910390f35b610618610dcf565b6040516106259190612805565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a157506106a082610f56565b5b9050919050565b6060600780546106b790612d2b565b80601f01602080910402602001604051908101604052809291908181526020018280546106e390612d2b565b80156107305780601f1061070557610100808354040283529160200191610730565b820191906000526020600020905b81548152906001019060200180831161071357829003601f168201915b5050505050905090565b600080610745610fd0565b9050610752818585610fd8565b600191505092915050565b6107716000801b61076c610fd0565b610b2e565b6107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a7906128e2565b60405180910390fd5b6107b9816111a3565b5050565b6000600454905090565b6000806107d2610fd0565b90506107df8582856111b5565b6107ea858585611241565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b61081e826107f6565b610827816114bc565b61083183836114d0565b505050565b60006008905090565b610847610fd0565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ab90612aa2565b60405180910390fd5b6108be8282611504565b5050565b6000806108cd610fd0565b90506108ee8185856108df8589610d48565b6108e99190612b5f565b610fd8565b600191505092915050565b61092a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610925610fd0565b610b2e565b610969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610960906128c2565b60405180910390fd5b610971611538565b565b6109a47f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661099f610fd0565b610b2e565b6109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da906129c2565b60405180910390fd5b6109ed828261159b565b5050565b610a026109fc610fd0565b8261178a565b50565b6000600960009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a7782610a71610fd0565b836111b5565b610a81828261178a565b5050565b610ab67f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610ab1610fd0565b610b2e565b610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec90612a42565b60405180910390fd5b610afd61195a565b565b6000610b2682600160008681526020019081526020016000206119bd90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060088054610ba790612d2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd390612d2b565b8015610c205780601f10610bf557610100808354040283529160200191610c20565b820191906000526020600020905b815481529060010190602001808311610c0357829003601f168201915b5050505050905090565b6000801b81565b600080610c3c610fd0565b90506000610c4a8286610d48565b905083811015610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8690612a82565b60405180910390fd5b610c9c8286868403610fd8565b60019250505092915050565b6000600654905090565b600080610cbd610fd0565b9050610cca818585611241565b600191505092915050565b6000600554905090565b6000610cfc600160008481526020019081526020016000206119d7565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610d30826107f6565b610d39816114bc565b610d438383611504565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610e076000801b610e02610fd0565b610b2e565b610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d906129a2565b60405180910390fd5b610e508282610b2e565b610f2257600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ec7610fd0565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000610f4e836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6119ec565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610fc95750610fc882611a5c565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90612a22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90612902565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111969190612b02565b60405180910390a3505050565b60008160068190555060019050919050565b60006111c18484610d48565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461123b578181101561122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612942565b60405180910390fd5b61123a8484848403610fd8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890612a02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890612862565b60405180910390fd5b61132c838383611ac6565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa90612962565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114a39190612b02565b60405180910390a36114b6848484611ad6565b50505050565b6114cd816114c8610fd0565b611adb565b50565b6114da8282610df3565b6114ff8160016000858152602001908152602001600020610f2690919063ffffffff16565b505050565b61150e8282611b60565b6115338160016000858152602001908152602001600020611c4190919063ffffffff16565b505050565b611540611c71565b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611584610fd0565b60405161159191906127cf565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290612ac2565b60405180910390fd5b600654811115611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790612a62565b60405180910390fd5b61165c60008383611ac6565b6004548160055461166d9190612b5f565b11156116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590612922565b60405180910390fd5b80600560008282546116c09190612b5f565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117729190612b02565b60405180910390a361178660008383611ad6565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f1906129e2565b60405180910390fd5b61180682600083611ac6565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561188d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611884906128a2565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600560008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119419190612b02565b60405180910390a361195583600084611ad6565b505050565b611962611cba565b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119a6610fd0565b6040516119b391906127cf565b60405180910390a1565b60006119cc8360000183611d04565b60001c905092915050565b60006119e582600001611d2f565b9050919050565b60006119f88383611d40565b611a51578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611a56565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611ad1838383611d63565b505050565b505050565b611ae58282610b2e565b611b5c57611af281611dbb565b611b008360001c6020611de8565b604051602001611b11929190612795565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b539190612820565b60405180910390fd5b5050565b611b6a8282610b2e565b15611c3d57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611be2610fd0565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000611c69836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612024565b905092915050565b611c79610a05565b611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf90612882565b60405180910390fd5b565b611cc2610a05565b15611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990612982565b60405180910390fd5b565b6000826000018281548110611d1c57611d1b612dea565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b611d6e838383612138565b611d76610a05565b15611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90612ae2565b60405180910390fd5b505050565b6060611de18273ffffffffffffffffffffffffffffffffffffffff16601460ff16611de8565b9050919050565b606060006002836002611dfb9190612bb5565b611e059190612b5f565b67ffffffffffffffff811115611e1e57611e1d612e19565b5b6040519080825280601f01601f191660200182016040528015611e505781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611e8857611e87612dea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611eec57611eeb612dea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611f2c9190612bb5565b611f369190612b5f565b90505b6001811115611fd6577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611f7857611f77612dea565b5b1a60f81b828281518110611f8f57611f8e612dea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611fcf90612d01565b9050611f39565b506000841461201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190612842565b60405180910390fd5b8091505092915050565b6000808360010160008481526020019081526020016000205490506000811461212c5760006001826120569190612c0f565b905060006001866000018054905061206e9190612c0f565b90508181146120dd57600086600001828154811061208f5761208e612dea565b5b90600052602060002001549050808760000184815481106120b3576120b2612dea565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806120f1576120f0612dbb565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612132565b60009150505b92915050565b505050565b60008135905061214c81613496565b92915050565b600081359050612161816134ad565b92915050565b600081359050612176816134c4565b92915050565b60008135905061218b816134db565b92915050565b6000602082840312156121a7576121a6612e48565b5b60006121b58482850161213d565b91505092915050565b600080604083850312156121d5576121d4612e48565b5b60006121e38582860161213d565b92505060206121f48582860161213d565b9150509250929050565b60008060006060848603121561221757612216612e48565b5b60006122258682870161213d565b93505060206122368682870161213d565b92505060406122478682870161217c565b9150509250925092565b6000806040838503121561226857612267612e48565b5b60006122768582860161213d565b92505060206122878582860161217c565b9150509250929050565b6000602082840312156122a7576122a6612e48565b5b60006122b584828501612152565b91505092915050565b600080604083850312156122d5576122d4612e48565b5b60006122e385828601612152565b92505060206122f48582860161213d565b9150509250929050565b6000806040838503121561231557612314612e48565b5b600061232385828601612152565b92505060206123348582860161217c565b9150509250929050565b60006020828403121561235457612353612e48565b5b600061236284828501612167565b91505092915050565b60006020828403121561238157612380612e48565b5b600061238f8482850161217c565b91505092915050565b6123a181612c43565b82525050565b6123b081612c55565b82525050565b6123bf81612c61565b82525050565b60006123d082612b38565b6123da8185612b43565b93506123ea818560208601612cce565b6123f381612e4d565b840191505092915050565b600061240982612b38565b6124138185612b54565b9350612423818560208601612cce565b80840191505092915050565b600061243c602083612b43565b915061244782612e5e565b602082019050919050565b600061245f602383612b43565b915061246a82612e87565b604082019050919050565b6000612482601483612b43565b915061248d82612ed6565b602082019050919050565b60006124a5602283612b43565b91506124b082612eff565b604082019050919050565b60006124c8603983612b43565b91506124d382612f4e565b604082019050919050565b60006124eb602d83612b43565b91506124f682612f9d565b604082019050919050565b600061250e602283612b43565b915061251982612fec565b604082019050919050565b6000612531602183612b43565b915061253c8261303b565b604082019050919050565b6000612554601d83612b43565b915061255f8261308a565b602082019050919050565b6000612577602683612b43565b9150612582826130b3565b604082019050919050565b600061259a601083612b43565b91506125a582613102565b602082019050919050565b60006125bd602383612b43565b91506125c88261312b565b604082019050919050565b60006125e0603683612b43565b91506125eb8261317a565b604082019050919050565b6000612603602183612b43565b915061260e826131c9565b604082019050919050565b6000612626602583612b43565b915061263182613218565b604082019050919050565b6000612649602483612b43565b915061265482613267565b604082019050919050565b600061266c603783612b43565b9150612677826132b6565b604082019050919050565b600061268f601783612b54565b915061269a82613305565b601782019050919050565b60006126b2601783612b43565b91506126bd8261332e565b602082019050919050565b60006126d5602583612b43565b91506126e082613357565b604082019050919050565b60006126f8601183612b54565b9150612703826133a6565b601182019050919050565b600061271b602f83612b43565b9150612726826133cf565b604082019050919050565b600061273e601f83612b43565b91506127498261341e565b602082019050919050565b6000612761602a83612b43565b915061276c82613447565b604082019050919050565b61278081612cb7565b82525050565b61278f81612cc1565b82525050565b60006127a082612682565b91506127ac82856123fe565b91506127b7826126eb565b91506127c382846123fe565b91508190509392505050565b60006020820190506127e46000830184612398565b92915050565b60006020820190506127ff60008301846123a7565b92915050565b600060208201905061281a60008301846123b6565b92915050565b6000602082019050818103600083015261283a81846123c5565b905092915050565b6000602082019050818103600083015261285b8161242f565b9050919050565b6000602082019050818103600083015261287b81612452565b9050919050565b6000602082019050818103600083015261289b81612475565b9050919050565b600060208201905081810360008301526128bb81612498565b9050919050565b600060208201905081810360008301526128db816124bb565b9050919050565b600060208201905081810360008301526128fb816124de565b9050919050565b6000602082019050818103600083015261291b81612501565b9050919050565b6000602082019050818103600083015261293b81612524565b9050919050565b6000602082019050818103600083015261295b81612547565b9050919050565b6000602082019050818103600083015261297b8161256a565b9050919050565b6000602082019050818103600083015261299b8161258d565b9050919050565b600060208201905081810360008301526129bb816125b0565b9050919050565b600060208201905081810360008301526129db816125d3565b9050919050565b600060208201905081810360008301526129fb816125f6565b9050919050565b60006020820190508181036000830152612a1b81612619565b9050919050565b60006020820190508181036000830152612a3b8161263c565b9050919050565b60006020820190508181036000830152612a5b8161265f565b9050919050565b60006020820190508181036000830152612a7b816126a5565b9050919050565b60006020820190508181036000830152612a9b816126c8565b9050919050565b60006020820190508181036000830152612abb8161270e565b9050919050565b60006020820190508181036000830152612adb81612731565b9050919050565b60006020820190508181036000830152612afb81612754565b9050919050565b6000602082019050612b176000830184612777565b92915050565b6000602082019050612b326000830184612786565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612b6a82612cb7565b9150612b7583612cb7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612baa57612ba9612d5d565b5b828201905092915050565b6000612bc082612cb7565b9150612bcb83612cb7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c0457612c03612d5d565b5b828202905092915050565b6000612c1a82612cb7565b9150612c2583612cb7565b925082821015612c3857612c37612d5d565b5b828203905092915050565b6000612c4e82612c97565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612cec578082015181840152602081019050612cd1565b83811115612cfb576000848401525b50505050565b6000612d0c82612cb7565b91506000821415612d2057612d1f612d5d565b5b600182039050919050565b60006002820490506001821680612d4357607f821691505b60208210811415612d5757612d56612d8c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652041444d494e5f524f4c4500000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20457863656564696e672074686520546f74616c537570706c7960008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206d75737420686176652041444d494e5f5260008201527f4f4c450000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a206572726f72206d696e74206c696d6974000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61349f81612c43565b81146134aa57600080fd5b50565b6134b681612c61565b81146134c157600080fd5b50565b6134cd81612c6b565b81146134d857600080fd5b50565b6134e481612cb7565b81146134ef57600080fd5b5056fea2646970667358221220deeb97b96f7684052bc4bd8804540423ed2e221a0e1fd7668618e121e0aa4f9564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000016345785d8a0000000000000000000000000000000000000000000000000000000000000000000b41757468656e636974792e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044155544800000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Authencity.
Arg [1] : symbol (string): AUTH
Arg [2] : totalSupply (uint256): 100000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 41757468656e636974792e000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4155544800000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56599:2501:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37884:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41916:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44627:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57482:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43035:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45408:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25441:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25882:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42878:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27026:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46112:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58694:178;;;:::i;:::-;;57885:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54358:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32640:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43567:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54768:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58304:172;;;:::i;:::-;;38697:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23914:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42135:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23019:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46853:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43388:116;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43900:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43209:110;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39024:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56705:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26322:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44156:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56774:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37884:214;37969:4;38008:42;37993:57;;;:11;:57;;;;:97;;;;38054:36;38078:11;38054:23;:36::i;:::-;37993:97;37986:104;;37884:214;;;:::o;41916:100::-;41970:13;42003:5;41996:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41916:100;:::o;44627:201::-;44710:4;44727:13;44743:12;:10;:12::i;:::-;44727:28;;44766:32;44775:5;44782:7;44791:6;44766:8;:32::i;:::-;44816:4;44809:11;;;44627:201;;;;:::o;57482:215::-;57560:41;23064:4;57568:18;;57588:12;:10;:12::i;:::-;57560:7;:41::i;:::-;57552:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;57662:27;57682:6;57662:19;:27::i;:::-;;57482:215;:::o;43035:108::-;43096:7;43123:12;;43116:19;;43035:108;:::o;45408:295::-;45539:4;45556:15;45574:12;:10;:12::i;:::-;45556:30;;45597:38;45613:4;45619:7;45628:6;45597:15;:38::i;:::-;45646:27;45656:4;45662:2;45666:6;45646:9;:27::i;:::-;45691:4;45684:11;;;45408:295;;;;;:::o;25441:131::-;25515:7;25542:6;:12;25549:4;25542:12;;;;;;;;;;;:22;;;25535:29;;25441:131;;;:::o;25882:147::-;25965:18;25978:4;25965:12;:18::i;:::-;23510:16;23521:4;23510:10;:16::i;:::-;25996:25:::1;26007:4;26013:7;25996:10;:25::i;:::-;25882:147:::0;;;:::o;42878:92::-;42936:5;42961:1;42954:8;;42878:92;:::o;27026:218::-;27133:12;:10;:12::i;:::-;27122:23;;:7;:23;;;27114:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;27210:26;27222:4;27228:7;27210:11;:26::i;:::-;27026:218;;:::o;46112:238::-;46200:4;46217:13;46233:12;:10;:12::i;:::-;46217:28;;46256:64;46265:5;46272:7;46309:10;46281:25;46291:5;46298:7;46281:9;:25::i;:::-;:38;;;;:::i;:::-;46256:8;:64::i;:::-;46338:4;46331:11;;;46112:238;;;;:::o;58694:178::-;58747:34;56812:24;58768:12;:10;:12::i;:::-;58747:7;:34::i;:::-;58739:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;58854:10;:8;:10::i;:::-;58694:178::o;57885:205::-;57961:34;56743:24;57982:12;:10;:12::i;:::-;57961:7;:34::i;:::-;57953:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;58065:17;58071:2;58075:6;58065:5;:17::i;:::-;57885:205;;:::o;54358:91::-;54414:27;54420:12;:10;:12::i;:::-;54434:6;54414:5;:27::i;:::-;54358:91;:::o;32640:86::-;32687:4;32711:7;;;;;;;;;;;32704:14;;32640:86;:::o;43567:127::-;43641:7;43668:9;:18;43678:7;43668:18;;;;;;;;;;;;;;;;43661:25;;43567:127;;;:::o;54768:164::-;54845:46;54861:7;54870:12;:10;:12::i;:::-;54884:6;54845:15;:46::i;:::-;54902:22;54908:7;54917:6;54902:5;:22::i;:::-;54768:164;;:::o;58304:172::-;58355:34;56812:24;58376:12;:10;:12::i;:::-;58355:7;:34::i;:::-;58347:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;58460:8;:6;:8::i;:::-;58304:172::o;38697:153::-;38787:7;38814:28;38836:5;38814:12;:18;38827:4;38814:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;38807:35;;38697:153;;;;:::o;23914:147::-;24000:4;24024:6;:12;24031:4;24024:12;;;;;;;;;;;:20;;:29;24045:7;24024:29;;;;;;;;;;;;;;;;;;;;;;;;;24017:36;;23914:147;;;;:::o;42135:104::-;42191:13;42224:7;42217:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42135:104;:::o;23019:49::-;23064:4;23019:49;;;:::o;46853:436::-;46946:4;46963:13;46979:12;:10;:12::i;:::-;46963:28;;47002:24;47029:25;47039:5;47046:7;47029:9;:25::i;:::-;47002:52;;47093:15;47073:16;:35;;47065:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;47186:60;47195:5;47202:7;47230:15;47211:16;:34;47186:8;:60::i;:::-;47277:4;47270:11;;;;46853:436;;;;:::o;43388:116::-;43453:7;43480:16;;43473:23;;43388:116;:::o;43900:193::-;43979:4;43996:13;44012:12;:10;:12::i;:::-;43996:28;;44035;44045:5;44052:2;44056:6;44035:9;:28::i;:::-;44081:4;44074:11;;;43900:193;;;;:::o;43209:110::-;43271:7;43298:13;;43291:20;;43209:110;:::o;39024:142::-;39104:7;39131:27;:12;:18;39144:4;39131:18;;;;;;;;;;;:25;:27::i;:::-;39124:34;;39024:142;;;:::o;56705:62::-;56743:24;56705:62;:::o;26322:149::-;26406:18;26419:4;26406:12;:18::i;:::-;23510:16;23521:4;23510:10;:16::i;:::-;26437:26:::1;26449:4;26455:7;26437:11;:26::i;:::-;26322:149:::0;;;:::o;44156:151::-;44245:7;44272:11;:18;44284:5;44272:18;;;;;;;;;;;;;;;:27;44291:7;44272:27;;;;;;;;;;;;;;;;44265:34;;44156:151;;;;:::o;56774:62::-;56812:24;56774:62;:::o;28623:338::-;28710:41;23064:4;28718:18;;28738:12;:10;:12::i;:::-;28710:7;:41::i;:::-;28702:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;28807:22;28815:4;28821:7;28807;:22::i;:::-;28802:152;;28878:4;28846:6;:12;28853:4;28846:12;;;;;;;;;;;:20;;:29;28867:7;28846:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;28929:12;:10;:12::i;:::-;28902:40;;28920:7;28902:40;;28914:4;28902:40;;;;;;;;;;28802:152;28623:338;;:::o;9096:152::-;9166:4;9190:50;9195:3;:10;;9231:5;9215:23;;9207:32;;9190:4;:50::i;:::-;9183:57;;9096:152;;;;:::o;23618:204::-;23703:4;23742:32;23727:47;;;:11;:47;;;;:87;;;;23778:36;23802:11;23778:23;:36::i;:::-;23727:87;23720:94;;23618:204;;;:::o;656:98::-;709:7;736:10;729:17;;656:98;:::o;51274:380::-;51427:1;51410:19;;:5;:19;;;;51402:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51508:1;51489:21;;:7;:21;;;;51481:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51592:6;51562:11;:18;51574:5;51562:18;;;;;;;;;;;;;;;:27;51581:7;51562:27;;;;;;;;;;;;;;;:36;;;;51630:7;51614:32;;51623:5;51614:32;;;51639:6;51614:32;;;;;;:::i;:::-;;;;;;;;51274:380;;;:::o;49673:153::-;49749:4;49785:11;49766:16;:30;;;;49814:4;49807:11;;49673:153;;;:::o;51945:453::-;52080:24;52107:25;52117:5;52124:7;52107:9;:25::i;:::-;52080:52;;52167:17;52147:16;:37;52143:248;;52229:6;52209:16;:26;;52201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52313:51;52322:5;52329:7;52357:6;52338:16;:25;52313:8;:51::i;:::-;52143:248;52069:329;51945:453;;;:::o;47759:840::-;47906:1;47890:18;;:4;:18;;;;47882:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47983:1;47969:16;;:2;:16;;;;47961:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48038:38;48059:4;48065:2;48069:6;48038:20;:38::i;:::-;48089:19;48111:9;:15;48121:4;48111:15;;;;;;;;;;;;;;;;48089:37;;48160:6;48145:11;:21;;48137:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;48277:6;48263:11;:20;48245:9;:15;48255:4;48245:15;;;;;;;;;;;;;;;:38;;;;48480:6;48463:9;:13;48473:2;48463:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;48530:2;48515:26;;48524:4;48515:26;;;48534:6;48515:26;;;;;;:::i;:::-;;;;;;;;48554:37;48574:4;48580:2;48584:6;48554:19;:37::i;:::-;47871:728;47759:840;;;:::o;24365:105::-;24432:30;24443:4;24449:12;:10;:12::i;:::-;24432:10;:30::i;:::-;24365:105;:::o;39259:169::-;39347:31;39364:4;39370:7;39347:16;:31::i;:::-;39389;39412:7;39389:12;:18;39402:4;39389:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;39259:169;;:::o;39522:174::-;39611:32;39629:4;39635:7;39611:17;:32::i;:::-;39654:34;39680:7;39654:12;:18;39667:4;39654:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;39522:174;;:::o;33495:120::-;32504:16;:14;:16::i;:::-;33564:5:::1;33554:7;;:15;;;;;;;;;;;;;;;;;;33585:22;33594:12;:10;:12::i;:::-;33585:22;;;;;;:::i;:::-;;;;;;;;33495:120::o:0;48886:729::-;48989:1;48970:21;;:7;:21;;;;48962:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49066:16;;49056:6;:26;;49048:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49123:49;49152:1;49156:7;49165:6;49123:20;:49::i;:::-;49219:12;;49209:6;49193:13;;:22;;;;:::i;:::-;:38;;49185:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;49299:6;49282:13;;:23;;;;;;;:::i;:::-;;;;;;;;49476:6;49454:9;:18;49464:7;49454:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;49530:7;49509:37;;49526:1;49509:37;;;49539:6;49509:37;;;;;;:::i;:::-;;;;;;;;49559:48;49587:1;49591:7;49600:6;49559:19;:48::i;:::-;48886:729;;:::o;50159:677::-;50262:1;50243:21;;:7;:21;;;;50235:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;50315:49;50336:7;50353:1;50357:6;50315:20;:49::i;:::-;50377:22;50402:9;:18;50412:7;50402:18;;;;;;;;;;;;;;;;50377:43;;50457:6;50439:14;:24;;50431:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;50576:6;50559:14;:23;50538:9;:18;50548:7;50538:18;;;;;;;;;;;;;;;:44;;;;50695:6;50678:13;;:23;;;;;;;;;;;50756:1;50730:37;;50739:7;50730:37;;;50760:6;50730:37;;;;;;:::i;:::-;;;;;;;;50780:48;50800:7;50817:1;50821:6;50780:19;:48::i;:::-;50224:612;50159:677;;:::o;33236:118::-;32245:19;:17;:19::i;:::-;33306:4:::1;33296:7;;:14;;;;;;;;;;;;;;;;;;33326:20;33333:12;:10;:12::i;:::-;33326:20;;;;;;:::i;:::-;;;;;;;;33236:118::o:0;10392:158::-;10466:7;10517:22;10521:3;:10;;10533:5;10517:3;:22::i;:::-;10509:31;;10486:56;;10392:158;;;;:::o;9921:117::-;9984:7;10011:19;10019:3;:10;;10011:7;:19::i;:::-;10004:26;;9921:117;;;:::o;3011:414::-;3074:4;3096:21;3106:3;3111:5;3096:9;:21::i;:::-;3091:327;;3134:3;:11;;3151:5;3134:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3317:3;:11;;:18;;;;3295:3;:12;;:19;3308:5;3295:19;;;;;;;;;;;:40;;;;3357:4;3350:11;;;;3091:327;3401:5;3394:12;;3011:414;;;;;:::o;15530:157::-;15615:4;15654:25;15639:40;;;:11;:40;;;;15632:47;;15530:157;;;:::o;58880:217::-;59045:44;59072:4;59078:2;59082:6;59045:26;:44::i;:::-;58880:217;;;:::o;53727:124::-;;;;:::o;24760:492::-;24849:22;24857:4;24863:7;24849;:22::i;:::-;24844:401;;25037:28;25057:7;25037:19;:28::i;:::-;25138:38;25166:4;25158:13;;25173:2;25138:19;:38::i;:::-;24942:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24888:345;;;;;;;;;;;:::i;:::-;;;;;;;;24844:401;24760:492;;:::o;29589:239::-;29673:22;29681:4;29687:7;29673;:22::i;:::-;29669:152;;;29744:5;29712:6;:12;29719:4;29712:12;;;;;;;;;;;:20;;:29;29733:7;29712:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;29796:12;:10;:12::i;:::-;29769:40;;29787:7;29769:40;;29781:4;29769:40;;;;;;;;;;29669:152;29589:239;;:::o;9424:158::-;9497:4;9521:53;9529:3;:10;;9565:5;9549:23;;9541:32;;9521:7;:53::i;:::-;9514:60;;9424:158;;;;:::o;32984:108::-;33051:8;:6;:8::i;:::-;33043:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;32984:108::o;32799:::-;32870:8;:6;:8::i;:::-;32869:9;32861:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;32799:108::o;5785:120::-;5852:7;5879:3;:11;;5891:5;5879:18;;;;;;;;:::i;:::-;;;;;;;;;;5872:25;;5785:120;;;;:::o;5322:109::-;5378:7;5405:3;:11;;:18;;;;5398:25;;5322:109;;;:::o;5107:129::-;5180:4;5227:1;5204:3;:12;;:19;5217:5;5204:19;;;;;;;;;;;;:24;;5197:31;;5107:129;;;;:::o;55526:272::-;55669:44;55696:4;55702:2;55706:6;55669:26;:44::i;:::-;55735:8;:6;:8::i;:::-;55734:9;55726:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;55526:272;;;:::o;17977:151::-;18035:13;18068:52;18096:4;18080:22;;15959:2;18068:52;;:11;:52::i;:::-;18061:59;;17977:151;;;:::o;17369:451::-;17444:13;17470:19;17515:1;17506:6;17502:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;17492:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17470:47;;17528:15;:6;17535:1;17528:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;17554;:6;17561:1;17554:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;17585:9;17610:1;17601:6;17597:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;17585:26;;17580:135;17617:1;17613;:5;17580:135;;;17652:12;17673:3;17665:5;:11;17652:25;;;;;;;:::i;:::-;;;;;17640:6;17647:1;17640:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;17702:1;17692:11;;;;;17620:3;;;;:::i;:::-;;;17580:135;;;;17742:1;17733:5;:10;17725:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;17805:6;17791:21;;;17369:451;;;;:::o;3601:1420::-;3667:4;3785:18;3806:3;:12;;:19;3819:5;3806:19;;;;;;;;;;;;3785:40;;3856:1;3842:10;:15;3838:1176;;4217:21;4254:1;4241:10;:14;;;;:::i;:::-;4217:38;;4270:17;4311:1;4290:3;:11;;:18;;;;:22;;;;:::i;:::-;4270:42;;4346:13;4333:9;:26;4329:405;;4380:17;4400:3;:11;;4412:9;4400:22;;;;;;;;:::i;:::-;;;;;;;;;;4380:42;;4554:9;4525:3;:11;;4537:13;4525:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;4665:10;4639:3;:12;;:23;4652:9;4639:23;;;;;;;;;;;:36;;;;4361:373;4329:405;4815:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4910:3;:12;;:19;4923:5;4910:19;;;;;;;;;;;4903:26;;;4953:4;4946:11;;;;;;;3838:1176;4997:5;4990:12;;;3601:1420;;;;;:::o;52998:125::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:137::-;342:5;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;297:137;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:329::-;644:6;693:2;681:9;672:7;668:23;664:32;661:119;;;699:79;;:::i;:::-;661:119;819:1;844:53;889:7;880:6;869:9;865:22;844:53;:::i;:::-;834:63;;790:117;585:329;;;;:::o;920:474::-;988:6;996;1045:2;1033:9;1024:7;1020:23;1016:32;1013:119;;;1051:79;;:::i;:::-;1013:119;1171:1;1196:53;1241:7;1232:6;1221:9;1217:22;1196:53;:::i;:::-;1186:63;;1142:117;1298:2;1324:53;1369:7;1360:6;1349:9;1345:22;1324:53;:::i;:::-;1314:63;;1269:118;920:474;;;;;:::o;1400:619::-;1477:6;1485;1493;1542:2;1530:9;1521:7;1517:23;1513:32;1510:119;;;1548:79;;:::i;:::-;1510:119;1668:1;1693:53;1738:7;1729:6;1718:9;1714:22;1693:53;:::i;:::-;1683:63;;1639:117;1795:2;1821:53;1866:7;1857:6;1846:9;1842:22;1821:53;:::i;:::-;1811:63;;1766:118;1923:2;1949:53;1994:7;1985:6;1974:9;1970:22;1949:53;:::i;:::-;1939:63;;1894:118;1400:619;;;;;:::o;2025:474::-;2093:6;2101;2150:2;2138:9;2129:7;2125:23;2121:32;2118:119;;;2156:79;;:::i;:::-;2118:119;2276:1;2301:53;2346:7;2337:6;2326:9;2322:22;2301:53;:::i;:::-;2291:63;;2247:117;2403:2;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2374:118;2025:474;;;;;:::o;2505:329::-;2564:6;2613:2;2601:9;2592:7;2588:23;2584:32;2581:119;;;2619:79;;:::i;:::-;2581:119;2739:1;2764:53;2809:7;2800:6;2789:9;2785:22;2764:53;:::i;:::-;2754:63;;2710:117;2505:329;;;;:::o;2840:474::-;2908:6;2916;2965:2;2953:9;2944:7;2940:23;2936:32;2933:119;;;2971:79;;:::i;:::-;2933:119;3091:1;3116:53;3161:7;3152:6;3141:9;3137:22;3116:53;:::i;:::-;3106:63;;3062:117;3218:2;3244:53;3289:7;3280:6;3269:9;3265:22;3244:53;:::i;:::-;3234:63;;3189:118;2840:474;;;;;:::o;3320:::-;3388:6;3396;3445:2;3433:9;3424:7;3420:23;3416:32;3413:119;;;3451:79;;:::i;:::-;3413:119;3571:1;3596:53;3641:7;3632:6;3621:9;3617:22;3596:53;:::i;:::-;3586:63;;3542:117;3698:2;3724:53;3769:7;3760:6;3749:9;3745:22;3724:53;:::i;:::-;3714:63;;3669:118;3320:474;;;;;:::o;3800:327::-;3858:6;3907:2;3895:9;3886:7;3882:23;3878:32;3875:119;;;3913:79;;:::i;:::-;3875:119;4033:1;4058:52;4102:7;4093:6;4082:9;4078:22;4058:52;:::i;:::-;4048:62;;4004:116;3800:327;;;;:::o;4133:329::-;4192:6;4241:2;4229:9;4220:7;4216:23;4212:32;4209:119;;;4247:79;;:::i;:::-;4209:119;4367:1;4392:53;4437:7;4428:6;4417:9;4413:22;4392:53;:::i;:::-;4382:63;;4338:117;4133:329;;;;:::o;4468:118::-;4555:24;4573:5;4555:24;:::i;:::-;4550:3;4543:37;4468:118;;:::o;4592:109::-;4673:21;4688:5;4673:21;:::i;:::-;4668:3;4661:34;4592:109;;:::o;4707:118::-;4794:24;4812:5;4794:24;:::i;:::-;4789:3;4782:37;4707:118;;:::o;4831:364::-;4919:3;4947:39;4980:5;4947:39;:::i;:::-;5002:71;5066:6;5061:3;5002:71;:::i;:::-;4995:78;;5082:52;5127:6;5122:3;5115:4;5108:5;5104:16;5082:52;:::i;:::-;5159:29;5181:6;5159:29;:::i;:::-;5154:3;5150:39;5143:46;;4923:272;4831:364;;;;:::o;5201:377::-;5307:3;5335:39;5368:5;5335:39;:::i;:::-;5390:89;5472:6;5467:3;5390:89;:::i;:::-;5383:96;;5488:52;5533:6;5528:3;5521:4;5514:5;5510:16;5488:52;:::i;:::-;5565:6;5560:3;5556:16;5549:23;;5311:267;5201:377;;;;:::o;5584:366::-;5726:3;5747:67;5811:2;5806:3;5747:67;:::i;:::-;5740:74;;5823:93;5912:3;5823:93;:::i;:::-;5941:2;5936:3;5932:12;5925:19;;5584:366;;;:::o;5956:::-;6098:3;6119:67;6183:2;6178:3;6119:67;:::i;:::-;6112:74;;6195:93;6284:3;6195:93;:::i;:::-;6313:2;6308:3;6304:12;6297:19;;5956:366;;;:::o;6328:::-;6470:3;6491:67;6555:2;6550:3;6491:67;:::i;:::-;6484:74;;6567:93;6656:3;6567:93;:::i;:::-;6685:2;6680:3;6676:12;6669:19;;6328:366;;;:::o;6700:::-;6842:3;6863:67;6927:2;6922:3;6863:67;:::i;:::-;6856:74;;6939:93;7028:3;6939:93;:::i;:::-;7057:2;7052:3;7048:12;7041:19;;6700:366;;;:::o;7072:::-;7214:3;7235:67;7299:2;7294:3;7235:67;:::i;:::-;7228:74;;7311:93;7400:3;7311:93;:::i;:::-;7429:2;7424:3;7420:12;7413:19;;7072:366;;;:::o;7444:::-;7586:3;7607:67;7671:2;7666:3;7607:67;:::i;:::-;7600:74;;7683:93;7772:3;7683:93;:::i;:::-;7801:2;7796:3;7792:12;7785:19;;7444:366;;;:::o;7816:::-;7958:3;7979:67;8043:2;8038:3;7979:67;:::i;:::-;7972:74;;8055:93;8144:3;8055:93;:::i;:::-;8173:2;8168:3;8164:12;8157:19;;7816:366;;;:::o;8188:::-;8330:3;8351:67;8415:2;8410:3;8351:67;:::i;:::-;8344:74;;8427:93;8516:3;8427:93;:::i;:::-;8545:2;8540:3;8536:12;8529:19;;8188:366;;;:::o;8560:::-;8702:3;8723:67;8787:2;8782:3;8723:67;:::i;:::-;8716:74;;8799:93;8888:3;8799:93;:::i;:::-;8917:2;8912:3;8908:12;8901:19;;8560:366;;;:::o;8932:::-;9074:3;9095:67;9159:2;9154:3;9095:67;:::i;:::-;9088:74;;9171:93;9260:3;9171:93;:::i;:::-;9289:2;9284:3;9280:12;9273:19;;8932:366;;;:::o;9304:::-;9446:3;9467:67;9531:2;9526:3;9467:67;:::i;:::-;9460:74;;9543:93;9632:3;9543:93;:::i;:::-;9661:2;9656:3;9652:12;9645:19;;9304:366;;;:::o;9676:::-;9818:3;9839:67;9903:2;9898:3;9839:67;:::i;:::-;9832:74;;9915:93;10004:3;9915:93;:::i;:::-;10033:2;10028:3;10024:12;10017:19;;9676:366;;;:::o;10048:::-;10190:3;10211:67;10275:2;10270:3;10211:67;:::i;:::-;10204:74;;10287:93;10376:3;10287:93;:::i;:::-;10405:2;10400:3;10396:12;10389:19;;10048:366;;;:::o;10420:::-;10562:3;10583:67;10647:2;10642:3;10583:67;:::i;:::-;10576:74;;10659:93;10748:3;10659:93;:::i;:::-;10777:2;10772:3;10768:12;10761:19;;10420:366;;;:::o;10792:::-;10934:3;10955:67;11019:2;11014:3;10955:67;:::i;:::-;10948:74;;11031:93;11120:3;11031:93;:::i;:::-;11149:2;11144:3;11140:12;11133:19;;10792:366;;;:::o;11164:::-;11306:3;11327:67;11391:2;11386:3;11327:67;:::i;:::-;11320:74;;11403:93;11492:3;11403:93;:::i;:::-;11521:2;11516:3;11512:12;11505:19;;11164:366;;;:::o;11536:::-;11678:3;11699:67;11763:2;11758:3;11699:67;:::i;:::-;11692:74;;11775:93;11864:3;11775:93;:::i;:::-;11893:2;11888:3;11884:12;11877:19;;11536:366;;;:::o;11908:402::-;12068:3;12089:85;12171:2;12166:3;12089:85;:::i;:::-;12082:92;;12183:93;12272:3;12183:93;:::i;:::-;12301:2;12296:3;12292:12;12285:19;;11908:402;;;:::o;12316:366::-;12458:3;12479:67;12543:2;12538:3;12479:67;:::i;:::-;12472:74;;12555:93;12644:3;12555:93;:::i;:::-;12673:2;12668:3;12664:12;12657:19;;12316:366;;;:::o;12688:::-;12830:3;12851:67;12915:2;12910:3;12851:67;:::i;:::-;12844:74;;12927:93;13016:3;12927:93;:::i;:::-;13045:2;13040:3;13036:12;13029:19;;12688:366;;;:::o;13060:402::-;13220:3;13241:85;13323:2;13318:3;13241:85;:::i;:::-;13234:92;;13335:93;13424:3;13335:93;:::i;:::-;13453:2;13448:3;13444:12;13437:19;;13060:402;;;:::o;13468:366::-;13610:3;13631:67;13695:2;13690:3;13631:67;:::i;:::-;13624:74;;13707:93;13796:3;13707:93;:::i;:::-;13825:2;13820:3;13816:12;13809:19;;13468:366;;;:::o;13840:::-;13982:3;14003:67;14067:2;14062:3;14003:67;:::i;:::-;13996:74;;14079:93;14168:3;14079:93;:::i;:::-;14197:2;14192:3;14188:12;14181:19;;13840:366;;;:::o;14212:::-;14354:3;14375:67;14439:2;14434:3;14375:67;:::i;:::-;14368:74;;14451:93;14540:3;14451:93;:::i;:::-;14569:2;14564:3;14560:12;14553:19;;14212:366;;;:::o;14584:118::-;14671:24;14689:5;14671:24;:::i;:::-;14666:3;14659:37;14584:118;;:::o;14708:112::-;14791:22;14807:5;14791:22;:::i;:::-;14786:3;14779:35;14708:112;;:::o;14826:967::-;15208:3;15230:148;15374:3;15230:148;:::i;:::-;15223:155;;15395:95;15486:3;15477:6;15395:95;:::i;:::-;15388:102;;15507:148;15651:3;15507:148;:::i;:::-;15500:155;;15672:95;15763:3;15754:6;15672:95;:::i;:::-;15665:102;;15784:3;15777:10;;14826:967;;;;;:::o;15799:222::-;15892:4;15930:2;15919:9;15915:18;15907:26;;15943:71;16011:1;16000:9;15996:17;15987:6;15943:71;:::i;:::-;15799:222;;;;:::o;16027:210::-;16114:4;16152:2;16141:9;16137:18;16129:26;;16165:65;16227:1;16216:9;16212:17;16203:6;16165:65;:::i;:::-;16027:210;;;;:::o;16243:222::-;16336:4;16374:2;16363:9;16359:18;16351:26;;16387:71;16455:1;16444:9;16440:17;16431:6;16387:71;:::i;:::-;16243:222;;;;:::o;16471:313::-;16584:4;16622:2;16611:9;16607:18;16599:26;;16671:9;16665:4;16661:20;16657:1;16646:9;16642:17;16635:47;16699:78;16772:4;16763:6;16699:78;:::i;:::-;16691:86;;16471:313;;;;:::o;16790:419::-;16956:4;16994:2;16983:9;16979:18;16971:26;;17043:9;17037:4;17033:20;17029:1;17018:9;17014:17;17007:47;17071:131;17197:4;17071:131;:::i;:::-;17063:139;;16790:419;;;:::o;17215:::-;17381:4;17419:2;17408:9;17404:18;17396:26;;17468:9;17462:4;17458:20;17454:1;17443:9;17439:17;17432:47;17496:131;17622:4;17496:131;:::i;:::-;17488:139;;17215:419;;;:::o;17640:::-;17806:4;17844:2;17833:9;17829:18;17821:26;;17893:9;17887:4;17883:20;17879:1;17868:9;17864:17;17857:47;17921:131;18047:4;17921:131;:::i;:::-;17913:139;;17640:419;;;:::o;18065:::-;18231:4;18269:2;18258:9;18254:18;18246:26;;18318:9;18312:4;18308:20;18304:1;18293:9;18289:17;18282:47;18346:131;18472:4;18346:131;:::i;:::-;18338:139;;18065:419;;;:::o;18490:::-;18656:4;18694:2;18683:9;18679:18;18671:26;;18743:9;18737:4;18733:20;18729:1;18718:9;18714:17;18707:47;18771:131;18897:4;18771:131;:::i;:::-;18763:139;;18490:419;;;:::o;18915:::-;19081:4;19119:2;19108:9;19104:18;19096:26;;19168:9;19162:4;19158:20;19154:1;19143:9;19139:17;19132:47;19196:131;19322:4;19196:131;:::i;:::-;19188:139;;18915:419;;;:::o;19340:::-;19506:4;19544:2;19533:9;19529:18;19521:26;;19593:9;19587:4;19583:20;19579:1;19568:9;19564:17;19557:47;19621:131;19747:4;19621:131;:::i;:::-;19613:139;;19340:419;;;:::o;19765:::-;19931:4;19969:2;19958:9;19954:18;19946:26;;20018:9;20012:4;20008:20;20004:1;19993:9;19989:17;19982:47;20046:131;20172:4;20046:131;:::i;:::-;20038:139;;19765:419;;;:::o;20190:::-;20356:4;20394:2;20383:9;20379:18;20371:26;;20443:9;20437:4;20433:20;20429:1;20418:9;20414:17;20407:47;20471:131;20597:4;20471:131;:::i;:::-;20463:139;;20190:419;;;:::o;20615:::-;20781:4;20819:2;20808:9;20804:18;20796:26;;20868:9;20862:4;20858:20;20854:1;20843:9;20839:17;20832:47;20896:131;21022:4;20896:131;:::i;:::-;20888:139;;20615:419;;;:::o;21040:::-;21206:4;21244:2;21233:9;21229:18;21221:26;;21293:9;21287:4;21283:20;21279:1;21268:9;21264:17;21257:47;21321:131;21447:4;21321:131;:::i;:::-;21313:139;;21040:419;;;:::o;21465:::-;21631:4;21669:2;21658:9;21654:18;21646:26;;21718:9;21712:4;21708:20;21704:1;21693:9;21689:17;21682:47;21746:131;21872:4;21746:131;:::i;:::-;21738:139;;21465:419;;;:::o;21890:::-;22056:4;22094:2;22083:9;22079:18;22071:26;;22143:9;22137:4;22133:20;22129:1;22118:9;22114:17;22107:47;22171:131;22297:4;22171:131;:::i;:::-;22163:139;;21890:419;;;:::o;22315:::-;22481:4;22519:2;22508:9;22504:18;22496:26;;22568:9;22562:4;22558:20;22554:1;22543:9;22539:17;22532:47;22596:131;22722:4;22596:131;:::i;:::-;22588:139;;22315:419;;;:::o;22740:::-;22906:4;22944:2;22933:9;22929:18;22921:26;;22993:9;22987:4;22983:20;22979:1;22968:9;22964:17;22957:47;23021:131;23147:4;23021:131;:::i;:::-;23013:139;;22740:419;;;:::o;23165:::-;23331:4;23369:2;23358:9;23354:18;23346:26;;23418:9;23412:4;23408:20;23404:1;23393:9;23389:17;23382:47;23446:131;23572:4;23446:131;:::i;:::-;23438:139;;23165:419;;;:::o;23590:::-;23756:4;23794:2;23783:9;23779:18;23771:26;;23843:9;23837:4;23833:20;23829:1;23818:9;23814:17;23807:47;23871:131;23997:4;23871:131;:::i;:::-;23863:139;;23590:419;;;:::o;24015:::-;24181:4;24219:2;24208:9;24204:18;24196:26;;24268:9;24262:4;24258:20;24254:1;24243:9;24239:17;24232:47;24296:131;24422:4;24296:131;:::i;:::-;24288:139;;24015:419;;;:::o;24440:::-;24606:4;24644:2;24633:9;24629:18;24621:26;;24693:9;24687:4;24683:20;24679:1;24668:9;24664:17;24657:47;24721:131;24847:4;24721:131;:::i;:::-;24713:139;;24440:419;;;:::o;24865:::-;25031:4;25069:2;25058:9;25054:18;25046:26;;25118:9;25112:4;25108:20;25104:1;25093:9;25089:17;25082:47;25146:131;25272:4;25146:131;:::i;:::-;25138:139;;24865:419;;;:::o;25290:::-;25456:4;25494:2;25483:9;25479:18;25471:26;;25543:9;25537:4;25533:20;25529:1;25518:9;25514:17;25507:47;25571:131;25697:4;25571:131;:::i;:::-;25563:139;;25290:419;;;:::o;25715:::-;25881:4;25919:2;25908:9;25904:18;25896:26;;25968:9;25962:4;25958:20;25954:1;25943:9;25939:17;25932:47;25996:131;26122:4;25996:131;:::i;:::-;25988:139;;25715:419;;;:::o;26140:222::-;26233:4;26271:2;26260:9;26256:18;26248:26;;26284:71;26352:1;26341:9;26337:17;26328:6;26284:71;:::i;:::-;26140:222;;;;:::o;26368:214::-;26457:4;26495:2;26484:9;26480:18;26472:26;;26508:67;26572:1;26561:9;26557:17;26548:6;26508:67;:::i;:::-;26368:214;;;;:::o;26669:99::-;26721:6;26755:5;26749:12;26739:22;;26669:99;;;:::o;26774:169::-;26858:11;26892:6;26887:3;26880:19;26932:4;26927:3;26923:14;26908:29;;26774:169;;;;:::o;26949:148::-;27051:11;27088:3;27073:18;;26949:148;;;;:::o;27103:305::-;27143:3;27162:20;27180:1;27162:20;:::i;:::-;27157:25;;27196:20;27214:1;27196:20;:::i;:::-;27191:25;;27350:1;27282:66;27278:74;27275:1;27272:81;27269:107;;;27356:18;;:::i;:::-;27269:107;27400:1;27397;27393:9;27386:16;;27103:305;;;;:::o;27414:348::-;27454:7;27477:20;27495:1;27477:20;:::i;:::-;27472:25;;27511:20;27529:1;27511:20;:::i;:::-;27506:25;;27699:1;27631:66;27627:74;27624:1;27621:81;27616:1;27609:9;27602:17;27598:105;27595:131;;;27706:18;;:::i;:::-;27595:131;27754:1;27751;27747:9;27736:20;;27414:348;;;;:::o;27768:191::-;27808:4;27828:20;27846:1;27828:20;:::i;:::-;27823:25;;27862:20;27880:1;27862:20;:::i;:::-;27857:25;;27901:1;27898;27895:8;27892:34;;;27906:18;;:::i;:::-;27892:34;27951:1;27948;27944:9;27936:17;;27768:191;;;;:::o;27965:96::-;28002:7;28031:24;28049:5;28031:24;:::i;:::-;28020:35;;27965:96;;;:::o;28067:90::-;28101:7;28144:5;28137:13;28130:21;28119:32;;28067:90;;;:::o;28163:77::-;28200:7;28229:5;28218:16;;28163:77;;;:::o;28246:149::-;28282:7;28322:66;28315:5;28311:78;28300:89;;28246:149;;;:::o;28401:126::-;28438:7;28478:42;28471:5;28467:54;28456:65;;28401:126;;;:::o;28533:77::-;28570:7;28599:5;28588:16;;28533:77;;;:::o;28616:86::-;28651:7;28691:4;28684:5;28680:16;28669:27;;28616:86;;;:::o;28708:307::-;28776:1;28786:113;28800:6;28797:1;28794:13;28786:113;;;28885:1;28880:3;28876:11;28870:18;28866:1;28861:3;28857:11;28850:39;28822:2;28819:1;28815:10;28810:15;;28786:113;;;28917:6;28914:1;28911:13;28908:101;;;28997:1;28988:6;28983:3;28979:16;28972:27;28908:101;28757:258;28708:307;;;:::o;29021:171::-;29060:3;29083:24;29101:5;29083:24;:::i;:::-;29074:33;;29129:4;29122:5;29119:15;29116:41;;;29137:18;;:::i;:::-;29116:41;29184:1;29177:5;29173:13;29166:20;;29021:171;;;:::o;29198:320::-;29242:6;29279:1;29273:4;29269:12;29259:22;;29326:1;29320:4;29316:12;29347:18;29337:81;;29403:4;29395:6;29391:17;29381:27;;29337:81;29465:2;29457:6;29454:14;29434:18;29431:38;29428:84;;;29484:18;;:::i;:::-;29428:84;29249:269;29198:320;;;:::o;29524:180::-;29572:77;29569:1;29562:88;29669:4;29666:1;29659:15;29693:4;29690:1;29683:15;29710:180;29758:77;29755:1;29748:88;29855:4;29852:1;29845:15;29879:4;29876:1;29869:15;29896:180;29944:77;29941:1;29934:88;30041:4;30038:1;30031:15;30065:4;30062:1;30055:15;30082:180;30130:77;30127:1;30120:88;30227:4;30224:1;30217:15;30251:4;30248:1;30241:15;30268:180;30316:77;30313:1;30306:88;30413:4;30410:1;30403:15;30437:4;30434:1;30427:15;30577:117;30686:1;30683;30676:12;30700:102;30741:6;30792:2;30788:7;30783:2;30776:5;30772:14;30768:28;30758:38;;30700:102;;;:::o;30808:182::-;30948:34;30944:1;30936:6;30932:14;30925:58;30808:182;:::o;30996:222::-;31136:34;31132:1;31124:6;31120:14;31113:58;31205:5;31200:2;31192:6;31188:15;31181:30;30996:222;:::o;31224:170::-;31364:22;31360:1;31352:6;31348:14;31341:46;31224:170;:::o;31400:221::-;31540:34;31536:1;31528:6;31524:14;31517:58;31609:4;31604:2;31596:6;31592:15;31585:29;31400:221;:::o;31627:244::-;31767:34;31763:1;31755:6;31751:14;31744:58;31836:27;31831:2;31823:6;31819:15;31812:52;31627:244;:::o;31877:232::-;32017:34;32013:1;32005:6;32001:14;31994:58;32086:15;32081:2;32073:6;32069:15;32062:40;31877:232;:::o;32115:221::-;32255:34;32251:1;32243:6;32239:14;32232:58;32324:4;32319:2;32311:6;32307:15;32300:29;32115:221;:::o;32342:220::-;32482:34;32478:1;32470:6;32466:14;32459:58;32551:3;32546:2;32538:6;32534:15;32527:28;32342:220;:::o;32568:179::-;32708:31;32704:1;32696:6;32692:14;32685:55;32568:179;:::o;32753:225::-;32893:34;32889:1;32881:6;32877:14;32870:58;32962:8;32957:2;32949:6;32945:15;32938:33;32753:225;:::o;32984:166::-;33124:18;33120:1;33112:6;33108:14;33101:42;32984:166;:::o;33156:222::-;33296:34;33292:1;33284:6;33280:14;33273:58;33365:5;33360:2;33352:6;33348:15;33341:30;33156:222;:::o;33384:241::-;33524:34;33520:1;33512:6;33508:14;33501:58;33593:24;33588:2;33580:6;33576:15;33569:49;33384:241;:::o;33631:220::-;33771:34;33767:1;33759:6;33755:14;33748:58;33840:3;33835:2;33827:6;33823:15;33816:28;33631:220;:::o;33857:224::-;33997:34;33993:1;33985:6;33981:14;33974:58;34066:7;34061:2;34053:6;34049:15;34042:32;33857:224;:::o;34087:223::-;34227:34;34223:1;34215:6;34211:14;34204:58;34296:6;34291:2;34283:6;34279:15;34272:31;34087:223;:::o;34316:242::-;34456:34;34452:1;34444:6;34440:14;34433:58;34525:25;34520:2;34512:6;34508:15;34501:50;34316:242;:::o;34564:173::-;34704:25;34700:1;34692:6;34688:14;34681:49;34564:173;:::o;34743:::-;34883:25;34879:1;34871:6;34867:14;34860:49;34743:173;:::o;34922:224::-;35062:34;35058:1;35050:6;35046:14;35039:58;35131:7;35126:2;35118:6;35114:15;35107:32;34922:224;:::o;35152:167::-;35292:19;35288:1;35280:6;35276:14;35269:43;35152:167;:::o;35325:234::-;35465:34;35461:1;35453:6;35449:14;35442:58;35534:17;35529:2;35521:6;35517:15;35510:42;35325:234;:::o;35565:181::-;35705:33;35701:1;35693:6;35689:14;35682:57;35565:181;:::o;35752:229::-;35892:34;35888:1;35880:6;35876:14;35869:58;35961:12;35956:2;35948:6;35944:15;35937:37;35752:229;:::o;35987:122::-;36060:24;36078:5;36060:24;:::i;:::-;36053:5;36050:35;36040:63;;36099:1;36096;36089:12;36040:63;35987:122;:::o;36115:::-;36188:24;36206:5;36188:24;:::i;:::-;36181:5;36178:35;36168:63;;36227:1;36224;36217:12;36168:63;36115:122;:::o;36243:120::-;36315:23;36332:5;36315:23;:::i;:::-;36308:5;36305:34;36295:62;;36353:1;36350;36343:12;36295:62;36243:120;:::o;36369:122::-;36442:24;36460:5;36442:24;:::i;:::-;36435:5;36432:35;36422:63;;36481:1;36478;36471:12;36422:63;36369:122;:::o

Swarm Source

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