ETH Price: $3,422.62 (-2.15%)
Gas: 5 Gwei

Token

Vows (VOW)
 

Overview

Max Total Supply

206 VOW

Holders

200

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
puttynft.eth
Balance
1 VOW
0x4Fc36d663e4a06557F4f2465cc10F2b76e8755D6
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:
Vows

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: Unlicense

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}





/**
 * @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 Vows is ERC721Enumerable, ReentrancyGuard, Ownable {
    struct Marriage {
        address proposer;
        address accepter;
        uint256 blockNumber;
    }
    
    mapping (address => address) public marriages;
    mapping (address => address) public proposals;
    mapping (uint256 => Marriage) internal _marriageData;
    
    constructor() ERC721("Vows", "VOW") Ownable() {}
    
    function propose(address proposeTo) public {
        require(marriages[proposeTo] == address(0), "already married");
        proposals[msg.sender] = proposeTo;
    }
    
    function accept(address proposer) public nonReentrant {
        require(proposals[proposer] == msg.sender, "no proposal to you from them");
        marriages[proposer] = msg.sender;
        marriages[msg.sender] = proposer;
        delete proposals[proposer];
        delete proposals[msg.sender];
        
        uint256 accepterTokenId = uint256(keccak256(abi.encodePacked(msg.sender, proposer)));
        uint256 proposerTokenId = uint256(keccak256(abi.encodePacked(proposer, msg.sender)));
        
        Marriage memory marriage;
        marriage.proposer = proposer;
        marriage.accepter = msg.sender;
        marriage.blockNumber = block.number;
        
        _marriageData[accepterTokenId] = marriage;
        _marriageData[proposerTokenId] = marriage;
        
        _safeMint(msg.sender, accepterTokenId);
        _safeMint(proposer, proposerTokenId);
    }
    
    function annul() public nonReentrant {
        require(marriages[msg.sender] != address(0), "not married");
        address marriedTo = marriages[msg.sender];
        
        uint256 senderTokenId = uint256(keccak256(abi.encodePacked(msg.sender, marriedTo)));
        uint256 spouseTokenId = uint256(keccak256(abi.encodePacked(marriedTo, msg.sender)));
        
        delete marriages[msg.sender];
        delete marriages[marriedTo];
        
        _burn(senderTokenId);
        _burn(spouseTokenId);
    }
    
    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        Marriage memory marriage = _marriageData[tokenId];
        
        string[15] memory parts;
        parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: black; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="white" /><text x="10" y="20" class="base">In the block number ';

        parts[1] = uint2str(marriage.blockNumber);

        parts[2] = ',</text><text x="10" y="40" class="base">';

        parts[3] = address2str(marriage.proposer);

        parts[4] = '</text><text x="10" y="60" class="base">';

        parts[5] = "and";

        parts[6] = '</text><text x="10" y="80" class="base">';

        parts[7] = address2str(marriage.accepter);

        parts[8] = '</text><text x="10" y="100" class="base">';

        parts[9] = "were happily united.";

        parts[10] = '</text><text x="10" y="120" class="base">';

        parts[11] = "";

        parts[12] = '</text><text x="10" y="140" class="base">';

        parts[13] = "May their union grow with wisdom and grace.";

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

        string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8]));
        output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14]));
        
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "A Vow", "description": "Vows are eternal commitments from one address to another.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
        output = string(abi.encodePacked('data:application/json;base64,', json));

        return output;
    }
    
    // https://stackoverflow.com/a/65707309
    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }
    
    // https://ethereum.stackexchange.com/a/58341
    function address2str(address _address) public pure returns(string memory) {
       bytes32 _bytes = bytes32(uint256(uint160(address(_address))));
       bytes memory HEX = "0123456789abcdef";
       bytes memory _string = new bytes(42);
       _string[0] = '0';
       _string[1] = 'x';
       for(uint i = 0; i < 20; i++) {
           _string[2+i*2] = HEX[uint8(_bytes[i + 12] >> 4)];
           _string[3+i*2] = HEX[uint8(_bytes[i + 12] & 0x0f)];
       }
       return string(_string);
    }
}

/// [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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"accept","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"address2str","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"annul","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marriages","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"proposals","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"proposeTo","type":"address"}],"name":"propose","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600481526020017f566f7773000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f564f570000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001ae565b508060019080519060200190620000af929190620001ae565b5050506001600a81905550620000da620000ce620000e060201b60201c565b620000e860201b60201c565b620002c3565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001bc906200025e565b90600052602060002090601f016020900481019282620001e057600085556200022c565b82601f10620001fb57805160ff19168380011785556200022c565b828001600101855582156200022c579182015b828111156200022b5782518255916020019190600101906200020e565b5b5090506200023b91906200023f565b5090565b5b808211156200025a57600081600090555060010162000240565b5090565b600060028204905060018216806200027757607f821691505b602082108114156200028e576200028d62000294565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61503480620002d36000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80634f6ccce7116100de5780639f00592011610097578063c400ad7011610071578063c400ad7014610448578063c87b56dd14610478578063e985e9c5146104a8578063f2fde38b146104d857610173565b80639f005920146103f4578063a22cb46514610410578063b88d4fde1461042c57610173565b80634f6ccce71461031e5780636352211e1461034e57806370a082311461037e578063715018a6146103ae5780638da5cb5b146103b857806395d89b41146103d657610173565b806323b872dd1161013057806323b872dd1461024c57806326d27337146102685780632f745c59146102985780633341b445146102c857806342842e0e146102f857806347c73f2b1461031457610173565b8063012679511461017857806301ffc9a71461019457806306fdde03146101c4578063081812fc146101e2578063095ea7b31461021257806318160ddd1461022e575b600080fd5b610192600480360381019061018d91906136d9565b6104f4565b005b6101ae60048036038101906101a9919061389c565b610643565b6040516101bb9190613f18565b60405180910390f35b6101cc6106bd565b6040516101d99190613f33565b60405180910390f35b6101fc60048036038101906101f791906138f6565b61074f565b6040516102099190613eb1565b60405180910390f35b61022c6004803603810190610227919061385c565b6107d4565b005b6102366108ec565b60405161024391906141f5565b60405180910390f35b61026660048036038101906102619190613746565b6108f9565b005b610282600480360381019061027d91906136d9565b610959565b60405161028f9190613f33565b60405180910390f35b6102b260048036038101906102ad919061385c565b610c64565b6040516102bf91906141f5565b60405180910390f35b6102e260048036038101906102dd91906136d9565b610d09565b6040516102ef9190613eb1565b60405180910390f35b610312600480360381019061030d9190613746565b610d3c565b005b61031c610d5c565b005b610338600480360381019061033391906138f6565b611020565b60405161034591906141f5565b60405180910390f35b610368600480360381019061036391906138f6565b611091565b6040516103759190613eb1565b60405180910390f35b610398600480360381019061039391906136d9565b611143565b6040516103a591906141f5565b60405180910390f35b6103b66111fb565b005b6103c0611283565b6040516103cd9190613eb1565b60405180910390f35b6103de6112ad565b6040516103eb9190613f33565b60405180910390f35b61040e600480360381019061040991906136d9565b61133f565b005b61042a6004803603810190610425919061381c565b61187c565b005b61044660048036038101906104419190613799565b6119fd565b005b610462600480360381019061045d91906136d9565b611a5f565b60405161046f9190613eb1565b60405180910390f35b610492600480360381019061048d91906138f6565b611a92565b60405161049f9190613f33565b60405180910390f35b6104c260048036038101906104bd9190613706565b6120e8565b6040516104cf9190613f18565b60405180910390f35b6104f260048036038101906104ed91906136d9565b61217c565b005b600073ffffffffffffffffffffffffffffffffffffffff16600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b990614015565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b657506106b582612274565b5b9050919050565b6060600080546106cc906144b8565b80601f01602080910402602001604051908101604052809291908181526020018280546106f8906144b8565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a82612356565b610799576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610790906140f5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107df82611091565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084790614155565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661086f6123c2565b73ffffffffffffffffffffffffffffffffffffffff16148061089e575061089d816108986123c2565b6120e8565b5b6108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d490614055565b60405180910390fd5b6108e783836123ca565b505050565b6000600880549050905090565b61090a6109046123c2565b82612483565b610949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094090614175565b60405180910390fd5b610954838383612561565b505050565b606060008273ffffffffffffffffffffffffffffffffffffffff1660001b905060006040518060400160405280601081526020017f303132333435363738396162636465660000000000000000000000000000000081525090506000602a67ffffffffffffffff8111156109d0576109cf614673565b5b6040519080825280601f01601f191660200182016040528015610a025781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110610a3a57610a39614644565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110610a9e57610a9d614644565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b6014811015610c585782600485600c84610aea91906142a9565b60208110610afb57610afa614644565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1681518110610b3a57610b39614644565b5b602001015160f81c60f81b82600283610b539190614367565b6002610b5f91906142a9565b81518110610b7057610b6f614644565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b85600c84610bb391906142a9565b60208110610bc457610bc3614644565b5b1a60f81b1660f81c60ff1681518110610be057610bdf614644565b5b602001015160f81c60f81b82600283610bf99190614367565b6003610c0591906142a9565b81518110610c1657610c15614644565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080610c509061451b565b915050610ad0565b50809350505050919050565b6000610c6f83611143565b8210610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790613f55565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600d6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d57838383604051806020016040528060008152506119fd565b505050565b6002600a541415610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d99906141b5565b60405180910390fd5b6002600a81905550600073ffffffffffffffffffffffffffffffffffffffff16600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e70906140d5565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060003382604051602001610ef2929190613d52565b6040516020818303038152906040528051906020012060001c905060008233604051602001610f22929190613d52565b6040516020818303038152906040528051906020012060001c9050600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561100a826127bd565b611013816127bd565b5050506001600a81905550565b600061102a6108ec565b821061106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290614195565b60405180910390fd5b6008828154811061107f5761107e614644565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190614095565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90614075565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112036123c2565b73ffffffffffffffffffffffffffffffffffffffff16611221611283565b73ffffffffffffffffffffffffffffffffffffffff1614611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90614115565b60405180910390fd5b61128160006128ce565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112bc906144b8565b80601f01602080910402602001604051908101604052809291908181526020018280546112e8906144b8565b80156113355780601f1061130a57610100808354040283529160200191611335565b820191906000526020600020905b81548152906001019060200180831161131857829003601f168201915b5050505050905090565b6002600a541415611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c906141b5565b60405180910390fd5b6002600a819055503373ffffffffffffffffffffffffffffffffffffffff16600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461145a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611451906141d5565b60405180910390fd5b33600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000338260405160200161162f929190613d52565b6040516020818303038152906040528051906020012060001c90506000823360405160200161165f929190613d52565b6040516020818303038152906040528051906020012060001c905061168261358b565b83816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505033816020019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250504381604001818152505080600e600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816002015590505080600e600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604082015181600201559050506118643384612994565b61186e8483612994565b5050506001600a8190555050565b6118846123c2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e990613ff5565b60405180910390fd5b80600560006118ff6123c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ac6123c2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f19190613f18565b60405180910390a35050565b611a0e611a086123c2565b83612483565b611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4490614175565b60405180910390fd5b611a59848484846129b2565b50505050565b600c6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606000600e60008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820154815250509050611b746135d8565b6040518061014001604052806101118152602001614eee6101119139816000600f8110611ba457611ba3614644565b5b6020020181905250611bb98260400151612a0e565b816001600f8110611bcd57611bcc614644565b5b6020020181905250604051806060016040528060298152602001614e5c60299139816002600f8110611c0257611c01614644565b5b6020020181905250611c178260000151610959565b816003600f8110611c2b57611c2a614644565b5b6020020181905250604051806060016040528060288152602001614d8f60289139816004600f8110611c6057611c5f614644565b5b60200201819052506040518060400160405280600381526020017f616e640000000000000000000000000000000000000000000000000000000000815250816005600f8110611cb257611cb1614644565b5b6020020181905250604051806060016040528060288152602001614e0b60289139816006600f8110611ce757611ce6614644565b5b6020020181905250611cfc8260200151610959565b816007600f8110611d1057611d0f614644565b5b6020020181905250604051806060016040528060298152602001614e3360299139816008600f8110611d4557611d44614644565b5b60200201819052506040518060400160405280601481526020017f776572652068617070696c7920756e697465642e000000000000000000000000815250816009600f8110611d9757611d96614644565b5b6020020181905250604051806060016040528060298152602001614de26029913981600a600f8110611dcc57611dcb614644565b5b60200201819052506040518060200160405280600081525081600b600f8110611df857611df7614644565b5b6020020181905250604051806060016040528060298152602001614e856029913981600c600f8110611e2d57611e2c614644565b5b60200201819052506040518060600160405280602b8152602001614db7602b913981600d600f8110611e6257611e61614644565b5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e0000000000000000000000000000000000000081525081600e600f8110611eb457611eb3614644565b5b60200201819052506000816000600f8110611ed257611ed1614644565b5b6020020151826001600f8110611eeb57611eea614644565b5b6020020151836002600f8110611f0457611f03614644565b5b6020020151846003600f8110611f1d57611f1c614644565b5b6020020151856004600f8110611f3657611f35614644565b5b6020020151866005600f8110611f4f57611f4e614644565b5b6020020151876006600f8110611f6857611f67614644565b5b6020020151886007600f8110611f8157611f80614644565b5b6020020151896008600f8110611f9a57611f99614644565b5b6020020151604051602001611fb799989796959493929190613de3565b604051602081830303815290604052905080826009600f8110611fdd57611fdc614644565b5b602002015183600a600f8110611ff657611ff5614644565b5b602002015184600b600f811061200f5761200e614644565b5b602002015185600c600f811061202857612027614644565b5b602002015186600d600f811061204157612040614644565b5b602002015187600e600f811061205a57612059614644565b5b60200201516040516020016120759796959493929190613d7e565b604051602081830303815290604052905060006120b861209483612b97565b6040516020016120a49190613e84565b604051602081830303815290604052612b97565b9050806040516020016120cb9190613e62565b604051602081830303815290604052915081945050505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121846123c2565b73ffffffffffffffffffffffffffffffffffffffff166121a2611283565b73ffffffffffffffffffffffffffffffffffffffff16146121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ef90614115565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f90613f95565b60405180910390fd5b612271816128ce565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061233f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061234f575061234e82612d2f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661243d83611091565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061248e82612356565b6124cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c490614035565b60405180910390fd5b60006124d883611091565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061254757508373ffffffffffffffffffffffffffffffffffffffff1661252f8461074f565b73ffffffffffffffffffffffffffffffffffffffff16145b80612558575061255781856120e8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661258182611091565b73ffffffffffffffffffffffffffffffffffffffff16146125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce90614135565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263e90613fd5565b60405180910390fd5b612652838383612d99565b61265d6000826123ca565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126ad91906143c1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461270491906142a9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006127c882611091565b90506127d681600084612d99565b6127e16000836123ca565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461283191906143c1565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129ae828260405180602001604052806000815250612ead565b5050565b6129bd848484612561565b6129c984848484612f08565b612a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ff90613f75565b60405180910390fd5b50505050565b60606000821415612a56576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b92565b600082905060005b60008214612a88578080612a719061451b565b915050600a82612a819190614336565b9150612a5e565b60008167ffffffffffffffff811115612aa457612aa3614673565b5b6040519080825280601f01601f191660200182016040528015612ad65781602001600182028036833780820191505090505b50905060008290505b60008614612b8a57600181612af491906143c1565b90506000600a8088612b069190614336565b612b109190614367565b87612b1b91906143c1565b6030612b2791906142ff565b905060008160f81b905080848481518110612b4557612b44614644565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88612b819190614336565b97505050612adf565b819450505050505b919050565b60606000825190506000811415612bc05760405180602001604052806000815250915050612d2a565b60006003600283612bd191906142a9565b612bdb9190614336565b6004612be79190614367565b90506000602082612bf891906142a9565b67ffffffffffffffff811115612c1157612c10614673565b5b6040519080825280601f01601f191660200182016040528015612c435781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614eae604091399050600181016020830160005b86811015612ce75760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050612c6e565b506003860660018114612d015760028114612d1157612d1c565b613d3d60f01b6002830352612d1c565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612da483838361309f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612de757612de2816130a4565b612e26565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e2557612e2483826130ed565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e6957612e648161325a565b612ea8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ea757612ea6828261332b565b5b5b505050565b612eb783836133aa565b612ec46000848484612f08565b612f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efa90613f75565b60405180910390fd5b505050565b6000612f298473ffffffffffffffffffffffffffffffffffffffff16613578565b15613092578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f526123c2565b8786866040518563ffffffff1660e01b8152600401612f749493929190613ecc565b602060405180830381600087803b158015612f8e57600080fd5b505af1925050508015612fbf57506040513d601f19601f82011682018060405250810190612fbc91906138c9565b60015b613042573d8060008114612fef576040519150601f19603f3d011682016040523d82523d6000602084013e612ff4565b606091505b5060008151141561303a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303190613f75565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613097565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016130fa84611143565b61310491906143c1565b90506000600760008481526020019081526020016000205490508181146131e9576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061326e91906143c1565b905060006009600084815260200190815260200160002054905060006008838154811061329e5761329d614644565b5b9060005260206000200154905080600883815481106132c0576132bf614644565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061330f5761330e614615565b5b6001900381819060005260206000200160009055905550505050565b600061333683611143565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561341a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613411906140b5565b60405180910390fd5b61342381612356565b15613463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345a90613fb5565b60405180910390fd5b61346f60008383612d99565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134bf91906142a9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600081525090565b604051806101e00160405280600f905b60608152602001906001900390816135e85790505090565b600061361361360e84614235565b614210565b90508281526020810184848401111561362f5761362e6146a7565b5b61363a848285614476565b509392505050565b60008135905061365181614d32565b92915050565b60008135905061366681614d49565b92915050565b60008135905061367b81614d60565b92915050565b60008151905061369081614d60565b92915050565b600082601f8301126136ab576136aa6146a2565b5b81356136bb848260208601613600565b91505092915050565b6000813590506136d381614d77565b92915050565b6000602082840312156136ef576136ee6146b1565b5b60006136fd84828501613642565b91505092915050565b6000806040838503121561371d5761371c6146b1565b5b600061372b85828601613642565b925050602061373c85828601613642565b9150509250929050565b60008060006060848603121561375f5761375e6146b1565b5b600061376d86828701613642565b935050602061377e86828701613642565b925050604061378f868287016136c4565b9150509250925092565b600080600080608085870312156137b3576137b26146b1565b5b60006137c187828801613642565b94505060206137d287828801613642565b93505060406137e3878288016136c4565b925050606085013567ffffffffffffffff811115613804576138036146ac565b5b61381087828801613696565b91505092959194509250565b60008060408385031215613833576138326146b1565b5b600061384185828601613642565b925050602061385285828601613657565b9150509250929050565b60008060408385031215613873576138726146b1565b5b600061388185828601613642565b9250506020613892858286016136c4565b9150509250929050565b6000602082840312156138b2576138b16146b1565b5b60006138c08482850161366c565b91505092915050565b6000602082840312156138df576138de6146b1565b5b60006138ed84828501613681565b91505092915050565b60006020828403121561390c5761390b6146b1565b5b600061391a848285016136c4565b91505092915050565b61392c816143f5565b82525050565b61394361393e826143f5565b614564565b82525050565b61395281614407565b82525050565b600061396382614266565b61396d818561427c565b935061397d818560208601614485565b613986816146b6565b840191505092915050565b600061399c82614271565b6139a6818561428d565b93506139b6818560208601614485565b6139bf816146b6565b840191505092915050565b60006139d582614271565b6139df818561429e565b93506139ef818560208601614485565b80840191505092915050565b6000613a08602b8361428d565b9150613a13826146d4565b604082019050919050565b6000613a2b60328361428d565b9150613a3682614723565b604082019050919050565b6000613a4e60268361428d565b9150613a5982614772565b604082019050919050565b6000613a71601c8361428d565b9150613a7c826147c1565b602082019050919050565b6000613a9460248361428d565b9150613a9f826147ea565b604082019050919050565b6000613ab760198361428d565b9150613ac282614839565b602082019050919050565b6000613ada600f8361428d565b9150613ae582614862565b602082019050919050565b6000613afd602c8361428d565b9150613b088261488b565b604082019050919050565b6000613b2060388361428d565b9150613b2b826148da565b604082019050919050565b6000613b43602a8361428d565b9150613b4e82614929565b604082019050919050565b6000613b6660298361428d565b9150613b7182614978565b604082019050919050565b6000613b8960028361429e565b9150613b94826149c7565b600282019050919050565b6000613bac60208361428d565b9150613bb7826149f0565b602082019050919050565b6000613bcf600b8361428d565b9150613bda82614a19565b602082019050919050565b6000613bf2602c8361428d565b9150613bfd82614a42565b604082019050919050565b6000613c1560208361428d565b9150613c2082614a91565b602082019050919050565b6000613c3860298361428d565b9150613c4382614aba565b604082019050919050565b6000613c5b60218361428d565b9150613c6682614b09565b604082019050919050565b6000613c7e601d8361429e565b9150613c8982614b58565b601d82019050919050565b6000613ca160318361428d565b9150613cac82614b81565b604082019050919050565b6000613cc4602c8361428d565b9150613ccf82614bd0565b604082019050919050565b6000613ce7601f8361428d565b9150613cf282614c1f565b602082019050919050565b6000613d0a60828361429e565b9150613d1582614c48565b608282019050919050565b6000613d2d601c8361428d565b9150613d3882614d09565b602082019050919050565b613d4c8161445f565b82525050565b6000613d5e8285613932565b601482019150613d6e8284613932565b6014820191508190509392505050565b6000613d8a828a6139ca565b9150613d9682896139ca565b9150613da282886139ca565b9150613dae82876139ca565b9150613dba82866139ca565b9150613dc682856139ca565b9150613dd282846139ca565b915081905098975050505050505050565b6000613def828c6139ca565b9150613dfb828b6139ca565b9150613e07828a6139ca565b9150613e1382896139ca565b9150613e1f82886139ca565b9150613e2b82876139ca565b9150613e3782866139ca565b9150613e4382856139ca565b9150613e4f82846139ca565b91508190509a9950505050505050505050565b6000613e6d82613c71565b9150613e7982846139ca565b915081905092915050565b6000613e8f82613cfd565b9150613e9b82846139ca565b9150613ea682613b7c565b915081905092915050565b6000602082019050613ec66000830184613923565b92915050565b6000608082019050613ee16000830187613923565b613eee6020830186613923565b613efb6040830185613d43565b8181036060830152613f0d8184613958565b905095945050505050565b6000602082019050613f2d6000830184613949565b92915050565b60006020820190508181036000830152613f4d8184613991565b905092915050565b60006020820190508181036000830152613f6e816139fb565b9050919050565b60006020820190508181036000830152613f8e81613a1e565b9050919050565b60006020820190508181036000830152613fae81613a41565b9050919050565b60006020820190508181036000830152613fce81613a64565b9050919050565b60006020820190508181036000830152613fee81613a87565b9050919050565b6000602082019050818103600083015261400e81613aaa565b9050919050565b6000602082019050818103600083015261402e81613acd565b9050919050565b6000602082019050818103600083015261404e81613af0565b9050919050565b6000602082019050818103600083015261406e81613b13565b9050919050565b6000602082019050818103600083015261408e81613b36565b9050919050565b600060208201905081810360008301526140ae81613b59565b9050919050565b600060208201905081810360008301526140ce81613b9f565b9050919050565b600060208201905081810360008301526140ee81613bc2565b9050919050565b6000602082019050818103600083015261410e81613be5565b9050919050565b6000602082019050818103600083015261412e81613c08565b9050919050565b6000602082019050818103600083015261414e81613c2b565b9050919050565b6000602082019050818103600083015261416e81613c4e565b9050919050565b6000602082019050818103600083015261418e81613c94565b9050919050565b600060208201905081810360008301526141ae81613cb7565b9050919050565b600060208201905081810360008301526141ce81613cda565b9050919050565b600060208201905081810360008301526141ee81613d20565b9050919050565b600060208201905061420a6000830184613d43565b92915050565b600061421a61422b565b905061422682826144ea565b919050565b6000604051905090565b600067ffffffffffffffff8211156142505761424f614673565b5b614259826146b6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142b48261445f565b91506142bf8361445f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142f4576142f3614588565b5b828201905092915050565b600061430a82614469565b915061431583614469565b92508260ff0382111561432b5761432a614588565b5b828201905092915050565b60006143418261445f565b915061434c8361445f565b92508261435c5761435b6145b7565b5b828204905092915050565b60006143728261445f565b915061437d8361445f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143b6576143b5614588565b5b828202905092915050565b60006143cc8261445f565b91506143d78361445f565b9250828210156143ea576143e9614588565b5b828203905092915050565b60006144008261443f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156144a3578082015181840152602081019050614488565b838111156144b2576000848401525b50505050565b600060028204905060018216806144d057607f821691505b602082108114156144e4576144e36145e6565b5b50919050565b6144f3826146b6565b810181811067ffffffffffffffff8211171561451257614511614673565b5b80604052505050565b60006145268261445f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561455957614558614588565b5b600182019050919050565b600061456f82614576565b9050919050565b6000614581826146c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f616c7265616479206d6172726965640000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6e6f74206d617272696564000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f7b226e616d65223a20224120566f77222c20226465736372697074696f6e223a60008201527f2022566f77732061726520657465726e616c20636f6d6d69746d656e7473206660208201527f726f6d206f6e65206164647265737320746f20616e6f746865722e222c20226960408201527f6d616765223a2022646174613a696d6167652f7376672b786d6c3b626173653660608201527f342c000000000000000000000000000000000000000000000000000000000000608082015250565b7f6e6f2070726f706f73616c20746f20796f752066726f6d207468656d00000000600082015250565b614d3b816143f5565b8114614d4657600080fd5b50565b614d5281614407565b8114614d5d57600080fd5b50565b614d6981614413565b8114614d7457600080fd5b50565b614d808161445f565b8114614d8b57600080fd5b5056fe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e4d617920746865697220756e696f6e2067726f77207769746820776973646f6d20616e642067726163652e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e2c3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a20626c61636b3b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22776869746522202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e496e2074686520626c6f636b206e756d62657220a2646970667358221220ce9805c4f86cf64668d81b08e515d53c785a06d3eb3614e4309dfda4997a73f864736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80634f6ccce7116100de5780639f00592011610097578063c400ad7011610071578063c400ad7014610448578063c87b56dd14610478578063e985e9c5146104a8578063f2fde38b146104d857610173565b80639f005920146103f4578063a22cb46514610410578063b88d4fde1461042c57610173565b80634f6ccce71461031e5780636352211e1461034e57806370a082311461037e578063715018a6146103ae5780638da5cb5b146103b857806395d89b41146103d657610173565b806323b872dd1161013057806323b872dd1461024c57806326d27337146102685780632f745c59146102985780633341b445146102c857806342842e0e146102f857806347c73f2b1461031457610173565b8063012679511461017857806301ffc9a71461019457806306fdde03146101c4578063081812fc146101e2578063095ea7b31461021257806318160ddd1461022e575b600080fd5b610192600480360381019061018d91906136d9565b6104f4565b005b6101ae60048036038101906101a9919061389c565b610643565b6040516101bb9190613f18565b60405180910390f35b6101cc6106bd565b6040516101d99190613f33565b60405180910390f35b6101fc60048036038101906101f791906138f6565b61074f565b6040516102099190613eb1565b60405180910390f35b61022c6004803603810190610227919061385c565b6107d4565b005b6102366108ec565b60405161024391906141f5565b60405180910390f35b61026660048036038101906102619190613746565b6108f9565b005b610282600480360381019061027d91906136d9565b610959565b60405161028f9190613f33565b60405180910390f35b6102b260048036038101906102ad919061385c565b610c64565b6040516102bf91906141f5565b60405180910390f35b6102e260048036038101906102dd91906136d9565b610d09565b6040516102ef9190613eb1565b60405180910390f35b610312600480360381019061030d9190613746565b610d3c565b005b61031c610d5c565b005b610338600480360381019061033391906138f6565b611020565b60405161034591906141f5565b60405180910390f35b610368600480360381019061036391906138f6565b611091565b6040516103759190613eb1565b60405180910390f35b610398600480360381019061039391906136d9565b611143565b6040516103a591906141f5565b60405180910390f35b6103b66111fb565b005b6103c0611283565b6040516103cd9190613eb1565b60405180910390f35b6103de6112ad565b6040516103eb9190613f33565b60405180910390f35b61040e600480360381019061040991906136d9565b61133f565b005b61042a6004803603810190610425919061381c565b61187c565b005b61044660048036038101906104419190613799565b6119fd565b005b610462600480360381019061045d91906136d9565b611a5f565b60405161046f9190613eb1565b60405180910390f35b610492600480360381019061048d91906138f6565b611a92565b60405161049f9190613f33565b60405180910390f35b6104c260048036038101906104bd9190613706565b6120e8565b6040516104cf9190613f18565b60405180910390f35b6104f260048036038101906104ed91906136d9565b61217c565b005b600073ffffffffffffffffffffffffffffffffffffffff16600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b990614015565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b657506106b582612274565b5b9050919050565b6060600080546106cc906144b8565b80601f01602080910402602001604051908101604052809291908181526020018280546106f8906144b8565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a82612356565b610799576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610790906140f5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107df82611091565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084790614155565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661086f6123c2565b73ffffffffffffffffffffffffffffffffffffffff16148061089e575061089d816108986123c2565b6120e8565b5b6108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d490614055565b60405180910390fd5b6108e783836123ca565b505050565b6000600880549050905090565b61090a6109046123c2565b82612483565b610949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094090614175565b60405180910390fd5b610954838383612561565b505050565b606060008273ffffffffffffffffffffffffffffffffffffffff1660001b905060006040518060400160405280601081526020017f303132333435363738396162636465660000000000000000000000000000000081525090506000602a67ffffffffffffffff8111156109d0576109cf614673565b5b6040519080825280601f01601f191660200182016040528015610a025781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110610a3a57610a39614644565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110610a9e57610a9d614644565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b6014811015610c585782600485600c84610aea91906142a9565b60208110610afb57610afa614644565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1681518110610b3a57610b39614644565b5b602001015160f81c60f81b82600283610b539190614367565b6002610b5f91906142a9565b81518110610b7057610b6f614644565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b85600c84610bb391906142a9565b60208110610bc457610bc3614644565b5b1a60f81b1660f81c60ff1681518110610be057610bdf614644565b5b602001015160f81c60f81b82600283610bf99190614367565b6003610c0591906142a9565b81518110610c1657610c15614644565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080610c509061451b565b915050610ad0565b50809350505050919050565b6000610c6f83611143565b8210610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790613f55565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600d6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d57838383604051806020016040528060008152506119fd565b505050565b6002600a541415610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d99906141b5565b60405180910390fd5b6002600a81905550600073ffffffffffffffffffffffffffffffffffffffff16600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e70906140d5565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060003382604051602001610ef2929190613d52565b6040516020818303038152906040528051906020012060001c905060008233604051602001610f22929190613d52565b6040516020818303038152906040528051906020012060001c9050600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561100a826127bd565b611013816127bd565b5050506001600a81905550565b600061102a6108ec565b821061106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290614195565b60405180910390fd5b6008828154811061107f5761107e614644565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190614095565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90614075565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112036123c2565b73ffffffffffffffffffffffffffffffffffffffff16611221611283565b73ffffffffffffffffffffffffffffffffffffffff1614611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90614115565b60405180910390fd5b61128160006128ce565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112bc906144b8565b80601f01602080910402602001604051908101604052809291908181526020018280546112e8906144b8565b80156113355780601f1061130a57610100808354040283529160200191611335565b820191906000526020600020905b81548152906001019060200180831161131857829003601f168201915b5050505050905090565b6002600a541415611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c906141b5565b60405180910390fd5b6002600a819055503373ffffffffffffffffffffffffffffffffffffffff16600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461145a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611451906141d5565b60405180910390fd5b33600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000338260405160200161162f929190613d52565b6040516020818303038152906040528051906020012060001c90506000823360405160200161165f929190613d52565b6040516020818303038152906040528051906020012060001c905061168261358b565b83816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505033816020019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250504381604001818152505080600e600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816002015590505080600e600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604082015181600201559050506118643384612994565b61186e8483612994565b5050506001600a8190555050565b6118846123c2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e990613ff5565b60405180910390fd5b80600560006118ff6123c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ac6123c2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f19190613f18565b60405180910390a35050565b611a0e611a086123c2565b83612483565b611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4490614175565b60405180910390fd5b611a59848484846129b2565b50505050565b600c6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606000600e60008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820154815250509050611b746135d8565b6040518061014001604052806101118152602001614eee6101119139816000600f8110611ba457611ba3614644565b5b6020020181905250611bb98260400151612a0e565b816001600f8110611bcd57611bcc614644565b5b6020020181905250604051806060016040528060298152602001614e5c60299139816002600f8110611c0257611c01614644565b5b6020020181905250611c178260000151610959565b816003600f8110611c2b57611c2a614644565b5b6020020181905250604051806060016040528060288152602001614d8f60289139816004600f8110611c6057611c5f614644565b5b60200201819052506040518060400160405280600381526020017f616e640000000000000000000000000000000000000000000000000000000000815250816005600f8110611cb257611cb1614644565b5b6020020181905250604051806060016040528060288152602001614e0b60289139816006600f8110611ce757611ce6614644565b5b6020020181905250611cfc8260200151610959565b816007600f8110611d1057611d0f614644565b5b6020020181905250604051806060016040528060298152602001614e3360299139816008600f8110611d4557611d44614644565b5b60200201819052506040518060400160405280601481526020017f776572652068617070696c7920756e697465642e000000000000000000000000815250816009600f8110611d9757611d96614644565b5b6020020181905250604051806060016040528060298152602001614de26029913981600a600f8110611dcc57611dcb614644565b5b60200201819052506040518060200160405280600081525081600b600f8110611df857611df7614644565b5b6020020181905250604051806060016040528060298152602001614e856029913981600c600f8110611e2d57611e2c614644565b5b60200201819052506040518060600160405280602b8152602001614db7602b913981600d600f8110611e6257611e61614644565b5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e0000000000000000000000000000000000000081525081600e600f8110611eb457611eb3614644565b5b60200201819052506000816000600f8110611ed257611ed1614644565b5b6020020151826001600f8110611eeb57611eea614644565b5b6020020151836002600f8110611f0457611f03614644565b5b6020020151846003600f8110611f1d57611f1c614644565b5b6020020151856004600f8110611f3657611f35614644565b5b6020020151866005600f8110611f4f57611f4e614644565b5b6020020151876006600f8110611f6857611f67614644565b5b6020020151886007600f8110611f8157611f80614644565b5b6020020151896008600f8110611f9a57611f99614644565b5b6020020151604051602001611fb799989796959493929190613de3565b604051602081830303815290604052905080826009600f8110611fdd57611fdc614644565b5b602002015183600a600f8110611ff657611ff5614644565b5b602002015184600b600f811061200f5761200e614644565b5b602002015185600c600f811061202857612027614644565b5b602002015186600d600f811061204157612040614644565b5b602002015187600e600f811061205a57612059614644565b5b60200201516040516020016120759796959493929190613d7e565b604051602081830303815290604052905060006120b861209483612b97565b6040516020016120a49190613e84565b604051602081830303815290604052612b97565b9050806040516020016120cb9190613e62565b604051602081830303815290604052915081945050505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121846123c2565b73ffffffffffffffffffffffffffffffffffffffff166121a2611283565b73ffffffffffffffffffffffffffffffffffffffff16146121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ef90614115565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f90613f95565b60405180910390fd5b612271816128ce565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061233f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061234f575061234e82612d2f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661243d83611091565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061248e82612356565b6124cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c490614035565b60405180910390fd5b60006124d883611091565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061254757508373ffffffffffffffffffffffffffffffffffffffff1661252f8461074f565b73ffffffffffffffffffffffffffffffffffffffff16145b80612558575061255781856120e8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661258182611091565b73ffffffffffffffffffffffffffffffffffffffff16146125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce90614135565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263e90613fd5565b60405180910390fd5b612652838383612d99565b61265d6000826123ca565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126ad91906143c1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461270491906142a9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006127c882611091565b90506127d681600084612d99565b6127e16000836123ca565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461283191906143c1565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129ae828260405180602001604052806000815250612ead565b5050565b6129bd848484612561565b6129c984848484612f08565b612a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ff90613f75565b60405180910390fd5b50505050565b60606000821415612a56576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b92565b600082905060005b60008214612a88578080612a719061451b565b915050600a82612a819190614336565b9150612a5e565b60008167ffffffffffffffff811115612aa457612aa3614673565b5b6040519080825280601f01601f191660200182016040528015612ad65781602001600182028036833780820191505090505b50905060008290505b60008614612b8a57600181612af491906143c1565b90506000600a8088612b069190614336565b612b109190614367565b87612b1b91906143c1565b6030612b2791906142ff565b905060008160f81b905080848481518110612b4557612b44614644565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88612b819190614336565b97505050612adf565b819450505050505b919050565b60606000825190506000811415612bc05760405180602001604052806000815250915050612d2a565b60006003600283612bd191906142a9565b612bdb9190614336565b6004612be79190614367565b90506000602082612bf891906142a9565b67ffffffffffffffff811115612c1157612c10614673565b5b6040519080825280601f01601f191660200182016040528015612c435781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614eae604091399050600181016020830160005b86811015612ce75760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050612c6e565b506003860660018114612d015760028114612d1157612d1c565b613d3d60f01b6002830352612d1c565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612da483838361309f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612de757612de2816130a4565b612e26565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e2557612e2483826130ed565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e6957612e648161325a565b612ea8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ea757612ea6828261332b565b5b5b505050565b612eb783836133aa565b612ec46000848484612f08565b612f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efa90613f75565b60405180910390fd5b505050565b6000612f298473ffffffffffffffffffffffffffffffffffffffff16613578565b15613092578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f526123c2565b8786866040518563ffffffff1660e01b8152600401612f749493929190613ecc565b602060405180830381600087803b158015612f8e57600080fd5b505af1925050508015612fbf57506040513d601f19601f82011682018060405250810190612fbc91906138c9565b60015b613042573d8060008114612fef576040519150601f19603f3d011682016040523d82523d6000602084013e612ff4565b606091505b5060008151141561303a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303190613f75565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613097565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016130fa84611143565b61310491906143c1565b90506000600760008481526020019081526020016000205490508181146131e9576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061326e91906143c1565b905060006009600084815260200190815260200160002054905060006008838154811061329e5761329d614644565b5b9060005260206000200154905080600883815481106132c0576132bf614644565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061330f5761330e614615565b5b6001900381819060005260206000200160009055905550505050565b600061333683611143565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561341a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613411906140b5565b60405180910390fd5b61342381612356565b15613463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345a90613fb5565b60405180910390fd5b61346f60008383612d99565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134bf91906142a9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600081525090565b604051806101e00160405280600f905b60608152602001906001900390816135e85790505090565b600061361361360e84614235565b614210565b90508281526020810184848401111561362f5761362e6146a7565b5b61363a848285614476565b509392505050565b60008135905061365181614d32565b92915050565b60008135905061366681614d49565b92915050565b60008135905061367b81614d60565b92915050565b60008151905061369081614d60565b92915050565b600082601f8301126136ab576136aa6146a2565b5b81356136bb848260208601613600565b91505092915050565b6000813590506136d381614d77565b92915050565b6000602082840312156136ef576136ee6146b1565b5b60006136fd84828501613642565b91505092915050565b6000806040838503121561371d5761371c6146b1565b5b600061372b85828601613642565b925050602061373c85828601613642565b9150509250929050565b60008060006060848603121561375f5761375e6146b1565b5b600061376d86828701613642565b935050602061377e86828701613642565b925050604061378f868287016136c4565b9150509250925092565b600080600080608085870312156137b3576137b26146b1565b5b60006137c187828801613642565b94505060206137d287828801613642565b93505060406137e3878288016136c4565b925050606085013567ffffffffffffffff811115613804576138036146ac565b5b61381087828801613696565b91505092959194509250565b60008060408385031215613833576138326146b1565b5b600061384185828601613642565b925050602061385285828601613657565b9150509250929050565b60008060408385031215613873576138726146b1565b5b600061388185828601613642565b9250506020613892858286016136c4565b9150509250929050565b6000602082840312156138b2576138b16146b1565b5b60006138c08482850161366c565b91505092915050565b6000602082840312156138df576138de6146b1565b5b60006138ed84828501613681565b91505092915050565b60006020828403121561390c5761390b6146b1565b5b600061391a848285016136c4565b91505092915050565b61392c816143f5565b82525050565b61394361393e826143f5565b614564565b82525050565b61395281614407565b82525050565b600061396382614266565b61396d818561427c565b935061397d818560208601614485565b613986816146b6565b840191505092915050565b600061399c82614271565b6139a6818561428d565b93506139b6818560208601614485565b6139bf816146b6565b840191505092915050565b60006139d582614271565b6139df818561429e565b93506139ef818560208601614485565b80840191505092915050565b6000613a08602b8361428d565b9150613a13826146d4565b604082019050919050565b6000613a2b60328361428d565b9150613a3682614723565b604082019050919050565b6000613a4e60268361428d565b9150613a5982614772565b604082019050919050565b6000613a71601c8361428d565b9150613a7c826147c1565b602082019050919050565b6000613a9460248361428d565b9150613a9f826147ea565b604082019050919050565b6000613ab760198361428d565b9150613ac282614839565b602082019050919050565b6000613ada600f8361428d565b9150613ae582614862565b602082019050919050565b6000613afd602c8361428d565b9150613b088261488b565b604082019050919050565b6000613b2060388361428d565b9150613b2b826148da565b604082019050919050565b6000613b43602a8361428d565b9150613b4e82614929565b604082019050919050565b6000613b6660298361428d565b9150613b7182614978565b604082019050919050565b6000613b8960028361429e565b9150613b94826149c7565b600282019050919050565b6000613bac60208361428d565b9150613bb7826149f0565b602082019050919050565b6000613bcf600b8361428d565b9150613bda82614a19565b602082019050919050565b6000613bf2602c8361428d565b9150613bfd82614a42565b604082019050919050565b6000613c1560208361428d565b9150613c2082614a91565b602082019050919050565b6000613c3860298361428d565b9150613c4382614aba565b604082019050919050565b6000613c5b60218361428d565b9150613c6682614b09565b604082019050919050565b6000613c7e601d8361429e565b9150613c8982614b58565b601d82019050919050565b6000613ca160318361428d565b9150613cac82614b81565b604082019050919050565b6000613cc4602c8361428d565b9150613ccf82614bd0565b604082019050919050565b6000613ce7601f8361428d565b9150613cf282614c1f565b602082019050919050565b6000613d0a60828361429e565b9150613d1582614c48565b608282019050919050565b6000613d2d601c8361428d565b9150613d3882614d09565b602082019050919050565b613d4c8161445f565b82525050565b6000613d5e8285613932565b601482019150613d6e8284613932565b6014820191508190509392505050565b6000613d8a828a6139ca565b9150613d9682896139ca565b9150613da282886139ca565b9150613dae82876139ca565b9150613dba82866139ca565b9150613dc682856139ca565b9150613dd282846139ca565b915081905098975050505050505050565b6000613def828c6139ca565b9150613dfb828b6139ca565b9150613e07828a6139ca565b9150613e1382896139ca565b9150613e1f82886139ca565b9150613e2b82876139ca565b9150613e3782866139ca565b9150613e4382856139ca565b9150613e4f82846139ca565b91508190509a9950505050505050505050565b6000613e6d82613c71565b9150613e7982846139ca565b915081905092915050565b6000613e8f82613cfd565b9150613e9b82846139ca565b9150613ea682613b7c565b915081905092915050565b6000602082019050613ec66000830184613923565b92915050565b6000608082019050613ee16000830187613923565b613eee6020830186613923565b613efb6040830185613d43565b8181036060830152613f0d8184613958565b905095945050505050565b6000602082019050613f2d6000830184613949565b92915050565b60006020820190508181036000830152613f4d8184613991565b905092915050565b60006020820190508181036000830152613f6e816139fb565b9050919050565b60006020820190508181036000830152613f8e81613a1e565b9050919050565b60006020820190508181036000830152613fae81613a41565b9050919050565b60006020820190508181036000830152613fce81613a64565b9050919050565b60006020820190508181036000830152613fee81613a87565b9050919050565b6000602082019050818103600083015261400e81613aaa565b9050919050565b6000602082019050818103600083015261402e81613acd565b9050919050565b6000602082019050818103600083015261404e81613af0565b9050919050565b6000602082019050818103600083015261406e81613b13565b9050919050565b6000602082019050818103600083015261408e81613b36565b9050919050565b600060208201905081810360008301526140ae81613b59565b9050919050565b600060208201905081810360008301526140ce81613b9f565b9050919050565b600060208201905081810360008301526140ee81613bc2565b9050919050565b6000602082019050818103600083015261410e81613be5565b9050919050565b6000602082019050818103600083015261412e81613c08565b9050919050565b6000602082019050818103600083015261414e81613c2b565b9050919050565b6000602082019050818103600083015261416e81613c4e565b9050919050565b6000602082019050818103600083015261418e81613c94565b9050919050565b600060208201905081810360008301526141ae81613cb7565b9050919050565b600060208201905081810360008301526141ce81613cda565b9050919050565b600060208201905081810360008301526141ee81613d20565b9050919050565b600060208201905061420a6000830184613d43565b92915050565b600061421a61422b565b905061422682826144ea565b919050565b6000604051905090565b600067ffffffffffffffff8211156142505761424f614673565b5b614259826146b6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142b48261445f565b91506142bf8361445f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142f4576142f3614588565b5b828201905092915050565b600061430a82614469565b915061431583614469565b92508260ff0382111561432b5761432a614588565b5b828201905092915050565b60006143418261445f565b915061434c8361445f565b92508261435c5761435b6145b7565b5b828204905092915050565b60006143728261445f565b915061437d8361445f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143b6576143b5614588565b5b828202905092915050565b60006143cc8261445f565b91506143d78361445f565b9250828210156143ea576143e9614588565b5b828203905092915050565b60006144008261443f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156144a3578082015181840152602081019050614488565b838111156144b2576000848401525b50505050565b600060028204905060018216806144d057607f821691505b602082108114156144e4576144e36145e6565b5b50919050565b6144f3826146b6565b810181811067ffffffffffffffff8211171561451257614511614673565b5b80604052505050565b60006145268261445f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561455957614558614588565b5b600182019050919050565b600061456f82614576565b9050919050565b6000614581826146c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f616c7265616479206d6172726965640000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6e6f74206d617272696564000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f7b226e616d65223a20224120566f77222c20226465736372697074696f6e223a60008201527f2022566f77732061726520657465726e616c20636f6d6d69746d656e7473206660208201527f726f6d206f6e65206164647265737320746f20616e6f746865722e222c20226960408201527f6d616765223a2022646174613a696d6167652f7376672b786d6c3b626173653660608201527f342c000000000000000000000000000000000000000000000000000000000000608082015250565b7f6e6f2070726f706f73616c20746f20796f752066726f6d207468656d00000000600082015250565b614d3b816143f5565b8114614d4657600080fd5b50565b614d5281614407565b8114614d5d57600080fd5b50565b614d6981614413565b8114614d7457600080fd5b50565b614d808161445f565b8114614d8b57600080fd5b5056fe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e4d617920746865697220756e696f6e2067726f77207769746820776973646f6d20616e642067726163652e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e2c3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a20626c61636b3b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22776869746522202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e496e2074686520626c6f636b206e756d62657220a2646970667358221220ce9805c4f86cf64668d81b08e515d53c785a06d3eb3614e4309dfda4997a73f864736f6c63430008070033

Deployed Bytecode Sourcemap

44506:5144:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44922:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38356:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25470:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27029:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26552:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38996:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27919:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49142:505;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38664:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44745:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28329:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46014:524;;;:::i;:::-;;39186:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25164:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24894:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9862:94;;;:::i;:::-;;9211:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25639:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45102:900;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27322:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28585:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44693:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46550:1899;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27688:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10111:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44922:168;45016:1;44984:34;;:9;:20;44994:9;44984:20;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;44976:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45073:9;45049;:21;45059:10;45049:21;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;44922:168;:::o;38356:224::-;38458:4;38497:35;38482:50;;;:11;:50;;;;:90;;;;38536:36;38560:11;38536:23;:36::i;:::-;38482:90;38475:97;;38356:224;;;:::o;25470:100::-;25524:13;25557:5;25550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25470:100;:::o;27029:221::-;27105:7;27133:16;27141:7;27133;:16::i;:::-;27125:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27218:15;:24;27234:7;27218:24;;;;;;;;;;;;;;;;;;;;;27211:31;;27029:221;;;:::o;26552:411::-;26633:13;26649:23;26664:7;26649:14;:23::i;:::-;26633:39;;26697:5;26691:11;;:2;:11;;;;26683:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26791:5;26775:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26800:37;26817:5;26824:12;:10;:12::i;:::-;26800:16;:37::i;:::-;26775:62;26753:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26934:21;26943:2;26947:7;26934:8;:21::i;:::-;26622:341;26552:411;;:::o;38996:113::-;39057:7;39084:10;:17;;;;39077:24;;38996:113;:::o;27919:339::-;28114:41;28133:12;:10;:12::i;:::-;28147:7;28114:18;:41::i;:::-;28106:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28222:28;28232:4;28238:2;28242:7;28222:9;:28::i;:::-;27919:339;;;:::o;49142:505::-;49201:13;49226:14;49275:8;49251:35;;49243:44;;49226:61;;49297:16;:37;;;;;;;;;;;;;;;;;;;49344:20;49377:2;49367:13;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49344:36;;49390:16;:7;49398:1;49390:10;;;;;;;;:::i;:::-;;;;;:16;;;;;;;;;;;49416;:7;49424:1;49416:10;;;;;;;;:::i;:::-;;;;;:16;;;;;;;;;;;49446:6;49442:166;49462:2;49458:1;:6;49442:166;;;49502:3;49530:1;49512:6;49523:2;49519:1;:6;;;;:::i;:::-;49512:14;;;;;;;:::i;:::-;;;;;:19;;;;;49506:26;;49502:31;;;;;;;;;;:::i;:::-;;;;;;;;;;49485:7;49497:1;49495;:3;;;;:::i;:::-;49493:1;:5;;;;:::i;:::-;49485:14;;;;;;;;:::i;:::-;;;;;:48;;;;;;;;;;;49564:3;49591:4;49574:21;;:6;49585:2;49581:1;:6;;;;:::i;:::-;49574:14;;;;;;;:::i;:::-;;;;;:21;49568:28;;49564:33;;;;;;;;;;:::i;:::-;;;;;;;;;;49547:7;49559:1;49557;:3;;;;:::i;:::-;49555:1;:5;;;;:::i;:::-;49547:14;;;;;;;;:::i;:::-;;;;;:50;;;;;;;;;;;49466:3;;;;;:::i;:::-;;;;49442:166;;;;49631:7;49617:22;;;;;49142:505;;;:::o;38664:256::-;38761:7;38797:23;38814:5;38797:16;:23::i;:::-;38789:5;:31;38781:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38886:12;:19;38899:5;38886:19;;;;;;;;;;;;;;;:26;38906:5;38886:26;;;;;;;;;;;;38879:33;;38664:256;;;;:::o;44745:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;28329:185::-;28467:39;28484:4;28490:2;28494:7;28467:39;;;;;;;;;;;;:16;:39::i;:::-;28329:185;;;:::o;46014:524::-;12150:1;12746:7;;:19;;12738:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;12150:1;12879:7;:18;;;;46103:1:::1;46070:35;;:9;:21;46080:10;46070:21;;;;;;;;;;;;;;;;;;;;;;;;;:35;;;;46062:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;46132:17;46152:9;:21;46162:10;46152:21;;;;;;;;;;;;;;;;;;;;;;;;;46132:41;;46194:21;46253:10;46265:9;46236:39;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46226:50;;;;;;46218:59;;46194:83;;46288:21;46347:9;46358:10;46330:39;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46320:50;;;;;;46312:59;;46288:83;;46399:9;:21;46409:10;46399:21;;;;;;;;;;;;;;;;46392:28;;;;;;;;;;;46438:9;:20;46448:9;46438:20;;;;;;;;;;;;;;;;46431:27;;;;;;;;;;;46479:20;46485:13;46479:5;:20::i;:::-;46510;46516:13;46510:5;:20::i;:::-;46051:487;;;12106:1:::0;13058:7;:22;;;;46014:524::o;39186:233::-;39261:7;39297:30;:28;:30::i;:::-;39289:5;:38;39281:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;39394:10;39405:5;39394:17;;;;;;;;:::i;:::-;;;;;;;;;;39387:24;;39186:233;;;:::o;25164:239::-;25236:7;25256:13;25272:7;:16;25280:7;25272:16;;;;;;;;;;;;;;;;;;;;;25256:32;;25324:1;25307:19;;:5;:19;;;;25299:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25390:5;25383:12;;;25164:239;;;:::o;24894:208::-;24966:7;25011:1;24994:19;;:5;:19;;;;24986:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25078:9;:16;25088:5;25078:16;;;;;;;;;;;;;;;;25071:23;;24894:208;;;:::o;9862:94::-;9442:12;:10;:12::i;:::-;9431:23;;:7;:5;:7::i;:::-;:23;;;9423:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9927:21:::1;9945:1;9927:9;:21::i;:::-;9862:94::o:0;9211:87::-;9257:7;9284:6;;;;;;;;;;;9277:13;;9211:87;:::o;25639:104::-;25695:13;25728:7;25721:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25639:104;:::o;45102:900::-;12150:1;12746:7;;:19;;12738:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;12150:1;12879:7;:18;;;;45198:10:::1;45175:33;;:9;:19;45185:8;45175:19;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;45167:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45274:10;45252:9;:19;45262:8;45252:19;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;45319:8;45295:9;:21;45305:10;45295:21;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;45345:9;:19;45355:8;45345:19;;;;;;;;;;;;;;;;45338:26;;;;;;;;;;;45382:9;:21;45392:10;45382:21;;;;;;;;;;;;;;;;45375:28;;;;;;;;;;;45424:23;45485:10;45497:8;45468:38;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45458:49;;;;;;45450:58;;45424:84;;45519:23;45580:8;45590:10;45563:38;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45553:49;;;;;;45545:58;;45519:84;;45624:24;;:::i;:::-;45679:8;45659;:17;;:28;;;;;;;;;::::0;::::1;45718:10;45698:8;:17;;:30;;;;;;;;;::::0;::::1;45762:12;45739:8;:20;;:35;;;::::0;::::1;45828:8;45795:13;:30;45809:15;45795:30;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45880:8;45847:13;:30;45861:15;45847:30;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45909:38;45919:10;45931:15;45909:9;:38::i;:::-;45958:36;45968:8;45978:15;45958:9;:36::i;:::-;45156:846;;;12106:1:::0;13058:7;:22;;;;45102:900;:::o;27322:295::-;27437:12;:10;:12::i;:::-;27425:24;;:8;:24;;;;27417:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;27537:8;27492:18;:32;27511:12;:10;:12::i;:::-;27492:32;;;;;;;;;;;;;;;:42;27525:8;27492:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27590:8;27561:48;;27576:12;:10;:12::i;:::-;27561:48;;;27600:8;27561:48;;;;;;:::i;:::-;;;;;;;;27322:295;;:::o;28585:328::-;28760:41;28779:12;:10;:12::i;:::-;28793:7;28760:18;:41::i;:::-;28752:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28866:39;28880:4;28886:2;28890:7;28899:5;28866:13;:39::i;:::-;28585:328;;;;:::o;44693:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;46550:1899::-;46615:13;46641:24;46668:13;:22;46682:7;46668:22;;;;;;;;;;;46641:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46711:23;;:::i;:::-;46745:286;;;;;;;;;;;;;;;;;:5;46751:1;46745:8;;;;;;;:::i;:::-;;;;;:286;;;;47055:30;47064:8;:20;;;47055:8;:30::i;:::-;47044:5;47050:1;47044:8;;;;;;;:::i;:::-;;;;;:41;;;;47098:54;;;;;;;;;;;;;;;;;:5;47104:1;47098:8;;;;;;;:::i;:::-;;;;;:54;;;;47176:30;47188:8;:17;;;47176:11;:30::i;:::-;47165:5;47171:1;47165:8;;;;;;;:::i;:::-;;;;;:41;;;;47219:53;;;;;;;;;;;;;;;;;:5;47225:1;47219:8;;;;;;;:::i;:::-;;;;;:53;;;;47285:16;;;;;;;;;;;;;;;;;:5;47291:1;47285:8;;;;;;;:::i;:::-;;;;;:16;;;;47314:53;;;;;;;;;;;;;;;;;:5;47320:1;47314:8;;;;;;;:::i;:::-;;;;;:53;;;;47391:30;47403:8;:17;;;47391:11;:30::i;:::-;47380:5;47386:1;47380:8;;;;;;;:::i;:::-;;;;;:41;;;;47434:54;;;;;;;;;;;;;;;;;:5;47440:1;47434:8;;;;;;;:::i;:::-;;;;;:54;;;;47501:33;;;;;;;;;;;;;;;;;:5;47507:1;47501:8;;;;;;;:::i;:::-;;;;;:33;;;;47547:55;;;;;;;;;;;;;;;;;:5;47553:2;47547:9;;;;;;;:::i;:::-;;;;;:55;;;;47615:14;;;;;;;;;;;;:5;47621:2;47615:9;;;;;;;:::i;:::-;;;;;:14;;;;47642:55;;;;;;;;;;;;;;;;;:5;47648:2;47642:9;;;;;;;:::i;:::-;;;;;:55;;;;47710:57;;;;;;;;;;;;;;;;;:5;47716:2;47710:9;;;;;;;:::i;:::-;;;;;:57;;;;47780:27;;;;;;;;;;;;;;;;;:5;47786:2;47780:9;;;;;;;:::i;:::-;;;;;:27;;;;47820:20;47867:5;47873:1;47867:8;;;;;;;:::i;:::-;;;;;;47877:5;47883:1;47877:8;;;;;;;:::i;:::-;;;;;;47887:5;47893:1;47887:8;;;;;;;:::i;:::-;;;;;;47897:5;47903:1;47897:8;;;;;;;:::i;:::-;;;;;;47907:5;47913:1;47907:8;;;;;;;:::i;:::-;;;;;;47917:5;47923:1;47917:8;;;;;;;:::i;:::-;;;;;;47927:5;47933:1;47927:8;;;;;;;:::i;:::-;;;;;;47937:5;47943:1;47937:8;;;;;;;:::i;:::-;;;;;;47947:5;47953:1;47947:8;;;;;;;:::i;:::-;;;;;;47850:106;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47820:137;;48001:6;48009:5;48015:1;48009:8;;;;;;;:::i;:::-;;;;;;48019:5;48025:2;48019:9;;;;;;;:::i;:::-;;;;;;48030:5;48036:2;48030:9;;;;;;;:::i;:::-;;;;;;48041:5;48047:2;48041:9;;;;;;;:::i;:::-;;;;;;48052:5;48058:2;48052:9;;;;;;;:::i;:::-;;;;;;48063:5;48069:2;48063:9;;;;;;;:::i;:::-;;;;;;47984:89;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47968:106;;48095:18;48116:216;48294:28;48314:6;48294:13;:28::i;:::-;48143:186;;;;;;;;:::i;:::-;;;;;;;;;;;;;48116:13;:216::i;:::-;48095:237;;48409:4;48359:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;48343:72;;48435:6;48428:13;;;;;;46550:1899;;;:::o;27688:164::-;27785:4;27809:18;:25;27828:5;27809:25;;;;;;;;;;;;;;;:35;27835:8;27809:35;;;;;;;;;;;;;;;;;;;;;;;;;27802:42;;27688:164;;;;:::o;10111:192::-;9442:12;:10;:12::i;:::-;9431:23;;:7;:5;:7::i;:::-;:23;;;9423:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10220:1:::1;10200:22;;:8;:22;;;;10192:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10276:19;10286:8;10276:9;:19::i;:::-;10111:192:::0;:::o;24525:305::-;24627:4;24679:25;24664:40;;;:11;:40;;;;:105;;;;24736:33;24721:48;;;:11;:48;;;;24664:105;:158;;;;24786:36;24810:11;24786:23;:36::i;:::-;24664:158;24644:178;;24525:305;;;:::o;30423:127::-;30488:4;30540:1;30512:30;;:7;:16;30520:7;30512:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30505:37;;30423:127;;;:::o;8071:98::-;8124:7;8151:10;8144:17;;8071:98;:::o;34405:174::-;34507:2;34480:15;:24;34496:7;34480:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34563:7;34559:2;34525:46;;34534:23;34549:7;34534:14;:23::i;:::-;34525:46;;;;;;;;;;;;34405:174;;:::o;30717:348::-;30810:4;30835:16;30843:7;30835;:16::i;:::-;30827:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30911:13;30927:23;30942:7;30927:14;:23::i;:::-;30911:39;;30980:5;30969:16;;:7;:16;;;:51;;;;31013:7;30989:31;;:20;31001:7;30989:11;:20::i;:::-;:31;;;30969:51;:87;;;;31024:32;31041:5;31048:7;31024:16;:32::i;:::-;30969:87;30961:96;;;30717:348;;;;:::o;33709:578::-;33868:4;33841:31;;:23;33856:7;33841:14;:23::i;:::-;:31;;;33833:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33951:1;33937:16;;:2;:16;;;;33929:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34007:39;34028:4;34034:2;34038:7;34007:20;:39::i;:::-;34111:29;34128:1;34132:7;34111:8;:29::i;:::-;34172:1;34153:9;:15;34163:4;34153:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34201:1;34184:9;:13;34194:2;34184:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34232:2;34213:7;:16;34221:7;34213:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34271:7;34267:2;34252:27;;34261:4;34252:27;;;;;;;;;;;;33709:578;;;:::o;33012:360::-;33072:13;33088:23;33103:7;33088:14;:23::i;:::-;33072:39;;33124:48;33145:5;33160:1;33164:7;33124:20;:48::i;:::-;33213:29;33230:1;33234:7;33213:8;:29::i;:::-;33275:1;33255:9;:16;33265:5;33255:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;33294:7;:16;33302:7;33294:16;;;;;;;;;;;;33287:23;;;;;;;;;;;33356:7;33352:1;33328:36;;33337:5;33328:36;;;;;;;;;;;;33061:311;33012:360;:::o;10311:173::-;10367:16;10386:6;;;;;;;;;;;10367:25;;10412:8;10403:6;;:17;;;;;;;;;;;;;;;;;;10467:8;10436:40;;10457:8;10436:40;;;;;;;;;;;;10356:128;10311:173;:::o;31407:110::-;31483:26;31493:2;31497:7;31483:26;;;;;;;;;;;;:9;:26::i;:::-;31407:110;;:::o;29795:315::-;29952:28;29962:4;29968:2;29972:7;29952:9;:28::i;:::-;29999:48;30022:4;30028:2;30032:7;30041:5;29999:22;:48::i;:::-;29991:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29795:315;;;;:::o;48506:573::-;48556:27;48606:1;48600:2;:7;48596:50;;;48624:10;;;;;;;;;;;;;;;;;;;;;48596:50;48656:6;48665:2;48656:11;;48678:8;48697:69;48709:1;48704;:6;48697:69;;48727:5;;;;;:::i;:::-;;;;48752:2;48747:7;;;;;:::i;:::-;;;48697:69;;;48776:17;48806:3;48796:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48776:34;;48821:6;48830:3;48821:12;;48844:198;48857:1;48851:2;:7;48844:198;;48881:1;48879;:3;;;;:::i;:::-;48875:7;;48897:10;48937:2;48932;48927;:7;;;;:::i;:::-;:12;;;;:::i;:::-;48922:2;:17;;;;:::i;:::-;48911:2;:29;;;;:::i;:::-;48897:44;;48956:9;48975:4;48968:12;;48956:24;;49005:2;48995:4;49000:1;48995:7;;;;;;;;:::i;:::-;;;;;:12;;;;;;;;;;;49028:2;49022:8;;;;;:::i;:::-;;;48860:182;;48844:198;;;49066:4;49052:19;;;;;;48506:573;;;;:::o;50001:1607::-;50059:13;50085:11;50099:4;:11;50085:25;;50132:1;50125:3;:8;50121:23;;;50135:9;;;;;;;;;;;;;;;;;50121:23;50196:18;50234:1;50229;50223:3;:7;;;;:::i;:::-;50222:13;;;;:::i;:::-;50217:1;:19;;;;:::i;:::-;50196:40;;50294:19;50339:2;50326:10;:15;;;;:::i;:::-;50316:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50294:48;;50355:18;50376:5;;;;;;;;;;;;;;;;;50355:26;;50445:1;50438:5;50434:13;50490:2;50482:6;50478:15;50541:1;50509:777;50564:3;50561:1;50558:10;50509:777;;;50619:1;50616;50612:9;50607:14;;50677:8;50672:1;50666:4;50662:12;50656:19;50652:34;50757:4;50749:5;50745:2;50741:14;50737:25;50727:8;50723:40;50717:47;50796:3;50793:1;50789:11;50782:18;;50887:4;50878;50870:5;50866:2;50862:14;50858:25;50848:8;50844:40;50838:47;50834:58;50829:3;50825:68;50818:75;;50925:3;50922:1;50918:11;50911:18;;51015:4;51006;50998:5;50995:1;50991:13;50987:24;50977:8;50973:39;50967:46;50963:57;50958:3;50954:67;50947:74;;51053:3;51050:1;51046:11;51039:18;;51135:4;51126;51119:5;51115:16;51105:8;51101:31;51095:38;51091:49;51086:3;51082:59;51075:66;;51175:3;51170;51166:13;51159:20;;51217:3;51206:9;51199:22;51269:1;51258:9;51254:17;51241:30;;50588:698;;50509:777;;;50513:44;51318:1;51313:3;51309:11;51339:1;51334:84;;;;51437:1;51432:82;;;;51302:212;;51334:84;51395:6;51390:3;51386:16;51382:1;51371:9;51367:17;51360:43;51334:84;;51432:82;51493:4;51488:3;51484:14;51480:1;51469:9;51465:17;51458:41;51302:212;;51545:10;51537:6;51530:26;50403:1164;;51593:6;51579:21;;;;;;50001:1607;;;;:::o;23132:157::-;23217:4;23256:25;23241:40;;;:11;:40;;;;23234:47;;23132:157;;;:::o;40032:589::-;40176:45;40203:4;40209:2;40213:7;40176:26;:45::i;:::-;40254:1;40238:18;;:4;:18;;;40234:187;;;40273:40;40305:7;40273:31;:40::i;:::-;40234:187;;;40343:2;40335:10;;:4;:10;;;40331:90;;40362:47;40395:4;40401:7;40362:32;:47::i;:::-;40331:90;40234:187;40449:1;40435:16;;:2;:16;;;40431:183;;;40468:45;40505:7;40468:36;:45::i;:::-;40431:183;;;40541:4;40535:10;;:2;:10;;;40531:83;;40562:40;40590:2;40594:7;40562:27;:40::i;:::-;40531:83;40431:183;40032:589;;;:::o;31744:321::-;31874:18;31880:2;31884:7;31874:5;:18::i;:::-;31925:54;31956:1;31960:2;31964:7;31973:5;31925:22;:54::i;:::-;31903:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31744:321;;;:::o;35144:803::-;35299:4;35320:15;:2;:13;;;:15::i;:::-;35316:624;;;35372:2;35356:36;;;35393:12;:10;:12::i;:::-;35407:4;35413:7;35422:5;35356:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35352:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35619:1;35602:6;:13;:18;35598:272;;;35645:60;;;;;;;;;;:::i;:::-;;;;;;;;35598:272;35820:6;35814:13;35805:6;35801:2;35797:15;35790:38;35352:533;35489:45;;;35479:55;;;:6;:55;;;;35472:62;;;;;35316:624;35924:4;35917:11;;35144:803;;;;;;;:::o;36519:126::-;;;;:::o;41344:164::-;41448:10;:17;;;;41421:15;:24;41437:7;41421:24;;;;;;;;;;;:44;;;;41476:10;41492:7;41476:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41344:164;:::o;42135:988::-;42401:22;42451:1;42426:22;42443:4;42426:16;:22::i;:::-;:26;;;;:::i;:::-;42401:51;;42463:18;42484:17;:26;42502:7;42484:26;;;;;;;;;;;;42463:47;;42631:14;42617:10;:28;42613:328;;42662:19;42684:12;:18;42697:4;42684:18;;;;;;;;;;;;;;;:34;42703:14;42684:34;;;;;;;;;;;;42662:56;;42768:11;42735:12;:18;42748:4;42735:18;;;;;;;;;;;;;;;:30;42754:10;42735:30;;;;;;;;;;;:44;;;;42885:10;42852:17;:30;42870:11;42852:30;;;;;;;;;;;:43;;;;42647:294;42613:328;43037:17;:26;43055:7;43037:26;;;;;;;;;;;43030:33;;;43081:12;:18;43094:4;43081:18;;;;;;;;;;;;;;;:34;43100:14;43081:34;;;;;;;;;;;43074:41;;;42216:907;;42135:988;;:::o;43418:1079::-;43671:22;43716:1;43696:10;:17;;;;:21;;;;:::i;:::-;43671:46;;43728:18;43749:15;:24;43765:7;43749:24;;;;;;;;;;;;43728:45;;44100:19;44122:10;44133:14;44122:26;;;;;;;;:::i;:::-;;;;;;;;;;44100:48;;44186:11;44161:10;44172;44161:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;44297:10;44266:15;:28;44282:11;44266:28;;;;;;;;;;;:41;;;;44438:15;:24;44454:7;44438:24;;;;;;;;;;;44431:31;;;44473:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43489:1008;;;43418:1079;:::o;40922:221::-;41007:14;41024:20;41041:2;41024:16;:20::i;:::-;41007:37;;41082:7;41055:12;:16;41068:2;41055:16;;;;;;;;;;;;;;;:24;41072:6;41055:24;;;;;;;;;;;:34;;;;41129:6;41100:17;:26;41118:7;41100:26;;;;;;;;;;;:35;;;;40996:147;40922:221;;:::o;32401:382::-;32495:1;32481:16;;:2;:16;;;;32473:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32554:16;32562:7;32554;:16::i;:::-;32553:17;32545:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32616:45;32645:1;32649:2;32653:7;32616:20;:45::i;:::-;32691:1;32674:9;:13;32684:2;32674:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32722:2;32703:7;:16;32711:7;32703:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32767:7;32763:2;32742:33;;32759:1;32742:33;;;;;;;;;;;;32401:382;;:::o;15304:387::-;15364:4;15572:12;15639:7;15627:20;15619:28;;15682:1;15675:4;:8;15668:15;;;15304:387;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:157::-;6094:45;6114:24;6132:5;6114:24;:::i;:::-;6094:45;:::i;:::-;6089:3;6082:58;5989:157;;:::o;6152:109::-;6233:21;6248:5;6233:21;:::i;:::-;6228:3;6221:34;6152:109;;:::o;6267:360::-;6353:3;6381:38;6413:5;6381:38;:::i;:::-;6435:70;6498:6;6493:3;6435:70;:::i;:::-;6428:77;;6514:52;6559:6;6554:3;6547:4;6540:5;6536:16;6514:52;:::i;:::-;6591:29;6613:6;6591:29;:::i;:::-;6586:3;6582:39;6575:46;;6357:270;6267:360;;;;:::o;6633:364::-;6721:3;6749:39;6782:5;6749:39;:::i;:::-;6804:71;6868:6;6863:3;6804:71;:::i;:::-;6797:78;;6884:52;6929:6;6924:3;6917:4;6910:5;6906:16;6884:52;:::i;:::-;6961:29;6983:6;6961:29;:::i;:::-;6956:3;6952:39;6945:46;;6725:272;6633:364;;;;:::o;7003:377::-;7109:3;7137:39;7170:5;7137:39;:::i;:::-;7192:89;7274:6;7269:3;7192:89;:::i;:::-;7185:96;;7290:52;7335:6;7330:3;7323:4;7316:5;7312:16;7290:52;:::i;:::-;7367:6;7362:3;7358:16;7351:23;;7113:267;7003:377;;;;:::o;7386:366::-;7528:3;7549:67;7613:2;7608:3;7549:67;:::i;:::-;7542:74;;7625:93;7714:3;7625:93;:::i;:::-;7743:2;7738:3;7734:12;7727:19;;7386:366;;;:::o;7758:::-;7900:3;7921:67;7985:2;7980:3;7921:67;:::i;:::-;7914:74;;7997:93;8086:3;7997:93;:::i;:::-;8115:2;8110:3;8106:12;8099:19;;7758:366;;;:::o;8130:::-;8272:3;8293:67;8357:2;8352:3;8293:67;:::i;:::-;8286:74;;8369:93;8458:3;8369:93;:::i;:::-;8487:2;8482:3;8478:12;8471:19;;8130:366;;;:::o;8502:::-;8644:3;8665:67;8729:2;8724:3;8665:67;:::i;:::-;8658:74;;8741:93;8830:3;8741:93;:::i;:::-;8859:2;8854:3;8850:12;8843:19;;8502:366;;;:::o;8874:::-;9016:3;9037:67;9101:2;9096:3;9037:67;:::i;:::-;9030:74;;9113:93;9202:3;9113:93;:::i;:::-;9231:2;9226:3;9222:12;9215:19;;8874:366;;;:::o;9246:::-;9388:3;9409:67;9473:2;9468:3;9409:67;:::i;:::-;9402:74;;9485:93;9574:3;9485:93;:::i;:::-;9603:2;9598:3;9594:12;9587:19;;9246:366;;;:::o;9618:::-;9760:3;9781:67;9845:2;9840:3;9781:67;:::i;:::-;9774:74;;9857:93;9946:3;9857:93;:::i;:::-;9975:2;9970:3;9966:12;9959:19;;9618:366;;;:::o;9990:::-;10132:3;10153:67;10217:2;10212:3;10153:67;:::i;:::-;10146:74;;10229:93;10318:3;10229:93;:::i;:::-;10347:2;10342:3;10338:12;10331:19;;9990:366;;;:::o;10362:::-;10504:3;10525:67;10589:2;10584:3;10525:67;:::i;:::-;10518:74;;10601:93;10690:3;10601:93;:::i;:::-;10719:2;10714:3;10710:12;10703:19;;10362:366;;;:::o;10734:::-;10876:3;10897:67;10961:2;10956:3;10897:67;:::i;:::-;10890:74;;10973:93;11062:3;10973:93;:::i;:::-;11091:2;11086:3;11082:12;11075:19;;10734:366;;;:::o;11106:::-;11248:3;11269:67;11333:2;11328:3;11269:67;:::i;:::-;11262:74;;11345:93;11434:3;11345:93;:::i;:::-;11463:2;11458:3;11454:12;11447:19;;11106:366;;;:::o;11478:400::-;11638:3;11659:84;11741:1;11736:3;11659:84;:::i;:::-;11652:91;;11752:93;11841:3;11752:93;:::i;:::-;11870:1;11865:3;11861:11;11854:18;;11478:400;;;:::o;11884:366::-;12026:3;12047:67;12111:2;12106:3;12047:67;:::i;:::-;12040:74;;12123:93;12212:3;12123:93;:::i;:::-;12241:2;12236:3;12232:12;12225:19;;11884:366;;;:::o;12256:::-;12398:3;12419:67;12483:2;12478:3;12419:67;:::i;:::-;12412:74;;12495:93;12584:3;12495:93;:::i;:::-;12613:2;12608:3;12604:12;12597:19;;12256:366;;;:::o;12628:::-;12770:3;12791:67;12855:2;12850:3;12791:67;:::i;:::-;12784:74;;12867:93;12956:3;12867:93;:::i;:::-;12985:2;12980:3;12976:12;12969:19;;12628:366;;;:::o;13000:::-;13142:3;13163:67;13227:2;13222:3;13163:67;:::i;:::-;13156:74;;13239:93;13328:3;13239:93;:::i;:::-;13357:2;13352:3;13348:12;13341:19;;13000:366;;;:::o;13372:::-;13514:3;13535:67;13599:2;13594:3;13535:67;:::i;:::-;13528:74;;13611:93;13700:3;13611:93;:::i;:::-;13729:2;13724:3;13720:12;13713:19;;13372:366;;;:::o;13744:::-;13886:3;13907:67;13971:2;13966:3;13907:67;:::i;:::-;13900:74;;13983:93;14072:3;13983:93;:::i;:::-;14101:2;14096:3;14092:12;14085:19;;13744:366;;;:::o;14116:402::-;14276:3;14297:85;14379:2;14374:3;14297:85;:::i;:::-;14290:92;;14391:93;14480:3;14391:93;:::i;:::-;14509:2;14504:3;14500:12;14493:19;;14116:402;;;:::o;14524:366::-;14666:3;14687:67;14751:2;14746:3;14687:67;:::i;:::-;14680:74;;14763:93;14852:3;14763:93;:::i;:::-;14881:2;14876:3;14872:12;14865:19;;14524:366;;;:::o;14896:::-;15038:3;15059:67;15123:2;15118:3;15059:67;:::i;:::-;15052:74;;15135:93;15224:3;15135:93;:::i;:::-;15253:2;15248:3;15244:12;15237:19;;14896:366;;;:::o;15268:::-;15410:3;15431:67;15495:2;15490:3;15431:67;:::i;:::-;15424:74;;15507:93;15596:3;15507:93;:::i;:::-;15625:2;15620:3;15616:12;15609:19;;15268:366;;;:::o;15640:404::-;15800:3;15821:86;15903:3;15898;15821:86;:::i;:::-;15814:93;;15916;16005:3;15916:93;:::i;:::-;16034:3;16029;16025:13;16018:20;;15640:404;;;:::o;16050:366::-;16192:3;16213:67;16277:2;16272:3;16213:67;:::i;:::-;16206:74;;16289:93;16378:3;16289:93;:::i;:::-;16407:2;16402:3;16398:12;16391:19;;16050:366;;;:::o;16422:118::-;16509:24;16527:5;16509:24;:::i;:::-;16504:3;16497:37;16422:118;;:::o;16546:397::-;16686:3;16701:75;16772:3;16763:6;16701:75;:::i;:::-;16801:2;16796:3;16792:12;16785:19;;16814:75;16885:3;16876:6;16814:75;:::i;:::-;16914:2;16909:3;16905:12;16898:19;;16934:3;16927:10;;16546:397;;;;;:::o;16949:1235::-;17369:3;17391:95;17482:3;17473:6;17391:95;:::i;:::-;17384:102;;17503:95;17594:3;17585:6;17503:95;:::i;:::-;17496:102;;17615:95;17706:3;17697:6;17615:95;:::i;:::-;17608:102;;17727:95;17818:3;17809:6;17727:95;:::i;:::-;17720:102;;17839:95;17930:3;17921:6;17839:95;:::i;:::-;17832:102;;17951:95;18042:3;18033:6;17951:95;:::i;:::-;17944:102;;18063:95;18154:3;18145:6;18063:95;:::i;:::-;18056:102;;18175:3;18168:10;;16949:1235;;;;;;;;;;:::o;18190:1555::-;18706:3;18728:95;18819:3;18810:6;18728:95;:::i;:::-;18721:102;;18840:95;18931:3;18922:6;18840:95;:::i;:::-;18833:102;;18952:95;19043:3;19034:6;18952:95;:::i;:::-;18945:102;;19064:95;19155:3;19146:6;19064:95;:::i;:::-;19057:102;;19176:95;19267:3;19258:6;19176:95;:::i;:::-;19169:102;;19288:95;19379:3;19370:6;19288:95;:::i;:::-;19281:102;;19400:95;19491:3;19482:6;19400:95;:::i;:::-;19393:102;;19512:95;19603:3;19594:6;19512:95;:::i;:::-;19505:102;;19624:95;19715:3;19706:6;19624:95;:::i;:::-;19617:102;;19736:3;19729:10;;18190:1555;;;;;;;;;;;;:::o;19751:541::-;19984:3;20006:148;20150:3;20006:148;:::i;:::-;19999:155;;20171:95;20262:3;20253:6;20171:95;:::i;:::-;20164:102;;20283:3;20276:10;;19751:541;;;;:::o;20298:807::-;20632:3;20654:148;20798:3;20654:148;:::i;:::-;20647:155;;20819:95;20910:3;20901:6;20819:95;:::i;:::-;20812:102;;20931:148;21075:3;20931:148;:::i;:::-;20924:155;;21096:3;21089:10;;20298:807;;;;:::o;21111:222::-;21204:4;21242:2;21231:9;21227:18;21219:26;;21255:71;21323:1;21312:9;21308:17;21299:6;21255:71;:::i;:::-;21111:222;;;;:::o;21339:640::-;21534:4;21572:3;21561:9;21557:19;21549:27;;21586:71;21654:1;21643:9;21639:17;21630:6;21586:71;:::i;:::-;21667:72;21735:2;21724:9;21720:18;21711:6;21667:72;:::i;:::-;21749;21817:2;21806:9;21802:18;21793:6;21749:72;:::i;:::-;21868:9;21862:4;21858:20;21853:2;21842:9;21838:18;21831:48;21896:76;21967:4;21958:6;21896:76;:::i;:::-;21888:84;;21339:640;;;;;;;:::o;21985:210::-;22072:4;22110:2;22099:9;22095:18;22087:26;;22123:65;22185:1;22174:9;22170:17;22161:6;22123:65;:::i;:::-;21985:210;;;;:::o;22201:313::-;22314:4;22352:2;22341:9;22337:18;22329:26;;22401:9;22395:4;22391:20;22387:1;22376:9;22372:17;22365:47;22429:78;22502:4;22493:6;22429:78;:::i;:::-;22421:86;;22201:313;;;;:::o;22520:419::-;22686:4;22724:2;22713:9;22709:18;22701:26;;22773:9;22767:4;22763:20;22759:1;22748:9;22744:17;22737:47;22801:131;22927:4;22801:131;:::i;:::-;22793:139;;22520:419;;;:::o;22945:::-;23111:4;23149:2;23138:9;23134:18;23126:26;;23198:9;23192:4;23188:20;23184:1;23173:9;23169:17;23162:47;23226:131;23352:4;23226:131;:::i;:::-;23218:139;;22945:419;;;:::o;23370:::-;23536:4;23574:2;23563:9;23559:18;23551:26;;23623:9;23617:4;23613:20;23609:1;23598:9;23594:17;23587:47;23651:131;23777:4;23651:131;:::i;:::-;23643:139;;23370:419;;;:::o;23795:::-;23961:4;23999:2;23988:9;23984:18;23976:26;;24048:9;24042:4;24038:20;24034:1;24023:9;24019:17;24012:47;24076:131;24202:4;24076:131;:::i;:::-;24068:139;;23795:419;;;:::o;24220:::-;24386:4;24424:2;24413:9;24409:18;24401:26;;24473:9;24467:4;24463:20;24459:1;24448:9;24444:17;24437:47;24501:131;24627:4;24501:131;:::i;:::-;24493:139;;24220:419;;;:::o;24645:::-;24811:4;24849:2;24838:9;24834:18;24826:26;;24898:9;24892:4;24888:20;24884:1;24873:9;24869:17;24862:47;24926:131;25052:4;24926:131;:::i;:::-;24918:139;;24645:419;;;:::o;25070:::-;25236:4;25274:2;25263:9;25259:18;25251:26;;25323:9;25317:4;25313:20;25309:1;25298:9;25294:17;25287:47;25351:131;25477:4;25351:131;:::i;:::-;25343:139;;25070:419;;;:::o;25495:::-;25661:4;25699:2;25688:9;25684:18;25676:26;;25748:9;25742:4;25738:20;25734:1;25723:9;25719:17;25712:47;25776:131;25902:4;25776:131;:::i;:::-;25768:139;;25495:419;;;:::o;25920:::-;26086:4;26124:2;26113:9;26109:18;26101:26;;26173:9;26167:4;26163:20;26159:1;26148:9;26144:17;26137:47;26201:131;26327:4;26201:131;:::i;:::-;26193:139;;25920:419;;;:::o;26345:::-;26511:4;26549:2;26538:9;26534:18;26526:26;;26598:9;26592:4;26588:20;26584:1;26573:9;26569:17;26562:47;26626:131;26752:4;26626:131;:::i;:::-;26618:139;;26345:419;;;:::o;26770:::-;26936:4;26974:2;26963:9;26959:18;26951:26;;27023:9;27017:4;27013:20;27009:1;26998:9;26994:17;26987:47;27051:131;27177:4;27051:131;:::i;:::-;27043:139;;26770:419;;;:::o;27195:::-;27361:4;27399:2;27388:9;27384:18;27376:26;;27448:9;27442:4;27438:20;27434:1;27423:9;27419:17;27412:47;27476:131;27602:4;27476:131;:::i;:::-;27468:139;;27195:419;;;:::o;27620:::-;27786:4;27824:2;27813:9;27809:18;27801:26;;27873:9;27867:4;27863:20;27859:1;27848:9;27844:17;27837:47;27901:131;28027:4;27901:131;:::i;:::-;27893:139;;27620:419;;;:::o;28045:::-;28211:4;28249:2;28238:9;28234:18;28226:26;;28298:9;28292:4;28288:20;28284:1;28273:9;28269:17;28262:47;28326:131;28452:4;28326:131;:::i;:::-;28318:139;;28045:419;;;:::o;28470:::-;28636:4;28674:2;28663:9;28659:18;28651:26;;28723:9;28717:4;28713:20;28709:1;28698:9;28694:17;28687:47;28751:131;28877:4;28751:131;:::i;:::-;28743:139;;28470:419;;;:::o;28895:::-;29061:4;29099:2;29088:9;29084:18;29076:26;;29148:9;29142:4;29138:20;29134:1;29123:9;29119:17;29112:47;29176:131;29302:4;29176:131;:::i;:::-;29168:139;;28895:419;;;:::o;29320:::-;29486:4;29524:2;29513:9;29509:18;29501:26;;29573:9;29567:4;29563:20;29559:1;29548:9;29544:17;29537:47;29601:131;29727:4;29601:131;:::i;:::-;29593:139;;29320:419;;;:::o;29745:::-;29911:4;29949:2;29938:9;29934:18;29926:26;;29998:9;29992:4;29988:20;29984:1;29973:9;29969:17;29962:47;30026:131;30152:4;30026:131;:::i;:::-;30018:139;;29745:419;;;:::o;30170:::-;30336:4;30374:2;30363:9;30359:18;30351:26;;30423:9;30417:4;30413:20;30409:1;30398:9;30394:17;30387:47;30451:131;30577:4;30451:131;:::i;:::-;30443:139;;30170:419;;;:::o;30595:::-;30761:4;30799:2;30788:9;30784:18;30776:26;;30848:9;30842:4;30838:20;30834:1;30823:9;30819:17;30812:47;30876:131;31002:4;30876:131;:::i;:::-;30868:139;;30595:419;;;:::o;31020:::-;31186:4;31224:2;31213:9;31209:18;31201:26;;31273:9;31267:4;31263:20;31259:1;31248:9;31244:17;31237:47;31301:131;31427:4;31301:131;:::i;:::-;31293:139;;31020:419;;;:::o;31445:222::-;31538:4;31576:2;31565:9;31561:18;31553:26;;31589:71;31657:1;31646:9;31642:17;31633:6;31589:71;:::i;:::-;31445:222;;;;:::o;31673:129::-;31707:6;31734:20;;:::i;:::-;31724:30;;31763:33;31791:4;31783:6;31763:33;:::i;:::-;31673:129;;;:::o;31808:75::-;31841:6;31874:2;31868:9;31858:19;;31808:75;:::o;31889:307::-;31950:4;32040:18;32032:6;32029:30;32026:56;;;32062:18;;:::i;:::-;32026:56;32100:29;32122:6;32100:29;:::i;:::-;32092:37;;32184:4;32178;32174:15;32166:23;;31889:307;;;:::o;32202:98::-;32253:6;32287:5;32281:12;32271:22;;32202:98;;;:::o;32306:99::-;32358:6;32392:5;32386:12;32376:22;;32306:99;;;:::o;32411:168::-;32494:11;32528:6;32523:3;32516:19;32568:4;32563:3;32559:14;32544:29;;32411:168;;;;:::o;32585:169::-;32669:11;32703:6;32698:3;32691:19;32743:4;32738:3;32734:14;32719:29;;32585:169;;;;:::o;32760:148::-;32862:11;32899:3;32884:18;;32760:148;;;;:::o;32914:305::-;32954:3;32973:20;32991:1;32973:20;:::i;:::-;32968:25;;33007:20;33025:1;33007:20;:::i;:::-;33002:25;;33161:1;33093:66;33089:74;33086:1;33083:81;33080:107;;;33167:18;;:::i;:::-;33080:107;33211:1;33208;33204:9;33197:16;;32914:305;;;;:::o;33225:237::-;33263:3;33282:18;33298:1;33282:18;:::i;:::-;33277:23;;33314:18;33330:1;33314:18;:::i;:::-;33309:23;;33404:1;33398:4;33394:12;33391:1;33388:19;33385:45;;;33410:18;;:::i;:::-;33385:45;33454:1;33451;33447:9;33440:16;;33225:237;;;;:::o;33468:185::-;33508:1;33525:20;33543:1;33525:20;:::i;:::-;33520:25;;33559:20;33577:1;33559:20;:::i;:::-;33554:25;;33598:1;33588:35;;33603:18;;:::i;:::-;33588:35;33645:1;33642;33638:9;33633:14;;33468:185;;;;:::o;33659:348::-;33699:7;33722:20;33740:1;33722:20;:::i;:::-;33717:25;;33756:20;33774:1;33756:20;:::i;:::-;33751:25;;33944:1;33876:66;33872:74;33869:1;33866:81;33861:1;33854:9;33847:17;33843:105;33840:131;;;33951:18;;:::i;:::-;33840:131;33999:1;33996;33992:9;33981:20;;33659:348;;;;:::o;34013:191::-;34053:4;34073:20;34091:1;34073:20;:::i;:::-;34068:25;;34107:20;34125:1;34107:20;:::i;:::-;34102:25;;34146:1;34143;34140:8;34137:34;;;34151:18;;:::i;:::-;34137:34;34196:1;34193;34189:9;34181:17;;34013:191;;;;:::o;34210:96::-;34247:7;34276:24;34294:5;34276:24;:::i;:::-;34265:35;;34210:96;;;:::o;34312:90::-;34346:7;34389:5;34382:13;34375:21;34364:32;;34312:90;;;:::o;34408:149::-;34444:7;34484:66;34477:5;34473:78;34462:89;;34408:149;;;:::o;34563:126::-;34600:7;34640:42;34633:5;34629:54;34618:65;;34563:126;;;:::o;34695:77::-;34732:7;34761:5;34750:16;;34695:77;;;:::o;34778:86::-;34813:7;34853:4;34846:5;34842:16;34831:27;;34778:86;;;:::o;34870:154::-;34954:6;34949:3;34944;34931:30;35016:1;35007:6;35002:3;34998:16;34991:27;34870:154;;;:::o;35030:307::-;35098:1;35108:113;35122:6;35119:1;35116:13;35108:113;;;35207:1;35202:3;35198:11;35192:18;35188:1;35183:3;35179:11;35172:39;35144:2;35141:1;35137:10;35132:15;;35108:113;;;35239:6;35236:1;35233:13;35230:101;;;35319:1;35310:6;35305:3;35301:16;35294:27;35230:101;35079:258;35030:307;;;:::o;35343:320::-;35387:6;35424:1;35418:4;35414:12;35404:22;;35471:1;35465:4;35461:12;35492:18;35482:81;;35548:4;35540:6;35536:17;35526:27;;35482:81;35610:2;35602:6;35599:14;35579:18;35576:38;35573:84;;;35629:18;;:::i;:::-;35573:84;35394:269;35343:320;;;:::o;35669:281::-;35752:27;35774:4;35752:27;:::i;:::-;35744:6;35740:40;35882:6;35870:10;35867:22;35846:18;35834:10;35831:34;35828:62;35825:88;;;35893:18;;:::i;:::-;35825:88;35933:10;35929:2;35922:22;35712:238;35669:281;;:::o;35956:233::-;35995:3;36018:24;36036:5;36018:24;:::i;:::-;36009:33;;36064:66;36057:5;36054:77;36051:103;;;36134:18;;:::i;:::-;36051:103;36181:1;36174:5;36170:13;36163:20;;35956:233;;;:::o;36195:100::-;36234:7;36263:26;36283:5;36263:26;:::i;:::-;36252:37;;36195:100;;;:::o;36301:94::-;36340:7;36369:20;36383:5;36369:20;:::i;:::-;36358:31;;36301:94;;;:::o;36401:180::-;36449:77;36446:1;36439:88;36546:4;36543:1;36536:15;36570:4;36567:1;36560:15;36587:180;36635:77;36632:1;36625:88;36732:4;36729:1;36722:15;36756:4;36753:1;36746:15;36773:180;36821:77;36818:1;36811:88;36918:4;36915:1;36908:15;36942:4;36939:1;36932:15;36959:180;37007:77;37004:1;36997:88;37104:4;37101:1;37094:15;37128:4;37125:1;37118:15;37145:180;37193:77;37190:1;37183:88;37290:4;37287:1;37280:15;37314:4;37311:1;37304:15;37331:180;37379:77;37376:1;37369:88;37476:4;37473:1;37466:15;37500:4;37497:1;37490:15;37517:117;37626:1;37623;37616:12;37640:117;37749:1;37746;37739:12;37763:117;37872:1;37869;37862:12;37886:117;37995:1;37992;37985:12;38009:102;38050:6;38101:2;38097:7;38092:2;38085:5;38081:14;38077:28;38067:38;;38009:102;;;:::o;38117:94::-;38150:8;38198:5;38194:2;38190:14;38169:35;;38117:94;;;:::o;38217:230::-;38357:34;38353:1;38345:6;38341:14;38334:58;38426:13;38421:2;38413:6;38409:15;38402:38;38217:230;:::o;38453:237::-;38593:34;38589:1;38581:6;38577:14;38570:58;38662:20;38657:2;38649:6;38645:15;38638:45;38453:237;:::o;38696:225::-;38836:34;38832:1;38824:6;38820:14;38813:58;38905:8;38900:2;38892:6;38888:15;38881:33;38696:225;:::o;38927:178::-;39067:30;39063:1;39055:6;39051:14;39044:54;38927:178;:::o;39111:223::-;39251:34;39247:1;39239:6;39235:14;39228:58;39320:6;39315:2;39307:6;39303:15;39296:31;39111:223;:::o;39340:175::-;39480:27;39476:1;39468:6;39464:14;39457:51;39340:175;:::o;39521:165::-;39661:17;39657:1;39649:6;39645:14;39638:41;39521:165;:::o;39692:231::-;39832:34;39828:1;39820:6;39816:14;39809:58;39901:14;39896:2;39888:6;39884:15;39877:39;39692:231;:::o;39929:243::-;40069:34;40065:1;40057:6;40053:14;40046:58;40138:26;40133:2;40125:6;40121:15;40114:51;39929:243;:::o;40178:229::-;40318:34;40314:1;40306:6;40302:14;40295:58;40387:12;40382:2;40374:6;40370:15;40363:37;40178:229;:::o;40413:228::-;40553:34;40549:1;40541:6;40537:14;40530:58;40622:11;40617:2;40609:6;40605:15;40598:36;40413:228;:::o;40647:214::-;40787:66;40783:1;40775:6;40771:14;40764:90;40647:214;:::o;40867:182::-;41007:34;41003:1;40995:6;40991:14;40984:58;40867:182;:::o;41055:161::-;41195:13;41191:1;41183:6;41179:14;41172:37;41055:161;:::o;41222:231::-;41362:34;41358:1;41350:6;41346:14;41339:58;41431:14;41426:2;41418:6;41414:15;41407:39;41222:231;:::o;41459:182::-;41599:34;41595:1;41587:6;41583:14;41576:58;41459:182;:::o;41647:228::-;41787:34;41783:1;41775:6;41771:14;41764:58;41856:11;41851:2;41843:6;41839:15;41832:36;41647:228;:::o;41881:220::-;42021:34;42017:1;42009:6;42005:14;41998:58;42090:3;42085:2;42077:6;42073:15;42066:28;41881:220;:::o;42107:179::-;42247:31;42243:1;42235:6;42231:14;42224:55;42107:179;:::o;42292:236::-;42432:34;42428:1;42420:6;42416:14;42409:58;42501:19;42496:2;42488:6;42484:15;42477:44;42292:236;:::o;42534:231::-;42674:34;42670:1;42662:6;42658:14;42651:58;42743:14;42738:2;42730:6;42726:15;42719:39;42534:231;:::o;42771:181::-;42911:33;42907:1;42899:6;42895:14;42888:57;42771:181;:::o;42958:557::-;43098:66;43094:1;43086:6;43082:14;43075:90;43199:66;43194:2;43186:6;43182:15;43175:91;43300:66;43295:2;43287:6;43283:15;43276:91;43401:66;43396:2;43388:6;43384:15;43377:91;43503:4;43497:3;43489:6;43485:16;43478:30;42958:557;:::o;43521:178::-;43661:30;43657:1;43649:6;43645:14;43638:54;43521:178;:::o;43705:122::-;43778:24;43796:5;43778:24;:::i;:::-;43771:5;43768:35;43758:63;;43817:1;43814;43807:12;43758:63;43705:122;:::o;43833:116::-;43903:21;43918:5;43903:21;:::i;:::-;43896:5;43893:32;43883:60;;43939:1;43936;43929:12;43883:60;43833:116;:::o;43955:120::-;44027:23;44044:5;44027:23;:::i;:::-;44020:5;44017:34;44007:62;;44065:1;44062;44055:12;44007:62;43955:120;:::o;44081:122::-;44154:24;44172:5;44154:24;:::i;:::-;44147:5;44144:35;44134:63;;44193:1;44190;44183:12;44134:63;44081:122;:::o

Swarm Source

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

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