ETH Price: $3,057.28 (-7.46%)
Gas: 19 Gwei

Token

PudgySeals (PS)
 

Overview

Max Total Supply

6,969 PS

Holders

1,182

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 PS
0xd232aEDaad90079B65bfD929908a28EDa12321c0
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:
PudgySeals

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File 1: Address.sol

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// FILE 2: 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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


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

// File 4: Ownable.sol


pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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





// File 5: IERC165.sol

pragma solidity ^0.8.0;

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


// File 6: IERC721.sol

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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



// File 7: IERC721Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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




// File 8: ERC165.sol

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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File 9: ERC721.sol

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

pragma solidity ^0.8.0;


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );
        if (to.isContract()) {
            revert ("Token transfer to contract address is not allowed.");
        } else {
            _approve(to, tokenId);
        }
        // _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 {}
}





// File 10: IERC721Enumerable.sol

pragma solidity ^0.8.0;


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

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

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

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






// File 11: ERC721Enumerable.sol

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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



// File 13: ERC721A.sol

pragma solidity ^0.8.0;


contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// FILE 14: apes.sol

pragma solidity ^0.8.0;

contract PudgySeals is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;
  using Counters for Counters.Counter;

  string private uriPrefix = "ipfs://bafybeias5ngm7cijbuh3rgsdiot55wucjucyqcnpgsyz6fu2cbfttbjxlq/";
  string public uriSuffix = ".json";
  string private hiddenMetadataUri;

    constructor() ERC721A("PudgySeals", "PS") {
        setHiddenMetadataUri("ipfs://__CID__/hidden.json");
    }

    uint256 public price = 0.005 ether;
    uint256 public maxPerTx = 10;
    uint256 public maxPerFree = 2;    
    uint256 public maxFreeSupply = 1000;
    uint256 public max_Supply = 6969;
     
  bool public paused = true;
  bool public revealed = true;

    mapping(address => uint256) private _mintedFreeAmount;

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

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

    //mint
    function mint(uint256 count) external payable {
        uint256 cost = price;
        require(!paused, "The contract is paused!");
        require(count > 0, "Minimum 1 NFT has to be minted per transaction");
        if (msg.sender != owner()) {
            bool isFree = ((totalSupply() + count < maxFreeSupply + 1) &&
                (_mintedFreeAmount[msg.sender] + count <= maxPerFree));

            if (isFree) {
                cost = 0;
                _mintedFreeAmount[msg.sender] += count;
            }

            require(msg.value >= count * cost, "Please send the exact amount.");
            require(count <= maxPerTx, "Max per TX reached.");
        }

        require(totalSupply() + count <= max_Supply, "No more.");

        _safeMint(msg.sender, count);
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= max_Supply) {
        address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
        currentTokenId++;
        }
        return ownedTokenIds;
    }
  
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    if (revealed == false) {
      return hiddenMetadataUri;
    }
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }  

  function setmaxPerTx(uint256 _maxPerTx) public onlyOwner {
    maxPerTx = _maxPerTx;
  }

  function setmaxPerFree(uint256 _maxPerFree) public onlyOwner {
    maxPerFree = _maxPerFree;
  }  

  function setmaxFreeSupply(uint256 _maxFreeSupply) public onlyOwner {
    maxFreeSupply = _maxFreeSupply;
  }


  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }  

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }  

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

    function treasuryMint(uint quantity)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= max_Supply,
      "Maximum supply exceeded"
    );
    _safeMint(msg.sender, quantity);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerFree","type":"uint256"}],"name":"setmaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setmaxPerTx","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052604360808181529062002d4760a03980516200002a916009916020909101906200022b565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005991600a916200022b565b506611c37937e08000600c55600a600d556002600e556103e8600f55611b396010556011805461ff001960ff1990911660011716610100179055348015620000a057600080fd5b50604080518082018252600a81526950756467795365616c7360b01b602080830191825283518085019094526002845261505360f01b908401528151919291620000ed916001916200022b565b508051620001039060029060208401906200022b565b505050600062000118620001b060201b60201c565b600780546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600160085560408051808201909152601a81527f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e0000000000006020820152620001aa90620001b4565b62000343565b3390565b620001be620001b0565b6001600160a01b0316620001d16200021c565b6001600160a01b031614620002035760405162461bcd60e51b8152600401620001fa90620002d1565b60405180910390fd5b80516200021890600b9060208401906200022b565b5050565b6007546001600160a01b031690565b828054620002399062000306565b90600052602060002090601f0160209004810192826200025d5760008555620002a8565b82601f106200027857805160ff1916838001178555620002a8565b82800160010185558215620002a8579182015b82811115620002a85782518255916020019190600101906200028b565b50620002b6929150620002ba565b5090565b5b80821115620002b65760008155600101620002bb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200031b57607f821691505b602082108114156200033d57634e487b7160e01b600052602260045260246000fd5b50919050565b6129f480620003536000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063b88d4fde116100ab578063e77837741161006f578063e77837741461065b578063e985e9c514610670578063efdc778814610690578063f2fde38b146106b0578063f968adbe146106d05761023b565b8063b88d4fde146105c6578063bde12d73146105e6578063c7c39ffc14610606578063c87b56dd1461061b578063e0a808531461063b5761023b565b806395d89b41116100f257806395d89b4114610549578063a035b1fe1461055e578063a0712d6814610573578063a22cb46514610586578063a2b40d19146105a65761023b565b806370a08231146104bf578063715018a6146104df5780637ec4a659146104f4578063805dcae5146105145780638da5cb5b146105345761023b565b80633ccfd60b116101bc5780634fdd43cb116101805780634fdd43cb1461044057806351830227146104605780635503a0e8146104755780635c975abb1461048a5780636352211e1461049f5761023b565b80633ccfd60b146103a957806342842e0e146103be578063438b6300146103de578063475133341461040b5780634f6ccce7146104205761023b565b806316c38b3c1161020357806316c38b3c1461030757806318160ddd1461032757806323b872dd146103495780632f745c5914610369578063308d7798146103895761023b565b806301ffc9a71461024057806306fdde0314610276578063081812fc14610298578063095ea7b3146102c557806316ba10e0146102e7575b600080fd5b34801561024c57600080fd5b5061026061025b366004611f78565b6106e5565b60405161026d9190612194565b60405180910390f35b34801561028257600080fd5b5061028b610748565b60405161026d919061219f565b3480156102a457600080fd5b506102b86102b3366004611ff6565b6107da565b60405161026d91906120ff565b3480156102d157600080fd5b506102e56102e0366004611f35565b610826565b005b3480156102f357600080fd5b506102e5610302366004611fb0565b6108bf565b34801561031357600080fd5b506102e5610322366004611f5e565b610915565b34801561033357600080fd5b5061033c610967565b60405161026d9190612859565b34801561035557600080fd5b506102e5610364366004611e58565b61096d565b34801561037557600080fd5b5061033c610384366004611f35565b610978565b34801561039557600080fd5b506102e56103a4366004611ff6565b610a63565b3480156103b557600080fd5b506102e5610aa7565b3480156103ca57600080fd5b506102e56103d9366004611e58565b610b65565b3480156103ea57600080fd5b506103fe6103f9366004611e0c565b610b80565b60405161026d9190612150565b34801561041757600080fd5b5061033c610c7d565b34801561042c57600080fd5b5061033c61043b366004611ff6565b610c83565b34801561044c57600080fd5b506102e561045b366004611fb0565b610caf565b34801561046c57600080fd5b50610260610d01565b34801561048157600080fd5b5061028b610d0f565b34801561049657600080fd5b50610260610d9d565b3480156104ab57600080fd5b506102b86104ba366004611ff6565b610da6565b3480156104cb57600080fd5b5061033c6104da366004611e0c565b610db8565b3480156104eb57600080fd5b506102e5610e05565b34801561050057600080fd5b506102e561050f366004611fb0565b610e8e565b34801561052057600080fd5b506102e561052f366004611ff6565b610ee0565b34801561054057600080fd5b506102b8610f24565b34801561055557600080fd5b5061028b610f33565b34801561056a57600080fd5b5061033c610f42565b6102e5610581366004611ff6565b610f48565b34801561059257600080fd5b506102e56105a1366004611f0c565b6110b7565b3480156105b257600080fd5b506102e56105c1366004611ff6565b611185565b3480156105d257600080fd5b506102e56105e1366004611e93565b6111c9565b3480156105f257600080fd5b506102e5610601366004611ff6565b611202565b34801561061257600080fd5b5061033c611246565b34801561062757600080fd5b5061028b610636366004611ff6565b61124c565b34801561064757600080fd5b506102e5610656366004611f5e565b611373565b34801561066757600080fd5b5061033c6113cc565b34801561067c57600080fd5b5061026061068b366004611e26565b6113d2565b34801561069c57600080fd5b506102e56106ab366004611ff6565b611400565b3480156106bc57600080fd5b506102e56106cb366004611e0c565b61149d565b3480156106dc57600080fd5b5061033c61155e565b60006001600160e01b031982166380ac58cd60e01b148061071657506001600160e01b03198216635b5e139f60e01b145b8061073157506001600160e01b0319821663780e9d6360e01b145b80610740575061074082611564565b90505b919050565b606060018054610757906128fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610783906128fc565b80156107d05780601f106107a5576101008083540402835291602001916107d0565b820191906000526020600020905b8154815290600101906020018083116107b357829003601f168201915b5050505050905090565b60006107e58261157d565b61080a5760405162461bcd60e51b81526004016108019061280c565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061083182610da6565b9050806001600160a01b0316836001600160a01b031614156108655760405162461bcd60e51b81526004016108019061261c565b806001600160a01b0316610877611584565b6001600160a01b0316148061089357506108938161068b611584565b6108af5760405162461bcd60e51b81526004016108019061237c565b6108ba838383611588565b505050565b6108c7611584565b6001600160a01b03166108d8610f24565b6001600160a01b0316146108fe5760405162461bcd60e51b8152600401610801906124a1565b805161091190600a906020840190611cc3565b5050565b61091d611584565b6001600160a01b031661092e610f24565b6001600160a01b0316146109545760405162461bcd60e51b8152600401610801906124a1565b6011805460ff1916911515919091179055565b60005490565b6108ba8383836115e4565b600061098383610db8565b82106109a15760405162461bcd60e51b8152600401610801906121b2565b60006109ab610967565b905060008060005b83811015610a44576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a0657805192505b876001600160a01b0316836001600160a01b03161415610a3b5786841415610a3457509350610a5d92505050565b6001909301925b506001016109b3565b5060405162461bcd60e51b8152600401610801906127be565b92915050565b610a6b611584565b6001600160a01b0316610a7c610f24565b6001600160a01b031614610aa25760405162461bcd60e51b8152600401610801906124a1565b600e55565b610aaf611584565b6001600160a01b0316610ac0610f24565b6001600160a01b031614610ae65760405162461bcd60e51b8152600401610801906124a1565b6000336001600160a01b031647604051610aff906120fc565b60006040518083038185875af1925050503d8060008114610b3c576040519150601f19603f3d011682016040523d82523d6000602084013e610b41565b606091505b5050905080610b625760405162461bcd60e51b81526004016108019061265e565b50565b6108ba838383604051806020016040528060008152506111c9565b60606000610b8d83610db8565b905060008167ffffffffffffffff811115610bb857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610be1578160200160208202803683370190505b509050600160005b8381108015610bfa57506010548211155b15610c73576000610c0a83610da6565b9050866001600160a01b0316816001600160a01b03161415610c605782848381518110610c4757634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610c5c81612937565b9250505b82610c6a81612937565b93505050610be9565b5090949350505050565b600f5481565b6000610c8d610967565b8210610cab5760405162461bcd60e51b8152600401610801906122d2565b5090565b610cb7611584565b6001600160a01b0316610cc8610f24565b6001600160a01b031614610cee5760405162461bcd60e51b8152600401610801906124a1565b805161091190600b906020840190611cc3565b601154610100900460ff1681565b600a8054610d1c906128fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610d48906128fc565b8015610d955780601f10610d6a57610100808354040283529160200191610d95565b820191906000526020600020905b815481529060010190602001808311610d7857829003601f168201915b505050505081565b60115460ff1681565b6000610db182611851565b5192915050565b60006001600160a01b038216610de05760405162461bcd60e51b8152600401610801906123d9565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610e0d611584565b6001600160a01b0316610e1e610f24565b6001600160a01b031614610e445760405162461bcd60e51b8152600401610801906124a1565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b610e96611584565b6001600160a01b0316610ea7610f24565b6001600160a01b031614610ecd5760405162461bcd60e51b8152600401610801906124a1565b8051610911906009906020840190611cc3565b610ee8611584565b6001600160a01b0316610ef9610f24565b6001600160a01b031614610f1f5760405162461bcd60e51b8152600401610801906124a1565b600d55565b6007546001600160a01b031690565b606060028054610757906128fc565b600c5481565b600c5460115460ff1615610f6e5760405162461bcd60e51b8152600401610801906124d6565b60008211610f8e5760405162461bcd60e51b8152600401610801906121f4565b610f96610f24565b6001600160a01b0316336001600160a01b031614611079576000600f546001610fbf919061286e565b83610fc8610967565b610fd2919061286e565b108015610ffb5750600e5433600090815260126020526040902054610ff890859061286e565b11155b9050801561102c5733600090815260126020526040812080549193508491849061102690849061286e565b90915550505b611036828461289a565b3410156110555760405162461bcd60e51b8152600401610801906125e5565b600d548311156110775760405162461bcd60e51b815260040161080190612791565b505b60105482611085610967565b61108f919061286e565b11156110ad5760405162461bcd60e51b81526004016108019061235a565b61091133836118d9565b6110bf611584565b6001600160a01b0316826001600160a01b031614156110f05760405162461bcd60e51b81526004016108019061255c565b80600660006110fd611584565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611141611584565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111799190612194565b60405180910390a35050565b61118d611584565b6001600160a01b031661119e610f24565b6001600160a01b0316146111c45760405162461bcd60e51b8152600401610801906124a1565b600c55565b6111d48484846115e4565b6111e0848484846118f3565b6111fc5760405162461bcd60e51b815260040161080190612688565b50505050565b61120a611584565b6001600160a01b031661121b610f24565b6001600160a01b0316146112415760405162461bcd60e51b8152600401610801906124a1565b600f55565b600e5481565b60606112578261157d565b6112735760405162461bcd60e51b81526004016108019061250d565b601154610100900460ff1661131457600b805461128f906128fc565b80601f01602080910402602001604051908101604052809291908181526020018280546112bb906128fc565b80156113085780601f106112dd57610100808354040283529160200191611308565b820191906000526020600020905b8154815290600101906020018083116112eb57829003601f168201915b50505050509050610743565b600061131e611a0f565b9050600081511161133e576040518060200160405280600081525061136c565b8061134884611a1e565b600a60405160200161135c9392919061203a565b6040516020818303038152906040525b9392505050565b61137b611584565b6001600160a01b031661138c610f24565b6001600160a01b0316146113b25760405162461bcd60e51b8152600401610801906124a1565b601180549115156101000261ff0019909216919091179055565b60105481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b611408611584565b6001600160a01b0316611419610f24565b6001600160a01b03161461143f5760405162461bcd60e51b8152600401610801906124a1565b6000811161145f5760405162461bcd60e51b8152600401610801906126db565b6010548161146b610967565b611475919061286e565b11156114935760405162461bcd60e51b815260040161080190612424565b610b6233826118d9565b6114a5611584565b6001600160a01b03166114b6610f24565b6001600160a01b0316146114dc5760405162461bcd60e51b8152600401610801906124a1565b6001600160a01b0381166115025760405162461bcd60e51b815260040161080190612242565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600d5481565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115ef82611851565b9050600081600001516001600160a01b0316611609611584565b6001600160a01b0316148061163e5750611621611584565b6001600160a01b0316611633846107da565b6001600160a01b0316145b80611652575081516116529061068b611584565b9050806116715760405162461bcd60e51b815260040161080190612593565b846001600160a01b031682600001516001600160a01b0316146116a65760405162461bcd60e51b81526004016108019061245b565b6001600160a01b0384166116cc5760405162461bcd60e51b815260040161080190612315565b6116d985858560016111fc565b6116e96000848460000151611588565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790559086018083529120549091166117fb5761179d8161157d565b156117fb578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461184a85858560016111fc565b5050505050565b611859611d43565b6118628261157d565b61187e5760405162461bcd60e51b815260040161080190612288565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118cf5791506107439050565b5060001901611880565b610911828260405180602001604052806000815250611b39565b6000611907846001600160a01b0316611b46565b15611a0357836001600160a01b031663150b7a02611923611584565b8786866040518563ffffffff1660e01b81526004016119459493929190612113565b602060405180830381600087803b15801561195f57600080fd5b505af192505050801561198f575060408051601f3d908101601f1916820190925261198c91810190611f94565b60015b6119e9573d8080156119bd576040519150601f19603f3d011682016040523d82523d6000602084013e6119c2565b606091505b5080516119e15760405162461bcd60e51b815260040161080190612688565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a07565b5060015b949350505050565b606060098054610757906128fc565b606081611a4357506040805180820190915260018152600360fc1b6020820152610743565b8160005b8115611a6d5780611a5781612937565b9150611a669050600a83612886565b9150611a47565b60008167ffffffffffffffff811115611a9657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ac0576020820181803683370190505b5090505b8415611a0757611ad56001836128b9565b9150611ae2600a86612952565b611aed90603061286e565b60f81b818381518110611b1057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b32600a86612886565b9450611ac4565b6108ba8383836001611b55565b6001600160a01b03163b151590565b6000546001600160a01b038516611b7e5760405162461bcd60e51b815260040161080190612708565b83611b9b5760405162461bcd60e51b815260040161080190612749565b611ba860008683876111fc565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b85811015611cb15760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611ca557611c8960008884886118f3565b611ca55760405162461bcd60e51b815260040161080190612688565b60019182019101611c36565b50600090815561184a908683876111fc565b828054611ccf906128fc565b90600052602060002090601f016020900481019282611cf15760008555611d37565b82601f10611d0a57805160ff1916838001178555611d37565b82800160010185558215611d37579182015b82811115611d37578251825591602001919060010190611d1c565b50610cab929150611d5a565b604080518082019091526000808252602082015290565b5b80821115610cab5760008155600101611d5b565b600067ffffffffffffffff80841115611d8a57611d8a612992565b604051601f8501601f19908116603f01168101908282118183101715611db257611db2612992565b81604052809350858152868686011115611dcb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461074357600080fd5b8035801515811461074357600080fd5b600060208284031215611e1d578081fd5b61136c82611de5565b60008060408385031215611e38578081fd5b611e4183611de5565b9150611e4f60208401611de5565b90509250929050565b600080600060608486031215611e6c578081fd5b611e7584611de5565b9250611e8360208501611de5565b9150604084013590509250925092565b60008060008060808587031215611ea8578081fd5b611eb185611de5565b9350611ebf60208601611de5565b925060408501359150606085013567ffffffffffffffff811115611ee1578182fd5b8501601f81018713611ef1578182fd5b611f0087823560208401611d6f565b91505092959194509250565b60008060408385031215611f1e578182fd5b611f2783611de5565b9150611e4f60208401611dfc565b60008060408385031215611f47578182fd5b611f5083611de5565b946020939093013593505050565b600060208284031215611f6f578081fd5b61136c82611dfc565b600060208284031215611f89578081fd5b813561136c816129a8565b600060208284031215611fa5578081fd5b815161136c816129a8565b600060208284031215611fc1578081fd5b813567ffffffffffffffff811115611fd7578182fd5b8201601f81018413611fe7578182fd5b611a0784823560208401611d6f565b600060208284031215612007578081fd5b5035919050565b600081518084526120268160208601602086016128d0565b601f01601f19169290920160200192915050565b60008451602061204d8285838a016128d0565b8551918401916120608184848a016128d0565b855492019183906002810460018083168061207c57607f831692505b85831081141561209a57634e487b7160e01b88526022600452602488fd5b8080156120ae57600181146120bf576120eb565b60ff198516885283880195506120eb565b6120c88b612862565b895b858110156120e35781548a8201529084019088016120ca565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121469083018461200e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156121885783518352928401929184019160010161216c565b50909695505050505050565b901515815260200190565b60006020825261136c602083018461200e565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252602e908201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526008908201526727379036b7b9329760c11b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526017908201527f4d6178696d756d20737570706c79206578636565646564000000000000000000604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601d908201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b602080825260139082015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b60208082526013908201527226b0bc103832b9102a2c103932b0b1b432b21760691b604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b90815260200190565b60009081526020902090565b6000821982111561288157612881612966565b500190565b6000826128955761289561297c565b500490565b60008160001904831182151516156128b4576128b4612966565b500290565b6000828210156128cb576128cb612966565b500390565b60005b838110156128eb5781810151838201526020016128d3565b838111156111fc5750506000910152565b60028104600182168061291057607f821691505b6020821081141561293157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561294b5761294b612966565b5060010190565b6000826129615761296161297c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b6257600080fdfea2646970667358221220cd3ca676ee52c884928c33459cba185ea2049a4757a2be9633a22029fbed275664736f6c63430008010033697066733a2f2f626166796265696173356e676d3763696a6275683372677364696f7435357775636a75637971636e706773797a366675326362667474626a786c712f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063b88d4fde116100ab578063e77837741161006f578063e77837741461065b578063e985e9c514610670578063efdc778814610690578063f2fde38b146106b0578063f968adbe146106d05761023b565b8063b88d4fde146105c6578063bde12d73146105e6578063c7c39ffc14610606578063c87b56dd1461061b578063e0a808531461063b5761023b565b806395d89b41116100f257806395d89b4114610549578063a035b1fe1461055e578063a0712d6814610573578063a22cb46514610586578063a2b40d19146105a65761023b565b806370a08231146104bf578063715018a6146104df5780637ec4a659146104f4578063805dcae5146105145780638da5cb5b146105345761023b565b80633ccfd60b116101bc5780634fdd43cb116101805780634fdd43cb1461044057806351830227146104605780635503a0e8146104755780635c975abb1461048a5780636352211e1461049f5761023b565b80633ccfd60b146103a957806342842e0e146103be578063438b6300146103de578063475133341461040b5780634f6ccce7146104205761023b565b806316c38b3c1161020357806316c38b3c1461030757806318160ddd1461032757806323b872dd146103495780632f745c5914610369578063308d7798146103895761023b565b806301ffc9a71461024057806306fdde0314610276578063081812fc14610298578063095ea7b3146102c557806316ba10e0146102e7575b600080fd5b34801561024c57600080fd5b5061026061025b366004611f78565b6106e5565b60405161026d9190612194565b60405180910390f35b34801561028257600080fd5b5061028b610748565b60405161026d919061219f565b3480156102a457600080fd5b506102b86102b3366004611ff6565b6107da565b60405161026d91906120ff565b3480156102d157600080fd5b506102e56102e0366004611f35565b610826565b005b3480156102f357600080fd5b506102e5610302366004611fb0565b6108bf565b34801561031357600080fd5b506102e5610322366004611f5e565b610915565b34801561033357600080fd5b5061033c610967565b60405161026d9190612859565b34801561035557600080fd5b506102e5610364366004611e58565b61096d565b34801561037557600080fd5b5061033c610384366004611f35565b610978565b34801561039557600080fd5b506102e56103a4366004611ff6565b610a63565b3480156103b557600080fd5b506102e5610aa7565b3480156103ca57600080fd5b506102e56103d9366004611e58565b610b65565b3480156103ea57600080fd5b506103fe6103f9366004611e0c565b610b80565b60405161026d9190612150565b34801561041757600080fd5b5061033c610c7d565b34801561042c57600080fd5b5061033c61043b366004611ff6565b610c83565b34801561044c57600080fd5b506102e561045b366004611fb0565b610caf565b34801561046c57600080fd5b50610260610d01565b34801561048157600080fd5b5061028b610d0f565b34801561049657600080fd5b50610260610d9d565b3480156104ab57600080fd5b506102b86104ba366004611ff6565b610da6565b3480156104cb57600080fd5b5061033c6104da366004611e0c565b610db8565b3480156104eb57600080fd5b506102e5610e05565b34801561050057600080fd5b506102e561050f366004611fb0565b610e8e565b34801561052057600080fd5b506102e561052f366004611ff6565b610ee0565b34801561054057600080fd5b506102b8610f24565b34801561055557600080fd5b5061028b610f33565b34801561056a57600080fd5b5061033c610f42565b6102e5610581366004611ff6565b610f48565b34801561059257600080fd5b506102e56105a1366004611f0c565b6110b7565b3480156105b257600080fd5b506102e56105c1366004611ff6565b611185565b3480156105d257600080fd5b506102e56105e1366004611e93565b6111c9565b3480156105f257600080fd5b506102e5610601366004611ff6565b611202565b34801561061257600080fd5b5061033c611246565b34801561062757600080fd5b5061028b610636366004611ff6565b61124c565b34801561064757600080fd5b506102e5610656366004611f5e565b611373565b34801561066757600080fd5b5061033c6113cc565b34801561067c57600080fd5b5061026061068b366004611e26565b6113d2565b34801561069c57600080fd5b506102e56106ab366004611ff6565b611400565b3480156106bc57600080fd5b506102e56106cb366004611e0c565b61149d565b3480156106dc57600080fd5b5061033c61155e565b60006001600160e01b031982166380ac58cd60e01b148061071657506001600160e01b03198216635b5e139f60e01b145b8061073157506001600160e01b0319821663780e9d6360e01b145b80610740575061074082611564565b90505b919050565b606060018054610757906128fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610783906128fc565b80156107d05780601f106107a5576101008083540402835291602001916107d0565b820191906000526020600020905b8154815290600101906020018083116107b357829003601f168201915b5050505050905090565b60006107e58261157d565b61080a5760405162461bcd60e51b81526004016108019061280c565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061083182610da6565b9050806001600160a01b0316836001600160a01b031614156108655760405162461bcd60e51b81526004016108019061261c565b806001600160a01b0316610877611584565b6001600160a01b0316148061089357506108938161068b611584565b6108af5760405162461bcd60e51b81526004016108019061237c565b6108ba838383611588565b505050565b6108c7611584565b6001600160a01b03166108d8610f24565b6001600160a01b0316146108fe5760405162461bcd60e51b8152600401610801906124a1565b805161091190600a906020840190611cc3565b5050565b61091d611584565b6001600160a01b031661092e610f24565b6001600160a01b0316146109545760405162461bcd60e51b8152600401610801906124a1565b6011805460ff1916911515919091179055565b60005490565b6108ba8383836115e4565b600061098383610db8565b82106109a15760405162461bcd60e51b8152600401610801906121b2565b60006109ab610967565b905060008060005b83811015610a44576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a0657805192505b876001600160a01b0316836001600160a01b03161415610a3b5786841415610a3457509350610a5d92505050565b6001909301925b506001016109b3565b5060405162461bcd60e51b8152600401610801906127be565b92915050565b610a6b611584565b6001600160a01b0316610a7c610f24565b6001600160a01b031614610aa25760405162461bcd60e51b8152600401610801906124a1565b600e55565b610aaf611584565b6001600160a01b0316610ac0610f24565b6001600160a01b031614610ae65760405162461bcd60e51b8152600401610801906124a1565b6000336001600160a01b031647604051610aff906120fc565b60006040518083038185875af1925050503d8060008114610b3c576040519150601f19603f3d011682016040523d82523d6000602084013e610b41565b606091505b5050905080610b625760405162461bcd60e51b81526004016108019061265e565b50565b6108ba838383604051806020016040528060008152506111c9565b60606000610b8d83610db8565b905060008167ffffffffffffffff811115610bb857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610be1578160200160208202803683370190505b509050600160005b8381108015610bfa57506010548211155b15610c73576000610c0a83610da6565b9050866001600160a01b0316816001600160a01b03161415610c605782848381518110610c4757634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610c5c81612937565b9250505b82610c6a81612937565b93505050610be9565b5090949350505050565b600f5481565b6000610c8d610967565b8210610cab5760405162461bcd60e51b8152600401610801906122d2565b5090565b610cb7611584565b6001600160a01b0316610cc8610f24565b6001600160a01b031614610cee5760405162461bcd60e51b8152600401610801906124a1565b805161091190600b906020840190611cc3565b601154610100900460ff1681565b600a8054610d1c906128fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610d48906128fc565b8015610d955780601f10610d6a57610100808354040283529160200191610d95565b820191906000526020600020905b815481529060010190602001808311610d7857829003601f168201915b505050505081565b60115460ff1681565b6000610db182611851565b5192915050565b60006001600160a01b038216610de05760405162461bcd60e51b8152600401610801906123d9565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610e0d611584565b6001600160a01b0316610e1e610f24565b6001600160a01b031614610e445760405162461bcd60e51b8152600401610801906124a1565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b610e96611584565b6001600160a01b0316610ea7610f24565b6001600160a01b031614610ecd5760405162461bcd60e51b8152600401610801906124a1565b8051610911906009906020840190611cc3565b610ee8611584565b6001600160a01b0316610ef9610f24565b6001600160a01b031614610f1f5760405162461bcd60e51b8152600401610801906124a1565b600d55565b6007546001600160a01b031690565b606060028054610757906128fc565b600c5481565b600c5460115460ff1615610f6e5760405162461bcd60e51b8152600401610801906124d6565b60008211610f8e5760405162461bcd60e51b8152600401610801906121f4565b610f96610f24565b6001600160a01b0316336001600160a01b031614611079576000600f546001610fbf919061286e565b83610fc8610967565b610fd2919061286e565b108015610ffb5750600e5433600090815260126020526040902054610ff890859061286e565b11155b9050801561102c5733600090815260126020526040812080549193508491849061102690849061286e565b90915550505b611036828461289a565b3410156110555760405162461bcd60e51b8152600401610801906125e5565b600d548311156110775760405162461bcd60e51b815260040161080190612791565b505b60105482611085610967565b61108f919061286e565b11156110ad5760405162461bcd60e51b81526004016108019061235a565b61091133836118d9565b6110bf611584565b6001600160a01b0316826001600160a01b031614156110f05760405162461bcd60e51b81526004016108019061255c565b80600660006110fd611584565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611141611584565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111799190612194565b60405180910390a35050565b61118d611584565b6001600160a01b031661119e610f24565b6001600160a01b0316146111c45760405162461bcd60e51b8152600401610801906124a1565b600c55565b6111d48484846115e4565b6111e0848484846118f3565b6111fc5760405162461bcd60e51b815260040161080190612688565b50505050565b61120a611584565b6001600160a01b031661121b610f24565b6001600160a01b0316146112415760405162461bcd60e51b8152600401610801906124a1565b600f55565b600e5481565b60606112578261157d565b6112735760405162461bcd60e51b81526004016108019061250d565b601154610100900460ff1661131457600b805461128f906128fc565b80601f01602080910402602001604051908101604052809291908181526020018280546112bb906128fc565b80156113085780601f106112dd57610100808354040283529160200191611308565b820191906000526020600020905b8154815290600101906020018083116112eb57829003601f168201915b50505050509050610743565b600061131e611a0f565b9050600081511161133e576040518060200160405280600081525061136c565b8061134884611a1e565b600a60405160200161135c9392919061203a565b6040516020818303038152906040525b9392505050565b61137b611584565b6001600160a01b031661138c610f24565b6001600160a01b0316146113b25760405162461bcd60e51b8152600401610801906124a1565b601180549115156101000261ff0019909216919091179055565b60105481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b611408611584565b6001600160a01b0316611419610f24565b6001600160a01b03161461143f5760405162461bcd60e51b8152600401610801906124a1565b6000811161145f5760405162461bcd60e51b8152600401610801906126db565b6010548161146b610967565b611475919061286e565b11156114935760405162461bcd60e51b815260040161080190612424565b610b6233826118d9565b6114a5611584565b6001600160a01b03166114b6610f24565b6001600160a01b0316146114dc5760405162461bcd60e51b8152600401610801906124a1565b6001600160a01b0381166115025760405162461bcd60e51b815260040161080190612242565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600d5481565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115ef82611851565b9050600081600001516001600160a01b0316611609611584565b6001600160a01b0316148061163e5750611621611584565b6001600160a01b0316611633846107da565b6001600160a01b0316145b80611652575081516116529061068b611584565b9050806116715760405162461bcd60e51b815260040161080190612593565b846001600160a01b031682600001516001600160a01b0316146116a65760405162461bcd60e51b81526004016108019061245b565b6001600160a01b0384166116cc5760405162461bcd60e51b815260040161080190612315565b6116d985858560016111fc565b6116e96000848460000151611588565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790559086018083529120549091166117fb5761179d8161157d565b156117fb578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461184a85858560016111fc565b5050505050565b611859611d43565b6118628261157d565b61187e5760405162461bcd60e51b815260040161080190612288565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118cf5791506107439050565b5060001901611880565b610911828260405180602001604052806000815250611b39565b6000611907846001600160a01b0316611b46565b15611a0357836001600160a01b031663150b7a02611923611584565b8786866040518563ffffffff1660e01b81526004016119459493929190612113565b602060405180830381600087803b15801561195f57600080fd5b505af192505050801561198f575060408051601f3d908101601f1916820190925261198c91810190611f94565b60015b6119e9573d8080156119bd576040519150601f19603f3d011682016040523d82523d6000602084013e6119c2565b606091505b5080516119e15760405162461bcd60e51b815260040161080190612688565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a07565b5060015b949350505050565b606060098054610757906128fc565b606081611a4357506040805180820190915260018152600360fc1b6020820152610743565b8160005b8115611a6d5780611a5781612937565b9150611a669050600a83612886565b9150611a47565b60008167ffffffffffffffff811115611a9657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ac0576020820181803683370190505b5090505b8415611a0757611ad56001836128b9565b9150611ae2600a86612952565b611aed90603061286e565b60f81b818381518110611b1057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b32600a86612886565b9450611ac4565b6108ba8383836001611b55565b6001600160a01b03163b151590565b6000546001600160a01b038516611b7e5760405162461bcd60e51b815260040161080190612708565b83611b9b5760405162461bcd60e51b815260040161080190612749565b611ba860008683876111fc565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b85811015611cb15760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611ca557611c8960008884886118f3565b611ca55760405162461bcd60e51b815260040161080190612688565b60019182019101611c36565b50600090815561184a908683876111fc565b828054611ccf906128fc565b90600052602060002090601f016020900481019282611cf15760008555611d37565b82601f10611d0a57805160ff1916838001178555611d37565b82800160010185558215611d37579182015b82811115611d37578251825591602001919060010190611d1c565b50610cab929150611d5a565b604080518082019091526000808252602082015290565b5b80821115610cab5760008155600101611d5b565b600067ffffffffffffffff80841115611d8a57611d8a612992565b604051601f8501601f19908116603f01168101908282118183101715611db257611db2612992565b81604052809350858152868686011115611dcb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461074357600080fd5b8035801515811461074357600080fd5b600060208284031215611e1d578081fd5b61136c82611de5565b60008060408385031215611e38578081fd5b611e4183611de5565b9150611e4f60208401611de5565b90509250929050565b600080600060608486031215611e6c578081fd5b611e7584611de5565b9250611e8360208501611de5565b9150604084013590509250925092565b60008060008060808587031215611ea8578081fd5b611eb185611de5565b9350611ebf60208601611de5565b925060408501359150606085013567ffffffffffffffff811115611ee1578182fd5b8501601f81018713611ef1578182fd5b611f0087823560208401611d6f565b91505092959194509250565b60008060408385031215611f1e578182fd5b611f2783611de5565b9150611e4f60208401611dfc565b60008060408385031215611f47578182fd5b611f5083611de5565b946020939093013593505050565b600060208284031215611f6f578081fd5b61136c82611dfc565b600060208284031215611f89578081fd5b813561136c816129a8565b600060208284031215611fa5578081fd5b815161136c816129a8565b600060208284031215611fc1578081fd5b813567ffffffffffffffff811115611fd7578182fd5b8201601f81018413611fe7578182fd5b611a0784823560208401611d6f565b600060208284031215612007578081fd5b5035919050565b600081518084526120268160208601602086016128d0565b601f01601f19169290920160200192915050565b60008451602061204d8285838a016128d0565b8551918401916120608184848a016128d0565b855492019183906002810460018083168061207c57607f831692505b85831081141561209a57634e487b7160e01b88526022600452602488fd5b8080156120ae57600181146120bf576120eb565b60ff198516885283880195506120eb565b6120c88b612862565b895b858110156120e35781548a8201529084019088016120ca565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121469083018461200e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156121885783518352928401929184019160010161216c565b50909695505050505050565b901515815260200190565b60006020825261136c602083018461200e565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252602e908201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526008908201526727379036b7b9329760c11b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526017908201527f4d6178696d756d20737570706c79206578636565646564000000000000000000604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601d908201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b602080825260139082015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b60208082526013908201527226b0bc103832b9102a2c103932b0b1b432b21760691b604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b90815260200190565b60009081526020902090565b6000821982111561288157612881612966565b500190565b6000826128955761289561297c565b500490565b60008160001904831182151516156128b4576128b4612966565b500290565b6000828210156128cb576128cb612966565b500390565b60005b838110156128eb5781810151838201526020016128d3565b838111156111fc5750506000910152565b60028104600182168061291057607f821691505b6020821081141561293157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561294b5761294b612966565b5060010190565b6000826129615761296161297c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b6257600080fdfea2646970667358221220cd3ca676ee52c884928c33459cba185ea2049a4757a2be9633a22029fbed275664736f6c63430008010033

