ETH Price: $2,980.43 (+2.07%)
Gas: 2 Gwei

Token

TheCurrency (TENDER)
 

Overview

Max Total Supply

2,021 TENDER

Holders

1,617

Market

Volume (24H)

2.5314 ETH

Min Price (24H)

$1,799.88 @ 0.603900 ETH

Max Price (24H)

$1,970.36 @ 0.661100 ETH
Filtered by Token Holder
voltronnft.eth
Balance
1 TENDER
0x717C034228C9584F0115AAe20a4b52794d4A26CA
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Currency is a collection of 10,000 NFTs which correspond to 10,000 unique physical artworks which are stored in a secure vault in the UK.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFT

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-28
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

}

// File: @openzeppelin/contracts/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



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/access/AccessControl.sol



pragma solidity ^0.8.0;




/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @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 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 {_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 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]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

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

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        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 override returns (bytes32) {
        return _roles[role].adminRole;
    }

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

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

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

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    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 {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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



pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString()))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol



pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

// File: @openzeppelin/contracts/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 Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

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

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        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/ERC721/extensions/ERC721Pausable.sol



pragma solidity ^0.8.0;



/**
 * @dev ERC721 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 ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

// File: contracts/IERC2981.sol


pragma solidity 0.8.6;

// https://eips.ethereum.org/EIPS/eip-2981

/// @dev Interface for the NFT Royalty Standard
interface IERC2981 {
    /**
     * @notice Called with the sale price to determine how much royalty
     *         is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param value - the sale price of the NFT asset specified by _tokenId
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for _value sale price
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 value
    )
        external
        returns (
            address receiver,
            uint256 royaltyAmount
        );
}

// File: contracts/ERC2981.sol


pragma solidity 0.8.6;



abstract contract ERC2981 is ERC165, IERC2981 {
    function royaltyInfo(
        uint256 _tokenId,
        uint256 _value
    )
        external
        virtual
        override
        returns (
            address _receiver,
            uint256 _royaltyAmount
        );

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }
}

// File: contracts/NFT.sol


pragma solidity 0.8.6;






contract NFT is AccessControl, ERC2981, ERC721Enumerable, ERC721Burnable, ERC721Pausable {
    event RoyaltyWalletChanged(address indexed previousWallet, address indexed newWallet);
    event RoyaltyFeeChanged(uint256 previousFee, uint256 newFee);
    event BaseURIChanged(string previousURI, string newURI);

    bytes32 public constant OWNER_ROLE = keccak256("OWNER_ROLE");
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    uint256 public constant ROYALTY_FEE_DENOMINATOR = 100000;
    uint256 public royaltyFee;
    address public royaltyWallet;

    string private _baseTokenURI;

    /**
     * @param _name ERC721 token name
     * @param _symbol ERC721 token symbol
     * @param _uri Base token uri
     * @param _royaltyWallet Wallet where royalties should be sent
     * @param _royaltyFee Fee numerator to be used for fees
     */
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri,
        address _royaltyWallet,
        uint256 _royaltyFee
    ) ERC721(_name, _symbol) {
        _setBaseTokenURI(_uri);
        _setRoyaltyWallet(_royaltyWallet);
        _setRoyaltyFee(_royaltyFee);
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(OWNER_ROLE, msg.sender);
        _setupRole(MINTER_ROLE, msg.sender);
    }

    /**
     * @dev Throws if called by any account other than owners. Implemented using the underlying AccessControl methods.
     */
    modifier onlyOwners() {
        require(hasRole(OWNER_ROLE, _msgSender()), "Caller does not have the OWNER_ROLE");
        _;
    }

    /**
     * @dev Throws if called by any account other than minters. Implemented using the underlying AccessControl methods.
     */
    modifier onlyMinters() {
        require(hasRole(MINTER_ROLE, _msgSender()), "Caller does not have the MINTER_ROLE");
        _;
    }

    /**
     * @dev Mints the specified token ids to the recipient addresses
     * @param recipient Address that will receive the tokens
     * @param tokenIds Array of tokenIds to be minted
     */
    function mint(address recipient, uint256[] calldata tokenIds) external onlyMinters {
        for (uint256 i = 0; i < tokenIds.length; i++) {
            _mint(recipient, tokenIds[i]);
        }
    }

    /**
     * @dev Mints the specified token id to the recipient addresses
     * @dev The unused string parameter exists to support the API used by ChainBridge.
     * @param recipient Address that will receive the tokens
     * @param tokenId tokenId to be minted
     */
    function mint(address recipient, uint256 tokenId, string calldata) external onlyMinters {
        _mint(recipient, tokenId);
    }

    /**
     * @dev Pauses token transfers
     */
    function pause() external onlyOwners {
        _pause();
    }

    /**
     * @dev Unpauses token transfers
     */
    function unpause() external onlyOwners {
        _unpause();
    }

    /**
     * @dev Sets the base token URI
     * @param uri Base token URI
     */
    function setBaseTokenURI(string calldata uri) external onlyOwners {
        _setBaseTokenURI(uri);
    }

    /**
     * @dev Sets the wallet to which royalties should be sent
     * @param _royaltyWallet Address that should receive the royalties
     */
    function setRoyaltyWallet(address _royaltyWallet) external onlyOwners {
        _setRoyaltyWallet(_royaltyWallet);
    }

    /**
     * @dev Sets the fee percentage for royalties
     * @param _royaltyFee Basis points to compute royalty percentage
     */
    function setRoyaltyFee(uint256 _royaltyFee) external onlyOwners {
        _setRoyaltyFee(_royaltyFee);
    }

    /**
     * @dev Function defined by ERC2981, which provides information about fees.
     * @param value Price being paid for the token (in base units)
     */
    function royaltyInfo(
        uint256, // tokenId is not used in this case as all tokens take the same fee
        uint256 value
    )
        external
        view
        override
        returns (
            address, // receiver
            uint256 // royaltyAmount
        )
    {
        return (royaltyWallet, (value * royaltyFee) / ROYALTY_FEE_DENOMINATOR);
    }

    /**
     * @dev For each existing tokenId, it returns the URI where metadata is stored
     * @param tokenId Token id
     */
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        string memory uri = super.tokenURI(tokenId);
        return bytes(uri).length > 0 ? string(abi.encodePacked(uri, ".json")) : "";
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(AccessControl, ERC2981, ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function _setBaseTokenURI(string memory newURI) internal {
        emit BaseURIChanged(_baseTokenURI, newURI);
        _baseTokenURI = newURI;
    }

    function _setRoyaltyWallet(address _royaltyWallet) internal {
        require(_royaltyWallet != address(0), "INVALID_WALLET");
        emit RoyaltyWalletChanged(royaltyWallet, _royaltyWallet);
        royaltyWallet = _royaltyWallet;
    }

    function _setRoyaltyFee(uint256 _royaltyFee) internal {
        require(_royaltyFee <= ROYALTY_FEE_DENOMINATOR, "INVALID_FEE");
        emit RoyaltyFeeChanged(royaltyFee, _royaltyFee);
        royaltyFee = _royaltyFee;
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseTokenURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"_royaltyWallet","type":"address"},{"internalType":"uint256","name":"_royaltyFee","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"previousURI","type":"string"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"BaseURIChanged","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":false,"internalType":"uint256","name":"previousFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"RoyaltyFeeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"RoyaltyWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","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":"OWNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_FEE_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"royaltyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_royaltyFee","type":"uint256"}],"name":"setRoyaltyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyWallet","type":"address"}],"name":"setRoyaltyWallet","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620040f2380380620040f2833981016040819052620000349162000463565b8451859085906200004d9060019060208501906200032c565b508051620000639060029060208401906200032c565b5050600b805460ff19169055506200007b8362000101565b620000868262000156565b6200009181620001ff565b6200009e60003362000283565b620000ca7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e3362000283565b620000f67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63362000283565b50505050506200069c565b7fc41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b96699600e826040516200013592919062000550565b60405180910390a180516200015290600e9060208401906200032c565b5050565b6001600160a01b038116620001a35760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d5d05313115560921b60448201526064015b60405180910390fd5b600d546040516001600160a01b038084169216907fa09dff055f1734e95d92880fc90368fd52bf88c41786aa2e24e2b34ae075452690600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b620186a0811115620002425760405162461bcd60e51b815260206004820152600b60248201526a494e56414c49445f46454560a81b60448201526064016200019a565b600c5460408051918252602082018390527fc6e980a116c671cc344b1ed002b6f0c3454692ecb6cc881f3ce59366368cde4f910160405180910390a1600c55565b6000828152602081815260408083206001600160a01b038516845290915290205462000152908390839060ff1662000152576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002e83390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b8280546200033a9062000649565b90600052602060002090601f0160209004810192826200035e5760008555620003a9565b82601f106200037957805160ff1916838001178555620003a9565b82800160010185558215620003a9579182015b82811115620003a95782518255916020019190600101906200038c565b50620003b7929150620003bb565b5090565b5b80821115620003b75760008155600101620003bc565b600082601f830112620003e457600080fd5b81516001600160401b038082111562000401576200040162000686565b604051601f8301601f19908116603f011681019082821181831017156200042c576200042c62000686565b816040528381528660208588010111156200044657600080fd5b6200045984602083016020890162000616565b9695505050505050565b600080600080600060a086880312156200047c57600080fd5b85516001600160401b03808211156200049457600080fd5b620004a289838a01620003d2565b96506020880151915080821115620004b957600080fd5b620004c789838a01620003d2565b95506040880151915080821115620004de57600080fd5b50620004ed88828901620003d2565b606088015190945090506001600160a01b03811681146200050d57600080fd5b80925050608086015190509295509295909350565b600081518084526200053c81602086016020860162000616565b601f01601f19169290920160200192915050565b60408152600080845481600182811c9150808316806200057157607f831692505b60208084108214156200059257634e487b7160e01b86526022600452602486fd5b6040880184905260608801828015620005b45760018114620005c657620005f3565b60ff19871682528282019750620005f3565b60008c81526020902060005b87811015620005ed57815484820152908601908401620005d2565b83019850505b50508786038189015250505050506200060d818562000522565b95945050505050565b60005b838110156200063357818101518382015260200162000619565b8381111562000643576000848401525b50505050565b600181811c908216806200065e57607f821691505b602082108114156200068057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613a4680620006ac6000396000f3fe608060405234801561001057600080fd5b50600436106102775760003560e01c80635c975abb11610160578063b8997a97116100d8578063d547741f1161008c578063e1a8bf2c11610071578063e1a8bf2c1461058f578063e58378bb14610599578063e985e9c5146105c057600080fd5b8063d547741f14610569578063de836ebd1461057c57600080fd5b8063cdeee637116100bd578063cdeee6371461051c578063d3fc98641461052f578063d53913931461054257600080fd5b8063b8997a9714610500578063c87b56dd1461050957600080fd5b806391d148541161012f578063a217fddf11610114578063a217fddf146104d2578063a22cb465146104da578063b88d4fde146104ed57600080fd5b806391d148541461048657806395d89b41146104ca57600080fd5b80635c975abb1461044d5780636352211e1461045857806370a082311461046b5780638456cb591461047e57600080fd5b80632f745c59116101f35780633f0d2ec1116101c257806342842e0e116101a757806342842e0e1461041457806342966c68146104275780634f6ccce71461043a57600080fd5b80633f0d2ec1146103ec5780633f4ba83a1461040c57600080fd5b80632f745c59146103a057806330176e13146103b357806336568abe146103c65780633e4086e5146103d957600080fd5b806318160ddd1161024a578063248a9ca31161022f578063248a9ca31461032b5780632a55205a1461034e5780632f2ff15d1461038d57600080fd5b806318160ddd1461030657806323b872dd1461031857600080fd5b806301ffc9a71461027c57806306fdde03146102a4578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b61028f61028a36600461344d565b610609565b60405190151581526020015b60405180910390f35b6102ac61061a565b60405161029b919061366f565b6102cc6102c7366004613411565b6106ac565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161029b565b6103046102ff36600461338d565b61078b565b005b6009545b60405190815260200161029b565b610304610326366004613195565b610918565b61030a610339366004613411565b60009081526020819052604090206001015490565b61036161035c3660046134c9565b6109ba565b6040805173ffffffffffffffffffffffffffffffffffffffff909316835260208301919091520161029b565b61030461039b36600461342a565b610a03565b61030a6103ae36600461338d565b610a29565b6103046103c1366004613487565b610af8565b6103046103d436600461342a565b610bf1565b6103046103e7366004613411565b610ca0565b600d546102cc9073ffffffffffffffffffffffffffffffffffffffff1681565b610304610d62565b610304610422366004613195565b610e22565b610304610435366004613411565b610e3d565b61030a610448366004613411565b610edb565b600b5460ff1661028f565b6102cc610466366004613411565b610f99565b61030a610479366004613147565b61104b565b610304611119565b61028f61049436600461342a565b60009182526020828152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b6102ac6111d7565b61030a600081565b6103046104e8366004613351565b6111e6565b6103046104fb3660046131d1565b6112fd565b61030a600c5481565b6102ac610517366004613411565b6113a5565b61030461052a366004613147565b6113fa565b61030461053d3660046133b7565b6114b9565b61030a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61030461057736600461342a565b611578565b61030461058a3660046132cb565b61159e565b61030a620186a081565b61030a7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e81565b61028f6105ce366004613162565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b600061061482611692565b92915050565b60606001805461062990613856565b80601f016020809104026020016040519081016040528092919081815260200182805461065590613856565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061079682610f99565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610759565b3373ffffffffffffffffffffffffffffffffffffffff8216148061087d575061087d81336105ce565b610909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610759565b61091383836116e8565b505050565b610923335b82611788565b6109af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610759565b6109138383836118f8565b600d54600c54600091829173ffffffffffffffffffffffffffffffffffffffff90911690620186a0906109ed90866137a1565b6109f7919061378d565b915091505b9250929050565b600082815260208190526040902060010154610a1f8133611b6a565b6109138383611c3a565b6000610a348361104b565b8210610ac2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610759565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600760209081526040808320938352929052205490565b610b227fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610494565b610bae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f5260448201527f4f4c4500000000000000000000000000000000000000000000000000000000006064820152608401610759565b610bed82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611d2a92505050565b5050565b73ffffffffffffffffffffffffffffffffffffffff81163314610c96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610759565b610bed8282611d77565b610cca7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610494565b610d56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f5260448201527f4f4c4500000000000000000000000000000000000000000000000000000000006064820152608401610759565b610d5f81611e2e565b50565b610d8c7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610494565b610e18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f5260448201527f4f4c4500000000000000000000000000000000000000000000000000000000006064820152608401610759565b610e20611edc565b565b610913838383604051806020016040528060008152506112fd565b610e463361091d565b610ed2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f766564000000000000000000000000000000006064820152608401610759565b610d5f81611fbd565b6000610ee660095490565b8210610f74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610759565b60098281548110610f8757610f87613984565b90600052602060002001549050919050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610759565b600073ffffffffffffffffffffffffffffffffffffffff82166110f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610759565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b6111437fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610494565b6111cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f5260448201527f4f4c4500000000000000000000000000000000000000000000000000000000006064820152608401610759565b610e20612096565b60606002805461062990613856565b73ffffffffffffffffffffffffffffffffffffffff8216331415611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610759565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113073383611788565b611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610759565b61139f84848484612156565b50505050565b606060006113b2836121f9565b905060008151116113d257604051806020016040528060008152506113f3565b806040516020016113e39190613564565b6040516020818303038152906040525b9392505050565b6114247fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610494565b6114b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f5260448201527f4f4c4500000000000000000000000000000000000000000000000000000000006064820152608401610759565b610d5f816122f2565b6114e37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610494565b61156e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616c6c657220646f6573206e6f74206861766520746865204d494e5445525f60448201527f524f4c45000000000000000000000000000000000000000000000000000000006064820152608401610759565b61139f84846123fd565b6000828152602081905260409020600101546115948133611b6a565b6109138383611d77565b6115c87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610494565b611653576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616c6c657220646f6573206e6f74206861766520746865204d494e5445525f60448201527f524f4c45000000000000000000000000000000000000000000000000000000006064820152608401610759565b60005b8181101561139f576116808484848481811061167457611674613984565b905060200201356123fd565b8061168a816138aa565b915050611656565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806106145750610614826125cb565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061174282610f99565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610759565b600061184483610f99565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118b357508373ffffffffffffffffffffffffffffffffffffffff1661189b846106ac565b73ffffffffffffffffffffffffffffffffffffffff16145b806118f0575073ffffffffffffffffffffffffffffffffffffffff80821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661191882610f99565b73ffffffffffffffffffffffffffffffffffffffff16146119bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610759565b73ffffffffffffffffffffffffffffffffffffffff8216611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610759565b611a6883838361266d565b611a736000826116e8565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260408120805460019290611aa99084906137de565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290611ae4908490613775565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610bed57611bc08173ffffffffffffffffffffffffffffffffffffffff166014612678565b611bcb836020612678565b604051602001611bdc9291906135a5565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a00000000000000000000000000000000000000000000000000000000082526107599160040161366f565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610bed5760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611ccc3390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b7fc41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b96699600e82604051611d5c929190613682565b60405180910390a18051610bed90600e906020840190613043565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1615610bed5760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b620186a0811115611e9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f494e56414c49445f4645450000000000000000000000000000000000000000006044820152606401610759565b600c5460408051918252602082018390527fc6e980a116c671cc344b1ed002b6f0c3454692ecb6cc881f3ce59366368cde4f910160405180910390a1600c55565b600b5460ff16611f48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610759565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b6000611fc882610f99565b9050611fd68160008461266d565b611fe16000836116e8565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906120179084906137de565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600b5460ff1615612103576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610759565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f933390565b6121618484846118f8565b61216d848484846128bb565b61139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610759565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166122ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610759565b60006122b7612aba565b905060008151116122d757604051806020016040528060008152506113f3565b806122e184612ac9565b6040516020016113e3929190613535565b73ffffffffffffffffffffffffffffffffffffffff811661236f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f494e56414c49445f57414c4c45540000000000000000000000000000000000006044820152606401610759565b600d5460405173ffffffffffffffffffffffffffffffffffffffff8084169216907fa09dff055f1734e95d92880fc90368fd52bf88c41786aa2e24e2b34ae075452690600090a3600d80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff821661247a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610759565b60008181526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1615612506576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610759565b6125126000838361266d565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290612548908490613775565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061265e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610614575061061482612bfb565b610913838383612c51565b606060006126878360026137a1565b612692906002613775565b67ffffffffffffffff8111156126aa576126aa6139b3565b6040519080825280601f01601f1916602001820160405280156126d4576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061270b5761270b613984565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061276e5761276e613984565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006127aa8460026137a1565b6127b5906001613775565b90505b6001811115612852577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106127f6576127f6613984565b1a60f81b82828151811061280c5761280c613984565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c9361284b81613821565b90506127b8565b5083156113f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610759565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612aaf576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612932903390899088908890600401613626565b602060405180830381600087803b15801561294c57600080fd5b505af192505050801561299a575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526129979181019061346a565b60015b612a64573d8080156129c8576040519150601f19603f3d011682016040523d82523d6000602084013e6129cd565b606091505b508051612a5c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610759565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506118f0565b506001949350505050565b6060600e805461062990613856565b606081612b0957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612b335780612b1d816138aa565b9150612b2c9050600a8361378d565b9150612b0d565b60008167ffffffffffffffff811115612b4e57612b4e6139b3565b6040519080825280601f01601f191660200182016040528015612b78576020820181803683370190505b5090505b84156118f057612b8d6001836137de565b9150612b9a600a866138e3565b612ba5906030613775565b60f81b818381518110612bba57612bba613984565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612bf4600a8661378d565b9450612b7c565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610614575061061482612cef565b612c5c838383612d86565b600b5460ff1615610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c65207061757365640000000000000000000000000000000000000000006064820152608401610759565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061061457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610614565b73ffffffffffffffffffffffffffffffffffffffff8316612dee57612de981600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612e2b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e2b57612e2b8382612e8c565b73ffffffffffffffffffffffffffffffffffffffff8216612e4f5761091381612f43565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610913576109138282612ff2565b60006001612e998461104b565b612ea391906137de565b600083815260086020526040902054909150808214612f035773ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b50600091825260086020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600781528383209183525290812055565b600954600090612f55906001906137de565b6000838152600a602052604081205460098054939450909284908110612f7d57612f7d613984565b906000526020600020015490508060098381548110612f9e57612f9e613984565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612fd657612fd6613955565b6001900381819060005260206000200160009055905550505050565b6000612ffd8361104b565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461304f90613856565b90600052602060002090601f01602090048101928261307157600085556130b7565b82601f1061308a57805160ff19168380011785556130b7565b828001600101855582156130b7579182015b828111156130b757825182559160200191906001019061309c565b506130c39291506130c7565b5090565b5b808211156130c357600081556001016130c8565b803573ffffffffffffffffffffffffffffffffffffffff8116811461310057600080fd5b919050565b60008083601f84011261311757600080fd5b50813567ffffffffffffffff81111561312f57600080fd5b6020830191508360208285010111156109fc57600080fd5b60006020828403121561315957600080fd5b6113f3826130dc565b6000806040838503121561317557600080fd5b61317e836130dc565b915061318c602084016130dc565b90509250929050565b6000806000606084860312156131aa57600080fd5b6131b3846130dc565b92506131c1602085016130dc565b9150604084013590509250925092565b600080600080608085870312156131e757600080fd5b6131f0856130dc565b93506131fe602086016130dc565b925060408501359150606085013567ffffffffffffffff8082111561322257600080fd5b818701915087601f83011261323657600080fd5b813581811115613248576132486139b3565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171561328e5761328e6139b3565b816040528281528a60208487010111156132a757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806000604084860312156132e057600080fd5b6132e9846130dc565b9250602084013567ffffffffffffffff8082111561330657600080fd5b818601915086601f83011261331a57600080fd5b81358181111561332957600080fd5b8760208260051b850101111561333e57600080fd5b6020830194508093505050509250925092565b6000806040838503121561336457600080fd5b61336d836130dc565b91506020830135801515811461338257600080fd5b809150509250929050565b600080604083850312156133a057600080fd5b6133a9836130dc565b946020939093013593505050565b600080600080606085870312156133cd57600080fd5b6133d6856130dc565b935060208501359250604085013567ffffffffffffffff8111156133f957600080fd5b61340587828801613105565b95989497509550505050565b60006020828403121561342357600080fd5b5035919050565b6000806040838503121561343d57600080fd5b8235915061318c602084016130dc565b60006020828403121561345f57600080fd5b81356113f3816139e2565b60006020828403121561347c57600080fd5b81516113f3816139e2565b6000806020838503121561349a57600080fd5b823567ffffffffffffffff8111156134b157600080fd5b6134bd85828601613105565b90969095509350505050565b600080604083850312156134dc57600080fd5b50508035926020909101359150565b600081518084526135038160208601602086016137f5565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516135478184602088016137f5565b83519083019061355b8183602088016137f5565b01949350505050565b600082516135768184602087016137f5565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000920191825250600501919050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516135dd8160178501602088016137f5565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161361a8160288401602088016137f5565b01602801949350505050565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261366560808301846134eb565b9695505050505050565b6020815260006113f360208301846134eb565b60408152600080845481600182811c9150808316806136a257607f831692505b60208084108214156136db577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b60408801849052606088018280156136fa576001811461372957613754565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00871682528282019750613754565b60008c81526020902060005b8781101561374e57815484820152908601908401613735565b83019850505b505087860381890152505050505061376c81856134eb565b95945050505050565b60008219821115613788576137886138f7565b500190565b60008261379c5761379c613926565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137d9576137d96138f7565b500290565b6000828210156137f0576137f06138f7565b500390565b60005b838110156138105781810151838201526020016137f8565b8381111561139f5750506000910152565b600081613830576138306138f7565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c9082168061386a57607f821691505b602082108114156138a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138dc576138dc6138f7565b5060010190565b6000826138f2576138f2613926565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610d5f57600080fdfea26469706673582212206c8a23928bf712ef9581e02b491016eeca8b8a5e888191a1b80ec3b2a2601ca464736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000f543e8dc2ef6d336abc14f3f9d42a65b35313cb50000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000000b54686543757272656e6379000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000654454e44455200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d594d655474775a624336703452385473666f58664453626461676a59736b35714d37357745616132664547412f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102775760003560e01c80635c975abb11610160578063b8997a97116100d8578063d547741f1161008c578063e1a8bf2c11610071578063e1a8bf2c1461058f578063e58378bb14610599578063e985e9c5146105c057600080fd5b8063d547741f14610569578063de836ebd1461057c57600080fd5b8063cdeee637116100bd578063cdeee6371461051c578063d3fc98641461052f578063d53913931461054257600080fd5b8063b8997a9714610500578063c87b56dd1461050957600080fd5b806391d148541161012f578063a217fddf11610114578063a217fddf146104d2578063a22cb465146104da578063b88d4fde146104ed57600080fd5b806391d148541461048657806395d89b41146104ca57600080fd5b80635c975abb1461044d5780636352211e1461045857806370a082311461046b5780638456cb591461047e57600080fd5b80632f745c59116101f35780633f0d2ec1116101c257806342842e0e116101a757806342842e0e1461041457806342966c68146104275780634f6ccce71461043a57600080fd5b80633f0d2ec1146103ec5780633f4ba83a1461040c57600080fd5b80632f745c59146103a057806330176e13146103b357806336568abe146103c65780633e4086e5146103d957600080fd5b806318160ddd1161024a578063248a9ca31161022f578063248a9ca31461032b5780632a55205a1461034e5780632f2ff15d1461038d57600080fd5b806318160ddd1461030657806323b872dd1461031857600080fd5b806301ffc9a71461027c57806306fdde03146102a4578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b61028f61028a36600461344d565b610609565b60405190151581526020015b60405180910390f35b6102ac61061a565b60405161029b919061366f565b6102cc6102c7366004613411565b6106ac565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161029b565b6103046102ff36600461338d565b61078b565b005b6009545b60405190815260200161029b565b610304610326366004613195565b610918565b61030a610339366004613411565b60009081526020819052604090206001015490565b61036161035c3660046134c9565b6109ba565b6040805173ffffffffffffffffffffffffffffffffffffffff909316835260208301919091520161029b565b61030461039b36600461342a565b610a03565b61030a6103ae36600461338d565b610a29565b6103046103c1366004613487565b610af8565b6103046103d436600461342a565b610bf1565b6103046103e7366004613411565b610ca0565b600d546102cc9073ffffffffffffffffffffffffffffffffffffffff1681565b610304610d62565b610304610422366004613195565b610e22565b610304610435366004613411565b610e3d565b61030a610448366004613411565b610edb565b600b5460ff1661028f565b6102cc610466366004613411565b610f99565b61030a610479366004613147565b61104b565b610304611119565b61028f61049436600461342a565b60009182526020828152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b6102ac6111d7565b61030a600081565b6103046104e8366004613351565b6111e6565b6103046104fb3660046131d1565b6112fd565b61030a600c5481565b6102ac610517366004613411565b6113a5565b61030461052a366004613147565b6113fa565b61030461053d3660046133b7565b6114b9565b61030a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61030461057736600461342a565b611578565b61030461058a3660046132cb565b61159e565b61030a620186a081565b61030a7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e81565b61028f6105ce366004613162565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b600061061482611692565b92915050565b60606001805461062990613856565b80601f016020809104026020016040519081016040528092919081815260200182805461065590613856565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061079682610f99565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610759565b3373ffffffffffffffffffffffffffffffffffffffff8216148061087d575061087d81336105ce565b610909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610759565b61091383836116e8565b505050565b610923335b82611788565b6109af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610759565b6109138383836118f8565b600d54600c54600091829173ffffffffffffffffffffffffffffffffffffffff90911690620186a0906109ed90866137a1565b6109f7919061378d565b915091505b9250929050565b600082815260208190526040902060010154610a1f8133611b6a565b6109138383611c3a565b6000610a348361104b565b8210610ac2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610759565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600760209081526040808320938352929052205490565b610b227fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610494565b610bae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f5260448201527f4f4c4500000000000000000000000000000000000000000000000000000000006064820152608401610759565b610bed82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611d2a92505050565b5050565b73ffffffffffffffffffffffffffffffffffffffff81163314610c96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610759565b610bed8282611d77565b610cca7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610494565b610d56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f5260448201527f4f4c4500000000000000000000000000000000000000000000000000000000006064820152608401610759565b610d5f81611e2e565b50565b610d8c7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610494565b610e18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f5260448201527f4f4c4500000000000000000000000000000000000000000000000000000000006064820152608401610759565b610e20611edc565b565b610913838383604051806020016040528060008152506112fd565b610e463361091d565b610ed2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f766564000000000000000000000000000000006064820152608401610759565b610d5f81611fbd565b6000610ee660095490565b8210610f74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610759565b60098281548110610f8757610f87613984565b90600052602060002001549050919050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610759565b600073ffffffffffffffffffffffffffffffffffffffff82166110f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610759565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b6111437fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610494565b6111cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f5260448201527f4f4c4500000000000000000000000000000000000000000000000000000000006064820152608401610759565b610e20612096565b60606002805461062990613856565b73ffffffffffffffffffffffffffffffffffffffff8216331415611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610759565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113073383611788565b611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610759565b61139f84848484612156565b50505050565b606060006113b2836121f9565b905060008151116113d257604051806020016040528060008152506113f3565b806040516020016113e39190613564565b6040516020818303038152906040525b9392505050565b6114247fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e33610494565b6114b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f43616c6c657220646f6573206e6f74206861766520746865204f574e45525f5260448201527f4f4c4500000000000000000000000000000000000000000000000000000000006064820152608401610759565b610d5f816122f2565b6114e37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610494565b61156e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616c6c657220646f6573206e6f74206861766520746865204d494e5445525f60448201527f524f4c45000000000000000000000000000000000000000000000000000000006064820152608401610759565b61139f84846123fd565b6000828152602081905260409020600101546115948133611b6a565b6109138383611d77565b6115c87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610494565b611653576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616c6c657220646f6573206e6f74206861766520746865204d494e5445525f60448201527f524f4c45000000000000000000000000000000000000000000000000000000006064820152608401610759565b60005b8181101561139f576116808484848481811061167457611674613984565b905060200201356123fd565b8061168a816138aa565b915050611656565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806106145750610614826125cb565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061174282610f99565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610759565b600061184483610f99565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118b357508373ffffffffffffffffffffffffffffffffffffffff1661189b846106ac565b73ffffffffffffffffffffffffffffffffffffffff16145b806118f0575073ffffffffffffffffffffffffffffffffffffffff80821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661191882610f99565b73ffffffffffffffffffffffffffffffffffffffff16146119bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610759565b73ffffffffffffffffffffffffffffffffffffffff8216611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610759565b611a6883838361266d565b611a736000826116e8565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260408120805460019290611aa99084906137de565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290611ae4908490613775565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610bed57611bc08173ffffffffffffffffffffffffffffffffffffffff166014612678565b611bcb836020612678565b604051602001611bdc9291906135a5565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a00000000000000000000000000000000000000000000000000000000082526107599160040161366f565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610bed5760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611ccc3390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b7fc41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b96699600e82604051611d5c929190613682565b60405180910390a18051610bed90600e906020840190613043565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1615610bed5760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b620186a0811115611e9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f494e56414c49445f4645450000000000000000000000000000000000000000006044820152606401610759565b600c5460408051918252602082018390527fc6e980a116c671cc344b1ed002b6f0c3454692ecb6cc881f3ce59366368cde4f910160405180910390a1600c55565b600b5460ff16611f48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610759565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b6000611fc882610f99565b9050611fd68160008461266d565b611fe16000836116e8565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906120179084906137de565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600b5460ff1615612103576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610759565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f933390565b6121618484846118f8565b61216d848484846128bb565b61139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610759565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166122ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610759565b60006122b7612aba565b905060008151116122d757604051806020016040528060008152506113f3565b806122e184612ac9565b6040516020016113e3929190613535565b73ffffffffffffffffffffffffffffffffffffffff811661236f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f494e56414c49445f57414c4c45540000000000000000000000000000000000006044820152606401610759565b600d5460405173ffffffffffffffffffffffffffffffffffffffff8084169216907fa09dff055f1734e95d92880fc90368fd52bf88c41786aa2e24e2b34ae075452690600090a3600d80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff821661247a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610759565b60008181526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1615612506576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610759565b6125126000838361266d565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290612548908490613775565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061265e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610614575061061482612bfb565b610913838383612c51565b606060006126878360026137a1565b612692906002613775565b67ffffffffffffffff8111156126aa576126aa6139b3565b6040519080825280601f01601f1916602001820160405280156126d4576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061270b5761270b613984565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061276e5761276e613984565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006127aa8460026137a1565b6127b5906001613775565b90505b6001811115612852577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106127f6576127f6613984565b1a60f81b82828151811061280c5761280c613984565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c9361284b81613821565b90506127b8565b5083156113f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610759565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612aaf576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612932903390899088908890600401613626565b602060405180830381600087803b15801561294c57600080fd5b505af192505050801561299a575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526129979181019061346a565b60015b612a64573d8080156129c8576040519150601f19603f3d011682016040523d82523d6000602084013e6129cd565b606091505b508051612a5c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610759565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506118f0565b506001949350505050565b6060600e805461062990613856565b606081612b0957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612b335780612b1d816138aa565b9150612b2c9050600a8361378d565b9150612b0d565b60008167ffffffffffffffff811115612b4e57612b4e6139b3565b6040519080825280601f01601f191660200182016040528015612b78576020820181803683370190505b5090505b84156118f057612b8d6001836137de565b9150612b9a600a866138e3565b612ba5906030613775565b60f81b818381518110612bba57612bba613984565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612bf4600a8661378d565b9450612b7c565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610614575061061482612cef565b612c5c838383612d86565b600b5460ff1615610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c65207061757365640000000000000000000000000000000000000000006064820152608401610759565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061061457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610614565b73ffffffffffffffffffffffffffffffffffffffff8316612dee57612de981600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612e2b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e2b57612e2b8382612e8c565b73ffffffffffffffffffffffffffffffffffffffff8216612e4f5761091381612f43565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610913576109138282612ff2565b60006001612e998461104b565b612ea391906137de565b600083815260086020526040902054909150808214612f035773ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b50600091825260086020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600781528383209183525290812055565b600954600090612f55906001906137de565b6000838152600a602052604081205460098054939450909284908110612f7d57612f7d613984565b906000526020600020015490508060098381548110612f9e57612f9e613984565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612fd657612fd6613955565b6001900381819060005260206000200160009055905550505050565b6000612ffd8361104b565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461304f90613856565b90600052602060002090601f01602090048101928261307157600085556130b7565b82601f1061308a57805160ff19168380011785556130b7565b828001600101855582156130b7579182015b828111156130b757825182559160200191906001019061309c565b506130c39291506130c7565b5090565b5b808211156130c357600081556001016130c8565b803573ffffffffffffffffffffffffffffffffffffffff8116811461310057600080fd5b919050565b60008083601f84011261311757600080fd5b50813567ffffffffffffffff81111561312f57600080fd5b6020830191508360208285010111156109fc57600080fd5b60006020828403121561315957600080fd5b6113f3826130dc565b6000806040838503121561317557600080fd5b61317e836130dc565b915061318c602084016130dc565b90509250929050565b6000806000606084860312156131aa57600080fd5b6131b3846130dc565b92506131c1602085016130dc565b9150604084013590509250925092565b600080600080608085870312156131e757600080fd5b6131f0856130dc565b93506131fe602086016130dc565b925060408501359150606085013567ffffffffffffffff8082111561322257600080fd5b818701915087601f83011261323657600080fd5b813581811115613248576132486139b3565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171561328e5761328e6139b3565b816040528281528a60208487010111156132a757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806000604084860312156132e057600080fd5b6132e9846130dc565b9250602084013567ffffffffffffffff8082111561330657600080fd5b818601915086601f83011261331a57600080fd5b81358181111561332957600080fd5b8760208260051b850101111561333e57600080fd5b6020830194508093505050509250925092565b6000806040838503121561336457600080fd5b61336d836130dc565b91506020830135801515811461338257600080fd5b809150509250929050565b600080604083850312156133a057600080fd5b6133a9836130dc565b946020939093013593505050565b600080600080606085870312156133cd57600080fd5b6133d6856130dc565b935060208501359250604085013567ffffffffffffffff8111156133f957600080fd5b61340587828801613105565b95989497509550505050565b60006020828403121561342357600080fd5b5035919050565b6000806040838503121561343d57600080fd5b8235915061318c602084016130dc565b60006020828403121561345f57600080fd5b81356113f3816139e2565b60006020828403121561347c57600080fd5b81516113f3816139e2565b6000806020838503121561349a57600080fd5b823567ffffffffffffffff8111156134b157600080fd5b6134bd85828601613105565b90969095509350505050565b600080604083850312156134dc57600080fd5b50508035926020909101359150565b600081518084526135038160208601602086016137f5565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516135478184602088016137f5565b83519083019061355b8183602088016137f5565b01949350505050565b600082516135768184602087016137f5565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000920191825250600501919050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516135dd8160178501602088016137f5565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161361a8160288401602088016137f5565b01602801949350505050565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261366560808301846134eb565b9695505050505050565b6020815260006113f360208301846134eb565b60408152600080845481600182811c9150808316806136a257607f831692505b60208084108214156136db577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b60408801849052606088018280156136fa576001811461372957613754565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00871682528282019750613754565b60008c81526020902060005b8781101561374e57815484820152908601908401613735565b83019850505b505087860381890152505050505061376c81856134eb565b95945050505050565b60008219821115613788576137886138f7565b500190565b60008261379c5761379c613926565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137d9576137d96138f7565b500290565b6000828210156137f0576137f06138f7565b500390565b60005b838110156138105781810151838201526020016137f8565b8381111561139f5750506000910152565b600081613830576138306138f7565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c9082168061386a57607f821691505b602082108114156138a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138dc576138dc6138f7565b5060010190565b6000826138f2576138f2613926565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610d5f57600080fdfea26469706673582212206c8a23928bf712ef9581e02b491016eeca8b8a5e888191a1b80ec3b2a2601ca464736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000f543e8dc2ef6d336abc14f3f9d42a65b35313cb50000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000000b54686543757272656e6379000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000654454e44455200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d594d655474775a624336703452385473666f58664453626461676a59736b35714d37357745616132664547412f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): TheCurrency
Arg [1] : _symbol (string): TENDER
Arg [2] : _uri (string): ipfs://QmYMeTtwZbC6p4R8TsfoXfDSbdagjYsk5qM75wEaa2fEGA/
Arg [3] : _royaltyWallet (address): 0xf543e8Dc2eF6d336abC14f3f9d42A65b35313Cb5
Arg [4] : _royaltyFee (uint256): 5000

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 000000000000000000000000f543e8dc2ef6d336abc14f3f9d42a65b35313cb5
Arg [4] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 54686543757272656e6379000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 54454e4445520000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d594d655474775a624336703452385473666f5866445362
Arg [11] : 6461676a59736b35714d37357745616132664547412f00000000000000000000


