ETH Price: $3,311.68 (-1.43%)

Token

amsterdreams (AMS)
 

Overview

Max Total Supply

100,000 AMS

Holders

66

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap: Universal Router
Balance
0.000606615732134268 AMS

Value
$0.00
0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD
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:
AmsToken

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-07-29
*/

// File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol


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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

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


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

// File: @openzeppelin/contracts/access/IAccessControl.sol


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

// File: @openzeppelin/contracts/access/IAccessControlEnumerable.sol


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

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


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

// File: @openzeppelin/contracts/access/AccessControl.sol


// 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(uint160(account), 20),
                        " 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 {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(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());
        }
    }
}

// File: @openzeppelin/contracts/access/AccessControlEnumerable.sol


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

// File: @openzeppelin/contracts/security/Pausable.sol


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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol


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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


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

// File: @openzeppelin/contracts/token/ERC20/presets/ERC20PresetMinterPauser.sol


// 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) ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _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 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);
    }
}

// File: amstoken.sol


// amsterdreams AMS token 1.0.0


pragma solidity ^0.8.0;


contract AmsToken is ERC20PresetMinterPauser
{
    bytes32 public constant RATE_ROLE = keccak256("RATE_ROLE");

    /*
     * AMS exchange rate, 18 decimals
     * if amsRateInEur == 1e18, then 1 AMS = 1 EUR
     * if amsRateInEur == 1e21, then 1 AMS = 1000 EUR
     */
    uint256 private amsRateInEur;

    constructor (uint256 _initialSupply) 
        ERC20PresetMinterPauser("amsterdreams", "AMS")
        {
            if (_initialSupply > 0)
                mint(_msgSender(), _initialSupply);

            amsRateInEur = 1e21;                     // Standard opening price, 1 AMS = 1000 EUR

            // Setup creator as someone who can set the exchange rate
            _setupRole(RATE_ROLE, _msgSender());
        }

    event AmsRateInEurChanged(uint256 _newRate);

    function getAmsRateInEur() public view returns(uint256)
    {
        return amsRateInEur;
    }

    function setAmsRateInEur(uint256 _newRate) public
    {
        require(hasRole(RATE_ROLE, _msgSender()), "AmsToken: must have RATE_ROLE to set exchange rate");
        require(_newRate >= 1000000000000000000, "AMS rate in EUR has to be at least 1");

        amsRateInEur = _newRate;
        emit AmsRateInEurChanged(_newRate);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_newRate","type":"uint256"}],"name":"AmsRateInEurChanged","type":"event"},{"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":[],"name":"RATE_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":[],"name":"getAmsRateInEur","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"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":"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":"_newRate","type":"uint256"}],"name":"setAmsRateInEur","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"}]

