ETH Price: $3,193.59 (+0.33%)
Gas: 2 Gwei

Token

Shazu Ninja Collection (SNC)
 

Overview

Max Total Supply

1,077 SNC

Holders

175

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
reezmoy.eth
Balance
3 SNC
0x14e41917bc17cEAe6B2037a41bf8dB87d557b398
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SNC

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 99999 runs

Other Settings:
default evmVersion, GNU AGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-31
*/

// Dependency file: @openzeppelin/contracts/utils/introspection/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);
}


// Dependency file: @openzeppelin/contracts/token/ERC721/IERC721.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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


// Dependency file: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

// pragma solidity ^0.8.0;

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


// Dependency file: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/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);
}


// Dependency file: @openzeppelin/contracts/utils/Address.sol

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


// Dependency file: @openzeppelin/contracts/utils/Context.sol

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

// pragma solidity ^0.8.0;

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

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


// Dependency file: @openzeppelin/contracts/utils/Strings.sol

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


// Dependency file: @openzeppelin/contracts/utils/introspection/ERC165.sol

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

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/introspection/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;
    }
}


// Dependency file: @openzeppelin/contracts/token/ERC721/ERC721.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
// import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
// import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
// import "@openzeppelin/contracts/utils/Address.sol";
// import "@openzeppelin/contracts/utils/Context.sol";
// import "@openzeppelin/contracts/utils/Strings.sol";
// import "@openzeppelin/contracts/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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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 || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

        _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 {}
}


// Dependency file: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/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);
}


// Dependency file: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
// import "@openzeppelin/contracts/token/ERC721/extensions/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();
    }
}


// Dependency file: @openzeppelin/contracts/utils/Counters.sol

// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

// pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


// Dependency file: @openzeppelin/contracts/security/Pausable.sol

// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

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

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

    bool private _paused;

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

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

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

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

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

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


// Dependency file: @openzeppelin/contracts/access/IAccessControl.sol

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// Dependency file: @openzeppelin/contracts/access/AccessControl.sol

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

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/access/IAccessControl.sol";
// import "@openzeppelin/contracts/utils/Context.sol";
// import "@openzeppelin/contracts/utils/Strings.sol";
// import "@openzeppelin/contracts/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, _msgSender());
        _;
    }

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

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

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


// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

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

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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


// Dependency file: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


// Dependency file: contracts/traits/WithdrawalElement.sol


// pragma solidity ^0.8.9;

// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

abstract contract WithdrawalElement {
    using SafeERC20 for IERC20;
    using Address for address;

    event WithdrawToken(address token, address recipient, uint256 amount);
    event Withdraw(address recipient, uint256 amount);

    function _deliverFunds(
        address _recipient,
        uint256 _value,
        string memory _message
    ) internal {
        (bool sent, ) = payable(_recipient).call{value: _value}("");

        require(sent, _message);
    }

    function _deliverTokens(
        address _token,
        address _recipient,
        uint256 _value
    ) internal {
        IERC20(_token).safeTransfer(_recipient, _value);
    }

    function _withdraw(address _recipient, uint256 _amount) internal virtual {
        require(_recipient != address(0x0), "CryptoDrop Loto: address is zero");
        require(
            _amount <= address(this).balance,
            "CryptoDrop Loto: not enought BNB balance"
        );

        _afterWithdraw(_recipient, _amount);

        _deliverFunds(_recipient, _amount, "CryptoDrop Loto: Can't send BNB");
        emit Withdraw(_recipient, _amount);
    }

    function _afterWithdraw(address _recipient, uint256 _amount)
        internal
        virtual
    {}

    function _withdrawToken(
        address _token,
        address _recipient,
        uint256 _amount
    ) internal virtual {
        require(_recipient != address(0x0), "CryptoDrop Loto: address is zero");
        require(
            _amount <= IERC20(_token).balanceOf(address(this)),
            "CryptoDrop Loto: not enought token balance"
        );

        IERC20(_token).safeTransfer(_recipient, _amount);

        _afterWithdrawToken(_token, _recipient, _amount);

        emit WithdrawToken(_token, _recipient, _amount);
    }

    function _afterWithdrawToken(
        address _token,
        address _recipient,
        uint256 _amount
    ) internal virtual {}
}


// Dependency file: contracts/common/meta-transactions/ContentMixin.sol


// pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// Dependency file: contracts/common/meta-transactions/Initializable.sol


// pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}


// Dependency file: contracts/common/meta-transactions/EIP712Base.sol


// pragma solidity ^0.8.0;

// import {Initializable} from "contracts/common/meta-transactions/Initializable.sol";

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

// Dependency file: contracts/common/meta-transactions/NativeMetaTransaction.sol


// pragma solidity ^0.8.0;

// import {SafeMath} from  "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import {EIP712Base} from "contracts/common/meta-transactions/EIP712Base.sol";

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}


// Root file: contracts/SNC.sol


pragma solidity ^0.8.9;

// import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
// import "@openzeppelin/contracts/utils/Counters.sol";
// import "@openzeppelin/contracts/security/Pausable.sol";
// import "@openzeppelin/contracts/utils/Strings.sol";
// import "@openzeppelin/contracts/access/AccessControl.sol";
// import "contracts/traits/WithdrawalElement.sol";


// import "contracts/common/meta-transactions/ContentMixin.sol";
// import "contracts/common/meta-transactions/NativeMetaTransaction.sol";

contract OwnableDelegateProxy {}

/**
 * Used to delegate ownership of a contract to another address, to save on unneeded transactions to approve contract use for users
 */
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}


