ETH Price: $1,461.20 (-7.28%)
 

Overview

Max Total Supply

335 Scattered Limbs (Monument 01)

Holders

146

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Scattered Limbs (Monument 01)
0x940c561fda4c24529c45485b0be9a25edccf94cf
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:
FeralfileExhibitionV3

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 10 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: github/bitmark-inc/feralfile-exhibition-smart-contract/contracts/Authorizable.sol


pragma solidity >=0.4.22 <0.9.0;


contract Authorizable is Ownable {
    mapping(address => bool) public trustees;

    constructor() {}

    modifier onlyAuthorized() {
        require(trustees[msg.sender] || msg.sender == owner());
        _;
    }

    function addTrustee(address _trustee) public onlyOwner {
        trustees[_trustee] = true;
    }

    function removeTrustee(address _trustee) public onlyOwner {
        delete trustees[_trustee];
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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 view returns (string memory);
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.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: address zero is not a valid owner");
        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: invalid token ID");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` 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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: github/bitmark-inc/feralfile-exhibition-smart-contract/contracts/FeralfileArtworkV3.sol


pragma solidity ^0.8.0;






contract FeralfileExhibitionV3 is ERC721Enumerable, Authorizable, IERC2981 {
    using Strings for uint256;

    // royalty payout address
    address public royaltyPayoutAddress;

    // the basis points of royalty payments for each secondary sales
    uint256 public immutable secondarySaleRoyaltyBPS;

    // the maximum basis points of royalty payments
    uint256 public constant MAX_ROYALITY_BPS = 100_00;

    // version code of contract
    string public constant codeVersion = "FeralfileExhibitionV3";

    // burnable
    bool public isBurnable;

    // bridgeable
    bool public isBridgeable;

    // token base URI
    string private _tokenBaseURI;

    // contract URI
    string private _contractURI;

    /// @notice A structure for Feral File artwork
    struct Artwork {
        string title;
        string artistName;
        string fingerprint;
        uint256 editionSize;
        uint256 AEAmount;
        uint256 PPAmount;
    }

    struct ArtworkEdition {
        uint256 editionID;
        string ipfsCID;
    }

    struct TransferArtworkParam {
        address from;
        address to;
        uint256 tokenID;
        uint256 expireTime;
        bytes32 r_;
        bytes32 s_;
        uint8 v_;
    }

    struct MintArtworkParam {
        uint256 artworkID;
        uint256 edition;
        address artist;
        address owner;
        string ipfsCID;
    }

    struct ArtworkEditionIndex {
        uint256 artworkID;
        uint256 index;
    }

    uint256[] private _allArtworks;
    mapping(uint256 => Artwork) public artworks; // artworkID => Artwork
    mapping(uint256 => ArtworkEdition) public artworkEditions; // artworkEditionID => ArtworkEdition
    mapping(uint256 => uint256[]) internal allArtworkEditions; // artworkID => []ArtworkEditionID
    mapping(string => bool) internal registeredIPFSCIDs; // ipfsCID => bool
    mapping(uint256 => ArtworkEditionIndex) internal allArtworkEditionsIndex; // editionID => ArtworkEditionIndex

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 secondarySaleRoyaltyBPS_,
        address royaltyPayoutAddress_,
        string memory contractURI_,
        string memory tokenBaseURI_,
        bool isBurnable_,
        bool isBridgeable_
    ) ERC721(name_, symbol_) {
        require(
            secondarySaleRoyaltyBPS_ <= MAX_ROYALITY_BPS,
            "royalty BPS for secondary sales can not be greater than the maximum royalty BPS"
        );
        require(
            royaltyPayoutAddress_ != address(0),
            "invalid royalty payout address"
        );

        secondarySaleRoyaltyBPS = secondarySaleRoyaltyBPS_;
        royaltyPayoutAddress = royaltyPayoutAddress_;
        _contractURI = contractURI_;
        _tokenBaseURI = tokenBaseURI_;
        isBurnable = isBurnable_;
        isBridgeable = isBridgeable_;
    }

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

    /// @notice Call to create an artwork in the exhibition
    /// @param fingerprint - the fingerprint of an artwork
    /// @param title - the title of an artwork
    /// @param artistName - the artist of an artwork
    /// @param editionSize - the maximum edition size of an artwork
    function _createArtwork(
        string memory fingerprint,
        string memory title,
        string memory artistName,
        uint256 editionSize,
        uint256 aeAmount,
        uint256 ppAmount
    ) private {
        require(bytes(title).length != 0, "title can not be empty");
        require(bytes(artistName).length != 0, "artist can not be empty");
        require(bytes(fingerprint).length != 0, "fingerprint can not be empty");
        require(editionSize > 0, "edition size needs to be at least 1");

        uint256 artworkID = uint256(keccak256(abi.encode(fingerprint)));

        /// @notice make sure the artwork have not been registered
        require(
            bytes(artworks[artworkID].fingerprint).length == 0,
            "an artwork with the same fingerprint has already registered"
        );

        Artwork memory artwork = Artwork(
            title = title,
            artistName = artistName,
            fingerprint = fingerprint,
            editionSize = editionSize,
            aeAmount = aeAmount,
            ppAmount = ppAmount
        );

        _allArtworks.push(artworkID);
        artworks[artworkID] = artwork;

        emit NewArtwork(artworkID);
    }

    /// @notice createArtworks use for create list of artworks in a transaction
    /// @param artworks_ - the array of artwork
    function createArtworks(Artwork[] memory artworks_)
        external
        onlyAuthorized
    {
        for (uint256 i = 0; i < artworks_.length; i++) {
            _createArtwork(
                artworks_[i].fingerprint,
                artworks_[i].title,
                artworks_[i].artistName,
                artworks_[i].editionSize,
                artworks_[i].AEAmount,
                artworks_[i].PPAmount
            );
        }
    }

    /// @notice Return a count of artworks registered in this exhibition
    function totalArtworks() public view virtual returns (uint256) {
        return _allArtworks.length;
    }

    /// @notice Return the token identifier for the `index`th artwork
    function getArtworkByIndex(uint256 index)
        public
        view
        virtual
        returns (uint256)
    {
        require(
            index < totalArtworks(),
            "artworks: global index out of bounds"
        );
        return _allArtworks[index];
    }

    /// @notice Update the IPFS cid of an edition to a new value
    function updateArtworkEditionIPFSCid(uint256 tokenId, string memory ipfsCID)
        external
        onlyAuthorized
    {
        require(_exists(tokenId), "artwork edition is not found");
        require(!registeredIPFSCIDs[ipfsCID], "ipfs id has registered");

        ArtworkEdition storage edition = artworkEditions[tokenId];
        delete registeredIPFSCIDs[edition.ipfsCID];
        registeredIPFSCIDs[ipfsCID] = true;
        edition.ipfsCID = ipfsCID;
    }

    /// @notice setRoyaltyPayoutAddress assigns a payout address so
    //          that we can split the royalty.
    /// @param royaltyPayoutAddress_ - the new royalty payout address
    function setRoyaltyPayoutAddress(address royaltyPayoutAddress_)
        external
        onlyAuthorized
    {
        require(
            royaltyPayoutAddress_ != address(0),
            "invalid royalty payout address"
        );
        royaltyPayoutAddress = royaltyPayoutAddress_;
    }

    /// @notice Return the edition counts for an artwork
    function totalEditionOfArtwork(uint256 artworkID)
        public
        view
        returns (uint256)
    {
        return allArtworkEditions[artworkID].length;
    }

    /// @notice Return the edition id of an artwork by index
    function getArtworkEditionByIndex(uint256 artworkID, uint256 index)
        public
        view
        returns (uint256)
    {
        require(index < totalEditionOfArtwork(artworkID));
        return allArtworkEditions[artworkID][index];
    }

    /// @notice A distinct Uniform Resource Identifier (URI) for a given asset.
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _tokenBaseURI;
        if (bytes(baseURI).length == 0) {
            baseURI = "ipfs://";
        }

        return
            string(abi.encodePacked(baseURI, artworkEditions[tokenId].ipfsCID));
    }

    /// @notice Update the base URI for all tokens
    function setTokenBaseURI(string memory baseURI_) external onlyAuthorized {
        _tokenBaseURI = baseURI_;
    }

    /// @notice A URL for the opensea storefront-level metadata
    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param tokenId - the NFT asset queried for royalty information
    /// @param salePrice - the sale price of the NFT asset specified by tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for salePrice
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(
            _exists(tokenId),
            "ERC2981: query royalty info for nonexistent token"
        );

        receiver = royaltyPayoutAddress;

        royaltyAmount =
            (salePrice * secondarySaleRoyaltyBPS) /
            MAX_ROYALITY_BPS;
    }

    /// @notice isValidRequest validates a message by ecrecover to ensure
    //          it is signed by owner of token.
    /// @param message_ - the raw message for signing
    /// @param owner_ - owner address of token
    /// @param r_ - part of signature for validating parameters integrity
    /// @param s_ - part of signature for validating parameters integrity
    /// @param v_ - part of signature for validating parameters integrity
    function isValidRequest(
        bytes32 message_,
        address owner_,
        bytes32 r_,
        bytes32 s_,
        uint8 v_
    ) internal pure returns (bool) {
        address signer = ECDSA.recover(
            ECDSA.toEthSignedMessageHash(message_),
            v_,
            r_,
            s_
        );
        return signer == owner_;
    }

    /// @notice authorizedTransfer use for transfer list of items in a transaction
    /// @param transferParams_ - the array of transfer parameters
    function authorizedTransfer(TransferArtworkParam[] memory transferParams_)
        external
        onlyAuthorized
    {
        for (uint256 i = 0; i < transferParams_.length; i++) {
            _authorizedTransfer(transferParams_[i]);
        }
    }

    function _authorizedTransfer(TransferArtworkParam memory transferParam_)
        private
    {
        require(
            _exists(transferParam_.tokenID),
            "ERC721: artwork edition is not found"
        );

        require(
            _isApprovedOrOwner(transferParam_.from, transferParam_.tokenID),
            "ERC721: caller is not token owner nor approved"
        );

        require(
            block.timestamp <= transferParam_.expireTime,
            "FeralfileExhibitionV3: the transfer request is expired"
        );

        bytes32 requestHash = keccak256(
            abi.encode(
                transferParam_.from,
                transferParam_.to,
                transferParam_.tokenID,
                transferParam_.expireTime
            )
        );

        require(
            isValidRequest(
                requestHash,
                transferParam_.from,
                transferParam_.r_,
                transferParam_.s_,
                transferParam_.v_
            ),
            "FeralfileExhibitionV3: the transfer request is not authorized"
        );

        _safeTransfer(
            transferParam_.from,
            transferParam_.to,
            transferParam_.tokenID,
            ""
        );
    }

    /// @notice batchMint is function mint array of tokens
    /// @param mintParams_ - the array of transfer parameters
    function batchMint(MintArtworkParam[] memory mintParams_)
        external
        onlyAuthorized
    {
        for (uint256 i = 0; i < mintParams_.length; i++) {
            _mintArtwork(
                mintParams_[i].artworkID,
                mintParams_[i].edition,
                mintParams_[i].artist,
                mintParams_[i].owner,
                mintParams_[i].ipfsCID
            );
        }
    }

    /// @notice mint artwork to ERC721
    /// @param artworkID_ - the artwork id where the new edition is referenced to
    /// @param editionNumber_ - the edition number of the artwork edition
    /// @param artist_ - the artist address of the new minted token
    /// @param owner_ - the owner address of the new minted token
    /// @param ipfsCID_ - the IPFS cid for the new token
    function _mintArtwork(
        uint256 artworkID_,
        uint256 editionNumber_,
        address artist_,
        address owner_,
        string memory ipfsCID_
    ) private {
        /// @notice the edition size is not set implies the artwork is not created
        require(
            artworks[artworkID_].editionSize > 0,
            "FeralfileExhibitionV3: artwork is not found"
        );
        /// @notice The range of editionNumber should be between 0 to artwork.editionSize + artwork.AEAmount + artwork.PPAmount - 1
        require(
            editionNumber_ <
                artworks[artworkID_].editionSize +
                    artworks[artworkID_].AEAmount +
                    artworks[artworkID_].PPAmount,
            "FeralfileExhibitionV3: edition number exceed the edition size of the artwork"
        );
        require(artist_ != address(0), "invalid artist address");
        require(owner_ != address(0), "invalid owner address");
        require(!registeredIPFSCIDs[ipfsCID_], "ipfs id has registered");

        uint256 editionID = artworkID_ + editionNumber_;
        require(
            artworkEditions[editionID].editionID == 0,
            "FeralfileExhibitionV3: the edition is existent"
        );

        ArtworkEdition memory edition = ArtworkEdition(editionID, ipfsCID_);

        artworkEditions[editionID] = edition;
        allArtworkEditions[artworkID_].push(editionID);
        allArtworkEditionsIndex[editionID] = ArtworkEditionIndex(
            artworkID_,
            allArtworkEditions[artworkID_].length - 1
        );

        registeredIPFSCIDs[ipfsCID_] = true;

        _safeMint(artist_, editionID);

        if (artist_ != owner_) {
            _safeTransfer(artist_, owner_, editionID, "");
        }

        emit NewArtworkEdition(owner_, artworkID_, editionID);
    }

    /// @notice remove an edition from allArtworkEditions
    /// @param editionID - the edition id where we are going to remove from allArtworkEditions
    function _removeEditionFromAllArtworkEditions(uint256 editionID) private {
        ArtworkEditionIndex
            memory artworkEditionIndex = allArtworkEditionsIndex[editionID];

        require(
            artworkEditionIndex.artworkID > 0,
            "FeralfileExhibitionV3: artworkID is no found for the artworkEditionIndex"
        );

        uint256[] storage artworkEditions_ = allArtworkEditions[
            artworkEditionIndex.artworkID
        ];

        require(
            artworkEditions_.length > 0,
            "FeralfileExhibitionV3: no editions in this artwork of allArtworkEditions"
        );

        uint256 lastEditionIndex = artworkEditions_.length - 1;
        uint256 lastEditionID = artworkEditions_[artworkEditions_.length - 1];

        // Swap between the last token and the to-delete token and pop up the last token
        artworkEditions_[artworkEditionIndex.index] = lastEditionID;
        artworkEditions_[lastEditionIndex] = artworkEditionIndex.index;
        artworkEditions_.pop();

        delete allArtworkEditionsIndex[editionID];
    }

    /// @notice burn editions
    /// @param editionIDs_ - the list of edition id will be burned
    function burnEditions(uint256[] memory editionIDs_) public {
        require(isBurnable, "FeralfileExhibitionV3: not allow burn edition");

        for (uint256 i = 0; i < editionIDs_.length; i++) {
            require(
                _exists(editionIDs_[i]),
                "ERC721: artwork edition is not found"
            );
            require(
                _isApprovedOrOwner(_msgSender(), editionIDs_[i]),
                "ERC721: caller is not token owner nor approved"
            );
            ArtworkEdition memory edition = artworkEditions[editionIDs_[i]];

            delete registeredIPFSCIDs[edition.ipfsCID];
            delete artworkEditions[editionIDs_[i]];

            _removeEditionFromAllArtworkEditions(editionIDs_[i]);

            _burn(editionIDs_[i]);

            emit BurnArtworkEdition(editionIDs_[i]);
        }
    }

    event NewArtwork(uint256 indexed artworkID);
    event NewArtworkEdition(
        address indexed owner,
        uint256 indexed artworkID,
        uint256 indexed editionID
    );
    event BurnArtworkEdition(uint256 indexed editionID);
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"secondarySaleRoyaltyBPS_","type":"uint256"},{"internalType":"address","name":"royaltyPayoutAddress_","type":"address"},{"internalType":"string","name":"contractURI_","type":"string"},{"internalType":"string","name":"tokenBaseURI_","type":"string"},{"internalType":"bool","name":"isBurnable_","type":"bool"},{"internalType":"bool","name":"isBridgeable_","type":"bool"}],"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":"uint256","name":"editionID","type":"uint256"}],"name":"BurnArtworkEdition","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"artworkID","type":"uint256"}],"name":"NewArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"artworkID","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"editionID","type":"uint256"}],"name":"NewArtworkEdition","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":[],"name":"MAX_ROYALITY_BPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_trustee","type":"address"}],"name":"addTrustee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"artworkEditions","outputs":[{"internalType":"uint256","name":"editionID","type":"uint256"},{"internalType":"string","name":"ipfsCID","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"artworks","outputs":[{"internalType":"string","name":"title","type":"string"},{"internalType":"string","name":"artistName","type":"string"},{"internalType":"string","name":"fingerprint","type":"string"},{"internalType":"uint256","name":"editionSize","type":"uint256"},{"internalType":"uint256","name":"AEAmount","type":"uint256"},{"internalType":"uint256","name":"PPAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"uint256","name":"expireTime","type":"uint256"},{"internalType":"bytes32","name":"r_","type":"bytes32"},{"internalType":"bytes32","name":"s_","type":"bytes32"},{"internalType":"uint8","name":"v_","type":"uint8"}],"internalType":"struct FeralfileExhibitionV3.TransferArtworkParam[]","name":"transferParams_","type":"tuple[]"}],"name":"authorizedTransfer","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":[{"components":[{"internalType":"uint256","name":"artworkID","type":"uint256"},{"internalType":"uint256","name":"edition","type":"uint256"},{"internalType":"address","name":"artist","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"string","name":"ipfsCID","type":"string"}],"internalType":"struct FeralfileExhibitionV3.MintArtworkParam[]","name":"mintParams_","type":"tuple[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"editionIDs_","type":"uint256[]"}],"name":"burnEditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"codeVersion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"title","type":"string"},{"internalType":"string","name":"artistName","type":"string"},{"internalType":"string","name":"fingerprint","type":"string"},{"internalType":"uint256","name":"editionSize","type":"uint256"},{"internalType":"uint256","name":"AEAmount","type":"uint256"},{"internalType":"uint256","name":"PPAmount","type":"uint256"}],"internalType":"struct FeralfileExhibitionV3.Artwork[]","name":"artworks_","type":"tuple[]"}],"name":"createArtworks","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":"uint256","name":"index","type":"uint256"}],"name":"getArtworkByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"artworkID","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getArtworkEditionByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isBridgeable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_trustee","type":"address"}],"name":"removeTrustee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPayoutAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"secondarySaleRoyaltyBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"royaltyPayoutAddress_","type":"address"}],"name":"setRoyaltyPayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setTokenBaseURI","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":"totalArtworks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"artworkID","type":"uint256"}],"name":"totalEditionOfArtwork","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"","type":"address"}],"name":"trustees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"ipfsCID","type":"string"}],"name":"updateArtworkEditionIPFSCid","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b50604051620043fb380380620043fb833981016040819052620000349162000324565b87876000620000448382620004ae565b506001620000538282620004ae565b505050620000706200006a620001db60201b60201c565b620001df565b612710861115620001065760405162461bcd60e51b815260206004820152604f60248201527f726f79616c74792042505320666f72207365636f6e646172792073616c65732060448201527f63616e206e6f742062652067726561746572207468616e20746865206d61786960648201526e6d756d20726f79616c74792042505360881b608482015260a4015b60405180910390fd5b6001600160a01b0385166200015e5760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f7574206164647265737300006044820152606401620000fd565b6080869052600c80546001600160a01b0319166001600160a01b038716179055600e6200018c8582620004ae565b50600d6200019b8482620004ae565b50600c805461ffff60a01b1916600160a01b9315159390930260ff60a81b191692909217600160a81b91151591909102179055506200057a945050505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200025957600080fd5b81516001600160401b038082111562000276576200027662000231565b604051601f8301601f19908116603f01168101908282118183101715620002a157620002a162000231565b81604052838152602092508683858801011115620002be57600080fd5b600091505b83821015620002e25785820183015181830184015290820190620002c3565b600093810190920192909252949350505050565b80516001600160a01b03811681146200030e57600080fd5b919050565b805180151581146200030e57600080fd5b600080600080600080600080610100898b0312156200034257600080fd5b88516001600160401b03808211156200035a57600080fd5b620003688c838d0162000247565b995060208b01519150808211156200037f57600080fd5b6200038d8c838d0162000247565b985060408b01519750620003a460608c01620002f6565b965060808b0151915080821115620003bb57600080fd5b620003c98c838d0162000247565b955060a08b0151915080821115620003e057600080fd5b50620003ef8b828c0162000247565b9350506200040060c08a0162000313565b91506200041060e08a0162000313565b90509295985092959890939650565b600181811c908216806200043457607f821691505b6020821081036200045557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004a957600081815260208120601f850160051c81016020861015620004845750805b601f850160051c820191505b81811015620004a55782815560010162000490565b5050505b505050565b81516001600160401b03811115620004ca57620004ca62000231565b620004e281620004db84546200041f565b846200045b565b602080601f8311600181146200051a5760008415620005015750858301515b600019600386901b1c1916600185901b178555620004a5565b600085815260208120601f198616915b828110156200054b578886015182559484019460019091019084016200052a565b50858210156200056a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051613e5e6200059d6000396000818161051d0152610ae20152613e5e6000f3fe608060405234801561001057600080fd5b50600436106101f95760003560e01c806301ffc9a7146101fe578063031205061461022657806306fdde031461023b578063081812fc14610250578063095ea7b31461027b5780630cfcb5f11461028e57806312d907b9146102a157806318160ddd146102b457806323b872dd146102c65780632a55205a146102d95780632f745c591461030b5780633f6805ba1461031e57806342842e0e1461033157806343deaf761461034457806345aeefde146103575780634b6026731461036a5780634f6ccce71461038f57806362fe2131146103a25780636352211e146103c357806363e60230146103d6578063641b18e91461040a57806370a082311461041d578063715018a6146104305780637ca5ea8914610438578063883356d91461044c5780638da5cb5b146104605780638ef79e911461046857806395d89b411461047b5780639fbf39cd14610483578063a22cb46514610496578063b4883703146104a9578063b88d4fde146104bc578063c87b56dd146104cf578063dc78ac1c146104e2578063e4a233e1146104f5578063e8a3d485146104fd578063e985e9c514610505578063ea211d7c14610518578063ec9cbb441461053f578063eee608a414610548578063f2fde38b1461056b578063fc05ea681461057e578063fe2a3bf314610591575b600080fd5b61021161020c3660046130f8565b6105b1565b60405190151581526020015b60405180910390f35b610239610234366004613138565b6105dc565b005b610243610605565b60405161021d91906131a3565b61026361025e3660046131b6565b610697565b6040516001600160a01b03909116815260200161021d565b6102396102893660046131cf565b6106be565b61023961029c366004613322565b6107d8565b6102396102af36600461338b565b61092a565b6008545b60405190815260200161021d565b6102396102d43660046134ac565b610a29565b6102ec6102e73660046134e8565b610a5a565b604080516001600160a01b03909316835260208301919091520161021d565b6102b86103193660046131cf565b610b1a565b600c54610263906001600160a01b031681565b61023961033f3660046134ac565b610bb0565b61023961035236600461350a565b610bcb565b610239610365366004613138565b610ce4565b61037d6103783660046131b6565b610d9b565b60405161021d96959493929190613656565b6102b861039d3660046131b6565b610f67565b6103b56103b03660046131b6565b610ffa565b60405161021d9291906136ae565b6102636103d13660046131b6565b61109f565b61024360405180604001604052806015815260200174466572616c66696c6545786869626974696f6e563360581b81525081565b6102b86104183660046134e8565b6110d4565b6102b861042b366004613138565b611121565b6102396111a7565b600c5461021190600160a81b900460ff1681565b600c5461021190600160a01b900460ff1681565b6102636111bb565b6102396104763660046136c7565b6111ca565b610243611215565b6102396104913660046136fb565b611224565b6102396104a43660046137fe565b6112a3565b6102b86104b73660046131b6565b6112ae565b6102396104ca36600461383a565b611326565b6102436104dd3660046131b6565b611358565b6102396104f0366004613138565b6114be565b600f546102b8565b6102436114ea565b6102116105133660046138b5565b6114f9565b6102b87f000000000000000000000000000000000000000000000000000000000000000081565b6102b861271081565b610211610556366004613138565b600b6020526000908152604090205460ff1681565b610239610579366004613138565b611527565b61023961058c3660046138df565b6115a0565b6102b861059f3660046131b6565b60009081526012602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806105d657506105d682611882565b92915050565b6105e46118a7565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b6060600080546106149061396f565b80601f01602080910402602001604051908101604052809291908181526020018280546106409061396f565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b60006106a282611906565b506000908152600460205260409020546001600160a01b031690565b60006106c98261109f565b9050806001600160a01b0316836001600160a01b03160361073b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610757575061075781336114f9565b6107c95760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610732565b6107d3838361192b565b505050565b336000908152600b602052604090205460ff168061080e57506107f96111bb565b6001600160a01b0316336001600160a01b0316145b61081757600080fd5b61082082611999565b61086b5760405162461bcd60e51b815260206004820152601c60248201527b185c9d1ddbdc9ac819591a5d1a5bdb881a5cc81b9bdd08199bdd5b9960221b6044820152606401610732565b60138160405161087b91906139a9565b9081526040519081900360200190205460ff16156108ab5760405162461bcd60e51b8152600401610732906139c5565b6000828152601160205260409081902090516013906108ce906001840190613a68565b908152604051908190036020018120805460ff191690556001906013906108f69085906139a9565b908152604051908190036020019020805491151560ff19909216919091179055600181016109248382613ac2565b50505050565b336000908152600b602052604090205460ff1680610960575061094b6111bb565b6001600160a01b0316336001600160a01b0316145b61096957600080fd5b60005b8151811015610a2557610a1382828151811061098a5761098a613b81565b6020026020010151600001518383815181106109a8576109a8613b81565b6020026020010151602001518484815181106109c6576109c6613b81565b6020026020010151604001518585815181106109e4576109e4613b81565b602002602001015160600151868681518110610a0257610a02613b81565b6020026020010151608001516119b6565b80610a1d81613bad565b91505061096c565b5050565b610a333382611d99565b610a4f5760405162461bcd60e51b815260040161073290613bc6565b6107d3838383611df8565b600080610a6684611999565b610acc5760405162461bcd60e51b815260206004820152603160248201527f455243323938313a20717565727920726f79616c747920696e666f20666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610732565b600c546001600160a01b03169150612710610b077f000000000000000000000000000000000000000000000000000000000000000085613c14565b610b119190613c2b565b90509250929050565b6000610b2583611121565b8210610b875760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610732565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107d383838360405180602001604052806000815250611326565b336000908152600b602052604090205460ff1680610c015750610bec6111bb565b6001600160a01b0316336001600160a01b0316145b610c0a57600080fd5b60005b8151811015610a2557610cd2828281518110610c2b57610c2b613b81565b602002602001015160400151838381518110610c4957610c49613b81565b602002602001015160000151848481518110610c6757610c67613b81565b602002602001015160200151858581518110610c8557610c85613b81565b602002602001015160600151868681518110610ca357610ca3613b81565b602002602001015160800151878781518110610cc157610cc1613b81565b602002602001015160a00151611f8d565b80610cdc81613bad565b915050610c0d565b336000908152600b602052604090205460ff1680610d1a5750610d056111bb565b6001600160a01b0316336001600160a01b0316145b610d2357600080fd5b6001600160a01b038116610d795760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f7574206164647265737300006044820152606401610732565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b601060205260009081526040902080548190610db69061396f565b80601f0160208091040260200160405190810160405280929190818152602001828054610de29061396f565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b505050505090806001018054610e449061396f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e709061396f565b8015610ebd5780601f10610e9257610100808354040283529160200191610ebd565b820191906000526020600020905b815481529060010190602001808311610ea057829003601f168201915b505050505090806002018054610ed29061396f565b80601f0160208091040260200160405190810160405280929190818152602001828054610efe9061396f565b8015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b5050505050908060030154908060040154908060050154905086565b6000610f7260085490565b8210610fd55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610732565b60088281548110610fe857610fe8613b81565b90600052602060002001549050919050565b6011602052600090815260409020805460018201805491929161101c9061396f565b80601f01602080910402602001604051908101604052809291908181526020018280546110489061396f565b80156110955780601f1061106a57610100808354040283529160200191611095565b820191906000526020600020905b81548152906001019060200180831161107857829003601f168201915b5050505050905082565b6000818152600260205260408120546001600160a01b0316806105d65760405162461bcd60e51b815260040161073290613c4d565b60008281526012602052604081205482106110ee57600080fd5b600083815260126020526040902080548390811061110e5761110e613b81565b9060005260206000200154905092915050565b60006001600160a01b03821661118b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610732565b506001600160a01b031660009081526003602052604090205490565b6111af6118a7565b6111b96000612289565b565b600a546001600160a01b031690565b336000908152600b602052604090205460ff168061120057506111eb6111bb565b6001600160a01b0316336001600160a01b0316145b61120957600080fd5b600d610a258282613ac2565b6060600180546106149061396f565b336000908152600b602052604090205460ff168061125a57506112456111bb565b6001600160a01b0316336001600160a01b0316145b61126357600080fd5b60005b8151811015610a255761129182828151811061128457611284613b81565b60200260200101516122db565b8061129b81613bad565b915050611266565b610a2533838361249c565b60006112b9600f5490565b82106113135760405162461bcd60e51b8152602060048201526024808201527f617274776f726b733a20676c6f62616c20696e646578206f7574206f6620626f604482015263756e647360e01b6064820152608401610732565b600f8281548110610fe857610fe8613b81565b6113303383611d99565b61134c5760405162461bcd60e51b815260040161073290613bc6565b61092484848484612566565b606061136382611999565b6113c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610732565b6000600d80546113d69061396f565b80601f01602080910402602001604051908101604052809291908181526020018280546114029061396f565b801561144f5780601f106114245761010080835404028352916020019161144f565b820191906000526020600020905b81548152906001019060200180831161143257829003601f168201915b50505050509050805160000361147f5750604080518082019091526007815266697066733a2f2f60c81b60208201525b80601160008581526020019081526020016000206001016040516020016114a7929190613c7f565b604051602081830303815290604052915050919050565b6114c66118a7565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6060600e80546106149061396f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61152f6118a7565b6001600160a01b0381166115945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610732565b61159d81612289565b50565b600c54600160a01b900460ff1661160f5760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56333a206e6f7420616c6c6f7760448201526c10313ab9371032b234ba34b7b760991b6064820152608401610732565b60005b8151811015610a255761163d82828151811061163057611630613b81565b6020026020010151611999565b6116595760405162461bcd60e51b815260040161073290613ca6565b61167c3383838151811061166f5761166f613b81565b6020026020010151611d99565b6116985760405162461bcd60e51b815260040161073290613bc6565b6000601160008484815181106116b0576116b0613b81565b60200260200101518152602001908152602001600020604051806040016040529081600082015481526020016001820180546116eb9061396f565b80601f01602080910402602001604051908101604052809291908181526020018280546117179061396f565b80156117645780601f1061173957610100808354040283529160200191611764565b820191906000526020600020905b81548152906001019060200180831161174757829003601f168201915b50505050508152505090506013816020015160405161178391906139a9565b908152604051908190036020019020805460ff1916905582516011906000908590859081106117b4576117b4613b81565b602002602001015181526020019081526020016000206000808201600090556001820160006117e39190613094565b50506118078383815181106117fa576117fa613b81565b6020026020010151612599565b61182983838151811061181c5761181c613b81565b60200260200101516127b2565b82828151811061183b5761183b613b81565b60200260200101517fa5a44c7ed36966786612323ee2cb0cb453d4a9282b90c6befe72cde41d83f48860405160405180910390a2508061187a81613bad565b915050611612565b60006001600160e01b0319821663780e9d6360e01b14806105d657506105d682612847565b336118b06111bb565b6001600160a01b0316146111b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610732565b61190f81611999565b61159d5760405162461bcd60e51b815260040161073290613c4d565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119608261109f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000908152600260205260409020546001600160a01b0316151590565b600085815260106020526040902060030154611a285760405162461bcd60e51b815260206004820152602b60248201527f466572616c66696c6545786869626974696f6e56333a20617274776f726b206960448201526a1cc81b9bdd08199bdd5b9960aa1b6064820152608401610732565b6000858152601060205260409020600581015460048201546003909201549091611a5191613cea565b611a5b9190613cea565b8410611ae45760405162461bcd60e51b815260206004820152604c60248201527f466572616c66696c6545786869626974696f6e56333a2065646974696f6e206e60448201527f756d62657220657863656564207468652065646974696f6e2073697a65206f6660648201526b2074686520617274776f726b60a01b608482015260a401610732565b6001600160a01b038316611b335760405162461bcd60e51b8152602060048201526016602482015275696e76616c696420617274697374206164647265737360501b6044820152606401610732565b6001600160a01b038216611b815760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964206f776e6572206164647265737360581b6044820152606401610732565b601381604051611b9191906139a9565b9081526040519081900360200190205460ff1615611bc15760405162461bcd60e51b8152600401610732906139c5565b6000611bcd8587613cea565b60008181526011602052604090205490915015611c435760405162461bcd60e51b815260206004820152602e60248201527f466572616c66696c6545786869626974696f6e56333a2074686520656469746960448201526d1bdb881a5cc8195e1a5cdd195b9d60921b6064820152608401610732565b604080518082018252828152602080820185815260008581526011909252929020815181559151909182916001820190611c7d9082613ac2565b505050600087815260126020818152604080842080546001818101835582875284872090910188905582518084019093528c8352948c90529282529154919290830191611cca9190613cfd565b90526000838152601460209081526040918290208351815592015160019283015551601390611cfa9086906139a9565b908152604051908190036020019020805491151560ff19909216919091179055611d248583612897565b836001600160a01b0316856001600160a01b031614611d5857611d5885858460405180602001604052806000815250612566565b8187856001600160a01b03167f4f21e8cd53f1df1da42ec94ba03f881c1185607b26e4dcb81941535157d73dd460405160405180910390a450505050505050565b600080611da58361109f565b9050806001600160a01b0316846001600160a01b03161480611dcc5750611dcc81856114f9565b80611df05750836001600160a01b0316611de584610697565b6001600160a01b0316145b949350505050565b826001600160a01b0316611e0b8261109f565b6001600160a01b031614611e6f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610732565b6001600160a01b038216611ed15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610732565b611edc8383836128b1565b611ee760008261192b565b6001600160a01b0383166000908152600360205260408120805460019290611f10908490613cfd565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f3e908490613cea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020613de983398151915291a4505050565b8451600003611fd75760405162461bcd60e51b81526020600482015260166024820152757469746c652063616e206e6f7420626520656d70747960501b6044820152606401610732565b83516000036120225760405162461bcd60e51b81526020600482015260176024820152766172746973742063616e206e6f7420626520656d70747960481b6044820152606401610732565b85516000036120725760405162461bcd60e51b815260206004820152601c60248201527b66696e6765727072696e742063616e206e6f7420626520656d70747960201b6044820152606401610732565b600083116120ce5760405162461bcd60e51b815260206004820152602360248201527f65646974696f6e2073697a65206e6565647320746f206265206174206c65617360448201526274203160e81b6064820152608401610732565b6000866040516020016120e191906131a3565b60408051601f1981840301815291815281516020928301206000818152601090935291206002018054919250906121179061396f565b15905061218a5760405162461bcd60e51b815260206004820152603b60248201527f616e20617274776f726b2077697468207468652073616d652066696e6765727060448201527a1c9a5b9d081a185cc8185b1c9958591e481c9959da5cdd195c9959602a1b6064820152608401610732565b6040805160c08101825287815260208082018890528183018a9052606082018790526080820186905260a08201859052600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802018490556000848152601090915291909120815182919081906122099082613ac2565b506020820151600182019061221e9082613ac2565b50604082015160028201906122339082613ac2565b50606082015160038201556080820151600482015560a09091015160059091015560405182907f22350b25f1b72bb3621199a79abefeb4fcd77bb1e65638cd09350666e4db089190600090a25050505050505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6122e88160400151611999565b6123045760405162461bcd60e51b815260040161073290613ca6565b61231681600001518260400151611d99565b6123325760405162461bcd60e51b815260040161073290613bc6565b80606001514211156123935760405162461bcd60e51b81526020600482015260366024820152600080516020613e0983398151915260448201527519995c881c995c5d595cdd081a5cc8195e1c1a5c995960521b6064820152608401610732565b600081600001518260200151836040015184606001516040516020016123e094939291906001600160a01b0394851681529290931660208301526040820152606081019190915260800190565b60405160208183030381529060405280519060200120905061241581836000015184608001518560a001518660c00151612969565b6124755760405162461bcd60e51b815260206004820152603d6024820152600080516020613e0983398151915260448201527f6665722072657175657374206973206e6f7420617574686f72697a65640000006064820152608401610732565b610a2582600001518360200151846040015160405180602001604052806000815250612566565b816001600160a01b0316836001600160a01b0316036124f95760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610732565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612571848484611df8565b61257d848484846129e8565b6109245760405162461bcd60e51b815260040161073290613d10565b60008181526014602090815260409182902082518084019093528054808452600190910154918301919091526126485760405162461bcd60e51b815260206004820152604860248201527f466572616c66696c6545786869626974696f6e56333a20617274776f726b494460448201527f206973206e6f20666f756e6420666f722074686520617274776f726b456469746064820152670d2dedc92dcc8caf60c31b608482015260a401610732565b8051600090815260126020526040902080546126dd5760405162461bcd60e51b815260206004820152604860248201527f466572616c66696c6545786869626974696f6e56333a206e6f2065646974696f60448201527f6e7320696e207468697320617274776f726b206f6620616c6c417274776f726b60648201526745646974696f6e7360c01b608482015260a401610732565b80546000906126ee90600190613cfd565b9050600082600184805490506127049190613cfd565b8154811061271457612714613b81565b90600052602060002001549050808385602001518154811061273857612738613b81565b9060005260206000200181905550836020015183838154811061275d5761275d613b81565b90600052602060002001819055508280548061277b5761277b613d62565b6000828152602080822083016000199081018390559092019092559581526014909552505060408320838155600101929092555050565b60006127bd8261109f565b90506127cb816000846128b1565b6127d660008361192b565b6001600160a01b03811660009081526003602052604081208054600192906127ff908490613cfd565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020613de9833981519152908390a45050565b60006001600160e01b031982166380ac58cd60e01b148061287857506001600160e01b03198216635b5e139f60e01b145b806105d657506301ffc9a760e01b6001600160e01b03198316146105d6565b610a25828260405180602001604052806000815250612ae9565b6001600160a01b03831661290c5761290781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61292f565b816001600160a01b0316836001600160a01b03161461292f5761292f8382612b1c565b6001600160a01b038216612946576107d381612bb9565b826001600160a01b0316826001600160a01b0316146107d3576107d38282612c68565b6000806129cd6129c5886040517b0ca2ba3432b932bab69029b4b3b732b21026b2b9b9b0b3b29d05199960211b6020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b848787612cac565b6001600160a01b039081169087161491505095945050505050565b60006001600160a01b0384163b15612ade57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a2c903390899088908890600401613d78565b6020604051808303816000875af1925050508015612a67575060408051601f3d908101601f19168201909252612a6491810190613db5565b60015b612ac4573d808015612a95576040519150601f19603f3d011682016040523d82523d6000602084013e612a9a565b606091505b508051600003612abc5760405162461bcd60e51b815260040161073290613d10565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611df0565b506001949350505050565b612af38383612cd4565b612b0060008484846129e8565b6107d35760405162461bcd60e51b815260040161073290613d10565b60006001612b2984611121565b612b339190613cfd565b600083815260076020526040902054909150808214612b86576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612bcb90600190613cfd565b60008381526009602052604081205460088054939450909284908110612bf357612bf3613b81565b906000526020600020015490508060088381548110612c1457612c14613b81565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c4c57612c4c613d62565b6001900381819060005260206000200160009055905550505050565b6000612c7383611121565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000806000612cbd87878787612e00565b91509150612cca81612ee3565b5095945050505050565b6001600160a01b038216612d2a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610732565b612d3381611999565b15612d7f5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610732565b612d8b600083836128b1565b6001600160a01b0382166000908152600360205260408120805460019290612db4908490613cea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020613de9833981519152908290a45050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b03831115612e2d5750600090506003612eda565b8460ff16601b14158015612e4557508460ff16601c14155b15612e565750600090506004612eda565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612eaa573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612ed357600060019250925050612eda565b9150600090505b94509492505050565b6000816004811115612ef757612ef7613dd2565b03612eff5750565b6001816004811115612f1357612f13613dd2565b03612f5b5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b6044820152606401610732565b6002816004811115612f6f57612f6f613dd2565b03612fbc5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610732565b6003816004811115612fd057612fd0613dd2565b036130285760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610732565b600481600481111561303c5761303c613dd2565b0361159d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610732565b5080546130a09061396f565b6000825580601f106130b0575050565b601f01602090049060005260206000209081019061159d91905b808211156130de57600081556001016130ca565b5090565b6001600160e01b03198116811461159d57600080fd5b60006020828403121561310a57600080fd5b8135613115816130e2565b9392505050565b80356001600160a01b038116811461313357600080fd5b919050565b60006020828403121561314a57600080fd5b6131158261311c565b60005b8381101561316e578181015183820152602001613156565b50506000910152565b6000815180845261318f816020860160208601613153565b601f01601f19169290920160200192915050565b6020815260006131156020830184613177565b6000602082840312156131c857600080fd5b5035919050565b600080604083850312156131e257600080fd5b6131eb8361311c565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60405160a081016001600160401b0381118282101715613231576132316131f9565b60405290565b60405160c081016001600160401b0381118282101715613231576132316131f9565b60405160e081016001600160401b0381118282101715613231576132316131f9565b604051601f8201601f191681016001600160401b03811182821017156132a3576132a36131f9565b604052919050565b60006001600160401b038311156132c4576132c46131f9565b6132d7601f8401601f191660200161327b565b90508281528383830111156132eb57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261331357600080fd5b613115838335602085016132ab565b6000806040838503121561333557600080fd5b8235915060208301356001600160401b0381111561335257600080fd5b61335e85828601613302565b9150509250929050565b60006001600160401b03821115613381576133816131f9565b5060051b60200190565b6000602080838503121561339e57600080fd5b82356001600160401b03808211156133b557600080fd5b818501915085601f8301126133c957600080fd5b81356133dc6133d782613368565b61327b565b81815260059190911b830184019084810190888311156133fb57600080fd5b8585015b8381101561349f578035858111156134175760008081fd5b860160a0818c03601f190181131561342f5760008081fd5b61343761320f565b8983013581526040808401358b830152606061345481860161311c565b828401526080915061346782860161311c565b9083015291830135918883111561347e5760008081fd5b61348c8e8c85870101613302565b90820152855250509186019186016133ff565b5098975050505050505050565b6000806000606084860312156134c157600080fd5b6134ca8461311c565b92506134d86020850161311c565b9150604084013590509250925092565b600080604083850312156134fb57600080fd5b50508035926020909101359150565b6000602080838503121561351d57600080fd5b82356001600160401b038082111561353457600080fd5b818501915085601f83011261354857600080fd5b81356135566133d782613368565b81815260059190911b8301840190848101908883111561357557600080fd5b8585015b8381101561349f5780358581111561359057600080fd5b860160c0818c03601f190112156135a75760008081fd5b6135af613237565b88820135878111156135c15760008081fd5b6135cf8d8b83860101613302565b825250604080830135888111156135e65760008081fd5b6135f48e8c83870101613302565b8b840152506060808401358981111561360d5760008081fd5b61361b8f8d83880101613302565b83850152506080915081840135818401525060a0808401358284015260c0840135818401525050808552505086830192508681019050613579565b60c08152600061366960c0830189613177565b828103602084015261367b8189613177565b9050828103604084015261368f8188613177565b60608401969096525050608081019290925260a0909101529392505050565b828152604060208201526000611df06040830184613177565b6000602082840312156136d957600080fd5b81356001600160401b038111156136ef57600080fd5b611df084828501613302565b6000602080838503121561370e57600080fd5b82356001600160401b0381111561372457600080fd5b8301601f8101851361373557600080fd5b80356137436133d782613368565b81815260e0918202830184019184820191908884111561376257600080fd5b938501935b838510156137f25780858a03121561377f5760008081fd5b613787613259565b6137908661311c565b815261379d87870161311c565b8188015260408681013590820152606080870135908201526080808701359082015260a0808701359082015260c08087013560ff811681146137df5760008081fd5b9082015283529384019391850191613767565b50979650505050505050565b6000806040838503121561381157600080fd5b61381a8361311c565b91506020830135801515811461382f57600080fd5b809150509250929050565b6000806000806080858703121561385057600080fd5b6138598561311c565b93506138676020860161311c565b92506040850135915060608501356001600160401b0381111561388957600080fd5b8501601f8101871361389a57600080fd5b6138a9878235602084016132ab565b91505092959194509250565b600080604083850312156138c857600080fd5b6138d18361311c565b9150610b116020840161311c565b600060208083850312156138f257600080fd5b82356001600160401b0381111561390857600080fd5b8301601f8101851361391957600080fd5b80356139276133d782613368565b81815260059190911b8201830190838101908783111561394657600080fd5b928401925b828410156139645783358252928401929084019061394b565b979650505050505050565b600181811c9082168061398357607f821691505b6020821081036139a357634e487b7160e01b600052602260045260246000fd5b50919050565b600082516139bb818460208701613153565b9190910192915050565b6020808252601690820152751a5c199cc81a59081a185cc81c9959da5cdd195c995960521b604082015260600190565b60008154613a028161396f565b60018281168015613a1a5760018114613a2f57613a5e565b60ff1984168752821515830287019450613a5e565b8560005260208060002060005b85811015613a555781548a820152908401908201613a3c565b50505082870194505b5050505092915050565b600061311582846139f5565b601f8211156107d357600081815260208120601f850160051c81016020861015613a9b5750805b601f850160051c820191505b81811015613aba57828155600101613aa7565b505050505050565b81516001600160401b03811115613adb57613adb6131f9565b613aef81613ae9845461396f565b84613a74565b602080601f831160018114613b245760008415613b0c5750858301515b600019600386901b1c1916600185901b178555613aba565b600085815260208120601f198616915b82811015613b5357888601518255948401946001909101908401613b34565b5085821015613b715787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201613bbf57613bbf613b97565b5060010190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b80820281158282048414176105d6576105d6613b97565b600082613c4857634e487b7160e01b600052601260045260246000fd5b500490565b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b60008351613c91818460208801613153565b613c9d818401856139f5565b95945050505050565b60208082526024908201527f4552433732313a20617274776f726b2065646974696f6e206973206e6f7420666040820152631bdd5b9960e21b606082015260800190565b808201808211156105d6576105d6613b97565b818103818111156105d6576105d6613b97565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613dab90830184613177565b9695505050505050565b600060208284031215613dc757600080fd5b8151613115816130e2565b634e487b7160e01b600052602160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef466572616c66696c6545786869626974696f6e56333a20746865207472616e73a2646970667358221220166872d9587d90d75b57ae80de5570996de9b3324fd3a1ba06e6dec6aa56060e64736f6c634300081100330000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000005dc000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd1000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001d536361747465726564204c696d627320284d6f6e756d656e742030312900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6243614837467570664b385467516b78655270435a4871695177376d536d6f645a55417434624c6a4b59577600000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f95760003560e01c806301ffc9a7146101fe578063031205061461022657806306fdde031461023b578063081812fc14610250578063095ea7b31461027b5780630cfcb5f11461028e57806312d907b9146102a157806318160ddd146102b457806323b872dd146102c65780632a55205a146102d95780632f745c591461030b5780633f6805ba1461031e57806342842e0e1461033157806343deaf761461034457806345aeefde146103575780634b6026731461036a5780634f6ccce71461038f57806362fe2131146103a25780636352211e146103c357806363e60230146103d6578063641b18e91461040a57806370a082311461041d578063715018a6146104305780637ca5ea8914610438578063883356d91461044c5780638da5cb5b146104605780638ef79e911461046857806395d89b411461047b5780639fbf39cd14610483578063a22cb46514610496578063b4883703146104a9578063b88d4fde146104bc578063c87b56dd146104cf578063dc78ac1c146104e2578063e4a233e1146104f5578063e8a3d485146104fd578063e985e9c514610505578063ea211d7c14610518578063ec9cbb441461053f578063eee608a414610548578063f2fde38b1461056b578063fc05ea681461057e578063fe2a3bf314610591575b600080fd5b61021161020c3660046130f8565b6105b1565b60405190151581526020015b60405180910390f35b610239610234366004613138565b6105dc565b005b610243610605565b60405161021d91906131a3565b61026361025e3660046131b6565b610697565b6040516001600160a01b03909116815260200161021d565b6102396102893660046131cf565b6106be565b61023961029c366004613322565b6107d8565b6102396102af36600461338b565b61092a565b6008545b60405190815260200161021d565b6102396102d43660046134ac565b610a29565b6102ec6102e73660046134e8565b610a5a565b604080516001600160a01b03909316835260208301919091520161021d565b6102b86103193660046131cf565b610b1a565b600c54610263906001600160a01b031681565b61023961033f3660046134ac565b610bb0565b61023961035236600461350a565b610bcb565b610239610365366004613138565b610ce4565b61037d6103783660046131b6565b610d9b565b60405161021d96959493929190613656565b6102b861039d3660046131b6565b610f67565b6103b56103b03660046131b6565b610ffa565b60405161021d9291906136ae565b6102636103d13660046131b6565b61109f565b61024360405180604001604052806015815260200174466572616c66696c6545786869626974696f6e563360581b81525081565b6102b86104183660046134e8565b6110d4565b6102b861042b366004613138565b611121565b6102396111a7565b600c5461021190600160a81b900460ff1681565b600c5461021190600160a01b900460ff1681565b6102636111bb565b6102396104763660046136c7565b6111ca565b610243611215565b6102396104913660046136fb565b611224565b6102396104a43660046137fe565b6112a3565b6102b86104b73660046131b6565b6112ae565b6102396104ca36600461383a565b611326565b6102436104dd3660046131b6565b611358565b6102396104f0366004613138565b6114be565b600f546102b8565b6102436114ea565b6102116105133660046138b5565b6114f9565b6102b87f00000000000000000000000000000000000000000000000000000000000005dc81565b6102b861271081565b610211610556366004613138565b600b6020526000908152604090205460ff1681565b610239610579366004613138565b611527565b61023961058c3660046138df565b6115a0565b6102b861059f3660046131b6565b60009081526012602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806105d657506105d682611882565b92915050565b6105e46118a7565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b6060600080546106149061396f565b80601f01602080910402602001604051908101604052809291908181526020018280546106409061396f565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b60006106a282611906565b506000908152600460205260409020546001600160a01b031690565b60006106c98261109f565b9050806001600160a01b0316836001600160a01b03160361073b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610757575061075781336114f9565b6107c95760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610732565b6107d3838361192b565b505050565b336000908152600b602052604090205460ff168061080e57506107f96111bb565b6001600160a01b0316336001600160a01b0316145b61081757600080fd5b61082082611999565b61086b5760405162461bcd60e51b815260206004820152601c60248201527b185c9d1ddbdc9ac819591a5d1a5bdb881a5cc81b9bdd08199bdd5b9960221b6044820152606401610732565b60138160405161087b91906139a9565b9081526040519081900360200190205460ff16156108ab5760405162461bcd60e51b8152600401610732906139c5565b6000828152601160205260409081902090516013906108ce906001840190613a68565b908152604051908190036020018120805460ff191690556001906013906108f69085906139a9565b908152604051908190036020019020805491151560ff19909216919091179055600181016109248382613ac2565b50505050565b336000908152600b602052604090205460ff1680610960575061094b6111bb565b6001600160a01b0316336001600160a01b0316145b61096957600080fd5b60005b8151811015610a2557610a1382828151811061098a5761098a613b81565b6020026020010151600001518383815181106109a8576109a8613b81565b6020026020010151602001518484815181106109c6576109c6613b81565b6020026020010151604001518585815181106109e4576109e4613b81565b602002602001015160600151868681518110610a0257610a02613b81565b6020026020010151608001516119b6565b80610a1d81613bad565b91505061096c565b5050565b610a333382611d99565b610a4f5760405162461bcd60e51b815260040161073290613bc6565b6107d3838383611df8565b600080610a6684611999565b610acc5760405162461bcd60e51b815260206004820152603160248201527f455243323938313a20717565727920726f79616c747920696e666f20666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610732565b600c546001600160a01b03169150612710610b077f00000000000000000000000000000000000000000000000000000000000005dc85613c14565b610b119190613c2b565b90509250929050565b6000610b2583611121565b8210610b875760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610732565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107d383838360405180602001604052806000815250611326565b336000908152600b602052604090205460ff1680610c015750610bec6111bb565b6001600160a01b0316336001600160a01b0316145b610c0a57600080fd5b60005b8151811015610a2557610cd2828281518110610c2b57610c2b613b81565b602002602001015160400151838381518110610c4957610c49613b81565b602002602001015160000151848481518110610c6757610c67613b81565b602002602001015160200151858581518110610c8557610c85613b81565b602002602001015160600151868681518110610ca357610ca3613b81565b602002602001015160800151878781518110610cc157610cc1613b81565b602002602001015160a00151611f8d565b80610cdc81613bad565b915050610c0d565b336000908152600b602052604090205460ff1680610d1a5750610d056111bb565b6001600160a01b0316336001600160a01b0316145b610d2357600080fd5b6001600160a01b038116610d795760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f7574206164647265737300006044820152606401610732565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b601060205260009081526040902080548190610db69061396f565b80601f0160208091040260200160405190810160405280929190818152602001828054610de29061396f565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b505050505090806001018054610e449061396f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e709061396f565b8015610ebd5780601f10610e9257610100808354040283529160200191610ebd565b820191906000526020600020905b815481529060010190602001808311610ea057829003601f168201915b505050505090806002018054610ed29061396f565b80601f0160208091040260200160405190810160405280929190818152602001828054610efe9061396f565b8015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b5050505050908060030154908060040154908060050154905086565b6000610f7260085490565b8210610fd55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610732565b60088281548110610fe857610fe8613b81565b90600052602060002001549050919050565b6011602052600090815260409020805460018201805491929161101c9061396f565b80601f01602080910402602001604051908101604052809291908181526020018280546110489061396f565b80156110955780601f1061106a57610100808354040283529160200191611095565b820191906000526020600020905b81548152906001019060200180831161107857829003601f168201915b5050505050905082565b6000818152600260205260408120546001600160a01b0316806105d65760405162461bcd60e51b815260040161073290613c4d565b60008281526012602052604081205482106110ee57600080fd5b600083815260126020526040902080548390811061110e5761110e613b81565b9060005260206000200154905092915050565b60006001600160a01b03821661118b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610732565b506001600160a01b031660009081526003602052604090205490565b6111af6118a7565b6111b96000612289565b565b600a546001600160a01b031690565b336000908152600b602052604090205460ff168061120057506111eb6111bb565b6001600160a01b0316336001600160a01b0316145b61120957600080fd5b600d610a258282613ac2565b6060600180546106149061396f565b336000908152600b602052604090205460ff168061125a57506112456111bb565b6001600160a01b0316336001600160a01b0316145b61126357600080fd5b60005b8151811015610a255761129182828151811061128457611284613b81565b60200260200101516122db565b8061129b81613bad565b915050611266565b610a2533838361249c565b60006112b9600f5490565b82106113135760405162461bcd60e51b8152602060048201526024808201527f617274776f726b733a20676c6f62616c20696e646578206f7574206f6620626f604482015263756e647360e01b6064820152608401610732565b600f8281548110610fe857610fe8613b81565b6113303383611d99565b61134c5760405162461bcd60e51b815260040161073290613bc6565b61092484848484612566565b606061136382611999565b6113c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610732565b6000600d80546113d69061396f565b80601f01602080910402602001604051908101604052809291908181526020018280546114029061396f565b801561144f5780601f106114245761010080835404028352916020019161144f565b820191906000526020600020905b81548152906001019060200180831161143257829003601f168201915b50505050509050805160000361147f5750604080518082019091526007815266697066733a2f2f60c81b60208201525b80601160008581526020019081526020016000206001016040516020016114a7929190613c7f565b604051602081830303815290604052915050919050565b6114c66118a7565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6060600e80546106149061396f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61152f6118a7565b6001600160a01b0381166115945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610732565b61159d81612289565b50565b600c54600160a01b900460ff1661160f5760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56333a206e6f7420616c6c6f7760448201526c10313ab9371032b234ba34b7b760991b6064820152608401610732565b60005b8151811015610a255761163d82828151811061163057611630613b81565b6020026020010151611999565b6116595760405162461bcd60e51b815260040161073290613ca6565b61167c3383838151811061166f5761166f613b81565b6020026020010151611d99565b6116985760405162461bcd60e51b815260040161073290613bc6565b6000601160008484815181106116b0576116b0613b81565b60200260200101518152602001908152602001600020604051806040016040529081600082015481526020016001820180546116eb9061396f565b80601f01602080910402602001604051908101604052809291908181526020018280546117179061396f565b80156117645780601f1061173957610100808354040283529160200191611764565b820191906000526020600020905b81548152906001019060200180831161174757829003601f168201915b50505050508152505090506013816020015160405161178391906139a9565b908152604051908190036020019020805460ff1916905582516011906000908590859081106117b4576117b4613b81565b602002602001015181526020019081526020016000206000808201600090556001820160006117e39190613094565b50506118078383815181106117fa576117fa613b81565b6020026020010151612599565b61182983838151811061181c5761181c613b81565b60200260200101516127b2565b82828151811061183b5761183b613b81565b60200260200101517fa5a44c7ed36966786612323ee2cb0cb453d4a9282b90c6befe72cde41d83f48860405160405180910390a2508061187a81613bad565b915050611612565b60006001600160e01b0319821663780e9d6360e01b14806105d657506105d682612847565b336118b06111bb565b6001600160a01b0316146111b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610732565b61190f81611999565b61159d5760405162461bcd60e51b815260040161073290613c4d565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119608261109f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000908152600260205260409020546001600160a01b0316151590565b600085815260106020526040902060030154611a285760405162461bcd60e51b815260206004820152602b60248201527f466572616c66696c6545786869626974696f6e56333a20617274776f726b206960448201526a1cc81b9bdd08199bdd5b9960aa1b6064820152608401610732565b6000858152601060205260409020600581015460048201546003909201549091611a5191613cea565b611a5b9190613cea565b8410611ae45760405162461bcd60e51b815260206004820152604c60248201527f466572616c66696c6545786869626974696f6e56333a2065646974696f6e206e60448201527f756d62657220657863656564207468652065646974696f6e2073697a65206f6660648201526b2074686520617274776f726b60a01b608482015260a401610732565b6001600160a01b038316611b335760405162461bcd60e51b8152602060048201526016602482015275696e76616c696420617274697374206164647265737360501b6044820152606401610732565b6001600160a01b038216611b815760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964206f776e6572206164647265737360581b6044820152606401610732565b601381604051611b9191906139a9565b9081526040519081900360200190205460ff1615611bc15760405162461bcd60e51b8152600401610732906139c5565b6000611bcd8587613cea565b60008181526011602052604090205490915015611c435760405162461bcd60e51b815260206004820152602e60248201527f466572616c66696c6545786869626974696f6e56333a2074686520656469746960448201526d1bdb881a5cc8195e1a5cdd195b9d60921b6064820152608401610732565b604080518082018252828152602080820185815260008581526011909252929020815181559151909182916001820190611c7d9082613ac2565b505050600087815260126020818152604080842080546001818101835582875284872090910188905582518084019093528c8352948c90529282529154919290830191611cca9190613cfd565b90526000838152601460209081526040918290208351815592015160019283015551601390611cfa9086906139a9565b908152604051908190036020019020805491151560ff19909216919091179055611d248583612897565b836001600160a01b0316856001600160a01b031614611d5857611d5885858460405180602001604052806000815250612566565b8187856001600160a01b03167f4f21e8cd53f1df1da42ec94ba03f881c1185607b26e4dcb81941535157d73dd460405160405180910390a450505050505050565b600080611da58361109f565b9050806001600160a01b0316846001600160a01b03161480611dcc5750611dcc81856114f9565b80611df05750836001600160a01b0316611de584610697565b6001600160a01b0316145b949350505050565b826001600160a01b0316611e0b8261109f565b6001600160a01b031614611e6f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610732565b6001600160a01b038216611ed15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610732565b611edc8383836128b1565b611ee760008261192b565b6001600160a01b0383166000908152600360205260408120805460019290611f10908490613cfd565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f3e908490613cea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020613de983398151915291a4505050565b8451600003611fd75760405162461bcd60e51b81526020600482015260166024820152757469746c652063616e206e6f7420626520656d70747960501b6044820152606401610732565b83516000036120225760405162461bcd60e51b81526020600482015260176024820152766172746973742063616e206e6f7420626520656d70747960481b6044820152606401610732565b85516000036120725760405162461bcd60e51b815260206004820152601c60248201527b66696e6765727072696e742063616e206e6f7420626520656d70747960201b6044820152606401610732565b600083116120ce5760405162461bcd60e51b815260206004820152602360248201527f65646974696f6e2073697a65206e6565647320746f206265206174206c65617360448201526274203160e81b6064820152608401610732565b6000866040516020016120e191906131a3565b60408051601f1981840301815291815281516020928301206000818152601090935291206002018054919250906121179061396f565b15905061218a5760405162461bcd60e51b815260206004820152603b60248201527f616e20617274776f726b2077697468207468652073616d652066696e6765727060448201527a1c9a5b9d081a185cc8185b1c9958591e481c9959da5cdd195c9959602a1b6064820152608401610732565b6040805160c08101825287815260208082018890528183018a9052606082018790526080820186905260a08201859052600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802018490556000848152601090915291909120815182919081906122099082613ac2565b506020820151600182019061221e9082613ac2565b50604082015160028201906122339082613ac2565b50606082015160038201556080820151600482015560a09091015160059091015560405182907f22350b25f1b72bb3621199a79abefeb4fcd77bb1e65638cd09350666e4db089190600090a25050505050505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6122e88160400151611999565b6123045760405162461bcd60e51b815260040161073290613ca6565b61231681600001518260400151611d99565b6123325760405162461bcd60e51b815260040161073290613bc6565b80606001514211156123935760405162461bcd60e51b81526020600482015260366024820152600080516020613e0983398151915260448201527519995c881c995c5d595cdd081a5cc8195e1c1a5c995960521b6064820152608401610732565b600081600001518260200151836040015184606001516040516020016123e094939291906001600160a01b0394851681529290931660208301526040820152606081019190915260800190565b60405160208183030381529060405280519060200120905061241581836000015184608001518560a001518660c00151612969565b6124755760405162461bcd60e51b815260206004820152603d6024820152600080516020613e0983398151915260448201527f6665722072657175657374206973206e6f7420617574686f72697a65640000006064820152608401610732565b610a2582600001518360200151846040015160405180602001604052806000815250612566565b816001600160a01b0316836001600160a01b0316036124f95760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610732565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612571848484611df8565b61257d848484846129e8565b6109245760405162461bcd60e51b815260040161073290613d10565b60008181526014602090815260409182902082518084019093528054808452600190910154918301919091526126485760405162461bcd60e51b815260206004820152604860248201527f466572616c66696c6545786869626974696f6e56333a20617274776f726b494460448201527f206973206e6f20666f756e6420666f722074686520617274776f726b456469746064820152670d2dedc92dcc8caf60c31b608482015260a401610732565b8051600090815260126020526040902080546126dd5760405162461bcd60e51b815260206004820152604860248201527f466572616c66696c6545786869626974696f6e56333a206e6f2065646974696f60448201527f6e7320696e207468697320617274776f726b206f6620616c6c417274776f726b60648201526745646974696f6e7360c01b608482015260a401610732565b80546000906126ee90600190613cfd565b9050600082600184805490506127049190613cfd565b8154811061271457612714613b81565b90600052602060002001549050808385602001518154811061273857612738613b81565b9060005260206000200181905550836020015183838154811061275d5761275d613b81565b90600052602060002001819055508280548061277b5761277b613d62565b6000828152602080822083016000199081018390559092019092559581526014909552505060408320838155600101929092555050565b60006127bd8261109f565b90506127cb816000846128b1565b6127d660008361192b565b6001600160a01b03811660009081526003602052604081208054600192906127ff908490613cfd565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020613de9833981519152908390a45050565b60006001600160e01b031982166380ac58cd60e01b148061287857506001600160e01b03198216635b5e139f60e01b145b806105d657506301ffc9a760e01b6001600160e01b03198316146105d6565b610a25828260405180602001604052806000815250612ae9565b6001600160a01b03831661290c5761290781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61292f565b816001600160a01b0316836001600160a01b03161461292f5761292f8382612b1c565b6001600160a01b038216612946576107d381612bb9565b826001600160a01b0316826001600160a01b0316146107d3576107d38282612c68565b6000806129cd6129c5886040517b0ca2ba3432b932bab69029b4b3b732b21026b2b9b9b0b3b29d05199960211b6020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b848787612cac565b6001600160a01b039081169087161491505095945050505050565b60006001600160a01b0384163b15612ade57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a2c903390899088908890600401613d78565b6020604051808303816000875af1925050508015612a67575060408051601f3d908101601f19168201909252612a6491810190613db5565b60015b612ac4573d808015612a95576040519150601f19603f3d011682016040523d82523d6000602084013e612a9a565b606091505b508051600003612abc5760405162461bcd60e51b815260040161073290613d10565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611df0565b506001949350505050565b612af38383612cd4565b612b0060008484846129e8565b6107d35760405162461bcd60e51b815260040161073290613d10565b60006001612b2984611121565b612b339190613cfd565b600083815260076020526040902054909150808214612b86576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612bcb90600190613cfd565b60008381526009602052604081205460088054939450909284908110612bf357612bf3613b81565b906000526020600020015490508060088381548110612c1457612c14613b81565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c4c57612c4c613d62565b6001900381819060005260206000200160009055905550505050565b6000612c7383611121565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000806000612cbd87878787612e00565b91509150612cca81612ee3565b5095945050505050565b6001600160a01b038216612d2a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610732565b612d3381611999565b15612d7f5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610732565b612d8b600083836128b1565b6001600160a01b0382166000908152600360205260408120805460019290612db4908490613cea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020613de9833981519152908290a45050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b03831115612e2d5750600090506003612eda565b8460ff16601b14158015612e4557508460ff16601c14155b15612e565750600090506004612eda565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612eaa573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612ed357600060019250925050612eda565b9150600090505b94509492505050565b6000816004811115612ef757612ef7613dd2565b03612eff5750565b6001816004811115612f1357612f13613dd2565b03612f5b5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b6044820152606401610732565b6002816004811115612f6f57612f6f613dd2565b03612fbc5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610732565b6003816004811115612fd057612fd0613dd2565b036130285760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610732565b600481600481111561303c5761303c613dd2565b0361159d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610732565b5080546130a09061396f565b6000825580601f106130b0575050565b601f01602090049060005260206000209081019061159d91905b808211156130de57600081556001016130ca565b5090565b6001600160e01b03198116811461159d57600080fd5b60006020828403121561310a57600080fd5b8135613115816130e2565b9392505050565b80356001600160a01b038116811461313357600080fd5b919050565b60006020828403121561314a57600080fd5b6131158261311c565b60005b8381101561316e578181015183820152602001613156565b50506000910152565b6000815180845261318f816020860160208601613153565b601f01601f19169290920160200192915050565b6020815260006131156020830184613177565b6000602082840312156131c857600080fd5b5035919050565b600080604083850312156131e257600080fd5b6131eb8361311c565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60405160a081016001600160401b0381118282101715613231576132316131f9565b60405290565b60405160c081016001600160401b0381118282101715613231576132316131f9565b60405160e081016001600160401b0381118282101715613231576132316131f9565b604051601f8201601f191681016001600160401b03811182821017156132a3576132a36131f9565b604052919050565b60006001600160401b038311156132c4576132c46131f9565b6132d7601f8401601f191660200161327b565b90508281528383830111156132eb57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261331357600080fd5b613115838335602085016132ab565b6000806040838503121561333557600080fd5b8235915060208301356001600160401b0381111561335257600080fd5b61335e85828601613302565b9150509250929050565b60006001600160401b03821115613381576133816131f9565b5060051b60200190565b6000602080838503121561339e57600080fd5b82356001600160401b03808211156133b557600080fd5b818501915085601f8301126133c957600080fd5b81356133dc6133d782613368565b61327b565b81815260059190911b830184019084810190888311156133fb57600080fd5b8585015b8381101561349f578035858111156134175760008081fd5b860160a0818c03601f190181131561342f5760008081fd5b61343761320f565b8983013581526040808401358b830152606061345481860161311c565b828401526080915061346782860161311c565b9083015291830135918883111561347e5760008081fd5b61348c8e8c85870101613302565b90820152855250509186019186016133ff565b5098975050505050505050565b6000806000606084860312156134c157600080fd5b6134ca8461311c565b92506134d86020850161311c565b9150604084013590509250925092565b600080604083850312156134fb57600080fd5b50508035926020909101359150565b6000602080838503121561351d57600080fd5b82356001600160401b038082111561353457600080fd5b818501915085601f83011261354857600080fd5b81356135566133d782613368565b81815260059190911b8301840190848101908883111561357557600080fd5b8585015b8381101561349f5780358581111561359057600080fd5b860160c0818c03601f190112156135a75760008081fd5b6135af613237565b88820135878111156135c15760008081fd5b6135cf8d8b83860101613302565b825250604080830135888111156135e65760008081fd5b6135f48e8c83870101613302565b8b840152506060808401358981111561360d5760008081fd5b61361b8f8d83880101613302565b83850152506080915081840135818401525060a0808401358284015260c0840135818401525050808552505086830192508681019050613579565b60c08152600061366960c0830189613177565b828103602084015261367b8189613177565b9050828103604084015261368f8188613177565b60608401969096525050608081019290925260a0909101529392505050565b828152604060208201526000611df06040830184613177565b6000602082840312156136d957600080fd5b81356001600160401b038111156136ef57600080fd5b611df084828501613302565b6000602080838503121561370e57600080fd5b82356001600160401b0381111561372457600080fd5b8301601f8101851361373557600080fd5b80356137436133d782613368565b81815260e0918202830184019184820191908884111561376257600080fd5b938501935b838510156137f25780858a03121561377f5760008081fd5b613787613259565b6137908661311c565b815261379d87870161311c565b8188015260408681013590820152606080870135908201526080808701359082015260a0808701359082015260c08087013560ff811681146137df5760008081fd5b9082015283529384019391850191613767565b50979650505050505050565b6000806040838503121561381157600080fd5b61381a8361311c565b91506020830135801515811461382f57600080fd5b809150509250929050565b6000806000806080858703121561385057600080fd5b6138598561311c565b93506138676020860161311c565b92506040850135915060608501356001600160401b0381111561388957600080fd5b8501601f8101871361389a57600080fd5b6138a9878235602084016132ab565b91505092959194509250565b600080604083850312156138c857600080fd5b6138d18361311c565b9150610b116020840161311c565b600060208083850312156138f257600080fd5b82356001600160401b0381111561390857600080fd5b8301601f8101851361391957600080fd5b80356139276133d782613368565b81815260059190911b8201830190838101908783111561394657600080fd5b928401925b828410156139645783358252928401929084019061394b565b979650505050505050565b600181811c9082168061398357607f821691505b6020821081036139a357634e487b7160e01b600052602260045260246000fd5b50919050565b600082516139bb818460208701613153565b9190910192915050565b6020808252601690820152751a5c199cc81a59081a185cc81c9959da5cdd195c995960521b604082015260600190565b60008154613a028161396f565b60018281168015613a1a5760018114613a2f57613a5e565b60ff1984168752821515830287019450613a5e565b8560005260208060002060005b85811015613a555781548a820152908401908201613a3c565b50505082870194505b5050505092915050565b600061311582846139f5565b601f8211156107d357600081815260208120601f850160051c81016020861015613a9b5750805b601f850160051c820191505b81811015613aba57828155600101613aa7565b505050505050565b81516001600160401b03811115613adb57613adb6131f9565b613aef81613ae9845461396f565b84613a74565b602080601f831160018114613b245760008415613b0c5750858301515b600019600386901b1c1916600185901b178555613aba565b600085815260208120601f198616915b82811015613b5357888601518255948401946001909101908401613b34565b5085821015613b715787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201613bbf57613bbf613b97565b5060010190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b80820281158282048414176105d6576105d6613b97565b600082613c4857634e487b7160e01b600052601260045260246000fd5b500490565b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b60008351613c91818460208801613153565b613c9d818401856139f5565b95945050505050565b60208082526024908201527f4552433732313a20617274776f726b2065646974696f6e206973206e6f7420666040820152631bdd5b9960e21b606082015260800190565b808201808211156105d6576105d6613b97565b818103818111156105d6576105d6613b97565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613dab90830184613177565b9695505050505050565b600060208284031215613dc757600080fd5b8151613115816130e2565b634e487b7160e01b600052602160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef466572616c66696c6545786869626974696f6e56333a20746865207472616e73a2646970667358221220166872d9587d90d75b57ae80de5570996de9b3324fd3a1ba06e6dec6aa56060e64736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000005dc000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd1000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001d536361747465726564204c696d627320284d6f6e756d656e742030312900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6243614837467570664b385467516b78655270435a4871695177376d536d6f645a55417434624c6a4b59577600000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Scattered Limbs (Monument 01)
Arg [1] : symbol_ (string):
Arg [2] : secondarySaleRoyaltyBPS_ (uint256): 1500
Arg [3] : royaltyPayoutAddress_ (address): 0x080FEB125bA730D6D12789B6AAAB01f4E31D8Bd1
Arg [4] : contractURI_ (string): ipfs://QmbCaH7FupfK8TgQkxeRpCZHqiQw7mSmodZUAt4bLjKYWv
Arg [5] : tokenBaseURI_ (string):
Arg [6] : isBurnable_ (bool): True
Arg [7] : isBridgeable_ (bool): True

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 00000000000000000000000000000000000000000000000000000000000005dc
Arg [3] : 000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd1
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [9] : 536361747465726564204c696d627320284d6f6e756d656e7420303129000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [12] : 697066733a2f2f516d6243614837467570664b385467516b78655270435a4871
Arg [13] : 695177376d536d6f645a55417434624c6a4b5957760000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56750:17334:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59723:310;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;59723:310:0;;;;;;;;4066:102;;;;;;:::i;:::-;;:::i;:::-;;28224:100;;;:::i;:::-;;;;;;;:::i;29737:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2066:32:1;;;2048:51;;2036:2;2021:18;29737:171:0;1902:203:1;29254:417:0;;;;;;:::i;:::-;;:::i;62805:478::-;;;;;;:::i;:::-;;:::i;68861:430::-;;;;;;:::i;:::-;;:::i;42130:113::-;42218:10;:17;42130:113;;;6925:25:1;;;6913:2;6898:18;42130:113:0;6779:177:1;30437:336:0;;;;;;:::i;:::-;;:::i;65709:460::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;7739:32:1;;;7721:51;;7803:2;7788:18;;7781:34;;;;7694:18;65709:460:0;7547:274:1;41798:256:0;;;;;;:::i;:::-;;:::i;56897:35::-;;;;;-1:-1:-1;;;;;56897:35:0;;;30844:185;;;;;;:::i;:::-;;:::i;61711:465::-;;;;;;:::i;:::-;;:::i;63479:300::-;;;;;;:::i;:::-;;:::i;58340:43::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;:::i;42320:233::-;;;;;;:::i;:::-;;:::i;58414:57::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;27935:222::-;;;;;;:::i;:::-;;:::i;57212:60::-;;;;;;;;;;;;;;;-1:-1:-1;;;57212:60:0;;;;;64089:252;;;;;;:::i;:::-;;:::i;27666:207::-;;;;;;:::i;:::-;;:::i;2776:103::-;;;:::i;57348:24::-;;;;;-1:-1:-1;;;57348:24:0;;;;;;57298:22;;;;;-1:-1:-1;;;57298:22:0;;;;;;2128:87;;;:::i;64998:116::-;;;;;;:::i;:::-;;:::i;28393:104::-;;;:::i;67159:259::-;;;;;;:::i;:::-;;:::i;29980:155::-;;;;;;:::i;:::-;;:::i;62445:286::-;;;;;;:::i;:::-;;:::i;31100:323::-;;;;;;:::i;:::-;;:::i;64430:508::-;;;;;;:::i;:::-;;:::i;3959:99::-;;;;;;:::i;:::-;;:::i;62258:108::-;62339:12;:19;62258:108;;65187:97;;;:::i;30206:164::-;;;;;;:::i;:::-;;:::i;57011:48::-;;;;;57121:49;;57164:6;57121:49;;3767:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3034:201;;;;;;:::i;:::-;;:::i;72951:879::-;;;;;;:::i;:::-;;:::i;63845:174::-;;;;;;:::i;:::-;63943:7;63975:29;;;:18;:29;;;;;:36;;63845:174;59723:310;59880:4;-1:-1:-1;;;;;;59922:50:0;;-1:-1:-1;;;59922:50:0;;:103;;;59989:36;60013:11;59989:23;:36::i;:::-;59902:123;59723:310;-1:-1:-1;;59723:310:0:o;4066:102::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;4142:18:0::1;;::::0;;;:8:::1;:18;::::0;;;;4135:25;;-1:-1:-1;;4135:25:0::1;::::0;;4066:102::o;28224:100::-;28278:13;28311:5;28304:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28224:100;:::o;29737:171::-;29813:7;29833:23;29848:7;29833:14;:23::i;:::-;-1:-1:-1;29876:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29876:24:0;;29737:171::o;29254:417::-;29335:13;29351:23;29366:7;29351:14;:23::i;:::-;29335:39;;29399:5;-1:-1:-1;;;;;29393:11:0;:2;-1:-1:-1;;;;;29393:11:0;;29385:57;;;;-1:-1:-1;;;29385:57:0;;16257:2:1;29385:57:0;;;16239:21:1;16296:2;16276:18;;;16269:30;16335:34;16315:18;;;16308:62;-1:-1:-1;;;16386:18:1;;;16379:31;16427:19;;29385:57:0;;;;;;;;;759:10;-1:-1:-1;;;;;29477:21:0;;;;:62;;-1:-1:-1;29502:37:0;29519:5;759:10;30206:164;:::i;29502:37::-;29455:174;;;;-1:-1:-1;;;29455:174:0;;16659:2:1;29455:174:0;;;16641:21:1;16698:2;16678:18;;;16671:30;16737:34;16717:18;;;16710:62;16808:32;16788:18;;;16781:60;16858:19;;29455:174:0;16457:426:1;29455:174:0;29642:21;29651:2;29655:7;29642:8;:21::i;:::-;29324:347;29254:417;;:::o;62805:478::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;;3923:7;:5;:7::i;:::-;-1:-1:-1;;;;;3909:21:0;:10;-1:-1:-1;;;;;3909:21:0;;3885:45;3877:54;;;;;;62948:16:::1;62956:7;62948;:16::i;:::-;62940:57;;;::::0;-1:-1:-1;;;62940:57:0;;17090:2:1;62940:57:0::1;::::0;::::1;17072:21:1::0;17129:2;17109:18;;;17102:30;-1:-1:-1;;;17148:18:1;;;17141:58;17216:18;;62940:57:0::1;16888:352:1::0;62940:57:0::1;63017:18;63036:7;63017:27;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;;::::1;;63016:28;63008:63;;;;-1:-1:-1::0;;;63008:63:0::1;;;;;;;:::i;:::-;63084:30;63117:24:::0;;;:15:::1;:24;::::0;;;;;;63159:35;;:18:::1;::::0;:35:::1;::::0;63178:15:::1;::::0;::::1;::::0;63159:35:::1;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;63152:42;;-1:-1:-1;;63152:42:0::1;::::0;;;;63205:18:::1;::::0;:27:::1;::::0;63224:7;;63205:27:::1;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:34;;;::::1;;-1:-1:-1::0;;63205:34:0;;::::1;::::0;;;::::1;::::0;;;63250:15;::::1;:25;63268:7:::0;63250:15;:25:::1;:::i;:::-;;62929:354;62805:478:::0;;:::o;68861:430::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;;3923:7;:5;:7::i;:::-;-1:-1:-1;;;;;3909:21:0;:10;-1:-1:-1;;;;;3909:21:0;;3885:45;3877:54;;;;;;68982:9:::1;68977:307;69001:11;:18;68997:1;:22;68977:307;;;69041:231;69072:11;69084:1;69072:14;;;;;;;;:::i;:::-;;;;;;;:24;;;69115:11;69127:1;69115:14;;;;;;;;:::i;:::-;;;;;;;:22;;;69156:11;69168:1;69156:14;;;;;;;;:::i;:::-;;;;;;;:21;;;69196:11;69208:1;69196:14;;;;;;;;:::i;:::-;;;;;;;:20;;;69235:11;69247:1;69235:14;;;;;;;;:::i;:::-;;;;;;;:22;;;69041:12;:231::i;:::-;69021:3:::0;::::1;::::0;::::1;:::i;:::-;;;;68977:307;;;;68861:430:::0;:::o;30437:336::-;30632:41;759:10;30665:7;30632:18;:41::i;:::-;30624:100;;;;-1:-1:-1;;;30624:100:0;;;;;;;:::i;:::-;30737:28;30747:4;30753:2;30757:7;30737:9;:28::i;65709:460::-;65834:16;65852:21;65913:16;65921:7;65913;:16::i;:::-;65891:115;;;;-1:-1:-1;;;65891:115:0;;22044:2:1;65891:115:0;;;22026:21:1;22083:2;22063:18;;;22056:30;22122:34;22102:18;;;22095:62;-1:-1:-1;;;22173:18:1;;;22166:47;22230:19;;65891:115:0;21842:413:1;65891:115:0;66030:20;;-1:-1:-1;;;;;66030:20:0;;-1:-1:-1;57164:6:0;66093:35;66105:23;66093:9;:35;:::i;:::-;66092:69;;;;:::i;:::-;66063:98;;65709:460;;;;;:::o;41798:256::-;41895:7;41931:23;41948:5;41931:16;:23::i;:::-;41923:5;:31;41915:87;;;;-1:-1:-1;;;41915:87:0;;22857:2:1;41915:87:0;;;22839:21:1;22896:2;22876:18;;;22869:30;22935:34;22915:18;;;22908:62;-1:-1:-1;;;22986:18:1;;;22979:41;23037:19;;41915:87:0;22655:407:1;41915:87:0;-1:-1:-1;;;;;;42020:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41798:256::o;30844:185::-;30982:39;30999:4;31005:2;31009:7;30982:39;;;;;;;;;;;;:16;:39::i;61711:465::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;;3923:7;:5;:7::i;:::-;-1:-1:-1;;;;;3909:21:0;:10;-1:-1:-1;;;;;3909:21:0;;3885:45;3877:54;;;;;;61826:9:::1;61821:348;61845:9;:16;61841:1;:20;61821:348;;;61883:274;61916:9;61926:1;61916:12;;;;;;;;:::i;:::-;;;;;;;:24;;;61959:9;61969:1;61959:12;;;;;;;;:::i;:::-;;;;;;;:18;;;61996:9;62006:1;61996:12;;;;;;;;:::i;:::-;;;;;;;:23;;;62038:9;62048:1;62038:12;;;;;;;;:::i;:::-;;;;;;;:24;;;62081:9;62091:1;62081:12;;;;;;;;:::i;:::-;;;;;;;:21;;;62121:9;62131:1;62121:12;;;;;;;;:::i;:::-;;;;;;;:21;;;61883:14;:274::i;:::-;61863:3:::0;::::1;::::0;::::1;:::i;:::-;;;;61821:348;;63479:300:::0;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;;3923:7;:5;:7::i;:::-;-1:-1:-1;;;;;3909:21:0;:10;-1:-1:-1;;;;;3909:21:0;;3885:45;3877:54;;;;;;-1:-1:-1;;;;;63623:35:0;::::1;63601:115;;;::::0;-1:-1:-1;;;63601:115:0;;23269:2:1;63601:115:0::1;::::0;::::1;23251:21:1::0;23308:2;23288:18;;;23281:30;23347:32;23327:18;;;23320:60;23397:18;;63601:115:0::1;23067:354:1::0;63601:115:0::1;63727:20;:44:::0;;-1:-1:-1;;;;;;63727:44:0::1;-1:-1:-1::0;;;;;63727:44:0;;;::::1;::::0;;;::::1;::::0;;63479:300::o;58340:43::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42320:233::-;42395:7;42431:30;42218:10;:17;;42130:113;42431:30;42423:5;:38;42415:95;;;;-1:-1:-1;;;42415:95:0;;23628:2:1;42415:95:0;;;23610:21:1;23667:2;23647:18;;;23640:30;23706:34;23686:18;;;23679:62;-1:-1:-1;;;23757:18:1;;;23750:42;23809:19;;42415:95:0;23426:408:1;42415:95:0;42528:10;42539:5;42528:17;;;;;;;;:::i;:::-;;;;;;;;;42521:24;;42320:233;;;:::o;58414:57::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27935:222::-;28007:7;28043:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28043:16:0;;28070:56;;;;-1:-1:-1;;;28070:56:0;;;;;;;:::i;64089:252::-;64205:7;63975:29;;;:18;:29;;;;;:36;64238:5;:40;64230:49;;;;;;64297:29;;;;:18;:29;;;;;:36;;64327:5;;64297:36;;;;;;:::i;:::-;;;;;;;;;64290:43;;64089:252;;;;:::o;27666:207::-;27738:7;-1:-1:-1;;;;;27766:19:0;;27758:73;;;;-1:-1:-1;;;27758:73:0;;24394:2:1;27758:73:0;;;24376:21:1;24433:2;24413:18;;;24406:30;24472:34;24452:18;;;24445:62;-1:-1:-1;;;24523:18:1;;;24516:39;24572:19;;27758:73:0;24192:405:1;27758:73:0;-1:-1:-1;;;;;;27849:16:0;;;;;:9;:16;;;;;;;27666:207::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;2128:87::-;2201:6;;-1:-1:-1;;;;;2201:6:0;;2128:87::o;64998:116::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;;3923:7;:5;:7::i;:::-;-1:-1:-1;;;;;3909:21:0;:10;-1:-1:-1;;;;;3909:21:0;;3885:45;3877:54;;;;;;65082:13:::1;:24;65098:8:::0;65082:13;:24:::1;:::i;28393:104::-:0;28449:13;28482:7;28475:14;;;;;:::i;67159:259::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;;3923:7;:5;:7::i;:::-;-1:-1:-1;;;;;3909:21:0;:10;-1:-1:-1;;;;;3909:21:0;;3885:45;3877:54;;;;;;67297:9:::1;67292:119;67316:15;:22;67312:1;:26;67292:119;;;67360:39;67380:15;67396:1;67380:18;;;;;;;;:::i;:::-;;;;;;;67360:19;:39::i;:::-;67340:3:::0;::::1;::::0;::::1;:::i;:::-;;;;67292:119;;29980:155:::0;30075:52;759:10;30108:8;30118;30075:18;:52::i;62445:286::-;62552:7;62607:15;62339:12;:19;;62258:108;62607:15;62599:5;:23;62577:109;;;;-1:-1:-1;;;62577:109:0;;24804:2:1;62577:109:0;;;24786:21:1;24843:2;24823:18;;;24816:30;24882:34;24862:18;;;24855:62;-1:-1:-1;;;24933:18:1;;;24926:34;24977:19;;62577:109:0;24602:400:1;62577:109:0;62704:12;62717:5;62704:19;;;;;;;;:::i;31100:323::-;31274:41;759:10;31307:7;31274:18;:41::i;:::-;31266:100;;;;-1:-1:-1;;;31266:100:0;;;;;;;:::i;:::-;31377:38;31391:4;31397:2;31401:7;31410:4;31377:13;:38::i;64430:508::-;64548:13;64601:16;64609:7;64601;:16::i;:::-;64579:113;;;;-1:-1:-1;;;64579:113:0;;25209:2:1;64579:113:0;;;25191:21:1;25248:2;25228:18;;;25221:30;25287:34;25267:18;;;25260:62;-1:-1:-1;;;25338:18:1;;;25331:45;25393:19;;64579:113:0;25007:411:1;64579:113:0;64705:21;64729:13;64705:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64763:7;64757:21;64782:1;64757:26;64753:78;;-1:-1:-1;64800:19:0;;;;;;;;;;;;-1:-1:-1;;;64800:19:0;;;;64753:78;64887:7;64896:15;:24;64912:7;64896:24;;;;;;;;;;;:32;;64870:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64843:87;;;64430:508;;;:::o;3959:99::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;4025:18:0::1;;::::0;;;:8:::1;:18;::::0;;;;:25;;-1:-1:-1;;4025:25:0::1;4046:4;4025:25;::::0;;3959:99::o;65187:97::-;65231:13;65264:12;65257:19;;;;;:::i;30206:164::-;-1:-1:-1;;;;;30327:25:0;;;30303:4;30327:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30206:164::o;3034:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3123:22:0;::::1;3115:73;;;::::0;-1:-1:-1;;;3115:73:0;;25999:2:1;3115:73:0::1;::::0;::::1;25981:21:1::0;26038:2;26018:18;;;26011:30;26077:34;26057:18;;;26050:62;-1:-1:-1;;;26128:18:1;;;26121:36;26174:19;;3115:73:0::1;25797:402:1::0;3115:73:0::1;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;72951:879::-;73029:10;;-1:-1:-1;;;73029:10:0;;;;73021:68;;;;-1:-1:-1;;;73021:68:0;;26406:2:1;73021:68:0;;;26388:21:1;26445:2;26425:18;;;26418:30;26484:34;26464:18;;;26457:62;-1:-1:-1;;;26535:18:1;;;26528:43;26588:19;;73021:68:0;26204:409:1;73021:68:0;73107:9;73102:721;73126:11;:18;73122:1;:22;73102:721;;;73192:23;73200:11;73212:1;73200:14;;;;;;;;:::i;:::-;;;;;;;73192:7;:23::i;:::-;73166:121;;;;-1:-1:-1;;;73166:121:0;;;;;;;:::i;:::-;73328:48;759:10;73361:11;73373:1;73361:14;;;;;;;;:::i;:::-;;;;;;;73328:18;:48::i;:::-;73302:156;;;;-1:-1:-1;;;73302:156:0;;;;;;;:::i;:::-;73473:29;73505:15;:31;73521:11;73533:1;73521:14;;;;;;;;:::i;:::-;;;;;;;73505:31;;;;;;;;;;;73473:63;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73560:18;73579:7;:15;;;73560:35;;;;;;:::i;:::-;;;;;;;;;;;;;;73553:42;;-1:-1:-1;;73553:42:0;;;73633:14;;73617:15;;73560:35;;73633:11;;73645:1;;73633:14;;;;;;:::i;:::-;;;;;;;73617:31;;;;;;;;;;;;73610:38;;;;;;;;;;;;;;:::i;:::-;;;73665:52;73702:11;73714:1;73702:14;;;;;;;;:::i;:::-;;;;;;;73665:36;:52::i;:::-;73734:21;73740:11;73752:1;73740:14;;;;;;;;:::i;:::-;;;;;;;73734:5;:21::i;:::-;73796:11;73808:1;73796:14;;;;;;;;:::i;:::-;;;;;;;73777:34;;;;;;;;;;-1:-1:-1;73146:3:0;;;;:::i;:::-;;;;73102:721;;41490:224;41592:4;-1:-1:-1;;;;;;41616:50:0;;-1:-1:-1;;;41616:50:0;;:90;;;41670:36;41694:11;41670:23;:36::i;2293:132::-;759:10;2357:7;:5;:7::i;:::-;-1:-1:-1;;;;;2357:23:0;;2349:68;;;;-1:-1:-1;;;2349:68:0;;27225:2:1;2349:68:0;;;27207:21:1;;;27244:18;;;27237:30;27303:34;27283:18;;;27276:62;27355:18;;2349:68:0;27023:356:1;37712:135:0;37794:16;37802:7;37794;:16::i;:::-;37786:53;;;;-1:-1:-1;;;37786:53:0;;;;;;;:::i;36991:174::-;37066:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37066:29:0;-1:-1:-1;;;;;37066:29:0;;;;;;;;:24;;37120:23;37066:24;37120:14;:23::i;:::-;-1:-1:-1;;;;;37111:46:0;;;;;;;;;;;36991:174;;:::o;32930:127::-;32995:4;33019:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33019:16:0;:30;;;32930:127::o;69691:1880::-;70026:1;69991:20;;;:8;:20;;;;;:32;;;69969:129;;;;-1:-1:-1;;;69969:129:0;;27586:2:1;69969:129:0;;;27568:21:1;27625:2;27605:18;;;27598:30;27664:34;27644:18;;;27637:62;-1:-1:-1;;;27715:18:1;;;27708:41;27766:19;;69969:129:0;27384:407:1;69969:129:0;70407:20;;;;:8;:20;;;;;:29;;;;70354;;;;70298:32;;;;;70407:29;;70298:85;;;:::i;:::-;:138;;;;:::i;:::-;70264:14;:172;70242:298;;;;-1:-1:-1;;;70242:298:0;;28128:2:1;70242:298:0;;;28110:21:1;28167:2;28147:18;;;28140:30;28206:34;28186:18;;;28179:62;28277:34;28257:18;;;28250:62;-1:-1:-1;;;28328:19:1;;;28321:43;28381:19;;70242:298:0;27926:480:1;70242:298:0;-1:-1:-1;;;;;70559:21:0;;70551:56;;;;-1:-1:-1;;;70551:56:0;;28613:2:1;70551:56:0;;;28595:21:1;28652:2;28632:18;;;28625:30;-1:-1:-1;;;28671:18:1;;;28664:52;28733:18;;70551:56:0;28411:346:1;70551:56:0;-1:-1:-1;;;;;70626:20:0;;70618:54;;;;-1:-1:-1;;;70618:54:0;;28964:2:1;70618:54:0;;;28946:21:1;29003:2;28983:18;;;28976:30;-1:-1:-1;;;29022:18:1;;;29015:51;29083:18;;70618:54:0;28762:345:1;70618:54:0;70692:18;70711:8;70692:28;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;70691:29;70683:64;;;;-1:-1:-1;;;70683:64:0;;;;;;;:::i;:::-;70760:17;70780:27;70793:14;70780:10;:27;:::i;:::-;70840:26;;;;:15;:26;;;;;:36;70760:47;;-1:-1:-1;70840:41:0;70818:137;;;;-1:-1:-1;;;70818:137:0;;29314:2:1;70818:137:0;;;29296:21:1;29353:2;29333:18;;;29326:30;29392:34;29372:18;;;29365:62;-1:-1:-1;;;29443:18:1;;;29436:44;29497:19;;70818:137:0;29112:410:1;70818:137:0;71000:35;;;;;;;;;;;;;;;;;;70968:29;71048:26;;;:15;:26;;;;;;:36;;;;;;71000:35;;;;71048:36;;;;;;;;:::i;:::-;-1:-1:-1;;;71095:30:0;;;;:18;:30;;;;;;;;:46;;;;;;;;;;;;;;;;;;;;71189:111;;;;;;;;;;;71248:30;;;;;;;:37;;71189:111;;;;;;71248:41;;71095:46;71248:41;:::i;:::-;71189:111;;71152:34;;;;:23;:34;;;;;;;;;:148;;;;;;;;;;;;71313:28;:18;;:28;;71332:8;;71313:28;:::i;:::-;;;;;;;;;;;;;;:35;;;;;-1:-1:-1;;71313:35:0;;;;;;;;;71361:29;71371:7;71380:9;71361;:29::i;:::-;71418:6;-1:-1:-1;;;;;71407:17:0;:7;-1:-1:-1;;;;;71407:17:0;;71403:95;;71441:45;71455:7;71464:6;71472:9;71441:45;;;;;;;;;;;;:13;:45::i;:::-;71553:9;71541:10;71533:6;-1:-1:-1;;;;;71515:48:0;;;;;;;;;;;69874:1697;;69691:1880;;;;;:::o;33224:264::-;33317:4;33334:13;33350:23;33365:7;33350:14;:23::i;:::-;33334:39;;33403:5;-1:-1:-1;;;;;33392:16:0;:7;-1:-1:-1;;;;;33392:16:0;;:52;;;;33412:32;33429:5;33436:7;33412:16;:32::i;:::-;33392:87;;;;33472:7;-1:-1:-1;;;;;33448:31:0;:20;33460:7;33448:11;:20::i;:::-;-1:-1:-1;;;;;33448:31:0;;33392:87;33384:96;33224:264;-1:-1:-1;;;;33224:264:0:o;36247:625::-;36406:4;-1:-1:-1;;;;;36379:31:0;:23;36394:7;36379:14;:23::i;:::-;-1:-1:-1;;;;;36379:31:0;;36371:81;;;;-1:-1:-1;;;36371:81:0;;29862:2:1;36371:81:0;;;29844:21:1;29901:2;29881:18;;;29874:30;29940:34;29920:18;;;29913:62;-1:-1:-1;;;29991:18:1;;;29984:35;30036:19;;36371:81:0;29660:401:1;36371:81:0;-1:-1:-1;;;;;36471:16:0;;36463:65;;;;-1:-1:-1;;;36463:65:0;;30268:2:1;36463:65:0;;;30250:21:1;30307:2;30287:18;;;30280:30;30346:34;30326:18;;;30319:62;-1:-1:-1;;;30397:18:1;;;30390:34;30441:19;;36463:65:0;30066:400:1;36463:65:0;36541:39;36562:4;36568:2;36572:7;36541:20;:39::i;:::-;36645:29;36662:1;36666:7;36645:8;:29::i;:::-;-1:-1:-1;;;;;36687:15:0;;;;;;:9;:15;;;;;:20;;36706:1;;36687:15;:20;;36706:1;;36687:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36718:13:0;;;;;;:9;:13;;;;;:18;;36735:1;;36718:13;:18;;36735:1;;36718:18;:::i;:::-;;;;-1:-1:-1;;36747:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36747:21:0;-1:-1:-1;;;;;36747:21:0;;;;;;;;;36786:27;;36747:16;;36786:27;;;;-1:-1:-1;;;;;;;;;;;36786:27:0;;29324:347;29254:417;;:::o;60333:1240::-;60582:5;60576:19;60599:1;60576:24;60568:59;;;;-1:-1:-1;;;60568:59:0;;30673:2:1;60568:59:0;;;30655:21:1;30712:2;30692:18;;;30685:30;-1:-1:-1;;;30731:18:1;;;30724:52;30793:18;;60568:59:0;30471:346:1;60568:59:0;60652:10;60646:24;60674:1;60646:29;60638:65;;;;-1:-1:-1;;;60638:65:0;;31024:2:1;60638:65:0;;;31006:21:1;31063:2;31043:18;;;31036:30;-1:-1:-1;;;31082:18:1;;;31075:53;31145:18;;60638:65:0;30822:347:1;60638:65:0;60728:11;60722:25;60751:1;60722:30;60714:71;;;;-1:-1:-1;;;60714:71:0;;31376:2:1;60714:71:0;;;31358:21:1;31415:2;31395:18;;;31388:30;-1:-1:-1;;;31434:18:1;;;31427:58;31502:18;;60714:71:0;31174:352:1;60714:71:0;60818:1;60804:11;:15;60796:63;;;;-1:-1:-1;;;60796:63:0;;31733:2:1;60796:63:0;;;31715:21:1;31772:2;31752:18;;;31745:30;31811:34;31791:18;;;31784:62;-1:-1:-1;;;31862:18:1;;;31855:33;31905:19;;60796:63:0;31531:399:1;60796:63:0;60872:17;60921:11;60910:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;60910:23:0;;;;;;;;;60900:34;;60910:23;60900:34;;;;60892:43;61044:19;;;:8;:19;;;;;:31;;61038:45;;60900:34;;-1:-1:-1;61044:31:0;61038:45;;;:::i;:::-;:50;;-1:-1:-1;61016:159:0;;;;-1:-1:-1;;;61016:159:0;;32137:2:1;61016:159:0;;;32119:21:1;32176:2;32156:18;;;32149:30;32215:34;32195:18;;;32188:62;-1:-1:-1;;;32266:18:1;;;32259:57;32333:19;;61016:159:0;31935:423:1;61016:159:0;61213:232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61458:12;:28;;;;;;;;;;;;;61188:22;61497:19;;;:8;:19;;;;;;;:29;;61213:232;;61497:19;;;:29;;:19;:29;:::i;:::-;-1:-1:-1;61497:29:0;;;;;;;;;;;;:::i;:::-;-1:-1:-1;61497:29:0;;;;;;;;;;;;:::i;:::-;-1:-1:-1;61497:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;61544:21;;61555:9;;61544:21;;-1:-1:-1;;61544:21:0;60557:1016;;60333:1240;;;;;;:::o;3395:191::-;3488:6;;;-1:-1:-1;;;;;3505:17:0;;;-1:-1:-1;;;;;;3505:17:0;;;;;;;3538:40;;3488:6;;;3505:17;3488:6;;3538:40;;3469:16;;3538:40;3458:128;3395:191;:::o;67426:1304::-;67554:31;67562:14;:22;;;67554:7;:31::i;:::-;67532:117;;;;-1:-1:-1;;;67532:117:0;;;;;;;:::i;:::-;67684:63;67703:14;:19;;;67724:14;:22;;;67684:18;:63::i;:::-;67662:159;;;;-1:-1:-1;;;67662:159:0;;;;;;;:::i;:::-;67875:14;:25;;;67856:15;:44;;67834:148;;;;-1:-1:-1;;;67834:148:0;;32565:2:1;67834:148:0;;;32547:21:1;32604:2;32584:18;;;32577:30;-1:-1:-1;;;;;;;;;;;32623:18:1;;;32616:62;-1:-1:-1;;;32694:18:1;;;32687:52;32756:19;;67834:148:0;32363:418:1;67834:148:0;67995:19;68070:14;:19;;;68108:14;:17;;;68144:14;:22;;;68185:14;:25;;;68041:184;;;;;;;;;;-1:-1:-1;;;;;33073:15:1;;;33055:34;;33125:15;;;;33120:2;33105:18;;33098:43;33172:2;33157:18;;33150:34;33215:2;33200:18;;33193:34;;;;33004:3;32989:19;;32786:447;68041:184:0;;;;;;;;;;;;;68017:219;;;;;;67995:241;;68271:205;68304:11;68334:14;:19;;;68372:14;:17;;;68408:14;:17;;;68444:14;:17;;;68271:14;:205::i;:::-;68249:316;;;;-1:-1:-1;;;68249:316:0;;33440:2:1;68249:316:0;;;33422:21:1;33479:2;33459:18;;;33452:30;-1:-1:-1;;;;;;;;;;;33498:18:1;;;33491:62;33589:31;33569:18;;;33562:59;33638:19;;68249:316:0;33238:425:1;68249:316:0;68578:144;68606:14;:19;;;68640:14;:17;;;68672:14;:22;;;68578:144;;;;;;;;;;;;:13;:144::i;37308:315::-;37463:8;-1:-1:-1;;;;;37454:17:0;:5;-1:-1:-1;;;;;37454:17:0;;37446:55;;;;-1:-1:-1;;;37446:55:0;;33870:2:1;37446:55:0;;;33852:21:1;33909:2;33889:18;;;33882:30;-1:-1:-1;;;33928:18:1;;;33921:55;33993:18;;37446:55:0;33668:349:1;37446:55:0;-1:-1:-1;;;;;37512:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37512:46:0;;;;;;;;;;37574:41;;540::1;;;37574::0;;513:18:1;37574:41:0;;;;;;;37308:315;;;:::o;32304:313::-;32460:28;32470:4;32476:2;32480:7;32460:9;:28::i;:::-;32507:47;32530:4;32536:2;32540:7;32549:4;32507:22;:47::i;:::-;32499:110;;;;-1:-1:-1;;;32499:110:0;;;;;;;:::i;71734:1110::-;71818:59;71880:34;;;:23;:34;;;;;;;;;71818:96;;;;;;;;;;;;;;;;;;;;;;;;;71927:155;;;;-1:-1:-1;;;71927:155:0;;34643:2:1;71927:155:0;;;34625:21:1;34682:2;34662:18;;;34655:30;34721:34;34701:18;;;34694:62;34792:34;34772:18;;;34765:62;-1:-1:-1;;;34843:19:1;;;34836:39;34892:19;;71927:155:0;34441:476:1;71927:155:0;72165:29;;72095:34;72132:73;;;:18;:73;;;;;72240:23;;72218:149;;;;-1:-1:-1;;;72218:149:0;;35124:2:1;72218:149:0;;;35106:21:1;35163:2;35143:18;;;35136:30;35202:34;35182:18;;;35175:62;35273:34;35253:18;;;35246:62;-1:-1:-1;;;35324:19:1;;;35317:39;35373:19;;72218:149:0;34922:476:1;72218:149:0;72407:23;;72380:24;;72407:27;;72433:1;;72407:27;:::i;:::-;72380:54;;72445:21;72469:16;72512:1;72486:16;:23;;;;:27;;;;:::i;:::-;72469:45;;;;;;;;:::i;:::-;;;;;;;;;72445:69;;72663:13;72617:16;72634:19;:25;;;72617:43;;;;;;;;:::i;:::-;;;;;;;;:59;;;;72724:19;:25;;;72687:16;72704;72687:34;;;;;;;;:::i;:::-;;;;;;;;:62;;;;72760:16;:22;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;72760:22:0;;;;;;;;;;;;72802:34;;;:23;:34;;;-1:-1:-1;;72802:34:0;;;72795:41;;;72760:22;72795:41;;;;;-1:-1:-1;;71734:1110:0:o;35490:420::-;35550:13;35566:23;35581:7;35566:14;:23::i;:::-;35550:39;;35602:48;35623:5;35638:1;35642:7;35602:20;:48::i;:::-;35691:29;35708:1;35712:7;35691:8;:29::i;:::-;-1:-1:-1;;;;;35733:16:0;;;;;;:9;:16;;;;;:21;;35753:1;;35733:16;:21;;35753:1;;35733:21;:::i;:::-;;;;-1:-1:-1;;35772:16:0;;;;:7;:16;;;;;;35765:23;;-1:-1:-1;;;;;;35765:23:0;;;35806:36;35780:7;;35772:16;-1:-1:-1;;;;;35806:36:0;;;-1:-1:-1;;;;;;;;;;;35806:36:0;35772:16;;35806:36;68977:307:::1;68861:430:::0;:::o;27297:305::-;27399:4;-1:-1:-1;;;;;;27436:40:0;;-1:-1:-1;;;27436:40:0;;:105;;-1:-1:-1;;;;;;;27493:48:0;;-1:-1:-1;;;27493:48:0;27436:105;:158;;;-1:-1:-1;;;;;;;;;;16571:40:0;;;27558:36;16462:157;33830:110;33906:26;33916:2;33920:7;33906:26;;;;;;;;;;;;:9;:26::i;43166:589::-;-1:-1:-1;;;;;43372:18:0;;43368:187;;43407:40;43439:7;44582:10;:17;;44555:24;;;;:15;:24;;;;;:44;;;44610:24;;;;;;;;;;;;44478:164;43407:40;43368:187;;;43477:2;-1:-1:-1;;;;;43469:10:0;:4;-1:-1:-1;;;;;43469:10:0;;43465:90;;43496:47;43529:4;43535:7;43496:32;:47::i;:::-;-1:-1:-1;;;;;43569:16:0;;43565:183;;43602:45;43639:7;43602:36;:45::i;43565:183::-;43675:4;-1:-1:-1;;;;;43669:10:0;:2;-1:-1:-1;;;;;43669:10:0;;43665:83;;43696:40;43724:2;43728:7;43696:27;:40::i;66629:371::-;66796:4;66813:14;66830:128;66858:38;66887:8;55498:58;;-1:-1:-1;;;55498:58:0;;;36513:80:1;36609:12;;;36602:28;;;55365:7:0;;36646:12:1;;55498:58:0;;;;;;;;;;;;55488:69;;;;;;55481:76;;55296:269;;;;66858:38;66911:2;66928;66945;66830:13;:128::i;:::-;-1:-1:-1;;;;;66976:16:0;;;;;;;;-1:-1:-1;;66629:371:0;;;;;;;:::o;38411:853::-;38565:4;-1:-1:-1;;;;;38586:13:0;;5703:19;:23;38582:675;;38622:71;;-1:-1:-1;;;38622:71:0;;-1:-1:-1;;;;;38622:36:0;;;;;:71;;759:10;;38673:4;;38679:7;;38688:4;;38622:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38622:71:0;;;;;;;;-1:-1:-1;;38622:71:0;;;;;;;;;;;;:::i;:::-;;;38618:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38863:6;:13;38880:1;38863:18;38859:328;;38906:60;;-1:-1:-1;;;38906:60:0;;;;;;;:::i;38859:328::-;39137:6;39131:13;39122:6;39118:2;39114:15;39107:38;38618:584;-1:-1:-1;;;;;;38744:51:0;-1:-1:-1;;;38744:51:0;;-1:-1:-1;38737:58:0;;38582:675;-1:-1:-1;39241:4:0;38411:853;;;;;;:::o;34167:319::-;34296:18;34302:2;34306:7;34296:5;:18::i;:::-;34347:53;34378:1;34382:2;34386:7;34395:4;34347:22;:53::i;:::-;34325:153;;;;-1:-1:-1;;;34325:153:0;;;;;;;:::i;45269:988::-;45535:22;45585:1;45560:22;45577:4;45560:16;:22::i;:::-;:26;;;;:::i;:::-;45597:18;45618:26;;;:17;:26;;;;;;45535:51;;-1:-1:-1;45751:28:0;;;45747:328;;-1:-1:-1;;;;;45818:18:0;;45796:19;45818:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45869:30;;;;;;:44;;;45986:30;;:17;:30;;;;;:43;;;45747:328;-1:-1:-1;46171:26:0;;;;:17;:26;;;;;;;;46164:33;;;-1:-1:-1;;;;;46215:18:0;;;;;:12;:18;;;;;:34;;;;;;;46208:41;45269:988::o;46552:1079::-;46830:10;:17;46805:22;;46830:21;;46850:1;;46830:21;:::i;:::-;46862:18;46883:24;;;:15;:24;;;;;;47256:10;:26;;46805:46;;-1:-1:-1;46883:24:0;;46805:46;;47256:26;;;;;;:::i;:::-;;;;;;;;;47234:48;;47320:11;47295:10;47306;47295:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47400:28;;;:15;:28;;;;;;;:41;;;47572:24;;;;;47565:31;47607:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46623:1008;;;46552:1079;:::o;44056:221::-;44141:14;44158:20;44175:2;44158:16;:20::i;:::-;-1:-1:-1;;;;;44189:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44234:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44056:221:0:o;54717:279::-;54845:7;54866:17;54885:18;54907:25;54918:4;54924:1;54927;54930;54907:10;:25::i;:::-;54865:67;;;;54943:18;54955:5;54943:11;:18::i;:::-;-1:-1:-1;54979:9:0;54717:279;-1:-1:-1;;;;;54717:279:0:o;34822:439::-;-1:-1:-1;;;;;34902:16:0;;34894:61;;;;-1:-1:-1;;;34894:61:0;;36871:2:1;34894:61:0;;;36853:21:1;;;36890:18;;;36883:30;36949:34;36929:18;;;36922:62;37001:18;;34894:61:0;36669:356:1;34894:61:0;34975:16;34983:7;34975;:16::i;:::-;34974:17;34966:58;;;;-1:-1:-1;;;34966:58:0;;37232:2:1;34966:58:0;;;37214:21:1;37271:2;37251:18;;;37244:30;-1:-1:-1;;;37290:18:1;;;37283:58;37358:18;;34966:58:0;37030:352:1;34966:58:0;35037:45;35066:1;35070:2;35074:7;35037:20;:45::i;:::-;-1:-1:-1;;;;;35095:13:0;;;;;;:9;:13;;;;;:18;;35112:1;;35095:13;:18;;35112:1;;35095:18;:::i;:::-;;;;-1:-1:-1;;35124:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35124:21:0;-1:-1:-1;;;;;35124:21:0;;;;;;;;35163:33;;35124:16;;;-1:-1:-1;;;;;;;;;;;35163:33:0;35124:16;;35163:33;68977:307:::1;68861:430:::0;:::o;52946:1632::-;53077:7;;-1:-1:-1;;;;;53998:79:0;;53994:163;;;-1:-1:-1;54110:1:0;;-1:-1:-1;54114:30:0;54094:51;;53994:163;54171:1;:7;;54176:2;54171:7;;:18;;;;;54182:1;:7;;54187:2;54182:7;;54171:18;54167:102;;;-1:-1:-1;54222:1:0;;-1:-1:-1;54226:30:0;54206:51;;54167:102;54383:24;;;54366:14;54383:24;;;;;;;;;37614:25:1;;;37687:4;37675:17;;37655:18;;;37648:45;;;;37709:18;;;37702:34;;;37752:18;;;37745:34;;;54383:24:0;;37586:19:1;;54383:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54383:24:0;;-1:-1:-1;;54383:24:0;;;-1:-1:-1;;;;;;;54422:20:0;;54418:103;;54475:1;54479:29;54459:50;;;;;;;54418:103;54541:6;-1:-1:-1;54549:20:0;;-1:-1:-1;52946:1632:0;;;;;;;;:::o;48216:643::-;48294:20;48285:5;:29;;;;;;;;:::i;:::-;;48281:571;;48216:643;:::o;48281:571::-;48392:29;48383:5;:38;;;;;;;;:::i;:::-;;48379:473;;48438:34;;-1:-1:-1;;;48438:34:0;;38124:2:1;48438:34:0;;;38106:21:1;38163:2;38143:18;;;38136:30;-1:-1:-1;;;38182:18:1;;;38175:54;38246:18;;48438:34:0;37922:348:1;48379:473:0;48503:35;48494:5;:44;;;;;;;;:::i;:::-;;48490:362;;48555:41;;-1:-1:-1;;;48555:41:0;;38477:2:1;48555:41:0;;;38459:21:1;38516:2;38496:18;;;38489:30;38555:33;38535:18;;;38528:61;38606:18;;48555:41:0;38275:355:1;48490:362:0;48627:30;48618:5;:39;;;;;;;;:::i;:::-;;48614:238;;48674:44;;-1:-1:-1;;;48674:44:0;;38837:2:1;48674:44:0;;;38819:21:1;38876:2;38856:18;;;38849:30;38915:34;38895:18;;;38888:62;-1:-1:-1;;;38966:18:1;;;38959:32;39008:19;;48674:44:0;38635:398:1;48614:238:0;48749:30;48740:5;:39;;;;;;;;:::i;:::-;;48736:116;;48796:44;;-1:-1:-1;;;48796:44:0;;39240:2:1;48796:44:0;;;39222:21:1;39279:2;39259:18;;;39252:30;39318:34;39298:18;;;39291:62;-1:-1:-1;;;39369:18:1;;;39362:32;39411:19;;48796:44:0;39038:398:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:186::-;829:6;882:2;870:9;861:7;857:23;853:32;850:52;;;898:1;895;888:12;850:52;921:29;940:9;921:29;:::i;961:250::-;1046:1;1056:113;1070:6;1067:1;1064:13;1056:113;;;1146:11;;;1140:18;1127:11;;;1120:39;1092:2;1085:10;1056:113;;;-1:-1:-1;;1203:1:1;1185:16;;1178:27;961:250::o;1216:271::-;1258:3;1296:5;1290:12;1323:6;1318:3;1311:19;1339:76;1408:6;1401:4;1396:3;1392:14;1385:4;1378:5;1374:16;1339:76;:::i;:::-;1469:2;1448:15;-1:-1:-1;;1444:29:1;1435:39;;;;1476:4;1431:50;;1216:271;-1:-1:-1;;1216:271:1:o;1492:220::-;1641:2;1630:9;1623:21;1604:4;1661:45;1702:2;1691:9;1687:18;1679:6;1661:45;:::i;1717:180::-;1776:6;1829:2;1817:9;1808:7;1804:23;1800:32;1797:52;;;1845:1;1842;1835:12;1797:52;-1:-1:-1;1868:23:1;;1717:180;-1:-1:-1;1717:180:1:o;2110:254::-;2178:6;2186;2239:2;2227:9;2218:7;2214:23;2210:32;2207:52;;;2255:1;2252;2245:12;2207:52;2278:29;2297:9;2278:29;:::i;:::-;2268:39;2354:2;2339:18;;;;2326:32;;-1:-1:-1;;;2110:254:1:o;2369:127::-;2430:10;2425:3;2421:20;2418:1;2411:31;2461:4;2458:1;2451:15;2485:4;2482:1;2475:15;2501:253;2573:2;2567:9;2615:4;2603:17;;-1:-1:-1;;;;;2635:34:1;;2671:22;;;2632:62;2629:88;;;2697:18;;:::i;:::-;2733:2;2726:22;2501:253;:::o;2759:::-;2831:2;2825:9;2873:4;2861:17;;-1:-1:-1;;;;;2893:34:1;;2929:22;;;2890:62;2887:88;;;2955:18;;:::i;3017:253::-;3089:2;3083:9;3131:4;3119:17;;-1:-1:-1;;;;;3151:34:1;;3187:22;;;3148:62;3145:88;;;3213:18;;:::i;3275:275::-;3346:2;3340:9;3411:2;3392:13;;-1:-1:-1;;3388:27:1;3376:40;;-1:-1:-1;;;;;3431:34:1;;3467:22;;;3428:62;3425:88;;;3493:18;;:::i;:::-;3529:2;3522:22;3275:275;;-1:-1:-1;3275:275:1:o;3555:407::-;3620:5;-1:-1:-1;;;;;3643:30:1;;3640:56;;;3676:18;;:::i;:::-;3714:57;3759:2;3738:15;;-1:-1:-1;;3734:29:1;3765:4;3730:40;3714:57;:::i;:::-;3705:66;;3794:6;3787:5;3780:21;3834:3;3825:6;3820:3;3816:16;3813:25;3810:45;;;3851:1;3848;3841:12;3810:45;3900:6;3895:3;3888:4;3881:5;3877:16;3864:43;3954:1;3947:4;3938:6;3931:5;3927:18;3923:29;3916:40;3555:407;;;;;:::o;3967:222::-;4010:5;4063:3;4056:4;4048:6;4044:17;4040:27;4030:55;;4081:1;4078;4071:12;4030:55;4103:80;4179:3;4170:6;4157:20;4150:4;4142:6;4138:17;4103:80;:::i;4194:390::-;4272:6;4280;4333:2;4321:9;4312:7;4308:23;4304:32;4301:52;;;4349:1;4346;4339:12;4301:52;4372:23;;;-1:-1:-1;4446:2:1;4431:18;;4418:32;-1:-1:-1;;;;;4462:30:1;;4459:50;;;4505:1;4502;4495:12;4459:50;4528;4570:7;4561:6;4550:9;4546:22;4528:50;:::i;:::-;4518:60;;;4194:390;;;;;:::o;4589:199::-;4665:4;-1:-1:-1;;;;;4687:30:1;;4684:56;;;4720:18;;:::i;:::-;-1:-1:-1;4765:1:1;4761:14;4777:4;4757:25;;4589:199::o;4793:1981::-;4911:6;4942:2;4985;4973:9;4964:7;4960:23;4956:32;4953:52;;;5001:1;4998;4991:12;4953:52;5028:23;;-1:-1:-1;;;;;5100:14:1;;;5097:34;;;5127:1;5124;5117:12;5097:34;5165:6;5154:9;5150:22;5140:32;;5210:7;5203:4;5199:2;5195:13;5191:27;5181:55;;5232:1;5229;5222:12;5181:55;5268:2;5255:16;5291:76;5307:59;5363:2;5307:59;:::i;:::-;5291:76;:::i;:::-;5401:15;;;5483:1;5479:10;;;;5471:19;;5467:28;;;5432:12;;;;5507:19;;;5504:39;;;5539:1;5536;5529:12;5504:39;5571:2;5567;5563:11;5583:1161;5599:6;5594:3;5591:15;5583:1161;;;5685:3;5672:17;5721:2;5708:11;5705:19;5702:109;;;5765:1;5794:2;5790;5783:14;5702:109;5834:20;;5877:4;5905:16;;;-1:-1:-1;;5901:30:1;5897:39;-1:-1:-1;5894:129:1;;;5977:1;6006:2;6002;5995:14;5894:129;6049:22;;:::i;:::-;6119:2;6115;6111:11;6098:25;6091:5;6084:40;6147:2;6206;6202;6198:11;6185:25;6180:2;6173:5;6169:14;6162:49;6235:2;6273:32;6300:3;6296:2;6292:12;6273:32;:::i;:::-;6268:2;6261:5;6257:14;6250:56;6330:3;6319:14;;6370:32;6397:3;6393:2;6389:12;6370:32;:::i;:::-;6353:15;;;6346:57;6445:11;;;6432:25;;6473:16;;;6470:109;;;6531:1;6561:3;6556;6549:16;6470:109;6616:54;6662:7;6657:2;6646:8;6642:2;6638:17;6634:26;6616:54;:::i;:::-;6599:15;;;6592:79;6684:18;;-1:-1:-1;;6722:12:1;;;;5616;;5583:1161;;;-1:-1:-1;6763:5:1;4793:1981;-1:-1:-1;;;;;;;;4793:1981:1:o;6961:328::-;7038:6;7046;7054;7107:2;7095:9;7086:7;7082:23;7078:32;7075:52;;;7123:1;7120;7113:12;7075:52;7146:29;7165:9;7146:29;:::i;:::-;7136:39;;7194:38;7228:2;7217:9;7213:18;7194:38;:::i;:::-;7184:48;;7279:2;7268:9;7264:18;7251:32;7241:42;;6961:328;;;;;:::o;7294:248::-;7362:6;7370;7423:2;7411:9;7402:7;7398:23;7394:32;7391:52;;;7439:1;7436;7429:12;7391:52;-1:-1:-1;;7462:23:1;;;7532:2;7517:18;;;7504:32;;-1:-1:-1;7294:248:1:o;7826:2362::-;7935:6;7966:2;8009;7997:9;7988:7;7984:23;7980:32;7977:52;;;8025:1;8022;8015:12;7977:52;8052:23;;-1:-1:-1;;;;;8124:14:1;;;8121:34;;;8151:1;8148;8141:12;8121:34;8189:6;8178:9;8174:22;8164:32;;8234:7;8227:4;8223:2;8219:13;8215:27;8205:55;;8256:1;8253;8246:12;8205:55;8292:2;8279:16;8315:76;8331:59;8387:2;8331:59;:::i;8315:76::-;8425:15;;;8507:1;8503:10;;;;8495:19;;8491:28;;;8456:12;;;;8531:19;;;8528:39;;;8563:1;8560;8553:12;8528:39;8595:2;8591;8587:11;8607:1551;8623:6;8618:3;8615:15;8607:1551;;;8709:3;8696:17;8745:2;8732:11;8729:19;8726:39;;;8761:1;8758;8751:12;8726:39;8788:20;;8860:4;8832:16;;;-1:-1:-1;;8828:30:1;8824:41;8821:131;;;8906:1;8935:2;8931;8924:14;8821:131;8978:22;;:::i;:::-;9050:2;9046;9042:11;9029:25;9083:2;9073:8;9070:16;9067:106;;;9127:1;9156:2;9152;9145:14;9067:106;9200:54;9246:7;9241:2;9230:8;9226:2;9222:17;9218:26;9200:54;:::i;:::-;9193:5;9186:69;;9278:2;9330;9326;9322:11;9309:25;9363:2;9353:8;9350:16;9347:106;;;9407:1;9436:2;9432;9425:14;9347:106;9489:54;9535:7;9530:2;9519:8;9515:2;9511:17;9507:26;9489:54;:::i;:::-;9484:2;9477:5;9473:14;9466:78;;9568:2;9620:3;9616:2;9612:12;9599:26;9654:2;9644:8;9641:16;9638:109;;;9699:1;9729:3;9724;9717:16;9638:109;9783:54;9829:7;9824:2;9813:8;9809:2;9805:17;9801:26;9783:54;:::i;:::-;9778:2;9771:5;9767:14;9760:78;;9862:3;9851:14;;9923:3;9919:2;9915:12;9902:26;9896:3;9889:5;9885:15;9878:51;;9953:3;10014;10010:2;10006:12;9993:26;9987:3;9980:5;9976:15;9969:51;10078:4;10074:2;10070:13;10057:27;10051:3;10044:5;10040:15;10033:52;;;10110:5;10105:3;10098:18;;;10145:2;10140:3;10136:12;10129:19;;8649:2;8644:3;8640:12;8633:19;;8607:1551;;10193:763;10522:3;10511:9;10504:22;10485:4;10549:46;10590:3;10579:9;10575:19;10567:6;10549:46;:::i;:::-;10643:9;10635:6;10631:22;10626:2;10615:9;10611:18;10604:50;10677:33;10703:6;10695;10677:33;:::i;:::-;10663:47;;10758:9;10750:6;10746:22;10741:2;10730:9;10726:18;10719:50;10786:33;10812:6;10804;10786:33;:::i;:::-;10850:2;10835:18;;10828:34;;;;-1:-1:-1;;10893:3:1;10878:19;;10871:35;;;;10937:3;10922:19;;;10915:35;10778:41;10193:763;-1:-1:-1;;;10193:763:1:o;10961:291::-;11138:6;11127:9;11120:25;11181:2;11176;11165:9;11161:18;11154:30;11101:4;11201:45;11242:2;11231:9;11227:18;11219:6;11201:45;:::i;11257:322::-;11326:6;11379:2;11367:9;11358:7;11354:23;11350:32;11347:52;;;11395:1;11392;11385:12;11347:52;11422:23;;-1:-1:-1;;;;;11457:30:1;;11454:50;;;11500:1;11497;11490:12;11454:50;11523;11565:7;11556:6;11545:9;11541:22;11523:50;:::i;11584:1880::-;11706:6;11737:2;11780;11768:9;11759:7;11755:23;11751:32;11748:52;;;11796:1;11793;11786:12;11748:52;11823:23;;-1:-1:-1;;;;;11858:30:1;;11855:50;;;11901:1;11898;11891:12;11855:50;11924:22;;11977:4;11969:13;;11965:27;-1:-1:-1;11955:55:1;;12006:1;12003;11996:12;11955:55;12042:2;12029:16;12065:76;12081:59;12137:2;12081:59;:::i;12065:76::-;12175:15;;;12237:4;12276:11;;;12268:20;;12264:29;;;12206:12;;;;12163:3;12305:19;;;12302:39;;;12337:1;12334;12327:12;12302:39;12361:11;;;;12381:1053;12397:6;12392:3;12389:15;12381:1053;;;12477:2;12471:3;12462:7;12458:17;12454:26;12451:116;;;12521:1;12550:2;12546;12539:14;12451:116;12593:22;;:::i;:::-;12642:23;12661:3;12642:23;:::i;:::-;12635:5;12628:38;12702:32;12730:2;12725:3;12721:12;12702:32;:::i;:::-;12686:14;;;12679:56;12758:2;12809:12;;;12796:26;12780:14;;;12773:50;12846:2;12897:12;;;12884:26;12868:14;;;12861:50;12934:3;12986:12;;;12973:26;12957:14;;;12950:50;13023:3;13075:12;;;13062:26;13046:14;;;13039:50;13113:3;13157:13;;;13144:27;13219:4;13206:18;;13194:31;;13184:132;;13268:1;13298:3;13293;13286:16;13184:132;13336:15;;;13329:32;13374:18;;12414:12;;;;13412;;;;12381:1053;;;-1:-1:-1;13453:5:1;11584:1880;-1:-1:-1;;;;;;;11584:1880:1:o;13469:347::-;13534:6;13542;13595:2;13583:9;13574:7;13570:23;13566:32;13563:52;;;13611:1;13608;13601:12;13563:52;13634:29;13653:9;13634:29;:::i;:::-;13624:39;;13713:2;13702:9;13698:18;13685:32;13760:5;13753:13;13746:21;13739:5;13736:32;13726:60;;13782:1;13779;13772:12;13726:60;13805:5;13795:15;;;13469:347;;;;;:::o;13821:667::-;13916:6;13924;13932;13940;13993:3;13981:9;13972:7;13968:23;13964:33;13961:53;;;14010:1;14007;14000:12;13961:53;14033:29;14052:9;14033:29;:::i;:::-;14023:39;;14081:38;14115:2;14104:9;14100:18;14081:38;:::i;:::-;14071:48;-1:-1:-1;14166:2:1;14151:18;;14138:32;;-1:-1:-1;14221:2:1;14206:18;;14193:32;-1:-1:-1;;;;;14237:30:1;;14234:50;;;14280:1;14277;14270:12;14234:50;14303:22;;14356:4;14348:13;;14344:27;-1:-1:-1;14334:55:1;;14385:1;14382;14375:12;14334:55;14408:74;14474:7;14469:2;14456:16;14451:2;14447;14443:11;14408:74;:::i;:::-;14398:84;;;13821:667;;;;;;;:::o;14493:260::-;14561:6;14569;14622:2;14610:9;14601:7;14597:23;14593:32;14590:52;;;14638:1;14635;14628:12;14590:52;14661:29;14680:9;14661:29;:::i;:::-;14651:39;;14709:38;14743:2;14732:9;14728:18;14709:38;:::i;14758:907::-;14842:6;14873:2;14916;14904:9;14895:7;14891:23;14887:32;14884:52;;;14932:1;14929;14922:12;14884:52;14959:23;;-1:-1:-1;;;;;14994:30:1;;14991:50;;;15037:1;15034;15027:12;14991:50;15060:22;;15113:4;15105:13;;15101:27;-1:-1:-1;15091:55:1;;15142:1;15139;15132:12;15091:55;15178:2;15165:16;15201:76;15217:59;15273:2;15217:59;:::i;15201:76::-;15311:15;;;15393:1;15389:10;;;;15381:19;;15377:28;;;15342:12;;;;15417:19;;;15414:39;;;15449:1;15446;15439:12;15414:39;15473:11;;;;15493:142;15509:6;15504:3;15501:15;15493:142;;;15575:17;;15563:30;;15526:12;;;;15613;;;;15493:142;;;15654:5;14758:907;-1:-1:-1;;;;;;;14758:907:1:o;15670:380::-;15749:1;15745:12;;;;15792;;;15813:61;;15867:4;15859:6;15855:17;15845:27;;15813:61;15920:2;15912:6;15909:14;15889:18;15886:38;15883:161;;15966:10;15961:3;15957:20;15954:1;15947:31;16001:4;15998:1;15991:15;16029:4;16026:1;16019:15;15883:161;;15670:380;;;:::o;17245:289::-;17376:3;17414:6;17408:13;17430:66;17489:6;17484:3;17477:4;17469:6;17465:17;17430:66;:::i;:::-;17512:16;;;;;17245:289;-1:-1:-1;;17245:289:1:o;17539:346::-;17741:2;17723:21;;;17780:2;17760:18;;;17753:30;-1:-1:-1;;;17814:2:1;17799:18;;17792:52;17876:2;17861:18;;17539:346::o;18016:722::-;18066:3;18107:5;18101:12;18136:36;18162:9;18136:36;:::i;:::-;18191:1;18208:18;;;18235:133;;;;18382:1;18377:355;;;;18201:531;;18235:133;-1:-1:-1;;18268:24:1;;18256:37;;18341:14;;18334:22;18322:35;;18313:45;;;-1:-1:-1;18235:133:1;;18377:355;18408:5;18405:1;18398:16;18437:4;18482:2;18479:1;18469:16;18507:1;18521:165;18535:6;18532:1;18529:13;18521:165;;;18613:14;;18600:11;;;18593:35;18656:16;;;;18550:10;;18521:165;;;18525:3;;;18715:6;18710:3;18706:16;18699:23;;18201:531;;;;;18016:722;;;;:::o;18743:197::-;18871:3;18896:38;18930:3;18922:6;18896:38;:::i;18945:545::-;19047:2;19042:3;19039:11;19036:448;;;19083:1;19108:5;19104:2;19097:17;19153:4;19149:2;19139:19;19223:2;19211:10;19207:19;19204:1;19200:27;19194:4;19190:38;19259:4;19247:10;19244:20;19241:47;;;-1:-1:-1;19282:4:1;19241:47;19337:2;19332:3;19328:12;19325:1;19321:20;19315:4;19311:31;19301:41;;19392:82;19410:2;19403:5;19400:13;19392:82;;;19455:17;;;19436:1;19425:13;19392:82;;;19396:3;;;18945:545;;;:::o;19666:1352::-;19786:10;;-1:-1:-1;;;;;19808:30:1;;19805:56;;;19841:18;;:::i;:::-;19870:97;19960:6;19920:38;19952:4;19946:11;19920:38;:::i;:::-;19914:4;19870:97;:::i;:::-;20022:4;;20086:2;20075:14;;20103:1;20098:663;;;;20805:1;20822:6;20819:89;;;-1:-1:-1;20874:19:1;;;20868:26;20819:89;-1:-1:-1;;19623:1:1;19619:11;;;19615:24;19611:29;19601:40;19647:1;19643:11;;;19598:57;20921:81;;20068:944;;20098:663;17963:1;17956:14;;;18000:4;17987:18;;-1:-1:-1;;20134:20:1;;;20252:236;20266:7;20263:1;20260:14;20252:236;;;20355:19;;;20349:26;20334:42;;20447:27;;;;20415:1;20403:14;;;;20282:19;;20252:236;;;20256:3;20516:6;20507:7;20504:19;20501:201;;;20577:19;;;20571:26;-1:-1:-1;;20660:1:1;20656:14;;;20672:3;20652:24;20648:37;20644:42;20629:58;20614:74;;20501:201;-1:-1:-1;;;;;20748:1:1;20732:14;;;20728:22;20715:36;;-1:-1:-1;19666:1352:1:o;21023:127::-;21084:10;21079:3;21075:20;21072:1;21065:31;21115:4;21112:1;21105:15;21139:4;21136:1;21129:15;21155:127;21216:10;21211:3;21207:20;21204:1;21197:31;21247:4;21244:1;21237:15;21271:4;21268:1;21261:15;21287:135;21326:3;21347:17;;;21344:43;;21367:18;;:::i;:::-;-1:-1:-1;21414:1:1;21403:13;;21287:135::o;21427:410::-;21629:2;21611:21;;;21668:2;21648:18;;;21641:30;21707:34;21702:2;21687:18;;21680:62;-1:-1:-1;;;21773:2:1;21758:18;;21751:44;21827:3;21812:19;;21427:410::o;22260:168::-;22333:9;;;22364;;22381:15;;;22375:22;;22361:37;22351:71;;22402:18;;:::i;22433:217::-;22473:1;22499;22489:132;;22543:10;22538:3;22534:20;22531:1;22524:31;22578:4;22575:1;22568:15;22606:4;22603:1;22596:15;22489:132;-1:-1:-1;22635:9:1;;22433:217::o;23839:348::-;24041:2;24023:21;;;24080:2;24060:18;;;24053:30;-1:-1:-1;;;24114:2:1;24099:18;;24092:54;24178:2;24163:18;;23839:348::o;25423:369::-;25599:3;25637:6;25631:13;25653:66;25712:6;25707:3;25700:4;25692:6;25688:17;25653:66;:::i;:::-;25735:51;25778:6;25773:3;25769:16;25761:6;25735:51;:::i;:::-;25728:58;25423:369;-1:-1:-1;;;;;25423:369:1:o;26618:400::-;26820:2;26802:21;;;26859:2;26839:18;;;26832:30;26898:34;26893:2;26878:18;;26871:62;-1:-1:-1;;;26964:2:1;26949:18;;26942:34;27008:3;26993:19;;26618:400::o;27796:125::-;27861:9;;;27882:10;;;27879:36;;;27895:18;;:::i;29527:128::-;29594:9;;;29615:11;;;29612:37;;;29629:18;;:::i;34022:414::-;34224:2;34206:21;;;34263:2;34243:18;;;34236:30;34302:34;34297:2;34282:18;;34275:62;-1:-1:-1;;;34368:2:1;34353:18;;34346:48;34426:3;34411:19;;34022:414::o;35403:127::-;35464:10;35459:3;35455:20;35452:1;35445:31;35495:4;35492:1;35485:15;35519:4;35516:1;35509:15;35535:489;-1:-1:-1;;;;;35804:15:1;;;35786:34;;35856:15;;35851:2;35836:18;;35829:43;35903:2;35888:18;;35881:34;;;35951:3;35946:2;35931:18;;35924:31;;;35729:4;;35972:46;;35998:19;;35990:6;35972:46;:::i;:::-;35964:54;35535:489;-1:-1:-1;;;;;;35535:489:1:o;36029:249::-;36098:6;36151:2;36139:9;36130:7;36126:23;36122:32;36119:52;;;36167:1;36164;36157:12;36119:52;36199:9;36193:16;36218:30;36242:5;36218:30;:::i;37790:127::-;37851:10;37846:3;37842:20;37839:1;37832:31;37882:4;37879:1;37872:15;37906:4;37903:1;37896:15

Swarm Source

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