Abstract Testnet

ENTest (ENT)

Overview

TokenID

5

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
TokenID: 5
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
EvertNFT

Compiler Version
v0.8.24+commit.e11b9ed9

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 16 : EvertNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract EvertNFT is ERC721Enumerable, AccessControl, Ownable {
    using Strings for uint256;
    using MerkleProof for bytes32[];

    uint256 public constant maxSupply = 1250;
    uint256 public price;
    uint256 public tempMaxSupply;
    uint256 public maxMintAmount;
    bool public paused;
    bool public publicSalePaused;
    bool public directMintPaused;
    string private _baseTokenURI;
    uint256 private _nextTokenId;

    mapping(uint256 => uint256) public ecOrderedTokenId;
    mapping(uint256 => uint256) public ecOrderNo;
    mapping(address => uint256) public alMintedCount;

    bytes32 private _merkleRoot;
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        bool _paused,
        address _minterAddress
    ) ERC721(_name, _symbol) {
        _baseTokenURI = _initBaseURI;
        tempMaxSupply = maxSupply;
        paused = _paused;
        _nextTokenId = 1;
        maxMintAmount = 5;
        publicSalePaused = false;
        directMintPaused = true;
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(MINTER_ROLE, _minterAddress);
    }

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

    function prepaidMint(address _user, uint256 _quantity, uint256 _ecOrderNo) external onlyRole(MINTER_ROLE) {
        require(!paused, "paused");
        require(!publicSalePaused, "p-sale paused");

        _execMint(_user, _quantity, _ecOrderNo);
    }

    function alPrepaidMint(address _user, uint256 _quantity, uint256 _ecOrderNo, bytes32[] memory _proof) external onlyRole(MINTER_ROLE) {
        require(!paused, "paused");

        require(isAllowedAddress(_user, _proof),"not in AL");
        require(isWithinMaxMint(_user, _quantity), "over max for AL");

        _execMint(_user, _quantity, _ecOrderNo);
        alMintedCount[_user] += _quantity;
    }

    function directMint(uint256 _quantity, uint256 _ecOrderNo) external payable {
        require(!paused, "paused");
        require(!publicSalePaused, "p-sale paused");
        require(!directMintPaused, "mint paused");
        require(price > 0, "price not set");
        require(msg.value >= price * _quantity, "funds shorted");

        _execMint(msg.sender, _quantity, _ecOrderNo);
    }

    function _execMint(address _user, uint256 _quantity, uint256 _ecOrderNo) private {
        require(_ecOrderNo > 0, "no orderNo");
        require(_quantity > 0, "no quantity");
        require(_quantity <= maxMintAmount, "over max per buy");
        require(totalSupply() + _quantity <= maxSupply, "over total max");
        require(totalSupply() + _quantity <= tempMaxSupply, "over temp max");

        uint256 currentTokenId = _nextTokenId;
        for (uint256 i = 1; i <= _quantity; i++) {
            _safeMint(_user, currentTokenId);

            ecOrderNo[currentTokenId] = _ecOrderNo;
            currentTokenId++;
        }
        ecOrderedTokenId[_ecOrderNo] = _nextTokenId;
        _nextTokenId = currentTokenId;
    }

    function isAllowedAddress(address _user, bytes32[] memory _proof) public view returns (bool) {
        return _proof.verify(_merkleRoot, keccak256(abi.encodePacked(_user)));
    }

    function isWithinMaxMint(address _user, uint256 _addingMintNum) public view returns (bool) {
        return alMintedCount[_user] + _addingMintNum <= maxMintAmount;
    }

    function isSoldOut() public view returns (bool) {
        return
            totalSupply() >= maxSupply ||
            totalSupply() >= tempMaxSupply;
    }

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

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

        return bytes(_baseTokenURI).length != 0 ? string(abi.encodePacked(_baseTokenURI, _tokenId.toString(), '.json')) : '';
    }

    /**
     * Only Owner Functions
     */
    function adminMint(address _user, uint256 _quantity, uint256 _ecOrderNo) external onlyOwner {
        _execMint(_user, _quantity, _ecOrderNo);
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function setTempMaxSupply(uint256 _newTempMaxSupply) external onlyOwner {
        tempMaxSupply = _newTempMaxSupply;
    }

    function setMaxMintAmount(uint256 _newMaxMintAmount) external onlyOwner {
        maxMintAmount = _newMaxMintAmount;
    }

    function setBaseURI(string calldata _newBaseURI) external onlyOwner {
        _baseTokenURI = _newBaseURI;
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function pausePublicSale(bool _state) external onlyOwner {
        publicSalePaused = _state;
    }

    function pauseDirectMint(bool _state) external onlyOwner {
        directMintPaused = _state;
    }

    function setAlRoot(bytes32 _newRoot) external onlyOwner {
        _merkleRoot = _newRoot;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "failed");
    }
}

File 2 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 16 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 5 of 16 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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