/// @title SNC collection smart contract
contract SNC is ERC721Enumerable, Pausable, AccessControl, WithdrawalElement, ContextMixin, NativeMetaTransaction {
    using Strings for uint256;
    using Counters for Counters.Counter;

    uint256 internal constant MAX_TOTAL_SUPPLY = 10000;

    string public baseTokenURI;

    string public baseHash;

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

    event UpdateBaseTokenURI(string baseTokenURI);
    event Mint(address to, uint256 tokenId);
    event SetBaseHash(string hash);

    bool lockTransfers;

    mapping(address => bool) public allowedAddresses;

    event UpdateLockTranfers(bool lockTransfers);

    address proxyRegistryAddress;

    /// @notice constructor

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _baseHash,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(MINTER_ROLE, _msgSender());

        baseHash = _baseHash;

        lockTransfers = true;

        proxyRegistryAddress = _proxyRegistryAddress;

        _initializeEIP712(_name);
    }

    receive() external payable {}

    /// @dev check max total supply
    modifier checkMaxTotalSupply() {
        require(totalSupply() < maxTotalSupply(), "SNC: total supply reached");
        _;
    }

    modifier onlyAdminOrMinter() {
        require(
            hasRole(DEFAULT_ADMIN_ROLE, _msgSender()) ||
                hasRole(MINTER_ROLE, _msgSender()),
            "Zombie Cupcakes: only admin or minter"
        );
        _;
    }

    /// @notice mint tokens to address
    /// @param _to recipient
    /// @dev _tokenId tokenId

    function mint(address _to, uint256 _tokenId)
        external
        onlyAdminOrMinter
        checkMaxTotalSupply
        whenNotPaused
    {
        _safeMint(_to, _tokenId);
        emit Mint(_to, _tokenId);
    }

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

    /// @notice pause contract
    function pause() external onlyRole(DEFAULT_ADMIN_ROLE) {
        _pause();
    }

    /// @notice unpause contract
    function unpause() external onlyRole(DEFAULT_ADMIN_ROLE) {
        _unpause();
    }



    /// @notice update base token uri
    /// @param _baseTokenURI URI
    /// @dev from owner
    function updateBaseTokenURI(string memory _baseTokenURI)
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        baseTokenURI = _baseTokenURI;
        emit UpdateBaseTokenURI(_baseTokenURI);
    }
    
    function contractURI() public view returns (string memory) {
        return "https://mint.shazu.io/static/contract.json";
    }

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

    function maxTotalSupply() public view virtual returns (uint256) {
        return MAX_TOTAL_SUPPLY;
    }

     /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

     /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }

    /// @notice grant minter role to account
    /// @param _account user address
    /// @dev only admin can do it
    function grantMinterRoleTo(address _account)
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        grantRole(MINTER_ROLE, _account);
    }

    /// @notice revoke minter role from account
    /// @param _account user address
    /// @dev only admin can do it

    function revokeMinterRoleFrom(address _account)
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        revokeRole(MINTER_ROLE, _account);
    }

    /// @notice check if account is minter
    /// @param _account user address

    function isMinter(address _account) external view returns (bool) {
        return hasRole(MINTER_ROLE, _account);
    }

    /// @notice check if account is admin
    /// @param _account user address

    function isAdmin(address _account) external view returns (bool) {
        return hasRole(DEFAULT_ADMIN_ROLE, _account);
    }

    /// @notice check token is exists
    /// @param _tokenId tokenId

    function isExists(uint256 _tokenId) external view returns (bool) {
        return _exists(_tokenId);
    }

    /// @notice management function. Withdraw all tokens in emergency mode only when contract paused
    function withdrawToken(address _token, address _recipient)
        external
        virtual
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        uint256 amount = IERC20(_token).balanceOf(address(this));

        _withdrawToken(_token, _recipient, amount);
        _afterWithdrawToken(_token, _recipient, amount);
    }

    /// @notice management function. Withdraw  some tokens in emergency mode only when contract paused
    function withdrawSomeToken(
        address _token,
        address _recipient,
        uint256 _amount
    ) public virtual onlyRole(DEFAULT_ADMIN_ROLE) {
        _withdrawToken(_token, _recipient, _amount);
        _afterWithdrawToken(_token, _recipient, _amount);
    }

    ///@notice withdraw all BNB. Withdraw in emergency mode only when contract paused
    function withdraw() external virtual onlyRole(DEFAULT_ADMIN_ROLE) {
        _withdraw(_msgSender(), address(this).balance);
    }

    ///@notice withdraw some BNB. Withdraw in emergency mode only when contract paused
    function withdrawSome(address _recipient, uint256 _amount)
        external
        virtual
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        _withdraw(_recipient, _amount);
    }

    function addToAllowedAddress(address[] memory _accounts)
        external
        virtual
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        for (uint256 i = 0; i < _accounts.length; i++) {
            allowedAddresses[_accounts[i]] = true;
        }
    }

    function removeFromAllowedAddress(address[] memory _accounts)
        external
        virtual
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        for (uint256 i = 0; i < _accounts.length; i++) {
            allowedAddresses[_accounts[i]] = false;
        }
    }

    function updateLock(bool _lockTransfers)
        external
        virtual
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        lockTransfers = _lockTransfers;

        emit UpdateLockTranfers(_lockTransfers);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        if (lockTransfers) {
            require(
                from == address(0x0) || allowedAddresses[from],
                "SNC: tranfer is temporarily unavailable"
            );
        }

        super._beforeTokenTransfer(from, to, tokenId);
    }

    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(), ".json"))
                : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseHash","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"hash","type":"string"}],"name":"SetBaseHash","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"UpdateBaseTokenURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"lockTransfers","type":"bool"}],"name":"UpdateLockTranfers","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawToken","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"addToAllowedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"grantMinterRoleTo","outputs":[],"stateMutability":"nonpayable","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":"_account","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"removeFromAllowedAddress","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":"address","name":"_account","type":"address"}],"name":"revokeMinterRoleFrom","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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"updateBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_lockTransfers","type":"bool"}],"name":"updateLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawSome","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawSomeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600c805460ff191690553480156200001b57600080fd5b506040516200525f3803806200525f8339810160408190526200003e91620004be565b835184908490620000579060009060208501906200034b565b5080516200006d9060019060208401906200034b565b5050600a805460ff19169055506200009060006200008a62000114565b62000130565b620000bf7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200008a62000114565b8151620000d49060109060208501906200034b565b506011805460ff19166001179055601380546001600160a01b0383166001600160a01b03199091161790556200010a8462000140565b50505050620005ae565b60006200012b620001a460201b62001fda1760201c565b905090565b6200013c828262000203565b5050565b600c5460ff1615620001895760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b6200019481620002a9565b50600c805460ff19166001179055565b600033301415620001fd57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002009050565b50335b90565b6000828152600b602090815260408083206001600160a01b038516845290915290205460ff166200013c576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200026562000114565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6040518060800160405280604f815260200162005210604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600d55565b828054620003599062000571565b90600052602060002090601f0160209004810192826200037d5760008555620003c8565b82601f106200039857805160ff1916838001178555620003c8565b82800160010185558215620003c8579182015b82811115620003c8578251825591602001919060010190620003ab565b50620003d6929150620003da565b5090565b5b80821115620003d65760008155600101620003db565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200041957600080fd5b81516001600160401b0380821115620004365762000436620003f1565b604051601f8301601f19908116603f01168101908282118183101715620004615762000461620003f1565b816040528381526020925086838588010111156200047e57600080fd5b600091505b83821015620004a2578582018301518183018401529082019062000483565b83821115620004b45760008385830101525b9695505050505050565b60008060008060808587031215620004d557600080fd5b84516001600160401b0380821115620004ed57600080fd5b620004fb8883890162000407565b955060208701519150808211156200051257600080fd5b620005208883890162000407565b945060408701519150808211156200053757600080fd5b50620005468782880162000407565b606087015190935090506001600160a01b03811681146200056657600080fd5b939692955090935050565b600181811c908216806200058657607f821691505b60208210811415620005a857634e487b7160e01b600052602260045260246000fd5b50919050565b614c5280620005be6000396000f3fe60806040526004361061032d5760003560e01c806342842e0e116101a5578063a217fddf116100ec578063c87b56dd11610095578063d547cfb71161006f578063d547cfb71461096f578063e288bdcd14610984578063e8a3d485146109a4578063e985e9c5146109b957600080fd5b8063c87b56dd146108fb578063d53913931461091b578063d547741f1461094f57600080fd5b8063aed1d9ae116100c6578063aed1d9ae1461089b578063b1209cfe146108bb578063b88d4fde146108db57600080fd5b8063a217fddf14610846578063a22cb4651461085b578063aa271e1a1461087b57600080fd5b806370a082311161014e57806395d89b411161012857806395d89b41146107f15780639d36788e14610806578063a1f910571461082657600080fd5b806370a08231146107695780638456cb591461078957806391d148541461079e57600080fd5b80635c975abb1161017f5780635c975abb146107115780636352211e14610729578063655391c91461074957600080fd5b806342842e0e146106bc578063441af61a146106dc5780634f6ccce7146106f157600080fd5b80632b51c7c011610274578063340c8cc01161021d5780633ccfd60b116101f75780633ccfd60b146106425780633f4ba83a1461065757806340c10f191461066c5780634120657a1461068c57600080fd5b8063340c8cc0146105e257806336568abe146106025780633aeac4e11461062257600080fd5b80632f2ff15d1161024e5780632f2ff15d1461058f5780632f745c59146105af5780633408e470146105cf57600080fd5b80632b51c7c01461050c5780632d0335ab1461052c5780632d7d6dd31461056f57600080fd5b806318160ddd116102d6578063248a9ca3116102b0578063248a9ca3146104a757806324d7806c146104d75780632ab4d052146104f757600080fd5b806318160ddd1461045357806320379ee51461047257806323b872dd1461048757600080fd5b8063095ea7b311610307578063095ea7b3146103d55780630c53c51c146103f75780630f7e59701461040a57600080fd5b806301ffc9a71461033957806306fdde031461036e578063081812fc1461039057600080fd5b3661033457005b600080fd5b34801561034557600080fd5b50610359610354366004614255565b6109d9565b60405190151581526020015b60405180910390f35b34801561037a57600080fd5b50610383610b19565b60405161036591906142e8565b34801561039c57600080fd5b506103b06103ab3660046142fb565b610bab565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610365565b3480156103e157600080fd5b506103f56103f0366004614336565b610c8a565b005b610383610405366004614476565b610e36565b34801561041657600080fd5b506103836040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561045f57600080fd5b506008545b604051908152602001610365565b34801561047e57600080fd5b50600d54610464565b34801561049357600080fd5b506103f56104a23660046144f4565b6110c2565b3480156104b357600080fd5b506104646104c23660046142fb565b6000908152600b602052604090206001015490565b3480156104e357600080fd5b506103596104f2366004614535565b61116a565b34801561050357600080fd5b50612710610464565b34801561051857600080fd5b506103f56105273660046144f4565b6111b7565b34801561053857600080fd5b50610464610547366004614535565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205490565b34801561057b57600080fd5b506103f561058a366004614535565b6111db565b34801561059b57600080fd5b506103f56105aa366004614552565b611217565b3480156105bb57600080fd5b506104646105ca366004614336565b61123f565b3480156105db57600080fd5b5046610464565b3480156105ee57600080fd5b506103f56105fd366004614336565b61130e565b34801561060e57600080fd5b506103f561061d366004614552565b611326565b34801561062e57600080fd5b506103f561063d366004614582565b6113f2565b34801561064e57600080fd5b506103f56114b2565b34801561066357600080fd5b506103f56114d4565b34801561067857600080fd5b506103f5610687366004614336565b6114ea565b34801561069857600080fd5b506103596106a7366004614535565b60126020526000908152604090205460ff1681565b3480156106c857600080fd5b506103f56106d73660046144f4565b6116ed565b3480156106e857600080fd5b50610383611708565b3480156106fd57600080fd5b5061046461070c3660046142fb565b611796565b34801561071d57600080fd5b50600a5460ff16610359565b34801561073557600080fd5b506103b06107443660046142fb565b611854565b34801561075557600080fd5b506103f56107643660046145b0565b611906565b34801561077557600080fd5b50610464610784366004614535565b611957565b34801561079557600080fd5b506103f5611a25565b3480156107aa57600080fd5b506103596107b9366004614552565b6000918252600b6020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b3480156107fd57600080fd5b50610383611a3b565b34801561081257600080fd5b506103596108213660046142fb565b611a4a565b34801561083257600080fd5b506103f5610841366004614607565b611a76565b34801561085257600080fd5b50610464600081565b34801561086757600080fd5b506103f5610876366004614624565b611ae3565b34801561088757600080fd5b50610359610896366004614535565b611af5565b3480156108a757600080fd5b506103f56108b6366004614652565b611b42565b3480156108c757600080fd5b506103f56108d6366004614535565b611be3565b3480156108e757600080fd5b506103f56108f63660046146f8565b611c1b565b34801561090757600080fd5b506103836109163660046142fb565b611cc4565b34801561092757600080fd5b506104647f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b34801561095b57600080fd5b506103f561096a366004614552565b611dd4565b34801561097b57600080fd5b50610383611dfc565b34801561099057600080fd5b506103f561099f366004614652565b611e09565b3480156109b057600080fd5b50610383611eaa565b3480156109c557600080fd5b506103596109d4366004614582565b611eca565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610a6c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ab857507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610b0457507fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000145b80610b135750610b1382612044565b92915050565b606060008054610b2890614764565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5490614764565b8015610ba15780601f10610b7657610100808354040283529160200191610ba1565b820191906000526020600020905b815481529060010190602001808311610b8457829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610c61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610c9582611854565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610c58565b8073ffffffffffffffffffffffffffffffffffffffff16610d7261209a565b73ffffffffffffffffffffffffffffffffffffffff161480610d9b5750610d9b816109d461209a565b610e27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c58565b610e3183836120a9565b505050565b604080516060818101835273ffffffffffffffffffffffffffffffffffffffff88166000818152600e602090815290859020548452830152918101869052610e818782878787612149565b610f0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f68000000000000000000000000000000000000000000000000000000000000006064820152608401610c58565b73ffffffffffffffffffffffffffffffffffffffff87166000908152600e6020526040902054610f3e906001612292565b73ffffffffffffffffffffffffffffffffffffffff88166000908152600e60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610f9b90899033908a906147b8565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610fd09291906147fa565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905261100891614844565b6000604051808303816000865af19150503d8060008114611045576040519150601f19603f3d011682016040523d82523d6000602084013e61104a565b606091505b5091509150816110b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610c58565b98975050505050505050565b6110d36110cd61209a565b8261229e565b61115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c58565b610e318383836123d9565b73ffffffffffffffffffffffffffffffffffffffff811660009081527fdf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f76602052604081205460ff16610b13565b60006111ca816111c561209a565b61264b565b6111d584848461271d565b50505050565b60006111e9816111c561209a565b6112137f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a683611217565b5050565b6000828152600b6020526040902060010154611235816111c561209a565b610e318383612944565b600061124a83611957565b82106112d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610c58565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b600061131c816111c561209a565b610e318383612a39565b61132e61209a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610c58565b6112138282612bd2565b6000611400816111c561209a565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8516906370a082319060240160206040518083038186803b15801561146857600080fd5b505afa15801561147c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a09190614860565b90506114ad84848361271d565b6111d5565b60006114c0816111c561209a565b6114d16114cb61209a565b47612a39565b50565b60006114e2816111c561209a565b6114d1612cc5565b6114f760006107b961209a565b8061152957506115297f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107b961209a565b6115b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f5a6f6d6269652043757063616b65733a206f6e6c792061646d696e206f72206d60448201527f696e7465720000000000000000000000000000000000000000000000000000006064820152608401610c58565b61271060085410611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f534e433a20746f74616c20737570706c792072656163686564000000000000006044820152606401610c58565b600a5460ff161561168f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610c58565b6116998282612dac565b6040805173ffffffffffffffffffffffffffffffffffffffff84168152602081018390527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688591015b60405180910390a15050565b610e3183838360405180602001604052806000815250611c1b565b6010805461171590614764565b80601f016020809104026020016040519081016040528092919081815260200182805461174190614764565b801561178e5780601f106117635761010080835404028352916020019161178e565b820191906000526020600020905b81548152906001019060200180831161177157829003601f168201915b505050505081565b60006117a160085490565b821061182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610c58565b6008828154811061184257611842614879565b90600052602060002001549050919050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610b13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610c58565b6000611914816111c561209a565b815161192790600f90602085019061418e565b507f4e8d63553c1791c07e40597b1fb9d034bf66392afb6e00eb163ba43b308e8bba826040516116e191906142e8565b600073ffffffffffffffffffffffffffffffffffffffff82166119fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610c58565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b6000611a33816111c561209a565b6114d1612dc6565b606060018054610b2890614764565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff161515610b13565b6000611a84816111c561209a565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168315159081179091556040519081527f029adfa3bff6b69ca9dc2db3986edbf48dba4335c7b51248be6c8d299dbb1600906020016116e1565b611213611aee61209a565b8383612e87565b73ffffffffffffffffffffffffffffffffffffffff811660009081527ff70e363b3d7895af770c4a138460777d52eebd3cb9962ccc6b58721f6127bbc8602052604081205460ff16610b13565b6000611b50816111c561209a565b60005b8251811015610e3157600060126000858481518110611b7457611b74614879565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580611bdb816148d7565b915050611b53565b6000611bf1816111c561209a565b6112137f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a683611dd4565b611c2c611c2661209a565b8361229e565b611cb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c58565b6111d584848484612fb5565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611d78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c58565b6000611d82613058565b90506000815111611da25760405180602001604052806000815250611dcd565b80611dac84613067565b604051602001611dbd929190614910565b6040516020818303038152906040525b9392505050565b6000828152600b6020526040902060010154611df2816111c561209a565b610e318383612bd2565b600f805461171590614764565b6000611e17816111c561209a565b60005b8251811015610e3157600160126000858481518110611e3b57611e3b614879565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580611ea2816148d7565b915050611e1a565b60606040518060600160405280602a8152602001614bb0602a9139905090565b6013546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611f3d57600080fd5b505afa158015611f51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f759190614967565b73ffffffffffffffffffffffffffffffffffffffff161415611f9b576001915050610b13565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b60003330141561203e57600080368080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050505036015173ffffffffffffffffffffffffffffffffffffffff1691506120419050565b50335b90565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610b135750610b1382613199565b60006120a4611fda565b905090565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061210382611854565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff86166121ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e45520000000000000000000000000000000000000000000000000000006064820152608401610c58565b60016122016121fc876131ef565b613279565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561224f573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b6000611dcd8284614984565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1661234f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610c58565b600061235a83611854565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123c957508373ffffffffffffffffffffffffffffffffffffffff166123b184610bab565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fd25750611fd28185611eca565b8273ffffffffffffffffffffffffffffffffffffffff166123f982611854565b73ffffffffffffffffffffffffffffffffffffffff161461249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610c58565b73ffffffffffffffffffffffffffffffffffffffff821661253e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c58565b6125498383836132c4565b6125546000826120a9565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812080546001929061258a90849061499c565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906125c5908490614984565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16611213576126a38173ffffffffffffffffffffffffffffffffffffffff1660146133ae565b6126ae8360206133ae565b6040516020016126bf9291906149b3565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a0000000000000000000000000000000000000000000000000000000008252610c58916004016142e8565b73ffffffffffffffffffffffffffffffffffffffff821661279a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f43727970746f44726f70204c6f746f3a2061646472657373206973207a65726f6044820152606401610c58565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8416906370a082319060240160206040518083038186803b1580156127ff57600080fd5b505afa158015612813573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128379190614860565b8111156128c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f43727970746f44726f70204c6f746f3a206e6f7420656e6f7567687420746f6b60448201527f656e2062616c616e6365000000000000000000000000000000000000000000006064820152608401610c58565b6128e773ffffffffffffffffffffffffffffffffffffffff841683836135f1565b6040805173ffffffffffffffffffffffffffffffffffffffff8086168252841660208201529081018290527f037238854fe57fbf51f09946f854fc3916fe83938d6521f09bd05463839f13049060600160405180910390a1505050565b6000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16611213576000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556129db61209a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b73ffffffffffffffffffffffffffffffffffffffff8216612ab6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f43727970746f44726f70204c6f746f3a2061646472657373206973207a65726f6044820152606401610c58565b47811115612b46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f43727970746f44726f70204c6f746f3a206e6f7420656e6f7567687420424e4260448201527f2062616c616e63650000000000000000000000000000000000000000000000006064820152608401610c58565b612b8682826040518060400160405280601f81526020017f43727970746f44726f70204c6f746f3a2043616e27742073656e6420424e420081525061367e565b6040805173ffffffffffffffffffffffffffffffffffffffff84168152602081018390527f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436491016116e1565b6000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1615611213576000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055612c6761209a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600a5460ff16612d31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610c58565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612d8261209a565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b611213828260405180602001604052806000815250613722565b600a5460ff1615612e33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610c58565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612d8261209a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c58565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612fc08484846123d9565b612fcc848484846137c5565b6111d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c58565b6060600f8054610b2890614764565b6060816130a757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156130d157806130bb816148d7565b91506130ca9050600a83614a63565b91506130ab565b60008167ffffffffffffffff8111156130ec576130ec614362565b6040519080825280601f01601f191660200182016040528015613116576020820181803683370190505b5090505b8415611fd25761312b60018361499c565b9150613138600a86614a77565b613143906030614984565b60f81b81838151811061315857613158614879565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613192600a86614a63565b945061311a565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610b135750610b13826139b2565b6000604051806080016040528060438152602001614bda604391398051602091820120835184830151604080870151805190860120905161325c9501938452602084019290925273ffffffffffffffffffffffffffffffffffffffff166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000613284600d5490565b6040517f1901000000000000000000000000000000000000000000000000000000000000602082015260228101919091526042810183905260620161325c565b60115460ff16156133a35773ffffffffffffffffffffffffffffffffffffffff83161580613317575073ffffffffffffffffffffffffffffffffffffffff831660009081526012602052604090205460ff165b6133a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f534e433a207472616e6665722069732074656d706f726172696c7920756e617660448201527f61696c61626c65000000000000000000000000000000000000000000000000006064820152608401610c58565b610e31838383613a95565b606060006133bd836002614a8b565b6133c8906002614984565b67ffffffffffffffff8111156133e0576133e0614362565b6040519080825280601f01601f19166020018201604052801561340a576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061344157613441614879565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106134a4576134a4614879565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006134e0846002614a8b565b6134eb906001614984565b90505b6001811115613588577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061352c5761352c614879565b1a60f81b82828151811061354257613542614879565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c9361358181614ac8565b90506134ee565b508315611dcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c58565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610e31908490613b9b565b60008373ffffffffffffffffffffffffffffffffffffffff168360405160006040518083038185875af1925050503d80600081146136d8576040519150601f19603f3d011682016040523d82523d6000602084013e6136dd565b606091505b5050905080829061371b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5891906142e8565b5050505050565b61372c8383613ca7565b61373960008484846137c5565b610e31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c58565b600073ffffffffffffffffffffffffffffffffffffffff84163b156139a7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261380861209a565b8786866040518563ffffffff1660e01b815260040161382a9493929190614afd565b602060405180830381600087803b15801561384457600080fd5b505af1925050508015613892575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261388f91810190614b46565b60015b61395c573d8080156138c0576040519150601f19603f3d011682016040523d82523d6000602084013e6138c5565b606091505b508051613954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c58565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611fd2565b506001949350505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480613a4557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b1357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610b13565b73ffffffffffffffffffffffffffffffffffffffff8316613afd57613af881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613b3a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613b3a57613b3a8382613e75565b73ffffffffffffffffffffffffffffffffffffffff8216613b5e57610e3181613f2c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610e3157610e318282613fdb565b6000613bfd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661402c9092919063ffffffff16565b805190915015610e315780806020019051810190613c1b9190614b63565b610e31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610c58565b73ffffffffffffffffffffffffffffffffffffffff8216613d24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c58565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615613db0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c58565b613dbc600083836132c4565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290613df2908490614984565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613e8284611957565b613e8c919061499c565b600083815260076020526040902054909150808214613eec5773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b600854600090613f3e9060019061499c565b60008381526009602052604081205460088054939450909284908110613f6657613f66614879565b906000526020600020015490508060088381548110613f8757613f87614879565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613fbf57613fbf614b80565b6001900381819060005260206000200160009055905550505050565b6000613fe683611957565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6060611fd284846000858573ffffffffffffffffffffffffffffffffffffffff85163b6140b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c58565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516140de9190614844565b60006040518083038185875af1925050503d806000811461411b576040519150601f19603f3d011682016040523d82523d6000602084013e614120565b606091505b509150915061413082828661413b565b979650505050505050565b6060831561414a575081611dcd565b82511561415a5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5891906142e8565b82805461419a90614764565b90600052602060002090601f0160209004810192826141bc5760008555614202565b82601f106141d557805160ff1916838001178555614202565b82800160010185558215614202579182015b828111156142025782518255916020019190600101906141e7565b5061420e929150614212565b5090565b5b8082111561420e5760008155600101614213565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146114d157600080fd5b60006020828403121561426757600080fd5b8135611dcd81614227565b60005b8381101561428d578181015183820152602001614275565b838111156111d55750506000910152565b600081518084526142b6816020860160208601614272565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611dcd602083018461429e565b60006020828403121561430d57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff811681146114d157600080fd5b6000806040838503121561434957600080fd5b823561435481614314565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156143d8576143d8614362565b604052919050565b600067ffffffffffffffff8311156143fa576143fa614362565b61442b60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601614391565b905082815283838301111561443f57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261446757600080fd5b611dcd838335602085016143e0565b600080600080600060a0868803121561448e57600080fd5b853561449981614314565b9450602086013567ffffffffffffffff8111156144b557600080fd5b6144c188828901614456565b9450506040860135925060608601359150608086013560ff811681146144e657600080fd5b809150509295509295909350565b60008060006060848603121561450957600080fd5b833561451481614314565b9250602084013561452481614314565b929592945050506040919091013590565b60006020828403121561454757600080fd5b8135611dcd81614314565b6000806040838503121561456557600080fd5b82359150602083013561457781614314565b809150509250929050565b6000806040838503121561459557600080fd5b82356145a081614314565b9150602083013561457781614314565b6000602082840312156145c257600080fd5b813567ffffffffffffffff8111156145d957600080fd5b8201601f810184136145ea57600080fd5b611fd2848235602084016143e0565b80151581146114d157600080fd5b60006020828403121561461957600080fd5b8135611dcd816145f9565b6000806040838503121561463757600080fd5b823561464281614314565b91506020830135614577816145f9565b6000602080838503121561466557600080fd5b823567ffffffffffffffff8082111561467d57600080fd5b818501915085601f83011261469157600080fd5b8135818111156146a3576146a3614362565b8060051b91506146b4848301614391565b81815291830184019184810190888411156146ce57600080fd5b938501935b838510156110b657843592506146e883614314565b82825293850193908501906146d3565b6000806000806080858703121561470e57600080fd5b843561471981614314565b9350602085013561472981614314565b925060408501359150606085013567ffffffffffffffff81111561474c57600080fd5b61475887828801614456565b91505092959194509250565b600181811c9082168061477857607f821691505b602082108114156147b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600073ffffffffffffffffffffffffffffffffffffffff8086168352808516602084015250606060408301526147f1606083018461429e565b95945050505050565b6000835161480c818460208801614272565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b60008251614856818460208701614272565b9190910192915050565b60006020828403121561487257600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614909576149096148a8565b5060010190565b60008351614922818460208801614272565b835190830190614936818360208801614272565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006020828403121561497957600080fd5b8151611dcd81614314565b60008219821115614997576149976148a8565b500190565b6000828210156149ae576149ae6148a8565b500390565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516149eb816017850160208801614272565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351614a28816028840160208801614272565b01602801949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614a7257614a72614a34565b500490565b600082614a8657614a86614a34565b500690565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ac357614ac36148a8565b500290565b600081614ad757614ad76148a8565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152614b3c608083018461429e565b9695505050505050565b600060208284031215614b5857600080fd5b8151611dcd81614227565b600060208284031215614b7557600080fd5b8151611dcd816145f9565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe68747470733a2f2f6d696e742e7368617a752e696f2f7374617469632f636f6e74726163742e6a736f6e4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220a1bddc50f20ef0f84550197a1f1cd905e54d1f6c7a8e922b41be14285560bf4764736f6c63430008090033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000165368617a75204e696e6a6120436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000003534e430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004030613034316465333830303238626566623663633063383036666536653163343638373831343363323138636332666561396364343461333634643631366461

