ETH Price: $3,310.14 (-3.20%)
Gas: 15 Gwei

Stage Names (For Rappers) (NAMES)
 

Overview

TokenID

204

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
StageName

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-05
*/

/**
 *Submitted for verification at Etherscan.io on 2021-08-27
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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






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

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

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

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

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

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

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

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

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

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

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

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




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

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

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

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

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




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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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














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







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





/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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









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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

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

    /**
     * @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 of token that is not own");
        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);
    }

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

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

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







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

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

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


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


contract StageName is ERC721Enumerable, ReentrancyGuard {

    string[] private first = [
        "Bittah",
        "Tha",
        "Mad",
        "Master",
        "Dynamic",
        "E-ratic",
        "Wacko",
        "Fearless",
        "Misunderstood",
        "Quiet",
        "Pesty",
        "Gentlemen",
        "Profound",
        "Respected",
        "Amateur",
        "Shriekin'",
        "Lucky",
        "Phantom",
        "Smilin'",
        "Thunderous",
        "Tuff",
        "Scratchin'",
        "Drunken",
        "X-cessive",
        "X-pert",
        "Zexy",
        "Ruff",
        "Intellectual",
        "Unlucky",
        "Vizual",
        "Foolish",
        "Midnight",
        "Mighty",
        "Violent",
        "Vulgar",
        "Crazy",
        "Annoyin'",
        "Arrogant",
        "B-loved",
        "Sarkastik",
        "Insane",
        "Irate",
        "Wicked",
        "Lazy-assed",
        "Amazing"
    ];
    
    string[] private last = [
        "Madman",
        "Genius",
        "Hunter",
        "Killah",
        "Professional",
        "Artist",
        "Dreamer",
        "Observer",
        "Bastard",
        "Wizard",
        "Swami",
        "Wanderer",
        "Assassin",
        "Bandit",
        "Leader",
        "Ambassador",
        "Warrior",
        "Menace",
        "Worlock",
        "Conqueror",
        "Lover",
        "Magician",
        "Desperado",
        "Specialist",
        "Mercenary",
        "Ninja",
        "Contender",
        "Mastermind",
        "Demon",
        "Watcher",
        "Destroyer",
        "Beggar",
        "Commander",
        "Dominator",
        "Overlord",
        "Samurai",
        "Knight",
        "Pupil",
        "Prophet",
        "Criminal"
    ];
    
    string[] private color = [
        "White",
        "White",
        "White",
        "White",
        "White",
        "White",
        "White",
        "White",
        "White",
        "Yellow"
    ];
    
    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }
    
    function getFirst(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "FIRST", first);
    }
    
    function getLast(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "LAST", last);
    }
    
    function getColor(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "COLOR", color);
    }
    
    function pluck(uint256 tokenId, string memory keyPrefix, string[] memory sourceArray) internal pure returns (string memory) {
        uint256 rand = random(string(abi.encodePacked(keyPrefix, toString(tokenId))));
        string memory output = sourceArray[rand % sourceArray.length];
        return output;
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        string[7] memory parts;
        parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: ';
        
        parts[1] = getColor(tokenId);
        
        parts[2] = '; font-family: serif; font-size: 24px; }</style><rect width="100%" height="100%" fill="black" /><text x="20" y="20" class="base">';

        parts[3] = getFirst(tokenId);

        parts[4] = ' ';

        parts[5] = getLast(tokenId);

        parts[6] = '</text></svg>';

        string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6]));
        
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Stage Name #', toString(tokenId), '", "description": "Stage Names are random onchain names inspired by the Wu-Tang Clan name generator. Feel free to use Stage Names in any way you want.", "attributes": [{"trait_type": "Color","value": "', getColor(tokenId), '"}, {"trait_type": "Adjective","value": "', getFirst(tokenId), '"}, {"trait_type": "Noun","value": "', getLast(tokenId), '"}], "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
        output = string(abi.encodePacked('data:application/json;base64,', json));

        return output;
    }

    function claim(uint256 tokenId) public nonReentrant {
        require(tokenId > 0 && tokenId < 421, "Token ID invalid");
        _safeMint(_msgSender(), tokenId);
    }
    
    function toString(uint256 value) internal pure returns (string memory) {
    // Inspired by OraclizeAPI's implementation - MIT license
    // 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);
    }
    
    constructor() ERC721("Stage Names (For Rappers)", "NAMES") {}
}

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getColor","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFirst","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLast","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806105a001604052806040518060400160405280600681526020017f426974746168000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f546861000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f4d6164000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4d6173746572000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f44796e616d69630000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f452d72617469630000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f5761636b6f00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f466561726c65737300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f4d6973756e64657273746f6f640000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f517569657400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f506573747900000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f47656e746c656d656e000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f50726f666f756e6400000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f526573706563746564000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f416d61746575720000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f53687269656b696e27000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4c75636b7900000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f5068616e746f6d0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f536d696c696e270000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f5468756e6465726f75730000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f547566660000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f53637261746368696e270000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4472756e6b656e0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f582d63657373697665000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f582d70657274000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f5a6578790000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f527566660000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f496e74656c6c65637475616c000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f556e6c75636b790000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f56697a75616c000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f466f6f6c6973680000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4d69646e6967687400000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4d6967687479000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f56696f6c656e740000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f56756c676172000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4372617a7900000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f416e6e6f79696e2700000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4172726f67616e7400000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f422d6c6f7665640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f5361726b617374696b000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f496e73616e65000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f497261746500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f5769636b6564000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f4c617a792d61737365640000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f416d617a696e6700000000000000000000000000000000000000000000000000815250815250600b90602d62000a7f929190620016fc565b506040518061050001604052806040518060400160405280600681526020017f4d61646d616e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f47656e697573000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f48756e746572000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4b696c6c6168000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f50726f66657373696f6e616c000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f417274697374000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f447265616d65720000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4f6273657276657200000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f426173746172640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f57697a617264000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f5377616d6900000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f57616e646572657200000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f417373617373696e00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f42616e646974000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4c6561646572000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f416d6261737361646f720000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f57617272696f720000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4d656e616365000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f576f726c6f636b0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f436f6e717565726f72000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4c6f76657200000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4d6167696369616e00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f44657370657261646f000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f5370656369616c6973740000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4d657263656e617279000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4e696e6a6100000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f436f6e74656e646572000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f4d61737465726d696e640000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f44656d6f6e00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f576174636865720000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f44657374726f796572000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f426567676172000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f436f6d6d616e646572000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f446f6d696e61746f72000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4f7665726c6f726400000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f53616d757261690000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4b6e69676874000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f507570696c00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f50726f706865740000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4372696d696e616c000000000000000000000000000000000000000000000000815250815250600c906028620013d492919062001763565b506040518061014001604052806040518060400160405280600581526020017f576869746500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f576869746500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f576869746500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f576869746500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f576869746500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f576869746500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f576869746500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f576869746500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f576869746500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f59656c6c6f770000000000000000000000000000000000000000000000000000815250815250600d90600a6200163f929190620017ca565b503480156200164d57600080fd5b506040518060400160405280601981526020017f5374616765204e616d65732028466f72205261707065727329000000000000008152506040518060400160405280600581526020017f4e414d45530000000000000000000000000000000000000000000000000000008152508160009080519060200190620016d292919062001831565b508060019080519060200190620016eb92919062001831565b5050506001600a81905550620019b4565b82805482825590600052602060002090810192821562001750579160200282015b828111156200174f5782518290805190602001906200173e92919062001831565b50916020019190600101906200171d565b5b5090506200175f9190620018c2565b5090565b828054828255906000526020600020908101928215620017b7579160200282015b82811115620017b6578251829080519060200190620017a592919062001831565b509160200191906001019062001784565b5b509050620017c69190620018c2565b5090565b8280548282559060005260206000209081019282156200181e579160200282015b828111156200181d5782518290805190602001906200180c92919062001831565b5091602001919060010190620017eb565b5b5090506200182d9190620018c2565b5090565b8280546200183f906200194f565b90600052602060002090601f016020900481019282620018635760008555620018af565b82601f106200187e57805160ff1916838001178555620018af565b82800160010185558215620018af579182015b82811115620018ae57825182559160200191906001019062001891565b5b509050620018be9190620018ea565b5090565b5b80821115620018e65760008181620018dc919062001909565b50600101620018c3565b5090565b5b8082111562001905576000816000905550600101620018eb565b5090565b50805462001917906200194f565b6000825580601f106200192b57506200194c565b601f0160209004906000526020600020908101906200194b9190620018ea565b5b50565b600060028204905060018216806200196857607f821691505b602082108114156200197f576200197e62001985565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e7c80620019c46000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80636352211e116100ad578063964a809111610071578063964a80911461037b578063a22cb465146103ab578063b88d4fde146103c7578063c87b56dd146103e3578063e985e9c5146104135761012c565b80636352211e1461029d578063667386f7146102cd57806370a08231146102fd57806380057b9a1461032d57806395d89b411461035d5761012c565b806323b872dd116100f457806323b872dd146101e95780632f745c5914610205578063379607f51461023557806342842e0e146102515780634f6ccce71461026d5761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b6004803603810190610146919061286f565b610443565b6040516101589190612ec4565b60405180910390f35b6101696104bd565b6040516101769190612edf565b60405180910390f35b610199600480360381019061019491906128c9565b61054f565b6040516101a69190612e5d565b60405180910390f35b6101c960048036038101906101c4919061282f565b6105d4565b005b6101d36106ec565b6040516101e09190613121565b60405180910390f35b61020360048036038101906101fe9190612719565b6106f9565b005b61021f600480360381019061021a919061282f565b610759565b60405161022c9190613121565b60405180910390f35b61024f600480360381019061024a91906128c9565b6107fe565b005b61026b60048036038101906102669190612719565b6108b8565b005b610287600480360381019061028291906128c9565b6108d8565b6040516102949190613121565b60405180910390f35b6102b760048036038101906102b291906128c9565b610949565b6040516102c49190612e5d565b60405180910390f35b6102e760048036038101906102e291906128c9565b6109fb565b6040516102f49190612edf565b60405180910390f35b610317600480360381019061031291906126ac565b610b15565b6040516103249190613121565b60405180910390f35b610347600480360381019061034291906128c9565b610bcd565b6040516103549190612edf565b60405180910390f35b610365610ce7565b6040516103729190612edf565b60405180910390f35b610395600480360381019061039091906128c9565b610d79565b6040516103a29190612edf565b60405180910390f35b6103c560048036038101906103c091906127ef565b610e93565b005b6103e160048036038101906103dc919061276c565b611014565b005b6103fd60048036038101906103f891906128c9565b611076565b60405161040a9190612edf565b60405180910390f35b61042d600480360381019061042891906126d9565b61135e565b60405161043a9190612ec4565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104b657506104b5826113f2565b5b9050919050565b6060600080546104cc906133a0565b80601f01602080910402602001604051908101604052809291908181526020018280546104f8906133a0565b80156105455780601f1061051a57610100808354040283529160200191610545565b820191906000526020600020905b81548152906001019060200180831161052857829003601f168201915b5050505050905090565b600061055a826114d4565b610599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059090613041565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105df82610949565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610647906130a1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661066f611540565b73ffffffffffffffffffffffffffffffffffffffff16148061069e575061069d81610698611540565b61135e565b5b6106dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d490612fc1565b60405180910390fd5b6106e78383611548565b505050565b6000600880549050905090565b61070a610704611540565b82611601565b610749576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610740906130c1565b60405180910390fd5b6107548383836116df565b505050565b600061076483610b15565b82106107a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079c90612f01565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6002600a541415610844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083b90613101565b60405180910390fd5b6002600a8190555060008111801561085d57506101a581105b61089c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089390613061565b60405180910390fd5b6108ad6108a7611540565b8261193b565b6001600a8190555050565b6108d383838360405180602001604052806000815250611014565b505050565b60006108e26106ec565b8210610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a906130e1565b60405180910390fd5b6008828154811061093757610936613539565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e990613001565b60405180910390fd5b80915050919050565b6060610b0e826040518060400160405280600581526020017f4649525354000000000000000000000000000000000000000000000000000000815250600b805480602002602001604051908101604052809291908181526020016000905b82821015610b05578382906000526020600020018054610a78906133a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa4906133a0565b8015610af15780601f10610ac657610100808354040283529160200191610af1565b820191906000526020600020905b815481529060010190602001808311610ad457829003601f168201915b505050505081526020019060010190610a59565b50505050611959565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90612fe1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060610ce0826040518060400160405280600581526020017f434f4c4f52000000000000000000000000000000000000000000000000000000815250600d805480602002602001604051908101604052809291908181526020016000905b82821015610cd7578382906000526020600020018054610c4a906133a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c76906133a0565b8015610cc35780601f10610c9857610100808354040283529160200191610cc3565b820191906000526020600020905b815481529060010190602001808311610ca657829003601f168201915b505050505081526020019060010190610c2b565b50505050611959565b9050919050565b606060018054610cf6906133a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d22906133a0565b8015610d6f5780601f10610d4457610100808354040283529160200191610d6f565b820191906000526020600020905b815481529060010190602001808311610d5257829003601f168201915b5050505050905090565b6060610e8c826040518060400160405280600481526020017f4c41535400000000000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b82821015610e83578382906000526020600020018054610df6906133a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e22906133a0565b8015610e6f5780601f10610e4457610100808354040283529160200191610e6f565b820191906000526020600020905b815481529060010190602001808311610e5257829003601f168201915b505050505081526020019060010190610dd7565b50505050611959565b9050919050565b610e9b611540565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090612f81565b60405180910390fd5b8060056000610f16611540565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fc3611540565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110089190612ec4565b60405180910390a35050565b61102561101f611540565b83611601565b611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b906130c1565b60405180910390fd5b611070848484846119c8565b50505050565b60606110806125ac565b6040518060a0016040528060778152602001613d9060779139816000600781106110ad576110ac613539565b5b60200201819052506110be83610bcd565b816001600781106110d2576110d1613539565b5b60200201819052506040518060c0016040528060818152602001613d0f608191398160026007811061110757611106613539565b5b6020020181905250611118836109fb565b8160036007811061112c5761112b613539565b5b60200201819052506040518060400160405280600181526020017f20000000000000000000000000000000000000000000000000000000000000008152508160046007811061117e5761117d613539565b5b602002018190525061118f83610d79565b816005600781106111a3576111a2613539565b5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000815250816006600781106111f5576111f4613539565b5b602002018190525060008160006007811061121357611212613539565b5b60200201518260016007811061122c5761122b613539565b5b60200201518360026007811061124557611244613539565b5b60200201518460036007811061125e5761125d613539565b5b60200201518560046007811061127757611276613539565b5b6020020151866005600781106112905761128f613539565b5b6020020151876006600781106112a9576112a8613539565b5b60200201516040516020016112c49796959493929190612d49565b6040516020818303038152906040529050600061132f6112e386611a24565b6112ec87610bcd565b6112f5886109fb565b6112fe89610d79565b61130787611b85565b60405160200161131b959493929190612dae565b604051602081830303815290604052611b85565b9050806040516020016113429190612e3b565b6040516020818303038152906040529150819350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806114bd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806114cd57506114cc82611d1d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115bb83610949565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061160c826114d4565b61164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290612fa1565b60405180910390fd5b600061165683610949565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116c557508373ffffffffffffffffffffffffffffffffffffffff166116ad8461054f565b73ffffffffffffffffffffffffffffffffffffffff16145b806116d657506116d5818561135e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166116ff82610949565b73ffffffffffffffffffffffffffffffffffffffff1614611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90613081565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90612f61565b60405180910390fd5b6117d0838383611d87565b6117db600082611548565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461182b91906132b6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461188291906131d5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611955828260405180602001604052806000815250611e9b565b5050565b6060600061198f8461196a87611a24565b60405160200161197b929190612d25565b604051602081830303815290604052611ef6565b90506000838451836119a1919061344c565b815181106119b2576119b1613539565b5b6020026020010151905080925050509392505050565b6119d38484846116df565b6119df84848484611f29565b611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590612f21565b60405180910390fd5b50505050565b60606000821415611a6c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b80565b600082905060005b60008214611a9e578080611a8790613403565b915050600a82611a97919061322b565b9150611a74565b60008167ffffffffffffffff811115611aba57611ab9613568565b5b6040519080825280601f01601f191660200182016040528015611aec5781602001600182028036833780820191505090505b5090505b60008514611b7957600182611b0591906132b6565b9150600a85611b14919061344c565b6030611b2091906131d5565b60f81b818381518110611b3657611b35613539565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b72919061322b565b9450611af0565b8093505050505b919050565b60606000825190506000811415611bae5760405180602001604052806000815250915050611d18565b60006003600283611bbf91906131d5565b611bc9919061322b565b6004611bd5919061325c565b90506000602082611be691906131d5565b67ffffffffffffffff811115611bff57611bfe613568565b5b6040519080825280601f01601f191660200182016040528015611c315781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001613e07604091399050600181016020830160005b86811015611cd55760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050611c5c565b506003860660018114611cef5760028114611cff57611d0a565b613d3d60f01b6002830352611d0a565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611d928383836120c0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dd557611dd0816120c5565b611e14565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e1357611e12838261210e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e5757611e528161227b565b611e96565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611e9557611e94828261234c565b5b5b505050565b611ea583836123cb565b611eb26000848484611f29565b611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee890612f21565b60405180910390fd5b505050565b600081604051602001611f099190612d0e565b6040516020818303038152906040528051906020012060001c9050919050565b6000611f4a8473ffffffffffffffffffffffffffffffffffffffff16612599565b156120b3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f73611540565b8786866040518563ffffffff1660e01b8152600401611f959493929190612e78565b602060405180830381600087803b158015611faf57600080fd5b505af1925050508015611fe057506040513d601f19601f82011682018060405250810190611fdd919061289c565b60015b612063573d8060008114612010576040519150601f19603f3d011682016040523d82523d6000602084013e612015565b606091505b5060008151141561205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290612f21565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120b8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161211b84610b15565b61212591906132b6565b905060006007600084815260200190815260200160002054905081811461220a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061228f91906132b6565b90506000600960008481526020019081526020016000205490506000600883815481106122bf576122be613539565b5b9060005260206000200154905080600883815481106122e1576122e0613539565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806123305761232f61350a565b5b6001900381819060005260206000200160009055905550505050565b600061235783610b15565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561243b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243290613021565b60405180910390fd5b612444816114d4565b15612484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247b90612f41565b60405180910390fd5b61249060008383611d87565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124e091906131d5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518060e001604052806007905b60608152602001906001900390816125bb5790505090565b60006125e66125e184613161565b61313c565b9050828152602081018484840111156126025761260161359c565b5b61260d84828561335e565b509392505050565b60008135905061262481613cb2565b92915050565b60008135905061263981613cc9565b92915050565b60008135905061264e81613ce0565b92915050565b60008151905061266381613ce0565b92915050565b600082601f83011261267e5761267d613597565b5b813561268e8482602086016125d3565b91505092915050565b6000813590506126a681613cf7565b92915050565b6000602082840312156126c2576126c16135a6565b5b60006126d084828501612615565b91505092915050565b600080604083850312156126f0576126ef6135a6565b5b60006126fe85828601612615565b925050602061270f85828601612615565b9150509250929050565b600080600060608486031215612732576127316135a6565b5b600061274086828701612615565b935050602061275186828701612615565b925050604061276286828701612697565b9150509250925092565b60008060008060808587031215612786576127856135a6565b5b600061279487828801612615565b94505060206127a587828801612615565b93505060406127b687828801612697565b925050606085013567ffffffffffffffff8111156127d7576127d66135a1565b5b6127e387828801612669565b91505092959194509250565b60008060408385031215612806576128056135a6565b5b600061281485828601612615565b92505060206128258582860161262a565b9150509250929050565b60008060408385031215612846576128456135a6565b5b600061285485828601612615565b925050602061286585828601612697565b9150509250929050565b600060208284031215612885576128846135a6565b5b60006128938482850161263f565b91505092915050565b6000602082840312156128b2576128b16135a6565b5b60006128c084828501612654565b91505092915050565b6000602082840312156128df576128de6135a6565b5b60006128ed84828501612697565b91505092915050565b6128ff816132ea565b82525050565b61290e816132fc565b82525050565b600061291f82613192565b61292981856131a8565b935061293981856020860161336d565b612942816135ab565b840191505092915050565b60006129588261319d565b61296281856131b9565b935061297281856020860161336d565b61297b816135ab565b840191505092915050565b60006129918261319d565b61299b81856131ca565b93506129ab81856020860161336d565b80840191505092915050565b60006129c4602b836131b9565b91506129cf826135bc565b604082019050919050565b60006129e76032836131b9565b91506129f28261360b565b604082019050919050565b6000612a0a6024836131ca565b9150612a158261365a565b602482019050919050565b6000612a2d601c836131b9565b9150612a38826136a9565b602082019050919050565b6000612a506024836131b9565b9150612a5b826136d2565b604082019050919050565b6000612a736019836131b9565b9150612a7e82613721565b602082019050919050565b6000612a96602c836131b9565b9150612aa18261374a565b604082019050919050565b6000612ab96029836131ca565b9150612ac482613799565b602982019050919050565b6000612adc6038836131b9565b9150612ae7826137e8565b604082019050919050565b6000612aff60c9836131ca565b9150612b0a82613837565b60c982019050919050565b6000612b22602a836131b9565b9150612b2d82613944565b604082019050919050565b6000612b456029836131b9565b9150612b5082613993565b604082019050919050565b6000612b686002836131ca565b9150612b73826139e2565b600282019050919050565b6000612b8b6020836131b9565b9150612b9682613a0b565b602082019050919050565b6000612bae602c836131b9565b9150612bb982613a34565b604082019050919050565b6000612bd16016836131ca565b9150612bdc82613a83565b601682019050919050565b6000612bf46010836131b9565b9150612bff82613aac565b602082019050919050565b6000612c176029836131b9565b9150612c2282613ad5565b604082019050919050565b6000612c3a6029836131ca565b9150612c4582613b24565b602982019050919050565b6000612c5d6021836131b9565b9150612c6882613b73565b604082019050919050565b6000612c80601d836131ca565b9150612c8b82613bc2565b601d82019050919050565b6000612ca36031836131b9565b9150612cae82613beb565b604082019050919050565b6000612cc6602c836131b9565b9150612cd182613c3a565b604082019050919050565b6000612ce9601f836131b9565b9150612cf482613c89565b602082019050919050565b612d0881613354565b82525050565b6000612d1a8284612986565b915081905092915050565b6000612d318285612986565b9150612d3d8284612986565b91508190509392505050565b6000612d55828a612986565b9150612d618289612986565b9150612d6d8288612986565b9150612d798287612986565b9150612d858286612986565b9150612d918285612986565b9150612d9d8284612986565b915081905098975050505050505050565b6000612db982612bc4565b9150612dc58288612986565b9150612dd082612af2565b9150612ddc8287612986565b9150612de782612c2d565b9150612df38286612986565b9150612dfe826129fd565b9150612e0a8285612986565b9150612e1582612aac565b9150612e218284612986565b9150612e2c82612b5b565b91508190509695505050505050565b6000612e4682612c73565b9150612e528284612986565b915081905092915050565b6000602082019050612e7260008301846128f6565b92915050565b6000608082019050612e8d60008301876128f6565b612e9a60208301866128f6565b612ea76040830185612cff565b8181036060830152612eb98184612914565b905095945050505050565b6000602082019050612ed96000830184612905565b92915050565b60006020820190508181036000830152612ef9818461294d565b905092915050565b60006020820190508181036000830152612f1a816129b7565b9050919050565b60006020820190508181036000830152612f3a816129da565b9050919050565b60006020820190508181036000830152612f5a81612a20565b9050919050565b60006020820190508181036000830152612f7a81612a43565b9050919050565b60006020820190508181036000830152612f9a81612a66565b9050919050565b60006020820190508181036000830152612fba81612a89565b9050919050565b60006020820190508181036000830152612fda81612acf565b9050919050565b60006020820190508181036000830152612ffa81612b15565b9050919050565b6000602082019050818103600083015261301a81612b38565b9050919050565b6000602082019050818103600083015261303a81612b7e565b9050919050565b6000602082019050818103600083015261305a81612ba1565b9050919050565b6000602082019050818103600083015261307a81612be7565b9050919050565b6000602082019050818103600083015261309a81612c0a565b9050919050565b600060208201905081810360008301526130ba81612c50565b9050919050565b600060208201905081810360008301526130da81612c96565b9050919050565b600060208201905081810360008301526130fa81612cb9565b9050919050565b6000602082019050818103600083015261311a81612cdc565b9050919050565b60006020820190506131366000830184612cff565b92915050565b6000613146613157565b905061315282826133d2565b919050565b6000604051905090565b600067ffffffffffffffff82111561317c5761317b613568565b5b613185826135ab565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131e082613354565b91506131eb83613354565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132205761321f61347d565b5b828201905092915050565b600061323682613354565b915061324183613354565b925082613251576132506134ac565b5b828204905092915050565b600061326782613354565b915061327283613354565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132ab576132aa61347d565b5b828202905092915050565b60006132c182613354565b91506132cc83613354565b9250828210156132df576132de61347d565b5b828203905092915050565b60006132f582613334565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561338b578082015181840152602081019050613370565b8381111561339a576000848401525b50505050565b600060028204905060018216806133b857607f821691505b602082108114156133cc576133cb6134db565b5b50919050565b6133db826135ab565b810181811067ffffffffffffffff821117156133fa576133f9613568565b5b80604052505050565b600061340e82613354565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134415761344061347d565b5b600182019050919050565b600061345782613354565b915061346283613354565b925082613472576134716134ac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f227d2c207b2274726169745f74797065223a20224e6f756e222c2276616c756560008201527f223a202200000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f227d5d2c2022696d616765223a2022646174613a696d6167652f7376672b786d60008201527f6c3b6261736536342c0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f222c20226465736372697074696f6e223a20225374616765204e616d6573206160008201527f72652072616e646f6d206f6e636861696e206e616d657320696e73706972656460208201527f206279207468652057752d54616e6720436c616e206e616d652067656e65726160408201527f746f722e204665656c206672656520746f20757365205374616765204e616d6560608201527f7320696e20616e792077617920796f752077616e742e222c202261747472696260808201527f75746573223a205b7b2274726169745f74797065223a2022436f6c6f72222c2260a08201527f76616c7565223a2022000000000000000000000000000000000000000000000060c082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a20225374616765204e616d65202300000000000000000000600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f227d2c207b2274726169745f74797065223a202241646a656374697665222c2260008201527f76616c7565223a20220000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613cbb816132ea565b8114613cc657600080fd5b50565b613cd2816132fc565b8114613cdd57600080fd5b50565b613ce981613308565b8114613cf457600080fd5b50565b613d0081613354565b8114613d0b57600080fd5b5056fe3b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20323470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2232302220793d2232302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a204142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220a242c412e1748a0c79b77f5ec9dd4b2447ea3950391165d8b954d964482ee3e564736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80636352211e116100ad578063964a809111610071578063964a80911461037b578063a22cb465146103ab578063b88d4fde146103c7578063c87b56dd146103e3578063e985e9c5146104135761012c565b80636352211e1461029d578063667386f7146102cd57806370a08231146102fd57806380057b9a1461032d57806395d89b411461035d5761012c565b806323b872dd116100f457806323b872dd146101e95780632f745c5914610205578063379607f51461023557806342842e0e146102515780634f6ccce71461026d5761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b6004803603810190610146919061286f565b610443565b6040516101589190612ec4565b60405180910390f35b6101696104bd565b6040516101769190612edf565b60405180910390f35b610199600480360381019061019491906128c9565b61054f565b6040516101a69190612e5d565b60405180910390f35b6101c960048036038101906101c4919061282f565b6105d4565b005b6101d36106ec565b6040516101e09190613121565b60405180910390f35b61020360048036038101906101fe9190612719565b6106f9565b005b61021f600480360381019061021a919061282f565b610759565b60405161022c9190613121565b60405180910390f35b61024f600480360381019061024a91906128c9565b6107fe565b005b61026b60048036038101906102669190612719565b6108b8565b005b610287600480360381019061028291906128c9565b6108d8565b6040516102949190613121565b60405180910390f35b6102b760048036038101906102b291906128c9565b610949565b6040516102c49190612e5d565b60405180910390f35b6102e760048036038101906102e291906128c9565b6109fb565b6040516102f49190612edf565b60405180910390f35b610317600480360381019061031291906126ac565b610b15565b6040516103249190613121565b60405180910390f35b610347600480360381019061034291906128c9565b610bcd565b6040516103549190612edf565b60405180910390f35b610365610ce7565b6040516103729190612edf565b60405180910390f35b610395600480360381019061039091906128c9565b610d79565b6040516103a29190612edf565b60405180910390f35b6103c560048036038101906103c091906127ef565b610e93565b005b6103e160048036038101906103dc919061276c565b611014565b005b6103fd60048036038101906103f891906128c9565b611076565b60405161040a9190612edf565b60405180910390f35b61042d600480360381019061042891906126d9565b61135e565b60405161043a9190612ec4565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104b657506104b5826113f2565b5b9050919050565b6060600080546104cc906133a0565b80601f01602080910402602001604051908101604052809291908181526020018280546104f8906133a0565b80156105455780601f1061051a57610100808354040283529160200191610545565b820191906000526020600020905b81548152906001019060200180831161052857829003601f168201915b5050505050905090565b600061055a826114d4565b610599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059090613041565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105df82610949565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610647906130a1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661066f611540565b73ffffffffffffffffffffffffffffffffffffffff16148061069e575061069d81610698611540565b61135e565b5b6106dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d490612fc1565b60405180910390fd5b6106e78383611548565b505050565b6000600880549050905090565b61070a610704611540565b82611601565b610749576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610740906130c1565b60405180910390fd5b6107548383836116df565b505050565b600061076483610b15565b82106107a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079c90612f01565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6002600a541415610844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083b90613101565b60405180910390fd5b6002600a8190555060008111801561085d57506101a581105b61089c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089390613061565b60405180910390fd5b6108ad6108a7611540565b8261193b565b6001600a8190555050565b6108d383838360405180602001604052806000815250611014565b505050565b60006108e26106ec565b8210610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a906130e1565b60405180910390fd5b6008828154811061093757610936613539565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e990613001565b60405180910390fd5b80915050919050565b6060610b0e826040518060400160405280600581526020017f4649525354000000000000000000000000000000000000000000000000000000815250600b805480602002602001604051908101604052809291908181526020016000905b82821015610b05578382906000526020600020018054610a78906133a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa4906133a0565b8015610af15780601f10610ac657610100808354040283529160200191610af1565b820191906000526020600020905b815481529060010190602001808311610ad457829003601f168201915b505050505081526020019060010190610a59565b50505050611959565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90612fe1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060610ce0826040518060400160405280600581526020017f434f4c4f52000000000000000000000000000000000000000000000000000000815250600d805480602002602001604051908101604052809291908181526020016000905b82821015610cd7578382906000526020600020018054610c4a906133a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c76906133a0565b8015610cc35780601f10610c9857610100808354040283529160200191610cc3565b820191906000526020600020905b815481529060010190602001808311610ca657829003601f168201915b505050505081526020019060010190610c2b565b50505050611959565b9050919050565b606060018054610cf6906133a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d22906133a0565b8015610d6f5780601f10610d4457610100808354040283529160200191610d6f565b820191906000526020600020905b815481529060010190602001808311610d5257829003601f168201915b5050505050905090565b6060610e8c826040518060400160405280600481526020017f4c41535400000000000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b82821015610e83578382906000526020600020018054610df6906133a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e22906133a0565b8015610e6f5780601f10610e4457610100808354040283529160200191610e6f565b820191906000526020600020905b815481529060010190602001808311610e5257829003601f168201915b505050505081526020019060010190610dd7565b50505050611959565b9050919050565b610e9b611540565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090612f81565b60405180910390fd5b8060056000610f16611540565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fc3611540565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110089190612ec4565b60405180910390a35050565b61102561101f611540565b83611601565b611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b906130c1565b60405180910390fd5b611070848484846119c8565b50505050565b60606110806125ac565b6040518060a0016040528060778152602001613d9060779139816000600781106110ad576110ac613539565b5b60200201819052506110be83610bcd565b816001600781106110d2576110d1613539565b5b60200201819052506040518060c0016040528060818152602001613d0f608191398160026007811061110757611106613539565b5b6020020181905250611118836109fb565b8160036007811061112c5761112b613539565b5b60200201819052506040518060400160405280600181526020017f20000000000000000000000000000000000000000000000000000000000000008152508160046007811061117e5761117d613539565b5b602002018190525061118f83610d79565b816005600781106111a3576111a2613539565b5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000815250816006600781106111f5576111f4613539565b5b602002018190525060008160006007811061121357611212613539565b5b60200201518260016007811061122c5761122b613539565b5b60200201518360026007811061124557611244613539565b5b60200201518460036007811061125e5761125d613539565b5b60200201518560046007811061127757611276613539565b5b6020020151866005600781106112905761128f613539565b5b6020020151876006600781106112a9576112a8613539565b5b60200201516040516020016112c49796959493929190612d49565b6040516020818303038152906040529050600061132f6112e386611a24565b6112ec87610bcd565b6112f5886109fb565b6112fe89610d79565b61130787611b85565b60405160200161131b959493929190612dae565b604051602081830303815290604052611b85565b9050806040516020016113429190612e3b565b6040516020818303038152906040529150819350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806114bd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806114cd57506114cc82611d1d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115bb83610949565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061160c826114d4565b61164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290612fa1565b60405180910390fd5b600061165683610949565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116c557508373ffffffffffffffffffffffffffffffffffffffff166116ad8461054f565b73ffffffffffffffffffffffffffffffffffffffff16145b806116d657506116d5818561135e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166116ff82610949565b73ffffffffffffffffffffffffffffffffffffffff1614611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90613081565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90612f61565b60405180910390fd5b6117d0838383611d87565b6117db600082611548565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461182b91906132b6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461188291906131d5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611955828260405180602001604052806000815250611e9b565b5050565b6060600061198f8461196a87611a24565b60405160200161197b929190612d25565b604051602081830303815290604052611ef6565b90506000838451836119a1919061344c565b815181106119b2576119b1613539565b5b6020026020010151905080925050509392505050565b6119d38484846116df565b6119df84848484611f29565b611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590612f21565b60405180910390fd5b50505050565b60606000821415611a6c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b80565b600082905060005b60008214611a9e578080611a8790613403565b915050600a82611a97919061322b565b9150611a74565b60008167ffffffffffffffff811115611aba57611ab9613568565b5b6040519080825280601f01601f191660200182016040528015611aec5781602001600182028036833780820191505090505b5090505b60008514611b7957600182611b0591906132b6565b9150600a85611b14919061344c565b6030611b2091906131d5565b60f81b818381518110611b3657611b35613539565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b72919061322b565b9450611af0565b8093505050505b919050565b60606000825190506000811415611bae5760405180602001604052806000815250915050611d18565b60006003600283611bbf91906131d5565b611bc9919061322b565b6004611bd5919061325c565b90506000602082611be691906131d5565b67ffffffffffffffff811115611bff57611bfe613568565b5b6040519080825280601f01601f191660200182016040528015611c315781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001613e07604091399050600181016020830160005b86811015611cd55760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050611c5c565b506003860660018114611cef5760028114611cff57611d0a565b613d3d60f01b6002830352611d0a565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611d928383836120c0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dd557611dd0816120c5565b611e14565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e1357611e12838261210e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e5757611e528161227b565b611e96565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611e9557611e94828261234c565b5b5b505050565b611ea583836123cb565b611eb26000848484611f29565b611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee890612f21565b60405180910390fd5b505050565b600081604051602001611f099190612d0e565b6040516020818303038152906040528051906020012060001c9050919050565b6000611f4a8473ffffffffffffffffffffffffffffffffffffffff16612599565b156120b3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f73611540565b8786866040518563ffffffff1660e01b8152600401611f959493929190612e78565b602060405180830381600087803b158015611faf57600080fd5b505af1925050508015611fe057506040513d601f19601f82011682018060405250810190611fdd919061289c565b60015b612063573d8060008114612010576040519150601f19603f3d011682016040523d82523d6000602084013e612015565b606091505b5060008151141561205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290612f21565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120b8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161211b84610b15565b61212591906132b6565b905060006007600084815260200190815260200160002054905081811461220a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061228f91906132b6565b90506000600960008481526020019081526020016000205490506000600883815481106122bf576122be613539565b5b9060005260206000200154905080600883815481106122e1576122e0613539565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806123305761232f61350a565b5b6001900381819060005260206000200160009055905550505050565b600061235783610b15565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561243b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243290613021565b60405180910390fd5b612444816114d4565b15612484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247b90612f41565b60405180910390fd5b61249060008383611d87565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124e091906131d5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518060e001604052806007905b60608152602001906001900390816125bb5790505090565b60006125e66125e184613161565b61313c565b9050828152602081018484840111156126025761260161359c565b5b61260d84828561335e565b509392505050565b60008135905061262481613cb2565b92915050565b60008135905061263981613cc9565b92915050565b60008135905061264e81613ce0565b92915050565b60008151905061266381613ce0565b92915050565b600082601f83011261267e5761267d613597565b5b813561268e8482602086016125d3565b91505092915050565b6000813590506126a681613cf7565b92915050565b6000602082840312156126c2576126c16135a6565b5b60006126d084828501612615565b91505092915050565b600080604083850312156126f0576126ef6135a6565b5b60006126fe85828601612615565b925050602061270f85828601612615565b9150509250929050565b600080600060608486031215612732576127316135a6565b5b600061274086828701612615565b935050602061275186828701612615565b925050604061276286828701612697565b9150509250925092565b60008060008060808587031215612786576127856135a6565b5b600061279487828801612615565b94505060206127a587828801612615565b93505060406127b687828801612697565b925050606085013567ffffffffffffffff8111156127d7576127d66135a1565b5b6127e387828801612669565b91505092959194509250565b60008060408385031215612806576128056135a6565b5b600061281485828601612615565b92505060206128258582860161262a565b9150509250929050565b60008060408385031215612846576128456135a6565b5b600061285485828601612615565b925050602061286585828601612697565b9150509250929050565b600060208284031215612885576128846135a6565b5b60006128938482850161263f565b91505092915050565b6000602082840312156128b2576128b16135a6565b5b60006128c084828501612654565b91505092915050565b6000602082840312156128df576128de6135a6565b5b60006128ed84828501612697565b91505092915050565b6128ff816132ea565b82525050565b61290e816132fc565b82525050565b600061291f82613192565b61292981856131a8565b935061293981856020860161336d565b612942816135ab565b840191505092915050565b60006129588261319d565b61296281856131b9565b935061297281856020860161336d565b61297b816135ab565b840191505092915050565b60006129918261319d565b61299b81856131ca565b93506129ab81856020860161336d565b80840191505092915050565b60006129c4602b836131b9565b91506129cf826135bc565b604082019050919050565b60006129e76032836131b9565b91506129f28261360b565b604082019050919050565b6000612a0a6024836131ca565b9150612a158261365a565b602482019050919050565b6000612a2d601c836131b9565b9150612a38826136a9565b602082019050919050565b6000612a506024836131b9565b9150612a5b826136d2565b604082019050919050565b6000612a736019836131b9565b9150612a7e82613721565b602082019050919050565b6000612a96602c836131b9565b9150612aa18261374a565b604082019050919050565b6000612ab96029836131ca565b9150612ac482613799565b602982019050919050565b6000612adc6038836131b9565b9150612ae7826137e8565b604082019050919050565b6000612aff60c9836131ca565b9150612b0a82613837565b60c982019050919050565b6000612b22602a836131b9565b9150612b2d82613944565b604082019050919050565b6000612b456029836131b9565b9150612b5082613993565b604082019050919050565b6000612b686002836131ca565b9150612b73826139e2565b600282019050919050565b6000612b8b6020836131b9565b9150612b9682613a0b565b602082019050919050565b6000612bae602c836131b9565b9150612bb982613a34565b604082019050919050565b6000612bd16016836131ca565b9150612bdc82613a83565b601682019050919050565b6000612bf46010836131b9565b9150612bff82613aac565b602082019050919050565b6000612c176029836131b9565b9150612c2282613ad5565b604082019050919050565b6000612c3a6029836131ca565b9150612c4582613b24565b602982019050919050565b6000612c5d6021836131b9565b9150612c6882613b73565b604082019050919050565b6000612c80601d836131ca565b9150612c8b82613bc2565b601d82019050919050565b6000612ca36031836131b9565b9150612cae82613beb565b604082019050919050565b6000612cc6602c836131b9565b9150612cd182613c3a565b604082019050919050565b6000612ce9601f836131b9565b9150612cf482613c89565b602082019050919050565b612d0881613354565b82525050565b6000612d1a8284612986565b915081905092915050565b6000612d318285612986565b9150612d3d8284612986565b91508190509392505050565b6000612d55828a612986565b9150612d618289612986565b9150612d6d8288612986565b9150612d798287612986565b9150612d858286612986565b9150612d918285612986565b9150612d9d8284612986565b915081905098975050505050505050565b6000612db982612bc4565b9150612dc58288612986565b9150612dd082612af2565b9150612ddc8287612986565b9150612de782612c2d565b9150612df38286612986565b9150612dfe826129fd565b9150612e0a8285612986565b9150612e1582612aac565b9150612e218284612986565b9150612e2c82612b5b565b91508190509695505050505050565b6000612e4682612c73565b9150612e528284612986565b915081905092915050565b6000602082019050612e7260008301846128f6565b92915050565b6000608082019050612e8d60008301876128f6565b612e9a60208301866128f6565b612ea76040830185612cff565b8181036060830152612eb98184612914565b905095945050505050565b6000602082019050612ed96000830184612905565b92915050565b60006020820190508181036000830152612ef9818461294d565b905092915050565b60006020820190508181036000830152612f1a816129b7565b9050919050565b60006020820190508181036000830152612f3a816129da565b9050919050565b60006020820190508181036000830152612f5a81612a20565b9050919050565b60006020820190508181036000830152612f7a81612a43565b9050919050565b60006020820190508181036000830152612f9a81612a66565b9050919050565b60006020820190508181036000830152612fba81612a89565b9050919050565b60006020820190508181036000830152612fda81612acf565b9050919050565b60006020820190508181036000830152612ffa81612b15565b9050919050565b6000602082019050818103600083015261301a81612b38565b9050919050565b6000602082019050818103600083015261303a81612b7e565b9050919050565b6000602082019050818103600083015261305a81612ba1565b9050919050565b6000602082019050818103600083015261307a81612be7565b9050919050565b6000602082019050818103600083015261309a81612c0a565b9050919050565b600060208201905081810360008301526130ba81612c50565b9050919050565b600060208201905081810360008301526130da81612c96565b9050919050565b600060208201905081810360008301526130fa81612cb9565b9050919050565b6000602082019050818103600083015261311a81612cdc565b9050919050565b60006020820190506131366000830184612cff565b92915050565b6000613146613157565b905061315282826133d2565b919050565b6000604051905090565b600067ffffffffffffffff82111561317c5761317b613568565b5b613185826135ab565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131e082613354565b91506131eb83613354565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132205761321f61347d565b5b828201905092915050565b600061323682613354565b915061324183613354565b925082613251576132506134ac565b5b828204905092915050565b600061326782613354565b915061327283613354565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132ab576132aa61347d565b5b828202905092915050565b60006132c182613354565b91506132cc83613354565b9250828210156132df576132de61347d565b5b828203905092915050565b60006132f582613334565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561338b578082015181840152602081019050613370565b8381111561339a576000848401525b50505050565b600060028204905060018216806133b857607f821691505b602082108114156133cc576133cb6134db565b5b50919050565b6133db826135ab565b810181811067ffffffffffffffff821117156133fa576133f9613568565b5b80604052505050565b600061340e82613354565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134415761344061347d565b5b600182019050919050565b600061345782613354565b915061346283613354565b925082613472576134716134ac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f227d2c207b2274726169745f74797065223a20224e6f756e222c2276616c756560008201527f223a202200000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f227d5d2c2022696d616765223a2022646174613a696d6167652f7376672b786d60008201527f6c3b6261736536342c0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f222c20226465736372697074696f6e223a20225374616765204e616d6573206160008201527f72652072616e646f6d206f6e636861696e206e616d657320696e73706972656460208201527f206279207468652057752d54616e6720436c616e206e616d652067656e65726160408201527f746f722e204665656c206672656520746f20757365205374616765204e616d6560608201527f7320696e20616e792077617920796f752077616e742e222c202261747472696260808201527f75746573223a205b7b2274726169745f74797065223a2022436f6c6f72222c2260a08201527f76616c7565223a2022000000000000000000000000000000000000000000000060c082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a20225374616765204e616d65202300000000000000000000600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f227d2c207b2274726169745f74797065223a202241646a656374697665222c2260008201527f76616c7565223a20220000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613cbb816132ea565b8114613cc657600080fd5b50565b613cd2816132fc565b8114613cdd57600080fd5b50565b613ce981613308565b8114613cf457600080fd5b50565b613d0081613354565b8114613d0b57600080fd5b5056fe3b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20323470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2232302220793d2232302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a204142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220a242c412e1748a0c79b77f5ec9dd4b2447ea3950391165d8b954d964482ee3e564736f6c63430008070033

Deployed Bytecode Sourcemap

42357:5383:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36207:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23321:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24880:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24403:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36847:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25770:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36515:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46766:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26180:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37037:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23015:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44598:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22745:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44873:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23490:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44737:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25173:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26436:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45336:1422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25539:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36207:224;36309:4;36348:35;36333:50;;;:11;:50;;;;:90;;;;36387:36;36411:11;36387:23;:36::i;:::-;36333:90;36326:97;;36207:224;;;:::o;23321:100::-;23375:13;23408:5;23401:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23321:100;:::o;24880:221::-;24956:7;24984:16;24992:7;24984;:16::i;:::-;24976:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25069:15;:24;25085:7;25069:24;;;;;;;;;;;;;;;;;;;;;25062:31;;24880:221;;;:::o;24403:411::-;24484:13;24500:23;24515:7;24500:14;:23::i;:::-;24484:39;;24548:5;24542:11;;:2;:11;;;;24534:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24642:5;24626:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24651:37;24668:5;24675:12;:10;:12::i;:::-;24651:16;:37::i;:::-;24626:62;24604:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24785:21;24794:2;24798:7;24785:8;:21::i;:::-;24473:341;24403:411;;:::o;36847:113::-;36908:7;36935:10;:17;;;;36928:24;;36847:113;:::o;25770:339::-;25965:41;25984:12;:10;:12::i;:::-;25998:7;25965:18;:41::i;:::-;25957:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26073:28;26083:4;26089:2;26093:7;26073:9;:28::i;:::-;25770:339;;;:::o;36515:256::-;36612:7;36648:23;36665:5;36648:16;:23::i;:::-;36640:5;:31;36632:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36737:12;:19;36750:5;36737:19;;;;;;;;;;;;;;;:26;36757:5;36737:26;;;;;;;;;;;;36730:33;;36515:256;;;;:::o;46766:171::-;10001:1;10597:7;;:19;;10589:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10001:1;10730:7;:18;;;;46847:1:::1;46837:7;:11;:28;;;;;46862:3;46852:7;:13;46837:28;46829:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46897:32;46907:12;:10;:12::i;:::-;46921:7;46897:9;:32::i;:::-;9957:1:::0;10909:7;:22;;;;46766:171;:::o;26180:185::-;26318:39;26335:4;26341:2;26345:7;26318:39;;;;;;;;;;;;:16;:39::i;:::-;26180:185;;;:::o;37037:233::-;37112:7;37148:30;:28;:30::i;:::-;37140:5;:38;37132:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;37245:10;37256:5;37245:17;;;;;;;;:::i;:::-;;;;;;;;;;37238:24;;37037:233;;;:::o;23015:239::-;23087:7;23107:13;23123:7;:16;23131:7;23123:16;;;;;;;;;;;;;;;;;;;;;23107:32;;23175:1;23158:19;;:5;:19;;;;23150:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23241:5;23234:12;;;23015:239;;;:::o;44598:127::-;44654:13;44687:30;44693:7;44687:30;;;;;;;;;;;;;;;;;44711:5;44687:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:30::i;:::-;44680:37;;44598:127;;;:::o;22745:208::-;22817:7;22862:1;22845:19;;:5;:19;;;;22837:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22929:9;:16;22939:5;22929:16;;;;;;;;;;;;;;;;22922:23;;22745:208;;;:::o;44873:127::-;44929:13;44962:30;44968:7;44962:30;;;;;;;;;;;;;;;;;44986:5;44962:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:30::i;:::-;44955:37;;44873:127;;;:::o;23490:104::-;23546:13;23579:7;23572:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23490:104;:::o;44737:124::-;44792:13;44825:28;44831:7;44825:28;;;;;;;;;;;;;;;;;44848:4;44825:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:28::i;:::-;44818:35;;44737:124;;;:::o;25173:295::-;25288:12;:10;:12::i;:::-;25276:24;;:8;:24;;;;25268:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25388:8;25343:18;:32;25362:12;:10;:12::i;:::-;25343:32;;;;;;;;;;;;;;;:42;25376:8;25343:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25441:8;25412:48;;25427:12;:10;:12::i;:::-;25412:48;;;25451:8;25412:48;;;;;;:::i;:::-;;;;;;;;25173:295;;:::o;26436:328::-;26611:41;26630:12;:10;:12::i;:::-;26644:7;26611:18;:41::i;:::-;26603:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26717:39;26731:4;26737:2;26741:7;26750:5;26717:13;:39::i;:::-;26436:328;;;;:::o;45336:1422::-;45401:13;45427:22;;:::i;:::-;45460:132;;;;;;;;;;;;;;;;;:5;45466:1;45460:8;;;;;;;:::i;:::-;;;;;:132;;;;45624:17;45633:7;45624:8;:17::i;:::-;45613:5;45619:1;45613:8;;;;;;;:::i;:::-;;;;;:28;;;;45662:142;;;;;;;;;;;;;;;;;:5;45668:1;45662:8;;;;;;;:::i;:::-;;;;;:142;;;;45828:17;45837:7;45828:8;:17::i;:::-;45817:5;45823:1;45817:8;;;;;;;:::i;:::-;;;;;:28;;;;45858:14;;;;;;;;;;;;;;;;;:5;45864:1;45858:8;;;;;;;:::i;:::-;;;;;:14;;;;45896:16;45904:7;45896;:16::i;:::-;45885:5;45891:1;45885:8;;;;;;;:::i;:::-;;;;;:27;;;;45925:26;;;;;;;;;;;;;;;;;:5;45931:1;45925:8;;;;;;;:::i;:::-;;;;;:26;;;;45964:20;46011:5;46017:1;46011:8;;;;;;;:::i;:::-;;;;;;46021:5;46027:1;46021:8;;;;;;;:::i;:::-;;;;;;46031:5;46037:1;46031:8;;;;;;;:::i;:::-;;;;;;46041:5;46047:1;46041:8;;;;;;;:::i;:::-;;;;;;46051:5;46057:1;46051:8;;;;;;;:::i;:::-;;;;;;46061:5;46067:1;46061:8;;;;;;;:::i;:::-;;;;;;46071:5;46077:1;46071:8;;;;;;;:::i;:::-;;;;;;45994:86;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45964:117;;46102:18;46123:518;46193:17;46202:7;46193:8;:17::i;:::-;46417;46426:7;46417:8;:17::i;:::-;46481;46490:7;46481:8;:17::i;:::-;46540:16;46548:7;46540;:16::i;:::-;46603:28;46623:6;46603:13;:28::i;:::-;46150:488;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46123:13;:518::i;:::-;46102:539;;46718:4;46668:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;46652:72;;46744:6;46737:13;;;;;45336:1422;;;:::o;25539:164::-;25636:4;25660:18;:25;25679:5;25660:25;;;;;;;;;;;;;;;:35;25686:8;25660:35;;;;;;;;;;;;;;;;;;;;;;;;;25653:42;;25539:164;;;;:::o;22376:305::-;22478:4;22530:25;22515:40;;;:11;:40;;;;:105;;;;22587:33;22572:48;;;:11;:48;;;;22515:105;:158;;;;22637:36;22661:11;22637:23;:36::i;:::-;22515:158;22495:178;;22376:305;;;:::o;28274:127::-;28339:4;28391:1;28363:30;;:7;:16;28371:7;28363:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28356:37;;28274:127;;;:::o;8136:98::-;8189:7;8216:10;8209:17;;8136:98;:::o;32256:174::-;32358:2;32331:15;:24;32347:7;32331:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32414:7;32410:2;32376:46;;32385:23;32400:7;32385:14;:23::i;:::-;32376:46;;;;;;;;;;;;32256:174;;:::o;28568:348::-;28661:4;28686:16;28694:7;28686;:16::i;:::-;28678:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28762:13;28778:23;28793:7;28778:14;:23::i;:::-;28762:39;;28831:5;28820:16;;:7;:16;;;:51;;;;28864:7;28840:31;;:20;28852:7;28840:11;:20::i;:::-;:31;;;28820:51;:87;;;;28875:32;28892:5;28899:7;28875:16;:32::i;:::-;28820:87;28812:96;;;28568:348;;;;:::o;31560:578::-;31719:4;31692:31;;:23;31707:7;31692:14;:23::i;:::-;:31;;;31684:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31802:1;31788:16;;:2;:16;;;;31780:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31858:39;31879:4;31885:2;31889:7;31858:20;:39::i;:::-;31962:29;31979:1;31983:7;31962:8;:29::i;:::-;32023:1;32004:9;:15;32014:4;32004:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32052:1;32035:9;:13;32045:2;32035:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32083:2;32064:7;:16;32072:7;32064:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32122:7;32118:2;32103:27;;32112:4;32103:27;;;;;;;;;;;;31560:578;;;:::o;29258:110::-;29334:26;29344:2;29348:7;29334:26;;;;;;;;;;;;:9;:26::i;:::-;29258:110;;:::o;45012:316::-;45121:13;45147:12;45162:62;45193:9;45204:17;45213:7;45204:8;:17::i;:::-;45176:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45162:6;:62::i;:::-;45147:77;;45235:20;45258:11;45277;:18;45270:4;:25;;;;:::i;:::-;45258:38;;;;;;;;:::i;:::-;;;;;;;;45235:61;;45314:6;45307:13;;;;45012:316;;;;;:::o;27646:315::-;27803:28;27813:4;27819:2;27823:7;27803:9;:28::i;:::-;27850:48;27873:4;27879:2;27883:7;27892:5;27850:22;:48::i;:::-;27842:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27646:315;;;;:::o;46949:715::-;47005:13;47227:1;47218:5;:10;47214:53;;;47245:10;;;;;;;;;;;;;;;;;;;;;47214:53;47277:12;47292:5;47277:20;;47308:14;47333:78;47348:1;47340:4;:9;47333:78;;47366:8;;;;;:::i;:::-;;;;47397:2;47389:10;;;;;:::i;:::-;;;47333:78;;;47421:19;47453:6;47443:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47421:39;;47471:154;47487:1;47478:5;:10;47471:154;;47515:1;47505:11;;;;;:::i;:::-;;;47582:2;47574:5;:10;;;;:::i;:::-;47561:2;:24;;;;:::i;:::-;47548:39;;47531:6;47538;47531:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;47611:2;47602:11;;;;;:::i;:::-;;;47471:154;;;47649:6;47635:21;;;;;46949:715;;;;:::o;48091:1607::-;48149:13;48175:11;48189:4;:11;48175:25;;48222:1;48215:3;:8;48211:23;;;48225:9;;;;;;;;;;;;;;;;;48211:23;48286:18;48324:1;48319;48313:3;:7;;;;:::i;:::-;48312:13;;;;:::i;:::-;48307:1;:19;;;;:::i;:::-;48286:40;;48384:19;48429:2;48416:10;:15;;;;:::i;:::-;48406:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48384:48;;48445:18;48466:5;;;;;;;;;;;;;;;;;48445:26;;48535:1;48528:5;48524:13;48580:2;48572:6;48568:15;48631:1;48599:777;48654:3;48651:1;48648:10;48599:777;;;48709:1;48706;48702:9;48697:14;;48767:8;48762:1;48756:4;48752:12;48746:19;48742:34;48847:4;48839:5;48835:2;48831:14;48827:25;48817:8;48813:40;48807:47;48886:3;48883:1;48879:11;48872:18;;48977:4;48968;48960:5;48956:2;48952:14;48948:25;48938:8;48934:40;48928:47;48924:58;48919:3;48915:68;48908:75;;49015:3;49012:1;49008:11;49001:18;;49105:4;49096;49088:5;49085:1;49081:13;49077:24;49067:8;49063:39;49057:46;49053:57;49048:3;49044:67;49037:74;;49143:3;49140:1;49136:11;49129:18;;49225:4;49216;49209:5;49205:16;49195:8;49191:31;49185:38;49181:49;49176:3;49172:59;49165:66;;49265:3;49260;49256:13;49249:20;;49307:3;49296:9;49289:22;49359:1;49348:9;49344:17;49331:30;;48678:698;;48599:777;;;48603:44;49408:1;49403:3;49399:11;49429:1;49424:84;;;;49527:1;49522:82;;;;49392:212;;49424:84;49485:6;49480:3;49476:16;49472:1;49461:9;49457:17;49450:43;49424:84;;49522:82;49583:4;49578:3;49574:14;49570:1;49559:9;49555:17;49548:41;49392:212;;49635:10;49627:6;49620:26;48493:1164;;49683:6;49669:21;;;;;;48091:1607;;;;:::o;20983:157::-;21068:4;21107:25;21092:40;;;:11;:40;;;;21085:47;;20983:157;;;:::o;37883:589::-;38027:45;38054:4;38060:2;38064:7;38027:26;:45::i;:::-;38105:1;38089:18;;:4;:18;;;38085:187;;;38124:40;38156:7;38124:31;:40::i;:::-;38085:187;;;38194:2;38186:10;;:4;:10;;;38182:90;;38213:47;38246:4;38252:7;38213:32;:47::i;:::-;38182:90;38085:187;38300:1;38286:16;;:2;:16;;;38282:183;;;38319:45;38356:7;38319:36;:45::i;:::-;38282:183;;;38392:4;38386:10;;:2;:10;;;38382:83;;38413:40;38441:2;38445:7;38413:27;:40::i;:::-;38382:83;38282:183;37883:589;;;:::o;29595:321::-;29725:18;29731:2;29735:7;29725:5;:18::i;:::-;29776:54;29807:1;29811:2;29815:7;29824:5;29776:22;:54::i;:::-;29754:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29595:321;;;:::o;44448:138::-;44508:7;44570:5;44553:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;44543:34;;;;;;44535:43;;44528:50;;44448:138;;;:::o;32995:803::-;33150:4;33171:15;:2;:13;;;:15::i;:::-;33167:624;;;33223:2;33207:36;;;33244:12;:10;:12::i;:::-;33258:4;33264:7;33273:5;33207:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33203:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33470:1;33453:6;:13;:18;33449:272;;;33496:60;;;;;;;;;;:::i;:::-;;;;;;;;33449:272;33671:6;33665:13;33656:6;33652:2;33648:15;33641:38;33203:533;33340:45;;;33330:55;;;:6;:55;;;;33323:62;;;;;33167:624;33775:4;33768:11;;32995:803;;;;;;;:::o;34370:126::-;;;;:::o;39195:164::-;39299:10;:17;;;;39272:15;:24;39288:7;39272:24;;;;;;;;;;;:44;;;;39327:10;39343:7;39327:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39195:164;:::o;39986:988::-;40252:22;40302:1;40277:22;40294:4;40277:16;:22::i;:::-;:26;;;;:::i;:::-;40252:51;;40314:18;40335:17;:26;40353:7;40335:26;;;;;;;;;;;;40314:47;;40482:14;40468:10;:28;40464:328;;40513:19;40535:12;:18;40548:4;40535:18;;;;;;;;;;;;;;;:34;40554:14;40535:34;;;;;;;;;;;;40513:56;;40619:11;40586:12;:18;40599:4;40586:18;;;;;;;;;;;;;;;:30;40605:10;40586:30;;;;;;;;;;;:44;;;;40736:10;40703:17;:30;40721:11;40703:30;;;;;;;;;;;:43;;;;40498:294;40464:328;40888:17;:26;40906:7;40888:26;;;;;;;;;;;40881:33;;;40932:12;:18;40945:4;40932:18;;;;;;;;;;;;;;;:34;40951:14;40932:34;;;;;;;;;;;40925:41;;;40067:907;;39986:988;;:::o;41269:1079::-;41522:22;41567:1;41547:10;:17;;;;:21;;;;:::i;:::-;41522:46;;41579:18;41600:15;:24;41616:7;41600:24;;;;;;;;;;;;41579:45;;41951:19;41973:10;41984:14;41973:26;;;;;;;;:::i;:::-;;;;;;;;;;41951:48;;42037:11;42012:10;42023;42012:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42148:10;42117:15;:28;42133:11;42117:28;;;;;;;;;;;:41;;;;42289:15;:24;42305:7;42289:24;;;;;;;;;;;42282:31;;;42324:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41340:1008;;;41269:1079;:::o;38773:221::-;38858:14;38875:20;38892:2;38875:16;:20::i;:::-;38858:37;;38933:7;38906:12;:16;38919:2;38906:16;;;;;;;;;;;;;;;:24;38923:6;38906:24;;;;;;;;;;;:34;;;;38980:6;38951:17;:26;38969:7;38951:26;;;;;;;;;;;:35;;;;38847:147;38773:221;;:::o;30252:382::-;30346:1;30332:16;;:2;:16;;;;30324:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30405:16;30413:7;30405;:16::i;:::-;30404:17;30396:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30467:45;30496:1;30500:2;30504:7;30467:20;:45::i;:::-;30542:1;30525:9;:13;30535:2;30525:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30573:2;30554:7;:16;30562:7;30554:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30618:7;30614:2;30593:33;;30610:1;30593:33;;;;;;;;;;;;30252:382;;:::o;13155:387::-;13215:4;13423:12;13490:7;13478:20;13470:28;;13533:1;13526:4;:8;13519:15;;;13155:387;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:118::-;5952:24;5970:5;5952:24;:::i;:::-;5947:3;5940:37;5865:118;;:::o;5989:109::-;6070:21;6085:5;6070:21;:::i;:::-;6065:3;6058:34;5989:109;;:::o;6104:360::-;6190:3;6218:38;6250:5;6218:38;:::i;:::-;6272:70;6335:6;6330:3;6272:70;:::i;:::-;6265:77;;6351:52;6396:6;6391:3;6384:4;6377:5;6373:16;6351:52;:::i;:::-;6428:29;6450:6;6428:29;:::i;:::-;6423:3;6419:39;6412:46;;6194:270;6104:360;;;;:::o;6470:364::-;6558:3;6586:39;6619:5;6586:39;:::i;:::-;6641:71;6705:6;6700:3;6641:71;:::i;:::-;6634:78;;6721:52;6766:6;6761:3;6754:4;6747:5;6743:16;6721:52;:::i;:::-;6798:29;6820:6;6798:29;:::i;:::-;6793:3;6789:39;6782:46;;6562:272;6470:364;;;;:::o;6840:377::-;6946:3;6974:39;7007:5;6974:39;:::i;:::-;7029:89;7111:6;7106:3;7029:89;:::i;:::-;7022:96;;7127:52;7172:6;7167:3;7160:4;7153:5;7149:16;7127:52;:::i;:::-;7204:6;7199:3;7195:16;7188:23;;6950:267;6840:377;;;;:::o;7223:366::-;7365:3;7386:67;7450:2;7445:3;7386:67;:::i;:::-;7379:74;;7462:93;7551:3;7462:93;:::i;:::-;7580:2;7575:3;7571:12;7564:19;;7223:366;;;:::o;7595:::-;7737:3;7758:67;7822:2;7817:3;7758:67;:::i;:::-;7751:74;;7834:93;7923:3;7834:93;:::i;:::-;7952:2;7947:3;7943:12;7936:19;;7595:366;;;:::o;7967:402::-;8127:3;8148:85;8230:2;8225:3;8148:85;:::i;:::-;8141:92;;8242:93;8331:3;8242:93;:::i;:::-;8360:2;8355:3;8351:12;8344:19;;7967:402;;;:::o;8375:366::-;8517:3;8538:67;8602:2;8597:3;8538:67;:::i;:::-;8531:74;;8614:93;8703:3;8614:93;:::i;:::-;8732:2;8727:3;8723:12;8716:19;;8375:366;;;:::o;8747:::-;8889:3;8910:67;8974:2;8969:3;8910:67;:::i;:::-;8903:74;;8986:93;9075:3;8986:93;:::i;:::-;9104:2;9099:3;9095:12;9088:19;;8747:366;;;:::o;9119:::-;9261:3;9282:67;9346:2;9341:3;9282:67;:::i;:::-;9275:74;;9358:93;9447:3;9358:93;:::i;:::-;9476:2;9471:3;9467:12;9460:19;;9119:366;;;:::o;9491:::-;9633:3;9654:67;9718:2;9713:3;9654:67;:::i;:::-;9647:74;;9730:93;9819:3;9730:93;:::i;:::-;9848:2;9843:3;9839:12;9832:19;;9491:366;;;:::o;9863:402::-;10023:3;10044:85;10126:2;10121:3;10044:85;:::i;:::-;10037:92;;10138:93;10227:3;10138:93;:::i;:::-;10256:2;10251:3;10247:12;10240:19;;9863:402;;;:::o;10271:366::-;10413:3;10434:67;10498:2;10493:3;10434:67;:::i;:::-;10427:74;;10510:93;10599:3;10510:93;:::i;:::-;10628:2;10623:3;10619:12;10612:19;;10271:366;;;:::o;10643:404::-;10803:3;10824:86;10906:3;10901;10824:86;:::i;:::-;10817:93;;10919;11008:3;10919:93;:::i;:::-;11037:3;11032;11028:13;11021:20;;10643:404;;;:::o;11053:366::-;11195:3;11216:67;11280:2;11275:3;11216:67;:::i;:::-;11209:74;;11292:93;11381:3;11292:93;:::i;:::-;11410:2;11405:3;11401:12;11394:19;;11053:366;;;:::o;11425:::-;11567:3;11588:67;11652:2;11647:3;11588:67;:::i;:::-;11581:74;;11664:93;11753:3;11664:93;:::i;:::-;11782:2;11777:3;11773:12;11766:19;;11425:366;;;:::o;11797:400::-;11957:3;11978:84;12060:1;12055:3;11978:84;:::i;:::-;11971:91;;12071:93;12160:3;12071:93;:::i;:::-;12189:1;12184:3;12180:11;12173:18;;11797:400;;;:::o;12203:366::-;12345:3;12366:67;12430:2;12425:3;12366:67;:::i;:::-;12359:74;;12442:93;12531:3;12442:93;:::i;:::-;12560:2;12555:3;12551:12;12544:19;;12203:366;;;:::o;12575:::-;12717:3;12738:67;12802:2;12797:3;12738:67;:::i;:::-;12731:74;;12814:93;12903:3;12814:93;:::i;:::-;12932:2;12927:3;12923:12;12916:19;;12575:366;;;:::o;12947:402::-;13107:3;13128:85;13210:2;13205:3;13128:85;:::i;:::-;13121:92;;13222:93;13311:3;13222:93;:::i;:::-;13340:2;13335:3;13331:12;13324:19;;12947:402;;;:::o;13355:366::-;13497:3;13518:67;13582:2;13577:3;13518:67;:::i;:::-;13511:74;;13594:93;13683:3;13594:93;:::i;:::-;13712:2;13707:3;13703:12;13696:19;;13355:366;;;:::o;13727:::-;13869:3;13890:67;13954:2;13949:3;13890:67;:::i;:::-;13883:74;;13966:93;14055:3;13966:93;:::i;:::-;14084:2;14079:3;14075:12;14068:19;;13727:366;;;:::o;14099:402::-;14259:3;14280:85;14362:2;14357:3;14280:85;:::i;:::-;14273:92;;14374:93;14463:3;14374:93;:::i;:::-;14492:2;14487:3;14483:12;14476:19;;14099:402;;;:::o;14507:366::-;14649:3;14670:67;14734:2;14729:3;14670:67;:::i;:::-;14663:74;;14746:93;14835:3;14746:93;:::i;:::-;14864:2;14859:3;14855:12;14848:19;;14507:366;;;:::o;14879:402::-;15039:3;15060:85;15142:2;15137:3;15060:85;:::i;:::-;15053:92;;15154:93;15243:3;15154:93;:::i;:::-;15272:2;15267:3;15263:12;15256:19;;14879:402;;;:::o;15287:366::-;15429:3;15450:67;15514:2;15509:3;15450:67;:::i;:::-;15443:74;;15526:93;15615:3;15526:93;:::i;:::-;15644:2;15639:3;15635:12;15628:19;;15287:366;;;:::o;15659:::-;15801:3;15822:67;15886:2;15881:3;15822:67;:::i;:::-;15815:74;;15898:93;15987:3;15898:93;:::i;:::-;16016:2;16011:3;16007:12;16000:19;;15659:366;;;:::o;16031:::-;16173:3;16194:67;16258:2;16253:3;16194:67;:::i;:::-;16187:74;;16270:93;16359:3;16270:93;:::i;:::-;16388:2;16383:3;16379:12;16372:19;;16031:366;;;:::o;16403:118::-;16490:24;16508:5;16490:24;:::i;:::-;16485:3;16478:37;16403:118;;:::o;16527:275::-;16659:3;16681:95;16772:3;16763:6;16681:95;:::i;:::-;16674:102;;16793:3;16786:10;;16527:275;;;;:::o;16808:435::-;16988:3;17010:95;17101:3;17092:6;17010:95;:::i;:::-;17003:102;;17122:95;17213:3;17204:6;17122:95;:::i;:::-;17115:102;;17234:3;17227:10;;16808:435;;;;;:::o;17249:1235::-;17669:3;17691:95;17782:3;17773:6;17691:95;:::i;:::-;17684:102;;17803:95;17894:3;17885:6;17803:95;:::i;:::-;17796:102;;17915:95;18006:3;17997:6;17915:95;:::i;:::-;17908:102;;18027:95;18118:3;18109:6;18027:95;:::i;:::-;18020:102;;18139:95;18230:3;18221:6;18139:95;:::i;:::-;18132:102;;18251:95;18342:3;18333:6;18251:95;:::i;:::-;18244:102;;18363:95;18454:3;18445:6;18363:95;:::i;:::-;18356:102;;18475:3;18468:10;;17249:1235;;;;;;;;;;:::o;18490:2511::-;19420:3;19442:148;19586:3;19442:148;:::i;:::-;19435:155;;19607:95;19698:3;19689:6;19607:95;:::i;:::-;19600:102;;19719:148;19863:3;19719:148;:::i;:::-;19712:155;;19884:95;19975:3;19966:6;19884:95;:::i;:::-;19877:102;;19996:148;20140:3;19996:148;:::i;:::-;19989:155;;20161:95;20252:3;20243:6;20161:95;:::i;:::-;20154:102;;20273:148;20417:3;20273:148;:::i;:::-;20266:155;;20438:95;20529:3;20520:6;20438:95;:::i;:::-;20431:102;;20550:148;20694:3;20550:148;:::i;:::-;20543:155;;20715:95;20806:3;20797:6;20715:95;:::i;:::-;20708:102;;20827:148;20971:3;20827:148;:::i;:::-;20820:155;;20992:3;20985:10;;18490:2511;;;;;;;;:::o;21007:541::-;21240:3;21262:148;21406:3;21262:148;:::i;:::-;21255:155;;21427:95;21518:3;21509:6;21427:95;:::i;:::-;21420:102;;21539:3;21532:10;;21007:541;;;;:::o;21554:222::-;21647:4;21685:2;21674:9;21670:18;21662:26;;21698:71;21766:1;21755:9;21751:17;21742:6;21698:71;:::i;:::-;21554:222;;;;:::o;21782:640::-;21977:4;22015:3;22004:9;22000:19;21992:27;;22029:71;22097:1;22086:9;22082:17;22073:6;22029:71;:::i;:::-;22110:72;22178:2;22167:9;22163:18;22154:6;22110:72;:::i;:::-;22192;22260:2;22249:9;22245:18;22236:6;22192:72;:::i;:::-;22311:9;22305:4;22301:20;22296:2;22285:9;22281:18;22274:48;22339:76;22410:4;22401:6;22339:76;:::i;:::-;22331:84;;21782:640;;;;;;;:::o;22428:210::-;22515:4;22553:2;22542:9;22538:18;22530:26;;22566:65;22628:1;22617:9;22613:17;22604:6;22566:65;:::i;:::-;22428:210;;;;:::o;22644:313::-;22757:4;22795:2;22784:9;22780:18;22772:26;;22844:9;22838:4;22834:20;22830:1;22819:9;22815:17;22808:47;22872:78;22945:4;22936:6;22872:78;:::i;:::-;22864:86;;22644:313;;;;:::o;22963:419::-;23129:4;23167:2;23156:9;23152:18;23144:26;;23216:9;23210:4;23206:20;23202:1;23191:9;23187:17;23180:47;23244:131;23370:4;23244:131;:::i;:::-;23236:139;;22963:419;;;:::o;23388:::-;23554:4;23592:2;23581:9;23577:18;23569:26;;23641:9;23635:4;23631:20;23627:1;23616:9;23612:17;23605:47;23669:131;23795:4;23669:131;:::i;:::-;23661:139;;23388:419;;;:::o;23813:::-;23979:4;24017:2;24006:9;24002:18;23994:26;;24066:9;24060:4;24056:20;24052:1;24041:9;24037:17;24030:47;24094:131;24220:4;24094:131;:::i;:::-;24086:139;;23813:419;;;:::o;24238:::-;24404:4;24442:2;24431:9;24427:18;24419:26;;24491:9;24485:4;24481:20;24477:1;24466:9;24462:17;24455:47;24519:131;24645:4;24519:131;:::i;:::-;24511:139;;24238:419;;;:::o;24663:::-;24829:4;24867:2;24856:9;24852:18;24844:26;;24916:9;24910:4;24906:20;24902:1;24891:9;24887:17;24880:47;24944:131;25070:4;24944:131;:::i;:::-;24936:139;;24663:419;;;:::o;25088:::-;25254:4;25292:2;25281:9;25277:18;25269:26;;25341:9;25335:4;25331:20;25327:1;25316:9;25312:17;25305:47;25369:131;25495:4;25369:131;:::i;:::-;25361:139;;25088:419;;;:::o;25513:::-;25679:4;25717:2;25706:9;25702:18;25694:26;;25766:9;25760:4;25756:20;25752:1;25741:9;25737:17;25730:47;25794:131;25920:4;25794:131;:::i;:::-;25786:139;;25513:419;;;:::o;25938:::-;26104:4;26142:2;26131:9;26127:18;26119:26;;26191:9;26185:4;26181:20;26177:1;26166:9;26162:17;26155:47;26219:131;26345:4;26219:131;:::i;:::-;26211:139;;25938:419;;;:::o;26363:::-;26529:4;26567:2;26556:9;26552:18;26544:26;;26616:9;26610:4;26606:20;26602:1;26591:9;26587:17;26580:47;26644:131;26770:4;26644:131;:::i;:::-;26636:139;;26363:419;;;:::o;26788:::-;26954:4;26992:2;26981:9;26977:18;26969:26;;27041:9;27035:4;27031:20;27027:1;27016:9;27012:17;27005:47;27069:131;27195:4;27069:131;:::i;:::-;27061:139;;26788:419;;;:::o;27213:::-;27379:4;27417:2;27406:9;27402:18;27394:26;;27466:9;27460:4;27456:20;27452:1;27441:9;27437:17;27430:47;27494:131;27620:4;27494:131;:::i;:::-;27486:139;;27213:419;;;:::o;27638:::-;27804:4;27842:2;27831:9;27827:18;27819:26;;27891:9;27885:4;27881:20;27877:1;27866:9;27862:17;27855:47;27919:131;28045:4;27919:131;:::i;:::-;27911:139;;27638:419;;;:::o;28063:::-;28229:4;28267:2;28256:9;28252:18;28244:26;;28316:9;28310:4;28306:20;28302:1;28291:9;28287:17;28280:47;28344:131;28470:4;28344:131;:::i;:::-;28336:139;;28063:419;;;:::o;28488:::-;28654:4;28692:2;28681:9;28677:18;28669:26;;28741:9;28735:4;28731:20;28727:1;28716:9;28712:17;28705:47;28769:131;28895:4;28769:131;:::i;:::-;28761:139;;28488:419;;;:::o;28913:::-;29079:4;29117:2;29106:9;29102:18;29094:26;;29166:9;29160:4;29156:20;29152:1;29141:9;29137:17;29130:47;29194:131;29320:4;29194:131;:::i;:::-;29186:139;;28913:419;;;:::o;29338:::-;29504:4;29542:2;29531:9;29527:18;29519:26;;29591:9;29585:4;29581:20;29577:1;29566:9;29562:17;29555:47;29619:131;29745:4;29619:131;:::i;:::-;29611:139;;29338:419;;;:::o;29763:::-;29929:4;29967:2;29956:9;29952:18;29944:26;;30016:9;30010:4;30006:20;30002:1;29991:9;29987:17;29980:47;30044:131;30170:4;30044:131;:::i;:::-;30036:139;;29763:419;;;:::o;30188:222::-;30281:4;30319:2;30308:9;30304:18;30296:26;;30332:71;30400:1;30389:9;30385:17;30376:6;30332:71;:::i;:::-;30188:222;;;;:::o;30416:129::-;30450:6;30477:20;;:::i;:::-;30467:30;;30506:33;30534:4;30526:6;30506:33;:::i;:::-;30416:129;;;:::o;30551:75::-;30584:6;30617:2;30611:9;30601:19;;30551:75;:::o;30632:307::-;30693:4;30783:18;30775:6;30772:30;30769:56;;;30805:18;;:::i;:::-;30769:56;30843:29;30865:6;30843:29;:::i;:::-;30835:37;;30927:4;30921;30917:15;30909:23;;30632:307;;;:::o;30945:98::-;30996:6;31030:5;31024:12;31014:22;;30945:98;;;:::o;31049:99::-;31101:6;31135:5;31129:12;31119:22;;31049:99;;;:::o;31154:168::-;31237:11;31271:6;31266:3;31259:19;31311:4;31306:3;31302:14;31287:29;;31154:168;;;;:::o;31328:169::-;31412:11;31446:6;31441:3;31434:19;31486:4;31481:3;31477:14;31462:29;;31328:169;;;;:::o;31503:148::-;31605:11;31642:3;31627:18;;31503:148;;;;:::o;31657:305::-;31697:3;31716:20;31734:1;31716:20;:::i;:::-;31711:25;;31750:20;31768:1;31750:20;:::i;:::-;31745:25;;31904:1;31836:66;31832:74;31829:1;31826:81;31823:107;;;31910:18;;:::i;:::-;31823:107;31954:1;31951;31947:9;31940:16;;31657:305;;;;:::o;31968:185::-;32008:1;32025:20;32043:1;32025:20;:::i;:::-;32020:25;;32059:20;32077:1;32059:20;:::i;:::-;32054:25;;32098:1;32088:35;;32103:18;;:::i;:::-;32088:35;32145:1;32142;32138:9;32133:14;;31968:185;;;;:::o;32159:348::-;32199:7;32222:20;32240:1;32222:20;:::i;:::-;32217:25;;32256:20;32274:1;32256:20;:::i;:::-;32251:25;;32444:1;32376:66;32372:74;32369:1;32366:81;32361:1;32354:9;32347:17;32343:105;32340:131;;;32451:18;;:::i;:::-;32340:131;32499:1;32496;32492:9;32481:20;;32159:348;;;;:::o;32513:191::-;32553:4;32573:20;32591:1;32573:20;:::i;:::-;32568:25;;32607:20;32625:1;32607:20;:::i;:::-;32602:25;;32646:1;32643;32640:8;32637:34;;;32651:18;;:::i;:::-;32637:34;32696:1;32693;32689:9;32681:17;;32513:191;;;;:::o;32710:96::-;32747:7;32776:24;32794:5;32776:24;:::i;:::-;32765:35;;32710:96;;;:::o;32812:90::-;32846:7;32889:5;32882:13;32875:21;32864:32;;32812:90;;;:::o;32908:149::-;32944:7;32984:66;32977:5;32973:78;32962:89;;32908:149;;;:::o;33063:126::-;33100:7;33140:42;33133:5;33129:54;33118:65;;33063:126;;;:::o;33195:77::-;33232:7;33261:5;33250:16;;33195:77;;;:::o;33278:154::-;33362:6;33357:3;33352;33339:30;33424:1;33415:6;33410:3;33406:16;33399:27;33278:154;;;:::o;33438:307::-;33506:1;33516:113;33530:6;33527:1;33524:13;33516:113;;;33615:1;33610:3;33606:11;33600:18;33596:1;33591:3;33587:11;33580:39;33552:2;33549:1;33545:10;33540:15;;33516:113;;;33647:6;33644:1;33641:13;33638:101;;;33727:1;33718:6;33713:3;33709:16;33702:27;33638:101;33487:258;33438:307;;;:::o;33751:320::-;33795:6;33832:1;33826:4;33822:12;33812:22;;33879:1;33873:4;33869:12;33900:18;33890:81;;33956:4;33948:6;33944:17;33934:27;;33890:81;34018:2;34010:6;34007:14;33987:18;33984:38;33981:84;;;34037:18;;:::i;:::-;33981:84;33802:269;33751:320;;;:::o;34077:281::-;34160:27;34182:4;34160:27;:::i;:::-;34152:6;34148:40;34290:6;34278:10;34275:22;34254:18;34242:10;34239:34;34236:62;34233:88;;;34301:18;;:::i;:::-;34233:88;34341:10;34337:2;34330:22;34120:238;34077:281;;:::o;34364:233::-;34403:3;34426:24;34444:5;34426:24;:::i;:::-;34417:33;;34472:66;34465:5;34462:77;34459:103;;;34542:18;;:::i;:::-;34459:103;34589:1;34582:5;34578:13;34571:20;;34364:233;;;:::o;34603:176::-;34635:1;34652:20;34670:1;34652:20;:::i;:::-;34647:25;;34686:20;34704:1;34686:20;:::i;:::-;34681:25;;34725:1;34715:35;;34730:18;;:::i;:::-;34715:35;34771:1;34768;34764:9;34759:14;;34603:176;;;;:::o;34785:180::-;34833:77;34830:1;34823:88;34930:4;34927:1;34920:15;34954:4;34951:1;34944:15;34971:180;35019:77;35016:1;35009:88;35116:4;35113:1;35106:15;35140:4;35137:1;35130:15;35157:180;35205:77;35202:1;35195:88;35302:4;35299:1;35292:15;35326:4;35323:1;35316:15;35343:180;35391:77;35388:1;35381:88;35488:4;35485:1;35478:15;35512:4;35509:1;35502:15;35529:180;35577:77;35574:1;35567:88;35674:4;35671:1;35664:15;35698:4;35695:1;35688:15;35715:180;35763:77;35760:1;35753:88;35860:4;35857:1;35850:15;35884:4;35881:1;35874:15;35901:117;36010:1;36007;36000:12;36024:117;36133:1;36130;36123:12;36147:117;36256:1;36253;36246:12;36270:117;36379:1;36376;36369:12;36393:102;36434:6;36485:2;36481:7;36476:2;36469:5;36465:14;36461:28;36451:38;;36393:102;;;:::o;36501:230::-;36641:34;36637:1;36629:6;36625:14;36618:58;36710:13;36705:2;36697:6;36693:15;36686:38;36501:230;:::o;36737:237::-;36877:34;36873:1;36865:6;36861:14;36854:58;36946:20;36941:2;36933:6;36929:15;36922:45;36737:237;:::o;36980:315::-;37120:66;37116:1;37108:6;37104:14;37097:90;37221:66;37216:2;37208:6;37204:15;37197:91;36980:315;:::o;37301:178::-;37441:30;37437:1;37429:6;37425:14;37418:54;37301:178;:::o;37485:223::-;37625:34;37621:1;37613:6;37609:14;37602:58;37694:6;37689:2;37681:6;37677:15;37670:31;37485:223;:::o;37714:175::-;37854:27;37850:1;37842:6;37838:14;37831:51;37714:175;:::o;37895:231::-;38035:34;38031:1;38023:6;38019:14;38012:58;38104:14;38099:2;38091:6;38087:15;38080:39;37895:231;:::o;38132:260::-;38272:66;38268:1;38260:6;38256:14;38249:90;38373:11;38368:2;38360:6;38356:15;38349:36;38132:260;:::o;38398:243::-;38538:34;38534:1;38526:6;38522:14;38515:58;38607:26;38602:2;38594:6;38590:15;38583:51;38398:243;:::o;38647:727::-;38787:66;38783:1;38775:6;38771:14;38764:90;38888:34;38883:2;38875:6;38871:15;38864:59;38957:34;38952:2;38944:6;38940:15;38933:59;39026:34;39021:2;39013:6;39009:15;39002:59;39096:66;39090:3;39082:6;39078:16;39071:92;39198:66;39192:3;39184:6;39180:16;39173:92;39300:66;39294:3;39286:6;39282:16;39275:92;38647:727;:::o;39380:229::-;39520:34;39516:1;39508:6;39504:14;39497:58;39589:12;39584:2;39576:6;39572:15;39565:37;39380:229;:::o;39615:228::-;39755:34;39751:1;39743:6;39739:14;39732:58;39824:11;39819:2;39811:6;39807:15;39800:36;39615:228;:::o;39849:214::-;39989:66;39985:1;39977:6;39973:14;39966:90;39849:214;:::o;40069:182::-;40209:34;40205:1;40197:6;40193:14;40186:58;40069:182;:::o;40257:231::-;40397:34;40393:1;40385:6;40381:14;40374:58;40466:14;40461:2;40453:6;40449:15;40442:39;40257:231;:::o;40494:214::-;40634:66;40630:1;40622:6;40618:14;40611:90;40494:214;:::o;40714:166::-;40854:18;40850:1;40842:6;40838:14;40831:42;40714:166;:::o;40886:228::-;41026:34;41022:1;41014:6;41010:14;41003:58;41095:11;41090:2;41082:6;41078:15;41071:36;40886:228;:::o;41120:315::-;41260:66;41256:1;41248:6;41244:14;41237:90;41361:66;41356:2;41348:6;41344:15;41337:91;41120:315;:::o;41441:220::-;41581:34;41577:1;41569:6;41565:14;41558:58;41650:3;41645:2;41637:6;41633:15;41626:28;41441:220;:::o;41667:179::-;41807:31;41803:1;41795:6;41791:14;41784:55;41667:179;:::o;41852:236::-;41992:34;41988:1;41980:6;41976:14;41969:58;42061:19;42056:2;42048:6;42044:15;42037:44;41852:236;:::o;42094:231::-;42234:34;42230:1;42222:6;42218:14;42211:58;42303:14;42298:2;42290:6;42286:15;42279:39;42094:231;:::o;42331:181::-;42471:33;42467:1;42459:6;42455:14;42448:57;42331:181;:::o;42518:122::-;42591:24;42609:5;42591:24;:::i;:::-;42584:5;42581:35;42571:63;;42630:1;42627;42620:12;42571:63;42518:122;:::o;42646:116::-;42716:21;42731:5;42716:21;:::i;:::-;42709:5;42706:32;42696:60;;42752:1;42749;42742:12;42696:60;42646:116;:::o;42768:120::-;42840:23;42857:5;42840:23;:::i;:::-;42833:5;42830:34;42820:62;;42878:1;42875;42868:12;42820:62;42768:120;:::o;42894:122::-;42967:24;42985:5;42967:24;:::i;:::-;42960:5;42957:35;42947:63;;43006:1;43003;42996:12;42947:63;42894:122;:::o

Swarm Source

ipfs://a242c412e1748a0c79b77f5ec9dd4b2447ea3950391165d8b954d964482ee3e5
Loading...
Loading
Loading...
Loading
[ 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.