Deployed Bytecode Sourcemap

65112:4331:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51928:372;;;;;;;;;;-1:-1:-1;51928:372:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53814:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55385:214::-;;;;;;;;;;-1:-1:-1;55385:214:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54906:413::-;;;;;;;;;;-1:-1:-1;54906:413:0;;;;;:::i;:::-;;:::i;:::-;;68937:100;;;;;;;;;;-1:-1:-1;68937:100:0;;;;;:::i;:::-;;:::i;68197:77::-;;;;;;;;;;-1:-1:-1;68197:77:0;;;;;:::i;:::-;;:::i;50177:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;56261:162::-;;;;;;;;;;-1:-1:-1;56261:162:0;;;;;:::i;:::-;;:::i;50849:1007::-;;;;;;;;;;-1:-1:-1;50849:1007:0;;;;;:::i;:::-;;:::i;68465:98::-;;;;;;;;;;-1:-1:-1;68465:98:0;;;;;:::i;:::-;;:::i;65978:182::-;;;;;;;;;;;;;:::i;56494:177::-;;;;;;;;;;-1:-1:-1;56494:177:0;;;;;:::i;:::-;;:::i;66989:704::-;;;;;;;;;;-1:-1:-1;66989:704:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65661:35::-;;;;;;;;;;;;;:::i;50362:187::-;;;;;;;;;;-1:-1:-1;50362:187:0;;;;;:::i;:::-;;:::i;68689:132::-;;;;;;;;;;-1:-1:-1;68689:132:0;;;;;:::i;:::-;;:::i;65777:27::-;;;;;;;;;;;;;:::i;65347:33::-;;;;;;;;;;;;;:::i;65747:25::-;;;;;;;;;;;;;:::i;53623:124::-;;;;;;;;;;-1:-1:-1;53623:124:0;;;;;:::i;:::-;;:::i;52364:221::-;;;;;;;;;;-1:-1:-1;52364:221:0;;;;;:::i;:::-;;:::i;17467:148::-;;;;;;;;;;;;;:::i;68829:100::-;;;;;;;;;;-1:-1:-1;68829:100:0;;;;;:::i;:::-;;:::i;68369:90::-;;;;;;;;;;-1:-1:-1;68369:90:0;;;;;:::i;:::-;;:::i;16816:87::-;;;;;;;;;;;;;:::i;53983:104::-;;;;;;;;;;;;;:::i;65545:34::-;;;;;;;;;;;;;:::i;66180:801::-;;;;;;:::i;:::-;;:::i;55671:288::-;;;;;;;;;;-1:-1:-1;55671:288:0;;;;;:::i;:::-;;:::i;65875:95::-;;;;;;;;;;-1:-1:-1;65875:95:0;;;;;:::i;:::-;;:::i;56742:355::-;;;;;;;;;;-1:-1:-1;56742:355:0;;;;;:::i;:::-;;:::i;68571:110::-;;;;;;;;;;-1:-1:-1;68571:110:0;;;;;:::i;:::-;;:::i;65621:29::-;;;;;;;;;;;;;:::i;67701:490::-;;;;;;;;;;-1:-1:-1;67701:490:0;;;;;:::i;:::-;;:::i;68280:81::-;;;;;;;;;;-1:-1:-1;68280:81:0;;;;;:::i;:::-;;:::i;65703:32::-;;;;;;;;;;;;;:::i;56030:164::-;;;;;;;;;;-1:-1:-1;56030:164:0;;;;;:::i;:::-;;:::i;69155:285::-;;;;;;;;;;-1:-1:-1;69155:285:0;;;;;:::i;:::-;;:::i;17770:244::-;;;;;;;;;;-1:-1:-1;17770:244:0;;;;;:::i;:::-;;:::i;65586:28::-;;;;;;;;;;;;;:::i;51928:372::-;52030:4;-1:-1:-1;;;;;;52067:40:0;;-1:-1:-1;;;52067:40:0;;:105;;-1:-1:-1;;;;;;;52124:48:0;;-1:-1:-1;;;52124:48:0;52067:105;:172;;;-1:-1:-1;;;;;;;52189:50:0;;-1:-1:-1;;;52189:50:0;52067:172;:225;;;;52256:36;52280:11;52256:23;:36::i;:::-;52047:245;;51928:372;;;;:::o;53814:100::-;53868:13;53901:5;53894:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53814:100;:::o;55385:214::-;55453:7;55481:16;55489:7;55481;:16::i;:::-;55473:74;;;;-1:-1:-1;;;55473:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;55567:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;55567:24:0;;55385:214::o;54906:413::-;54979:13;54995:24;55011:7;54995:15;:24::i;:::-;54979:40;;55044:5;-1:-1:-1;;;;;55038:11:0;:2;-1:-1:-1;;;;;55038:11:0;;;55030:58;;;;-1:-1:-1;;;55030:58:0;;;;;;;:::i;:::-;55139:5;-1:-1:-1;;;;;55123:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;55123:21:0;;:62;;;;55148:37;55165:5;55172:12;:10;:12::i;55148:37::-;55101:169;;;;-1:-1:-1;;;55101:169:0;;;;;;;:::i;:::-;55283:28;55292:2;55296:7;55305:5;55283:8;:28::i;:::-;54906:413;;;:::o;68937:100::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;69009:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;68937:100:::0;:::o;68197:77::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68253:6:::1;:15:::0;;-1:-1:-1;;68253:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;68197:77::o;50177:108::-;50238:7;50265:12;50177:108;:::o;56261:162::-;56387:28;56397:4;56403:2;56407:7;56387:9;:28::i;50849:1007::-;50938:7;50974:16;50984:5;50974:9;:16::i;:::-;50966:5;:24;50958:71;;;;-1:-1:-1;;;50958:71:0;;;;;;;:::i;:::-;51040:22;51065:13;:11;:13::i;:::-;51040:38;;51089:19;51119:25;51308:9;51303:466;51323:14;51319:1;:18;51303:466;;;51363:31;51397:14;;;:11;:14;;;;;;;;;51363:48;;;;;;;;;-1:-1:-1;;;;;51363:48:0;;;;;-1:-1:-1;;;51363:48:0;;;;;;;;;;;;51434:28;51430:111;;51507:14;;;-1:-1:-1;51430:111:0;51584:5;-1:-1:-1;;;;;51563:26:0;:17;-1:-1:-1;;;;;51563:26:0;;51559:195;;;51633:5;51618:11;:20;51614:85;;;-1:-1:-1;51674:1:0;-1:-1:-1;51667:8:0;;-1:-1:-1;;;51667:8:0;51614:85;51721:13;;;;;51559:195;-1:-1:-1;51339:3:0;;51303:466;;;;51792:56;;-1:-1:-1;;;51792:56:0;;;;;;;:::i;50849:1007::-;;;;;:::o;68465:98::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68533:10:::1;:24:::0;68465:98::o;65978:182::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;66029:12:::1;66055:10;-1:-1:-1::0;;;;;66047:24:0::1;66079:21;66047:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66028:77;;;66124:7;66116:36;;;;-1:-1:-1::0;;;66116:36:0::1;;;;;;;:::i;:::-;17107:1;65978:182::o:0;56494:177::-;56624:39;56641:4;56647:2;56651:7;56624:39;;;;;;;;;;;;:16;:39::i;66989:704::-;67076:16;67110:23;67136:17;67146:6;67136:9;:17::i;:::-;67110:43;;67164:30;67211:15;67197:30;;;;;;-1:-1:-1;;;67197:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67197:30:0;-1:-1:-1;67164:63:0;-1:-1:-1;67263:1:0;67238:22;67315:340;67340:15;67322;:33;:65;;;;;67377:10;;67359:14;:28;;67322:65;67315:340;;;67400:25;67428:23;67436:14;67428:7;:23::i;:::-;67400:51;;67491:6;-1:-1:-1;;;;;67470:27:0;:17;-1:-1:-1;;;;;67470:27:0;;67466:151;;;67551:14;67518:13;67532:15;67518:30;;;;;;-1:-1:-1;;;67518:30:0;;;;;;;;;;;;;;;;;;:47;67584:17;;;;:::i;:::-;;;;67466:151;67627:16;;;;:::i;:::-;;;;67315:340;;;;-1:-1:-1;67672:13:0;;66989:704;-1:-1:-1;;;;66989:704:0:o;65661:35::-;;;;:::o;50362:187::-;50429:7;50465:13;:11;:13::i;:::-;50457:5;:21;50449:69;;;;-1:-1:-1;;;50449:69:0;;;;;;;:::i;:::-;-1:-1:-1;50536:5:0;50362:187::o;68689:132::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68777:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;65777:27::-:0;;;;;;;;;:::o;65347:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65747:25::-;;;;;;:::o;53623:124::-;53687:7;53714:20;53726:7;53714:11;:20::i;:::-;:25;;53623:124;-1:-1:-1;;53623:124:0:o;52364:221::-;52428:7;-1:-1:-1;;;;;52456:19:0;;52448:75;;;;-1:-1:-1;;;52448:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;52549:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;52549:27:0;;52364:221::o;17467:148::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;17558:6:::1;::::0;17537:40:::1;::::0;17574:1:::1;::::0;-1:-1:-1;;;;;17558:6:0::1;::::0;17537:40:::1;::::0;17574:1;;17537:40:::1;17588:6;:19:::0;;-1:-1:-1;;;;;;17588:19:0::1;::::0;;17467:148::o;68829:100::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68901:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;68369:90::-:0;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68433:8:::1;:20:::0;68369:90::o;16816:87::-;16889:6;;-1:-1:-1;;;;;16889:6:0;16816:87;:::o;53983:104::-;54039:13;54072:7;54065:14;;;;;:::i;65545:34::-;;;;:::o;66180:801::-;66252:5;;66277:6;;;;66276:7;66268:43;;;;-1:-1:-1;;;66268:43:0;;;;;;;:::i;:::-;66338:1;66330:5;:9;66322:68;;;;-1:-1:-1;;;66322:68:0;;;;;;;:::i;:::-;66419:7;:5;:7::i;:::-;-1:-1:-1;;;;;66405:21:0;:10;-1:-1:-1;;;;;66405:21:0;;66401:463;;66443:11;66483:13;;66499:1;66483:17;;;;:::i;:::-;66475:5;66459:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:41;66458:117;;;;-1:-1:-1;66564:10:0;;66541;66523:29;;;;:17;:29;;;;;;:37;;66555:5;;66523:37;:::i;:::-;:51;;66458:117;66443:133;;66597:6;66593:112;;;66669:10;66631:1;66651:29;;;:17;:29;;;;;:38;;66631:1;;-1:-1:-1;66684:5:0;;66631:1;;66651:38;;66684:5;;66651:38;:::i;:::-;;;;-1:-1:-1;;66593:112:0;66742:12;66750:4;66742:5;:12;:::i;:::-;66729:9;:25;;66721:67;;;;-1:-1:-1;;;66721:67:0;;;;;;;:::i;:::-;66820:8;;66811:5;:17;;66803:49;;;;-1:-1:-1;;;66803:49:0;;;;;;;:::i;:::-;66401:463;;66909:10;;66900:5;66884:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:35;;66876:56;;;;-1:-1:-1;;;66876:56:0;;;;;;;:::i;:::-;66945:28;66955:10;66967:5;66945:9;:28::i;55671:288::-;55778:12;:10;:12::i;:::-;-1:-1:-1;;;;;55766:24:0;:8;-1:-1:-1;;;;;55766:24:0;;;55758:63;;;;-1:-1:-1;;;55758:63:0;;;;;;;:::i;:::-;55879:8;55834:18;:32;55853:12;:10;:12::i;:::-;-1:-1:-1;;;;;55834:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;55834:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;55834:53:0;;;;;;;;;;;55918:12;:10;:12::i;:::-;-1:-1:-1;;;;;55903:48:0;;55942:8;55903:48;;;;;;:::i;:::-;;;;;;;;55671:288;;:::o;65875:95::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;65945:5:::1;:17:::0;65875:95::o;56742:355::-;56901:28;56911:4;56917:2;56921:7;56901:9;:28::i;:::-;56962:48;56985:4;56991:2;56995:7;57004:5;56962:22;:48::i;:::-;56940:149;;;;-1:-1:-1;;;56940:149:0;;;;;;;:::i;:::-;56742:355;;;;:::o;68571:110::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68645:13:::1;:30:::0;68571:110::o;65621:29::-;;;;:::o;67701:490::-;67800:13;67841:17;67849:8;67841:7;:17::i;:::-;67825:98;;;;-1:-1:-1;;;67825:98:0;;;;;;;:::i;:::-;67934:8;;;;;;;67930:64;;67969:17;67962:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67930:64;68000:28;68031:10;:8;:10::i;:::-;68000:41;;68086:1;68061:14;68055:28;:32;:130;;;;;;;;;;;;;;;;;68123:14;68139:19;:8;:17;:19::i;:::-;68160:9;68106:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68055:130;68048:137;67701:490;-1:-1:-1;;;67701:490:0:o;68280:81::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68338:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;68338:17:0;;::::1;::::0;;;::::1;::::0;;68280:81::o;65703:32::-;;;;:::o;56030:164::-;-1:-1:-1;;;;;56151:25:0;;;56127:4;56151:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;56030:164::o;69155:285::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;69256:1:::1;69245:8;:12;69229:65;;;;-1:-1:-1::0;;;69229:65:0::1;;;;;;;:::i;:::-;69345:10;;69333:8;69317:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;69301:95;;;;-1:-1:-1::0;;;69301:95:0::1;;;;;;;:::i;:::-;69403:31;69413:10;69425:8;69403:9;:31::i;17770:244::-:0;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17859:22:0;::::1;17851:73;;;;-1:-1:-1::0;;;17851:73:0::1;;;;;;;:::i;:::-;17961:6;::::0;17940:38:::1;::::0;-1:-1:-1;;;;;17940:38:0;;::::1;::::0;17961:6:::1;::::0;17940:38:::1;::::0;17961:6:::1;::::0;17940:38:::1;17989:6;:17:::0;;-1:-1:-1;;;;;;17989:17:0::1;-1:-1:-1::0;;;;;17989:17:0;;;::::1;::::0;;;::::1;::::0;;17770:244::o;65586:28::-;;;;:::o;25090:157::-;-1:-1:-1;;;;;;25199:40:0;;-1:-1:-1;;;25199:40:0;25090:157;;;:::o;57352:111::-;57409:4;57443:12;-1:-1:-1;57433:22:0;57352:111::o;11842:98::-;11922:10;11842:98;:::o;62272:196::-;62387:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;62387:29:0;-1:-1:-1;;;;;62387:29:0;;;;;;;;;62432:28;;62387:24;;62432:28;;;;;;;62272:196;;;:::o;60152:2002::-;60267:35;60305:20;60317:7;60305:11;:20::i;:::-;60267:58;;60338:22;60380:13;:18;;;-1:-1:-1;;;;;60364:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;60364:34:0;;:87;;;;60439:12;:10;:12::i;:::-;-1:-1:-1;;;;;60415:36:0;:20;60427:7;60415:11;:20::i;:::-;-1:-1:-1;;;;;60415:36:0;;60364:87;:154;;;-1:-1:-1;60485:18:0;;60468:50;;60505:12;:10;:12::i;60468:50::-;60338:181;;60540:17;60532:80;;;;-1:-1:-1;;;60532:80:0;;;;;;;:::i;:::-;60655:4;-1:-1:-1;;;;;60633:26:0;:13;:18;;;-1:-1:-1;;;;;60633:26:0;;60625:77;;;;-1:-1:-1;;;60625:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;60721:16:0;;60713:66;;;;-1:-1:-1;;;60713:66:0;;;;;;;:::i;:::-;60792:43;60814:4;60820:2;60824:7;60833:1;60792:21;:43::i;:::-;60900:49;60917:1;60921:7;60930:13;:18;;;60900:8;:49::i;:::-;-1:-1:-1;;;;;61245:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;61245:31:0;;;-1:-1:-1;;;;;61245:31:0;;;-1:-1:-1;;61245:31:0;;;;;;;61291:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;61291:29:0;;;;;;;;;;;;;61337:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;61337:30:0;;;;-1:-1:-1;;;;61382:61:0;-1:-1:-1;;;61427:15:0;61382:61;;;;;;61717:11;;;61747:24;;;;;:29;61717:11;;61747:29;61743:295;;61815:20;61823:11;61815:7;:20::i;:::-;61811:212;;;61892:18;;;61860:24;;;:11;:24;;;;;;;;:50;;61975:28;;;;61933:70;;-1:-1:-1;;;61933:70:0;-1:-1:-1;;;;;;;;;61860:50:0;;;-1:-1:-1;;;;;;61860:50:0;;;;;;;61933:70;;;;;;;61811:212;60152:2002;62085:7;62081:2;-1:-1:-1;;;;;62066:27:0;62075:4;-1:-1:-1;;;;;62066:27:0;;;;;;;;;;;62104:42;62125:4;62131:2;62135:7;62144:1;62104:20;:42::i;:::-;60152:2002;;;;;:::o;53024:537::-;53085:21;;:::i;:::-;53127:16;53135:7;53127;:16::i;:::-;53119:71;;;;-1:-1:-1;;;53119:71:0;;;;;;;:::i;:::-;53248:7;53228:245;53295:31;53329:17;;;:11;:17;;;;;;;;;53295:51;;;;;;;;;-1:-1:-1;;;;;53295:51:0;;;;;-1:-1:-1;;;53295:51:0;;;;;;;;;;;;53369:28;53365:93;;53429:9;-1:-1:-1;53422:16:0;;-1:-1:-1;53422:16:0;53365:93;-1:-1:-1;;;53268:6:0;53228:245;;57471:104;57540:27;57550:2;57554:8;57540:27;;;;;;;;;;;;:9;:27::i;63033:804::-;63188:4;63209:15;:2;-1:-1:-1;;;;;63209:13:0;;:15::i;:::-;63205:625;;;63261:2;-1:-1:-1;;;;;63245:36:0;;63282:12;:10;:12::i;:::-;63296:4;63302:7;63311:5;63245:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63245:72:0;;;;;;;;-1:-1:-1;;63245:72:0;;;;;;;;;;;;:::i;:::-;;;63241:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63491:13:0;;63487:273;;63534:61;;-1:-1:-1;;;63534:61:0;;;;;;;:::i;63487:273::-;63710:6;63704:13;63695:6;63691:2;63687:15;63680:38;63241:534;-1:-1:-1;;;;;;63368:55:0;-1:-1:-1;;;63368:55:0;;-1:-1:-1;63361:62:0;;63205:625;-1:-1:-1;63814:4:0;63205:625;63033:804;;;;;;:::o;69043:104::-;69103:13;69132:9;69125:16;;;;;:::i;12525:723::-;12581:13;12802:10;12798:53;;-1:-1:-1;12829:10:0;;;;;;;;;;;;-1:-1:-1;;;12829:10:0;;;;;;12798:53;12876:5;12861:12;12917:78;12924:9;;12917:78;;12950:8;;;;:::i;:::-;;-1:-1:-1;12973:10:0;;-1:-1:-1;12981:2:0;12973:10;;:::i;:::-;;;12917:78;;;13005:19;13037:6;13027:17;;;;;;-1:-1:-1;;;13027:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13027:17:0;;13005:39;;13055:154;13062:10;;13055:154;;13089:11;13099:1;13089:11;;:::i;:::-;;-1:-1:-1;13158:10:0;13166:2;13158:5;:10;:::i;:::-;13145:24;;:2;:24;:::i;:::-;13132:39;;13115:6;13122;13115:14;;;;;;-1:-1:-1;;;13115:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;13115:56:0;;;;;;;;-1:-1:-1;13186:11:0;13195:2;13186:11;;:::i;:::-;;;13055:154;;57938:163;58061:32;58067:2;58071:8;58081:5;58088:4;58061:5;:32::i;1223:326::-;-1:-1:-1;;;;;1518:19:0;;:23;;;1223:326::o;58360:1538::-;58499:20;58522:12;-1:-1:-1;;;;;58553:16:0;;58545:62;;;;-1:-1:-1;;;58545:62:0;;;;;;;:::i;:::-;58626:13;58618:66;;;;-1:-1:-1;;;58618:66:0;;;;;;;:::i;:::-;58697:61;58727:1;58731:2;58735:12;58749:8;58697:21;:61::i;:::-;-1:-1:-1;;;;;59036:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;59036:45:0;;-1:-1:-1;;;;;59036:45:0;;;;;;;;59096:50;;;-1:-1:-1;;;59096:50:0;;;;;;;;;;;;;;;59163:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;59163:35:0;;;;-1:-1:-1;;;;59213:66:0;-1:-1:-1;;;59263:15:0;59213:66;;;;;;;59163:25;;59348:415;59368:8;59364:1;:12;59348:415;;;59407:38;;59432:12;;-1:-1:-1;;;;;59407:38:0;;;59424:1;;59407:38;;59424:1;;59407:38;59468:4;59464:249;;;59531:59;59562:1;59566:2;59570:12;59584:5;59531:22;:59::i;:::-;59497:196;;;;-1:-1:-1;;;59497:196:0;;;;;;;:::i;:::-;59733:14;;;;;59378:3;59348:415;;;-1:-1:-1;59779:12:0;:27;;;59830:60;;59863:2;59867:12;59881:8;59830:20;:60::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:633:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;232:2;226:9;200:2;286:15;;-1:-1:-1;;282:24:1;;;308:2;278:33;274:42;262:55;;;332:18;;;352:22;;;329:46;326:2;;;378:18;;:::i;:::-;418:10;414:2;407:22;447:6;438:15;;477:6;469;462:22;517:3;508:6;503:3;499:16;496:25;493:2;;;534:1;531;524:12;493:2;584:6;579:3;572:4;564:6;560:17;547:44;639:1;632:4;623:6;615;611:19;607:30;600:41;;;;90:557;;;;;:::o;652:175::-;722:20;;-1:-1:-1;;;;;771:31:1;;761:42;;751:2;;817:1;814;807:12;832:162;899:20;;955:13;;948:21;938:32;;928:2;;984:1;981;974:12;999:198;;1111:2;1099:9;1090:7;1086:23;1082:32;1079:2;;;1132:6;1124;1117:22;1079:2;1160:31;1181:9;1160:31;:::i;1202:274::-;;;1331:2;1319:9;1310:7;1306:23;1302:32;1299:2;;;1352:6;1344;1337:22;1299:2;1380:31;1401:9;1380:31;:::i;:::-;1370:41;;1430:40;1466:2;1455:9;1451:18;1430:40;:::i;:::-;1420:50;;1289:187;;;;;:::o;1481:342::-;;;;1627:2;1615:9;1606:7;1602:23;1598:32;1595:2;;;1648:6;1640;1633:22;1595:2;1676:31;1697:9;1676:31;:::i;:::-;1666:41;;1726:40;1762:2;1751:9;1747:18;1726:40;:::i;:::-;1716:50;;1813:2;1802:9;1798:18;1785:32;1775:42;;1585:238;;;;;:::o;1828:702::-;;;;;2000:3;1988:9;1979:7;1975:23;1971:33;1968:2;;;2022:6;2014;2007:22;1968:2;2050:31;2071:9;2050:31;:::i;:::-;2040:41;;2100:40;2136:2;2125:9;2121:18;2100:40;:::i;:::-;2090:50;;2187:2;2176:9;2172:18;2159:32;2149:42;;2242:2;2231:9;2227:18;2214:32;2269:18;2261:6;2258:30;2255:2;;;2306:6;2298;2291:22;2255:2;2334:22;;2387:4;2379:13;;2375:27;-1:-1:-1;2365:2:1;;2421:6;2413;2406:22;2365:2;2449:75;2516:7;2511:2;2498:16;2493:2;2489;2485:11;2449:75;:::i;:::-;2439:85;;;1958:572;;;;;;;:::o;2535:268::-;;;2661:2;2649:9;2640:7;2636:23;2632:32;2629:2;;;2682:6;2674;2667:22;2629:2;2710:31;2731:9;2710:31;:::i;:::-;2700:41;;2760:37;2793:2;2782:9;2778:18;2760:37;:::i;2808:266::-;;;2937:2;2925:9;2916:7;2912:23;2908:32;2905:2;;;2958:6;2950;2943:22;2905:2;2986:31;3007:9;2986:31;:::i;:::-;2976:41;3064:2;3049:18;;;;3036:32;;-1:-1:-1;;;2895:179:1:o;3079:192::-;;3188:2;3176:9;3167:7;3163:23;3159:32;3156:2;;;3209:6;3201;3194:22;3156:2;3237:28;3255:9;3237:28;:::i;3276:257::-;;3387:2;3375:9;3366:7;3362:23;3358:32;3355:2;;;3408:6;3400;3393:22;3355:2;3452:9;3439:23;3471:32;3497:5;3471:32;:::i;3538:261::-;;3660:2;3648:9;3639:7;3635:23;3631:32;3628:2;;;3681:6;3673;3666:22;3628:2;3718:9;3712:16;3737:32;3763:5;3737:32;:::i;3804:482::-;;3926:2;3914:9;3905:7;3901:23;3897:32;3894:2;;;3947:6;3939;3932:22;3894:2;3992:9;3979:23;4025:18;4017:6;4014:30;4011:2;;;4062:6;4054;4047:22;4011:2;4090:22;;4143:4;4135:13;;4131:27;-1:-1:-1;4121:2:1;;4177:6;4169;4162:22;4121:2;4205:75;4272:7;4267:2;4254:16;4249:2;4245;4241:11;4205:75;:::i;4291:190::-;;4403:2;4391:9;4382:7;4378:23;4374:32;4371:2;;;4424:6;4416;4409:22;4371:2;-1:-1:-1;4452:23:1;;4361:120;-1:-1:-1;4361:120:1:o;4486:259::-;;4567:5;4561:12;4594:6;4589:3;4582:19;4610:63;4666:6;4659:4;4654:3;4650:14;4643:4;4636:5;4632:16;4610:63;:::i;:::-;4727:2;4706:15;-1:-1:-1;;4702:29:1;4693:39;;;;4734:4;4689:50;;4537:208;-1:-1:-1;;4537:208:1:o;4750:1532::-;;5012:6;5006:13;5038:4;5051:51;5095:6;5090:3;5085:2;5077:6;5073:15;5051:51;:::i;:::-;5165:13;;5124:16;;;;5187:55;5165:13;5124:16;5209:15;;;5187:55;:::i;:::-;5333:13;;5264:20;;;5304:3;;5410:1;5395:17;;5431:1;5467:18;;;;5494:2;;5572:4;5562:8;5558:19;5546:31;;5494:2;5635;5625:8;5622:16;5602:18;5599:40;5596:2;;;-1:-1:-1;;;5662:33:1;;5718:4;5715:1;5708:15;5748:4;5669:3;5736:17;5596:2;5779:18;5806:110;;;;5930:1;5925:332;;;;5772:485;;5806:110;-1:-1:-1;;5841:24:1;;5827:39;;5886:20;;;;-1:-1:-1;5806:110:1;;5925:332;5961:39;5993:6;5961:39;:::i;:::-;6022:3;6038:169;6052:8;6049:1;6046:15;6038:169;;;6134:14;;6119:13;;;6112:37;6177:16;;;;6069:10;;6038:169;;;6042:3;;6238:8;6231:5;6227:20;6220:27;;5772:485;-1:-1:-1;6273:3:1;;4982:1300;-1:-1:-1;;;;;;;;;;;4982:1300:1:o;6287:205::-;6487:3;6478:14::o;6497:203::-;-1:-1:-1;;;;;6661:32:1;;;;6643:51;;6631:2;6616:18;;6598:102::o;6705:490::-;-1:-1:-1;;;;;6974:15:1;;;6956:34;;7026:15;;7021:2;7006:18;;6999:43;7073:2;7058:18;;7051:34;;;7121:3;7116:2;7101:18;;7094:31;;;6705:490;;7142:47;;7169:19;;7161:6;7142:47;:::i;:::-;7134:55;6908:287;-1:-1:-1;;;;;;6908:287:1:o;7200:635::-;7371:2;7423:21;;;7493:13;;7396:18;;;7515:22;;;7200:635;;7371:2;7594:15;;;;7568:2;7553:18;;;7200:635;7640:169;7654:6;7651:1;7648:13;7640:169;;;7715:13;;7703:26;;7784:15;;;;7749:12;;;;7676:1;7669:9;7640:169;;;-1:-1:-1;7826:3:1;;7351:484;-1:-1:-1;;;;;;7351:484:1:o;7840:187::-;8005:14;;7998:22;7980:41;;7968:2;7953:18;;7935:92::o;8032:221::-;;8181:2;8170:9;8163:21;8201:46;8243:2;8232:9;8228:18;8220:6;8201:46;:::i;8258:398::-;8460:2;8442:21;;;8499:2;8479:18;;;8472:30;8538:34;8533:2;8518:18;;8511:62;-1:-1:-1;;;8604:2:1;8589:18;;8582:32;8646:3;8631:19;;8432:224::o;8661:410::-;8863:2;8845:21;;;8902:2;8882:18;;;8875:30;8941:34;8936:2;8921:18;;8914:62;-1:-1:-1;;;9007:2:1;8992:18;;8985:44;9061:3;9046:19;;8835:236::o;9076:402::-;9278:2;9260:21;;;9317:2;9297:18;;;9290:30;9356:34;9351:2;9336:18;;9329:62;-1:-1:-1;;;9422:2:1;9407:18;;9400:36;9468:3;9453:19;;9250:228::o;9483:406::-;9685:2;9667:21;;;9724:2;9704:18;;;9697:30;9763:34;9758:2;9743:18;;9736:62;-1:-1:-1;;;9829:2:1;9814:18;;9807:40;9879:3;9864:19;;9657:232::o;9894:399::-;10096:2;10078:21;;;10135:2;10115:18;;;10108:30;10174:34;10169:2;10154:18;;10147:62;-1:-1:-1;;;10240:2:1;10225:18;;10218:33;10283:3;10268:19;;10068:225::o;10298:401::-;10500:2;10482:21;;;10539:2;10519:18;;;10512:30;10578:34;10573:2;10558:18;;10551:62;-1:-1:-1;;;10644:2:1;10629:18;;10622:35;10689:3;10674:19;;10472:227::o;10704:331::-;10906:2;10888:21;;;10945:1;10925:18;;;10918:29;-1:-1:-1;;;10978:2:1;10963:18;;10956:38;11026:2;11011:18;;10878:157::o;11040:421::-;11242:2;11224:21;;;11281:2;11261:18;;;11254:30;11320:34;11315:2;11300:18;;11293:62;11391:27;11386:2;11371:18;;11364:55;11451:3;11436:19;;11214:247::o;11466:407::-;11668:2;11650:21;;;11707:2;11687:18;;;11680:30;11746:34;11741:2;11726:18;;11719:62;-1:-1:-1;;;11812:2:1;11797:18;;11790:41;11863:3;11848:19;;11640:233::o;11878:347::-;12080:2;12062:21;;;12119:2;12099:18;;;12092:30;12158:25;12153:2;12138:18;;12131:53;12216:2;12201:18;;12052:173::o;12230:402::-;12432:2;12414:21;;;12471:2;12451:18;;;12444:30;12510:34;12505:2;12490:18;;12483:62;-1:-1:-1;;;12576:2:1;12561:18;;12554:36;12622:3;12607:19;;12404:228::o;12637:356::-;12839:2;12821:21;;;12858:18;;;12851:30;12917:34;12912:2;12897:18;;12890:62;12984:2;12969:18;;12811:182::o;12998:347::-;13200:2;13182:21;;;13239:2;13219:18;;;13212:30;13278:25;13273:2;13258:18;;13251:53;13336:2;13321:18;;13172:173::o;13350:411::-;13552:2;13534:21;;;13591:2;13571:18;;;13564:30;13630:34;13625:2;13610:18;;13603:62;-1:-1:-1;;;13696:2:1;13681:18;;13674:45;13751:3;13736:19;;13524:237::o;13766:350::-;13968:2;13950:21;;;14007:2;13987:18;;;13980:30;14046:28;14041:2;14026:18;;14019:56;14107:2;14092:18;;13940:176::o;14121:414::-;14323:2;14305:21;;;14362:2;14342:18;;;14335:30;14401:34;14396:2;14381:18;;14374:62;-1:-1:-1;;;14467:2:1;14452:18;;14445:48;14525:3;14510:19;;14295:240::o;14540:353::-;14742:2;14724:21;;;14781:2;14761:18;;;14754:30;14820:31;14815:2;14800:18;;14793:59;14884:2;14869:18;;14714:179::o;14898:398::-;15100:2;15082:21;;;15139:2;15119:18;;;15112:30;15178:34;15173:2;15158:18;;15151:62;-1:-1:-1;;;15244:2:1;15229:18;;15222:32;15286:3;15271:19;;15072:224::o;15301:340::-;15503:2;15485:21;;;15542:2;15522:18;;;15515:30;-1:-1:-1;;;15576:2:1;15561:18;;15554:46;15632:2;15617:18;;15475:166::o;15646:415::-;15848:2;15830:21;;;15887:2;15867:18;;;15860:30;15926:34;15921:2;15906:18;;15899:62;-1:-1:-1;;;15992:2:1;15977:18;;15970:49;16051:3;16036:19;;15820:241::o;16066:343::-;16268:2;16250:21;;;16307:2;16287:18;;;16280:30;-1:-1:-1;;;16341:2:1;16326:18;;16319:49;16400:2;16385:18;;16240:169::o;16414:397::-;16616:2;16598:21;;;16655:2;16635:18;;;16628:30;16694:34;16689:2;16674:18;;16667:62;-1:-1:-1;;;16760:2:1;16745:18;;16738:31;16801:3;16786:19;;16588:223::o;16816:404::-;17018:2;17000:21;;;17057:2;17037:18;;;17030:30;17096:34;17091:2;17076:18;;17069:62;-1:-1:-1;;;17162:2:1;17147:18;;17140:38;17210:3;17195:19;;16990:230::o;17225:343::-;17427:2;17409:21;;;17466:2;17446:18;;;17439:30;-1:-1:-1;;;17500:2:1;17485:18;;17478:49;17559:2;17544:18;;17399:169::o;17573:410::-;17775:2;17757:21;;;17814:2;17794:18;;;17787:30;17853:34;17848:2;17833:18;;17826:62;-1:-1:-1;;;17919:2:1;17904:18;;17897:44;17973:3;17958:19;;17747:236::o;18404:409::-;18606:2;18588:21;;;18645:2;18625:18;;;18618:30;18684:34;18679:2;18664:18;;18657:62;-1:-1:-1;;;18750:2:1;18735:18;;18728:43;18803:3;18788:19;;18578:235::o;18818:177::-;18964:25;;;18952:2;18937:18;;18919:76::o;19000:129::-;;19068:17;;;19118:4;19102:21;;;19058:71::o;19134:128::-;;19205:1;19201:6;19198:1;19195:13;19192:2;;;19211:18;;:::i;:::-;-1:-1:-1;19247:9:1;;19182:80::o;19267:120::-;;19333:1;19323:2;;19338:18;;:::i;:::-;-1:-1:-1;19372:9:1;;19313:74::o;19392:168::-;;19498:1;19494;19490:6;19486:14;19483:1;19480:21;19475:1;19468:9;19461:17;19457:45;19454:2;;;19505:18;;:::i;:::-;-1:-1:-1;19545:9:1;;19444:116::o;19565:125::-;;19633:1;19630;19627:8;19624:2;;;19638:18;;:::i;:::-;-1:-1:-1;19675:9:1;;19614:76::o;19695:258::-;19767:1;19777:113;19791:6;19788:1;19785:13;19777:113;;;19867:11;;;19861:18;19848:11;;;19841:39;19813:2;19806:10;19777:113;;;19908:6;19905:1;19902:13;19899:2;;;-1:-1:-1;;19943:1:1;19925:16;;19918:27;19748:205::o;19958:380::-;20043:1;20033:12;;20090:1;20080:12;;;20101:2;;20155:4;20147:6;20143:17;20133:27;;20101:2;20208;20200:6;20197:14;20177:18;20174:38;20171:2;;;20254:10;20249:3;20245:20;20242:1;20235:31;20289:4;20286:1;20279:15;20317:4;20314:1;20307:15;20171:2;;20013:325;;;:::o;20343:135::-;;-1:-1:-1;;20403:17:1;;20400:2;;;20423:18;;:::i;:::-;-1:-1:-1;20470:1:1;20459:13;;20390:88::o;20483:112::-;;20541:1;20531:2;;20546:18;;:::i;:::-;-1:-1:-1;20580:9:1;;20521:74::o;20600:127::-;20661:10;20656:3;20652:20;20649:1;20642:31;20692:4;20689:1;20682:15;20716:4;20713:1;20706:15;20732:127;20793:10;20788:3;20784:20;20781:1;20774:31;20824:4;20821:1;20814:15;20848:4;20845:1;20838:15;20864:127;20925:10;20920:3;20916:20;20913:1;20906:31;20956:4;20953:1;20946:15;20980:4;20977:1;20970:15;20996:133;-1:-1:-1;;;;;;21072:32:1;;21062:43;;21052:2;;21119:1;21116;21109:12

Swarm Source

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