Deployed Bytecode

0x60806040526004361061032d5760003560e01c806342842e0e116101a5578063a217fddf116100ec578063c87b56dd11610095578063d547cfb71161006f578063d547cfb71461096f578063e288bdcd14610984578063e8a3d485146109a4578063e985e9c5146109b957600080fd5b8063c87b56dd146108fb578063d53913931461091b578063d547741f1461094f57600080fd5b8063aed1d9ae116100c6578063aed1d9ae1461089b578063b1209cfe146108bb578063b88d4fde146108db57600080fd5b8063a217fddf14610846578063a22cb4651461085b578063aa271e1a1461087b57600080fd5b806370a082311161014e57806395d89b411161012857806395d89b41146107f15780639d36788e14610806578063a1f910571461082657600080fd5b806370a08231146107695780638456cb591461078957806391d148541461079e57600080fd5b80635c975abb1161017f5780635c975abb146107115780636352211e14610729578063655391c91461074957600080fd5b806342842e0e146106bc578063441af61a146106dc5780634f6ccce7146106f157600080fd5b80632b51c7c011610274578063340c8cc01161021d5780633ccfd60b116101f75780633ccfd60b146106425780633f4ba83a1461065757806340c10f191461066c5780634120657a1461068c57600080fd5b8063340c8cc0146105e257806336568abe146106025780633aeac4e11461062257600080fd5b80632f2ff15d1161024e5780632f2ff15d1461058f5780632f745c59146105af5780633408e470146105cf57600080fd5b80632b51c7c01461050c5780632d0335ab1461052c5780632d7d6dd31461056f57600080fd5b806318160ddd116102d6578063248a9ca3116102b0578063248a9ca3146104a757806324d7806c146104d75780632ab4d052146104f757600080fd5b806318160ddd1461045357806320379ee51461047257806323b872dd1461048757600080fd5b8063095ea7b311610307578063095ea7b3146103d55780630c53c51c146103f75780630f7e59701461040a57600080fd5b806301ffc9a71461033957806306fdde031461036e578063081812fc1461039057600080fd5b3661033457005b600080fd5b34801561034557600080fd5b50610359610354366004614255565b6109d9565b60405190151581526020015b60405180910390f35b34801561037a57600080fd5b50610383610b19565b60405161036591906142e8565b34801561039c57600080fd5b506103b06103ab3660046142fb565b610bab565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610365565b3480156103e157600080fd5b506103f56103f0366004614336565b610c8a565b005b610383610405366004614476565b610e36565b34801561041657600080fd5b506103836040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561045f57600080fd5b506008545b604051908152602001610365565b34801561047e57600080fd5b50600d54610464565b34801561049357600080fd5b506103f56104a23660046144f4565b6110c2565b3480156104b357600080fd5b506104646104c23660046142fb565b6000908152600b602052604090206001015490565b3480156104e357600080fd5b506103596104f2366004614535565b61116a565b34801561050357600080fd5b50612710610464565b34801561051857600080fd5b506103f56105273660046144f4565b6111b7565b34801561053857600080fd5b50610464610547366004614535565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205490565b34801561057b57600080fd5b506103f561058a366004614535565b6111db565b34801561059b57600080fd5b506103f56105aa366004614552565b611217565b3480156105bb57600080fd5b506104646105ca366004614336565b61123f565b3480156105db57600080fd5b5046610464565b3480156105ee57600080fd5b506103f56105fd366004614336565b61130e565b34801561060e57600080fd5b506103f561061d366004614552565b611326565b34801561062e57600080fd5b506103f561063d366004614582565b6113f2565b34801561064e57600080fd5b506103f56114b2565b34801561066357600080fd5b506103f56114d4565b34801561067857600080fd5b506103f5610687366004614336565b6114ea565b34801561069857600080fd5b506103596106a7366004614535565b60126020526000908152604090205460ff1681565b3480156106c857600080fd5b506103f56106d73660046144f4565b6116ed565b3480156106e857600080fd5b50610383611708565b3480156106fd57600080fd5b5061046461070c3660046142fb565b611796565b34801561071d57600080fd5b50600a5460ff16610359565b34801561073557600080fd5b506103b06107443660046142fb565b611854565b34801561075557600080fd5b506103f56107643660046145b0565b611906565b34801561077557600080fd5b50610464610784366004614535565b611957565b34801561079557600080fd5b506103f5611a25565b3480156107aa57600080fd5b506103596107b9366004614552565b6000918252600b6020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b3480156107fd57600080fd5b50610383611a3b565b34801561081257600080fd5b506103596108213660046142fb565b611a4a565b34801561083257600080fd5b506103f5610841366004614607565b611a76565b34801561085257600080fd5b50610464600081565b34801561086757600080fd5b506103f5610876366004614624565b611ae3565b34801561088757600080fd5b50610359610896366004614535565b611af5565b3480156108a757600080fd5b506103f56108b6366004614652565b611b42565b3480156108c757600080fd5b506103f56108d6366004614535565b611be3565b3480156108e757600080fd5b506103f56108f63660046146f8565b611c1b565b34801561090757600080fd5b506103836109163660046142fb565b611cc4565b34801561092757600080fd5b506104647f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b34801561095b57600080fd5b506103f561096a366004614552565b611dd4565b34801561097b57600080fd5b50610383611dfc565b34801561099057600080fd5b506103f561099f366004614652565b611e09565b3480156109b057600080fd5b50610383611eaa565b3480156109c557600080fd5b506103596109d4366004614582565b611eca565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610a6c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ab857507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610b0457507fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000145b80610b135750610b1382612044565b92915050565b606060008054610b2890614764565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5490614764565b8015610ba15780601f10610b7657610100808354040283529160200191610ba1565b820191906000526020600020905b815481529060010190602001808311610b8457829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610c61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610c9582611854565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610c58565b8073ffffffffffffffffffffffffffffffffffffffff16610d7261209a565b73ffffffffffffffffffffffffffffffffffffffff161480610d9b5750610d9b816109d461209a565b610e27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c58565b610e3183836120a9565b505050565b604080516060818101835273ffffffffffffffffffffffffffffffffffffffff88166000818152600e602090815290859020548452830152918101869052610e818782878787612149565b610f0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f68000000000000000000000000000000000000000000000000000000000000006064820152608401610c58565b73ffffffffffffffffffffffffffffffffffffffff87166000908152600e6020526040902054610f3e906001612292565b73ffffffffffffffffffffffffffffffffffffffff88166000908152600e60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610f9b90899033908a906147b8565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610fd09291906147fa565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905261100891614844565b6000604051808303816000865af19150503d8060008114611045576040519150601f19603f3d011682016040523d82523d6000602084013e61104a565b606091505b5091509150816110b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610c58565b98975050505050505050565b6110d36110cd61209a565b8261229e565b61115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c58565b610e318383836123d9565b73ffffffffffffffffffffffffffffffffffffffff811660009081527fdf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f76602052604081205460ff16610b13565b60006111ca816111c561209a565b61264b565b6111d584848461271d565b50505050565b60006111e9816111c561209a565b6112137f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a683611217565b5050565b6000828152600b6020526040902060010154611235816111c561209a565b610e318383612944565b600061124a83611957565b82106112d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610c58565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b600061131c816111c561209a565b610e318383612a39565b61132e61209a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610c58565b6112138282612bd2565b6000611400816111c561209a565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8516906370a082319060240160206040518083038186803b15801561146857600080fd5b505afa15801561147c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a09190614860565b90506114ad84848361271d565b6111d5565b60006114c0816111c561209a565b6114d16114cb61209a565b47612a39565b50565b60006114e2816111c561209a565b6114d1612cc5565b6114f760006107b961209a565b8061152957506115297f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107b961209a565b6115b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f5a6f6d6269652043757063616b65733a206f6e6c792061646d696e206f72206d60448201527f696e7465720000000000000000000000000000000000000000000000000000006064820152608401610c58565b61271060085410611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f534e433a20746f74616c20737570706c792072656163686564000000000000006044820152606401610c58565b600a5460ff161561168f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610c58565b6116998282612dac565b6040805173ffffffffffffffffffffffffffffffffffffffff84168152602081018390527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688591015b60405180910390a15050565b610e3183838360405180602001604052806000815250611c1b565b6010805461171590614764565b80601f016020809104026020016040519081016040528092919081815260200182805461174190614764565b801561178e5780601f106117635761010080835404028352916020019161178e565b820191906000526020600020905b81548152906001019060200180831161177157829003601f168201915b505050505081565b60006117a160085490565b821061182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610c58565b6008828154811061184257611842614879565b90600052602060002001549050919050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610b13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610c58565b6000611914816111c561209a565b815161192790600f90602085019061418e565b507f4e8d63553c1791c07e40597b1fb9d034bf66392afb6e00eb163ba43b308e8bba826040516116e191906142e8565b600073ffffffffffffffffffffffffffffffffffffffff82166119fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610c58565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b6000611a33816111c561209a565b6114d1612dc6565b606060018054610b2890614764565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff161515610b13565b6000611a84816111c561209a565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168315159081179091556040519081527f029adfa3bff6b69ca9dc2db3986edbf48dba4335c7b51248be6c8d299dbb1600906020016116e1565b611213611aee61209a565b8383612e87565b73ffffffffffffffffffffffffffffffffffffffff811660009081527ff70e363b3d7895af770c4a138460777d52eebd3cb9962ccc6b58721f6127bbc8602052604081205460ff16610b13565b6000611b50816111c561209a565b60005b8251811015610e3157600060126000858481518110611b7457611b74614879565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580611bdb816148d7565b915050611b53565b6000611bf1816111c561209a565b6112137f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a683611dd4565b611c2c611c2661209a565b8361229e565b611cb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c58565b6111d584848484612fb5565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611d78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c58565b6000611d82613058565b90506000815111611da25760405180602001604052806000815250611dcd565b80611dac84613067565b604051602001611dbd929190614910565b6040516020818303038152906040525b9392505050565b6000828152600b6020526040902060010154611df2816111c561209a565b610e318383612bd2565b600f805461171590614764565b6000611e17816111c561209a565b60005b8251811015610e3157600160126000858481518110611e3b57611e3b614879565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580611ea2816148d7565b915050611e1a565b60606040518060600160405280602a8152602001614bb0602a9139905090565b6013546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611f3d57600080fd5b505afa158015611f51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f759190614967565b73ffffffffffffffffffffffffffffffffffffffff161415611f9b576001915050610b13565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b60003330141561203e57600080368080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050505036015173ffffffffffffffffffffffffffffffffffffffff1691506120419050565b50335b90565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610b135750610b1382613199565b60006120a4611fda565b905090565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061210382611854565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff86166121ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e45520000000000000000000000000000000000000000000000000000006064820152608401610c58565b60016122016121fc876131ef565b613279565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561224f573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b6000611dcd8284614984565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1661234f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610c58565b600061235a83611854565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123c957508373ffffffffffffffffffffffffffffffffffffffff166123b184610bab565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fd25750611fd28185611eca565b8273ffffffffffffffffffffffffffffffffffffffff166123f982611854565b73ffffffffffffffffffffffffffffffffffffffff161461249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610c58565b73ffffffffffffffffffffffffffffffffffffffff821661253e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c58565b6125498383836132c4565b6125546000826120a9565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812080546001929061258a90849061499c565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906125c5908490614984565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16611213576126a38173ffffffffffffffffffffffffffffffffffffffff1660146133ae565b6126ae8360206133ae565b6040516020016126bf9291906149b3565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a0000000000000000000000000000000000000000000000000000000008252610c58916004016142e8565b73ffffffffffffffffffffffffffffffffffffffff821661279a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f43727970746f44726f70204c6f746f3a2061646472657373206973207a65726f6044820152606401610c58565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8416906370a082319060240160206040518083038186803b1580156127ff57600080fd5b505afa158015612813573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128379190614860565b8111156128c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f43727970746f44726f70204c6f746f3a206e6f7420656e6f7567687420746f6b60448201527f656e2062616c616e6365000000000000000000000000000000000000000000006064820152608401610c58565b6128e773ffffffffffffffffffffffffffffffffffffffff841683836135f1565b6040805173ffffffffffffffffffffffffffffffffffffffff8086168252841660208201529081018290527f037238854fe57fbf51f09946f854fc3916fe83938d6521f09bd05463839f13049060600160405180910390a1505050565b6000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16611213576000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556129db61209a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b73ffffffffffffffffffffffffffffffffffffffff8216612ab6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f43727970746f44726f70204c6f746f3a2061646472657373206973207a65726f6044820152606401610c58565b47811115612b46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f43727970746f44726f70204c6f746f3a206e6f7420656e6f7567687420424e4260448201527f2062616c616e63650000000000000000000000000000000000000000000000006064820152608401610c58565b612b8682826040518060400160405280601f81526020017f43727970746f44726f70204c6f746f3a2043616e27742073656e6420424e420081525061367e565b6040805173ffffffffffffffffffffffffffffffffffffffff84168152602081018390527f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436491016116e1565b6000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1615611213576000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055612c6761209a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600a5460ff16612d31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610c58565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612d8261209a565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b611213828260405180602001604052806000815250613722565b600a5460ff1615612e33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610c58565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612d8261209a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c58565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612fc08484846123d9565b612fcc848484846137c5565b6111d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c58565b6060600f8054610b2890614764565b6060816130a757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156130d157806130bb816148d7565b91506130ca9050600a83614a63565b91506130ab565b60008167ffffffffffffffff8111156130ec576130ec614362565b6040519080825280601f01601f191660200182016040528015613116576020820181803683370190505b5090505b8415611fd25761312b60018361499c565b9150613138600a86614a77565b613143906030614984565b60f81b81838151811061315857613158614879565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613192600a86614a63565b945061311a565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610b135750610b13826139b2565b6000604051806080016040528060438152602001614bda604391398051602091820120835184830151604080870151805190860120905161325c9501938452602084019290925273ffffffffffffffffffffffffffffffffffffffff166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000613284600d5490565b6040517f1901000000000000000000000000000000000000000000000000000000000000602082015260228101919091526042810183905260620161325c565b60115460ff16156133a35773ffffffffffffffffffffffffffffffffffffffff83161580613317575073ffffffffffffffffffffffffffffffffffffffff831660009081526012602052604090205460ff165b6133a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f534e433a207472616e6665722069732074656d706f726172696c7920756e617660448201527f61696c61626c65000000000000000000000000000000000000000000000000006064820152608401610c58565b610e31838383613a95565b606060006133bd836002614a8b565b6133c8906002614984565b67ffffffffffffffff8111156133e0576133e0614362565b6040519080825280601f01601f19166020018201604052801561340a576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061344157613441614879565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106134a4576134a4614879565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006134e0846002614a8b565b6134eb906001614984565b90505b6001811115613588577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061352c5761352c614879565b1a60f81b82828151811061354257613542614879565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c9361358181614ac8565b90506134ee565b508315611dcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c58565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610e31908490613b9b565b60008373ffffffffffffffffffffffffffffffffffffffff168360405160006040518083038185875af1925050503d80600081146136d8576040519150601f19603f3d011682016040523d82523d6000602084013e6136dd565b606091505b5050905080829061371b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5891906142e8565b5050505050565b61372c8383613ca7565b61373960008484846137c5565b610e31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c58565b600073ffffffffffffffffffffffffffffffffffffffff84163b156139a7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261380861209a565b8786866040518563ffffffff1660e01b815260040161382a9493929190614afd565b602060405180830381600087803b15801561384457600080fd5b505af1925050508015613892575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261388f91810190614b46565b60015b61395c573d8080156138c0576040519150601f19603f3d011682016040523d82523d6000602084013e6138c5565b606091505b508051613954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c58565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611fd2565b506001949350505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480613a4557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b1357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610b13565b73ffffffffffffffffffffffffffffffffffffffff8316613afd57613af881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613b3a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613b3a57613b3a8382613e75565b73ffffffffffffffffffffffffffffffffffffffff8216613b5e57610e3181613f2c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610e3157610e318282613fdb565b6000613bfd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661402c9092919063ffffffff16565b805190915015610e315780806020019051810190613c1b9190614b63565b610e31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610c58565b73ffffffffffffffffffffffffffffffffffffffff8216613d24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c58565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615613db0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c58565b613dbc600083836132c4565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290613df2908490614984565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613e8284611957565b613e8c919061499c565b600083815260076020526040902054909150808214613eec5773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b600854600090613f3e9060019061499c565b60008381526009602052604081205460088054939450909284908110613f6657613f66614879565b906000526020600020015490508060088381548110613f8757613f87614879565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613fbf57613fbf614b80565b6001900381819060005260206000200160009055905550505050565b6000613fe683611957565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6060611fd284846000858573ffffffffffffffffffffffffffffffffffffffff85163b6140b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c58565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516140de9190614844565b60006040518083038185875af1925050503d806000811461411b576040519150601f19603f3d011682016040523d82523d6000602084013e614120565b606091505b509150915061413082828661413b565b979650505050505050565b6060831561414a575081611dcd565b82511561415a5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5891906142e8565b82805461419a90614764565b90600052602060002090601f0160209004810192826141bc5760008555614202565b82601f106141d557805160ff1916838001178555614202565b82800160010185558215614202579182015b828111156142025782518255916020019190600101906141e7565b5061420e929150614212565b5090565b5b8082111561420e5760008155600101614213565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146114d157600080fd5b60006020828403121561426757600080fd5b8135611dcd81614227565b60005b8381101561428d578181015183820152602001614275565b838111156111d55750506000910152565b600081518084526142b6816020860160208601614272565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611dcd602083018461429e565b60006020828403121561430d57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff811681146114d157600080fd5b6000806040838503121561434957600080fd5b823561435481614314565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156143d8576143d8614362565b604052919050565b600067ffffffffffffffff8311156143fa576143fa614362565b61442b60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601614391565b905082815283838301111561443f57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261446757600080fd5b611dcd838335602085016143e0565b600080600080600060a0868803121561448e57600080fd5b853561449981614314565b9450602086013567ffffffffffffffff8111156144b557600080fd5b6144c188828901614456565b9450506040860135925060608601359150608086013560ff811681146144e657600080fd5b809150509295509295909350565b60008060006060848603121561450957600080fd5b833561451481614314565b9250602084013561452481614314565b929592945050506040919091013590565b60006020828403121561454757600080fd5b8135611dcd81614314565b6000806040838503121561456557600080fd5b82359150602083013561457781614314565b809150509250929050565b6000806040838503121561459557600080fd5b82356145a081614314565b9150602083013561457781614314565b6000602082840312156145c257600080fd5b813567ffffffffffffffff8111156145d957600080fd5b8201601f810184136145ea57600080fd5b611fd2848235602084016143e0565b80151581146114d157600080fd5b60006020828403121561461957600080fd5b8135611dcd816145f9565b6000806040838503121561463757600080fd5b823561464281614314565b91506020830135614577816145f9565b6000602080838503121561466557600080fd5b823567ffffffffffffffff8082111561467d57600080fd5b818501915085601f83011261469157600080fd5b8135818111156146a3576146a3614362565b8060051b91506146b4848301614391565b81815291830184019184810190888411156146ce57600080fd5b938501935b838510156110b657843592506146e883614314565b82825293850193908501906146d3565b6000806000806080858703121561470e57600080fd5b843561471981614314565b9350602085013561472981614314565b925060408501359150606085013567ffffffffffffffff81111561474c57600080fd5b61475887828801614456565b91505092959194509250565b600181811c9082168061477857607f821691505b602082108114156147b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600073ffffffffffffffffffffffffffffffffffffffff8086168352808516602084015250606060408301526147f1606083018461429e565b95945050505050565b6000835161480c818460208801614272565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b60008251614856818460208701614272565b9190910192915050565b60006020828403121561487257600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614909576149096148a8565b5060010190565b60008351614922818460208801614272565b835190830190614936818360208801614272565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006020828403121561497957600080fd5b8151611dcd81614314565b60008219821115614997576149976148a8565b500190565b6000828210156149ae576149ae6148a8565b500390565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516149eb816017850160208801614272565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351614a28816028840160208801614272565b01602801949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614a7257614a72614a34565b500490565b600082614a8657614a86614a34565b500690565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ac357614ac36148a8565b500290565b600081614ad757614ad76148a8565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152614b3c608083018461429e565b9695505050505050565b600060208284031215614b5857600080fd5b8151611dcd81614227565b600060208284031215614b7557600080fd5b8151611dcd816145f9565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe68747470733a2f2f6d696e742e7368617a752e696f2f7374617469632f636f6e74726163742e6a736f6e4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220a1bddc50f20ef0f84550197a1f1cd905e54d1f6c7a8e922b41be14285560bf4764736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000165368617a75204e696e6a6120436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000003534e430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004030613034316465333830303238626566623663633063383036666536653163343638373831343363323138636332666561396364343461333634643631366461

