ETH Price: $3,301.39 (-3.22%)
Gas: 19 Gwei

Token

Mecha Monkeys (MECHA)
 

Overview

Max Total Supply

10,000 MECHA

Holders

7,548

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
MechaMonkeysCollection

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-14
*/

// SPDX-License-Identifier: MIT
// Developed by: https://twitter.com/dev_mecha
// Primary Twitter: https://twitter.com/mecha_monkeys
// Website: https://mechamonkeys.io/
pragma solidity 0.8.15;

// File: openzeppelin-contracts/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
/**
 * @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/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );
    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );
    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
/**
 * @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/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: openzeppelin-contracts/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
/**
 * @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
            functionCallWithValue(
                target,
                data,
                0,
                "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"
        );
        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return
            verifyCallResultFromTarget(
                target,
                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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return
            verifyCallResultFromTarget(
                target,
                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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage)
        private
        pure
    {
        // 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/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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/contracts/utils/Strings.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
/**
 * @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/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: openzeppelin-contracts/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    // Token name
    string private _name;
    // Token symbol
    string private _symbol;
    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;
    // Mapping owner address to token count
    mapping(address => uint256) private _balances;
    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;
    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: 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/contracts/token/ERC721/extensions/IERC721Enumerable.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

// File: openzeppelin-contracts/contracts/token/ERC721/extensions/ERC721Enumerable.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;
    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;
    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

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

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

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

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

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

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

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

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).
        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];
        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];
        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: openzeppelin-contracts/contracts/interfaces/IERC2981.sol
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)
/**
 * @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);
}

contract MechaMonkeysCollection is ERC721Enumerable, IERC2981 {
    // Owner of the contract with the ability to advance the `ReleasePhase`.
    // NOTE: When the owner advances the `ReleasePhase` to `ReleasePhase.COMPLETED`,
    //        the owner will not have any further ability to modify the release phase.
    address public contractOwner;
    // Address to send the trade commission payouts.
    // NOTE: A contract can be referenced to split transactions, or do further logic.
    address payable public transactionPayoutAddress;
    // Address of the artist. This address with automatically be assigned a special token
    //  specifically for the artist.
    address public artistAddress;
    // Iterate from 1 to 9999 (inclusive) tokens.
    uint256 public nextAvailableToken = 1;
    uint256 public constant TOKEN_FIRST = 1;
    uint256 public constant TOKEN_LAST = 9999;
    // Artist's special symbolic token (not part of official collection).
    uint256 public constant ARTIST_SPECIAL_TOKEN = 10000;
    // Fee denominator to determine the fraction of a transaction to use for payout.
    uint256 public constant TRANSACTION_FEE_DENOMINATOR = 18; // 1/18 ~= 0.0555 ~= 5.55%
    // The three phases during the release. Each phase changes what `_baseURI` returns, but each
    //  phase's URI is defined at construction of the contract. The `contractOwner` can trigger an advance
    //  to the next release phase but not the URI itself.
    //  NOTE: When `ReleasePhase.COMPLETED` is reached, `contractOwner` will no longer have any ability to
    //         modify the release phase.
    enum ReleasePhase {
        WAITING,
        MYSTERY,
        PARTIAL,
        COMPLETED
    }
    ReleasePhase public currentReleasePhase;
    string public releasePhaseURI_waiting;
    string public releasePhaseURI_mystery;
    string public releasePhaseURI_partial;
    string public releasePhaseURI_completed;

    constructor(
        address payable transactionPayoutAddress_,
        address artistAddress_,
        string memory releasePhaseURI_waiting_,
        string memory releasePhaseURI_mystery_,
        string memory releasePhaseURI_partial_,
        string memory releasePhaseURI_completed_
    ) ERC721("Mecha Monkeys", "MECHA") {
        contractOwner = _msgSender();
        transactionPayoutAddress = transactionPayoutAddress_;
        artistAddress = artistAddress_;
        // Start in release phase `ReleasePhase.WAITING`
        currentReleasePhase = ReleasePhase.WAITING;
        releasePhaseURI_waiting = releasePhaseURI_waiting_;
        releasePhaseURI_mystery = releasePhaseURI_mystery_;
        releasePhaseURI_partial = releasePhaseURI_partial_;
        releasePhaseURI_completed = releasePhaseURI_completed_;
        // Mint artist's special symbolic token (not part of official collection).
        _mint(artistAddress, ARTIST_SPECIAL_TOKEN);
    }

    /**
     * NOTE: Do NOT send Ether to this contract! It will be considered a donation.
     *       Do NOT send Tokens to this contract! They will be lost forever!
     *       This contract does not utilize received Ether by design.
     */
    receive() external payable {}

    /**
     * @dev Allow withdraw by the owner or artist.
     * NOTE: This contract should not hold any Ether except for donations.
     */
    function withdraw() public {
        // Only `contractOwner` and `artistAddress` can trigger a withdrawal.
        require(_msgSender() == contractOwner || _msgSender() == artistAddress);
        // Withdraw all Ether.
        transactionPayoutAddress.transfer(address(this).balance);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     * NOTE: ERC721 already accounted for in call to base.
     */
    function supportsInterface(bytes4 interfaceId_)
        public
        view
        virtual
        override(ERC721Enumerable, IERC165)
        returns (bool)
    {
        return
            interfaceId_ == type(IERC721Enumerable).interfaceId ||
            interfaceId_ == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId_);
    }

    /**
     * @dev Public function for any address to mint only one new token.
     * NOTE: Token IDs do NOT represent rarity; each ID's token attributes will be randomized.
     */
    function mint() public {
        // Each address can only mint one token each.
        require(
            balanceOf(_msgSender()) == 0,
            "MM: Each address can only mint one token each."
        );
        // Total minting is limited from Ids of `TOKEN_FIRST` to a max of `TOKEN_LAST`.
        require(
            nextAvailableToken <= TOKEN_LAST,
            "MM: All tokens have been minted."
        );
        // Mint the next available token to the sender.
        _safeMint(_msgSender(), nextAvailableToken);
        // Advance token iterator
        nextAvailableToken += 1;
    }

    /**
     * @dev Returns the amount of tokens left to be minted.
     */
    function getAmountLeftToMint() public view returns (uint256) {
        if (nextAvailableToken > TOKEN_LAST) {
            return 0;
        } else {
            return (TOKEN_LAST + 1) - nextAvailableToken;
        }
    }

    /**
     * @dev Advance `currentReleasePhase` to the next pre-defined ReleasePhase.
     *       Only callable by the owner and when `ReleasePhase.COMPLETED` is reached,
     *       no further modifications to the release are allowed.
     */
    function nextReleasePhase() public {
        // Only callable by `_owner`
        require(_msgSender() == contractOwner);
        // Can only be called if not in `ReleasePhase.COMPLETED`
        require(currentReleasePhase != ReleasePhase.COMPLETED);
        // WAITING -> MYSTERY
        if (currentReleasePhase == ReleasePhase.WAITING) {
            currentReleasePhase = ReleasePhase.MYSTERY;
        }
        // MYSTERY -> PARTIAL
        else if (currentReleasePhase == ReleasePhase.MYSTERY) {
            currentReleasePhase = ReleasePhase.PARTIAL;
        }
        // PARTIAL -> COMPLETED
        else if (currentReleasePhase == ReleasePhase.PARTIAL) {
            currentReleasePhase = ReleasePhase.COMPLETED;
        } else {
            assert(false); // This line should never be reached.
        }
    }

    /**
     * @dev Base URI for computing {tokenURI}. Can change based on `currentReleasePhase`/`currentBaseURI`,
     *       but only until `currentReleasePhase` reaches `COMPLETED`, which then the baseURI is finalized.
     */
    function _baseURI()
        internal
        view
        virtual
        override(ERC721)
        returns (string memory)
    {
        if (currentReleasePhase == ReleasePhase.WAITING) {
            return releasePhaseURI_waiting;
        } else if (currentReleasePhase == ReleasePhase.MYSTERY) {
            return releasePhaseURI_mystery;
        } else if (currentReleasePhase == ReleasePhase.PARTIAL) {
            return releasePhaseURI_partial;
        }
        // else if (currentReleasePhase == ReleasePhase.COMPLETED)
        return releasePhaseURI_completed;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        return string.concat(super.tokenURI(tokenId), ".json");
    }

    /**
     * @dev Interject before transfer to disallow burning of tokens, only allow
     *       minting of tokens after `ReleasePhase.WAITING`, and allow special permission
     *       for artist to mint a special token meant just for the artist (not part of official collection).
     */
    function _beforeTokenTransfer(
        address from_,
        address to_,
        uint256 tokenId_
    ) internal virtual override(ERC721Enumerable) {
        super._beforeTokenTransfer(from_, to_, tokenId_);
        // Disallow burning
        require(to_ != address(0), "MM: Token cannot be burned.");
        // Only the artist can mint the artist's special token upon contract creation.
        if (
            _msgSender() == contractOwner &&
            tokenId_ == ARTIST_SPECIAL_TOKEN &&
            currentReleasePhase == ReleasePhase.WAITING
        ) {
            return; //OK
        }
        // Can only transfer tokens after minting has started.
        require(
            currentReleasePhase != ReleasePhase.WAITING,
            "MM: Transfers and minting cannot occur yet."
        );
    }

    /**
     * @dev Disallow token burning.
     * NOTE: This function is never called, but disable just in case, and to be verbose.
     */
    function _burn(uint256 tokenId_) internal virtual override {
        require(false, "MM: Token cannot be burned.");
    }

    /**
     * @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.
     * NOTE: All `tokenId`s have the same royalty ratio.
     */
    function royaltyInfo(uint256 tokenId_, uint256 salePrice_)
        external
        view
        override(IERC2981)
        returns (address, uint256)
    {
        address receiver = transactionPayoutAddress;
        uint256 royaltyAmount = salePrice_ / TRANSACTION_FEE_DENOMINATOR;
        return (receiver, royaltyAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"transactionPayoutAddress_","type":"address"},{"internalType":"address","name":"artistAddress_","type":"address"},{"internalType":"string","name":"releasePhaseURI_waiting_","type":"string"},{"internalType":"string","name":"releasePhaseURI_mystery_","type":"string"},{"internalType":"string","name":"releasePhaseURI_partial_","type":"string"},{"internalType":"string","name":"releasePhaseURI_completed_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"ARTIST_SPECIAL_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_FIRST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_LAST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANSACTION_FEE_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artistAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentReleasePhase","outputs":[{"internalType":"enum MechaMonkeysCollection.ReleasePhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAmountLeftToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextAvailableToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextReleasePhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releasePhaseURI_completed","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releasePhaseURI_mystery","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releasePhaseURI_partial","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releasePhaseURI_waiting","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"uint256","name":"salePrice_","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId_","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transactionPayoutAddress","outputs":[{"internalType":"address payable","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001600d553480156200001657600080fd5b50604051620057e6380380620057e683398181016040528101906200003c919062000e0b565b6040518060400160405280600d81526020017f4d65636861204d6f6e6b657973000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d454348410000000000000000000000000000000000000000000000000000008152508160009081620000b991906200116e565b508060019081620000cb91906200116e565b505050620000de6200025860201b60201c565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600e60006101000a81548160ff02191690836003811115620001c957620001c862001255565b5b021790555083600f9081620001df91906200116e565b508260109081620001f191906200116e565b5081601190816200020391906200116e565b5080601290816200021591906200116e565b506200024c600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166127106200026060201b60201c565b50505050505062001640565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c990620012e5565b60405180910390fd5b620002e3816200045960201b60201c565b1562000326576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031d9062001357565b60405180910390fd5b6200033a60008383620004c560201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200038c9190620013a8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462000455600083836200068d60201b60201c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620004dd8383836200069260201b6200170b1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200054f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005469062001455565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16620005986200025860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16148015620005bd575061271081145b801562000603575060006003811115620005dc57620005db62001255565b5b600e60009054906101000a900460ff16600381111562000601576200060062001255565b5b145b6200068857600060038111156200061f576200061e62001255565b5b600e60009054906101000a900460ff16600381111562000644576200064362001255565b5b0362000687576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200067e90620014ed565b60405180910390fd5b5b505050565b505050565b620006aa838383620007d760201b6200181d1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620006f657620006f081620007dc60201b60201c565b6200073e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200073d576200073c83826200082560201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200078a576200078481620009a260201b60201c565b620007d2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620007d157620007d0828262000a7e60201b60201c565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016200083f8462000b0a60201b620012581760201c565b6200084b91906200150f565b905060006007600084815260200190815260200160002054905081811462000931576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050620009b891906200150f565b9050600060096000848152602001908152602001600020549050600060088381548110620009eb57620009ea6200154a565b5b90600052602060002001549050806008838154811062000a105762000a0f6200154a565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000a625762000a6162001579565b5b6001900381819060005260206000200160009055905550505050565b600062000a968362000b0a60201b620012581760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b74906200161e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c058262000bd8565b9050919050565b62000c178162000bf8565b811462000c2357600080fd5b50565b60008151905062000c378162000c0c565b92915050565b600062000c4a8262000bd8565b9050919050565b62000c5c8162000c3d565b811462000c6857600080fd5b50565b60008151905062000c7c8162000c51565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000cd78262000c8c565b810181811067ffffffffffffffff8211171562000cf95762000cf862000c9d565b5b80604052505050565b600062000d0e62000bc4565b905062000d1c828262000ccc565b919050565b600067ffffffffffffffff82111562000d3f5762000d3e62000c9d565b5b62000d4a8262000c8c565b9050602081019050919050565b60005b8381101562000d7757808201518184015260208101905062000d5a565b8381111562000d87576000848401525b50505050565b600062000da462000d9e8462000d21565b62000d02565b90508281526020810184848401111562000dc35762000dc262000c87565b5b62000dd084828562000d57565b509392505050565b600082601f83011262000df05762000def62000c82565b5b815162000e0284826020860162000d8d565b91505092915050565b60008060008060008060c0878903121562000e2b5762000e2a62000bce565b5b600062000e3b89828a0162000c26565b965050602062000e4e89828a0162000c6b565b955050604087015167ffffffffffffffff81111562000e725762000e7162000bd3565b5b62000e8089828a0162000dd8565b945050606087015167ffffffffffffffff81111562000ea45762000ea362000bd3565b5b62000eb289828a0162000dd8565b935050608087015167ffffffffffffffff81111562000ed65762000ed562000bd3565b5b62000ee489828a0162000dd8565b92505060a087015167ffffffffffffffff81111562000f085762000f0762000bd3565b5b62000f1689828a0162000dd8565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f7657607f821691505b60208210810362000f8c5762000f8b62000f2e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ff67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000fb7565b62001002868362000fb7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200104f6200104962001043846200101a565b62001024565b6200101a565b9050919050565b6000819050919050565b6200106b836200102e565b620010836200107a8262001056565b84845462000fc4565b825550505050565b600090565b6200109a6200108b565b620010a781848462001060565b505050565b5b81811015620010cf57620010c360008262001090565b600181019050620010ad565b5050565b601f8211156200111e57620010e88162000f92565b620010f38462000fa7565b8101602085101562001103578190505b6200111b620011128562000fa7565b830182620010ac565b50505b505050565b600082821c905092915050565b6000620011436000198460080262001123565b1980831691505092915050565b60006200115e838362001130565b9150826002028217905092915050565b620011798262000f23565b67ffffffffffffffff81111562001195576200119462000c9d565b5b620011a1825462000f5d565b620011ae828285620010d3565b600060209050601f831160018114620011e65760008415620011d1578287015190505b620011dd858262001150565b8655506200124d565b601f198416620011f68662000f92565b60005b828110156200122057848901518255600182019150602085019450602081019050620011f9565b868310156200124057848901516200123c601f89168262001130565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600082825260208201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000620012cd60208362001284565b9150620012da8262001295565b602082019050919050565b600060208201905081810360008301526200130081620012be565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006200133f601c8362001284565b91506200134c8262001307565b602082019050919050565b60006020820190508181036000830152620013728162001330565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620013b5826200101a565b9150620013c2836200101a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620013fa57620013f962001379565b5b828201905092915050565b7f4d4d3a20546f6b656e2063616e6e6f74206265206275726e65642e0000000000600082015250565b60006200143d601b8362001284565b91506200144a8262001405565b602082019050919050565b6000602082019050818103600083015262001470816200142e565b9050919050565b7f4d4d3a205472616e736665727320616e64206d696e74696e672063616e6e6f7460008201527f206f63637572207965742e000000000000000000000000000000000000000000602082015250565b6000620014d5602b8362001284565b9150620014e28262001477565b604082019050919050565b600060208201905081810360008301526200150881620014c6565b9050919050565b60006200151c826200101a565b915062001529836200101a565b9250828210156200153f576200153e62001379565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006200160660298362001284565b91506200161382620015a8565b604082019050919050565b600060208201905081810360008301526200163981620015f7565b9050919050565b61419680620016506000396000f3fe6080604052600436106101fd5760003560e01c80635f91d43f1161010d578063b88d4fde116100a0578063d7eb3f3a1161006f578063d7eb3f3a14610733578063dbf775801461075e578063e985e9c514610789578063f11ccd1e146107c6578063f20aed06146107f157610204565b8063b88d4fde14610677578063b9f77ad7146106a0578063c87b56dd146106cb578063ce606ee01461070857610204565b806395d89b41116100dc57806395d89b41146105cd57806397ad5abd146105f8578063a22cb46514610623578063a8d7da221461064c57610204565b80635f91d43f146104fd5780636352211e1461052857806370a082311461056557806387ce394b146105a257610204565b80632a55205a1161019057806342842e0e1161015f57806342842e0e1461042a5780634f6ccce7146104535780635b45dda6146104905780635e3b3ec5146104bb5780635e71076a146104d257610204565b80632a55205a1461036d5780632f745c59146103ab5780633ccfd60b146103e85780633cf9d68c146103ff57610204565b8063095ea7b3116101cc578063095ea7b3146102d95780631249c58b1461030257806318160ddd1461031957806323b872dd1461034457610204565b806301ffc9a7146102095780630436e0441461024657806306fdde0314610271578063081812fc1461029c57610204565b3661020457005b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612df6565b61081c565b60405161023d9190612e3e565b60405180910390f35b34801561025257600080fd5b5061025b6108fe565b6040516102689190612ef2565b60405180910390f35b34801561027d57600080fd5b5061028661098c565b6040516102939190612ef2565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190612f4a565b610a1e565b6040516102d09190612fb8565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612fff565b610a64565b005b34801561030e57600080fd5b50610317610b7b565b005b34801561032557600080fd5b5061032e610c43565b60405161033b919061304e565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613069565b610c50565b005b34801561037957600080fd5b50610394600480360381019061038f91906130bc565b610cb0565b6040516103a29291906130fc565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190612fff565b610cfa565b6040516103df919061304e565b60405180910390f35b3480156103f457600080fd5b506103fd610d9f565b005b34801561040b57600080fd5b50610414610eca565b604051610421919061304e565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190613069565b610f03565b005b34801561045f57600080fd5b5061047a60048036038101906104759190612f4a565b610f23565b604051610487919061304e565b60405180910390f35b34801561049c57600080fd5b506104a5610f94565b6040516104b2919061319c565b60405180910390f35b3480156104c757600080fd5b506104d0610fa7565b005b3480156104de57600080fd5b506104e761119c565b6040516104f4919061304e565b60405180910390f35b34801561050957600080fd5b506105126111a2565b60405161051f919061304e565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190612f4a565b6111a7565b60405161055c9190612fb8565b60405180910390f35b34801561057157600080fd5b5061058c600480360381019061058791906131b7565b611258565b604051610599919061304e565b60405180910390f35b3480156105ae57600080fd5b506105b761130f565b6040516105c49190612ef2565b60405180910390f35b3480156105d957600080fd5b506105e261139d565b6040516105ef9190612ef2565b60405180910390f35b34801561060457600080fd5b5061060d61142f565b60405161061a919061304e565b60405180910390f35b34801561062f57600080fd5b5061064a60048036038101906106459190613210565b611435565b005b34801561065857600080fd5b5061066161144b565b60405161066e9190613271565b60405180910390f35b34801561068357600080fd5b5061069e600480360381019061069991906133c1565b611471565b005b3480156106ac57600080fd5b506106b56114d3565b6040516106c2919061304e565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612f4a565b6114d8565b6040516106ff9190612ef2565b60405180910390f35b34801561071457600080fd5b5061071d611509565b60405161072a9190612fb8565b60405180910390f35b34801561073f57600080fd5b5061074861152f565b6040516107559190612fb8565b60405180910390f35b34801561076a57600080fd5b50610773611555565b6040516107809190612ef2565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190613444565b6115e3565b6040516107bd9190612e3e565b60405180910390f35b3480156107d257600080fd5b506107db611677565b6040516107e89190612ef2565b60405180910390f35b3480156107fd57600080fd5b50610806611705565b604051610813919061304e565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e757507f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f757506108f682611822565b5b9050919050565b6012805461090b906134b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610937906134b3565b80156109845780601f1061095957610100808354040283529160200191610984565b820191906000526020600020905b81548152906001019060200180831161096757829003601f168201915b505050505081565b60606000805461099b906134b3565b80601f01602080910402602001604051908101604052809291908181526020018280546109c7906134b3565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b5050505050905090565b6000610a298261189c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6f826111a7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690613556565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610afe6118e7565b73ffffffffffffffffffffffffffffffffffffffff161480610b2d5750610b2c81610b276118e7565b6115e3565b5b610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b63906135e8565b60405180910390fd5b610b7683836118ef565b505050565b6000610b8d610b886118e7565b611258565b14610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc49061367a565b60405180910390fd5b61270f600d541115610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b906136e6565b60405180910390fd5b610c27610c1f6118e7565b600d546119a8565b6001600d6000828254610c3a9190613735565b92505081905550565b6000600880549050905090565b610c61610c5b6118e7565b826119c6565b610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c97906137fd565b60405180910390fd5b610cab838383611a5b565b505050565b6000806000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000601285610ce9919061384c565b905081819350935050509250929050565b6000610d0583611258565b8210610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d906138ef565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610de06118e7565b73ffffffffffffffffffffffffffffffffffffffff161480610e565750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610e3e6118e7565b73ffffffffffffffffffffffffffffffffffffffff16145b610e5f57600080fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ec7573d6000803e3d6000fd5b50565b600061270f600d541115610ee15760009050610f00565b600d54600161270f610ef39190613735565b610efd919061390f565b90505b90565b610f1e83838360405180602001604052806000815250611471565b505050565b6000610f2d610c43565b8210610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f65906139b5565b60405180910390fd5b60088281548110610f8257610f816139d5565b5b90600052602060002001549050919050565b600e60009054906101000a900460ff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610fe86118e7565b73ffffffffffffffffffffffffffffffffffffffff161461100857600080fd5b60038081111561101b5761101a613125565b5b600e60009054906101000a900460ff16600381111561103d5761103c613125565b5b0361104757600080fd5b6000600381111561105b5761105a613125565b5b600e60009054906101000a900460ff16600381111561107d5761107c613125565b5b036110b2576001600e60006101000a81548160ff021916908360038111156110a8576110a7613125565b5b021790555061119a565b600160038111156110c6576110c5613125565b5b600e60009054906101000a900460ff1660038111156110e8576110e7613125565b5b0361111d576002600e60006101000a81548160ff0219169083600381111561111357611112613125565b5b0217905550611199565b6002600381111561113157611130613125565b5b600e60009054906101000a900460ff16600381111561115357611152613125565b5b03611188576003600e60006101000a81548160ff0219169083600381111561117e5761117d613125565b5b0217905550611198565b600061119757611196613a04565b5b5b5b5b565b61271081565b601281565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361124f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124690613a7f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf90613b11565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600f805461131c906134b3565b80601f0160208091040260200160405190810160405280929190818152602001828054611348906134b3565b80156113955780601f1061136a57610100808354040283529160200191611395565b820191906000526020600020905b81548152906001019060200180831161137857829003601f168201915b505050505081565b6060600180546113ac906134b3565b80601f01602080910402602001604051908101604052809291908181526020018280546113d8906134b3565b80156114255780601f106113fa57610100808354040283529160200191611425565b820191906000526020600020905b81548152906001019060200180831161140857829003601f168201915b5050505050905090565b61270f81565b6114476114406118e7565b8383611cc1565b5050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61148261147c6118e7565b836119c6565b6114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b8906137fd565b60405180910390fd5b6114cd84848484611e2d565b50505050565b600181565b60606114e382611e89565b6040516020016114f39190613b93565b6040516020818303038152906040529050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60108054611562906134b3565b80601f016020809104026020016040519081016040528092919081815260200182805461158e906134b3565b80156115db5780601f106115b0576101008083540402835291602001916115db565b820191906000526020600020905b8154815290600101906020018083116115be57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60118054611684906134b3565b80601f01602080910402602001604051908101604052809291908181526020018280546116b0906134b3565b80156116fd5780601f106116d2576101008083540402835291602001916116fd565b820191906000526020600020905b8154815290600101906020018083116116e057829003601f168201915b505050505081565b600d5481565b61171683838361181d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117585761175381611ef1565b611797565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611796576117958382611f3a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d9576117d4816120a7565b611818565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611817576118168282612178565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118955750611894826121f7565b5b9050919050565b6118a5816122d9565b6118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db90613a7f565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611962836111a7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6119c2828260405180602001604052806000815250612345565b5050565b6000806119d2836111a7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a145750611a1381856115e3565b5b80611a5257508373ffffffffffffffffffffffffffffffffffffffff16611a3a84610a1e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a7b826111a7565b73ffffffffffffffffffffffffffffffffffffffff1614611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890613c2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790613cbd565b60405180910390fd5b611b4b8383836123a0565b611b566000826118ef565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba6919061390f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bfd9190613735565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cbc83838361253e565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2690613d29565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e209190612e3e565b60405180910390a3505050565b611e38848484611a5b565b611e4484848484612543565b611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a90613dbb565b60405180910390fd5b50505050565b6060611e948261189c565b6000611e9e6126ca565b90506000815111611ebe5760405180602001604052806000815250611ee9565b80611ec8846129c4565b604051602001611ed9929190613ddb565b6040516020818303038152906040525b915050919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611f4784611258565b611f51919061390f565b9050600060076000848152602001908152602001600020549050818114612036576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506120bb919061390f565b90506000600960008481526020019081526020016000205490506000600883815481106120eb576120ea6139d5565b5b90600052602060002001549050806008838154811061210d5761210c6139d5565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061215c5761215b613dff565b5b6001900381819060005260206000200160009055905550505050565b600061218383611258565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122c257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122d257506122d182612b24565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b61234f8383612b8e565b61235c6000848484612543565b61239b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239290613dbb565b60405180910390fd5b505050565b6123ab83838361170b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361241a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241190613e7a565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661245b6118e7565b73ffffffffffffffffffffffffffffffffffffffff1614801561247f575061271081145b80156124be57506000600381111561249a57612499613125565b5b600e60009054906101000a900460ff1660038111156124bc576124bb613125565b5b145b61253957600060038111156124d6576124d5613125565b5b600e60009054906101000a900460ff1660038111156124f8576124f7613125565b5b03612538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252f90613f0c565b60405180910390fd5b5b505050565b505050565b60006125648473ffffffffffffffffffffffffffffffffffffffff16612d67565b156126bd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261258d6118e7565b8786866040518563ffffffff1660e01b81526004016125af9493929190613f81565b6020604051808303816000875af19250505080156125eb57506040513d601f19601f820116820180604052508101906125e89190613fe2565b60015b61266d573d806000811461261b576040519150601f19603f3d011682016040523d82523d6000602084013e612620565b606091505b506000815103612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c90613dbb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126c2565b600190505b949350505050565b6060600060038111156126e0576126df613125565b5b600e60009054906101000a900460ff16600381111561270257612701613125565b5b0361279957600f8054612714906134b3565b80601f0160208091040260200160405190810160405280929190818152602001828054612740906134b3565b801561278d5780601f106127625761010080835404028352916020019161278d565b820191906000526020600020905b81548152906001019060200180831161277057829003601f168201915b505050505090506129c1565b600160038111156127ad576127ac613125565b5b600e60009054906101000a900460ff1660038111156127cf576127ce613125565b5b0361286657601080546127e1906134b3565b80601f016020809104026020016040519081016040528092919081815260200182805461280d906134b3565b801561285a5780601f1061282f5761010080835404028352916020019161285a565b820191906000526020600020905b81548152906001019060200180831161283d57829003601f168201915b505050505090506129c1565b6002600381111561287a57612879613125565b5b600e60009054906101000a900460ff16600381111561289c5761289b613125565b5b0361293357601180546128ae906134b3565b80601f01602080910402602001604051908101604052809291908181526020018280546128da906134b3565b80156129275780601f106128fc57610100808354040283529160200191612927565b820191906000526020600020905b81548152906001019060200180831161290a57829003601f168201915b505050505090506129c1565b60128054612940906134b3565b80601f016020809104026020016040519081016040528092919081815260200182805461296c906134b3565b80156129b95780601f1061298e576101008083540402835291602001916129b9565b820191906000526020600020905b81548152906001019060200180831161299c57829003601f168201915b505050505090505b90565b606060008203612a0b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b1f565b600082905060005b60008214612a3d578080612a269061400f565b915050600a82612a36919061384c565b9150612a13565b60008167ffffffffffffffff811115612a5957612a58613296565b5b6040519080825280601f01601f191660200182016040528015612a8b5781602001600182028036833780820191505090505b5090505b60008514612b1857600182612aa4919061390f565b9150600a85612ab39190614057565b6030612abf9190613735565b60f81b818381518110612ad557612ad46139d5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b11919061384c565b9450612a8f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf4906140d4565b60405180910390fd5b612c06816122d9565b15612c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3d90614140565b60405180910390fd5b612c52600083836123a0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ca29190613735565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d636000838361253e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612dd381612d9e565b8114612dde57600080fd5b50565b600081359050612df081612dca565b92915050565b600060208284031215612e0c57612e0b612d94565b5b6000612e1a84828501612de1565b91505092915050565b60008115159050919050565b612e3881612e23565b82525050565b6000602082019050612e536000830184612e2f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e93578082015181840152602081019050612e78565b83811115612ea2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ec482612e59565b612ece8185612e64565b9350612ede818560208601612e75565b612ee781612ea8565b840191505092915050565b60006020820190508181036000830152612f0c8184612eb9565b905092915050565b6000819050919050565b612f2781612f14565b8114612f3257600080fd5b50565b600081359050612f4481612f1e565b92915050565b600060208284031215612f6057612f5f612d94565b5b6000612f6e84828501612f35565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fa282612f77565b9050919050565b612fb281612f97565b82525050565b6000602082019050612fcd6000830184612fa9565b92915050565b612fdc81612f97565b8114612fe757600080fd5b50565b600081359050612ff981612fd3565b92915050565b6000806040838503121561301657613015612d94565b5b600061302485828601612fea565b925050602061303585828601612f35565b9150509250929050565b61304881612f14565b82525050565b6000602082019050613063600083018461303f565b92915050565b60008060006060848603121561308257613081612d94565b5b600061309086828701612fea565b93505060206130a186828701612fea565b92505060406130b286828701612f35565b9150509250925092565b600080604083850312156130d3576130d2612d94565b5b60006130e185828601612f35565b92505060206130f285828601612f35565b9150509250929050565b60006040820190506131116000830185612fa9565b61311e602083018461303f565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061316557613164613125565b5b50565b600081905061317682613154565b919050565b600061318682613168565b9050919050565b6131968161317b565b82525050565b60006020820190506131b1600083018461318d565b92915050565b6000602082840312156131cd576131cc612d94565b5b60006131db84828501612fea565b91505092915050565b6131ed81612e23565b81146131f857600080fd5b50565b60008135905061320a816131e4565b92915050565b6000806040838503121561322757613226612d94565b5b600061323585828601612fea565b9250506020613246858286016131fb565b9150509250929050565b600061325b82612f77565b9050919050565b61326b81613250565b82525050565b60006020820190506132866000830184613262565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132ce82612ea8565b810181811067ffffffffffffffff821117156132ed576132ec613296565b5b80604052505050565b6000613300612d8a565b905061330c82826132c5565b919050565b600067ffffffffffffffff82111561332c5761332b613296565b5b61333582612ea8565b9050602081019050919050565b82818337600083830152505050565b600061336461335f84613311565b6132f6565b9050828152602081018484840111156133805761337f613291565b5b61338b848285613342565b509392505050565b600082601f8301126133a8576133a761328c565b5b81356133b8848260208601613351565b91505092915050565b600080600080608085870312156133db576133da612d94565b5b60006133e987828801612fea565b94505060206133fa87828801612fea565b935050604061340b87828801612f35565b925050606085013567ffffffffffffffff81111561342c5761342b612d99565b5b61343887828801613393565b91505092959194509250565b6000806040838503121561345b5761345a612d94565b5b600061346985828601612fea565b925050602061347a85828601612fea565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134cb57607f821691505b6020821081036134de576134dd613484565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613540602183612e64565b915061354b826134e4565b604082019050919050565b6000602082019050818103600083015261356f81613533565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006135d2603e83612e64565b91506135dd82613576565b604082019050919050565b60006020820190508181036000830152613601816135c5565b9050919050565b7f4d4d3a204561636820616464726573732063616e206f6e6c79206d696e74206f60008201527f6e6520746f6b656e20656163682e000000000000000000000000000000000000602082015250565b6000613664602e83612e64565b915061366f82613608565b604082019050919050565b6000602082019050818103600083015261369381613657565b9050919050565b7f4d4d3a20416c6c20746f6b656e732068617665206265656e206d696e7465642e600082015250565b60006136d0602083612e64565b91506136db8261369a565b602082019050919050565b600060208201905081810360008301526136ff816136c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061374082612f14565b915061374b83612f14565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137805761377f613706565b5b828201905092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006137e7602e83612e64565b91506137f28261378b565b604082019050919050565b60006020820190508181036000830152613816816137da565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061385782612f14565b915061386283612f14565b9250826138725761387161381d565b5b828204905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006138d9602b83612e64565b91506138e48261387d565b604082019050919050565b60006020820190508181036000830152613908816138cc565b9050919050565b600061391a82612f14565b915061392583612f14565b92508282101561393857613937613706565b5b828203905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061399f602c83612e64565b91506139aa82613943565b604082019050919050565b600060208201905081810360008301526139ce81613992565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613a69601883612e64565b9150613a7482613a33565b602082019050919050565b60006020820190508181036000830152613a9881613a5c565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613afb602983612e64565b9150613b0682613a9f565b604082019050919050565b60006020820190508181036000830152613b2a81613aee565b9050919050565b600081905092915050565b6000613b4782612e59565b613b518185613b31565b9350613b61818560208601612e75565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b6000613b9f8284613b3c565b9150613baa82613b6d565b60058201915081905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613c15602583612e64565b9150613c2082613bb9565b604082019050919050565b60006020820190508181036000830152613c4481613c08565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ca7602483612e64565b9150613cb282613c4b565b604082019050919050565b60006020820190508181036000830152613cd681613c9a565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d13601983612e64565b9150613d1e82613cdd565b602082019050919050565b60006020820190508181036000830152613d4281613d06565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613da5603283612e64565b9150613db082613d49565b604082019050919050565b60006020820190508181036000830152613dd481613d98565b9050919050565b6000613de78285613b3c565b9150613df38284613b3c565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4d4d3a20546f6b656e2063616e6e6f74206265206275726e65642e0000000000600082015250565b6000613e64601b83612e64565b9150613e6f82613e2e565b602082019050919050565b60006020820190508181036000830152613e9381613e57565b9050919050565b7f4d4d3a205472616e736665727320616e64206d696e74696e672063616e6e6f7460008201527f206f63637572207965742e000000000000000000000000000000000000000000602082015250565b6000613ef6602b83612e64565b9150613f0182613e9a565b604082019050919050565b60006020820190508181036000830152613f2581613ee9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613f5382613f2c565b613f5d8185613f37565b9350613f6d818560208601612e75565b613f7681612ea8565b840191505092915050565b6000608082019050613f966000830187612fa9565b613fa36020830186612fa9565b613fb0604083018561303f565b8181036060830152613fc28184613f48565b905095945050505050565b600081519050613fdc81612dca565b92915050565b600060208284031215613ff857613ff7612d94565b5b600061400684828501613fcd565b91505092915050565b600061401a82612f14565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361404c5761404b613706565b5b600182019050919050565b600061406282612f14565b915061406d83612f14565b92508261407d5761407c61381d565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006140be602083612e64565b91506140c982614088565b602082019050919050565b600060208201905081810360008301526140ed816140b1565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061412a601c83612e64565b9150614135826140f4565b602082019050919050565b600060208201905081810360008301526141598161411d565b905091905056fea2646970667358221220211e10b2bcee7062696b04048cf551f32fa1ce574b9abe6bc7d3bf0502bd01c164736f6c634300080f0033000000000000000000000000a57fc87f0688c1be11d7375f4547176a371b7f76000000000000000000000000a14608e76bcb4760c5b7c799760886d875fa662800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57504c616f587056566362566933384776776546656b616f717a36634e586a7656757856386a48366674734d2f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57504c616f587056566362566933384776776546656b616f717a36634e586a7656757856386a48366674734d2f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d663344314d77386937666738337a66485342634d4559414a5a366b567262486d51756a786f6d344a545659622f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6639734334635759556f36383462324d4d5657756f486855645944575674395353676337794646787832414e2f00000000000000000000

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c80635f91d43f1161010d578063b88d4fde116100a0578063d7eb3f3a1161006f578063d7eb3f3a14610733578063dbf775801461075e578063e985e9c514610789578063f11ccd1e146107c6578063f20aed06146107f157610204565b8063b88d4fde14610677578063b9f77ad7146106a0578063c87b56dd146106cb578063ce606ee01461070857610204565b806395d89b41116100dc57806395d89b41146105cd57806397ad5abd146105f8578063a22cb46514610623578063a8d7da221461064c57610204565b80635f91d43f146104fd5780636352211e1461052857806370a082311461056557806387ce394b146105a257610204565b80632a55205a1161019057806342842e0e1161015f57806342842e0e1461042a5780634f6ccce7146104535780635b45dda6146104905780635e3b3ec5146104bb5780635e71076a146104d257610204565b80632a55205a1461036d5780632f745c59146103ab5780633ccfd60b146103e85780633cf9d68c146103ff57610204565b8063095ea7b3116101cc578063095ea7b3146102d95780631249c58b1461030257806318160ddd1461031957806323b872dd1461034457610204565b806301ffc9a7146102095780630436e0441461024657806306fdde0314610271578063081812fc1461029c57610204565b3661020457005b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612df6565b61081c565b60405161023d9190612e3e565b60405180910390f35b34801561025257600080fd5b5061025b6108fe565b6040516102689190612ef2565b60405180910390f35b34801561027d57600080fd5b5061028661098c565b6040516102939190612ef2565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190612f4a565b610a1e565b6040516102d09190612fb8565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612fff565b610a64565b005b34801561030e57600080fd5b50610317610b7b565b005b34801561032557600080fd5b5061032e610c43565b60405161033b919061304e565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613069565b610c50565b005b34801561037957600080fd5b50610394600480360381019061038f91906130bc565b610cb0565b6040516103a29291906130fc565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190612fff565b610cfa565b6040516103df919061304e565b60405180910390f35b3480156103f457600080fd5b506103fd610d9f565b005b34801561040b57600080fd5b50610414610eca565b604051610421919061304e565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190613069565b610f03565b005b34801561045f57600080fd5b5061047a60048036038101906104759190612f4a565b610f23565b604051610487919061304e565b60405180910390f35b34801561049c57600080fd5b506104a5610f94565b6040516104b2919061319c565b60405180910390f35b3480156104c757600080fd5b506104d0610fa7565b005b3480156104de57600080fd5b506104e761119c565b6040516104f4919061304e565b60405180910390f35b34801561050957600080fd5b506105126111a2565b60405161051f919061304e565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190612f4a565b6111a7565b60405161055c9190612fb8565b60405180910390f35b34801561057157600080fd5b5061058c600480360381019061058791906131b7565b611258565b604051610599919061304e565b60405180910390f35b3480156105ae57600080fd5b506105b761130f565b6040516105c49190612ef2565b60405180910390f35b3480156105d957600080fd5b506105e261139d565b6040516105ef9190612ef2565b60405180910390f35b34801561060457600080fd5b5061060d61142f565b60405161061a919061304e565b60405180910390f35b34801561062f57600080fd5b5061064a60048036038101906106459190613210565b611435565b005b34801561065857600080fd5b5061066161144b565b60405161066e9190613271565b60405180910390f35b34801561068357600080fd5b5061069e600480360381019061069991906133c1565b611471565b005b3480156106ac57600080fd5b506106b56114d3565b6040516106c2919061304e565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612f4a565b6114d8565b6040516106ff9190612ef2565b60405180910390f35b34801561071457600080fd5b5061071d611509565b60405161072a9190612fb8565b60405180910390f35b34801561073f57600080fd5b5061074861152f565b6040516107559190612fb8565b60405180910390f35b34801561076a57600080fd5b50610773611555565b6040516107809190612ef2565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190613444565b6115e3565b6040516107bd9190612e3e565b60405180910390f35b3480156107d257600080fd5b506107db611677565b6040516107e89190612ef2565b60405180910390f35b3480156107fd57600080fd5b50610806611705565b604051610813919061304e565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e757507f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f757506108f682611822565b5b9050919050565b6012805461090b906134b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610937906134b3565b80156109845780601f1061095957610100808354040283529160200191610984565b820191906000526020600020905b81548152906001019060200180831161096757829003601f168201915b505050505081565b60606000805461099b906134b3565b80601f01602080910402602001604051908101604052809291908181526020018280546109c7906134b3565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b5050505050905090565b6000610a298261189c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6f826111a7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690613556565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610afe6118e7565b73ffffffffffffffffffffffffffffffffffffffff161480610b2d5750610b2c81610b276118e7565b6115e3565b5b610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b63906135e8565b60405180910390fd5b610b7683836118ef565b505050565b6000610b8d610b886118e7565b611258565b14610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc49061367a565b60405180910390fd5b61270f600d541115610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b906136e6565b60405180910390fd5b610c27610c1f6118e7565b600d546119a8565b6001600d6000828254610c3a9190613735565b92505081905550565b6000600880549050905090565b610c61610c5b6118e7565b826119c6565b610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c97906137fd565b60405180910390fd5b610cab838383611a5b565b505050565b6000806000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000601285610ce9919061384c565b905081819350935050509250929050565b6000610d0583611258565b8210610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d906138ef565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610de06118e7565b73ffffffffffffffffffffffffffffffffffffffff161480610e565750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610e3e6118e7565b73ffffffffffffffffffffffffffffffffffffffff16145b610e5f57600080fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ec7573d6000803e3d6000fd5b50565b600061270f600d541115610ee15760009050610f00565b600d54600161270f610ef39190613735565b610efd919061390f565b90505b90565b610f1e83838360405180602001604052806000815250611471565b505050565b6000610f2d610c43565b8210610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f65906139b5565b60405180910390fd5b60088281548110610f8257610f816139d5565b5b90600052602060002001549050919050565b600e60009054906101000a900460ff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610fe86118e7565b73ffffffffffffffffffffffffffffffffffffffff161461100857600080fd5b60038081111561101b5761101a613125565b5b600e60009054906101000a900460ff16600381111561103d5761103c613125565b5b0361104757600080fd5b6000600381111561105b5761105a613125565b5b600e60009054906101000a900460ff16600381111561107d5761107c613125565b5b036110b2576001600e60006101000a81548160ff021916908360038111156110a8576110a7613125565b5b021790555061119a565b600160038111156110c6576110c5613125565b5b600e60009054906101000a900460ff1660038111156110e8576110e7613125565b5b0361111d576002600e60006101000a81548160ff0219169083600381111561111357611112613125565b5b0217905550611199565b6002600381111561113157611130613125565b5b600e60009054906101000a900460ff16600381111561115357611152613125565b5b03611188576003600e60006101000a81548160ff0219169083600381111561117e5761117d613125565b5b0217905550611198565b600061119757611196613a04565b5b5b5b5b565b61271081565b601281565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361124f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124690613a7f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf90613b11565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600f805461131c906134b3565b80601f0160208091040260200160405190810160405280929190818152602001828054611348906134b3565b80156113955780601f1061136a57610100808354040283529160200191611395565b820191906000526020600020905b81548152906001019060200180831161137857829003601f168201915b505050505081565b6060600180546113ac906134b3565b80601f01602080910402602001604051908101604052809291908181526020018280546113d8906134b3565b80156114255780601f106113fa57610100808354040283529160200191611425565b820191906000526020600020905b81548152906001019060200180831161140857829003601f168201915b5050505050905090565b61270f81565b6114476114406118e7565b8383611cc1565b5050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61148261147c6118e7565b836119c6565b6114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b8906137fd565b60405180910390fd5b6114cd84848484611e2d565b50505050565b600181565b60606114e382611e89565b6040516020016114f39190613b93565b6040516020818303038152906040529050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60108054611562906134b3565b80601f016020809104026020016040519081016040528092919081815260200182805461158e906134b3565b80156115db5780601f106115b0576101008083540402835291602001916115db565b820191906000526020600020905b8154815290600101906020018083116115be57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60118054611684906134b3565b80601f01602080910402602001604051908101604052809291908181526020018280546116b0906134b3565b80156116fd5780601f106116d2576101008083540402835291602001916116fd565b820191906000526020600020905b8154815290600101906020018083116116e057829003601f168201915b505050505081565b600d5481565b61171683838361181d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117585761175381611ef1565b611797565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611796576117958382611f3a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d9576117d4816120a7565b611818565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611817576118168282612178565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118955750611894826121f7565b5b9050919050565b6118a5816122d9565b6118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db90613a7f565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611962836111a7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6119c2828260405180602001604052806000815250612345565b5050565b6000806119d2836111a7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a145750611a1381856115e3565b5b80611a5257508373ffffffffffffffffffffffffffffffffffffffff16611a3a84610a1e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a7b826111a7565b73ffffffffffffffffffffffffffffffffffffffff1614611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890613c2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790613cbd565b60405180910390fd5b611b4b8383836123a0565b611b566000826118ef565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba6919061390f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bfd9190613735565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cbc83838361253e565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2690613d29565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e209190612e3e565b60405180910390a3505050565b611e38848484611a5b565b611e4484848484612543565b611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a90613dbb565b60405180910390fd5b50505050565b6060611e948261189c565b6000611e9e6126ca565b90506000815111611ebe5760405180602001604052806000815250611ee9565b80611ec8846129c4565b604051602001611ed9929190613ddb565b6040516020818303038152906040525b915050919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611f4784611258565b611f51919061390f565b9050600060076000848152602001908152602001600020549050818114612036576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506120bb919061390f565b90506000600960008481526020019081526020016000205490506000600883815481106120eb576120ea6139d5565b5b90600052602060002001549050806008838154811061210d5761210c6139d5565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061215c5761215b613dff565b5b6001900381819060005260206000200160009055905550505050565b600061218383611258565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122c257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122d257506122d182612b24565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b61234f8383612b8e565b61235c6000848484612543565b61239b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239290613dbb565b60405180910390fd5b505050565b6123ab83838361170b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361241a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241190613e7a565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661245b6118e7565b73ffffffffffffffffffffffffffffffffffffffff1614801561247f575061271081145b80156124be57506000600381111561249a57612499613125565b5b600e60009054906101000a900460ff1660038111156124bc576124bb613125565b5b145b61253957600060038111156124d6576124d5613125565b5b600e60009054906101000a900460ff1660038111156124f8576124f7613125565b5b03612538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252f90613f0c565b60405180910390fd5b5b505050565b505050565b60006125648473ffffffffffffffffffffffffffffffffffffffff16612d67565b156126bd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261258d6118e7565b8786866040518563ffffffff1660e01b81526004016125af9493929190613f81565b6020604051808303816000875af19250505080156125eb57506040513d601f19601f820116820180604052508101906125e89190613fe2565b60015b61266d573d806000811461261b576040519150601f19603f3d011682016040523d82523d6000602084013e612620565b606091505b506000815103612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c90613dbb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126c2565b600190505b949350505050565b6060600060038111156126e0576126df613125565b5b600e60009054906101000a900460ff16600381111561270257612701613125565b5b0361279957600f8054612714906134b3565b80601f0160208091040260200160405190810160405280929190818152602001828054612740906134b3565b801561278d5780601f106127625761010080835404028352916020019161278d565b820191906000526020600020905b81548152906001019060200180831161277057829003601f168201915b505050505090506129c1565b600160038111156127ad576127ac613125565b5b600e60009054906101000a900460ff1660038111156127cf576127ce613125565b5b0361286657601080546127e1906134b3565b80601f016020809104026020016040519081016040528092919081815260200182805461280d906134b3565b801561285a5780601f1061282f5761010080835404028352916020019161285a565b820191906000526020600020905b81548152906001019060200180831161283d57829003601f168201915b505050505090506129c1565b6002600381111561287a57612879613125565b5b600e60009054906101000a900460ff16600381111561289c5761289b613125565b5b0361293357601180546128ae906134b3565b80601f01602080910402602001604051908101604052809291908181526020018280546128da906134b3565b80156129275780601f106128fc57610100808354040283529160200191612927565b820191906000526020600020905b81548152906001019060200180831161290a57829003601f168201915b505050505090506129c1565b60128054612940906134b3565b80601f016020809104026020016040519081016040528092919081815260200182805461296c906134b3565b80156129b95780601f1061298e576101008083540402835291602001916129b9565b820191906000526020600020905b81548152906001019060200180831161299c57829003601f168201915b505050505090505b90565b606060008203612a0b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b1f565b600082905060005b60008214612a3d578080612a269061400f565b915050600a82612a36919061384c565b9150612a13565b60008167ffffffffffffffff811115612a5957612a58613296565b5b6040519080825280601f01601f191660200182016040528015612a8b5781602001600182028036833780820191505090505b5090505b60008514612b1857600182612aa4919061390f565b9150600a85612ab39190614057565b6030612abf9190613735565b60f81b818381518110612ad557612ad46139d5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b11919061384c565b9450612a8f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf4906140d4565b60405180910390fd5b612c06816122d9565b15612c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3d90614140565b60405180910390fd5b612c52600083836123a0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ca29190613735565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d636000838361253e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612dd381612d9e565b8114612dde57600080fd5b50565b600081359050612df081612dca565b92915050565b600060208284031215612e0c57612e0b612d94565b5b6000612e1a84828501612de1565b91505092915050565b60008115159050919050565b612e3881612e23565b82525050565b6000602082019050612e536000830184612e2f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e93578082015181840152602081019050612e78565b83811115612ea2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ec482612e59565b612ece8185612e64565b9350612ede818560208601612e75565b612ee781612ea8565b840191505092915050565b60006020820190508181036000830152612f0c8184612eb9565b905092915050565b6000819050919050565b612f2781612f14565b8114612f3257600080fd5b50565b600081359050612f4481612f1e565b92915050565b600060208284031215612f6057612f5f612d94565b5b6000612f6e84828501612f35565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fa282612f77565b9050919050565b612fb281612f97565b82525050565b6000602082019050612fcd6000830184612fa9565b92915050565b612fdc81612f97565b8114612fe757600080fd5b50565b600081359050612ff981612fd3565b92915050565b6000806040838503121561301657613015612d94565b5b600061302485828601612fea565b925050602061303585828601612f35565b9150509250929050565b61304881612f14565b82525050565b6000602082019050613063600083018461303f565b92915050565b60008060006060848603121561308257613081612d94565b5b600061309086828701612fea565b93505060206130a186828701612fea565b92505060406130b286828701612f35565b9150509250925092565b600080604083850312156130d3576130d2612d94565b5b60006130e185828601612f35565b92505060206130f285828601612f35565b9150509250929050565b60006040820190506131116000830185612fa9565b61311e602083018461303f565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061316557613164613125565b5b50565b600081905061317682613154565b919050565b600061318682613168565b9050919050565b6131968161317b565b82525050565b60006020820190506131b1600083018461318d565b92915050565b6000602082840312156131cd576131cc612d94565b5b60006131db84828501612fea565b91505092915050565b6131ed81612e23565b81146131f857600080fd5b50565b60008135905061320a816131e4565b92915050565b6000806040838503121561322757613226612d94565b5b600061323585828601612fea565b9250506020613246858286016131fb565b9150509250929050565b600061325b82612f77565b9050919050565b61326b81613250565b82525050565b60006020820190506132866000830184613262565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132ce82612ea8565b810181811067ffffffffffffffff821117156132ed576132ec613296565b5b80604052505050565b6000613300612d8a565b905061330c82826132c5565b919050565b600067ffffffffffffffff82111561332c5761332b613296565b5b61333582612ea8565b9050602081019050919050565b82818337600083830152505050565b600061336461335f84613311565b6132f6565b9050828152602081018484840111156133805761337f613291565b5b61338b848285613342565b509392505050565b600082601f8301126133a8576133a761328c565b5b81356133b8848260208601613351565b91505092915050565b600080600080608085870312156133db576133da612d94565b5b60006133e987828801612fea565b94505060206133fa87828801612fea565b935050604061340b87828801612f35565b925050606085013567ffffffffffffffff81111561342c5761342b612d99565b5b61343887828801613393565b91505092959194509250565b6000806040838503121561345b5761345a612d94565b5b600061346985828601612fea565b925050602061347a85828601612fea565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134cb57607f821691505b6020821081036134de576134dd613484565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613540602183612e64565b915061354b826134e4565b604082019050919050565b6000602082019050818103600083015261356f81613533565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006135d2603e83612e64565b91506135dd82613576565b604082019050919050565b60006020820190508181036000830152613601816135c5565b9050919050565b7f4d4d3a204561636820616464726573732063616e206f6e6c79206d696e74206f60008201527f6e6520746f6b656e20656163682e000000000000000000000000000000000000602082015250565b6000613664602e83612e64565b915061366f82613608565b604082019050919050565b6000602082019050818103600083015261369381613657565b9050919050565b7f4d4d3a20416c6c20746f6b656e732068617665206265656e206d696e7465642e600082015250565b60006136d0602083612e64565b91506136db8261369a565b602082019050919050565b600060208201905081810360008301526136ff816136c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061374082612f14565b915061374b83612f14565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137805761377f613706565b5b828201905092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006137e7602e83612e64565b91506137f28261378b565b604082019050919050565b60006020820190508181036000830152613816816137da565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061385782612f14565b915061386283612f14565b9250826138725761387161381d565b5b828204905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006138d9602b83612e64565b91506138e48261387d565b604082019050919050565b60006020820190508181036000830152613908816138cc565b9050919050565b600061391a82612f14565b915061392583612f14565b92508282101561393857613937613706565b5b828203905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061399f602c83612e64565b91506139aa82613943565b604082019050919050565b600060208201905081810360008301526139ce81613992565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613a69601883612e64565b9150613a7482613a33565b602082019050919050565b60006020820190508181036000830152613a9881613a5c565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613afb602983612e64565b9150613b0682613a9f565b604082019050919050565b60006020820190508181036000830152613b2a81613aee565b9050919050565b600081905092915050565b6000613b4782612e59565b613b518185613b31565b9350613b61818560208601612e75565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b6000613b9f8284613b3c565b9150613baa82613b6d565b60058201915081905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613c15602583612e64565b9150613c2082613bb9565b604082019050919050565b60006020820190508181036000830152613c4481613c08565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ca7602483612e64565b9150613cb282613c4b565b604082019050919050565b60006020820190508181036000830152613cd681613c9a565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d13601983612e64565b9150613d1e82613cdd565b602082019050919050565b60006020820190508181036000830152613d4281613d06565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613da5603283612e64565b9150613db082613d49565b604082019050919050565b60006020820190508181036000830152613dd481613d98565b9050919050565b6000613de78285613b3c565b9150613df38284613b3c565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4d4d3a20546f6b656e2063616e6e6f74206265206275726e65642e0000000000600082015250565b6000613e64601b83612e64565b9150613e6f82613e2e565b602082019050919050565b60006020820190508181036000830152613e9381613e57565b9050919050565b7f4d4d3a205472616e736665727320616e64206d696e74696e672063616e6e6f7460008201527f206f63637572207965742e000000000000000000000000000000000000000000602082015250565b6000613ef6602b83612e64565b9150613f0182613e9a565b604082019050919050565b60006020820190508181036000830152613f2581613ee9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613f5382613f2c565b613f5d8185613f37565b9350613f6d818560208601612e75565b613f7681612ea8565b840191505092915050565b6000608082019050613f966000830187612fa9565b613fa36020830186612fa9565b613fb0604083018561303f565b8181036060830152613fc28184613f48565b905095945050505050565b600081519050613fdc81612dca565b92915050565b600060208284031215613ff857613ff7612d94565b5b600061400684828501613fcd565b91505092915050565b600061401a82612f14565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361404c5761404b613706565b5b600182019050919050565b600061406282612f14565b915061406d83612f14565b92508261407d5761407c61381d565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006140be602083612e64565b91506140c982614088565b602082019050919050565b600060208201905081810360008301526140ed816140b1565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061412a601c83612e64565b9150614135826140f4565b602082019050919050565b600060208201905081810360008301526141598161411d565b905091905056fea2646970667358221220211e10b2bcee7062696b04048cf551f32fa1ce574b9abe6bc7d3bf0502bd01c164736f6c634300080f0033

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

000000000000000000000000a57fc87f0688c1be11d7375f4547176a371b7f76000000000000000000000000a14608e76bcb4760c5b7c799760886d875fa662800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57504c616f587056566362566933384776776546656b616f717a36634e586a7656757856386a48366674734d2f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57504c616f587056566362566933384776776546656b616f717a36634e586a7656757856386a48366674734d2f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d663344314d77386937666738337a66485342634d4559414a5a366b567262486d51756a786f6d344a545659622f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6639734334635759556f36383462324d4d5657756f486855645944575674395353676337794646787832414e2f00000000000000000000

-----Decoded View---------------
Arg [0] : transactionPayoutAddress_ (address): 0xA57fC87f0688c1be11d7375f4547176a371b7f76
Arg [1] : artistAddress_ (address): 0xA14608E76BCb4760c5b7C799760886d875fa6628
Arg [2] : releasePhaseURI_waiting_ (string): ipfs://QmWPLaoXpVVcbVi38GvweFekaoqz6cNXjvVuxV8jH6ftsM/
Arg [3] : releasePhaseURI_mystery_ (string): ipfs://QmWPLaoXpVVcbVi38GvweFekaoqz6cNXjvVuxV8jH6ftsM/
Arg [4] : releasePhaseURI_partial_ (string): ipfs://Qmf3D1Mw8i7fg83zfHSBcMEYAJZ6kVrbHmQujxom4JTVYb/
Arg [5] : releasePhaseURI_completed_ (string): ipfs://Qmf9sC4cWYUo684b2MMVWuoHhUdYDWVt9SSgc7yFFxx2AN/

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 000000000000000000000000a57fc87f0688c1be11d7375f4547176a371b7f76
Arg [1] : 000000000000000000000000a14608e76bcb4760c5b7c799760886d875fa6628
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [7] : 697066733a2f2f516d57504c616f587056566362566933384776776546656b61
Arg [8] : 6f717a36634e586a7656757856386a48366674734d2f00000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d57504c616f587056566362566933384776776546656b61
Arg [11] : 6f717a36634e586a7656757856386a48366674734d2f00000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [13] : 697066733a2f2f516d663344314d77386937666738337a66485342634d455941
Arg [14] : 4a5a366b567262486d51756a786f6d344a545659622f00000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [16] : 697066733a2f2f516d6639734334635759556f36383462324d4d5657756f4868
Arg [17] : 55645944575674395353676337794646787832414e2f00000000000000000000


Deployed Bytecode Sourcemap

47247:9516:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51058:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49159:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25081:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26685:219;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26206:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51625:615;;;;;;;;;;;;;:::i;:::-;;40784:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27515:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56420:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;40365:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50631:295;;;;;;;;;;;;;:::i;:::-;;52327:228;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27957:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40974:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48981:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52816:836;;;;;;;;;;;;;:::i;:::-;;48226:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48371:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24742:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24386:294;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49027:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25250:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48103:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26976:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47744:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28213:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48057:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54495:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47568:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47927;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49071:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27234:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49115:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48013;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51058:372;51216:4;51274:35;51258:51;;;:12;:51;;;;:110;;;;51342:26;51326:42;;;:12;:42;;;;51258:110;:164;;;;51385:37;51409:12;51385:23;:37::i;:::-;51258:164;51238:184;;51058:372;;;:::o;49159:39::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25081:100::-;25135:13;25168:5;25161:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25081:100;:::o;26685:219::-;26806:7;26831:23;26846:7;26831:14;:23::i;:::-;26872:15;:24;26888:7;26872:24;;;;;;;;;;;;;;;;;;;;;26865:31;;26685:219;;;:::o;26206:413::-;26287:13;26303:23;26318:7;26303:14;:23::i;:::-;26287:39;;26351:5;26345:11;;:2;:11;;;26337:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26443:5;26427:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26452:37;26469:5;26476:12;:10;:12::i;:::-;26452:16;:37::i;:::-;26427:62;26405:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;26590:21;26599:2;26603:7;26590:8;:21::i;:::-;26276:343;26206:413;;:::o;51625:615::-;51763:1;51736:23;51746:12;:10;:12::i;:::-;51736:9;:23::i;:::-;:28;51714:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;48140:4;51960:18;;:32;;51938:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;52120:43;52130:12;:10;:12::i;:::-;52144:18;;52120:9;:43::i;:::-;52231:1;52209:18;;:23;;;;;;;:::i;:::-;;;;;;;;51625:615::o;40784:113::-;40845:7;40872:10;:17;;;;40865:24;;40784:113;:::o;27515:371::-;27724:41;27743:12;:10;:12::i;:::-;27757:7;27724:18;:41::i;:::-;27702:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;27850:28;27860:4;27866:2;27870:7;27850:9;:28::i;:::-;27515:371;;;:::o;56420:340::-;56557:7;56566;56591:16;56610:24;;;;;;;;;;;56591:43;;56645:21;48425:2;56669:10;:40;;;;:::i;:::-;56645:64;;56728:8;56738:13;56720:32;;;;;;56420:340;;;;;:::o;40365:343::-;40507:7;40562:23;40579:5;40562:16;:23::i;:::-;40554:5;:31;40532:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;40674:12;:19;40687:5;40674:19;;;;;;;;;;;;;;;:26;40694:5;40674:26;;;;;;;;;;;;40667:33;;40365:343;;;;:::o;50631:295::-;50772:13;;;;;;;;;;;50756:29;;:12;:10;:12::i;:::-;:29;;;:62;;;;50805:13;;;;;;;;;;;50789:29;;:12;:10;:12::i;:::-;:29;;;50756:62;50748:71;;;;;;50862:24;;;;;;;;;;;:33;;:56;50896:21;50862:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50631:295::o;52327:228::-;52379:7;48140:4;52403:18;;:31;52399:149;;;52458:1;52451:8;;;;52399:149;52518:18;;52513:1;48140:4;52500:14;;;;:::i;:::-;52499:37;;;;:::i;:::-;52492:44;;52327:228;;:::o;27957:185::-;28095:39;28112:4;28118:2;28122:7;28095:39;;;;;;;;;;;;:16;:39::i;:::-;27957:185;;;:::o;40974:320::-;41094:7;41149:30;:28;:30::i;:::-;41141:5;:38;41119:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;41269:10;41280:5;41269:17;;;;;;;;:::i;:::-;;;;;;;;;;41262:24;;40974:320;;;:::o;48981:39::-;;;;;;;;;;;;;:::o;52816:836::-;52924:13;;;;;;;;;;;52908:29;;:12;:10;:12::i;:::-;:29;;;52900:38;;;;;;53046:22;53023:45;;;;;;;;:::i;:::-;;:19;;;;;;;;;;;:45;;;;;;;;:::i;:::-;;;53015:54;;;;;;53138:20;53115:43;;;;;;;;:::i;:::-;;:19;;;;;;;;;;;:43;;;;;;;;:::i;:::-;;;53111:534;;53197:20;53175:19;;:42;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;53111:534;;;53302:20;53279:43;;;;;;;;:::i;:::-;;:19;;;;;;;;;;;:43;;;;;;;;:::i;:::-;;;53275:370;;53361:20;53339:19;;:42;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;53275:370;;;53468:20;53445:43;;;;;;;;:::i;:::-;;:19;;;;;;;;;;;:43;;;;;;;;:::i;:::-;;;53441:204;;53527:22;53505:19;;:44;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;53441:204;;;53589:5;53582:13;;;;:::i;:::-;;53441:204;53275:370;53111:534;52816:836::o;48226:52::-;48273:5;48226:52;:::o;48371:56::-;48425:2;48371:56;:::o;24742:272::-;24859:7;24884:13;24900:7;:16;24908:7;24900:16;;;;;;;;;;;;;;;;;;;;;24884:32;;24952:1;24935:19;;:5;:19;;;24927:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;25001:5;24994:12;;;24742:272;;;:::o;24386:294::-;24503:7;24567:1;24550:19;;:5;:19;;;24528:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;24656:9;:16;24666:5;24656:16;;;;;;;;;;;;;;;;24649:23;;24386:294;;;:::o;49027:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25250:104::-;25306:13;25339:7;25332:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25250:104;:::o;48103:41::-;48140:4;48103:41;:::o;26976:187::-;27103:52;27122:12;:10;:12::i;:::-;27136:8;27146;27103:18;:52::i;:::-;26976:187;;:::o;47744:47::-;;;;;;;;;;;;;:::o;28213:360::-;28401:41;28420:12;:10;:12::i;:::-;28434:7;28401:18;:41::i;:::-;28379:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;28527:38;28541:4;28547:2;28551:7;28560:4;28527:13;:38::i;:::-;28213:360;;;;:::o;48057:39::-;48095:1;48057:39;:::o;54495:202::-;54604:13;54656:23;54671:7;54656:14;:23::i;:::-;54642:47;;;;;;;;:::i;:::-;;;;;;;;;;;;;54635:54;;54495:202;;;:::o;47568:28::-;;;;;;;;;;;;;:::o;47927:::-;;;;;;;;;;;;;:::o;49071:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27234:214::-;27376:4;27405:18;:25;27424:5;27405:25;;;;;;;;;;;;;;;:35;27431:8;27405:35;;;;;;;;;;;;;;;;;;;;;;;;;27398:42;;27234:214;;;;:::o;49115:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48013:::-;;;;:::o;41907:587::-;42051:45;42078:4;42084:2;42088:7;42051:26;:45::i;:::-;42127:1;42111:18;;:4;:18;;;42107:187;;42146:40;42178:7;42146:31;:40::i;:::-;42107:187;;;42216:2;42208:10;;:4;:10;;;42204:90;;42235:47;42268:4;42274:7;42235:32;:47::i;:::-;42204:90;42107:187;42322:1;42308:16;;:2;:16;;;42304:183;;42341:45;42378:7;42341:36;:45::i;:::-;42304:183;;;42414:4;42408:10;;:2;:10;;;42404:83;;42435:40;42463:2;42467:7;42435:27;:40::i;:::-;42404:83;42304:183;41907:587;;;:::o;37280:126::-;;;;:::o;39981:300::-;40128:4;40185:35;40170:50;;;:11;:50;;;;:103;;;;40237:36;40261:11;40237:23;:36::i;:::-;40170:103;40150:123;;39981:300;;;:::o;34975:135::-;35057:16;35065:7;35057;:16::i;:::-;35049:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;34975:135;:::o;18840:98::-;18893:7;18920:10;18913:17;;18840:98;:::o;34254:174::-;34356:2;34329:15;:24;34345:7;34329:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34412:7;34408:2;34374:46;;34383:23;34398:7;34383:14;:23::i;:::-;34374:46;;;;;;;;;;;;34254:174;;:::o;31084:110::-;31160:26;31170:2;31174:7;31160:26;;;;;;;;;;;;:9;:26::i;:::-;31084:110;;:::o;30411:331::-;30540:4;30562:13;30578:23;30593:7;30578:14;:23::i;:::-;30562:39;;30631:5;30620:16;;:7;:16;;;:65;;;;30653:32;30670:5;30677:7;30653:16;:32::i;:::-;30620:65;:113;;;;30726:7;30702:31;;:20;30714:7;30702:11;:20::i;:::-;:31;;;30620:113;30612:122;;;30411:331;;;;:::o;33483:652::-;33656:4;33629:31;;:23;33644:7;33629:14;:23::i;:::-;:31;;;33607:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;33758:1;33744:16;;:2;:16;;;33736:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33812:39;33833:4;33839:2;33843:7;33812:20;:39::i;:::-;33914:29;33931:1;33935:7;33914:8;:29::i;:::-;33973:1;33954:9;:15;33964:4;33954:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34002:1;33985:9;:13;33995:2;33985:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34033:2;34014:7;:16;34022:7;34014:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34070:7;34066:2;34051:27;;34060:4;34051:27;;;;;;;;;;;;34089:38;34109:4;34115:2;34119:7;34089:19;:38::i;:::-;33483:652;;;:::o;34571:315::-;34726:8;34717:17;;:5;:17;;;34709:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;34813:8;34775:18;:25;34794:5;34775:25;;;;;;;;;;;;;;;:35;34801:8;34775:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34859:8;34837:41;;34852:5;34837:41;;;34869:8;34837:41;;;;;;:::i;:::-;;;;;;;;34571:315;;;:::o;29454:350::-;29610:28;29620:4;29626:2;29630:7;29610:9;:28::i;:::-;29671:47;29694:4;29700:2;29704:7;29713:4;29671:22;:47::i;:::-;29649:147;;;;;;;;;;;;:::i;:::-;;;;;;;;;29454:350;;;;:::o;25425:376::-;25543:13;25574:23;25589:7;25574:14;:23::i;:::-;25608:21;25632:10;:8;:10::i;:::-;25608:34;;25697:1;25679:7;25673:21;:25;:120;;;;;;;;;;;;;;;;;25742:7;25751:18;:7;:16;:18::i;:::-;25725:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25673:120;25653:140;;;25425:376;;;:::o;43217:164::-;43321:10;:17;;;;43294:15;:24;43310:7;43294:24;;;;;;;;;;;:44;;;;43349:10;43365:7;43349:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43217:164;:::o;44008:994::-;44286:22;44336:1;44311:22;44328:4;44311:16;:22::i;:::-;:26;;;;:::i;:::-;44286:51;;44348:18;44369:17;:26;44387:7;44369:26;;;;;;;;;;;;44348:47;;44514:14;44500:10;:28;44496:326;;44545:19;44567:12;:18;44580:4;44567:18;;;;;;;;;;;;;;;:34;44586:14;44567:34;;;;;;;;;;;;44545:56;;44649:11;44616:12;:18;44629:4;44616:18;;;;;;;;;;;;;;;:30;44635:10;44616:30;;;;;;;;;;;:44;;;;44766:10;44733:17;:30;44751:11;44733:30;;;;;;;;;;;:43;;;;44530:292;44496:326;44916:17;:26;44934:7;44916:26;;;;;;;;;;;44909:33;;;44960:12;:18;44973:4;44960:18;;;;;;;;;;;;;;;:34;44979:14;44960:34;;;;;;;;;;;44953:41;;;44103:899;;44008:994;;:::o;45297:1071::-;45548:22;45593:1;45573:10;:17;;;;:21;;;;:::i;:::-;45548:46;;45605:18;45626:15;:24;45642:7;45626:24;;;;;;;;;;;;45605:45;;45975:19;45997:10;46008:14;45997:26;;;;;;;;:::i;:::-;;;;;;;;;;45975:48;;46059:11;46034:10;46045;46034:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46170:10;46139:15;:28;46155:11;46139:28;;;;;;;;;;;:41;;;;46309:15;:24;46325:7;46309:24;;;;;;;;;;;46302:31;;;46344:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45368:1000;;;45297:1071;:::o;42795:221::-;42880:14;42897:20;42914:2;42897:16;:20::i;:::-;42880:37;;42955:7;42928:12;:16;42941:2;42928:16;;;;;;;;;;;;;;;:24;42945:6;42928:24;;;;;;;;;;;:34;;;;43002:6;42973:17;:26;42991:7;42973:26;;;;;;;;;;;:35;;;;42869:147;42795:221;;:::o;23967:355::-;24114:4;24171:25;24156:40;;;:11;:40;;;;:105;;;;24228:33;24213:48;;;:11;:48;;;;24156:105;:158;;;;24278:36;24302:11;24278:23;:36::i;:::-;24156:158;24136:178;;23967:355;;;:::o;30117:127::-;30182:4;30234:1;30206:30;;:7;:16;30214:7;30206:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30199:37;;30117:127;;;:::o;31421:319::-;31550:18;31556:2;31560:7;31550:5;:18::i;:::-;31601:53;31632:1;31636:2;31640:7;31649:4;31601:22;:53::i;:::-;31579:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;31421:319;;;:::o;55005:833::-;55170:48;55197:5;55204:3;55209:8;55170:26;:48::i;:::-;55281:1;55266:17;;:3;:17;;;55258:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;55448:13;;;;;;;;;;;55432:29;;:12;:10;:12::i;:::-;:29;;;:78;;;;;48273:5;55478:8;:32;55432:78;:138;;;;;55550:20;55527:43;;;;;;;;:::i;:::-;;:19;;;;;;;;;;;:43;;;;;;;;:::i;:::-;;;55432:138;55597:7;55414:206;55739:20;55716:43;;;;;;;;:::i;:::-;;:19;;;;;;;;;;;:43;;;;;;;;:::i;:::-;;;55694:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;55005:833;;;;:::o;37791:125::-;;;;:::o;35674:1034::-;35828:4;35849:15;:2;:13;;;:15::i;:::-;35845:856;;;35918:2;35902:36;;;35961:12;:10;:12::i;:::-;35996:4;36023:7;36053:4;35902:174;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35881:765;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36276:1;36259:6;:13;:18;36255:376;;36302:108;;;;;;;;;;:::i;:::-;;;;;;;;36255:376;36581:6;36575:13;36566:6;36562:2;36558:15;36551:38;35881:765;36150:41;;;36140:51;;;:6;:51;;;;36133:58;;;;;35845:856;36685:4;36678:11;;35674:1034;;;;;;;:::o;53895:592::-;54008:13;54066:20;54043:43;;;;;;;;:::i;:::-;;:19;;;;;;;;;;;:43;;;;;;;;:::i;:::-;;;54039:330;;54110:23;54103:30;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54039:330;54178:20;54155:43;;;;;;;;:::i;:::-;;:19;;;;;;;;;;;:43;;;;;;;;:::i;:::-;;;54151:218;;54222:23;54215:30;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54151:218;54290:20;54267:43;;;;;;;;:::i;:::-;;:19;;;;;;;;;;;:43;;;;;;;;:::i;:::-;;;54263:106;;54334:23;54327:30;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54263:106;54454:25;54447:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53895:592;;:::o;19460:721::-;19516:13;19744:1;19735:5;:10;19731:53;;19762:10;;;;;;;;;;;;;;;;;;;;;19731:53;19794:12;19809:5;19794:20;;19825:14;19850:78;19865:1;19857:4;:9;19850:78;;19883:8;;;;;:::i;:::-;;;;19914:2;19906:10;;;;;:::i;:::-;;;19850:78;;;19938:19;19970:6;19960:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19938:39;;19988:154;20004:1;19995:5;:10;19988:154;;20032:1;20022:11;;;;;:::i;:::-;;;20099:2;20091:5;:10;;;;:::i;:::-;20078:2;:24;;;;:::i;:::-;20065:39;;20048:6;20055;20048:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;20128:2;20119:11;;;;;:::i;:::-;;;19988:154;;;20166:6;20152:21;;;;;19460:721;;;;:::o;22396:207::-;22526:4;22570:25;22555:40;;;:11;:40;;;;22548:47;;22396:207;;;:::o;32076:431::-;32170:1;32156:16;;:2;:16;;;32148:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32229:16;32237:7;32229;:16::i;:::-;32228:17;32220:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32289:45;32318:1;32322:2;32326:7;32289:20;:45::i;:::-;32362:1;32345:9;:13;32355:2;32345:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32393:2;32374:7;:16;32382:7;32374:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32436:7;32432:2;32411:33;;32428:1;32411:33;;;;;;;;;;;;32455:44;32483:1;32487:2;32491:7;32455:19;:44::i;:::-;32076:431;;:::o;9120:324::-;9180:4;9435:1;9413:7;:19;;;:23;9406:30;;9120:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:474::-;5983:6;5991;6040:2;6028:9;6019:7;6015:23;6011:32;6008:119;;;6046:79;;:::i;:::-;6008:119;6166:1;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6137:117;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5915:474;;;;;:::o;6395:332::-;6516:4;6554:2;6543:9;6539:18;6531:26;;6567:71;6635:1;6624:9;6620:17;6611:6;6567:71;:::i;:::-;6648:72;6716:2;6705:9;6701:18;6692:6;6648:72;:::i;:::-;6395:332;;;;;:::o;6733:180::-;6781:77;6778:1;6771:88;6878:4;6875:1;6868:15;6902:4;6899:1;6892:15;6919:122;7009:1;7002:5;6999:12;6989:46;;7015:18;;:::i;:::-;6989:46;6919:122;:::o;7047:145::-;7101:7;7130:5;7119:16;;7136:50;7180:5;7136:50;:::i;:::-;7047:145;;;:::o;7198:::-;7263:9;7296:41;7331:5;7296:41;:::i;:::-;7283:54;;7198:145;;;:::o;7349:161::-;7451:52;7497:5;7451:52;:::i;:::-;7446:3;7439:65;7349:161;;:::o;7516:252::-;7624:4;7662:2;7651:9;7647:18;7639:26;;7675:86;7758:1;7747:9;7743:17;7734:6;7675:86;:::i;:::-;7516:252;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:116::-;8179:21;8194:5;8179:21;:::i;:::-;8172:5;8169:32;8159:60;;8215:1;8212;8205:12;8159:60;8109:116;:::o;8231:133::-;8274:5;8312:6;8299:20;8290:29;;8328:30;8352:5;8328:30;:::i;:::-;8231:133;;;;:::o;8370:468::-;8435:6;8443;8492:2;8480:9;8471:7;8467:23;8463:32;8460:119;;;8498:79;;:::i;:::-;8460:119;8618:1;8643:53;8688:7;8679:6;8668:9;8664:22;8643:53;:::i;:::-;8633:63;;8589:117;8745:2;8771:50;8813:7;8804:6;8793:9;8789:22;8771:50;:::i;:::-;8761:60;;8716:115;8370:468;;;;;:::o;8844:104::-;8889:7;8918:24;8936:5;8918:24;:::i;:::-;8907:35;;8844:104;;;:::o;8954:142::-;9057:32;9083:5;9057:32;:::i;:::-;9052:3;9045:45;8954:142;;:::o;9102:254::-;9211:4;9249:2;9238:9;9234:18;9226:26;;9262:87;9346:1;9335:9;9331:17;9322:6;9262:87;:::i;:::-;9102:254;;;;:::o;9362:117::-;9471:1;9468;9461:12;9485:117;9594:1;9591;9584:12;9608:180;9656:77;9653:1;9646:88;9753:4;9750:1;9743:15;9777:4;9774:1;9767:15;9794:281;9877:27;9899:4;9877:27;:::i;:::-;9869:6;9865:40;10007:6;9995:10;9992:22;9971:18;9959:10;9956:34;9953:62;9950:88;;;10018:18;;:::i;:::-;9950:88;10058:10;10054:2;10047:22;9837:238;9794:281;;:::o;10081:129::-;10115:6;10142:20;;:::i;:::-;10132:30;;10171:33;10199:4;10191:6;10171:33;:::i;:::-;10081:129;;;:::o;10216:307::-;10277:4;10367:18;10359:6;10356:30;10353:56;;;10389:18;;:::i;:::-;10353:56;10427:29;10449:6;10427:29;:::i;:::-;10419:37;;10511:4;10505;10501:15;10493:23;;10216:307;;;:::o;10529:154::-;10613:6;10608:3;10603;10590:30;10675:1;10666:6;10661:3;10657:16;10650:27;10529:154;;;:::o;10689:410::-;10766:5;10791:65;10807:48;10848:6;10807:48;:::i;:::-;10791:65;:::i;:::-;10782:74;;10879:6;10872:5;10865:21;10917:4;10910:5;10906:16;10955:3;10946:6;10941:3;10937:16;10934:25;10931:112;;;10962:79;;:::i;:::-;10931:112;11052:41;11086:6;11081:3;11076;11052:41;:::i;:::-;10772:327;10689:410;;;;;:::o;11118:338::-;11173:5;11222:3;11215:4;11207:6;11203:17;11199:27;11189:122;;11230:79;;:::i;:::-;11189:122;11347:6;11334:20;11372:78;11446:3;11438:6;11431:4;11423:6;11419:17;11372:78;:::i;:::-;11363:87;;11179:277;11118:338;;;;:::o;11462:943::-;11557:6;11565;11573;11581;11630:3;11618:9;11609:7;11605:23;11601:33;11598:120;;;11637:79;;:::i;:::-;11598:120;11757:1;11782:53;11827:7;11818:6;11807:9;11803:22;11782:53;:::i;:::-;11772:63;;11728:117;11884:2;11910:53;11955:7;11946:6;11935:9;11931:22;11910:53;:::i;:::-;11900:63;;11855:118;12012:2;12038:53;12083:7;12074:6;12063:9;12059:22;12038:53;:::i;:::-;12028:63;;11983:118;12168:2;12157:9;12153:18;12140:32;12199:18;12191:6;12188:30;12185:117;;;12221:79;;:::i;:::-;12185:117;12326:62;12380:7;12371:6;12360:9;12356:22;12326:62;:::i;:::-;12316:72;;12111:287;11462:943;;;;;;;:::o;12411:474::-;12479:6;12487;12536:2;12524:9;12515:7;12511:23;12507:32;12504:119;;;12542:79;;:::i;:::-;12504:119;12662:1;12687:53;12732:7;12723:6;12712:9;12708:22;12687:53;:::i;:::-;12677:63;;12633:117;12789:2;12815:53;12860:7;12851:6;12840:9;12836:22;12815:53;:::i;:::-;12805:63;;12760:118;12411:474;;;;;:::o;12891:180::-;12939:77;12936:1;12929:88;13036:4;13033:1;13026:15;13060:4;13057:1;13050:15;13077:320;13121:6;13158:1;13152:4;13148:12;13138:22;;13205:1;13199:4;13195:12;13226:18;13216:81;;13282:4;13274:6;13270:17;13260:27;;13216:81;13344:2;13336:6;13333:14;13313:18;13310:38;13307:84;;13363:18;;:::i;:::-;13307:84;13128:269;13077:320;;;:::o;13403:220::-;13543:34;13539:1;13531:6;13527:14;13520:58;13612:3;13607:2;13599:6;13595:15;13588:28;13403:220;:::o;13629:366::-;13771:3;13792:67;13856:2;13851:3;13792:67;:::i;:::-;13785:74;;13868:93;13957:3;13868:93;:::i;:::-;13986:2;13981:3;13977:12;13970:19;;13629:366;;;:::o;14001:419::-;14167:4;14205:2;14194:9;14190:18;14182:26;;14254:9;14248:4;14244:20;14240:1;14229:9;14225:17;14218:47;14282:131;14408:4;14282:131;:::i;:::-;14274:139;;14001:419;;;:::o;14426:249::-;14566:34;14562:1;14554:6;14550:14;14543:58;14635:32;14630:2;14622:6;14618:15;14611:57;14426:249;:::o;14681:366::-;14823:3;14844:67;14908:2;14903:3;14844:67;:::i;:::-;14837:74;;14920:93;15009:3;14920:93;:::i;:::-;15038:2;15033:3;15029:12;15022:19;;14681:366;;;:::o;15053:419::-;15219:4;15257:2;15246:9;15242:18;15234:26;;15306:9;15300:4;15296:20;15292:1;15281:9;15277:17;15270:47;15334:131;15460:4;15334:131;:::i;:::-;15326:139;;15053:419;;;:::o;15478:233::-;15618:34;15614:1;15606:6;15602:14;15595:58;15687:16;15682:2;15674:6;15670:15;15663:41;15478:233;:::o;15717:366::-;15859:3;15880:67;15944:2;15939:3;15880:67;:::i;:::-;15873:74;;15956:93;16045:3;15956:93;:::i;:::-;16074:2;16069:3;16065:12;16058:19;;15717:366;;;:::o;16089:419::-;16255:4;16293:2;16282:9;16278:18;16270:26;;16342:9;16336:4;16332:20;16328:1;16317:9;16313:17;16306:47;16370:131;16496:4;16370:131;:::i;:::-;16362:139;;16089:419;;;:::o;16514:182::-;16654:34;16650:1;16642:6;16638:14;16631:58;16514:182;:::o;16702:366::-;16844:3;16865:67;16929:2;16924:3;16865:67;:::i;:::-;16858:74;;16941:93;17030:3;16941:93;:::i;:::-;17059:2;17054:3;17050:12;17043:19;;16702:366;;;:::o;17074:419::-;17240:4;17278:2;17267:9;17263:18;17255:26;;17327:9;17321:4;17317:20;17313:1;17302:9;17298:17;17291:47;17355:131;17481:4;17355:131;:::i;:::-;17347:139;;17074:419;;;:::o;17499:180::-;17547:77;17544:1;17537:88;17644:4;17641:1;17634:15;17668:4;17665:1;17658:15;17685:305;17725:3;17744:20;17762:1;17744:20;:::i;:::-;17739:25;;17778:20;17796:1;17778:20;:::i;:::-;17773:25;;17932:1;17864:66;17860:74;17857:1;17854:81;17851:107;;;17938:18;;:::i;:::-;17851:107;17982:1;17979;17975:9;17968:16;;17685:305;;;;:::o;17996:233::-;18136:34;18132:1;18124:6;18120:14;18113:58;18205:16;18200:2;18192:6;18188:15;18181:41;17996:233;:::o;18235:366::-;18377:3;18398:67;18462:2;18457:3;18398:67;:::i;:::-;18391:74;;18474:93;18563:3;18474:93;:::i;:::-;18592:2;18587:3;18583:12;18576:19;;18235:366;;;:::o;18607:419::-;18773:4;18811:2;18800:9;18796:18;18788:26;;18860:9;18854:4;18850:20;18846:1;18835:9;18831:17;18824:47;18888:131;19014:4;18888:131;:::i;:::-;18880:139;;18607:419;;;:::o;19032:180::-;19080:77;19077:1;19070:88;19177:4;19174:1;19167:15;19201:4;19198:1;19191:15;19218:185;19258:1;19275:20;19293:1;19275:20;:::i;:::-;19270:25;;19309:20;19327:1;19309:20;:::i;:::-;19304:25;;19348:1;19338:35;;19353:18;;:::i;:::-;19338:35;19395:1;19392;19388:9;19383:14;;19218:185;;;;:::o;19409:230::-;19549:34;19545:1;19537:6;19533:14;19526:58;19618:13;19613:2;19605:6;19601:15;19594:38;19409:230;:::o;19645:366::-;19787:3;19808:67;19872:2;19867:3;19808:67;:::i;:::-;19801:74;;19884:93;19973:3;19884:93;:::i;:::-;20002:2;19997:3;19993:12;19986:19;;19645:366;;;:::o;20017:419::-;20183:4;20221:2;20210:9;20206:18;20198:26;;20270:9;20264:4;20260:20;20256:1;20245:9;20241:17;20234:47;20298:131;20424:4;20298:131;:::i;:::-;20290:139;;20017:419;;;:::o;20442:191::-;20482:4;20502:20;20520:1;20502:20;:::i;:::-;20497:25;;20536:20;20554:1;20536:20;:::i;:::-;20531:25;;20575:1;20572;20569:8;20566:34;;;20580:18;;:::i;:::-;20566:34;20625:1;20622;20618:9;20610:17;;20442:191;;;;:::o;20639:231::-;20779:34;20775:1;20767:6;20763:14;20756:58;20848:14;20843:2;20835:6;20831:15;20824:39;20639:231;:::o;20876:366::-;21018:3;21039:67;21103:2;21098:3;21039:67;:::i;:::-;21032:74;;21115:93;21204:3;21115:93;:::i;:::-;21233:2;21228:3;21224:12;21217:19;;20876:366;;;:::o;21248:419::-;21414:4;21452:2;21441:9;21437:18;21429:26;;21501:9;21495:4;21491:20;21487:1;21476:9;21472:17;21465:47;21529:131;21655:4;21529:131;:::i;:::-;21521:139;;21248:419;;;:::o;21673:180::-;21721:77;21718:1;21711:88;21818:4;21815:1;21808:15;21842:4;21839:1;21832:15;21859:180;21907:77;21904:1;21897:88;22004:4;22001:1;21994:15;22028:4;22025:1;22018:15;22045:174;22185:26;22181:1;22173:6;22169:14;22162:50;22045:174;:::o;22225:366::-;22367:3;22388:67;22452:2;22447:3;22388:67;:::i;:::-;22381:74;;22464:93;22553:3;22464:93;:::i;:::-;22582:2;22577:3;22573:12;22566:19;;22225:366;;;:::o;22597:419::-;22763:4;22801:2;22790:9;22786:18;22778:26;;22850:9;22844:4;22840:20;22836:1;22825:9;22821:17;22814:47;22878:131;23004:4;22878:131;:::i;:::-;22870:139;;22597:419;;;:::o;23022:228::-;23162:34;23158:1;23150:6;23146:14;23139:58;23231:11;23226:2;23218:6;23214:15;23207:36;23022:228;:::o;23256:366::-;23398:3;23419:67;23483:2;23478:3;23419:67;:::i;:::-;23412:74;;23495:93;23584:3;23495:93;:::i;:::-;23613:2;23608:3;23604:12;23597:19;;23256:366;;;:::o;23628:419::-;23794:4;23832:2;23821:9;23817:18;23809:26;;23881:9;23875:4;23871:20;23867:1;23856:9;23852:17;23845:47;23909:131;24035:4;23909:131;:::i;:::-;23901:139;;23628:419;;;:::o;24053:148::-;24155:11;24192:3;24177:18;;24053:148;;;;:::o;24207:377::-;24313:3;24341:39;24374:5;24341:39;:::i;:::-;24396:89;24478:6;24473:3;24396:89;:::i;:::-;24389:96;;24494:52;24539:6;24534:3;24527:4;24520:5;24516:16;24494:52;:::i;:::-;24571:6;24566:3;24562:16;24555:23;;24317:267;24207:377;;;;:::o;24590:182::-;24758:7;24753:3;24746:20;24590:182;:::o;24778:539::-;25000:3;25022:95;25113:3;25104:6;25022:95;:::i;:::-;25015:102;;25127:137;25260:3;25127:137;:::i;:::-;25289:1;25284:3;25280:11;25273:18;;25308:3;25301:10;;24778:539;;;;:::o;25323:224::-;25463:34;25459:1;25451:6;25447:14;25440:58;25532:7;25527:2;25519:6;25515:15;25508:32;25323:224;:::o;25553:366::-;25695:3;25716:67;25780:2;25775:3;25716:67;:::i;:::-;25709:74;;25792:93;25881:3;25792:93;:::i;:::-;25910:2;25905:3;25901:12;25894:19;;25553:366;;;:::o;25925:419::-;26091:4;26129:2;26118:9;26114:18;26106:26;;26178:9;26172:4;26168:20;26164:1;26153:9;26149:17;26142:47;26206:131;26332:4;26206:131;:::i;:::-;26198:139;;25925:419;;;:::o;26350:223::-;26490:34;26486:1;26478:6;26474:14;26467:58;26559:6;26554:2;26546:6;26542:15;26535:31;26350:223;:::o;26579:366::-;26721:3;26742:67;26806:2;26801:3;26742:67;:::i;:::-;26735:74;;26818:93;26907:3;26818:93;:::i;:::-;26936:2;26931:3;26927:12;26920:19;;26579:366;;;:::o;26951:419::-;27117:4;27155:2;27144:9;27140:18;27132:26;;27204:9;27198:4;27194:20;27190:1;27179:9;27175:17;27168:47;27232:131;27358:4;27232:131;:::i;:::-;27224:139;;26951:419;;;:::o;27376:175::-;27516:27;27512:1;27504:6;27500:14;27493:51;27376:175;:::o;27557:366::-;27699:3;27720:67;27784:2;27779:3;27720:67;:::i;:::-;27713:74;;27796:93;27885:3;27796:93;:::i;:::-;27914:2;27909:3;27905:12;27898:19;;27557:366;;;:::o;27929:419::-;28095:4;28133:2;28122:9;28118:18;28110:26;;28182:9;28176:4;28172:20;28168:1;28157:9;28153:17;28146:47;28210:131;28336:4;28210:131;:::i;:::-;28202:139;;27929:419;;;:::o;28354:237::-;28494:34;28490:1;28482:6;28478:14;28471:58;28563:20;28558:2;28550:6;28546:15;28539:45;28354:237;:::o;28597:366::-;28739:3;28760:67;28824:2;28819:3;28760:67;:::i;:::-;28753:74;;28836:93;28925:3;28836:93;:::i;:::-;28954:2;28949:3;28945:12;28938:19;;28597:366;;;:::o;28969:419::-;29135:4;29173:2;29162:9;29158:18;29150:26;;29222:9;29216:4;29212:20;29208:1;29197:9;29193:17;29186:47;29250:131;29376:4;29250:131;:::i;:::-;29242:139;;28969:419;;;:::o;29394:435::-;29574:3;29596:95;29687:3;29678:6;29596:95;:::i;:::-;29589:102;;29708:95;29799:3;29790:6;29708:95;:::i;:::-;29701:102;;29820:3;29813:10;;29394:435;;;;;:::o;29835:180::-;29883:77;29880:1;29873:88;29980:4;29977:1;29970:15;30004:4;30001:1;29994:15;30021:177;30161:29;30157:1;30149:6;30145:14;30138:53;30021:177;:::o;30204:366::-;30346:3;30367:67;30431:2;30426:3;30367:67;:::i;:::-;30360:74;;30443:93;30532:3;30443:93;:::i;:::-;30561:2;30556:3;30552:12;30545:19;;30204:366;;;:::o;30576:419::-;30742:4;30780:2;30769:9;30765:18;30757:26;;30829:9;30823:4;30819:20;30815:1;30804:9;30800:17;30793:47;30857:131;30983:4;30857:131;:::i;:::-;30849:139;;30576:419;;;:::o;31001:230::-;31141:34;31137:1;31129:6;31125:14;31118:58;31210:13;31205:2;31197:6;31193:15;31186:38;31001:230;:::o;31237:366::-;31379:3;31400:67;31464:2;31459:3;31400:67;:::i;:::-;31393:74;;31476:93;31565:3;31476:93;:::i;:::-;31594:2;31589:3;31585:12;31578:19;;31237:366;;;:::o;31609:419::-;31775:4;31813:2;31802:9;31798:18;31790:26;;31862:9;31856:4;31852:20;31848:1;31837:9;31833:17;31826:47;31890:131;32016:4;31890:131;:::i;:::-;31882:139;;31609:419;;;:::o;32034:98::-;32085:6;32119:5;32113:12;32103:22;;32034:98;;;:::o;32138:168::-;32221:11;32255:6;32250:3;32243:19;32295:4;32290:3;32286:14;32271:29;;32138:168;;;;:::o;32312:360::-;32398:3;32426:38;32458:5;32426:38;:::i;:::-;32480:70;32543:6;32538:3;32480:70;:::i;:::-;32473:77;;32559:52;32604:6;32599:3;32592:4;32585:5;32581:16;32559:52;:::i;:::-;32636:29;32658:6;32636:29;:::i;:::-;32631:3;32627:39;32620:46;;32402:270;32312:360;;;;:::o;32678:640::-;32873:4;32911:3;32900:9;32896:19;32888:27;;32925:71;32993:1;32982:9;32978:17;32969:6;32925:71;:::i;:::-;33006:72;33074:2;33063:9;33059:18;33050:6;33006:72;:::i;:::-;33088;33156:2;33145:9;33141:18;33132:6;33088:72;:::i;:::-;33207:9;33201:4;33197:20;33192:2;33181:9;33177:18;33170:48;33235:76;33306:4;33297:6;33235:76;:::i;:::-;33227:84;;32678:640;;;;;;;:::o;33324:141::-;33380:5;33411:6;33405:13;33396:22;;33427:32;33453:5;33427:32;:::i;:::-;33324:141;;;;:::o;33471:349::-;33540:6;33589:2;33577:9;33568:7;33564:23;33560:32;33557:119;;;33595:79;;:::i;:::-;33557:119;33715:1;33740:63;33795:7;33786:6;33775:9;33771:22;33740:63;:::i;:::-;33730:73;;33686:127;33471:349;;;;:::o;33826:233::-;33865:3;33888:24;33906:5;33888:24;:::i;:::-;33879:33;;33934:66;33927:5;33924:77;33921:103;;34004:18;;:::i;:::-;33921:103;34051:1;34044:5;34040:13;34033:20;;33826:233;;;:::o;34065:176::-;34097:1;34114:20;34132:1;34114:20;:::i;:::-;34109:25;;34148:20;34166:1;34148:20;:::i;:::-;34143:25;;34187:1;34177:35;;34192:18;;:::i;:::-;34177:35;34233:1;34230;34226:9;34221:14;;34065:176;;;;:::o;34247:182::-;34387:34;34383:1;34375:6;34371:14;34364:58;34247:182;:::o;34435:366::-;34577:3;34598:67;34662:2;34657:3;34598:67;:::i;:::-;34591:74;;34674:93;34763:3;34674:93;:::i;:::-;34792:2;34787:3;34783:12;34776:19;;34435:366;;;:::o;34807:419::-;34973:4;35011:2;35000:9;34996:18;34988:26;;35060:9;35054:4;35050:20;35046:1;35035:9;35031:17;35024:47;35088:131;35214:4;35088:131;:::i;:::-;35080:139;;34807:419;;;:::o;35232:178::-;35372:30;35368:1;35360:6;35356:14;35349:54;35232:178;:::o;35416:366::-;35558:3;35579:67;35643:2;35638:3;35579:67;:::i;:::-;35572:74;;35655:93;35744:3;35655:93;:::i;:::-;35773:2;35768:3;35764:12;35757:19;;35416:366;;;:::o;35788:419::-;35954:4;35992:2;35981:9;35977:18;35969:26;;36041:9;36035:4;36031:20;36027:1;36016:9;36012:17;36005:47;36069:131;36195:4;36069:131;:::i;:::-;36061:139;;35788:419;;;:::o

Swarm Source

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