60806040523480156200001157600080fd5b5060405162003f6538038062003f6583398181016040528101906200003791906200083e565b6040518060400160405280600c81526020017f616d73746572647265616d7300000000000000000000000000000000000000008152506040518060400160405280600381526020017f414d53000000000000000000000000000000000000000000000000000000000081525081818160059080519060200190620000bd92919062000777565b508060069080519060200190620000d692919062000777565b5050506000600760006101000a81548160ff021916908315150217905550620001186000801b6200010c6200022060201b60201c565b6200022860201b60201c565b620001597f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200014d6200022060201b60201c565b6200022860201b60201c565b6200019a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6200018e6200022060201b60201c565b6200022860201b60201c565b50506000811115620001c857620001c7620001ba6200022060201b60201c565b826200023e60201b60201c565b5b683635c9adc5dea00000600881905550620002197f179a08cb9bbe72486f60916e77302a40f9ff69c43d6e385f1d61441442e276c26200020d6200022060201b60201c565b6200022860201b60201c565b5062000b6b565b600033905090565b6200023a8282620002d760201b60201c565b5050565b6200027f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620002736200022060201b60201c565b6200031f60201b60201c565b620002c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b890620008f6565b60405180910390fd5b620002d382826200038960201b60201c565b5050565b620002ee82826200050360201b62000ea91760201c565b6200031a8160016000858152602001908152602001600020620005f460201b62000f891790919060201c565b505050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f39062000918565b60405180910390fd5b62000410600083836200062c60201b60201c565b80600460008282546200042491906200098a565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200047c91906200098a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004e391906200095c565b60405180910390a3620004ff600083836200064960201b60201c565b5050565b6200051582826200031f60201b60201c565b620005f057600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005956200022060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600062000624836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200064e60201b60201c565b905092915050565b62000644838383620006c860201b62000fb91760201c565b505050565b505050565b60006200066283836200073860201b60201c565b620006bd578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620006c2565b600090505b92915050565b620006e08383836200075b60201b620010111760201c565b620006f06200076060201b60201c565b1562000733576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200072a906200093a565b60405180910390fd5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b6000600760009054906101000a900460ff16905090565b8280546200078590620009f1565b90600052602060002090601f016020900481019282620007a95760008555620007f5565b82601f10620007c457805160ff1916838001178555620007f5565b82800160010185558215620007f5579182015b82811115620007f4578251825591602001919060010190620007d7565b5b50905062000804919062000808565b5090565b5b808211156200082357600081600090555060010162000809565b5090565b600081519050620008388162000b51565b92915050565b60006020828403121562000857576200085662000a85565b5b6000620008678482850162000827565b91505092915050565b60006200087f60368362000979565b91506200088c8262000a8a565b604082019050919050565b6000620008a6601f8362000979565b9150620008b38262000ad9565b602082019050919050565b6000620008cd602a8362000979565b9150620008da8262000b02565b604082019050919050565b620008f081620009e7565b82525050565b60006020820190508181036000830152620009118162000870565b9050919050565b60006020820190508181036000830152620009338162000897565b9050919050565b600060208201905081810360008301526200095581620008be565b9050919050565b6000602082019050620009736000830184620008e5565b92915050565b600082825260208201905092915050565b60006200099782620009e7565b9150620009a483620009e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009dc57620009db62000a27565b5b828201905092915050565b6000819050919050565b6000600282049050600182168062000a0a57607f821691505b6020821081141562000a215762000a2062000a56565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b62000b5c81620009e7565b811462000b6857600080fd5b50565b6133ea8062000b7b6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a217fddf116100a2578063d539139311610071578063d5391393146105a6578063d547741f146105c4578063dd62ed3e146105e0578063e63ab1e914610610576101e5565b8063a217fddf146104f8578063a457c2d714610516578063a9059cbb14610546578063ca15c87314610576576101e5565b80639010d07c116100de5780639010d07c1461045e57806391d148541461048e5780639422bf18146104be57806395d89b41146104da576101e5565b806370a08231146103ea57806379cc67901461041a5780637f0ea43d146104365780638456cb5914610454576101e5565b8063313ce5671161018757806340c10f191161015657806340c10f191461037657806342966c68146103925780635c975abb146103ae5780636e0eadf7146103cc576101e5565b8063313ce5671461030257806336568abe14610320578063395093511461033c5780633f4ba83a1461036c576101e5565b806318160ddd116101c357806318160ddd1461026857806323b872dd14610286578063248a9ca3146102b65780632f2ff15d146102e6576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063095ea7b314610238575b600080fd5b61020460048036038101906101ff91906122fe565b61062e565b6040516102119190612764565b60405180910390f35b6102226106a8565b60405161022f919061279a565b60405180910390f35b610252600480360381019061024d9190612211565b61073a565b60405161025f9190612764565b60405180910390f35b61027061075d565b60405161027d9190612a3c565b60405180910390f35b6102a0600480360381019061029b91906121be565b610767565b6040516102ad9190612764565b60405180910390f35b6102d060048036038101906102cb9190612251565b610796565b6040516102dd919061277f565b60405180910390f35b61030060048036038101906102fb919061227e565b6107b5565b005b61030a6107d6565b6040516103179190612a57565b60405180910390f35b61033a6004803603810190610335919061227e565b6107df565b005b61035660048036038101906103519190612211565b610862565b6040516103639190612764565b60405180910390f35b610374610899565b005b610390600480360381019061038b9190612211565b610913565b005b6103ac60048036038101906103a7919061232b565b610991565b005b6103b66109a5565b6040516103c39190612764565b60405180910390f35b6103d46109bc565b6040516103e19190612a3c565b60405180910390f35b61040460048036038101906103ff9190612151565b6109c6565b6040516104119190612a3c565b60405180910390f35b610434600480360381019061042f9190612211565b610a0f565b005b61043e610a2f565b60405161044b919061277f565b60405180910390f35b61045c610a53565b005b610478600480360381019061047391906122be565b610acd565b6040516104859190612749565b60405180910390f35b6104a860048036038101906104a3919061227e565b610afc565b6040516104b59190612764565b60405180910390f35b6104d860048036038101906104d3919061232b565b610b66565b005b6104e2610c62565b6040516104ef919061279a565b60405180910390f35b610500610cf4565b60405161050d919061277f565b60405180910390f35b610530600480360381019061052b9190612211565b610cfb565b60405161053d9190612764565b60405180910390f35b610560600480360381019061055b9190612211565b610d72565b60405161056d9190612764565b60405180910390f35b610590600480360381019061058b9190612251565b610d95565b60405161059d9190612a3c565b60405180910390f35b6105ae610db9565b6040516105bb919061277f565b60405180910390f35b6105de60048036038101906105d9919061227e565b610ddd565b005b6105fa60048036038101906105f5919061217e565b610dfe565b6040516106079190612a3c565b60405180910390f35b610618610e85565b604051610625919061277f565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a157506106a082611016565b5b9050919050565b6060600580546106b790612c65565b80601f01602080910402602001604051908101604052809291908181526020018280546106e390612c65565b80156107305780601f1061070557610100808354040283529160200191610730565b820191906000526020600020905b81548152906001019060200180831161071357829003601f168201915b5050505050905090565b600080610745611090565b9050610752818585611098565b600191505092915050565b6000600454905090565b600080610772611090565b905061077f858285611263565b61078a8585856112ef565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6107be82610796565b6107c781611573565b6107d18383611587565b505050565b60006012905090565b6107e7611090565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906129dc565b60405180910390fd5b61085e82826115bb565b5050565b60008061086d611090565b905061088e81858561087f8589610dfe565b6108899190612a99565b611098565b600191505092915050565b6108ca7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108c5611090565b610afc565b610909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109009061285c565b60405180910390fd5b6109116115ef565b565b6109447f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661093f611090565b610afc565b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a9061291c565b60405180910390fd5b61098d8282611652565b5050565b6109a261099c611090565b826117b3565b50565b6000600760009054906101000a900460ff16905090565b6000600854905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a2182610a1b611090565b83611263565b610a2b82826117b3565b5050565b7f179a08cb9bbe72486f60916e77302a40f9ff69c43d6e385f1d61441442e276c281565b610a847f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a7f611090565b610afc565b610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba9061299c565b60405180910390fd5b610acb61198c565b565b6000610af482600160008681526020019081526020016000206119ef90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b977f179a08cb9bbe72486f60916e77302a40f9ff69c43d6e385f1d61441442e276c2610b92611090565b610afc565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd906127fc565b60405180910390fd5b670de0b6b3a7640000811015610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c18906128fc565b60405180910390fd5b806008819055507f2079d966ecc93807facfa0ba97bad10aa0da72b5b2ea2d2c14f0780e0de9590581604051610c579190612a3c565b60405180910390a150565b606060068054610c7190612c65565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9d90612c65565b8015610cea5780601f10610cbf57610100808354040283529160200191610cea565b820191906000526020600020905b815481529060010190602001808311610ccd57829003601f168201915b5050505050905090565b6000801b81565b600080610d06611090565b90506000610d148286610dfe565b905083811015610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d50906129bc565b60405180910390fd5b610d668286868403611098565b60019250505092915050565b600080610d7d611090565b9050610d8a8185856112ef565b600191505092915050565b6000610db260016000848152602001908152602001600020611a09565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610de682610796565b610def81611573565b610df983836115bb565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610eb38282610afc565b610f8557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f2a611090565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000610fb1836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611a1e565b905092915050565b610fc4838383611011565b610fcc6109a5565b1561100c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100390612a1c565b60405180910390fd5b505050565b505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611089575061108882611a8e565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff9061297c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f9061287c565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112569190612a3c565b60405180910390a3505050565b600061126f8484610dfe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112e957818110156112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d29061289c565b60405180910390fd5b6112e88484848403611098565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561135f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113569061295c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c6906127dc565b60405180910390fd5b6113da838383611af8565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611461576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611458906128bc565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114f69190612a99565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161155a9190612a3c565b60405180910390a361156d848484611b08565b50505050565b6115848161157f611090565b611b0d565b50565b6115918282610ea9565b6115b68160016000858152602001908152602001600020610f8990919063ffffffff16565b505050565b6115c58282611baa565b6115ea8160016000858152602001908152602001600020611c8b90919063ffffffff16565b505050565b6115f7611cbb565b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61163b611090565b6040516116489190612749565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b9906129fc565b60405180910390fd5b6116ce60008383611af8565b80600460008282546116e09190612a99565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117369190612a99565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161179b9190612a3c565b60405180910390a36117af60008383611b08565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a9061293c565b60405180910390fd5b61182f82600083611af8565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad9061283c565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816004600082825461190e9190612b49565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119739190612a3c565b60405180910390a361198783600084611b08565b505050565b611994611d04565b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119d8611090565b6040516119e59190612749565b60405180910390a1565b60006119fe8360000183611d4e565b60001c905092915050565b6000611a1782600001611d79565b9050919050565b6000611a2a8383611d8a565b611a83578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611a88565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611b03838383610fb9565b505050565b505050565b611b178282610afc565b611ba657611b3c8173ffffffffffffffffffffffffffffffffffffffff166014611dad565b611b4a8360001c6020611dad565b604051602001611b5b92919061270f565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d919061279a565b60405180910390fd5b5050565b611bb48282610afc565b15611c8757600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c2c611090565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000611cb3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611fe9565b905092915050565b611cc36109a5565b611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf99061281c565b60405180910390fd5b565b611d0c6109a5565b15611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d43906128dc565b60405180910390fd5b565b6000826000018281548110611d6657611d65612d24565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b606060006002836002611dc09190612aef565b611dca9190612a99565b67ffffffffffffffff811115611de357611de2612d53565b5b6040519080825280601f01601f191660200182016040528015611e155781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611e4d57611e4c612d24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611eb157611eb0612d24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611ef19190612aef565b611efb9190612a99565b90505b6001811115611f9b577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611f3d57611f3c612d24565b5b1a60f81b828281518110611f5457611f53612d24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611f9490612c3b565b9050611efe565b5060008414611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd6906127bc565b60405180910390fd5b8091505092915050565b600080836001016000848152602001908152602001600020549050600081146120f157600060018261201b9190612b49565b90506000600186600001805490506120339190612b49565b90508181146120a257600086600001828154811061205457612053612d24565b5b906000526020600020015490508087600001848154811061207857612077612d24565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806120b6576120b5612cf5565b5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506120f7565b60009150505b92915050565b60008135905061210c81613358565b92915050565b6000813590506121218161336f565b92915050565b60008135905061213681613386565b92915050565b60008135905061214b8161339d565b92915050565b60006020828403121561216757612166612d82565b5b6000612175848285016120fd565b91505092915050565b6000806040838503121561219557612194612d82565b5b60006121a3858286016120fd565b92505060206121b4858286016120fd565b9150509250929050565b6000806000606084860312156121d7576121d6612d82565b5b60006121e5868287016120fd565b93505060206121f6868287016120fd565b92505060406122078682870161213c565b9150509250925092565b6000806040838503121561222857612227612d82565b5b6000612236858286016120fd565b92505060206122478582860161213c565b9150509250929050565b60006020828403121561226757612266612d82565b5b600061227584828501612112565b91505092915050565b6000806040838503121561229557612294612d82565b5b60006122a385828601612112565b92505060206122b4858286016120fd565b9150509250929050565b600080604083850312156122d5576122d4612d82565b5b60006122e385828601612112565b92505060206122f48582860161213c565b9150509250929050565b60006020828403121561231457612313612d82565b5b600061232284828501612127565b91505092915050565b60006020828403121561234157612340612d82565b5b600061234f8482850161213c565b91505092915050565b61236181612b7d565b82525050565b61237081612b8f565b82525050565b61237f81612b9b565b82525050565b600061239082612a72565b61239a8185612a7d565b93506123aa818560208601612c08565b6123b381612d87565b840191505092915050565b60006123c982612a72565b6123d38185612a8e565b93506123e3818560208601612c08565b80840191505092915050565b60006123fc602083612a7d565b915061240782612d98565b602082019050919050565b600061241f602383612a7d565b915061242a82612dc1565b604082019050919050565b6000612442603283612a7d565b915061244d82612e10565b604082019050919050565b6000612465601483612a7d565b915061247082612e5f565b602082019050919050565b6000612488602283612a7d565b915061249382612e88565b604082019050919050565b60006124ab603983612a7d565b91506124b682612ed7565b604082019050919050565b60006124ce602283612a7d565b91506124d982612f26565b604082019050919050565b60006124f1601d83612a7d565b91506124fc82612f75565b602082019050919050565b6000612514602683612a7d565b915061251f82612f9e565b604082019050919050565b6000612537601083612a7d565b915061254282612fed565b602082019050919050565b600061255a602483612a7d565b915061256582613016565b604082019050919050565b600061257d603683612a7d565b915061258882613065565b604082019050919050565b60006125a0602183612a7d565b91506125ab826130b4565b604082019050919050565b60006125c3602583612a7d565b91506125ce82613103565b604082019050919050565b60006125e6602483612a7d565b91506125f182613152565b604082019050919050565b6000612609603783612a7d565b9150612614826131a1565b604082019050919050565b600061262c601783612a8e565b9150612637826131f0565b601782019050919050565b600061264f602583612a7d565b915061265a82613219565b604082019050919050565b6000612672601183612a8e565b915061267d82613268565b601182019050919050565b6000612695602f83612a7d565b91506126a082613291565b604082019050919050565b60006126b8601f83612a7d565b91506126c3826132e0565b602082019050919050565b60006126db602a83612a7d565b91506126e682613309565b604082019050919050565b6126fa81612bf1565b82525050565b61270981612bfb565b82525050565b600061271a8261261f565b915061272682856123be565b915061273182612665565b915061273d82846123be565b91508190509392505050565b600060208201905061275e6000830184612358565b92915050565b60006020820190506127796000830184612367565b92915050565b60006020820190506127946000830184612376565b92915050565b600060208201905081810360008301526127b48184612385565b905092915050565b600060208201905081810360008301526127d5816123ef565b9050919050565b600060208201905081810360008301526127f581612412565b9050919050565b6000602082019050818103600083015261281581612435565b9050919050565b6000602082019050818103600083015261283581612458565b9050919050565b600060208201905081810360008301526128558161247b565b9050919050565b600060208201905081810360008301526128758161249e565b9050919050565b60006020820190508181036000830152612895816124c1565b9050919050565b600060208201905081810360008301526128b5816124e4565b9050919050565b600060208201905081810360008301526128d581612507565b9050919050565b600060208201905081810360008301526128f58161252a565b9050919050565b600060208201905081810360008301526129158161254d565b9050919050565b6000602082019050818103600083015261293581612570565b9050919050565b6000602082019050818103600083015261295581612593565b9050919050565b60006020820190508181036000830152612975816125b6565b9050919050565b60006020820190508181036000830152612995816125d9565b9050919050565b600060208201905081810360008301526129b5816125fc565b9050919050565b600060208201905081810360008301526129d581612642565b9050919050565b600060208201905081810360008301526129f581612688565b9050919050565b60006020820190508181036000830152612a15816126ab565b9050919050565b60006020820190508181036000830152612a35816126ce565b9050919050565b6000602082019050612a5160008301846126f1565b92915050565b6000602082019050612a6c6000830184612700565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612aa482612bf1565b9150612aaf83612bf1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ae457612ae3612c97565b5b828201905092915050565b6000612afa82612bf1565b9150612b0583612bf1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b3e57612b3d612c97565b5b828202905092915050565b6000612b5482612bf1565b9150612b5f83612bf1565b925082821015612b7257612b71612c97565b5b828203905092915050565b6000612b8882612bd1565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612c26578082015181840152602081019050612c0b565b83811115612c35576000848401525b50505050565b6000612c4682612bf1565b91506000821415612c5a57612c59612c97565b5b600182039050919050565b60006002820490506001821680612c7d57607f821691505b60208210811415612c9157612c90612cc6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416d73546f6b656e3a206d757374206861766520524154455f524f4c4520746f60008201527f207365742065786368616e676520726174650000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f414d53207261746520696e204555522068617320746f206265206174206c656160008201527f7374203100000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61336181612b7d565b811461336c57600080fd5b50565b61337881612b9b565b811461338357600080fd5b50565b61338f81612ba5565b811461339a57600080fd5b50565b6133a681612bf1565b81146133b157600080fd5b5056fea264697066735822122030fb4819855313dda65b58046d7ec4603bd1971453be41e3491d9f73a50182c364736f6c6343000807003300000000000000000000000000000000000000000000152d02c7e14af6800000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a217fddf116100a2578063d539139311610071578063d5391393146105a6578063d547741f146105c4578063dd62ed3e146105e0578063e63ab1e914610610576101e5565b8063a217fddf146104f8578063a457c2d714610516578063a9059cbb14610546578063ca15c87314610576576101e5565b80639010d07c116100de5780639010d07c1461045e57806391d148541461048e5780639422bf18146104be57806395d89b41146104da576101e5565b806370a08231146103ea57806379cc67901461041a5780637f0ea43d146104365780638456cb5914610454576101e5565b8063313ce5671161018757806340c10f191161015657806340c10f191461037657806342966c68146103925780635c975abb146103ae5780636e0eadf7146103cc576101e5565b8063313ce5671461030257806336568abe14610320578063395093511461033c5780633f4ba83a1461036c576101e5565b806318160ddd116101c357806318160ddd1461026857806323b872dd14610286578063248a9ca3146102b65780632f2ff15d146102e6576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063095ea7b314610238575b600080fd5b61020460048036038101906101ff91906122fe565b61062e565b6040516102119190612764565b60405180910390f35b6102226106a8565b60405161022f919061279a565b60405180910390f35b610252600480360381019061024d9190612211565b61073a565b60405161025f9190612764565b60405180910390f35b61027061075d565b60405161027d9190612a3c565b60405180910390f35b6102a0600480360381019061029b91906121be565b610767565b6040516102ad9190612764565b60405180910390f35b6102d060048036038101906102cb9190612251565b610796565b6040516102dd919061277f565b60405180910390f35b61030060048036038101906102fb919061227e565b6107b5565b005b61030a6107d6565b6040516103179190612a57565b60405180910390f35b61033a6004803603810190610335919061227e565b6107df565b005b61035660048036038101906103519190612211565b610862565b6040516103639190612764565b60405180910390f35b610374610899565b005b610390600480360381019061038b9190612211565b610913565b005b6103ac60048036038101906103a7919061232b565b610991565b005b6103b66109a5565b6040516103c39190612764565b60405180910390f35b6103d46109bc565b6040516103e19190612a3c565b60405180910390f35b61040460048036038101906103ff9190612151565b6109c6565b6040516104119190612a3c565b60405180910390f35b610434600480360381019061042f9190612211565b610a0f565b005b61043e610a2f565b60405161044b919061277f565b60405180910390f35b61045c610a53565b005b610478600480360381019061047391906122be565b610acd565b6040516104859190612749565b60405180910390f35b6104a860048036038101906104a3919061227e565b610afc565b6040516104b59190612764565b60405180910390f35b6104d860048036038101906104d3919061232b565b610b66565b005b6104e2610c62565b6040516104ef919061279a565b60405180910390f35b610500610cf4565b60405161050d919061277f565b60405180910390f35b610530600480360381019061052b9190612211565b610cfb565b60405161053d9190612764565b60405180910390f35b610560600480360381019061055b9190612211565b610d72565b60405161056d9190612764565b60405180910390f35b610590600480360381019061058b9190612251565b610d95565b60405161059d9190612a3c565b60405180910390f35b6105ae610db9565b6040516105bb919061277f565b60405180910390f35b6105de60048036038101906105d9919061227e565b610ddd565b005b6105fa60048036038101906105f5919061217e565b610dfe565b6040516106079190612a3c565b60405180910390f35b610618610e85565b604051610625919061277f565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a157506106a082611016565b5b9050919050565b6060600580546106b790612c65565b80601f01602080910402602001604051908101604052809291908181526020018280546106e390612c65565b80156107305780601f1061070557610100808354040283529160200191610730565b820191906000526020600020905b81548152906001019060200180831161071357829003601f168201915b5050505050905090565b600080610745611090565b9050610752818585611098565b600191505092915050565b6000600454905090565b600080610772611090565b905061077f858285611263565b61078a8585856112ef565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6107be82610796565b6107c781611573565b6107d18383611587565b505050565b60006012905090565b6107e7611090565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906129dc565b60405180910390fd5b61085e82826115bb565b5050565b60008061086d611090565b905061088e81858561087f8589610dfe565b6108899190612a99565b611098565b600191505092915050565b6108ca7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108c5611090565b610afc565b610909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109009061285c565b60405180910390fd5b6109116115ef565b565b6109447f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661093f611090565b610afc565b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a9061291c565b60405180910390fd5b61098d8282611652565b5050565b6109a261099c611090565b826117b3565b50565b6000600760009054906101000a900460ff16905090565b6000600854905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a2182610a1b611090565b83611263565b610a2b82826117b3565b5050565b7f179a08cb9bbe72486f60916e77302a40f9ff69c43d6e385f1d61441442e276c281565b610a847f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a7f611090565b610afc565b610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba9061299c565b60405180910390fd5b610acb61198c565b565b6000610af482600160008681526020019081526020016000206119ef90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b977f179a08cb9bbe72486f60916e77302a40f9ff69c43d6e385f1d61441442e276c2610b92611090565b610afc565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd906127fc565b60405180910390fd5b670de0b6b3a7640000811015610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c18906128fc565b60405180910390fd5b806008819055507f2079d966ecc93807facfa0ba97bad10aa0da72b5b2ea2d2c14f0780e0de9590581604051610c579190612a3c565b60405180910390a150565b606060068054610c7190612c65565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9d90612c65565b8015610cea5780601f10610cbf57610100808354040283529160200191610cea565b820191906000526020600020905b815481529060010190602001808311610ccd57829003601f168201915b5050505050905090565b6000801b81565b600080610d06611090565b90506000610d148286610dfe565b905083811015610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d50906129bc565b60405180910390fd5b610d668286868403611098565b60019250505092915050565b600080610d7d611090565b9050610d8a8185856112ef565b600191505092915050565b6000610db260016000848152602001908152602001600020611a09565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610de682610796565b610def81611573565b610df983836115bb565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610eb38282610afc565b610f8557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f2a611090565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000610fb1836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611a1e565b905092915050565b610fc4838383611011565b610fcc6109a5565b1561100c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100390612a1c565b60405180910390fd5b505050565b505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611089575061108882611a8e565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff9061297c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f9061287c565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112569190612a3c565b60405180910390a3505050565b600061126f8484610dfe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112e957818110156112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d29061289c565b60405180910390fd5b6112e88484848403611098565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561135f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113569061295c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c6906127dc565b60405180910390fd5b6113da838383611af8565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611461576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611458906128bc565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114f69190612a99565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161155a9190612a3c565b60405180910390a361156d848484611b08565b50505050565b6115848161157f611090565b611b0d565b50565b6115918282610ea9565b6115b68160016000858152602001908152602001600020610f8990919063ffffffff16565b505050565b6115c58282611baa565b6115ea8160016000858152602001908152602001600020611c8b90919063ffffffff16565b505050565b6115f7611cbb565b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61163b611090565b6040516116489190612749565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b9906129fc565b60405180910390fd5b6116ce60008383611af8565b80600460008282546116e09190612a99565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117369190612a99565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161179b9190612a3c565b60405180910390a36117af60008383611b08565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a9061293c565b60405180910390fd5b61182f82600083611af8565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad9061283c565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816004600082825461190e9190612b49565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119739190612a3c565b60405180910390a361198783600084611b08565b505050565b611994611d04565b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119d8611090565b6040516119e59190612749565b60405180910390a1565b60006119fe8360000183611d4e565b60001c905092915050565b6000611a1782600001611d79565b9050919050565b6000611a2a8383611d8a565b611a83578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611a88565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611b03838383610fb9565b505050565b505050565b611b178282610afc565b611ba657611b3c8173ffffffffffffffffffffffffffffffffffffffff166014611dad565b611b4a8360001c6020611dad565b604051602001611b5b92919061270f565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d919061279a565b60405180910390fd5b5050565b611bb48282610afc565b15611c8757600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c2c611090565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000611cb3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611fe9565b905092915050565b611cc36109a5565b611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf99061281c565b60405180910390fd5b565b611d0c6109a5565b15611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d43906128dc565b60405180910390fd5b565b6000826000018281548110611d6657611d65612d24565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b606060006002836002611dc09190612aef565b611dca9190612a99565b67ffffffffffffffff811115611de357611de2612d53565b5b6040519080825280601f01601f191660200182016040528015611e155781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611e4d57611e4c612d24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611eb157611eb0612d24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611ef19190612aef565b611efb9190612a99565b90505b6001811115611f9b577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611f3d57611f3c612d24565b5b1a60f81b828281518110611f5457611f53612d24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611f9490612c3b565b9050611efe565b5060008414611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd6906127bc565b60405180910390fd5b8091505092915050565b600080836001016000848152602001908152602001600020549050600081146120f157600060018261201b9190612b49565b90506000600186600001805490506120339190612b49565b90508181146120a257600086600001828154811061205457612053612d24565b5b906000526020600020015490508087600001848154811061207857612077612d24565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806120b6576120b5612cf5565b5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506120f7565b60009150505b92915050565b60008135905061210c81613358565b92915050565b6000813590506121218161336f565b92915050565b60008135905061213681613386565b92915050565b60008135905061214b8161339d565b92915050565b60006020828403121561216757612166612d82565b5b6000612175848285016120fd565b91505092915050565b6000806040838503121561219557612194612d82565b5b60006121a3858286016120fd565b92505060206121b4858286016120fd565b9150509250929050565b6000806000606084860312156121d7576121d6612d82565b5b60006121e5868287016120fd565b93505060206121f6868287016120fd565b92505060406122078682870161213c565b9150509250925092565b6000806040838503121561222857612227612d82565b5b6000612236858286016120fd565b92505060206122478582860161213c565b9150509250929050565b60006020828403121561226757612266612d82565b5b600061227584828501612112565b91505092915050565b6000806040838503121561229557612294612d82565b5b60006122a385828601612112565b92505060206122b4858286016120fd565b9150509250929050565b600080604083850312156122d5576122d4612d82565b5b60006122e385828601612112565b92505060206122f48582860161213c565b9150509250929050565b60006020828403121561231457612313612d82565b5b600061232284828501612127565b91505092915050565b60006020828403121561234157612340612d82565b5b600061234f8482850161213c565b91505092915050565b61236181612b7d565b82525050565b61237081612b8f565b82525050565b61237f81612b9b565b82525050565b600061239082612a72565b61239a8185612a7d565b93506123aa818560208601612c08565b6123b381612d87565b840191505092915050565b60006123c982612a72565b6123d38185612a8e565b93506123e3818560208601612c08565b80840191505092915050565b60006123fc602083612a7d565b915061240782612d98565b602082019050919050565b600061241f602383612a7d565b915061242a82612dc1565b604082019050919050565b6000612442603283612a7d565b915061244d82612e10565b604082019050919050565b6000612465601483612a7d565b915061247082612e5f565b602082019050919050565b6000612488602283612a7d565b915061249382612e88565b604082019050919050565b60006124ab603983612a7d565b91506124b682612ed7565b604082019050919050565b60006124ce602283612a7d565b91506124d982612f26565b604082019050919050565b60006124f1601d83612a7d565b91506124fc82612f75565b602082019050919050565b6000612514602683612a7d565b915061251f82612f9e565b604082019050919050565b6000612537601083612a7d565b915061254282612fed565b602082019050919050565b600061255a602483612a7d565b915061256582613016565b604082019050919050565b600061257d603683612a7d565b915061258882613065565b604082019050919050565b60006125a0602183612a7d565b91506125ab826130b4565b604082019050919050565b60006125c3602583612a7d565b91506125ce82613103565b604082019050919050565b60006125e6602483612a7d565b91506125f182613152565b604082019050919050565b6000612609603783612a7d565b9150612614826131a1565b604082019050919050565b600061262c601783612a8e565b9150612637826131f0565b601782019050919050565b600061264f602583612a7d565b915061265a82613219565b604082019050919050565b6000612672601183612a8e565b915061267d82613268565b601182019050919050565b6000612695602f83612a7d565b91506126a082613291565b604082019050919050565b60006126b8601f83612a7d565b91506126c3826132e0565b602082019050919050565b60006126db602a83612a7d565b91506126e682613309565b604082019050919050565b6126fa81612bf1565b82525050565b61270981612bfb565b82525050565b600061271a8261261f565b915061272682856123be565b915061273182612665565b915061273d82846123be565b91508190509392505050565b600060208201905061275e6000830184612358565b92915050565b60006020820190506127796000830184612367565b92915050565b60006020820190506127946000830184612376565b92915050565b600060208201905081810360008301526127b48184612385565b905092915050565b600060208201905081810360008301526127d5816123ef565b9050919050565b600060208201905081810360008301526127f581612412565b9050919050565b6000602082019050818103600083015261281581612435565b9050919050565b6000602082019050818103600083015261283581612458565b9050919050565b600060208201905081810360008301526128558161247b565b9050919050565b600060208201905081810360008301526128758161249e565b9050919050565b60006020820190508181036000830152612895816124c1565b9050919050565b600060208201905081810360008301526128b5816124e4565b9050919050565b600060208201905081810360008301526128d581612507565b9050919050565b600060208201905081810360008301526128f58161252a565b9050919050565b600060208201905081810360008301526129158161254d565b9050919050565b6000602082019050818103600083015261293581612570565b9050919050565b6000602082019050818103600083015261295581612593565b9050919050565b60006020820190508181036000830152612975816125b6565b9050919050565b60006020820190508181036000830152612995816125d9565b9050919050565b600060208201905081810360008301526129b5816125fc565b9050919050565b600060208201905081810360008301526129d581612642565b9050919050565b600060208201905081810360008301526129f581612688565b9050919050565b60006020820190508181036000830152612a15816126ab565b9050919050565b60006020820190508181036000830152612a35816126ce565b9050919050565b6000602082019050612a5160008301846126f1565b92915050565b6000602082019050612a6c6000830184612700565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612aa482612bf1565b9150612aaf83612bf1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ae457612ae3612c97565b5b828201905092915050565b6000612afa82612bf1565b9150612b0583612bf1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b3e57612b3d612c97565b5b828202905092915050565b6000612b5482612bf1565b9150612b5f83612bf1565b925082821015612b7257612b71612c97565b5b828203905092915050565b6000612b8882612bd1565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612c26578082015181840152602081019050612c0b565b83811115612c35576000848401525b50505050565b6000612c4682612bf1565b91506000821415612c5a57612c59612c97565b5b600182039050919050565b60006002820490506001821680612c7d57607f821691505b60208210811415612c9157612c90612cc6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416d73546f6b656e3a206d757374206861766520524154455f524f4c4520746f60008201527f207365742065786368616e676520726174650000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f414d53207261746520696e204555522068617320746f206265206174206c656160008201527f7374203100000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61336181612b7d565b811461336c57600080fd5b50565b61337881612b9b565b811461338357600080fd5b50565b61338f81612ba5565b811461339a57600080fd5b50565b6133a681612bf1565b81146133b157600080fd5b5056fea264697066735822122030fb4819855313dda65b58046d7ec4603bd1971453be41e3491d9f73a50182c364736f6c63430008070033

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