-----Decoded View---------------
Arg [0] : _name (string): Shazu Ninja Collection
Arg [1] : _symbol (string): SNC
Arg [2] : _baseHash (string): 0a041de380028befb6cc0c806fe6e1c46878143c218cc2fea9cd44a364d616da
Arg [3] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [5] : 5368617a75204e696e6a6120436f6c6c656374696f6e00000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 534e430000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [9] : 3061303431646533383030323862656662366363306338303666653665316334
Arg [10] : 3638373831343363323138636332666561396364343461333634643631366461


Deployed Bytecode Sourcemap

82555:8529:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84548:502;;;;;;;;;;-1:-1:-1;84548:502:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;84548:502:0;;;;;;;;23325:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24884:221::-;;;;;;;;;;-1:-1:-1;24884:221:0;;;;;:::i;:::-;;:::i;:::-;;;1809:42:1;1797:55;;;1779:74;;1767:2;1752:18;24884:221:0;1633:226:1;24407:411:0;;;;;;;;;;-1:-1:-1;24407:411:0;;;;;:::i;:::-;;:::i;:::-;;79470:1151;;;;;;:::i;:::-;;:::i;76456:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38460:113;;;;;;;;;;-1:-1:-1;38548:10:0;:17;38460:113;;;4698:25:1;;;4686:2;4671:18;38460:113:0;4552:177:1;77465:101:0;;;;;;;;;;-1:-1:-1;77543:15:0;;77465:101;;25634:339;;;;;;;;;;-1:-1:-1;25634:339:0;;;;;:::i;:::-;;:::i;55161:131::-;;;;;;;;;;-1:-1:-1;55161:131:0;;;;;:::i;:::-;55235:7;55262:12;;;:6;:12;;;;;:22;;;;55161:131;87757:127;;;;;;;;;;-1:-1:-1;87757:127:0;;;;;:::i;:::-;;:::i;85886:106::-;;;;;;;;;;-1:-1:-1;82797:5:0;85886:106;;88621:279;;;;;;;;;;-1:-1:-1;88621:279:0;;;;;:::i;:::-;;:::i;81047:107::-;;;;;;;;;;-1:-1:-1;81047:107:0;;;;;:::i;:::-;81134:12;;81100:13;81134:12;;;:6;:12;;;;;;;81047:107;87003:157;;;;;;;;;;-1:-1:-1;87003:157:0;;;;;:::i;:::-;;:::i;55554:147::-;;;;;;;;;;-1:-1:-1;55554:147:0;;;;;:::i;:::-;;:::i;38128:256::-;;;;;;;;;;-1:-1:-1;38128:256:0;;;;;:::i;:::-;;:::i;77574:161::-;;;;;;;;;;-1:-1:-1;77688:9:0;77574:161;;89222:186;;;;;;;;;;-1:-1:-1;89222:186:0;;;;;:::i;:::-;;:::i;56602:218::-;;;;;;;;;;-1:-1:-1;56602:218:0;;;;;:::i;:::-;;:::i;88184:325::-;;;;;;;;;;-1:-1:-1;88184:325:0;;;;;:::i;:::-;;:::i;88995:131::-;;;;;;;;;;;;;:::i;85214:86::-;;;;;;;;;;;;;:::i;84315:225::-;;;;;;;;;;-1:-1:-1;84315:225:0;;;;;:::i;:::-;;:::i;83112:48::-;;;;;;;;;;-1:-1:-1;83112:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26044:185;;;;;;;;;;-1:-1:-1;26044:185:0;;;;;:::i;:::-;;:::i;82846:22::-;;;;;;;;;;;;;:::i;38650:233::-;;;;;;;;;;-1:-1:-1;38650:233:0;;;;;:::i;:::-;;:::i;46649:86::-;;;;;;;;;;-1:-1:-1;46720:7:0;;;;46649:86;;23019:239;;;;;;;;;;-1:-1:-1;23019:239:0;;;;;:::i;:::-;;:::i;85410:214::-;;;;;;;;;;-1:-1:-1;85410:214:0;;;;;:::i;:::-;;:::i;22749:208::-;;;;;;;;;;-1:-1:-1;22749:208:0;;;;;:::i;:::-;;:::i;85090:82::-;;;;;;;;;;;;;:::i;54030:147::-;;;;;;;;;;-1:-1:-1;54030:147:0;;;;;:::i;:::-;54116:4;54140:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;;;;54030:147;23494:104;;;;;;;;;;;;;:::i;87966:108::-;;;;;;;;;;-1:-1:-1;87966:108:0;;;;;:::i;:::-;;:::i;89966:220::-;;;;;;;;;;-1:-1:-1;89966:220:0;;;;;:::i;:::-;;:::i;53121:49::-;;;;;;;;;;-1:-1:-1;53121:49:0;53166:4;53121:49;;25177:155;;;;;;;;;;-1:-1:-1;25177:155:0;;;;;:::i;:::-;;:::i;87545:121::-;;;;;;;;;;-1:-1:-1;87545:121:0;;;;;:::i;:::-;;:::i;89688:270::-;;;;;;;;;;-1:-1:-1;89688:270:0;;;;;:::i;:::-;;:::i;87292:161::-;;;;;;;;;;-1:-1:-1;87292:161:0;;;;;:::i;:::-;;:::i;26300:328::-;;;;;;;;;;-1:-1:-1;26300:328:0;;;;;:::i;:::-;;:::i;90604:477::-;;;;;;;;;;-1:-1:-1;90604:477:0;;;;;:::i;:::-;;:::i;82877:62::-;;;;;;;;;;;;82915:24;82877:62;;55946:149;;;;;;;;;;-1:-1:-1;55946:149:0;;;;;:::i;:::-;;:::i;82811:26::-;;;;;;;;;;;;;:::i;89416:264::-;;;;;;;;;;-1:-1:-1;89416:264:0;;;;;:::i;:::-;;:::i;85636:129::-;;;;;;;;;;;;;:::i;86125:445::-;;;;;;;;;;-1:-1:-1;86125:445:0;;;;;:::i;:::-;;:::i;84548:502::-;84711:4;84753:40;;;84768:25;84753:40;;:105;;-1:-1:-1;84810:48:0;;;84825:33;84810:48;84753:105;:172;;;-1:-1:-1;84875:50:0;;;84890:35;84875:50;84753:172;:236;;;-1:-1:-1;84942:47:0;;;84957:32;84942:47;84753:236;:289;;;;85006:36;85030:11;85006:23;:36::i;:::-;84733:309;84548:502;-1:-1:-1;;84548:502:0:o;23325:100::-;23379:13;23412:5;23405:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23325:100;:::o;24884:221::-;24960:7;28227:16;;;:7;:16;;;;;;:30;:16;24980:73;;;;;;;10078:2:1;24980:73:0;;;10060:21:1;10117:2;10097:18;;;10090:30;10156:34;10136:18;;;10129:62;10227:14;10207:18;;;10200:42;10259:19;;24980:73:0;;;;;;;;;-1:-1:-1;25073:24:0;;;;:15;:24;;;;;;;;;24884:221::o;24407:411::-;24488:13;24504:23;24519:7;24504:14;:23::i;:::-;24488:39;;24552:5;24546:11;;:2;:11;;;;24538:57;;;;;;;10491:2:1;24538:57:0;;;10473:21:1;10530:2;10510:18;;;10503:30;10569:34;10549:18;;;10542:62;10640:3;10620:18;;;10613:31;10661:19;;24538:57:0;10289:397:1;24538:57:0;24646:5;24630:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24655:37;24672:5;24679:12;:10;:12::i;24655:37::-;24608:168;;;;;;;10893:2:1;24608:168:0;;;10875:21:1;10932:2;10912:18;;;10905:30;10971:34;10951:18;;;10944:62;11042:26;11022:18;;;11015:54;11086:19;;24608:168:0;10691:420:1;24608:168:0;24789:21;24798:2;24802:7;24789:8;:21::i;:::-;24477:341;24407:411;;:::o;79470:1151::-;79728:152;;;79671:12;79728:152;;;;;79766:19;;;79696:29;79766:19;;;:6;:19;;;;;;;;;79728:152;;;;;;;;;;;79915:45;79773:11;79728:152;79943:4;79949;79955;79915:6;:45::i;:::-;79893:128;;;;;;;11318:2:1;79893:128:0;;;11300:21:1;11357:2;11337:18;;;11330:30;11396:34;11376:18;;;11369:62;11467:3;11447:18;;;11440:31;11488:19;;79893:128:0;11116:397:1;79893:128:0;80110:19;;;;;;;:6;:19;;;;;;:26;;80134:1;80110:23;:26::i;:::-;80088:19;;;;;;;:6;:19;;;;;;;:48;;;;80154:126;;;;;80095:11;;80226:10;;80252:17;;80154:126;:::i;:::-;;;;;;;;80391:12;80405:23;80440:4;80432:18;;80482:17;80501:11;80465:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;80432:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80390:134;;;;80543:7;80535:48;;;;;;;12914:2:1;80535:48:0;;;12896:21:1;12953:2;12933:18;;;12926:30;12992;12972:18;;;12965:58;13040:18;;80535:48:0;12712:352:1;80535:48:0;80603:10;79470:1151;-1:-1:-1;;;;;;;;79470:1151:0:o;25634:339::-;25829:41;25848:12;:10;:12::i;:::-;25862:7;25829:18;:41::i;:::-;25821:103;;;;;;;13271:2:1;25821:103:0;;;13253:21:1;13310:2;13290:18;;;13283:30;13349:34;13329:18;;;13322:62;13420:19;13400:18;;;13393:47;13457:19;;25821:103:0;13069:413:1;25821:103:0;25937:28;25947:4;25953:2;25957:7;25937:9;:28::i;87757:127::-;54140:29;;;87815:4;54140:29;;;:12;;:29;:12;:29;;;;;87839:37;54030:147;88621:279;53166:4;53612:30;53166:4;53629:12;:10;:12::i;:::-;53612:10;:30::i;:::-;88790:43:::1;88805:6;88813:10;88825:7;88790:14;:43::i;:::-;88621:279:::0;;;;:::o;87003:157::-;53166:4;53612:30;53166:4;53629:12;:10;:12::i;53612:30::-;87120:32:::1;82915:24;87143:8;87120:9;:32::i;:::-;87003:157:::0;;:::o;55554:147::-;55235:7;55262:12;;;:6;:12;;;;;:22;;;53612:30;53623:4;53629:12;:10;:12::i;53612:30::-;55668:25:::1;55679:4;55685:7;55668:10;:25::i;38128:256::-:0;38225:7;38261:23;38278:5;38261:16;:23::i;:::-;38253:5;:31;38245:87;;;;;;;13689:2:1;38245:87:0;;;13671:21:1;13728:2;13708:18;;;13701:30;13767:34;13747:18;;;13740:62;13838:13;13818:18;;;13811:41;13869:19;;38245:87:0;13487:407:1;38245:87:0;-1:-1:-1;38350:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38128:256::o;89222:186::-;53166:4;53612:30;53166:4;53629:12;:10;:12::i;53612:30::-;89370::::1;89380:10;89392:7;89370:9;:30::i;56602:218::-:0;56709:12;:10;:12::i;:::-;56698:23;;:7;:23;;;56690:83;;;;;;;14101:2:1;56690:83:0;;;14083:21:1;14140:2;14120:18;;;14113:30;14179:34;14159:18;;;14152:62;14250:17;14230:18;;;14223:45;14285:19;;56690:83:0;13899:411:1;56690:83:0;56786:26;56798:4;56804:7;56786:11;:26::i;88184:325::-;53166:4;53612:30;53166:4;53629:12;:10;:12::i;53612:30::-;88349:39:::1;::::0;;;;88382:4:::1;88349:39;::::0;::::1;1779:74:1::0;88332:14:0::1;::::0;88349:24:::1;::::0;::::1;::::0;::::1;::::0;1752:18:1;;88349:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;88332:56;;88401:42;88416:6;88424:10;88436:6;88401:14;:42::i;:::-;88454:47;24407:411:::0;88995:131;53166:4;53612:30;53166:4;53629:12;:10;:12::i;53612:30::-;89072:46:::1;89082:12;:10;:12::i;:::-;89096:21;89072:9;:46::i;:::-;88995:131:::0;:::o;85214:86::-;53166:4;53612:30;53166:4;53629:12;:10;:12::i;53612:30::-;85282:10:::1;:8;:10::i;84315:225::-:0;84023:41;53166:4;84051:12;:10;:12::i;84023:41::-;:96;;;;84085:34;82915:24;84106:12;:10;:12::i;84085:34::-;84001:183;;;;;;;14706:2:1;84001:183:0;;;14688:21:1;14745:2;14725:18;;;14718:30;14784:34;14764:18;;;14757:62;14855:7;14835:18;;;14828:35;14880:19;;84001:183:0;14504:401:1;84001:183:0;82797:5;38548:10;:17;83871:32:::1;83863:70;;;::::0;::::1;::::0;;15112:2:1;83863:70:0::1;::::0;::::1;15094:21:1::0;15151:2;15131:18;;;15124:30;15190:27;15170:18;;;15163:55;15235:18;;83863:70:0::1;14910:349:1::0;83863:70:0::1;46720:7:::0;;;;46974:9:::2;46966:38;;;::::0;::::2;::::0;;15466:2:1;46966:38:0::2;::::0;::::2;15448:21:1::0;15505:2;15485:18;;;15478:30;15544:18;15524;;;15517:46;15580:18;;46966:38:0::2;15264:340:1::0;46966:38:0::2;84473:24:::3;84483:3;84488:8;84473:9;:24::i;:::-;84513:19;::::0;;15813:42:1;15801:55;;15783:74;;15888:2;15873:18;;15866:34;;;84513:19:0::3;::::0;15756:18:1;84513:19:0::3;;;;;;;;84315:225:::0;;:::o;26044:185::-;26182:39;26199:4;26205:2;26209:7;26182:39;;;;;;;;;;;;:16;:39::i;82846:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38650:233::-;38725:7;38761:30;38548:10;:17;;38460:113;38761:30;38753:5;:38;38745:95;;;;;;;16113:2:1;38745:95:0;;;16095:21:1;16152:2;16132:18;;;16125:30;16191:34;16171:18;;;16164:62;16262:14;16242:18;;;16235:42;16294:19;;38745:95:0;15911:408:1;38745:95:0;38858:10;38869:5;38858:17;;;;;;;;:::i;:::-;;;;;;;;;38851:24;;38650:233;;;:::o;23019:239::-;23091:7;23127:16;;;:7;:16;;;;;;;;23162:19;23154:73;;;;;;;16715:2:1;23154:73:0;;;16697:21:1;16754:2;16734:18;;;16727:30;16793:34;16773:18;;;16766:62;16864:11;16844:18;;;16837:39;16893:19;;23154:73:0;16513:405:1;85410:214:0;53166:4;53612:30;53166:4;53629:12;:10;:12::i;53612:30::-;85539:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;85583:33;85602:13;85583:33;;;;;;:::i;22749:208::-:0;22821:7;22849:19;;;22841:74;;;;;;;17125:2:1;22841:74:0;;;17107:21:1;17164:2;17144:18;;;17137:30;17203:34;17183:18;;;17176:62;17274:12;17254:18;;;17247:40;17304:19;;22841:74:0;16923:406:1;22841:74:0;-1:-1:-1;22933:16:0;;;;;;:9;:16;;;;;;;22749:208::o;85090:82::-;53166:4;53612:30;53166:4;53629:12;:10;:12::i;53612:30::-;85156:8:::1;:6;:8::i;23494:104::-:0;23550:13;23583:7;23576:14;;;;;:::i;87966:108::-;88025:4;28227:16;;;:7;:16;;;;;;:30;:16;:30;;88049:17;28138:127;89966:220;53166:4;53612:30;53166:4;53629:12;:10;:12::i;53612:30::-;90096:13:::1;:30:::0;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;90144:34:::1;::::0;586:41:1;;;90144:34:0::1;::::0;574:2:1;559:18;90144:34:0::1;446:187:1::0;25177:155:0;25272:52;25291:12;:10;:12::i;:::-;25305:8;25315;25272:18;:52::i;87545:121::-;54140:29;;;87604:4;54140:29;;;:12;;:29;:12;:29;;;;;87628:30;54030:147;89688:270;53166:4;53612:30;53166:4;53629:12;:10;:12::i;53612:30::-;89844:9:::1;89839:112;89863:9;:16;89859:1;:20;89839:112;;;89934:5;89901:16;:30;89918:9;89928:1;89918:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;89901:30:::1;;::::0;;;::::1;::::0;;;;;;-1:-1:-1;89901:30:0;:38;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;89881:3;::::1;::::0;::::1;:::i;:::-;;;;89839:112;;87292:161:::0;53166:4;53612:30;53166:4;53629:12;:10;:12::i;53612:30::-;87412:33:::1;82915:24;87436:8;87412:10;:33::i;26300:328::-:0;26475:41;26494:12;:10;:12::i;:::-;26508:7;26475:18;:41::i;:::-;26467:103;;;;;;;13271:2:1;26467:103:0;;;13253:21:1;13310:2;13290:18;;;13283:30;13349:34;13329:18;;;13322:62;13420:19;13400:18;;;13393:47;13457:19;;26467:103:0;13069:413:1;26467:103:0;26581:39;26595:4;26601:2;26605:7;26614:5;26581:13;:39::i;90604:477::-;28203:4;28227:16;;;:7;:16;;;;;;90722:13;;28227:30;:16;90753:113;;;;;;;17925:2:1;90753:113:0;;;17907:21:1;17964:2;17944:18;;;17937:30;18003:34;17983:18;;;17976:62;18074:17;18054:18;;;18047:45;18109:19;;90753:113:0;17723:411:1;90753:113:0;90879:21;90903:10;:8;:10::i;:::-;90879:34;;90968:1;90950:7;90944:21;:25;:129;;;;;;;;;;;;;;;;;91013:7;91022:18;:7;:16;:18::i;:::-;90996:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;90944:129;90924:149;90604:477;-1:-1:-1;;;90604:477:0:o;55946:149::-;55235:7;55262:12;;;:6;:12;;;;;:22;;;53612:30;53623:4;53629:12;:10;:12::i;53612:30::-;56061:26:::1;56073:4;56079:7;56061:11;:26::i;82811:::-:0;;;;;;;:::i;89416:264::-;53166:4;53612:30;53166:4;53629:12;:10;:12::i;53612:30::-;89567:9:::1;89562:111;89586:9;:16;89582:1;:20;89562:111;;;89657:4;89624:16;:30;89641:9;89651:1;89641:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;89624:30:::1;;::::0;;;::::1;::::0;;;;;;-1:-1:-1;89624:30:0;:37;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;89604:3;::::1;::::0;::::1;:::i;:::-;;;;89562:111;;85636:129:::0;85680:13;85706:51;;;;;;;;;;;;;;;;;;;85636:129;:::o;86125:445::-;86379:20;;86423:28;;;;;86379:20;1797:55:1;;;86423:28:0;;;1779:74:1;86250:4:0;;86379:20;;;86415:49;;;;86379:20;;86423:21;;1752:18:1;;86423:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;86415:49;;;86411:93;;;86488:4;86481:11;;;;;86411:93;25524:25;;;;25500:4;25524:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;86523:39;86516:46;86125:445;-1:-1:-1;;;;86125:445:0:o;68088:650::-;68159:22;68203:10;68225:4;68203:27;68199:508;;;68247:18;68268:8;;68247:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;68307:8:0;68518:17;68512:24;68559:42;68486:134;;-1:-1:-1;68199:508:0;;-1:-1:-1;68199:508:0;;-1:-1:-1;68684:10:0;68199:508;68088:650;:::o;53734:204::-;53819:4;53843:47;;;53858:32;53843:47;;:87;;;53894:36;53918:11;53894:23;:36::i;86715:161::-;86805:14;86844:24;:22;:24::i;:::-;86837:31;;86715:161;:::o;32284:174::-;32359:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;32413:23;32359:24;32413:14;:23::i;:::-;32404:46;;;;;;;;;;;;32284:174;;:::o;81162:486::-;81340:4;81365:20;;;81357:70;;;;;;;19268:2:1;81357:70:0;;;19250:21:1;19307:2;19287:18;;;19280:30;19346:34;19326:18;;;19319:62;19417:7;19397:18;;;19390:35;19442:19;;81357:70:0;19066:401:1;81357:70:0;81481:159;81509:47;81528:27;81548:6;81528:19;:27::i;:::-;81509:18;:47::i;:::-;81481:159;;;;;;;;;;;;19699:25:1;;;;19772:4;19760:17;;19740:18;;;19733:45;19794:18;;;19787:34;;;19837:18;;;19830:34;;;19671:19;;81481:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81458:182;;:6;:182;;;81438:202;;81162:486;;;;;;;:::o;71621:98::-;71679:7;71706:5;71710:1;71706;:5;:::i;28432:348::-;28525:4;28227:16;;;:7;:16;;;;;;:30;:16;28542:73;;;;;;;20210:2:1;28542:73:0;;;20192:21:1;20249:2;20229:18;;;20222:30;20288:34;20268:18;;;20261:62;20359:14;20339:18;;;20332:42;20391:19;;28542:73:0;20008:408:1;28542:73:0;28626:13;28642:23;28657:7;28642:14;:23::i;:::-;28626:39;;28695:5;28684:16;;:7;:16;;;:51;;;;28728:7;28704:31;;:20;28716:7;28704:11;:20::i;:::-;:31;;;28684:51;:87;;;;28739:32;28756:5;28763:7;28739:16;:32::i;31541:625::-;31700:4;31673:31;;:23;31688:7;31673:14;:23::i;:::-;:31;;;31665:81;;;;;;;20623:2:1;31665:81:0;;;20605:21:1;20662:2;20642:18;;;20635:30;20701:34;20681:18;;;20674:62;20772:7;20752:18;;;20745:35;20797:19;;31665:81:0;20421:401:1;31665:81:0;31765:16;;;31757:65;;;;;;;21029:2:1;31757:65:0;;;21011:21:1;21068:2;21048:18;;;21041:30;21107:34;21087:18;;;21080:62;21178:6;21158:18;;;21151:34;21202:19;;31757:65:0;20827:400:1;31757:65:0;31835:39;31856:4;31862:2;31866:7;31835:20;:39::i;:::-;31939:29;31956:1;31960:7;31939:8;:29::i;:::-;31981:15;;;;;;;:9;:15;;;;;:20;;32000:1;;31981:15;:20;;32000:1;;31981:20;:::i;:::-;;;;-1:-1:-1;;32012:13:0;;;;;;;:9;:13;;;;;:18;;32029:1;;32012:13;:18;;32029:1;;32012:18;:::i;:::-;;;;-1:-1:-1;;32041:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;32080:27;;32041:16;;32080:27;;;;;;;24477:341;24407:411;;:::o;54467:505::-;54116:4;54140:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;54551:414;;54744:41;54772:7;54744:41;;54782:2;54744:19;:41::i;:::-;54858:38;54886:4;54893:2;54858:19;:38::i;:::-;54649:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;54595:358;;;;;;;;:::i;67238:553::-;67385:26;;;67377:71;;;;;;;22355:2:1;67377:71:0;;;22337:21:1;;;22374:18;;;22367:30;22433:34;22413:18;;;22406:62;22485:18;;67377:71:0;22153:356:1;67377:71:0;67492:39;;;;;67525:4;67492:39;;;1779:74:1;67492:24:0;;;;;;1752:18:1;;67492:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67481:7;:50;;67459:142;;;;;;;22716:2:1;67459:142:0;;;22698:21:1;22755:2;22735:18;;;22728:30;22794:34;22774:18;;;22767:62;22865:12;22845:18;;;22838:40;22895:19;;67459:142:0;22514:406:1;67459:142:0;67614:48;:27;;;67642:10;67654:7;67614:27;:48::i;:::-;67741:42;;;23137::1;23206:15;;;23188:34;;23258:15;;23253:2;23238:18;;23231:43;23290:18;;;23283:34;;;67741:42:0;;23115:2:1;23100:18;67741:42:0;;;;;;;67238:553;;;:::o;58103:238::-;54116:4;54140:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;58182:152;;58226:12;;;;:6;:12;;;;;;;;:29;;;;;;;;;;:36;;;;58258:4;58226:36;;;58309:12;:10;:12::i;:::-;58282:40;;58300:7;58282:40;;58294:4;58282:40;;;;;;;;;;58103:238;;:::o;66648:471::-;66740:26;;;66732:71;;;;;;;22355:2:1;66732:71:0;;;22337:21:1;;;22374:18;;;22367:30;22433:34;22413:18;;;22406:62;22485:18;;66732:71:0;22153:356:1;66732:71:0;66847:21;66836:7;:32;;66814:122;;;;;;;23530:2:1;66814:122:0;;;23512:21:1;23569:2;23549:18;;;23542:30;23608:34;23588:18;;;23581:62;23679:10;23659:18;;;23652:38;23707:19;;66814:122:0;23328:404:1;66814:122:0;66997:69;67011:10;67023:7;66997:69;;;;;;;;;;;;;;;;;:13;:69::i;:::-;67082:29;;;15813:42:1;15801:55;;15783:74;;15888:2;15873:18;;15866:34;;;67082:29:0;;15756:18:1;67082:29:0;15609:297:1;58473:239:0;54116:4;54140:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;58553:152;;;58628:5;58596:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;:37;;;;;;58680:12;:10;:12::i;:::-;58653:40;;58671:7;58653:40;;58665:4;58653:40;;;;;;;;;;58473:239;;:::o;47708:120::-;46720:7;;;;47244:41;;;;;;;23939:2:1;47244:41:0;;;23921:21:1;23978:2;23958:18;;;23951:30;24017:22;23997:18;;;23990:50;24057:18;;47244:41:0;23737:344:1;47244:41:0;47767:7:::1;:15:::0;;;::::1;::::0;;47798:22:::1;47807:12;:10;:12::i;:::-;47798:22;::::0;1809:42:1;1797:55;;;1779:74;;1767:2;1752:18;47798:22:0::1;;;;;;;47708:120::o:0;29122:110::-;29198:26;29208:2;29212:7;29198:26;;;;;;;;;;;;:9;:26::i;47449:118::-;46720:7;;;;46974:9;46966:38;;;;;;;15466:2:1;46966:38:0;;;15448:21:1;15505:2;15485:18;;;15478:30;15544:18;15524;;;15517:46;15580:18;;46966:38:0;15264:340:1;46966:38:0;47509:7:::1;:14:::0;;;::::1;47519:4;47509:14;::::0;;47539:20:::1;47546:12;:10;:12::i;32600:315::-:0;32755:8;32746:17;;:5;:17;;;;32738:55;;;;;;;24288:2:1;32738:55:0;;;24270:21:1;24327:2;24307:18;;;24300:30;24366:27;24346:18;;;24339:55;24411:18;;32738:55:0;24086:349:1;32738:55:0;32804:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;32866:41;;586::1;;;32866::0;;559:18:1;32866:41:0;;;;;;;32600:315;;;:::o;27510:::-;27667:28;27677:4;27683:2;27687:7;27667:9;:28::i;:::-;27714:48;27737:4;27743:2;27747:7;27756:5;27714:22;:48::i;:::-;27706:111;;;;;;;24642:2:1;27706:111:0;;;24624:21:1;24681:2;24661:18;;;24654:30;24720:34;24700:18;;;24693:62;24791:20;24771:18;;;24764:48;24829:19;;27706:111:0;24440:414:1;85773:105:0;85825:13;85858:12;85851:19;;;;;:::i;17646:723::-;17702:13;17923:10;17919:53;;-1:-1:-1;;17950:10:0;;;;;;;;;;;;;;;;;;17646:723::o;17919:53::-;17997:5;17982:12;18038:78;18045:9;;18038:78;;18071:8;;;;:::i;:::-;;-1:-1:-1;18094:10:0;;-1:-1:-1;18102:2:0;18094:10;;:::i;:::-;;;18038:78;;;18126:19;18158:6;18148:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18148:17:0;;18126:39;;18176:154;18183:10;;18176:154;;18210:11;18220:1;18210:11;;:::i;:::-;;-1:-1:-1;18279:10:0;18287:2;18279:5;:10;:::i;:::-;18266:24;;:2;:24;:::i;:::-;18253:39;;18236:6;18243;18236:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;18307:11:0;18316:2;18307:11;;:::i;:::-;;;18176:154;;37820:224;37922:4;37946:50;;;37961:35;37946:50;;:90;;;38000:36;38024:11;38000:23;:36::i;80629:410::-;80739:7;78806:100;;;;;;;;;;;;;;;;;78786:127;;;;;;;80893:12;;80928:11;;;;80972:24;;;;;80962:35;;;;;;80812:204;;;;;25521:25:1;;;25577:2;25562:18;;25555:34;;;;25637:42;25625:55;25620:2;25605:18;;25598:83;25712:2;25697:18;;25690:34;25508:3;25493:19;;25290:440;80812:204:0;;;;;;;;;;;;;80784:247;;;;;;80764:267;;80629:410;;;:::o;78104:258::-;78203:7;78305:20;77543:15;;;77465:101;78305:20;78276:63;;26005:66:1;78276:63:0;;;25993:79:1;26088:11;;;26081:27;;;;26124:12;;;26117:28;;;26161:12;;78276:63:0;25735:444:1;90194:402:0;90342:13;;;;90338:193;;;90398:20;;;;;:46;;-1:-1:-1;90422:22:0;;;;;;;:16;:22;;;;;;;;90398:46;90372:147;;;;;;;26386:2:1;90372:147:0;;;26368:21:1;26425:2;26405:18;;;26398:30;26464:34;26444:18;;;26437:62;26535:9;26515:18;;;26508:37;26562:19;;90372:147:0;26184:403:1;90372:147:0;90543:45;90570:4;90576:2;90580:7;90543:26;:45::i;18947:451::-;19022:13;19048:19;19080:10;19084:6;19080:1;:10;:::i;:::-;:14;;19093:1;19080:14;:::i;:::-;19070:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19070:25:0;;19048:47;;19106:15;:6;19113:1;19106:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;;19132;:6;19139:1;19132:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;-1:-1:-1;19163:9:0;19175:10;19179:6;19175:1;:10;:::i;:::-;:14;;19188:1;19175:14;:::i;:::-;19163:26;;19158:135;19195:1;19191;:5;19158:135;;;19230:12;19243:5;19251:3;19243:11;19230:25;;;;;;;:::i;:::-;;;;19218:6;19225:1;19218:9;;;;;;;;:::i;:::-;;;;:37;;;;;;;;;;-1:-1:-1;19280:1:0;19270:11;;;;;19198:3;;;:::i;:::-;;;19158:135;;;-1:-1:-1;19311:10:0;;19303:55;;;;;;;27228:2:1;19303:55:0;;;27210:21:1;;;27247:18;;;27240:30;27306:34;27286:18;;;27279:62;27358:18;;19303:55:0;27026:356:1;62438:211:0;62582:58;;;15813:42:1;15801:55;;62582:58:0;;;15783:74:1;15873:18;;;;15866:34;;;62582:58:0;;;;;;;;;;15756:18:1;;;;62582:58:0;;;;;;;;;;62605:23;62582:58;;;62555:86;;62575:5;;62555:19;:86::i;66207:240::-;66345:9;66368:10;66360:24;;66392:6;66360:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66344:59;;;66424:4;66430:8;66416:23;;;;;;;;;;;;;;:::i;:::-;;66333:114;66207:240;;;:::o;29459:321::-;29589:18;29595:2;29599:7;29589:5;:18::i;:::-;29640:54;29671:1;29675:2;29679:7;29688:5;29640:22;:54::i;:::-;29618:154;;;;;;;24642:2:1;29618:154:0;;;24624:21:1;24681:2;24661:18;;;24654:30;24720:34;24700:18;;;24693:62;24791:20;24771:18;;;24764:48;24829:19;;29618:154:0;24440:414:1;33480:799:0;33635:4;33656:13;;;9385:19;:23;33652:620;;33708:2;33692:36;;;33729:12;:10;:12::i;:::-;33743:4;33749:7;33758:5;33692:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33692:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33688:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33934:13:0;;33930:272;;33977:60;;;;;24642:2:1;33977:60:0;;;24624:21:1;24681:2;24661:18;;;24654:30;24720:34;24700:18;;;24693:62;24791:20;24771:18;;;24764:48;24829:19;;33977:60:0;24440:414:1;33930:272:0;34152:6;34146:13;34137:6;34133:2;34129:15;34122:38;33688:529;33815:51;;33825:41;33815:51;;-1:-1:-1;33808:58:0;;33652:620;-1:-1:-1;34256:4:0;33480:799;;;;;;:::o;22380:305::-;22482:4;22519:40;;;22534:25;22519:40;;:105;;-1:-1:-1;22576:48:0;;;22591:33;22576:48;22519:105;:158;;;-1:-1:-1;20478:25:0;20463:40;;;;22641:36;20354:157;39496:589;39702:18;;;39698:187;;39737:40;39769:7;40912:10;:17;;40885:24;;;;:15;:24;;;;;:44;;;40940:24;;;;;;;;;;;;40808:164;39737:40;39698:187;;;39807:2;39799:10;;:4;:10;;;39795:90;;39826:47;39859:4;39865:7;39826:32;:47::i;:::-;39899:16;;;39895:183;;39932:45;39969:7;39932:36;:45::i;39895:183::-;40005:4;39999:10;;:2;:10;;;39995:83;;40026:40;40054:2;40058:7;40026:27;:40::i;65011:716::-;65435:23;65461:69;65489:4;65461:69;;;;;;;;;;;;;;;;;65469:5;65461:27;;;;:69;;;;;:::i;:::-;65545:17;;65435:95;;-1:-1:-1;65545:21:0;65541:179;;65642:10;65631:30;;;;;;;;;;;;:::i;:::-;65623:85;;;;;;;28820:2:1;65623:85:0;;;28802:21:1;28859:2;28839:18;;;28832:30;28898:34;28878:18;;;28871:62;28969:12;28949:18;;;28942:40;28999:19;;65623:85:0;28618:406:1;30116:439:0;30196:16;;;30188:61;;;;;;;29231:2:1;30188:61:0;;;29213:21:1;;;29250:18;;;29243:30;29309:34;29289:18;;;29282:62;29361:18;;30188:61:0;29029:356:1;30188:61:0;28203:4;28227:16;;;:7;:16;;;;;;:30;:16;:30;30260:58;;;;;;;29592:2:1;30260:58:0;;;29574:21:1;29631:2;29611:18;;;29604:30;29670;29650:18;;;29643:58;29718:18;;30260:58:0;29390:352:1;30260:58:0;30331:45;30360:1;30364:2;30368:7;30331:20;:45::i;:::-;30389:13;;;;;;;:9;:13;;;;;:18;;30406:1;;30389:13;:18;;30406:1;;30389:18;:::i;:::-;;;;-1:-1:-1;;30418:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;30457:33;;30418:16;;;30457:33;;30418:16;;30457:33;87003:157;;:::o;41599:988::-;41865:22;41915:1;41890:22;41907:4;41890:16;:22::i;:::-;:26;;;;:::i;:::-;41927:18;41948:26;;;:17;:26;;;;;;41865:51;;-1:-1:-1;42081:28:0;;;42077:328;;42148:18;;;42126:19;42148:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42199:30;;;;;;:44;;;42316:30;;:17;:30;;;;;:43;;;42077:328;-1:-1:-1;42501:26:0;;;;:17;:26;;;;;;;;42494:33;;;42545:18;;;;;;:12;:18;;;;;:34;;;;;;;42538:41;41599:988::o;42882:1079::-;43160:10;:17;43135:22;;43160:21;;43180:1;;43160:21;:::i;:::-;43192:18;43213:24;;;:15;:24;;;;;;43586:10;:26;;43135:46;;-1:-1:-1;43213:24:0;;43135:46;;43586:26;;;;;;:::i;:::-;;;;;;;;;43564:48;;43650:11;43625:10;43636;43625:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;43730:28;;;:15;:28;;;;;;;:41;;;43902:24;;;;;43895:31;43937:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42953:1008;;;42882:1079;:::o;40386:221::-;40471:14;40488:20;40505:2;40488:16;:20::i;:::-;40519:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40564:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40386:221:0:o;11835:229::-;11972:12;12004:52;12026:6;12034:4;12040:1;12043:12;11972;9385:19;;;;13242:60;;;;;;;30545:2:1;13242:60:0;;;30527:21:1;30584:2;30564:18;;;30557:30;30623:31;30603:18;;;30596:59;30672:18;;13242:60:0;30343:353:1;13242:60:0;13316:12;13330:23;13357:6;:11;;13376:5;13383:4;13357:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13315:73;;;;13406:51;13423:7;13432:10;13444:12;13406:16;:51::i;:::-;13399:58;12955:510;-1:-1:-1;;;;;;;12955:510:0:o;15641:712::-;15791:12;15820:7;15816:530;;;-1:-1:-1;15851:10:0;15844:17;;15816:530;15965:17;;:21;15961:374;;16163:10;16157:17;16224:15;16211:10;16207:2;16203:19;16196:44;15961:374;16306:12;16299:20;;;;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;1137:66;1116:88;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:1:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:1;;1448:180;-1:-1:-1;1448:180:1:o;1864:154::-;1950:42;1943:5;1939:54;1932:5;1929:65;1919:93;;2008:1;2005;1998:12;2023:315;2091:6;2099;2152:2;2140:9;2131:7;2127:23;2123:32;2120:52;;;2168:1;2165;2158:12;2120:52;2207:9;2194:23;2226:31;2251:5;2226:31;:::i;:::-;2276:5;2328:2;2313:18;;;;2300:32;;-1:-1:-1;;;2023:315:1:o;2343:184::-;2395:77;2392:1;2385:88;2492:4;2489:1;2482:15;2516:4;2513:1;2506:15;2532:334;2603:2;2597:9;2659:2;2649:13;;2664:66;2645:86;2633:99;;2762:18;2747:34;;2783:22;;;2744:62;2741:88;;;2809:18;;:::i;:::-;2845:2;2838:22;2532:334;;-1:-1:-1;2532:334:1:o;2871:465::-;2935:5;2969:18;2961:6;2958:30;2955:56;;;2991:18;;:::i;:::-;3029:116;3139:4;3070:66;3065:2;3057:6;3053:15;3049:88;3045:99;3029:116;:::i;:::-;3020:125;;3168:6;3161:5;3154:21;3208:3;3199:6;3194:3;3190:16;3187:25;3184:45;;;3225:1;3222;3215:12;3184:45;3274:6;3269:3;3262:4;3255:5;3251:16;3238:43;3328:1;3321:4;3312:6;3305:5;3301:18;3297:29;3290:40;2871:465;;;;;:::o;3341:220::-;3383:5;3436:3;3429:4;3421:6;3417:17;3413:27;3403:55;;3454:1;3451;3444:12;3403:55;3476:79;3551:3;3542:6;3529:20;3522:4;3514:6;3510:17;3476:79;:::i;3566:758::-;3668:6;3676;3684;3692;3700;3753:3;3741:9;3732:7;3728:23;3724:33;3721:53;;;3770:1;3767;3760:12;3721:53;3809:9;3796:23;3828:31;3853:5;3828:31;:::i;:::-;3878:5;-1:-1:-1;3934:2:1;3919:18;;3906:32;3961:18;3950:30;;3947:50;;;3993:1;3990;3983:12;3947:50;4016:49;4057:7;4048:6;4037:9;4033:22;4016:49;:::i;:::-;4006:59;;;4112:2;4101:9;4097:18;4084:32;4074:42;;4163:2;4152:9;4148:18;4135:32;4125:42;;4219:3;4208:9;4204:19;4191:33;4268:4;4259:7;4255:18;4246:7;4243:31;4233:59;;4288:1;4285;4278:12;4233:59;4311:7;4301:17;;;3566:758;;;;;;;;:::o;4916:456::-;4993:6;5001;5009;5062:2;5050:9;5041:7;5037:23;5033:32;5030:52;;;5078:1;5075;5068:12;5030:52;5117:9;5104:23;5136:31;5161:5;5136:31;:::i;:::-;5186:5;-1:-1:-1;5243:2:1;5228:18;;5215:32;5256:33;5215:32;5256:33;:::i;:::-;4916:456;;5308:7;;-1:-1:-1;;;5362:2:1;5347:18;;;;5334:32;;4916:456::o;5562:247::-;5621:6;5674:2;5662:9;5653:7;5649:23;5645:32;5642:52;;;5690:1;5687;5680:12;5642:52;5729:9;5716:23;5748:31;5773:5;5748:31;:::i;5814:315::-;5882:6;5890;5943:2;5931:9;5922:7;5918:23;5914:32;5911:52;;;5959:1;5956;5949:12;5911:52;5995:9;5982:23;5972:33;;6055:2;6044:9;6040:18;6027:32;6068:31;6093:5;6068:31;:::i;:::-;6118:5;6108:15;;;5814:315;;;;;:::o;6134:388::-;6202:6;6210;6263:2;6251:9;6242:7;6238:23;6234:32;6231:52;;;6279:1;6276;6269:12;6231:52;6318:9;6305:23;6337:31;6362:5;6337:31;:::i;:::-;6387:5;-1:-1:-1;6444:2:1;6429:18;;6416:32;6457:33;6416:32;6457:33;:::i;6527:450::-;6596:6;6649:2;6637:9;6628:7;6624:23;6620:32;6617:52;;;6665:1;6662;6655:12;6617:52;6705:9;6692:23;6738:18;6730:6;6727:30;6724:50;;;6770:1;6767;6760:12;6724:50;6793:22;;6846:4;6838:13;;6834:27;-1:-1:-1;6824:55:1;;6875:1;6872;6865:12;6824:55;6898:73;6963:7;6958:2;6945:16;6940:2;6936;6932:11;6898:73;:::i;6982:118::-;7068:5;7061:13;7054:21;7047:5;7044:32;7034:60;;7090:1;7087;7080:12;7105:241;7161:6;7214:2;7202:9;7193:7;7189:23;7185:32;7182:52;;;7230:1;7227;7220:12;7182:52;7269:9;7256:23;7288:28;7310:5;7288:28;:::i;7351:382::-;7416:6;7424;7477:2;7465:9;7456:7;7452:23;7448:32;7445:52;;;7493:1;7490;7483:12;7445:52;7532:9;7519:23;7551:31;7576:5;7551:31;:::i;:::-;7601:5;-1:-1:-1;7658:2:1;7643:18;;7630:32;7671:30;7630:32;7671:30;:::i;7738:1021::-;7822:6;7853:2;7896;7884:9;7875:7;7871:23;7867:32;7864:52;;;7912:1;7909;7902:12;7864:52;7952:9;7939:23;7981:18;8022:2;8014:6;8011:14;8008:34;;;8038:1;8035;8028:12;8008:34;8076:6;8065:9;8061:22;8051:32;;8121:7;8114:4;8110:2;8106:13;8102:27;8092:55;;8143:1;8140;8133:12;8092:55;8179:2;8166:16;8201:2;8197;8194:10;8191:36;;;8207:18;;:::i;:::-;8253:2;8250:1;8246:10;8236:20;;8276:28;8300:2;8296;8292:11;8276:28;:::i;:::-;8338:15;;;8408:11;;;8404:20;;;8369:12;;;;8436:19;;;8433:39;;;8468:1;8465;8458:12;8433:39;8492:11;;;;8512:217;8528:6;8523:3;8520:15;8512:217;;;8608:3;8595:17;8582:30;;8625:31;8650:5;8625:31;:::i;:::-;8669:18;;;8545:12;;;;8707;;;;8512:217;;8764:665;8859:6;8867;8875;8883;8936:3;8924:9;8915:7;8911:23;8907:33;8904:53;;;8953:1;8950;8943:12;8904:53;8992:9;8979:23;9011:31;9036:5;9011:31;:::i;:::-;9061:5;-1:-1:-1;9118:2:1;9103:18;;9090:32;9131:33;9090:32;9131:33;:::i;:::-;9183:7;-1:-1:-1;9237:2:1;9222:18;;9209:32;;-1:-1:-1;9292:2:1;9277:18;;9264:32;9319:18;9308:30;;9305:50;;;9351:1;9348;9341:12;9305:50;9374:49;9415:7;9406:6;9395:9;9391:22;9374:49;:::i;:::-;9364:59;;;8764:665;;;;;;;:::o;9434:437::-;9513:1;9509:12;;;;9556;;;9577:61;;9631:4;9623:6;9619:17;9609:27;;9577:61;9684:2;9676:6;9673:14;9653:18;9650:38;9647:218;;;9721:77;9718:1;9711:88;9822:4;9819:1;9812:15;9850:4;9847:1;9840:15;9647:218;;9434:437;;;:::o;11518:455::-;11700:4;11729:42;11810:2;11802:6;11798:15;11787:9;11780:34;11862:2;11854:6;11850:15;11845:2;11834:9;11830:18;11823:43;;11902:2;11897;11886:9;11882:18;11875:30;11922:45;11963:2;11952:9;11948:18;11940:6;11922:45;:::i;:::-;11914:53;11518:455;-1:-1:-1;;;;;11518:455:1:o;11978:450::-;12135:3;12173:6;12167:13;12189:53;12235:6;12230:3;12223:4;12215:6;12211:17;12189:53;:::i;:::-;12311:2;12307:15;;;;12324:66;12303:88;12264:16;;;;12289:103;;;12419:2;12408:14;;11978:450;-1:-1:-1;;11978:450:1:o;12433:274::-;12562:3;12600:6;12594:13;12616:53;12662:6;12657:3;12650:4;12642:6;12638:17;12616:53;:::i;:::-;12685:16;;;;;12433:274;-1:-1:-1;;12433:274:1:o;14315:184::-;14385:6;14438:2;14426:9;14417:7;14413:23;14409:32;14406:52;;;14454:1;14451;14444:12;14406:52;-1:-1:-1;14477:16:1;;14315:184;-1:-1:-1;14315:184:1:o;16324:::-;16376:77;16373:1;16366:88;16473:4;16470:1;16463:15;16497:4;16494:1;16487:15;17334:184;17386:77;17383:1;17376:88;17483:4;17480:1;17473:15;17507:4;17504:1;17497:15;17523:195;17562:3;17593:66;17586:5;17583:77;17580:103;;;17663:18;;:::i;:::-;-1:-1:-1;17710:1:1;17699:13;;17523:195::o;18139:637::-;18419:3;18457:6;18451:13;18473:53;18519:6;18514:3;18507:4;18499:6;18495:17;18473:53;:::i;:::-;18589:13;;18548:16;;;;18611:57;18589:13;18548:16;18645:4;18633:17;;18611:57;:::i;:::-;18733:7;18690:20;;18719:22;;;18768:1;18757:13;;18139:637;-1:-1:-1;;;;18139:637:1:o;18781:280::-;18880:6;18933:2;18921:9;18912:7;18908:23;18904:32;18901:52;;;18949:1;18946;18939:12;18901:52;18981:9;18975:16;19000:31;19025:5;19000:31;:::i;19875:128::-;19915:3;19946:1;19942:6;19939:1;19936:13;19933:39;;;19952:18;;:::i;:::-;-1:-1:-1;19988:9:1;;19875:128::o;21232:125::-;21272:4;21300:1;21297;21294:8;21291:34;;;21305:18;;:::i;:::-;-1:-1:-1;21342:9:1;;21232:125::o;21362:786::-;21773:25;21768:3;21761:38;21743:3;21828:6;21822:13;21844:62;21899:6;21894:2;21889:3;21885:12;21878:4;21870:6;21866:17;21844:62;:::i;:::-;21970:19;21965:2;21925:16;;;21957:11;;;21950:40;22015:13;;22037:63;22015:13;22086:2;22078:11;;22071:4;22059:17;;22037:63;:::i;:::-;22120:17;22139:2;22116:26;;21362:786;-1:-1:-1;;;;21362:786:1:o;24859:184::-;24911:77;24908:1;24901:88;25008:4;25005:1;24998:15;25032:4;25029:1;25022:15;25048:120;25088:1;25114;25104:35;;25119:18;;:::i;:::-;-1:-1:-1;25153:9:1;;25048:120::o;25173:112::-;25205:1;25231;25221:35;;25236:18;;:::i;:::-;-1:-1:-1;25270:9:1;;25173:112::o;26592:228::-;26632:7;26758:1;26690:66;26686:74;26683:1;26680:81;26675:1;26668:9;26661:17;26657:105;26654:131;;;26765:18;;:::i;:::-;-1:-1:-1;26805:9:1;;26592:228::o;26825:196::-;26864:3;26892:5;26882:39;;26901:18;;:::i;:::-;-1:-1:-1;26948:66:1;26937:78;;26825:196::o;27597:512::-;27791:4;27820:42;27901:2;27893:6;27889:15;27878:9;27871:34;27953:2;27945:6;27941:15;27936:2;27925:9;27921:18;27914:43;;27993:6;27988:2;27977:9;27973:18;27966:34;28036:3;28031:2;28020:9;28016:18;28009:31;28057:46;28098:3;28087:9;28083:19;28075:6;28057:46;:::i;:::-;28049:54;27597:512;-1:-1:-1;;;;;;27597:512:1:o;28114:249::-;28183:6;28236:2;28224:9;28215:7;28211:23;28207:32;28204:52;;;28252:1;28249;28242:12;28204:52;28284:9;28278:16;28303:30;28327:5;28303:30;:::i;28368:245::-;28435:6;28488:2;28476:9;28467:7;28463:23;28459:32;28456:52;;;28504:1;28501;28494:12;28456:52;28536:9;28530:16;28555:28;28577:5;28555:28;:::i;29747:184::-;29799:77;29796:1;29789:88;29896:4;29893:1;29886:15;29920:4;29917:1;29910:15

Swarm Source

ipfs://a1bddc50f20ef0f84550197a1f1cd905e54d1f6c7a8e922b41be14285560bf47
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.