File 6 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @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 7 of 16 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 8 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 9 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden 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 {
        _setApprovalForAll(_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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

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

File 10 of 16 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 11 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

    /**
     * @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 12 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 14 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 15 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 16 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi",
        "metadata"
      ],
      "": [
        "ast"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": true,
  "libraries": {}
}

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"bool","name":"_paused","type":"bool"},{"internalType":"address","name":"_minterAddress","type":"address"}],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","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":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256","name":"_ecOrderNo","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256","name":"_ecOrderNo","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"alPrepaidMint","outputs":[],"stateMutability":"nonpayable","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":"_quantity","type":"uint256"},{"internalType":"uint256","name":"_ecOrderNo","type":"uint256"}],"name":"directMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"directMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ecOrderNo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ecOrderedTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_user","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"isAllowedAddress","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":[],"name":"isSoldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_addingMintNum","type":"uint256"}],"name":"isWithinMaxMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pauseDirectMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256","name":"_ecOrderNo","type":"uint256"}],"name":"prepaidMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setAlRoot","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTempMaxSupply","type":"uint256"}],"name":"setTempMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tempMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000653f529845a8859a4543c1a57bea96374b7359693e561bde2fe41215b600000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f162d41ee0633d0b2e8f0609f8ed219ee0c30760000000000000000000000000000000000000000000000000000000000000006454e5465737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003454e540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004068747470733a2f2f617277656176652e6e65742f505a52375a61326472716a646d46524b4d434461516438327557533954546f665242767a656c4c6e59346f2f

Deployed Bytecode

0x0004000000000002000a00000000000200000060031002700000058f04300197000300000041035500020000000103550000058f0030019d0000008003000039000000400030043f0000000100200190000000220000c13d000000040040008c000000410000413d000000000201043b000000e0022002700000059f0020009c000000430000213d000005c30020009c000000770000213d000005d50020009c0000018d0000a13d000005d60020009c000002670000a13d000005d70020009c000002c90000213d000005da0020009c000003b90000613d000005db0020009c000000410000c13d0000000001000416000000000001004b000000410000c13d0000000801000039000006e90000013d0000000002000416000000000002004b000000410000c13d0000001f0240003900000590022001970000008002200039000000400020043f0000001f0540018f00000591064001980000008002600039000000320000613d000000000701034f000000007807043c0000000003830436000000000023004b0000002e0000c13d000000000005004b0000003f0000613d000000000161034f0000000303500210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000120435000000a00040008c0000005e0000813d00000000010000190000163b00010430000005a00020009c0000008f0000213d000005b20020009c000001ad0000a13d000005b30020009c000002940000a13d000005b40020009c000002df0000213d000005b70020009c000003cf0000613d000005b80020009c000000410000c13d000000440040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000002402100370000000000202043b000a00000002001d000005940020009c000000410000213d0000000401100370000000000101043b000000000010043f0000000a01000039000000a90000013d000000800300043d000005920030009c000000410000213d0000001f01300039000000000041004b000000000200001900000593020080410000059301100197000000000001004b00000000050000190000059305004041000005930010009c000000000502c019000000000005004b000000410000c13d00000080013000390000000002010433000005920020009c000000b20000a13d0000061801000041000000000010043f0000004101000039000000040010043f00000619010000410000163b00010430000005c40020009c000001be0000a13d000005c50020009c000002a30000a13d000005c60020009c000002e80000213d000005c90020009c000003e30000613d000005ca0020009c000000410000c13d000000240040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000401100370000000000101043b0000000802000039000000000302041a000000000031004b000007180000813d000000000020043f0000060d0110009a000006e90000013d000005a10020009c000001d20000a13d000005a20020009c000002bc0000a13d000005a30020009c000003a70000213d000005a60020009c000003e80000613d000005a70020009c000000410000c13d000000440040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000402100370000000000202043b000005940020009c000000410000213d0000002401100370000000000101043b000a00000001001d000005940010009c000000410000213d000000000020043f0000000501000039000000200010043f000000400200003900000000010000191639161a0000040f0000000a0200002916390ce70000040f000000000101041a000000ff001001900000069b0000013d0000001f0120003900000631011001970000003f011000390000063101100197000000400600043d0000000005160019000000000065004b00000000010000390000000101004039000005920050009c000000710000213d0000000100100190000000710000c13d0000008001400039000000400050043f000a00000006001d0000000005260436000900000005001d000000a0033000390000000005320019000000000015004b000000410000213d000000000002004b0000000908000029000000d30000613d000000000500001900000000065800190000000007350019000000000707043300000000007604350000002005500039000000000025004b000000cc0000413d0000000a0220002900000020022000390000000000020435000000a00300043d000005920030009c000000410000213d0000001f02300039000000000042004b000000000500001900000593050080410000059302200197000000000002004b00000000060000190000059306004041000005930020009c000000000605c019000000000006004b000000410000c13d00000080023000390000000002020433000005920020009c000000710000213d0000001f0520003900000631055001970000003f055000390000063105500197000000400700043d0000000005570019000000000075004b00000000060000390000000106004039000005920050009c000000710000213d0000000100600190000000710000c13d000000400050043f000800000007001d0000000005270436000700000005001d000000a0033000390000000005320019000000000015004b000000410000213d000000000002004b0000000708000029000001090000613d000000000500001900000000065800190000000007350019000000000707043300000000007604350000002005500039000000000025004b000001020000413d000000080220002900000020022000390000000000020435000000c00300043d000005920030009c000000410000213d0000001f02300039000000000042004b000000000400001900000593040080410000059302200197000000000002004b00000000050000190000059305004041000005930020009c000000000504c019000000000005004b000000410000c13d00000080023000390000000002020433000005920020009c000000710000213d0000001f0420003900000631044001970000003f044000390000063104400197000000400600043d0000000004460019000000000064004b00000000050000390000000105004039000005920040009c000000710000213d0000000100500190000000710000c13d000000400040043f000600000006001d0000000004260436000500000004001d000000a0033000390000000004320019000000000014004b000000410000213d000000000002004b00000005060000290000013f0000613d000000000100001900000000041600190000000005310019000000000505043300000000005404350000002001100039000000000021004b000001380000413d000000060120002900000020011000390000000000010435000000e00200043d000000000002004b0000000001000039000000010100c039000400000002001d000000000012004b000000410000c13d000001000100043d000300000001001d000005940010009c000000410000213d0000000a010000290000000001010433000200000001001d000005920010009c000000710000213d000000000100041a000000010210019000000001011002700000007f0110618f000100000001001d0000001f0010008c00000000010000390000000101002039000000000012004b0000040f0000c13d0000000101000029000000200010008c0000017a0000413d000000000000043f00000000010004140000058f0010009c0000058f01008041000000c00110021000000595011001c70000801002000039163916340000040f0000000100200190000000410000613d00000002030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000017a0000813d000000000002041b0000000102200039000000000012004b000001760000413d00000002010000290000001f0010008c00000a5e0000a13d000000000000043f00000000010004140000058f0010009c0000058f01008041000000c00110021000000595011001c70000801002000039163916340000040f0000000100200190000000410000613d000000200200008a0000000202200180000000000101043b00000a8c0000c13d000000200300003900000a990000013d000005df0020009c000001e60000213d000005e30020009c000004710000613d000005e40020009c000005d60000613d000005e50020009c000000410000c13d000000240040008c000000410000413d0000000001000416000000000001004b000000410000c13d16390c520000040f0000000b02000039000000000202041a00000594022001970000000003000411000000000032004b00000000020000390000000102006039000a00000001001d000000000102001916390cf70000040f0000000f01000039000000000201041a00000632022001970000000a0000006b000000010220c1bf000000000021041b00000000010000190000163a0001042e000005bc0020009c0000020a0000213d000005c00020009c000004880000613d000005c10020009c000005ea0000613d000005c20020009c000000410000c13d000000240040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000401100370000000000101043b16390d820000040f0000069d0000013d000005ce0020009c000002280000213d000005d20020009c0000048f0000613d000005d30020009c000005f10000613d000005d40020009c000000410000c13d0000000001000416000000000001004b000000410000c13d0000000801000039000000000101041a000004e10010008c000007550000a13d0000000101000039000000010110018f000000800010043f000005eb010000410000163a0001042e000005ab0020009c0000023f0000213d000005af0020009c0000049e0000613d000005b00020009c000005fb0000613d000005b10020009c000000410000c13d000000240040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000401100370000000000101043b000005940010009c000000410000213d000000000010043f0000001401000039000006e50000013d000005e00020009c000004a40000613d000005e10020009c0000061a0000613d000005e20020009c000000410000c13d0000000001000416000000000001004b000000410000c13d000000000200041a000000010320019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000442013f00000001004001900000040f0000c13d000000800010043f000000000003004b0000073f0000613d000000000000043f000000000001004b0000000002000019000007440000613d00000621030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000002020000413d000007440000013d000005bd0020009c000004be0000613d000005be0020009c000006250000613d000005bf0020009c000000410000c13d000000240040008c000000410000413d0000000001000416000000000001004b000000410000c13d16390c520000040f0000000b02000039000000000202041a00000594022001970000000003000411000000000032004b00000000020000390000000102006039000a00000001001d000000000102001916390cf70000040f0000000f01000039000000000201041a00000633022001970000000a0000006b000001000220c1bf000000000021041b00000000010000190000163a0001042e000005cf0020009c000004c90000613d000005d00020009c0000063a0000613d000005d10020009c000000410000c13d000000440040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000002402100370000000000302043b000005940030009c000000410000213d0000000002000411000000000023004b0000075e0000c13d0000000401100370000000000101043b163915a80000040f00000000010000190000163a0001042e000005ac0020009c0000058e0000613d000005ad0020009c000006550000613d000005ae0020009c000000410000c13d000000240040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000401100370000000000101043b000a00000001001d000000000010043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000101041a00000594001001980000076a0000c13d000000400100043d0000006402100039000005f30300004100000000003204350000004402100039000005f403000041000000000032043500000024021000390000002f030000390000084b0000013d000005dc0020009c000006690000613d000005dd0020009c000006720000613d000005de0020009c000000410000c13d000000440040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000402100370000000000202043b000a00000002001d000005940020009c000000410000213d0000002401100370000000000101043b000900000001001d000000000010043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000101041a0000059401100198000007b80000c13d000000400100043d00000064021000390000061f030000410000000000320435000000440210003900000620030000410000000000320435000000240210003900000029030000390000084b0000013d000005b90020009c000006860000613d000005ba0020009c000006a40000613d000005bb0020009c000000410000c13d0000000001000416000000000001004b000000410000c13d0000000b01000039000000000101041a0000059401100197000000800010043f000005eb010000410000163a0001042e000005cb0020009c000006be0000613d000005cc0020009c000006dc0000613d000005cd0020009c000000410000c13d0000000001000416000000000001004b000000410000c13d000000000104001916390c7f0000040f000a00000001001d000900000002001d000800000003001d000000400100043d000700000001001d16390c910000040f000000070400002900000000000404350000000a010000290000000902000029000000080300002916390e1f0000040f00000000010000190000163a0001042e000005a80020009c000006ed0000613d000005a90020009c000006f40000613d000005aa0020009c000000410000c13d0000000001000416000000000001004b000000410000c13d000004e201000039000000800010043f000005eb010000410000163a0001042e000005d80020009c000003fc0000613d000005d90020009c000000410000c13d0000000001000416000000000001004b000000410000c13d000000000104001916390c7f0000040f000a00000001001d000900000002001d0000000002030019000800000003001d00000000010004111639137a0000040f16390d6b0000040f0000000a01000029000000090200002900000008030000291639140f0000040f00000000010000190000163a0001042e000005b50020009c000004010000613d000005b60020009c000000410000c13d0000000001000416000000000001004b000000410000c13d0000000c01000039000006e90000013d000005c70020009c000004150000613d000005c80020009c000000410000c13d000000840040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000402100370000000000202043b000900000002001d000005940020009c000000410000213d0000002402100370000000000202043b000800000002001d0000006402100370000000000202043b000005920020009c000000410000213d0000002303200039000000000043004b000000410000813d0000000403200039000000000331034f000000000503043b000005920050009c000000710000213d00000005035002100000003f06300039000005fd06600197000005f60060009c000000710000213d0000008006600039000000400060043f000000800050043f00000024022000390000000003230019000000000043004b000000410000213d000000000005004b0000031b0000613d0000008004000039000000000521034f000000000505043b000000200440003900000000005404350000002002200039000000000032004b000003140000413d00000000010004110000059401100197000000000010043f000005fe01000041000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000400200043d000000000101043b000000000101041a000000ff00100190000009af0000c13d000006030020009c000000710000213d0000006004200039000000400040043f0000002a01000039000000000112043600000000030000310000000203300367000000000503034f0000000006010019000000005705043c0000000006760436000000000046004b000003380000c13d0000000004010433000005ed04400197000005ee044001c7000000000041043500000021042000390000000005040433000005ed0550019700000604055001c700000000005404350000002904000039000000000600041100000000050600190000000006020433000000000046004b000009860000a13d00000000061400190000000007060433000005ed077001970000000308500210000000780880018f000006050880021f0000060608800197000000000787019f00000000007604350000000406500270000000010440008a000000010040008c000003470000213d000000100050008c00000a4c0000813d000000400400043d000a00000004001d000005f60040009c000000710000213d0000000a060000290000008005600039000000400050043f000000420400003900000000044604360000000006040019000000003703043c0000000006760436000000000056004b000003640000c13d0000000003040433000005ed03300197000005ee033001c700000000003404350000000a0900002900000021039000390000000005030433000005ed0550019700000604055001c700000000005304350000059d06000041000000410300003900000000050600190000000006090433000000000036004b000009860000a13d00000000064300190000000007060433000005ed077001970000000308500210000000780880018f000006050880021f0000060608800197000000000787019f00000000007604350000000406500270000000010330008a000000010030008c000003740000213d0000000f0050008c00000a4c0000213d000000400500043d000900000005001d0000002003500039000006080400004100000000004304350000000003020433000800000003001d000000370250003916390c5d0000040f0000000802000029000000090120002900000037021000390000060903000041000000000032043500000048021000390000000a0100002916390f9f0000040f00000009030000290000000002310049000000200120008a0000000000130435000000000103001916390c9c0000040f000005e701000041000000400200043d000a00000002001d00000000001204350000000401200039000000090200002916390c6a0000040f0000000a02000029000005850000013d000005a40020009c000004540000613d000005a50020009c000000410000c13d000000440040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000402100370000000000302043b000005940030009c000000410000213d0000002401100370000000000201043b000000000103001916390fad0000040f0000069a0000013d0000000001000416000000000001004b000000410000c13d000000000104001916390c420000040f000a00000001001d000900000002001d000800000003001d163911ff0000040f0000000f01000039000000000101041a000700000001001d000000ff001001900000000001000039000000010100603916390d0a0000040f00000007010000290000ff00001001900000000001000039000000010100603916390d1e0000040f000004820000013d000000240040008c000000410000413d0000000001000416000000000001004b000000410000c13d0000000b01000039000000000101041a00000594011001970000000002000411000000000021004b0000000001000039000000010100603916390cf70000040f00000004010000390000000201100367000000000101043b0000000c02000039000000000012041b00000000010000190000163a0001042e0000000001000416000000000001004b000000410000c13d0000000d01000039000006e90000013d000000240040008c000000410000413d0000000001000416000000000001004b000000410000c13d0000000b01000039000000000101041a00000594011001970000000002000411000000000021004b0000000001000039000000010100603916390cf70000040f00000004010000390000000201100367000000000101043b0000001502000039000000000012041b00000000010000190000163a0001042e0000000001000416000000000001004b000000410000c13d0000000e01000039000006e90000013d0000000001000416000000000001004b000000410000c13d0000000103000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000007240000613d0000061801000041000000000010043f0000002201000039000000040010043f00000619010000410000163b00010430000000240040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000402100370000000000302043b000005920030009c000000410000213d0000002302300039000000000042004b000000410000813d0000000406300039000000000261034f000000000202043b000005920020009c000000410000213d00000024053000390000000003520019000000000043004b000000410000213d0000000b03000039000000000303041a00000594033001970000000004000411000000000043004b0000070f0000c13d0000001003000039000000000703041a000000010070019000000001047002700000007f0440618f0000001f0040008c00000000080000390000000108002039000000000787013f00000001007001900000040f0000c13d000000200040008c0000044c0000413d000000000030043f0000001f0720003900000005077002700000060a0770009a000000200020008c000005f0070040410000001f0440003900000005044002700000060a0440009a000000000047004b0000044c0000813d000000000007041b0000000107700039000000000047004b000004480000413d0000001f0020008c000009740000a13d000000000030043f000006310620019800000a120000c13d000005f004000041000000000700001900000a1c0000013d000000240040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000401100370000000000601043b000005940060009c000000410000213d0000000b01000039000000000201041a00000594032001970000000005000411000000000053004b0000070f0000c13d000000000006004b000007c40000c13d000005e701000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f000005e801000041000000c40010043f000005e901000041000000e40010043f000005ea010000410000163b000104300000000001000416000000000001004b000000410000c13d000000000104001916390c420000040f0000000b04000039000000000404041a00000594044001970000000005000411000000000054004b00000000040000390000000104006039000a00000001001d000900000002001d000800000003001d000000000104001916390cf70000040f0000000a010000290000000902000029000000080300002916390fd00000040f00000000010000190000163a0001042e0000000001000416000000000001004b000000410000c13d0000000f01000039000000000101041a000005fc00100198000006200000013d000000240040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000401100370000000000101043b000000000010043f0000000a01000039000000200010043f000000400200003900000000010000191639161a0000040f0000000101100039000006e90000013d0000000001000416000000000001004b000000410000c13d000000800000043f000005eb010000410000163a0001042e000000440040008c000000410000413d0000000402100370000000000202043b0000000f03000039000000000303041a000000ff00300190000007350000c13d0000ff00003001900000077f0000c13d000005fc00300198000007d00000c13d0000000c03000039000000000403041a000000000004004b000008150000c13d000005e701000041000000800010043f0000002001000039000000840010043f0000000d01000039000000a40010043f0000062501000041000000c40010043f000005f9010000410000163b00010430000000240040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000401100370000000000101043b000005940010009c000000410000213d16390da90000040f0000069d0000013d000000440040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000402100370000000000202043b000a00000002001d0000002401100370000000000101043b000900000001001d000005940010009c000000410000213d0000000a01000029000000000010043f0000000a01000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b0000000101100039000000000101041a000800000001001d000000000010043f0000000a01000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d0000000002000411000000000101043b0000059402200197000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000101041a000000ff00100190000008cd0000c13d000000400100043d000006030010009c000000710000213d00000000070100190000006002700039000000400020043f0000002a01000039000000000417043600000000010000310000000201100367000000000301034f0000000009040019000000003503043c0000000004540436000000000024004b000005110000c13d000000000a0900190000000002090433000005ed02200197000005ee022001c70000000000290435000000000807001900000021027000390000000003020433000005ed0330019700000604033001c700000000003204350000002902000039000000000400041100000000030400190000000004080433000000000024004b000009860000a13d0000000004a200190000000005040433000005ed055001970000000306300210000000780660018f000006050660021f0000060606600197000000000565019f00000000005404350000000404300270000000010220008a000000010020008c000005220000213d000000400800043d000000100030008c00000a3d0000813d000005f60080009c000000710000213d0000008003800039000000400030043f000000420200003900000000022804360000000004020019000000001501043c0000000004540436000000000034004b0000053d0000c13d0000000001020433000005ed01100197000005ee011001c7000000000012043500000021018000390000000003010433000005ed0330019700000604033001c700000000003104350000004101000039000000080400002900000000030400190000000004080433000000000014004b000009860000a13d00000000042100190000000005040433000005ed055001970000000306300210000000780660018f000006050660021f0000060606600197000000000565019f00000000005404350000000404300270000000010110008a000000010010008c0000054c0000213d000000100030008c00000000010000390000000101004039000700000007001d000800000009001d000900000008001d163916060000040f000000400400043d000a00000004001d00000020014000390000060802000041000000000021043500000007010000290000000003010433000700000003001d0000003702400039000000080100002916390c5d0000040f00000007020000290000000a012000290000060902000041000000370310003900000000002304350000004802100039000000090100002916390f9f0000040f0000000a030000290000000002310049000000200120008a0000000000130435000000000103001916390c9c0000040f000005e701000041000000400200043d000900000002001d000000000012043500000004012000390000000a0200002916390c6a0000040f000000090200002900000000012100490000058f0010009c0000058f0100804100000060011002100000058f0020009c0000058f020080410000004002200210000000000121019f0000163b00010430000000840040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000402100370000000000502043b000005940050009c000000410000213d0000002402100370000000000202043b000005940020009c000000410000213d0000006403100370000000000603043b000005920060009c000000410000213d0000002303600039000000000043004b000000410000813d0000000407600039000000000371034f000000000303043b000005920030009c000000710000213d0000001f0930003900000631099001970000003f099000390000063109900197000005f60090009c000000710000213d0000008009900039000000400090043f000000800030043f00000000063600190000002406600039000000000046004b000000410000213d0000002004700039000000000641034f00000631073001980000001f0830018f000000a004700039000005c00000613d000000a009000039000000000a06034f00000000ab0a043c0000000009b90436000000000049004b000005bc0000c13d000000000008004b000005cd0000613d000000000676034f0000000307800210000000000804043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000640435000000a00330003900000000000304350000004401100370000000000301043b0000008004000039000000000105001916390e1f0000040f00000000010000190000163a0001042e000000240040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000401100370000000000201043b0000062600200198000000410000c13d00000001010000390000062702200197000006280020009c000007aa0000a13d000006290020009c000007b10000213d0000062c0020009c0000075b0000613d0000062d0020009c0000075b0000613d000007b50000013d0000000001000416000000000001004b000000410000c13d0000000f01000039000000000101041a000000ff00100190000006200000013d000000240040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000401100370000000000101043b000000000010043f0000001201000039000006e50000013d000000440040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000402100370000000000202043b000a00000002001d000005940020009c000000410000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b000000410000c13d00000000020004110000000a0020006c000007da0000c13d000005e701000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f000005f801000041000000c40010043f000005f9010000410000163b000104300000000001000416000000000001004b000000410000c13d0000000f01000039000000000101041a0000ff00001001900000000001000039000000010100c039000000800010043f000005eb010000410000163a0001042e0000000001000416000000000001004b000000410000c13d0000000b01000039000000000201041a00000594032001970000000005000411000000000053004b0000070f0000c13d0000059602200197000000000021041b00000000010004140000058f0010009c0000058f01008041000000c00110021000000597011001c70000800d02000039000000030300003900000598040000410000000006000019000008090000013d000000440040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000402100370000000000202043b000a00000002001d000005940020009c000000410000213d0000002401100370000000000101043b0000000a02000029000000000002004b000007890000c13d000005e701000041000000800010043f0000002001000039000000840010043f0000002a01000039000000a40010043f0000061601000041000000c40010043f0000061701000041000000e40010043f000005ea010000410000163b00010430000000240040008c000000410000413d0000000001000416000000000001004b000000410000c13d0000000b01000039000000000101041a00000594011001970000000002000411000000000021004b0000000001000039000000010100603916390cf70000040f00000004010000390000000201100367000000000101043b0000000d02000039000000000012041b00000000010000190000163a0001042e000000240040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000401100370000000000101043b16390d320000040f0000069d0000013d000000240040008c000000410000413d0000000001000416000000000001004b000000410000c13d0000000b01000039000000000101041a00000594011001970000000002000411000000000021004b0000000001000039000000010100603916390cf70000040f00000004010000390000000201100367000000000101043b0000000e02000039000000000012041b00000000010000190000163a0001042e000000440040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000402100370000000000202043b000a00000002001d000005940020009c000000410000213d0000002401100370000000000101043b000005920010009c000000410000213d0000000401100039000000000204001916390cae0000040f00000000020100190000000a0100002916390dd00000040f000000000001004b0000000001000039000000010100c039000000400200043d00000000001204350000058f0020009c0000058f020080410000004001200210000005e6011001c70000163a0001042e000000240040008c000000410000413d0000000001000416000000000001004b000000410000c13d16390c520000040f0000000b02000039000000000202041a00000594022001970000000003000411000000000032004b00000000020000390000000102006039000a00000001001d000000000102001916390cf70000040f0000000a0000006b0000059a0100004100000000010060190000000f02000039000000000302041a000005fb03300197000000000113019f000000000012041b00000000010000190000163a0001042e0000000001000416000000000001004b000000410000c13d0000000b01000039000000000101041a00000594011001970000000002000411000000000021004b0000070f0000c13d0000060f0100004100000000001004430000000001000410000000040010044300000000010004140000058f0010009c0000058f01008041000000c00110021000000610011001c70000800a02000039163916340000040f0000000100200190000007a90000613d000000000301043b00000000010004140000000004000411000000040040008c0000080e0000c13d000000010200003900000001010000310000088f0000013d000000240040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000000401100370000000000101043b000000000010043f0000001301000039000000200010043f000000400200003900000000010000191639161a0000040f000000000101041a000000800010043f000005eb010000410000163a0001042e0000000001000416000000000001004b000000410000c13d0000059d01000041000000800010043f000005eb010000410000163a0001042e000000440040008c000000410000413d0000000002000416000000000002004b000000410000c13d0000002402100370000000000202043b000a00000002001d000005940020009c000000410000213d0000000401100370000000000101043b000900000001001d000000000010043f0000000a01000039000000200010043f000000400200003900000000010000191639161a0000040f0000000101100039000000000101041a163912b30000040f00000009010000290000000a02000029163915a80000040f00000000010000190000163a0001042e000005e701000041000000800010043f0000002001000039000000840010043f000000a40010043f0000060e01000041000000c40010043f000005f9010000410000163b00010430000005e701000041000000800010043f0000002001000039000000840010043f0000002c01000039000000a40010043f0000060b01000041000000c40010043f0000060c01000041000000e40010043f000005ea010000410000163b00010430000000800010043f000000000004004b0000073f0000613d000000000030043f000000000001004b0000000002000019000007440000613d000005fa030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000072d0000413d000007440000013d000005e701000041000000800010043f0000002001000039000000840010043f0000000601000039000000a40010043f000005ff01000041000000c40010043f000005f9010000410000163b000104300000063202200197000000a00020043f000000000001004b000000200200003900000000020060390000002002200039000000800100003916390c9c0000040f000000400100043d000a00000001001d000000800200003916390c6a0000040f0000000a0200002900000000012100490000058f0010009c0000058f0100804100000060011002100000058f0020009c0000058f020080410000004002200210000000000121019f0000163a0001042e0000000d02000039000000000202041a000000000021004b00000000010000390000000101008039000000010110018f000000800010043f000005eb010000410000163a0001042e000005e701000041000000800010043f0000002001000039000000840010043f0000002f01000039000000a40010043f0000061201000041000000c40010043f0000061301000041000000e40010043f000005ea010000410000163b000104300000001004000039000000000304041a000000010530019000000001013002700000007f0110618f0000001f0010008c00000000020000390000000102002039000000000223013f00000001002001900000040f0000c13d000000000001004b000008260000c13d000000400200043d000005f20020009c000000710000213d0000002001200039000000400010043f0000000000020435000000400100043d000009ad0000013d000005e701000041000000800010043f0000002001000039000000840010043f0000000d01000039000000a40010043f0000062201000041000000c40010043f000005f9010000410000163b00010430000900000001001d000000000020043f0000000301000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000101041a000000090010006b000008420000813d0000000a02000029000000000020043f0000000601000039000000200010043f000000400200003900000000010000191639161a0000040f0000000902000029000000000020043f000000200010043f000000000100001900000040020000391639161a0000040f000000000101041a0000069d0000013d000000000001042f0000062e0020009c0000075b0000613d0000062f0020009c0000075b0000613d000006300020009c0000075b0000613d000007b50000013d0000062a0020009c0000075b0000613d0000062b0020009c0000075b0000613d000000800000043f000005eb010000410000163a0001042e0000000a0010006b000008560000c13d000000400100043d00000064021000390000061d03000041000000000032043500000044021000390000061e030000410000000000320435000000240210003900000021030000390000084b0000013d0000059602200197000000000262019f000000000021041b00000000010004140000058f0010009c0000058f01008041000000c00110021000000597011001c70000800d0200003900000003030000390000059804000041000008090000013d000005e701000041000000800010043f0000002001000039000000840010043f0000000b01000039000000a40010043f0000062301000041000000c40010043f000005f9010000410000163b00010430000000000020043f0000000501000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b0000000a02000029000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000201041a00000632022001970000000903000029000000000232019f000000000021041b000000400100043d00000000003104350000058f0010009c0000058f01008041000000400110021000000000020004140000058f0020009c0000058f02008041000000c002200210000000000112019f00000595011001c70000800d020000390000000303000039000005f70400004100000000050004110000000a060000291639162f0000040f0000000100200190000000410000613d00000000010000190000163a0001042e0000058f0010009c0000058f01008041000000c001100210000000000003004b000008870000c13d00000000020400190000088a0000013d00000000032400a900000000044300d9000000000024004b00000a860000c13d0000000004000416000000000034004b000009800000813d000005e701000041000000800010043f0000002001000039000000840010043f0000000d01000039000000a40010043f0000062401000041000000c40010043f000005f9010000410000163b000104300000000a07000029000000000007004b000009160000c13d000000400600043d000005ef0060009c000000710000213d0000004002600039000000400020043f0000002002600039000005ee07000041000000000072043500000001020000390000000000260435000000400200043d0000002007200039000000000005004b0000098c0000613d000000000040043f000005f00300004100000000040000190000000005740019000000000803041a000000000085043500000001033000390000002004400039000000000014004b0000083a0000413d0000098e0000013d000000400100043d00000064021000390000061403000041000000000032043500000044021000390000061503000041000000000032043500000024021000390000002b030000390000000000320435000005e70200004100000000002104350000000402100039000000200300003900000000003204350000058f0010009c0000058f010080410000004001100210000005f5011001c70000163b000104300000000002000411000000000012004b0000094c0000c13d0000000901000029000000000010043f0000000401000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000201041a00000596022001970000000a022001af000000000021041b0000000901000029000000000010043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000101041a00000594051001980000028a0000613d00000000010004140000058f0010009c0000058f01008041000000c00110021000000597011001c70000800d0200003900000004030000390000061c040000410000000a060000290000000907000029000008090000013d00000597011001c7000080090200003900000000050000191639162f0000040f000300000001035500000060011002700001058f0010019d0000058f01100197000000000001004b000008a40000c13d00000001002001900000080c0000c13d000000400100043d000000440210003900000611030000410000000000320435000000240210003900000006030000390000000000320435000005e70200004100000000002104350000000402100039000000200300003900000000003204350000058f0010009c0000058f01008041000000400110021000000600011001c70000163b00010430000005920010009c000000710000213d0000001f0410003900000631044001970000003f044000390000063105400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000005920050009c000000710000213d0000000100600190000000710000c13d000000400050043f000000000614043600000631031001980000001f0410018f00000000013600190000000305000367000008bf0000613d000000000705034f000000007807043c0000000006860436000000000016004b000008bb0000c13d000000000004004b000008910000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000008910000013d0000000a01000029000000000010043f0000000a01000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b0000000902000029000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000101041a000000ff001001900000080c0000c13d0000000a01000029000000000010043f0000000a01000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b0000000902000029000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000201041a000006320220019700000001022001bf000000000021041b00000000010004140000058f0010009c0000058f01008041000000c00110021000000597011001c70000800d0200003900000004030000390000059c040000410000000a0500002900000009060000290000000007000411000008090000013d00000000020000190000000006020019000000010220003a00000a860000613d000000090070008c0000000a0770011a000009170000213d000005ec0060009c000000710000213d00000631096001970000005f069000390000063107600197000000400600043d0000000007760019000000000067004b000000000a000039000000010a004039000005920070009c000000710000213d0000000100a00190000000710000c13d000000400070043f0000000007260436000000200a9000390000063109a001980000001f08a0018f000009390000613d0000000009970019000000000a000031000000020aa00367000000000b07001900000000ac0a043c000000000bcb043600000000009b004b000009350000c13d000000000008004b0000000a0b000029000000000002004b00000a860000613d000000010220008a0000000008060433000000000028004b000009860000a13d00000000087200190000000900b0008c0000000a9bb0011a000000f809900210000000000a080433000005ed0aa001970000000009a9019f000005ee099001c700000000009804350000093b0000213d000008330000013d000000000010043f0000000501000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b00000000020004110000059402200197000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000101041a000000ff00100190000008590000c13d000000400100043d00000064021000390000061a03000041000000000032043500000044021000390000061b030000410000000000320435000000240210003900000038030000390000084b0000013d000000000002004b00000000040000190000097a0000613d0000002004600039000000000141034f000000000401043b0000000301200210000006340110027f0000063401100167000000000414016f000000010120021000000a290000013d0000002401100370000000000301043b000000000100041116390fd00000040f00000000010000190000163a0001042e0000061801000041000000000010043f0000003201000039000000040010043f00000619010000410000163b000104300000063203300197000000000037043500000000011700190000000043060434000000000003004b0000099a0000613d000000000500001900000000061500190000000007540019000000000707043300000000007604350000002005500039000000000035004b000009930000413d0000000001130019000005f103000041000000000031043500000000012100490000001b0310008a0000000000320435000000240110003900000631011001970000000004210019000000000014004b00000000010000390000000101004039000005920040009c000000710000213d0000000100100190000000710000c13d00000000030400190000000001040019000000400030043f000a00000001001d0000074a0000013d0000000f01000039000000000101041a000000ff0010019000000a2d0000c13d0000001501000039000000000101041a000700000001001d00000014010000390000000001120436000000090300002900000060033002100000000000310435000005ef0020009c000000710000213d0000004003200039000000400030043f0000058f0010009c0000058f01008041000000400110021000000000020204330000058f0020009c0000058f020080410000006002200210000000000112019f00000000020004140000058f0020009c0000058f02008041000000c002200210000000000112019f00000597011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000800200043d000000000002004b000009f10000613d0000000003000019000a00000003001d0000000502300210000000a0022000390000000002020433000000000021004b000009e00000a13d000000000020043f000000200010043f0000000001000414000009e30000013d000000000010043f000000200020043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b0000000a030000290000000103300039000000800200043d000000000023004b000009d60000413d000000070010006c00000a570000c13d00000009010000290000059401100197000a00000001001d000000000010043f0000001401000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000101041a000000080010002a00000a860000413d00000008011000290000000e02000039000000000202041a000000000021004b00000a6b0000a13d000000400100043d00000044021000390000060203000041000000000032043500000024021000390000000f03000039000008990000013d000005f00400004100000000070000190000000008570019000000000881034f000000000808043b000000000084041b00000001044000390000002007700039000000000067004b00000a140000413d000000000026004b00000a270000813d0000000306200210000000f80660018f000006340660027f00000634066001670000000005570019000000000151034f000000000101043b000000000161016f000000000014041b00000001010000390000000104200210000000000114019f000000000013041b00000000010000190000163a0001042e0000004401200039000005ff030000410000000000310435000000240120003900000006030000390000000000310435000005e70100004100000000001204350000000401200039000000200300003900000000003104350000058f0020009c0000058f02008041000000400120021000000600011001c70000163b00010430000000440180003900000607020000410000000000210435000005e7010000410000000000180435000000240180003900000020020000390000000000210435000000040180003900000000002104350000058f0080009c0000058f08008041000000400180021000000600011001c70000163b00010430000000400100043d000000440210003900000607030000410000000000320435000005e702000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000089e0000013d000000400100043d00000044021000390000060103000041000000000032043500000024021000390000000903000039000008990000013d000000020000006b000000000100001900000a630000613d0000000901000029000000000101043300000002040000290000000302400210000006340220027f0000063402200167000000000121016f0000000102400210000000000121019f00000aa70000013d00000044010000390000000201100367000000000301043b0000000901000029000000080200002916390fd00000040f0000000a01000029000000000010043f0000001401000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000201041a000000080020002a00000a860000413d0000000802200029000000000021041b00000000010000190000163a0001042e0000061801000041000000000010043f0000001101000039000000040010043f00000619010000410000163b00010430000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000a0600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000a920000c13d000000020020006c00000aa40000813d00000002020000290000000302200210000000f80220018f000006340220027f00000634022001670000000a033000290000000003030433000000000223016f000000000021041b0000000201000029000000010110021000000001011001bf000000000010041b00000008010000290000000001010433000a00000001001d000005920010009c000000710000213d0000000101000039000000000101041a000000010010019000000001021002700000007f0220618f000900000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000040f0000c13d0000000901000029000000200010008c00000ad80000413d0000000101000039000000000010043f00000000010004140000058f0010009c0000058f01008041000000c00110021000000595011001c70000801002000039163916340000040f0000000100200190000000410000613d0000000a030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000009010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000ad80000813d000000000002041b0000000102200039000000000012004b00000ad40000413d0000000a010000290000001f0010008c00000aec0000a13d0000000101000039000000000010043f00000000010004140000058f0010009c0000058f01008041000000c00110021000000595011001c70000801002000039163916340000040f0000000100200190000000410000613d000000200200008a0000000a02200180000000000101043b00000af90000c13d000000200300003900000b060000013d0000000a0000006b000000000100001900000af10000613d000000070100002900000000010104330000000a040000290000000302400210000006340220027f0000063402200167000000000121016f0000000102400210000000000121019f00000b140000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000080600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000aff0000c13d0000000a0020006c00000b110000813d0000000a020000290000000302200210000000f80220018f000006340220027f000006340220016700000008033000290000000003030433000000000223016f000000000021041b0000000a01000029000000010110021000000001011001bf0000000102000039000000000012041b0000000b01000039000000000201041a00000596032001970000000006000411000000000363019f000000000031041b000000000100041400000594052001970000058f0010009c0000058f01008041000000c00110021000000597011001c70000800d02000039000000030300003900000598040000411639162f0000040f0000000100200190000000410000613d00000006010000290000000001010433000a00000001001d000005920010009c000000710000213d0000001001000039000000000101041a000000010010019000000001021002700000007f0220618f000900000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000040f0000c13d0000000901000029000000200010008c00000b580000413d0000001001000039000000000010043f00000000010004140000058f0010009c0000058f01008041000000c00110021000000595011001c70000801002000039163916340000040f0000000100200190000000410000613d0000000a030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000009010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000b580000813d000000000002041b0000000102200039000000000012004b00000b540000413d0000000a010000290000001f0010008c00000b6c0000a13d0000001001000039000000000010043f00000000010004140000058f0010009c0000058f01008041000000c00110021000000595011001c70000801002000039163916340000040f0000000100200190000000410000613d000000200200008a0000000a02200180000000000101043b00000b790000c13d000000200300003900000b860000013d0000000a0000006b000000000100001900000b710000613d000000050100002900000000010104330000000a040000290000000302400210000006340220027f0000063402200167000000000121016f0000000102400210000000000121019f00000b940000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000b7f0000c13d0000000a0020006c00000b910000813d0000000a020000290000000302200210000000f80220018f000006340220027f000006340220016700000006033000290000000003030433000000000223016f000000000021041b0000000a01000029000000010110021000000001011001bf0000001002000039000000000012041b000004e2010000390000000d02000039000000000012041b0000000f01000039000000000201041a00000011030000390000000104000039000000000043041b00000005030000390000000e04000039000000000034041b0000000403000029000000ff0330018f0000059902200197000000000223019f0000059a022001c7000000000021041b000000000000043f0000000a01000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000101041a000000ff0010019000000bf00000c13d000000000000043f0000000a01000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000201041a000006320220019700000001022001bf000000000021041b00000000010004140000058f0010009c0000058f01008041000000c00110021000000597011001c70000800d0200003900000004030000390000059c040000410000000005000019000000000600041100000000070600191639162f0000040f0000000100200190000000410000613d0000059d01000041000000000010043f0000000a01000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d00000003020000290000059402200197000000000101043b000a00000002001d000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000101041a000000ff0010019000000c3d0000c13d0000059d01000041000000000010043f0000000a01000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b0000000a02000029000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000000410000613d000000000101043b000000000201041a000006320220019700000001022001bf000000000021041b00000000010004140000058f0010009c0000058f01008041000000c00110021000000597011001c70000800d0200003900000004030000390000059c040000410000059d050000410000000a0600002900000000070004111639162f0000040f0000000100200190000000410000613d0000002001000039000001000010044300000120000004430000059e010000410000163a0001042e000006350010009c00000c500000213d000000630010008c00000c500000a13d00000002030003670000000401300370000000000101043b000005940010009c00000c500000213d0000002402300370000000000202043b0000004403300370000000000303043b000000000001042d00000000010000190000163b0001043000000004010000390000000201100367000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00000c5b0000c13d000000000001042d00000000010000190000163b00010430000000000003004b00000c670000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b00000c600000413d00000000012300190000000000010435000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00000c790000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b00000c720000413d000000000312001900000000000304350000001f0220003900000631022001970000000001120019000000000001042d000006350010009c00000c8f0000213d000000630010008c00000c8f0000a13d00000002030003670000000401300370000000000101043b000005940010009c00000c8f0000213d0000002402300370000000000202043b000005940020009c00000c8f0000213d0000004403300370000000000303043b000000000001042d00000000010000190000163b00010430000006360010009c00000c960000813d0000002001100039000000400010043f000000000001042d0000061801000041000000000010043f0000004101000039000000040010043f00000619010000410000163b000104300000001f0220003900000631022001970000000001120019000000000021004b00000000020000390000000102004039000005920010009c00000ca80000213d000000010020019000000ca80000c13d000000400010043f000000000001042d0000061801000041000000000010043f0000004101000039000000040010043f00000619010000410000163b0001043000000000030100190000001f01100039000000000021004b0000000004000019000005930400404100000593052001970000059301100197000000000651013f000000000051004b00000000010000190000059301002041000005930060009c000000000104c019000000000001004b00000ce50000613d0000000204000367000000000134034f000000000501043b000006370050009c00000cdf0000813d00000005065002100000003f01600039000005fd07100197000000400100043d0000000007710019000000000017004b00000000080000390000000108004039000005920070009c00000cdf0000213d000000010080019000000cdf0000c13d000000400070043f000000000051043500000020033000390000000005630019000000000025004b00000ce50000213d000000000053004b00000cde0000813d0000000002010019000000000634034f000000000606043b000000200220003900000000006204350000002003300039000000000053004b00000cd70000413d000000000001042d0000061801000041000000000010043f0000004101000039000000040010043f00000619010000410000163b0001043000000000010000190000163b000104300000059402200197000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f000000010020019000000cf50000613d000000000101043b000000000001042d00000000010000190000163b00010430000000000001004b00000cfa0000613d000000000001042d000000400100043d00000044021000390000060e030000410000000000320435000005e7020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000058f0010009c0000058f01008041000000400110021000000600011001c70000163b00010430000000000001004b00000d0d0000613d000000000001042d000000400100043d0000004402100039000005ff030000410000000000320435000000240210003900000006030000390000000000320435000005e70200004100000000002104350000000402100039000000200300003900000000003204350000058f0010009c0000058f01008041000000400110021000000600011001c70000163b00010430000000000001004b00000d210000613d000000000001042d000000400100043d00000044021000390000062203000041000000000032043500000024021000390000000d030000390000000000320435000005e70200004100000000002104350000000402100039000000200300003900000000003204350000058f0010009c0000058f01008041000000400110021000000600011001c70000163b000104300001000000000002000100000001001d000000000010043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f000000010020019000000d550000613d000000000101043b000000000101041a000005940010019800000d570000613d0000000101000029000000000010043f0000000401000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f000000010020019000000d550000613d000000000101043b000000000101041a0000059401100197000000000001042d00000000010000190000163b00010430000000400100043d00000064021000390000063803000041000000000032043500000044021000390000063903000041000000000032043500000024021000390000002c030000390000000000320435000005e70200004100000000002104350000000402100039000000200300003900000000003204350000058f0010009c0000058f010080410000004001100210000005f5011001c70000163b00010430000000000001004b00000d6e0000613d000000000001042d000000400100043d00000064021000390000063a03000041000000000032043500000044021000390000063b030000410000000000320435000000240210003900000031030000390000000000320435000005e70200004100000000002104350000000402100039000000200300003900000000003204350000058f0010009c0000058f010080410000004001100210000005f5011001c70000163b00010430000000000010043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f000000010020019000000d930000613d000000000101043b000000000101041a000005940110019800000d950000613d000000000001042d00000000010000190000163b00010430000000400100043d00000064021000390000061f030000410000000000320435000000440210003900000620030000410000000000320435000000240210003900000029030000390000000000320435000005e70200004100000000002104350000000402100039000000200300003900000000003204350000058f0010009c0000058f010080410000004001100210000005f5011001c70000163b00010430000005940110019800000dba0000613d000000000010043f0000000301000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f000000010020019000000dce0000613d000000000101043b000000000101041a000000000001042d000000400100043d00000064021000390000061703000041000000000032043500000044021000390000061603000041000000000032043500000024021000390000002a030000390000000000320435000005e70200004100000000002104350000000402100039000000200300003900000000003204350000058f0010009c0000058f010080410000004001100210000005f5011001c70000163b0001043000000000010000190000163b000104300004000000000002000300000002001d0000001502000039000000000202041a000100000002001d000000400200043d00000014030000390000000003320436000000600110021000000000001304350000063c0020009c00000e190000813d0000004001200039000000400010043f0000058f0030009c0000058f03008041000000400130021000000000020204330000058f0020009c0000058f020080410000006002200210000000000112019f00000000020004140000058f0020009c0000058f02008041000000c002200210000000000112019f00000597011001c70000801002000039163916340000040f000000010020019000000e170000613d000000000101043b00000003020000290000000032020434000200000003001d000000000002004b00000e130000613d0000000003000019000400000003001d000000050230021000000002022000290000000002020433000000000021004b00000e010000a13d000000000020043f000000200010043f000000000100041400000e040000013d000000000010043f000000200020043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f000000010020019000000e170000613d0000000403000029000000000101043b000000010330003900000003020000290000000002020433000000000023004b00000df70000413d000000010010006c00000000010000390000000101006039000000000001042d00000000010000190000163b000104300000061801000041000000000010043f0000004101000039000000040010043f00000619010000410000163b000104300008000000000002000100000004001d000500000002001d000400000001001d000600000003001d000000000030043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f000000010020019000000f200000613d000000000101043b000000000101041a000005940010019800000f220000613d0000000601000029000000000010043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f000000010020019000000f200000613d000000000101043b000000000101041a000005940110019800000f2c0000613d0000000002000411000305940020019b000000030010006b00000e890000613d000000000010043f0000000501000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f000000010020019000000f200000613d000000000101043b0000000302000029000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f000000010020019000000f200000613d000000000101043b000000000101041a000000ff0010019000000e890000c13d0000000601000029000000000010043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f000000010020019000000f200000613d000000000101043b000000000101041a000005940010019800000f450000613d0000000601000029000000000010043f0000000401000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f000000010020019000000f200000613d000000000101043b000000000101041a0000059401100197000000030010006c00000f4c0000c13d0000000401000029000000050200002900000006030000291639140f0000040f0000000001000415000200000001001d0000063d0100004100000000001004430000000501000029000000040010044300000000010004140000058f0010009c0000058f01008041000000c00110021000000610011001c70000800202000039163916340000040f000000010020019000000f400000613d000000000101043b000000000001004b00000ecd0000613d000000400b00043d0000006401b00039000000800700003900000000007104350000004401b0003900000006020000290000000000210435000000040100002900000594011001970000002402b0003900000000001204350000063e0100004100000000001b04350000000401b00039000000030200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b00000ebe0000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b00000eb70000413d00000000023100190000000000020435000000000300041400000005020000290000059402200197000000040020008c00000ed10000c13d0000000005000415000000080550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900000f070000013d000000000100041500000002011000690000000001000002000000000001042d000500000007001d0000001f011000390000063101100197000000a4011000390000058f0010009c0000058f0100804100000060011002100000058f00b0009c0000058f0400004100000000040b40190000004004400210000000000141019f0000058f0030009c0000058f03008041000000c003300210000000000113019f00060000000b001d1639162f0000040f000000060b00002900000060031002700000058f03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000ef30000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000eef0000c13d000000000006004b00000f000000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000070550008a0000000505500210000000010020019000000f410000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000005920010009c00000f900000213d000000010020019000000f900000c13d000000400010043f000000200030008c00000f200000413d00000000010b0433000006260010019800000f200000c13d0000000502500270000000000201001f00000000020004150000000202200069000000000200000200000627011001970000063e0010009c00000f800000c13d000000000001042d00000000010000190000163b00010430000000400100043d00000064021000390000063803000041000000000032043500000044021000390000064003000041000000000032043500000024021000390000002c0300003900000f350000013d000000400100043d00000064021000390000061f030000410000000000320435000000440210003900000620030000410000000000320435000000240210003900000029030000390000000000320435000005e70200004100000000002104350000000402100039000000200300003900000000003204350000058f0010009c0000058f010080410000004001100210000005f5011001c70000163b00010430000000000001042f000000000003004b00000f560000c13d000000600200003900000f7d0000013d000000400100043d0000006402100039000006380300004100000000003204350000004402100039000006390300004100000f280000013d000000400100043d00000064021000390000063a03000041000000000032043500000044021000390000063b0300004100000000003204350000002402100039000000310300003900000f350000013d0000001f0230003900000590022001970000003f022000390000063f04200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000005920040009c00000f900000213d000000010050019000000f900000c13d000000400040043f0000001f0430018f00000000063204360000059105300198000500000006001d000000000356001900000f700000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b00000f6c0000c13d000000000004004b00000f7d0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00000f960000c13d000000400200043d000600000002001d000005e70100004100000000001204350000000401200039163915f90000040f000000060200002900000000012100490000058f0010009c0000058f0100804100000060011002100000058f0020009c0000058f020080410000004002200210000000000121019f0000163b000104300000061801000041000000000010043f0000004101000039000000040010043f00000619010000410000163b0001043000000005020000290000058f0020009c0000058f0200804100000040022002100000058f0010009c0000058f010080410000006001100210000000000121019f0000163b000104300000000031010434000000000001004b00000faa0000613d000000000400001900000000052400190000000006430019000000000606043300000000006504350000002004400039000000000014004b00000fa30000413d00000000012100190000000000010435000000000001042d0001000000000002000100000002001d0000059401100197000000000010043f0000001401000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f000000010020019000000fc80000613d000000000101043b000000000101041a0000000102000029000000000021001a00000fca0000413d00000000012100190000000e02000039000000000202041a000000000021004b0000000001000039000000010100a039000000000001042d00000000010000190000163b000104300000061801000041000000000010043f0000001101000039000000040010043f00000619010000410000163b00010430000e000000000002000500000001001d000300000003001d000000000003004b000011bf0000613d000000000002004b000011c60000613d0000000e01000039000000000301041a000000000023004b000011cd0000413d0000000803000039000000000303041a000400000002001d000000000023001a000011600000413d0000000402300029000004e20020008c000011d40000213d0000000d01000039000000000301041a000000000032004b000011d80000213d0000000501000029000b05940010019c000011e80000613d000a00010000003d0000001101000039000000000101041a000c00000001001d000100800000003d0000000001000411000205940010019b0000000001000415000600000001001d000000400100043d000800000001001d000006360010009c000011eb0000813d00000008020000290000002001200039000700000001001d000000400010043f00000000000204350000000c01000029000000000010043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f00000001002001900000115e0000613d000000000101043b000000000101041a0000059400100198000011660000c13d0000000801000039000000000101041a000900000001001d0000000c01000029000000000010043f0000000901000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f00000001002001900000115e0000613d000000000101043b0000000903000029000000000031041b000005920030009c000011eb0000213d00000001013000390000000802000039000000000012041b0000060d0130009a0000000c02000029000000000021041b0000000b01000029000000000010043f0000000301000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f00000001002001900000115e0000613d000000000101043b000000000101041a000900000001001d0000000b01000029000000000010043f0000000601000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f00000001002001900000115e0000613d000000000101043b0000000902000029000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f00000001002001900000115e0000613d000000000101043b0000000c02000029000000000021041b000000000020043f0000000701000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f00000001002001900000115e0000613d000000000101043b0000000902000029000000000021041b0000000b01000029000000000010043f0000000301000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f00000001002001900000115e0000613d000000000101043b000000000201041a000000010220003a000011600000613d000000000021041b0000000c01000029000000000010043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f00000001002001900000115e0000613d000000000101043b000000000201041a00000596022001970000000b06000029000000000262019f000000000021041b00000000010004140000058f0010009c0000058f01008041000000c00110021000000597011001c70000800d020000390000000403000039000006420400004100000000050000190000000c070000291639162f0000040f00000001002001900000115e0000613d0000000001000415000900000001001d0000063d0100004100000000001004430000000501000029000000040010044300000000010004140000058f0010009c0000058f01008041000000c00110021000000610011001c70000800202000039163916340000040f0000000100200190000011770000613d000000000101043b000000000001004b0000000b060000290000000707000029000010d40000613d000000400a00043d0000006401a00039000000800200003900000000002104350000004401a000390000000c0200002900000000002104350000063e0100004100000000001a04350000000401a00039000000020200002900000000002104350000002401a000390000000000010435000000080100002900000000010104330000008402a000390000000000120435000000a402a00039000000000001004b000010c70000613d000000000300001900000000042300190000000005730019000000000505043300000000005404350000002003300039000000000013004b000010c00000413d000000000221001900000000000204350000000002000414000000040060008c000010d80000c13d00000000050004150000000e0550008a00000005055002100000000103000031000000200030008c000000200400003900000000040340190000110d0000013d000000000100041500000009011000690000000001000002000011250000013d0000001f011000390000063101100197000000a4011000390000058f0010009c0000058f0100804100000060011002100000058f00a0009c0000058f0300004100000000030a40190000004003300210000000000131019f0000058f0020009c0000058f02008041000000c002200210000000000112019f000000000206001900080000000a001d1639162f0000040f000000080a00002900000060031002700000058f03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000010f90000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000010f50000c13d0000001f07400190000011060000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000300000001035500000000050004150000000d0550008a00000005055002100000000100200190000011780000613d0000001f01400039000000600210018f0000000001a20019000000000021004b00000000020000390000000102004039000005920010009c000011eb0000213d0000000100200190000011eb0000c13d000000400010043f000000200030008c0000115e0000413d00000000010a043300000626001001980000115e0000c13d0000000502500270000000000201001f00000000020004150000000902200069000000000200000200000627011001970000063e0010009c000011a60000c13d0000000001000415000000060110006900000000010000020000000c01000029000000000010043f0000001301000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f00000001002001900000115e0000613d000000000101043b0000000302000029000000000021041b0000000a01000029000000010110003a00000000020000390000000102006039000000010400008a0000000c0040006b000011600000613d0000000100200190000011600000c13d0000000c02000029000c00010020003d0000000a03000029000000040030006c000a00000001001d00000ff10000413d0000001101000039000000000101041a000b00000001001d0000000301000029000000000010043f0000001201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f00000001002001900000115e0000613d000000000101043b0000000b02000029000000000021041b00000011010000390000000c02000029000000000021041b000000000001042d00000000010000190000163b000104300000061801000041000000000010043f0000001101000039000000040010043f00000619010000410000163b00010430000000400100043d00000044021000390000064103000041000000000032043500000024021000390000001c030000390000000000320435000005e70200004100000000002104350000000402100039000000200300003900000000003204350000058f0010009c0000058f01008041000000400110021000000600011001c70000163b00010430000000000001042f000000000003004b0000117c0000c13d0000006002000039000011a30000013d0000001f0230003900000590022001970000003f022000390000063f04200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000005920040009c000011eb0000213d0000000100500190000011eb0000c13d000000400040043f0000001f0430018f00000000063204360000059105300198000100000006001d0000000003560019000011960000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b000011920000c13d000000000004004b000011a30000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000011b60000c13d000000400200043d000c00000002001d000005e70100004100000000001204350000000401200039163915f90000040f0000000c0200002900000000012100490000058f0010009c0000058f0100804100000060011002100000058f0020009c0000058f020080410000004002200210000000000121019f0000163b0001043000000001020000290000058f0020009c0000058f0200804100000040022002100000058f0010009c0000058f010080410000006001100210000000000121019f0000163b00010430000000400100043d00000044021000390000064803000041000000000032043500000024021000390000000a030000390000116c0000013d000000400100043d00000044021000390000064703000041000000000032043500000024021000390000000b030000390000116c0000013d000000400100043d000000440210003900000646030000410000000000320435000000240210003900000010030000390000116c0000013d000000400200043d00000044032000390000064504000041000011db0000013d000000400200043d00000044032000390000064404000041000000000043043500000024032000390000000000130435000005e70100004100000000001204350000000401200039000000200300003900000000003104350000058f0020009c0000058f02008041000000400120021000000600011001c70000163b00010430000000400100043d000005f20010009c000011f10000a13d0000061801000041000000000010043f0000004101000039000000040010043f00000619010000410000163b000104300000002002100039000000400020043f0000000000010435000000400100043d000000440210003900000643030000410000000000320435000005e70200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000011710000013d000300000000000200000000010004110000059401100197000000000010043f000005fe01000041000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000012130000613d000000000101043b000000000101041a000000ff00100190000012150000613d000000000001042d00000000010000190000163b00010430000000400200043d000006490020009c0000121e0000413d0000061801000041000000000010043f0000004101000039000000040010043f00000619010000410000163b000104300000006004200039000000400040043f0000002a01000039000000000112043600000000030000310000000203300367000000000503034f0000000006010019000000005705043c0000000006760436000000000046004b000012260000c13d0000000004010433000005ed04400197000005ee044001c7000000000041043500000021042000390000000005040433000005ed0550019700000604055001c700000000005404350000002904000039000000000600041100000000050600190000000006020433000000000046004b0000129d0000a13d00000000061400190000000007060433000005ed077001970000000308500210000000780880018f000006050880021f0000060608800197000000000787019f00000000007604350000000406500270000000010440008a000000010040008c000012350000213d000000100050008c000012a30000813d000000400400043d000300000004001d000005f60040009c000012180000213d00000003060000290000008005600039000000400050043f000000420400003900000000044604360000000006040019000000003703043c0000000006760436000000000056004b000012520000c13d0000000003040433000005ed03300197000005ee033001c70000000000340435000000030900002900000021039000390000000005030433000005ed0550019700000604055001c700000000005304350000059d06000041000000410300003900000000050600190000000006090433000000000036004b0000129d0000a13d00000000064300190000000007060433000005ed077001970000000308500210000000780880018f000006050880021f0000060608800197000000000787019f00000000007604350000000406500270000000010330008a000000010030008c000012620000213d0000000f0050008c000012a30000213d000000400500043d000200000005001d0000002003500039000006080400004100000000004304350000000003020433000100000003001d000000370250003916390c5d0000040f000000010200002900000002012000290000003702100039000006090300004100000000003204350000004802100039000000030100002916390f9f0000040f00000002030000290000000002310049000000200120008a0000000000130435000000000103001916390c9c0000040f000005e701000041000000400200043d000300000002001d00000000001204350000000401200039000000020200002916390c6a0000040f000000030200002900000000012100490000058f0010009c0000058f0100804100000060011002100000058f0020009c0000058f020080410000004002200210000000000121019f0000163b000104300000061801000041000000000010043f0000003201000039000000040010043f00000619010000410000163b00010430000000400100043d000000440210003900000607030000410000000000320435000005e7020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000058f0010009c0000058f01008041000000400110021000000600011001c70000163b000104300004000000000002000400000001001d000000000010043f0000000a01000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000012d40000613d0000000002000411000000000101043b0000059402200197000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000012d40000613d000000000101043b000000000101041a000000ff00100190000012d60000613d000000000001042d00000000010000190000163b00010430000000400100043d000006490010009c000012df0000413d0000061801000041000000000010043f0000004101000039000000040010043f00000619010000410000163b0001043000000000070100190000006002700039000000400020043f0000002a01000039000000000417043600000000010000310000000201100367000000000301034f0000000009040019000000003503043c0000000004540436000000000024004b000012e80000c13d000000000a0900190000000002090433000005ed02200197000005ee022001c70000000000290435000000000807001900000021027000390000000003020433000005ed0330019700000604033001c700000000003204350000002902000039000000000400041100000000030400190000000004080433000000000024004b000013650000a13d0000000004a200190000000005040433000005ed055001970000000306300210000000780660018f000006050660021f0000060606600197000000000565019f00000000005404350000000404300270000000010220008a000000010020008c000012f90000213d000000400800043d000000100030008c0000136b0000813d000005f60080009c000012d90000213d0000008003800039000000400030043f000000420200003900000000022804360000000004020019000000001501043c0000000004540436000000000034004b000013140000c13d0000000001020433000005ed01100197000005ee011001c7000000000012043500000021018000390000000003010433000005ed0330019700000604033001c700000000003104350000004101000039000000040400002900000000030400190000000004080433000000000014004b000013650000a13d00000000042100190000000005040433000005ed055001970000000306300210000000780660018f000006050660021f0000060606600197000000000556019f00000000005404350000000404300270000000010110008a000000010010008c000013230000213d000000100030008c00000000010000390000000101004039000100000007001d000200000009001d000300000008001d163916060000040f000000400400043d000400000004001d00000020014000390000060802000041000000000021043500000001010000290000000003010433000100000003001d0000003702400039000000020100002916390c5d0000040f000000010200002900000004012000290000060902000041000000370310003900000000002304350000004802100039000000030100002916390f9f0000040f00000004030000290000000002310049000000200120008a0000000000130435000000000103001916390c9c0000040f000005e701000041000000400200043d000300000002001d00000000001204350000000401200039000000040200002916390c6a0000040f000000030200002900000000012100490000058f0010009c0000058f0100804100000060011002100000058f0020009c0000058f020080410000004002200210000000000121019f0000163b000104300000061801000041000000000010043f0000003201000039000000040010043f00000619010000410000163b00010430000000440180003900000607020000410000000000210435000005e7010000410000000000180435000000240180003900000020020000390000000000210435000000040180003900000000002104350000058f0080009c0000058f08008041000000400180021000000600011001c70000163b000104300002000000000002000100000001001d000200000002001d000000000020043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000013e80000613d000000000101043b000000000101041a0000059400100198000013ea0000613d0000000201000029000000000010043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000013e80000613d000000000101043b000000000101041a0000059401100198000013f40000613d00000001020000290000059402200197000000000012004b000013a40000c13d0000000101000039000000000001042d000100000002001d000000000010043f0000000501000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000013e80000613d000000000101043b0000000102000029000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000013e80000613d000000000101043b000000000101041a000000ff01100190000013c30000613d000000000001042d0000000201000029000000000010043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000013e80000613d000000000101043b000000000101041a0000059400100198000014080000613d0000000201000029000000000010043f0000000401000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000013e80000613d000000000101043b000000000101041a0000059401100197000000010010006c00000000010000390000000101006039000000000001042d00000000010000190000163b00010430000000400100043d00000064021000390000063803000041000000000032043500000044021000390000064003000041000000000032043500000024021000390000002c03000039000013fd0000013d000000400100043d00000064021000390000061f030000410000000000320435000000440210003900000620030000410000000000320435000000240210003900000029030000390000000000320435000005e70200004100000000002104350000000402100039000000200300003900000000003204350000058f0010009c0000058f010080410000004001100210000005f5011001c70000163b00010430000000400100043d00000064021000390000063803000041000000000032043500000044021000390000063903000041000013f00000013d0006000000000002000300000002001d000400000001001d000600000003001d000000000030043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b000000000101041a000505940010019c000015800000613d00000004010000290000059401100197000000050010006b0000158a0000c13d00000003010000290000059402100198000015940000613d000400000002001d000000050020006b000015030000613d0000000501000029000000000010043f0000000301000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b000000000101041a000300000001001d000000000001004b0000157a0000613d0000000601000029000000000010043f0000000701000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d00000003020000290003000100200092000000000101043b000000000101041a000000030010006c0000149c0000613d000200000001001d0000000501000029000000000010043f0000000601000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b0000000302000029000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b000000000101041a000100000001001d0000000501000029000000000010043f0000000601000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b0000000202000029000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b0000000102000029000000000021041b000000000020043f0000000701000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b0000000202000029000000000021041b0000000601000029000000000010043f0000000701000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b000000000001041b0000000501000029000000000010043f0000000601000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b0000000302000029000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b000000000001041b0000000401000029000000000010043f0000000301000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b000000000101041a000300000001001d0000000401000029000000000010043f0000000601000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b0000000302000029000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b0000000602000029000000000021041b000000000020043f0000000701000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b0000000302000029000000000021041b0000000601000029000000000010043f0000000401000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b000000000201041a0000059602200197000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b000000000101041a0000059405100198000015800000613d00000000010004140000058f0010009c0000058f01008041000000c00110021000000597011001c70000800d0200003900000004030000390000061c04000041000000000600001900000006070000291639162f0000040f0000000100200190000015780000613d0000000501000029000000000010043f0000000301000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b000000000201041a000000000002004b0000157a0000613d000000010220008a000000000021041b0000000401000029000000000010043f0000000301000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b000000000201041a000000010220003a0000157a0000613d000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015780000613d000000000101043b000000000201041a00000596022001970000000406000029000000000262019f000000000021041b00000000010004140000058f0010009c0000058f01008041000000c00110021000000597011001c70000800d0200003900000004030000390000064204000041000000050500002900000006070000291639162f0000040f0000000100200190000015780000613d000000000001042d00000000010000190000163b000104300000061801000041000000000010043f0000001101000039000000040010043f00000619010000410000163b00010430000000400100043d00000064021000390000061f030000410000000000320435000000440210003900000620030000410000000000320435000000240210003900000029030000390000159d0000013d000000400100043d00000064021000390000064a03000041000000000032043500000044021000390000064b030000410000000000320435000000240210003900000025030000390000159d0000013d000000400100043d00000064021000390000064c03000041000000000032043500000044021000390000064d030000410000000000320435000000240210003900000024030000390000000000320435000005e70200004100000000002104350000000402100039000000200300003900000000003204350000058f0010009c0000058f010080410000004001100210000005f5011001c70000163b000104300002000000000002000100000002001d000200000001001d000000000010043f0000000a01000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015f70000613d000000000101043b00000001020000290000059402200197000100000002001d000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015f70000613d000000000101043b000000000101041a000000ff00100190000015f60000613d0000000201000029000000000010043f0000000a01000039000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015f70000613d000000000101043b0000000102000029000000000020043f000000200010043f00000000010004140000058f0010009c0000058f01008041000000c0011002100000059b011001c70000801002000039163916340000040f0000000100200190000015f70000613d000000000101043b000000000201041a0000063202200197000000000021041b00000000010004140000058f0010009c0000058f01008041000000c00110021000000597011001c70000800d02000039000000040300003900000000070004110000064e04000041000000020500002900000001060000291639162f0000040f0000000100200190000015f70000613d000000000001042d00000000010000190000163b0001043000000060021000390000064f030000410000000000320435000000400210003900000650030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000000001004b000016090000613d000000000001042d000000400100043d000000440210003900000607030000410000000000320435000005e7020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000058f0010009c0000058f01008041000000400110021000000600011001c70000163b00010430000000000001042f0000058f0010009c0000058f0100804100000040011002100000058f0020009c0000058f020080410000006002200210000000000112019f00000000020004140000058f0020009c0000058f02008041000000c002200210000000000112019f00000597011001c70000801002000039163916340000040f00000001002001900000162d0000613d000000000101043b000000000001042d00000000010000190000163b0001043000001632002104210000000102000039000000000001042d0000000002000019000000000001042d00001637002104230000000102000039000000000001042d0000000002000019000000000001042d00001639000004320000163a0001042e0000163b0001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000001000002000000000000000000000000000000000000400000000000000000000000002f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a60000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000005c84b0d500000000000000000000000000000000000000000000000000000000a217fdde00000000000000000000000000000000000000000000000000000000d539139200000000000000000000000000000000000000000000000000000000e596645900000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000fe37f3ae00000000000000000000000000000000000000000000000000000000e596645a00000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000d539139300000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c6465fb900000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000a217fddf00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000b3934edc000000000000000000000000000000000000000000000000000000007cd586f90000000000000000000000000000000000000000000000000000000091b7f5ec0000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a035b1fe0000000000000000000000000000000000000000000000000000000091b7f5ed0000000000000000000000000000000000000000000000000000000091d14854000000000000000000000000000000000000000000000000000000007cd586fa0000000000000000000000000000000000000000000000000000000085eee706000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007590485f000000000000000000000000000000000000000000000000000000005c84b0d6000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000006352211e00000000000000000000000000000000000000000000000000000000248a9ca2000000000000000000000000000000000000000000000000000000003ccfd60a00000000000000000000000000000000000000000000000000000000458c05960000000000000000000000000000000000000000000000000000000055f804b20000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000005c6e70f700000000000000000000000000000000000000000000000000000000458c0597000000000000000000000000000000000000000000000000000000004f6ccce7000000000000000000000000000000000000000000000000000000003ccfd60b000000000000000000000000000000000000000000000000000000003f442e120000000000000000000000000000000000000000000000000000000042842e0e000000000000000000000000000000000000000000000000000000002f2ff15c000000000000000000000000000000000000000000000000000000002f2ff15d000000000000000000000000000000000000000000000000000000002f745c590000000000000000000000000000000000000000000000000000000036568abe00000000000000000000000000000000000000000000000000000000248a9ca3000000000000000000000000000000000000000000000000000000002ce7abb1000000000000000000000000000000000000000000000000000000002da5ea1700000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000173a3a3000000000000000000000000000000000000000000000000000000000239c70ad00000000000000000000000000000000000000000000000000000000239c70ae0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000173a3a310000000000000000000000000000000000000000000000000000000018160ddd00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000088a4ed000000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000049f84e500000000000000000000000000000000000000000000000000000000049f84e600000000000000000000000000000000000000000000000000000000069cd5730000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000004a84cb0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000002329a29000000000000000000000000000000000000002000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000fffffffffffffffe00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6722e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf6e6578697374656e7420746f6b656e00000000000000000000000000000000004552433732314d657461646174613a2055524920717565727920666f72206e6f0000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c6572000000000000000000000000000000000000000000000000000064000000800000000000000000b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff0000000000000000000000000000000000000000000000000000000000ff00007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0aa1d7351356c4ddc11907b1ee0660f579cfdf507235af2ae01ecd22a4b7ceaae706175736564000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000006e6f7420696e20414c00000000000000000000000000000000000000000000006f766572206d617820666f7220414c0000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f780000000000000000000000000000000000000000000000000000000000000030313233343536373839616263646566000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000537472696e67733a20686578206c656e67746820696e73756666696369656e74416363657373436f6e74726f6c3a206163636f756e7420000000000000000000206973206d697373696e6720726f6c6520000000000000000000000000000000e497b8238be5e4f32f72d877ba0627e627848cb8a6504aa01d21a347d565198e455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e647300000000000000000000000000000000000000000c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911d4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65729cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000006661696c65640000000000000000000000000000000000000000000000000000416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66000000000000000000000000000000000074206f6620626f756e6473000000000000000000000000000000000000000000455243373231456e756d657261626c653a206f776e657220696e646578206f754552433732313a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373000000000000000000000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000006e6572206e6f7220617070726f76656420666f7220616c6c00000000000000004552433732313a20617070726f76652063616c6c6572206973206e6f74206f778c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e65656e7420746f6b656e00000000000000000000000000000000000000000000004552433732313a206f776e657220717565727920666f72206e6f6e6578697374290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563702d73616c6520706175736564000000000000000000000000000000000000006d696e742070617573656400000000000000000000000000000000000000000066756e64732073686f72746564000000000000000000000000000000000000007072696365206e6f74207365740000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000007965db0affffffffffffffffffffffffffffffffffffffffffffffffffffffff80ac58ccffffffffffffffffffffffffffffffffffffffffffffffffffffffffda8def730000000000000000000000000000000000000000000000000000000080ac58cd000000000000000000000000000000000000000000000000000000007965db0b0000000000000000000000000000000000000000000000000000000079f154c40000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f00000000000000000000000000000000000000000000000000000000780e9d6300000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe00000000000000000000000000000000000000000000000010000000000000000697374656e7420746f6b656e00000000000000000000000000000000000000004552433732313a20617070726f76656420717565727920666f72206e6f6e6578776e6572206e6f7220617070726f7665640000000000000000000000000000004552433732313a207472616e736665722063616c6c6572206973206e6f74206f000000000000000000000000000000000000000000000000ffffffffffffffc01806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe04552433732313a206f70657261746f7220717565727920666f72206e6f6e65784552433732313a20746f6b656e20616c7265616479206d696e74656400000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4552433732313a206d696e7420746f20746865207a65726f20616464726573736f7665722074656d70206d6178000000000000000000000000000000000000006f76657220746f74616c206d61780000000000000000000000000000000000006f766572206d61782070657220627579000000000000000000000000000000006e6f207175616e746974790000000000000000000000000000000000000000006e6f206f726465724e6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffa06f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f72726563742072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f20616464f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b63656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e20455243373231526500000000000000000000000000000000000000000000000000000000000000005d620323366d934d0d286cdb9aed1eafe98d734556a8cd88628094a06e60b6ea

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f162d41ee0633d0b2e8f0609f8ed219ee0c30760000000000000000000000000000000000000000000000000000000000000006454e5465737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003454e540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004068747470733a2f2f617277656176652e6e65742f505a52375a61326472716a646d46524b4d434461516438327557533954546f665242767a656c4c6e59346f2f

-----Decoded View---------------
Arg [0] : _name (string): ENTest
Arg [1] : _symbol (string): ENT
Arg [2] : _initBaseURI (string): https://arweave.net/PZR7Za2drqjdmFRKMCDaQd82uWS9TTofRBvzelLnY4o/
Arg [3] : _paused (bool): False
Arg [4] : _minterAddress (address): 0x1f162d41EE0633D0b2E8f0609f8ed219Ee0c3076

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000001f162d41ee0633d0b2e8f0609f8ed219ee0c3076
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 454e546573740000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 454e540000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [10] : 68747470733a2f2f617277656176652e6e65742f505a52375a61326472716a64
Arg [11] : 6d46524b4d434461516438327557533954546f665242767a656c4c6e59346f2f


[ 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.