00000000000000000000000000000000000000000000152d02c7e14af6800000

-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 100000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000152d02c7e14af6800000


Deployed Bytecode Sourcemap

57773:1259:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31574:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41808:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44159:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42928:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44940:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27149:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27590:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42770:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28734:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45644:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57270:178;;;:::i;:::-;;56461:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54126:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35066:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58581:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43099:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54536:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57826:58;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56880:172;;;:::i;:::-;;32387:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25609:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58688:341;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42027:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24714:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46385:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43432:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32714:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55703:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28030:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43688:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55772:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31574:214;31659:4;31698:42;31683:57;;;:11;:57;;;;:97;;;;31744:36;31768:11;31744:23;:36::i;:::-;31683:97;31676:104;;31574:214;;;:::o;41808:100::-;41862:13;41895:5;41888:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41808:100;:::o;44159:201::-;44242:4;44259:13;44275:12;:10;:12::i;:::-;44259:28;;44298:32;44307:5;44314:7;44323:6;44298:8;:32::i;:::-;44348:4;44341:11;;;44159:201;;;;:::o;42928:108::-;42989:7;43016:12;;43009:19;;42928:108;:::o;44940:295::-;45071:4;45088:15;45106:12;:10;:12::i;:::-;45088:30;;45129:38;45145:4;45151:7;45160:6;45129:15;:38::i;:::-;45178:27;45188:4;45194:2;45198:6;45178:9;:27::i;:::-;45223:4;45216:11;;;44940:295;;;;;:::o;27149:131::-;27223:7;27250:6;:12;27257:4;27250:12;;;;;;;;;;;:22;;;27243:29;;27149:131;;;:::o;27590:147::-;27673:18;27686:4;27673:12;:18::i;:::-;25205:16;25216:4;25205:10;:16::i;:::-;27704:25:::1;27715:4;27721:7;27704:10;:25::i;:::-;27590:147:::0;;;:::o;42770:93::-;42828:5;42853:2;42846:9;;42770:93;:::o;28734:218::-;28841:12;:10;:12::i;:::-;28830:23;;:7;:23;;;28822:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;28918:26;28930:4;28936:7;28918:11;:26::i;:::-;28734:218;;:::o;45644:238::-;45732:4;45749:13;45765:12;:10;:12::i;:::-;45749:28;;45788:64;45797:5;45804:7;45841:10;45813:25;45823:5;45830:7;45813:9;:25::i;:::-;:38;;;;:::i;:::-;45788:8;:64::i;:::-;45870:4;45863:11;;;45644:238;;;;:::o;57270:178::-;57323:34;55810:24;57344:12;:10;:12::i;:::-;57323:7;:34::i;:::-;57315:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;57430:10;:8;:10::i;:::-;57270:178::o;56461:205::-;56537:34;55741:24;56558:12;:10;:12::i;:::-;56537:7;:34::i;:::-;56529:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;56641:17;56647:2;56651:6;56641:5;:17::i;:::-;56461:205;;:::o;54126:91::-;54182:27;54188:12;:10;:12::i;:::-;54202:6;54182:5;:27::i;:::-;54126:91;:::o;35066:86::-;35113:4;35137:7;;;;;;;;;;;35130:14;;35066:86;:::o;58581:99::-;58628:7;58660:12;;58653:19;;58581:99;:::o;43099:127::-;43173:7;43200:9;:18;43210:7;43200:18;;;;;;;;;;;;;;;;43193:25;;43099:127;;;:::o;54536:164::-;54613:46;54629:7;54638:12;:10;:12::i;:::-;54652:6;54613:15;:46::i;:::-;54670:22;54676:7;54685:6;54670:5;:22::i;:::-;54536:164;;:::o;57826:58::-;57862:22;57826:58;:::o;56880:172::-;56931:34;55810:24;56952:12;:10;:12::i;:::-;56931:7;:34::i;:::-;56923:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;57036:8;:6;:8::i;:::-;56880:172::o;32387:153::-;32477:7;32504:28;32526:5;32504:12;:18;32517:4;32504:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;32497:35;;32387:153;;;;:::o;25609:147::-;25695:4;25719:6;:12;25726:4;25719:12;;;;;;;;;;;:20;;:29;25740:7;25719:29;;;;;;;;;;;;;;;;;;;;;;;;;25712:36;;25609:147;;;;:::o;58688:341::-;58762:32;57862:22;58781:12;:10;:12::i;:::-;58762:7;:32::i;:::-;58754:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;58880:19;58868:8;:31;;58860:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;58968:8;58953:12;:23;;;;58992:29;59012:8;58992:29;;;;;;:::i;:::-;;;;;;;;58688:341;:::o;42027:104::-;42083:13;42116:7;42109:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42027:104;:::o;24714:49::-;24759:4;24714:49;;;:::o;46385:436::-;46478:4;46495:13;46511:12;:10;:12::i;:::-;46495:28;;46534:24;46561:25;46571:5;46578:7;46561:9;:25::i;:::-;46534:52;;46625:15;46605:16;:35;;46597:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;46718:60;46727:5;46734:7;46762:15;46743:16;:34;46718:8;:60::i;:::-;46809:4;46802:11;;;;46385:436;;;;:::o;43432:193::-;43511:4;43528:13;43544:12;:10;:12::i;:::-;43528:28;;43567;43577:5;43584:2;43588:6;43567:9;:28::i;:::-;43613:4;43606:11;;;43432:193;;;;:::o;32714:142::-;32794:7;32821:27;:12;:18;32834:4;32821:18;;;;;;;;;;;:25;:27::i;:::-;32814:34;;32714:142;;;:::o;55703:62::-;55741:24;55703:62;:::o;28030:149::-;28114:18;28127:4;28114:12;:18::i;:::-;25205:16;25216:4;25205:10;:16::i;:::-;28145:26:::1;28157:4;28163:7;28145:11;:26::i;:::-;28030:149:::0;;;:::o;43688:151::-;43777:7;43804:11;:18;43816:5;43804:18;;;;;;;;;;;;;;;:27;43823:7;43804:27;;;;;;;;;;;;;;;;43797:34;;43688:151;;;;:::o;55772:62::-;55810:24;55772:62;:::o;30331:238::-;30415:22;30423:4;30429:7;30415;:22::i;:::-;30410:152;;30486:4;30454:6;:12;30461:4;30454:12;;;;;;;;;;;:20;;:29;30475:7;30454:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;30537:12;:10;:12::i;:::-;30510:40;;30528:7;30510:40;;30522:4;30510:40;;;;;;;;;;30410:152;30331:238;;:::o;8296:152::-;8366:4;8390:50;8395:3;:10;;8431:5;8415:23;;8407:32;;8390:4;:50::i;:::-;8383:57;;8296:152;;;;:::o;53264:272::-;53407:44;53434:4;53440:2;53444:6;53407:26;:44::i;:::-;53473:8;:6;:8::i;:::-;53472:9;53464:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;53264:272;;;:::o;51734:125::-;;;;:::o;25313:204::-;25398:4;25437:32;25422:47;;;:11;:47;;;;:87;;;;25473:36;25497:11;25473:23;:36::i;:::-;25422:87;25415:94;;25313:204;;;:::o;22522:98::-;22575:7;22602:10;22595:17;;22522:98;:::o;50010:380::-;50163:1;50146:19;;:5;:19;;;;50138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50244:1;50225:21;;:7;:21;;;;50217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50328:6;50298:11;:18;50310:5;50298:18;;;;;;;;;;;;;;;:27;50317:7;50298:27;;;;;;;;;;;;;;;:36;;;;50366:7;50350:32;;50359:5;50350:32;;;50375:6;50350:32;;;;;;:::i;:::-;;;;;;;;50010:380;;;:::o;50681:453::-;50816:24;50843:25;50853:5;50860:7;50843:9;:25::i;:::-;50816:52;;50903:17;50883:16;:37;50879:248;;50965:6;50945:16;:26;;50937:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51049:51;51058:5;51065:7;51093:6;51074:16;:25;51049:8;:51::i;:::-;50879:248;50805:329;50681:453;;;:::o;47291:671::-;47438:1;47422:18;;:4;:18;;;;47414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47515:1;47501:16;;:2;:16;;;;47493:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47570:38;47591:4;47597:2;47601:6;47570:20;:38::i;:::-;47621:19;47643:9;:15;47653:4;47643:15;;;;;;;;;;;;;;;;47621:37;;47692:6;47677:11;:21;;47669:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;47809:6;47795:11;:20;47777:9;:15;47787:4;47777:15;;;;;;;;;;;;;;;:38;;;;47854:6;47837:9;:13;47847:2;47837:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;47893:2;47878:26;;47887:4;47878:26;;;47897:6;47878:26;;;;;;:::i;:::-;;;;;;;;47917:37;47937:4;47943:2;47947:6;47917:19;:37::i;:::-;47403:559;47291:671;;;:::o;26060:105::-;26127:30;26138:4;26144:12;:10;:12::i;:::-;26127:10;:30::i;:::-;26060:105;:::o;32949:169::-;33037:31;33054:4;33060:7;33037:16;:31::i;:::-;33079;33102:7;33079:12;:18;33092:4;33079:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;32949:169;;:::o;33212:174::-;33301:32;33319:4;33325:7;33301:17;:32::i;:::-;33344:34;33370:7;33344:12;:18;33357:4;33344:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;33212:174;;:::o;35921:120::-;34930:16;:14;:16::i;:::-;35990:5:::1;35980:7;;:15;;;;;;;;;;;;;;;;;;36011:22;36020:12;:10;:12::i;:::-;36011:22;;;;;;:::i;:::-;;;;;;;;35921:120::o:0;48249:399::-;48352:1;48333:21;;:7;:21;;;;48325:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48403:49;48432:1;48436:7;48445:6;48403:20;:49::i;:::-;48481:6;48465:12;;:22;;;;;;;:::i;:::-;;;;;;;;48520:6;48498:9;:18;48508:7;48498:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;48563:7;48542:37;;48559:1;48542:37;;;48572:6;48542:37;;;;;;:::i;:::-;;;;;;;;48592:48;48620:1;48624:7;48633:6;48592:19;:48::i;:::-;48249:399;;:::o;48981:591::-;49084:1;49065:21;;:7;:21;;;;49057:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;49137:49;49158:7;49175:1;49179:6;49137:20;:49::i;:::-;49199:22;49224:9;:18;49234:7;49224:18;;;;;;;;;;;;;;;;49199:43;;49279:6;49261:14;:24;;49253:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;49398:6;49381:14;:23;49360:9;:18;49370:7;49360:18;;;;;;;;;;;;;;;:44;;;;49442:6;49426:12;;:22;;;;;;;:::i;:::-;;;;;;;;49492:1;49466:37;;49475:7;49466:37;;;49496:6;49466:37;;;;;;:::i;:::-;;;;;;;;49516:48;49536:7;49553:1;49557:6;49516:19;:48::i;:::-;49046:526;48981:591;;:::o;35662:118::-;34671:19;:17;:19::i;:::-;35732:4:::1;35722:7;;:14;;;;;;;;;;;;;;;;;;35752:20;35759:12;:10;:12::i;:::-;35752:20;;;;;;:::i;:::-;;;;;;;;35662:118::o:0;9592:158::-;9666:7;9717:22;9721:3;:10;;9733:5;9717:3;:22::i;:::-;9709:31;;9686:56;;9592:158;;;;:::o;9121:117::-;9184:7;9211:19;9219:3;:10;;9211:7;:19::i;:::-;9204:26;;9121:117;;;:::o;2211:414::-;2274:4;2296:21;2306:3;2311:5;2296:9;:21::i;:::-;2291:327;;2334:3;:11;;2351:5;2334:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2517:3;:11;;:18;;;;2495:3;:12;;:19;2508:5;2495:19;;;;;;;;;;;:40;;;;2557:4;2550:11;;;;2291:327;2601:5;2594:12;;2211:414;;;;;:::o;14871:157::-;14956:4;14995:25;14980:40;;;:11;:40;;;;14973:47;;14871:157;;;:::o;57456:217::-;57621:44;57648:4;57654:2;57658:6;57621:26;:44::i;:::-;57456:217;;;:::o;52463:124::-;;;;:::o;26455:505::-;26544:22;26552:4;26558:7;26544;:22::i;:::-;26539:414;;26732:41;26760:7;26732:41;;26770:2;26732:19;:41::i;:::-;26846:38;26874:4;26866:13;;26881:2;26846:19;:38::i;:::-;26637:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26583:358;;;;;;;;;;;:::i;:::-;;;;;;;;26539:414;26455:505;;:::o;30749:239::-;30833:22;30841:4;30847:7;30833;:22::i;:::-;30829:152;;;30904:5;30872:6;:12;30879:4;30872:12;;;;;;;;;;;:20;;:29;30893:7;30872:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;30956:12;:10;:12::i;:::-;30929:40;;30947:7;30929:40;;30941:4;30929:40;;;;;;;;;;30829:152;30749:239;;:::o;8624:158::-;8697:4;8721:53;8729:3;:10;;8765:5;8749:23;;8741:32;;8721:7;:53::i;:::-;8714:60;;8624:158;;;;:::o;35410:108::-;35477:8;:6;:8::i;:::-;35469:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;35410:108::o;35225:::-;35296:8;:6;:8::i;:::-;35295:9;35287:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;35225:108::o;4985:120::-;5052:7;5079:3;:11;;5091:5;5079:18;;;;;;;;:::i;:::-;;;;;;;;;;5072:25;;4985:120;;;;:::o;4522:109::-;4578:7;4605:3;:11;;:18;;;;4598:25;;4522:109;;;:::o;4307:129::-;4380:4;4427:1;4404:3;:12;;:19;4417:5;4404:19;;;;;;;;;;;;:24;;4397:31;;4307:129;;;;:::o;16766:451::-;16841:13;16867:19;16912:1;16903:6;16899:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;16889:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16867:47;;16925:15;:6;16932:1;16925:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;16951;:6;16958:1;16951:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;16982:9;17007:1;16998:6;16994:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;16982:26;;16977:135;17014:1;17010;:5;16977:135;;;17049:12;17070:3;17062:5;:11;17049:25;;;;;;;:::i;:::-;;;;;17037:6;17044:1;17037:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;17099:1;17089:11;;;;;17017:3;;;;:::i;:::-;;;16977:135;;;;17139:1;17130:5;:10;17122:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;17202:6;17188:21;;;16766:451;;;;:::o;2801:1420::-;2867:4;2985:18;3006:3;:12;;:19;3019:5;3006:19;;;;;;;;;;;;2985:40;;3056:1;3042:10;:15;3038:1176;;3417:21;3454:1;3441:10;:14;;;;:::i;:::-;3417:38;;3470:17;3511:1;3490:3;:11;;:18;;;;:22;;;;:::i;:::-;3470:42;;3546:13;3533:9;:26;3529:405;;3580:17;3600:3;:11;;3612:9;3600:22;;;;;;;;:::i;:::-;;;;;;;;;;3580:42;;3754:9;3725:3;:11;;3737:13;3725:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;3865:10;3839:3;:12;;:23;3852:9;3839:23;;;;;;;;;;;:36;;;;3561:373;3529:405;4015:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4110:3;:12;;:19;4123:5;4110:19;;;;;;;;;;;4103:26;;;4153:4;4146:11;;;;;;;3038:1176;4197:5;4190:12;;;2801:1420;;;;;:::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:402::-;11696:3;11717:85;11799:2;11794:3;11717:85;:::i;:::-;11710:92;;11811:93;11900:3;11811:93;:::i;:::-;11929:2;11924:3;11920:12;11913:19;;11536:402;;;:::o;11944:366::-;12086:3;12107:67;12171:2;12166:3;12107:67;:::i;:::-;12100:74;;12183:93;12272:3;12183:93;:::i;:::-;12301:2;12296:3;12292:12;12285:19;;11944:366;;;:::o;12316:402::-;12476:3;12497:85;12579:2;12574:3;12497:85;:::i;:::-;12490:92;;12591:93;12680:3;12591:93;:::i;:::-;12709:2;12704:3;12700:12;12693:19;;12316:402;;;:::o;12724:366::-;12866:3;12887:67;12951:2;12946:3;12887:67;:::i;:::-;12880:74;;12963:93;13052:3;12963:93;:::i;:::-;13081:2;13076:3;13072:12;13065:19;;12724:366;;;:::o;13096:::-;13238:3;13259:67;13323:2;13318:3;13259:67;:::i;:::-;13252:74;;13335:93;13424:3;13335:93;:::i;:::-;13453:2;13448:3;13444:12;13437:19;;13096:366;;;:::o;13468:::-;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:118::-;13927:24;13945:5;13927:24;:::i;:::-;13922:3;13915:37;13840:118;;:::o;13964:112::-;14047:22;14063:5;14047:22;:::i;:::-;14042:3;14035:35;13964:112;;:::o;14082:967::-;14464:3;14486:148;14630:3;14486:148;:::i;:::-;14479:155;;14651:95;14742:3;14733:6;14651:95;:::i;:::-;14644:102;;14763:148;14907:3;14763:148;:::i;:::-;14756:155;;14928:95;15019:3;15010:6;14928:95;:::i;:::-;14921:102;;15040:3;15033:10;;14082:967;;;;;:::o;15055:222::-;15148:4;15186:2;15175:9;15171:18;15163:26;;15199:71;15267:1;15256:9;15252:17;15243:6;15199:71;:::i;:::-;15055:222;;;;:::o;15283:210::-;15370:4;15408:2;15397:9;15393:18;15385:26;;15421:65;15483:1;15472:9;15468:17;15459:6;15421:65;:::i;:::-;15283:210;;;;:::o;15499:222::-;15592:4;15630:2;15619:9;15615:18;15607:26;;15643:71;15711:1;15700:9;15696:17;15687:6;15643:71;:::i;:::-;15499:222;;;;:::o;15727:313::-;15840:4;15878:2;15867:9;15863:18;15855:26;;15927:9;15921:4;15917:20;15913:1;15902:9;15898:17;15891:47;15955:78;16028:4;16019:6;15955:78;:::i;:::-;15947:86;;15727:313;;;;:::o;16046:419::-;16212:4;16250:2;16239:9;16235:18;16227:26;;16299:9;16293:4;16289:20;16285:1;16274:9;16270:17;16263:47;16327:131;16453:4;16327:131;:::i;:::-;16319:139;;16046:419;;;:::o;16471:::-;16637:4;16675:2;16664:9;16660:18;16652:26;;16724:9;16718:4;16714:20;16710:1;16699:9;16695:17;16688:47;16752:131;16878:4;16752:131;:::i;:::-;16744:139;;16471:419;;;:::o;16896:::-;17062:4;17100:2;17089:9;17085:18;17077:26;;17149:9;17143:4;17139:20;17135:1;17124:9;17120:17;17113:47;17177:131;17303:4;17177:131;:::i;:::-;17169:139;;16896:419;;;:::o;17321:::-;17487:4;17525:2;17514:9;17510:18;17502:26;;17574:9;17568:4;17564:20;17560:1;17549:9;17545:17;17538:47;17602:131;17728:4;17602:131;:::i;:::-;17594:139;;17321:419;;;:::o;17746:::-;17912:4;17950:2;17939:9;17935:18;17927:26;;17999:9;17993:4;17989:20;17985:1;17974:9;17970:17;17963:47;18027:131;18153:4;18027:131;:::i;:::-;18019:139;;17746:419;;;:::o;18171:::-;18337:4;18375:2;18364:9;18360:18;18352:26;;18424:9;18418:4;18414:20;18410:1;18399:9;18395:17;18388:47;18452:131;18578:4;18452:131;:::i;:::-;18444:139;;18171:419;;;:::o;18596:::-;18762:4;18800:2;18789:9;18785:18;18777:26;;18849:9;18843:4;18839:20;18835:1;18824:9;18820:17;18813:47;18877:131;19003:4;18877:131;:::i;:::-;18869:139;;18596:419;;;:::o;19021:::-;19187:4;19225:2;19214:9;19210:18;19202:26;;19274:9;19268:4;19264:20;19260:1;19249:9;19245:17;19238:47;19302:131;19428:4;19302:131;:::i;:::-;19294:139;;19021:419;;;:::o;19446:::-;19612:4;19650:2;19639:9;19635:18;19627:26;;19699:9;19693:4;19689:20;19685:1;19674:9;19670:17;19663:47;19727:131;19853:4;19727:131;:::i;:::-;19719:139;;19446:419;;;:::o;19871:::-;20037:4;20075:2;20064:9;20060:18;20052:26;;20124:9;20118:4;20114:20;20110:1;20099:9;20095:17;20088:47;20152:131;20278:4;20152:131;:::i;:::-;20144:139;;19871:419;;;:::o;20296:::-;20462:4;20500:2;20489:9;20485:18;20477:26;;20549:9;20543:4;20539:20;20535:1;20524:9;20520:17;20513:47;20577:131;20703:4;20577:131;:::i;:::-;20569:139;;20296:419;;;:::o;20721:::-;20887:4;20925:2;20914:9;20910:18;20902:26;;20974:9;20968:4;20964:20;20960:1;20949:9;20945:17;20938:47;21002:131;21128:4;21002:131;:::i;:::-;20994:139;;20721:419;;;:::o;21146:::-;21312:4;21350:2;21339:9;21335:18;21327:26;;21399:9;21393:4;21389:20;21385:1;21374:9;21370:17;21363:47;21427:131;21553:4;21427:131;:::i;:::-;21419:139;;21146:419;;;:::o;21571:::-;21737:4;21775:2;21764:9;21760:18;21752:26;;21824:9;21818:4;21814:20;21810:1;21799:9;21795:17;21788:47;21852:131;21978:4;21852:131;:::i;:::-;21844:139;;21571:419;;;:::o;21996:::-;22162:4;22200:2;22189:9;22185:18;22177:26;;22249:9;22243:4;22239:20;22235:1;22224:9;22220:17;22213:47;22277:131;22403:4;22277:131;:::i;:::-;22269:139;;21996:419;;;:::o;22421:::-;22587:4;22625:2;22614:9;22610:18;22602:26;;22674:9;22668:4;22664:20;22660:1;22649:9;22645:17;22638:47;22702:131;22828:4;22702:131;:::i;:::-;22694:139;;22421:419;;;:::o;22846:::-;23012:4;23050:2;23039:9;23035:18;23027:26;;23099:9;23093:4;23089:20;23085:1;23074:9;23070:17;23063:47;23127:131;23253:4;23127:131;:::i;:::-;23119:139;;22846:419;;;:::o;23271:::-;23437:4;23475:2;23464:9;23460:18;23452:26;;23524:9;23518:4;23514:20;23510:1;23499:9;23495:17;23488:47;23552:131;23678:4;23552:131;:::i;:::-;23544:139;;23271:419;;;:::o;23696:::-;23862:4;23900:2;23889:9;23885:18;23877:26;;23949:9;23943:4;23939:20;23935:1;23924:9;23920:17;23913:47;23977:131;24103:4;23977:131;:::i;:::-;23969:139;;23696:419;;;:::o;24121:::-;24287:4;24325:2;24314:9;24310:18;24302:26;;24374:9;24368:4;24364:20;24360:1;24349:9;24345:17;24338:47;24402:131;24528:4;24402:131;:::i;:::-;24394:139;;24121:419;;;:::o;24546:222::-;24639:4;24677:2;24666:9;24662:18;24654:26;;24690:71;24758:1;24747:9;24743:17;24734:6;24690:71;:::i;:::-;24546:222;;;;:::o;24774:214::-;24863:4;24901:2;24890:9;24886:18;24878:26;;24914:67;24978:1;24967:9;24963:17;24954:6;24914:67;:::i;:::-;24774:214;;;;:::o;25075:99::-;25127:6;25161:5;25155:12;25145:22;;25075:99;;;:::o;25180:169::-;25264:11;25298:6;25293:3;25286:19;25338:4;25333:3;25329:14;25314:29;;25180:169;;;;:::o;25355:148::-;25457:11;25494:3;25479:18;;25355:148;;;;:::o;25509:305::-;25549:3;25568:20;25586:1;25568:20;:::i;:::-;25563:25;;25602:20;25620:1;25602:20;:::i;:::-;25597:25;;25756:1;25688:66;25684:74;25681:1;25678:81;25675:107;;;25762:18;;:::i;:::-;25675:107;25806:1;25803;25799:9;25792:16;;25509:305;;;;:::o;25820:348::-;25860:7;25883:20;25901:1;25883:20;:::i;:::-;25878:25;;25917:20;25935:1;25917:20;:::i;:::-;25912:25;;26105:1;26037:66;26033:74;26030:1;26027:81;26022:1;26015:9;26008:17;26004:105;26001:131;;;26112:18;;:::i;:::-;26001:131;26160:1;26157;26153:9;26142:20;;25820:348;;;;:::o;26174:191::-;26214:4;26234:20;26252:1;26234:20;:::i;:::-;26229:25;;26268:20;26286:1;26268:20;:::i;:::-;26263:25;;26307:1;26304;26301:8;26298:34;;;26312:18;;:::i;:::-;26298:34;26357:1;26354;26350:9;26342:17;;26174:191;;;;:::o;26371:96::-;26408:7;26437:24;26455:5;26437:24;:::i;:::-;26426:35;;26371:96;;;:::o;26473:90::-;26507:7;26550:5;26543:13;26536:21;26525:32;;26473:90;;;:::o;26569:77::-;26606:7;26635:5;26624:16;;26569:77;;;:::o;26652:149::-;26688:7;26728:66;26721:5;26717:78;26706:89;;26652:149;;;:::o;26807:126::-;26844:7;26884:42;26877:5;26873:54;26862:65;;26807:126;;;:::o;26939:77::-;26976:7;27005:5;26994:16;;26939:77;;;:::o;27022:86::-;27057:7;27097:4;27090:5;27086:16;27075:27;;27022:86;;;:::o;27114:307::-;27182:1;27192:113;27206:6;27203:1;27200:13;27192:113;;;27291:1;27286:3;27282:11;27276:18;27272:1;27267:3;27263:11;27256:39;27228:2;27225:1;27221:10;27216:15;;27192:113;;;27323:6;27320:1;27317:13;27314:101;;;27403:1;27394:6;27389:3;27385:16;27378:27;27314:101;27163:258;27114:307;;;:::o;27427:171::-;27466:3;27489:24;27507:5;27489:24;:::i;:::-;27480:33;;27535:4;27528:5;27525:15;27522:41;;;27543:18;;:::i;:::-;27522:41;27590:1;27583:5;27579:13;27572:20;;27427:171;;;:::o;27604:320::-;27648:6;27685:1;27679:4;27675:12;27665:22;;27732:1;27726:4;27722:12;27753:18;27743:81;;27809:4;27801:6;27797:17;27787:27;;27743:81;27871:2;27863:6;27860:14;27840:18;27837:38;27834:84;;;27890:18;;:::i;:::-;27834:84;27655:269;27604:320;;;:::o;27930:180::-;27978:77;27975:1;27968:88;28075:4;28072:1;28065:15;28099:4;28096:1;28089:15;28116:180;28164:77;28161:1;28154:88;28261:4;28258:1;28251:15;28285:4;28282:1;28275:15;28302:180;28350:77;28347:1;28340:88;28447:4;28444:1;28437:15;28471:4;28468:1;28461:15;28488:180;28536:77;28533:1;28526:88;28633:4;28630:1;28623:15;28657:4;28654:1;28647:15;28674:180;28722:77;28719:1;28712:88;28819:4;28816:1;28809:15;28843:4;28840:1;28833:15;28983:117;29092:1;29089;29082:12;29106:102;29147:6;29198:2;29194:7;29189:2;29182:5;29178:14;29174:28;29164:38;;29106:102;;;:::o;29214:182::-;29354:34;29350:1;29342:6;29338:14;29331:58;29214:182;:::o;29402:222::-;29542:34;29538:1;29530:6;29526:14;29519:58;29611:5;29606:2;29598:6;29594:15;29587:30;29402:222;:::o;29630:237::-;29770:34;29766:1;29758:6;29754:14;29747:58;29839:20;29834:2;29826:6;29822:15;29815:45;29630:237;:::o;29873:170::-;30013:22;30009:1;30001:6;29997:14;29990:46;29873:170;:::o;30049:221::-;30189:34;30185:1;30177:6;30173:14;30166:58;30258:4;30253:2;30245:6;30241:15;30234:29;30049:221;:::o;30276:244::-;30416:34;30412:1;30404:6;30400:14;30393:58;30485:27;30480:2;30472:6;30468:15;30461:52;30276:244;:::o;30526:221::-;30666:34;30662:1;30654:6;30650:14;30643:58;30735:4;30730:2;30722:6;30718:15;30711:29;30526:221;:::o;30753:179::-;30893:31;30889:1;30881:6;30877:14;30870:55;30753:179;:::o;30938:225::-;31078:34;31074:1;31066:6;31062:14;31055:58;31147:8;31142:2;31134:6;31130:15;31123:33;30938:225;:::o;31169:166::-;31309:18;31305:1;31297:6;31293:14;31286:42;31169:166;:::o;31341:223::-;31481:34;31477:1;31469:6;31465:14;31458:58;31550:6;31545:2;31537:6;31533:15;31526:31;31341:223;:::o;31570:241::-;31710:34;31706:1;31698:6;31694:14;31687:58;31779:24;31774:2;31766:6;31762:15;31755:49;31570:241;:::o;31817:220::-;31957:34;31953:1;31945:6;31941:14;31934:58;32026:3;32021:2;32013:6;32009:15;32002:28;31817:220;:::o;32043:224::-;32183:34;32179:1;32171:6;32167:14;32160:58;32252:7;32247:2;32239:6;32235:15;32228:32;32043:224;:::o;32273:223::-;32413:34;32409:1;32401:6;32397:14;32390:58;32482:6;32477:2;32469:6;32465:15;32458:31;32273:223;:::o;32502:242::-;32642:34;32638:1;32630:6;32626:14;32619:58;32711:25;32706:2;32698:6;32694:15;32687:50;32502:242;:::o;32750:173::-;32890:25;32886:1;32878:6;32874:14;32867:49;32750:173;:::o;32929:224::-;33069:34;33065:1;33057:6;33053:14;33046:58;33138:7;33133:2;33125:6;33121:15;33114:32;32929:224;:::o;33159:167::-;33299:19;33295:1;33287:6;33283:14;33276:43;33159:167;:::o;33332:234::-;33472:34;33468:1;33460:6;33456:14;33449:58;33541:17;33536:2;33528:6;33524:15;33517:42;33332:234;:::o;33572:181::-;33712:33;33708:1;33700:6;33696:14;33689:57;33572:181;:::o;33759:229::-;33899:34;33895:1;33887:6;33883:14;33876:58;33968:12;33963:2;33955:6;33951:15;33944:37;33759:229;:::o;33994:122::-;34067:24;34085:5;34067:24;:::i;:::-;34060:5;34057:35;34047:63;;34106:1;34103;34096:12;34047:63;33994:122;:::o;34122:::-;34195:24;34213:5;34195:24;:::i;:::-;34188:5;34185:35;34175:63;;34234:1;34231;34224:12;34175:63;34122:122;:::o;34250:120::-;34322:23;34339:5;34322:23;:::i;:::-;34315:5;34312:34;34302:62;;34360:1;34357;34350:12;34302:62;34250:120;:::o;34376:122::-;34449:24;34467:5;34449:24;:::i;:::-;34442:5;34439:35;34429:63;;34488:1;34485;34478:12;34429:63;34376:122;:::o

Swarm Source

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