Deployed Bytecode Sourcemap

54300:5928:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58991:236;;;;;;:::i;:::-;;:::i;:::-;;;9473:14:1;;9466:22;9448:41;;9436:2;9421:18;58991:236:0;;;;;;;;30105:100;;;:::i;:::-;;;;;;;:::i;31565:221::-;;;;;;:::i;:::-;;:::i;:::-;;;8435:42:1;8423:55;;;8405:74;;8393:2;8378:18;31565:221:0;8360:125:1;31102:397:0;;;;;;:::i;:::-;;:::i;:::-;;43553:113;43641:10;:17;43553:113;;;9646:25:1;;;9634:2;9619:18;43553:113:0;9601:76:1;32455:305:0;;;;;;:::i;:::-;;:::i;10299:123::-;;;;;;:::i;:::-;10365:7;10392:12;;;;;;;;;;:22;;;;10299:123;58230:384;;;;;;:::i;:::-;;:::i;:::-;;;;9210:42:1;9198:55;;;9180:74;;9285:2;9270:18;;9263:34;;;;9153:18;58230:384:0;9135:168:1;10684:147:0;;;;;;:::i;:::-;;:::i;43221:256::-;;;;;;:::i;:::-;;:::i;57409:106::-;;;;;;:::i;:::-;;:::i;11732:218::-;;;;;;:::i;:::-;;:::i;57945:110::-;;;;;;:::i;:::-;;:::i;54852:28::-;;;;;;;;;57244:68;;;:::i;32831:151::-;;;;;;:::i;:::-;;:::i;49484:245::-;;;;;;:::i;:::-;;:::i;43743:233::-;;;;;;:::i;:::-;;:::i;50811:86::-;50882:7;;;;50811:86;;29799:239;;;;;;:::i;:::-;;:::i;29529:208::-;;;;;;:::i;:::-;;:::i;57116:64::-;;;:::i;9297:139::-;;;;;;:::i;:::-;9375:4;9399:12;;;;;;;;;;;:29;;;;;;;;;;;;;;;;9297:139;30274:104;;;:::i;7262:49::-;;7307:4;7262:49;;31858:295;;;;;;:::i;:::-;;:::i;33053:285::-;;;;;;:::i;:::-;;:::i;54820:25::-;;;;;;58756:227;;;;;;:::i;:::-;;:::i;57676:122::-;;;;;;:::i;:::-;;:::i;56922:132::-;;;;;;:::i;:::-;;:::i;54686:62::-;;54724:24;54686:62;;11076:149;;;;;;:::i;:::-;;:::i;56430:203::-;;;;;;:::i;:::-;;:::i;54757:56::-;;54807:6;54757:56;;54619:60;;54656:23;54619:60;;32224:164;;;;;;:::i;:::-;32345:25;;;;32321:4;32345:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32224:164;58991:236;59154:4;59183:36;59207:11;59183:23;:36::i;:::-;59176:43;58991:236;-1:-1:-1;;58991:236:0:o;30105:100::-;30159:13;30192:5;30185:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30105:100;:::o;31565:221::-;31641:7;34894:16;;;:7;:16;;;;;;:30;:16;31661:73;;;;;;;17721:2:1;31661:73:0;;;17703:21:1;17760:2;17740:18;;;17733:30;17799:34;17779:18;;;17772:62;17870:14;17850:18;;;17843:42;17902:19;;31661:73:0;;;;;;;;;-1:-1:-1;31754:24:0;;;;:15;:24;;;;;;;;;31565:221::o;31102:397::-;31183:13;31199:23;31214:7;31199:14;:23::i;:::-;31183:39;;31247:5;31241:11;;:2;:11;;;;31233:57;;;;;;;19303:2:1;31233:57:0;;;19285:21:1;19342:2;19322:18;;;19315:30;19381:34;19361:18;;;19354:62;19452:3;19432:18;;;19425:31;19473:19;;31233:57:0;19275:223:1;31233:57:0;735:10;31311:21;;;;;:62;;-1:-1:-1;31336:37:0;31353:5;735:10;32224:164;:::i;31336:37::-;31303:154;;;;;;;15774:2:1;31303:154:0;;;15756:21:1;15813:2;15793:18;;;15786:30;15852:34;15832:18;;;15825:62;15923:26;15903:18;;;15896:54;15967:19;;31303:154:0;15746:246:1;31303:154:0;31470:21;31479:2;31483:7;31470:8;:21::i;:::-;31172:327;31102:397;;:::o;32455:305::-;32616:41;735:10;32635:12;32649:7;32616:18;:41::i;:::-;32608:103;;;;;;;19705:2:1;32608:103:0;;;19687:21:1;19744:2;19724:18;;;19717:30;19783:34;19763:18;;;19756:62;19854:19;19834:18;;;19827:47;19891:19;;32608:103:0;19677:239:1;32608:103:0;32724:28;32734:4;32740:2;32744:7;32724:9;:28::i;58230:384::-;58544:13;;58568:10;;58450:7;;;;58544:13;;;;;54807:6;;58560:18;;:5;:18;:::i;:::-;58559:46;;;;:::i;:::-;58536:70;;;;58230:384;;;;;;:::o;10684:147::-;10365:7;10392:12;;;;;;;;;;:22;;;8866:30;8877:4;735:10;8866;:30::i;:::-;10798:25:::1;10809:4;10815:7;10798:10;:25::i;43221:256::-:0;43318:7;43354:23;43371:5;43354:16;:23::i;:::-;43346:5;:31;43338:87;;;;;;;13069:2:1;43338:87:0;;;13051:21:1;13108:2;13088:18;;;13081:30;13147:34;13127:18;;;13120:62;13218:13;13198:18;;;13191:41;13249:19;;43338:87:0;13041:233:1;43338:87:0;-1:-1:-1;43443:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43221:256::o;57409:106::-;55840:33;54656:23;735:10;9297:139;:::i;55840:33::-;55832:81;;;;;;;12665:2:1;55832:81:0;;;12647:21:1;12704:2;12684:18;;;12677:30;12743:34;12723:18;;;12716:62;12814:5;12794:18;;;12787:33;12837:19;;55832:81:0;12637:225:1;55832:81:0;57486:21:::1;57503:3;;57486:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;57486:16:0::1;::::0;-1:-1:-1;;;57486:21:0:i:1;:::-;57409:106:::0;;:::o;11732:218::-;11828:23;;;735:10;11828:23;11820:83;;;;;;;21358:2:1;11820:83:0;;;21340:21:1;21397:2;21377:18;;;21370:30;21436:34;21416:18;;;21409:62;21507:17;21487:18;;;21480:45;21542:19;;11820:83:0;21330:237:1;11820:83:0;11916:26;11928:4;11934:7;11916:11;:26::i;57945:110::-;55840:33;54656:23;735:10;9297:139;:::i;55840:33::-;55832:81;;;;;;;12665:2:1;55832:81:0;;;12647:21:1;12704:2;12684:18;;;12677:30;12743:34;12723:18;;;12716:62;12814:5;12794:18;;;12787:33;12837:19;;55832:81:0;12637:225:1;55832:81:0;58020:27:::1;58035:11;58020:14;:27::i;:::-;57945:110:::0;:::o;57244:68::-;55840:33;54656:23;735:10;9297:139;:::i;55840:33::-;55832:81;;;;;;;12665:2:1;55832:81:0;;;12647:21:1;12704:2;12684:18;;;12677:30;12743:34;12723:18;;;12716:62;12814:5;12794:18;;;12787:33;12837:19;;55832:81:0;12637:225:1;55832:81:0;57294:10:::1;:8;:10::i;:::-;57244:68::o:0;32831:151::-;32935:39;32952:4;32958:2;32962:7;32935:39;;;;;;;;;;;;:16;:39::i;49484:245::-;49602:41;735:10;49621:12;655:98;49602:41;49594:102;;;;;;;20941:2:1;49594:102:0;;;20923:21:1;20980:2;20960:18;;;20953:30;21019:34;20999:18;;;20992:62;21090:18;21070;;;21063:46;21126:19;;49594:102:0;20913:238:1;49594:102:0;49707:14;49713:7;49707:5;:14::i;43743:233::-;43818:7;43854:30;43641:10;:17;;43553:113;43854:30;43846:5;:38;43838:95;;;;;;;20123:2:1;43838:95:0;;;20105:21:1;20162:2;20142:18;;;20135:30;20201:34;20181:18;;;20174:62;20272:14;20252:18;;;20245:42;20304:19;;43838:95:0;20095:234:1;43838:95:0;43951:10;43962:5;43951:17;;;;;;;;:::i;:::-;;;;;;;;;43944:24;;43743:233;;;:::o;29799:239::-;29871:7;29907:16;;;:7;:16;;;;;;;;29942:19;29934:73;;;;;;;16950:2:1;29934:73:0;;;16932:21:1;16989:2;16969:18;;;16962:30;17028:34;17008:18;;;17001:62;17099:11;17079:18;;;17072:39;17128:19;;29934:73:0;16922:231:1;29529:208:0;29601:7;29629:19;;;29621:74;;;;;;;16199:2:1;29621:74:0;;;16181:21:1;16238:2;16218:18;;;16211:30;16277:34;16257:18;;;16250:62;16348:12;16328:18;;;16321:40;16378:19;;29621:74:0;16171:232:1;29621:74:0;-1:-1:-1;29713:16:0;;;;;;:9;:16;;;;;;;29529:208::o;57116:64::-;55840:33;54656:23;735:10;9297:139;:::i;55840:33::-;55832:81;;;;;;;12665:2:1;55832:81:0;;;12647:21:1;12704:2;12684:18;;;12677:30;12743:34;12723:18;;;12716:62;12814:5;12794:18;;;12787:33;12837:19;;55832:81:0;12637:225:1;55832:81:0;57164:8:::1;:6;:8::i;30274:104::-:0;30330:13;30363:7;30356:14;;;;;:::i;31858:295::-;31961:24;;;735:10;31961:24;;31953:62;;;;;;;14662:2:1;31953:62:0;;;14644:21:1;14701:2;14681:18;;;14674:30;14740:27;14720:18;;;14713:55;14785:18;;31953:62:0;14634:175:1;31953:62:0;735:10;32028:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;32097:48;;9448:41:1;;;32028:42:0;;735:10;32097:48;;9421:18:1;32097:48:0;;;;;;;31858:295;;:::o;33053:285::-;33185:41;735:10;33218:7;33185:18;:41::i;:::-;33177:103;;;;;;;19705:2:1;33177:103:0;;;19687:21:1;19744:2;19724:18;;;19717:30;19783:34;19763:18;;;19756:62;19854:19;19834:18;;;19827:47;19891:19;;33177:103:0;19677:239:1;33177:103:0;33291:39;33305:4;33311:2;33315:7;33324:5;33291:13;:39::i;:::-;33053:285;;;;:::o;58756:227::-;58821:13;58847:17;58867:23;58882:7;58867:14;:23::i;:::-;58847:43;;58928:1;58914:3;58908:17;:21;:67;;;;;;;;;;;;;;;;;58956:3;58939:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;58908:67;58901:74;58756:227;-1:-1:-1;;;58756:227:0:o;57676:122::-;55840:33;54656:23;735:10;9297:139;:::i;55840:33::-;55832:81;;;;;;;12665:2:1;55832:81:0;;;12647:21:1;12704:2;12684:18;;;12677:30;12743:34;12723:18;;;12716:62;12814:5;12794:18;;;12787:33;12837:19;;55832:81:0;12637:225:1;55832:81:0;57757:33:::1;57775:14;57757:17;:33::i;56922:132::-:0;56122:34;54724:24;735:10;9297:139;:::i;56122:34::-;56114:83;;;;;;;20536:2:1;56114:83:0;;;20518:21:1;20575:2;20555:18;;;20548:30;20614:34;20594:18;;;20587:62;20685:6;20665:18;;;20658:34;20709:19;;56114:83:0;20508:226:1;56114:83:0;57021:25:::1;57027:9;57038:7;57021:5;:25::i;11076:149::-:0;10365:7;10392:12;;;;;;;;;;:22;;;8866:30;8877:4;735:10;8866;:30::i;:::-;11191:26:::1;11203:4;11209:7;11191:11;:26::i;56430:203::-:0;56122:34;54724:24;735:10;9297:139;:::i;56122:34::-;56114:83;;;;;;;20536:2:1;56114:83:0;;;20518:21:1;20575:2;20555:18;;;20548:30;20614:34;20594:18;;;20587:62;20685:6;20665:18;;;20658:34;20709:19;;56114:83:0;20508:226:1;56114:83:0;56529:9:::1;56524:102;56544:19:::0;;::::1;56524:102;;;56585:29;56591:9;56602:8;;56611:1;56602:11;;;;;;;:::i;:::-;;;;;;;56585:5;:29::i;:::-;56565:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56524:102;;42900:237:::0;43002:4;43026:50;;;43041:35;43026:50;;:103;;;43093:36;43117:11;43093:23;:36::i;38682:174::-;38757:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;38811:23;38757:24;38811:14;:23::i;:::-;38802:46;;;;;;;;;;;;38682:174;;:::o;35099:348::-;35192:4;34894:16;;;:7;:16;;;;;;:30;:16;35209:73;;;;;;;15016:2:1;35209:73:0;;;14998:21:1;15055:2;15035:18;;;15028:30;15094:34;15074:18;;;15067:62;15165:14;15145:18;;;15138:42;15197:19;;35209:73:0;14988:234:1;35209:73:0;35293:13;35309:23;35324:7;35309:14;:23::i;:::-;35293:39;;35362:5;35351:16;;:7;:16;;;:51;;;;35395:7;35371:31;;:20;35383:7;35371:11;:20::i;:::-;:31;;;35351:51;:87;;;-1:-1:-1;32345:25:0;;;;32321:4;32345:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35406:32;35343:96;35099:348;-1:-1:-1;;;;35099:348:0:o;38020:544::-;38145:4;38118:31;;:23;38133:7;38118:14;:23::i;:::-;:31;;;38110:85;;;;;;;18477:2:1;38110:85:0;;;18459:21:1;18516:2;18496:18;;;18489:30;18555:34;18535:18;;;18528:62;18626:11;18606:18;;;18599:39;18655:19;;38110:85:0;18449:231:1;38110:85:0;38214:16;;;38206:65;;;;;;;14257:2:1;38206:65:0;;;14239:21:1;14296:2;14276:18;;;14269:30;14335:34;14315:18;;;14308:62;14406:6;14386:18;;;14379:34;14430:19;;38206:65:0;14229:226:1;38206:65:0;38284:39;38305:4;38311:2;38315:7;38284:20;:39::i;:::-;38388:29;38405:1;38409:7;38388:8;:29::i;:::-;38430:15;;;;;;;:9;:15;;;;;:20;;38449:1;;38430:15;:20;;38449:1;;38430:20;:::i;:::-;;;;-1:-1:-1;;38461:13:0;;;;;;;:9;:13;;;;;:18;;38478:1;;38461:13;:18;;38478:1;;38461:18;:::i;:::-;;;;-1:-1:-1;;38490:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;38529:27;;38490:16;;38529:27;;;;;;;38020:544;;;:::o;9726:384::-;9375:4;9399:12;;;;;;;;;;;:29;;;;;;;;;;;;;9802:301;;9938:41;9966:7;9938:41;;9976:2;9938:19;:41::i;:::-;10036:38;10064:4;10071:2;10036:19;:38::i;:::-;9859:230;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;9845:246;;;;;;;;:::i;12980:229::-;9375:4;9399:12;;;;;;;;;;;:29;;;;;;;;;;;;;13050:152;;13094:6;:12;;;;;;;;;;;:29;;;;;;;;;;:36;;;;13126:4;13094:36;;;13177:12;735:10;;655:98;13177:12;13150:40;;13168:7;13150:40;;13162:4;13150:40;;;;;;;;;;12980:229;;:::o;59474:151::-;59547:37;59562:13;59577:6;59547:37;;;;;;;:::i;:::-;;;;;;;;59595:22;;;;:13;;:22;;;;;:::i;13217:230::-;9375:4;9399:12;;;;;;;;;;;:29;;;;;;;;;;;;;13288:152;;;13363:5;13331:12;;;;;;;;;;;:29;;;;;;;;;;;:37;;;;;;13388:40;735:10;;13331:12;;13388:40;;13363:5;13388:40;13217:230;;:::o;59883:228::-;54807:6;59956:11;:38;;59948:62;;;;;;;16610:2:1;59948:62:0;;;16592:21:1;16649:2;16629:18;;;16622:30;16688:13;16668:18;;;16661:41;16719:18;;59948:62:0;16582:161:1;59948:62:0;60044:10;;60026:42;;;21928:25:1;;;21984:2;21969:18;;21962:34;;;60026:42:0;;21901:18:1;60026:42:0;;;;;;;60079:10;:24;59883:228::o;51870:120::-;50882:7;;;;51406:41;;;;;;;12316:2:1;51406:41:0;;;12298:21:1;12355:2;12335:18;;;12328:30;12394:22;12374:18;;;12367:50;12434:18;;51406:41:0;12288:170:1;51406:41:0;51929:7:::1;:15:::0;;;::::1;::::0;;51960:22:::1;735:10:::0;51969:12:::1;51960:22;::::0;8435:42:1;8423:55;;;8405:74;;8393:2;8378:18;51960:22:0::1;;;;;;;51870:120::o:0;37323:360::-;37383:13;37399:23;37414:7;37399:14;:23::i;:::-;37383:39;;37435:48;37456:5;37471:1;37475:7;37435:20;:48::i;:::-;37524:29;37541:1;37545:7;37524:8;:29::i;:::-;37566:16;;;;;;;:9;:16;;;;;:21;;37586:1;;37566:16;:21;;37586:1;;37566:21;:::i;:::-;;;;-1:-1:-1;;37605:16:0;;;;:7;:16;;;;;;37598:23;;;;;;37639:36;37613:7;;37605:16;37598:23;37639:36;;;;;37605:16;;37639:36;37372:311;37323:360;:::o;51611:118::-;50882:7;;;;51136:9;51128:38;;;;;;;15429:2:1;51128:38:0;;;15411:21:1;15468:2;15448:18;;;15441:30;15507:18;15487;;;15480:46;15543:18;;51128:38:0;15401:166:1;51128:38:0;51671:7:::1;:14:::0;;;::::1;51681:4;51671:14;::::0;;51701:20:::1;51708:12;735:10:::0;;655:98;34220:272;34334:28;34344:4;34350:2;34354:7;34334:9;:28::i;:::-;34381:48;34404:4;34410:2;34414:7;34423:5;34381:22;:48::i;:::-;34373:111;;;;;;;13481:2:1;34373:111:0;;;13463:21:1;13520:2;13500:18;;;13493:30;13559:34;13539:18;;;13532:62;13630:20;13610:18;;;13603:48;13668:19;;34373:111:0;13453:240:1;30449:360:0;34870:4;34894:16;;;:7;:16;;;;;;30522:13;;34894:30;:16;30548:76;;;;;;;18887:2:1;30548:76:0;;;18869:21:1;18926:2;18906:18;;;18899:30;18965:34;18945:18;;;18938:62;19036:17;19016:18;;;19009:45;19071:19;;30548:76:0;18859:237:1;30548:76:0;30637:21;30661:10;:8;:10::i;:::-;30637:34;;30713:1;30695:7;30689:21;:25;:112;;;;;;;;;;;;;;;;;30754:7;30763:18;:7;:16;:18::i;:::-;30737:45;;;;;;;;;:::i;59633:242::-;59712:28;;;59704:55;;;;;;;18134:2:1;59704:55:0;;;18116:21:1;18173:2;18153:18;;;18146:30;18212:16;18192:18;;;18185:44;18246:18;;59704:55:0;18106:164:1;59704:55:0;59796:13;;59775:51;;;;;;;59796:13;;59775:51;;59796:13;;59775:51;59837:13;:30;;;;;;;;;;;;;;;59633:242::o;36712:382::-;36792:16;;;36784:61;;;;;;;17360:2:1;36784:61:0;;;17342:21:1;;;17379:18;;;17372:30;17438:34;17418:18;;;17411:62;17490:18;;36784:61:0;17332:182:1;36784:61:0;34870:4;34894:16;;;:7;:16;;;;;;:30;:16;:30;36856:58;;;;;;;13900:2:1;36856:58:0;;;13882:21:1;13939:2;13919:18;;;13912:30;13978;13958:18;;;13951:58;14026:18;;36856:58:0;13872:178:1;36856:58:0;36927:45;36956:1;36960:2;36964:7;36927:20;:45::i;:::-;36985:13;;;;;;;:9;:13;;;;;:18;;37002:1;;36985:13;:18;;37002:1;;36985:18;:::i;:::-;;;;-1:-1:-1;;37014:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;37053:33;;37014:16;;;37053:33;;37014:16;;37053:33;36712:382;;:::o;29173:292::-;29275:4;29299:40;;;29314:25;29299:40;;:105;;-1:-1:-1;29356:48:0;;;29371:33;29356:48;29299:105;:158;;;;29421:36;29445:11;29421:23;:36::i;59235:231::-;59413:45;59440:4;59446:2;59450:7;59413:26;:45::i;2611:447::-;2686:13;2712:19;2744:10;2748:6;2744:1;:10;:::i;:::-;:14;;2757:1;2744:14;:::i;:::-;2734:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2734:25:0;;2712:47;;2770:15;:6;2777:1;2770:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;;2796;:6;2803:1;2796:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;-1:-1:-1;2827:9:0;2839:10;2843:6;2839:1;:10;:::i;:::-;:14;;2852:1;2839:14;:::i;:::-;2827:26;;2822:131;2859:1;2855;:5;2822:131;;;2894:8;2903:5;2911:3;2903:11;2894:21;;;;;;;:::i;:::-;;;;2882:6;2889:1;2882:9;;;;;;;;:::i;:::-;;;;:33;;;;;;;;;;-1:-1:-1;2940:1:0;2930:11;;;;;2862:3;;;:::i;:::-;;;2822:131;;;-1:-1:-1;2971:10:0;;2963:55;;;;;;;11543:2:1;2963:55:0;;;11525:21:1;;;11562:18;;;11555:30;11621:34;11601:18;;;11594:62;11673:18;;2963:55:0;11515:182:1;39421:843:0;39542:4;39568:13;;;20943:20;20982:8;39564:693;;39604:72;;;;;:36;;;;;;:72;;735:10;;39655:4;;39661:7;;39670:5;;39604:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39604:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39600:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39850:13:0;;39846:341;;39893:60;;;;;13481:2:1;39893:60:0;;;13463:21:1;13520:2;13500:18;;;13493:30;13559:34;13539:18;;;13532:62;13630:20;13610:18;;;13603:48;13668:19;;39893:60:0;13453:240:1;39846:341:0;40137:6;40131:13;40122:6;40118:2;40114:15;40107:38;39600:602;39727:55;;39737:45;39727:55;;-1:-1:-1;39720:62:0;;39564:693;-1:-1:-1;40241:4:0;39421:843;;;;;;:::o;60119:106::-;60171:13;60204;60197:20;;;;;:::i;1310:723::-;1366:13;1587:10;1583:53;;-1:-1:-1;;1614:10:0;;;;;;;;;;;;;;;;;;1310:723::o;1583:53::-;1661:5;1646:12;1702:78;1709:9;;1702:78;;1735:8;;;;:::i;:::-;;-1:-1:-1;1758:10:0;;-1:-1:-1;1766:2:0;1758:10;;:::i;:::-;;;1702:78;;;1790:19;1822:6;1812:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1812:17:0;;1790:39;;1840:154;1847:10;;1840:154;;1874:11;1884:1;1874:11;;:::i;:::-;;-1:-1:-1;1943:10:0;1951:2;1943:5;:10;:::i;:::-;1930:24;;:2;:24;:::i;:::-;1917:39;;1900:6;1907;1900:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1971:11:0;1980:2;1971:11;;:::i;:::-;;;1840:154;;54019:206;54112:4;54136:41;;;54151:26;54136:41;;:81;;;54181:36;54205:11;54181:23;:36::i;52596:241::-;52706:45;52733:4;52739:2;52743:7;52706:26;:45::i;:::-;50882:7;;;;52772:9;52764:65;;;;;;;11904:2:1;52764:65:0;;;11886:21:1;11943:2;11923:18;;;11916:30;11982:34;11962:18;;;11955:62;12053:13;12033:18;;;12026:41;12084:19;;52764:65:0;11876:233:1;8988:217:0;9073:4;9097:47;;;9112:32;9097:47;;:100;;-1:-1:-1;4838:25:0;4823:40;;;;9161:36;4714:157;44589:555;44761:18;;;44757:187;;44796:40;44828:7;45971:10;:17;;45944:24;;;;:15;:24;;;;;:44;;;45999:24;;;;;;;;;;;;45867:164;44796:40;44757:187;;;44866:2;44858:10;;:4;:10;;;44854:90;;44885:47;44918:4;44924:7;44885:32;:47::i;:::-;44958:16;;;44954:183;;44991:45;45028:7;44991:36;:45::i;44954:183::-;45064:4;45058:10;;:2;:10;;;45054:83;;45085:40;45113:2;45117:7;45085:27;:40::i;46658:988::-;46924:22;46974:1;46949:22;46966:4;46949:16;:22::i;:::-;:26;;;;:::i;:::-;46986:18;47007:26;;;:17;:26;;;;;;46924:51;;-1:-1:-1;47140:28:0;;;47136:328;;47207:18;;;47185:19;47207:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47258:30;;;;;;:44;;;47375:30;;:17;:30;;;;;:43;;;47136:328;-1:-1:-1;47560:26:0;;;;:17;:26;;;;;;;;47553:33;;;47604:18;;;;;;:12;:18;;;;;:34;;;;;;;47597:41;46658:988::o;47941:1079::-;48219:10;:17;48194:22;;48219:21;;48239:1;;48219:21;:::i;:::-;48251:18;48272:24;;;:15;:24;;;;;;48645:10;:26;;48194:46;;-1:-1:-1;48272:24:0;;48194:46;;48645:26;;;;;;:::i;:::-;;;;;;;;;48623:48;;48709:11;48684:10;48695;48684:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48789:28;;;:15;:28;;;;;;;:41;;;48961:24;;;;;48954:31;48996:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48012:1008;;;47941:1079;:::o;45445:221::-;45530:14;45547:20;45564:2;45547:16;:20::i;:::-;45578:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45623:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45445:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:348::-;267:8;277:6;331:3;324:4;316:6;312:17;308:27;298:2;;349:1;346;339:12;298:2;-1:-1:-1;372:20:1;;415:18;404:30;;401:2;;;447:1;444;437:12;401:2;484:4;476:6;472:17;460:29;;536:3;529:4;520:6;512;508:19;504:30;501:39;498:2;;;553:1;550;543:12;568:186;627:6;680:2;668:9;659:7;655:23;651:32;648:2;;;696:1;693;686:12;648:2;719:29;738:9;719:29;:::i;759:260::-;827:6;835;888:2;876:9;867:7;863:23;859:32;856:2;;;904:1;901;894:12;856:2;927:29;946:9;927:29;:::i;:::-;917:39;;975:38;1009:2;998:9;994:18;975:38;:::i;:::-;965:48;;846:173;;;;;:::o;1024:328::-;1101:6;1109;1117;1170:2;1158:9;1149:7;1145:23;1141:32;1138:2;;;1186:1;1183;1176:12;1138:2;1209:29;1228:9;1209:29;:::i;:::-;1199:39;;1257:38;1291:2;1280:9;1276:18;1257:38;:::i;:::-;1247:48;;1342:2;1331:9;1327:18;1314:32;1304:42;;1128:224;;;;;:::o;1357:1197::-;1452:6;1460;1468;1476;1529:3;1517:9;1508:7;1504:23;1500:33;1497:2;;;1546:1;1543;1536:12;1497:2;1569:29;1588:9;1569:29;:::i;:::-;1559:39;;1617:38;1651:2;1640:9;1636:18;1617:38;:::i;:::-;1607:48;;1702:2;1691:9;1687:18;1674:32;1664:42;;1757:2;1746:9;1742:18;1729:32;1780:18;1821:2;1813:6;1810:14;1807:2;;;1837:1;1834;1827:12;1807:2;1875:6;1864:9;1860:22;1850:32;;1920:7;1913:4;1909:2;1905:13;1901:27;1891:2;;1942:1;1939;1932:12;1891:2;1978;1965:16;2000:2;1996;1993:10;1990:2;;;2006:18;;:::i;:::-;2140:2;2134:9;2202:4;2194:13;;2045:66;2190:22;;;2214:2;2186:31;2182:40;2170:53;;;2238:18;;;2258:22;;;2235:46;2232:2;;;2284:18;;:::i;:::-;2324:10;2320:2;2313:22;2359:2;2351:6;2344:18;2399:7;2394:2;2389;2385;2381:11;2377:20;2374:33;2371:2;;;2420:1;2417;2410:12;2371:2;2476;2471;2467;2463:11;2458:2;2450:6;2446:15;2433:46;2521:1;2516:2;2511;2503:6;2499:15;2495:24;2488:35;2542:6;2532:16;;;;;;;1487:1067;;;;;;;:::o;2559:689::-;2654:6;2662;2670;2723:2;2711:9;2702:7;2698:23;2694:32;2691:2;;;2739:1;2736;2729:12;2691:2;2762:29;2781:9;2762:29;:::i;:::-;2752:39;;2842:2;2831:9;2827:18;2814:32;2865:18;2906:2;2898:6;2895:14;2892:2;;;2922:1;2919;2912:12;2892:2;2960:6;2949:9;2945:22;2935:32;;3005:7;2998:4;2994:2;2990:13;2986:27;2976:2;;3027:1;3024;3017:12;2976:2;3067;3054:16;3093:2;3085:6;3082:14;3079:2;;;3109:1;3106;3099:12;3079:2;3162:7;3157:2;3147:6;3144:1;3140:14;3136:2;3132:23;3128:32;3125:45;3122:2;;;3183:1;3180;3173:12;3122:2;3214;3210;3206:11;3196:21;;3236:6;3226:16;;;;;2681:567;;;;;:::o;3253:347::-;3318:6;3326;3379:2;3367:9;3358:7;3354:23;3350:32;3347:2;;;3395:1;3392;3385:12;3347:2;3418:29;3437:9;3418:29;:::i;:::-;3408:39;;3497:2;3486:9;3482:18;3469:32;3544:5;3537:13;3530:21;3523:5;3520:32;3510:2;;3566:1;3563;3556:12;3510:2;3589:5;3579:15;;;3337:263;;;;;:::o;3605:254::-;3673:6;3681;3734:2;3722:9;3713:7;3709:23;3705:32;3702:2;;;3750:1;3747;3740:12;3702:2;3773:29;3792:9;3773:29;:::i;:::-;3763:39;3849:2;3834:18;;;;3821:32;;-1:-1:-1;;;3692:167:1:o;3864:553::-;3953:6;3961;3969;3977;4030:2;4018:9;4009:7;4005:23;4001:32;3998:2;;;4046:1;4043;4036:12;3998:2;4069:29;4088:9;4069:29;:::i;:::-;4059:39;;4145:2;4134:9;4130:18;4117:32;4107:42;;4200:2;4189:9;4185:18;4172:32;4227:18;4219:6;4216:30;4213:2;;;4259:1;4256;4249:12;4213:2;4298:59;4349:7;4340:6;4329:9;4325:22;4298:59;:::i;:::-;3988:429;;;;-1:-1:-1;4376:8:1;-1:-1:-1;;;;3988:429:1:o;4422:180::-;4481:6;4534:2;4522:9;4513:7;4509:23;4505:32;4502:2;;;4550:1;4547;4540:12;4502:2;-1:-1:-1;4573:23:1;;4492:110;-1:-1:-1;4492:110:1:o;4607:254::-;4675:6;4683;4736:2;4724:9;4715:7;4711:23;4707:32;4704:2;;;4752:1;4749;4742:12;4704:2;4788:9;4775:23;4765:33;;4817:38;4851:2;4840:9;4836:18;4817:38;:::i;4866:245::-;4924:6;4977:2;4965:9;4956:7;4952:23;4948:32;4945:2;;;4993:1;4990;4983:12;4945:2;5032:9;5019:23;5051:30;5075:5;5051:30;:::i;5116:249::-;5185:6;5238:2;5226:9;5217:7;5213:23;5209:32;5206:2;;;5254:1;5251;5244:12;5206:2;5286:9;5280:16;5305:30;5329:5;5305:30;:::i;5370:411::-;5441:6;5449;5502:2;5490:9;5481:7;5477:23;5473:32;5470:2;;;5518:1;5515;5508:12;5470:2;5558:9;5545:23;5591:18;5583:6;5580:30;5577:2;;;5623:1;5620;5613:12;5577:2;5662:59;5713:7;5704:6;5693:9;5689:22;5662:59;:::i;:::-;5740:8;;5636:85;;-1:-1:-1;5460:321:1;-1:-1:-1;;;;5460:321:1:o;5971:248::-;6039:6;6047;6100:2;6088:9;6079:7;6075:23;6071:32;6068:2;;;6116:1;6113;6106:12;6068:2;-1:-1:-1;;6139:23:1;;;6209:2;6194:18;;;6181:32;;-1:-1:-1;6058:161:1:o;6224:316::-;6265:3;6303:5;6297:12;6330:6;6325:3;6318:19;6346:63;6402:6;6395:4;6390:3;6386:14;6379:4;6372:5;6368:16;6346:63;:::i;:::-;6454:2;6442:15;6459:66;6438:88;6429:98;;;;6529:4;6425:109;;6273:267;-1:-1:-1;;6273:267:1:o;6545:470::-;6724:3;6762:6;6756:13;6778:53;6824:6;6819:3;6812:4;6804:6;6800:17;6778:53;:::i;:::-;6894:13;;6853:16;;;;6916:57;6894:13;6853:16;6950:4;6938:17;;6916:57;:::i;:::-;6989:20;;6732:283;-1:-1:-1;;;;6732:283:1:o;7020:443::-;7252:3;7290:6;7284:13;7306:53;7352:6;7347:3;7340:4;7332:6;7328:17;7306:53;:::i;:::-;7420:7;7381:16;;7406:22;;;-1:-1:-1;7455:1:1;7444:13;;7260:203;-1:-1:-1;7260:203:1:o;7468:786::-;7879:25;7874:3;7867:38;7849:3;7934:6;7928:13;7950:62;8005:6;8000:2;7995:3;7991:12;7984:4;7976:6;7972:17;7950:62;:::i;:::-;8076:19;8071:2;8031:16;;;8063:11;;;8056:40;8121:13;;8143:63;8121:13;8192:2;8184:11;;8177:4;8165:17;;8143:63;:::i;:::-;8226:17;8245:2;8222:26;;7857:397;-1:-1:-1;;;;7857:397:1:o;8490:511::-;8684:4;8713:42;8794:2;8786:6;8782:15;8771:9;8764:34;8846:2;8838:6;8834:15;8829:2;8818:9;8814:18;8807:43;;8886:6;8881:2;8870:9;8866:18;8859:34;8929:3;8924:2;8913:9;8909:18;8902:31;8950:45;8990:3;8979:9;8975:19;8967:6;8950:45;:::i;:::-;8942:53;8693:308;-1:-1:-1;;;;;;8693:308:1:o;9682:219::-;9831:2;9820:9;9813:21;9794:4;9851:44;9891:2;9880:9;9876:18;9868:6;9851:44;:::i;9906:1430::-;10100:2;10089:9;10082:21;10063:4;10123:1;10156:6;10150:13;10186:3;10208:1;10236:9;10232:2;10228:18;10218:28;;10296:2;10285:9;10281:18;10318;10308:2;;10362:4;10354:6;10350:17;10340:27;;10308:2;10388;10436;10428:6;10425:14;10405:18;10402:38;10399:2;;;10475:77;10470:3;10463:90;10576:4;10573:1;10566:15;10606:4;10601:3;10594:17;10399:2;10691;10676:18;;22219:19;;;22262:14;;;10719:18;10746:158;;;;10918:1;10913:315;;;;10712:516;;10746:158;10794:66;10783:9;10779:82;10774:3;10767:95;10891:2;10886:3;10882:12;10875:19;;10746:158;;10913:315;22080:1;22073:14;;;22117:4;22104:18;;11008:1;11022:165;11036:6;11033:1;11030:13;11022:165;;;11114:14;;11101:11;;;11094:35;11157:16;;;;11051:10;;11022:165;;;11207:11;;;-1:-1:-1;;10712:516:1;;;11273:9;11268:3;11264:19;11259:2;11248:9;11244:18;11237:47;;;;;;11301:29;11326:3;11318:6;11301:29;:::i;:::-;11293:37;10072:1264;-1:-1:-1;;;;;10072:1264:1:o;22287:128::-;22327:3;22358:1;22354:6;22351:1;22348:13;22345:2;;;22364:18;;:::i;:::-;-1:-1:-1;22400:9:1;;22335:80::o;22420:120::-;22460:1;22486;22476:2;;22491:18;;:::i;:::-;-1:-1:-1;22525:9:1;;22466:74::o;22545:228::-;22585:7;22711:1;22643:66;22639:74;22636:1;22633:81;22628:1;22621:9;22614:17;22610:105;22607:2;;;22718:18;;:::i;:::-;-1:-1:-1;22758:9:1;;22597:176::o;22778:125::-;22818:4;22846:1;22843;22840:8;22837:2;;;22851:18;;:::i;:::-;-1:-1:-1;22888:9:1;;22827:76::o;22908:258::-;22980:1;22990:113;23004:6;23001:1;22998:13;22990:113;;;23080:11;;;23074:18;23061:11;;;23054:39;23026:2;23019:10;22990:113;;;23121:6;23118:1;23115:13;23112:2;;;-1:-1:-1;;23156:1:1;23138:16;;23131:27;22961:205::o;23171:196::-;23210:3;23238:5;23228:2;;23247:18;;:::i;:::-;-1:-1:-1;23294:66:1;23283:78;;23218:149::o;23372:437::-;23451:1;23447:12;;;;23494;;;23515:2;;23569:4;23561:6;23557:17;23547:27;;23515:2;23622;23614:6;23611:14;23591:18;23588:38;23585:2;;;23659:77;23656:1;23649:88;23760:4;23757:1;23750:15;23788:4;23785:1;23778:15;23585:2;;23427:382;;;:::o;23814:195::-;23853:3;23884:66;23877:5;23874:77;23871:2;;;23954:18;;:::i;:::-;-1:-1:-1;24001:1:1;23990:13;;23861:148::o;24014:112::-;24046:1;24072;24062:2;;24077:18;;:::i;:::-;-1:-1:-1;24111:9:1;;24052:74::o;24131:184::-;24183:77;24180:1;24173:88;24280:4;24277:1;24270:15;24304:4;24301:1;24294:15;24320:184;24372:77;24369:1;24362:88;24469:4;24466:1;24459:15;24493:4;24490:1;24483:15;24509:184;24561:77;24558:1;24551:88;24658:4;24655:1;24648:15;24682:4;24679:1;24672:15;24698:184;24750:77;24747:1;24740:88;24847:4;24844:1;24837:15;24871:4;24868:1;24861:15;24887:184;24939:77;24936:1;24929:88;25036:4;25033:1;25026:15;25060:4;25057:1;25050:15;25076:177;25161:66;25154:5;25150:78;25143:5;25140:89;25130:2;;25243:1;25240;25233:12

Swarm Source

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