ETH Price: $3,008.51 (+4.43%)
Gas: 2 Gwei

Token

Stoned Ape Saturn Club (SASC)
 

Overview

Max Total Supply

6,969 SASC

Holders

2,358

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
metamommie.eth
Balance
5 SASC
0x3f910d480f37c761dceb3eb6b194d18180cc587a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Stoned Apez Saturn Club NFT Collection

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
StonedApeSaturnClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;

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

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

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

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

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



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



pragma solidity ^0.8.0;


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

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

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


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



pragma solidity ^0.8.0;

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public 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.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 {}
}

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/arcapol.sol


pragma solidity ^0.8.0;



contract StonedApeSaturnClub is ERC721Enumerable, Ownable {
    using Strings for uint256;

    address public _t1 = 0xd230f390AbB50470fa265a022d673c6147BDc396;
    address public _t2 = 0xbc15b4665633eC65925040fAb61D0fC1C4eeFAaB;
    address public _t3 = 0x5F55Cd7A509fdA9F0beB9309A49a689EB8C122EE;
    address public _t4 = 0x5F55Cd7A509fdA9F0beB9309A49a689EB8C122EE;
    address public _t5 = 0x9CED6C82326c7Dbc222dd17B6573E69cfE3983f2;
    address public _t6 = 0x630A035Be662260Db9Fe33cD58aFD71f7e8F4fa3;
    address public _t7 = 0x335B108025D6F6cAf4f98357baaa6Dfde715406C;
    address public _t8 = 0x872b7b86BA6F64E724CfB8788410cB3042F564FA;

    bool public _active = false;
    string public _baseTokenURI;
    uint256 public _gifts = 145;
    uint256 public _price = 0.024 ether;
    uint256 public _supply = 6969;

    constructor(string memory baseURI) ERC721("Stoned Ape Saturn Club", "SASC") {
        setBaseURI(baseURI);
        _safeMint( _t3, 0 );
        _safeMint( _t2, 1 );
        _safeMint( _t5, 2 );
        _safeMint( _t7, 3 );
        _safeMint( _t1, 4 );

    }

    function setActive(bool active) public onlyOwner {
        _active = active;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setPrice(uint256 price) public onlyOwner {
        _price = price;
    }

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

    function gift(address _to, uint256 _amount) external onlyOwner {
        require(_amount <= _gifts, "Gift reserve exceeded with provided amount.");

        uint256 supply = totalSupply();

        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }

        _gifts -= _amount;
    }

    function mint(uint256 _amount) public payable {
        uint256 supply = totalSupply();

        require( _active, "Sale is not active.");
        require( _amount < 10, "Provided amount exceeds mint limit.");
        require( msg.value >= _price * _amount, "Insufficient ether provided.");
        require( supply + _amount <= _supply - _gifts, "Supply exceeded with provided amount.");

        for(uint256 i; i < _amount; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function withdraw() public payable onlyOwner {
        uint256 _p1 = address(this).balance / 10;
        uint256 _p2 = address(this).balance * 2 / 25;
        uint256 _p3 = address(this).balance * 2 / 25;
        uint256 _p4 = address(this).balance * 11 / 100;
        uint256 _p5 = address(this).balance * 11 / 100;
        uint256 _p6 = address(this).balance * 11 / 100;
        uint256 _p7 = address(this).balance * 11 / 100;
        uint256 _p8 = address(this).balance * 3 / 10;

        require(payable(_t1).send(_p1));
        require(payable(_t2).send(_p2));
        require(payable(_t3).send(_p3));
        require(payable(_t4).send(_p4));
        require(payable(_t5).send(_p5));
        require(payable(_t6).send(_p6));
        require(payable(_t7).send(_p7));
        require(payable(_t8).send(_p8));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_gifts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t5","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t6","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t7","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t8","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"bool","name":"active","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405273d230f390abb50470fa265a022d673c6147bdc396600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bc15b4665633ec65925040fab61d0fc1c4eefaab600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735f55cd7a509fda9f0beb9309a49a689eb8c122ee600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735f55cd7a509fda9f0beb9309a49a689eb8c122ee600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739ced6c82326c7dbc222dd17b6573e69cfe3983f2600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073630a035be662260db9fe33cd58afd71f7e8f4fa3601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073335b108025d6f6caf4f98357baaa6dfde715406c601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073872b7b86ba6f64e724cfb8788410cb3042f564fa601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601260146101000a81548160ff0219169083151502179055506091601455665543df729c0000601555611b39601655348015620002ea57600080fd5b506040516200600f3803806200600f8339818101604052810190620003109190620011f3565b6040518060400160405280601681526020017f53746f6e6564204170652053617475726e20436c7562000000000000000000008152506040518060400160405280600481526020017f53415343000000000000000000000000000000000000000000000000000000008152508160009080519060200190620003949291906200107c565b508060019080519060200190620003ad9291906200107c565b505050620003d0620003c4620004f160201b60201c565b620004f960201b60201c565b620003e181620005bf60201b60201c565b62000416600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660006200066a60201b60201c565b6200044b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200066a60201b60201c565b62000480600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660026200066a60201b60201c565b620004b5601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660036200066a60201b60201c565b620004ea600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660046200066a60201b60201c565b50620018db565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005cf620004f160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005f56200069060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200064e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006459062001446565b60405180910390fd5b8060139080519060200190620006669291906200107c565b5050565b6200068c828260405180602001604052806000815250620006ba60201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006cc83836200072860201b60201c565b620006e160008484846200090e60201b60201c565b62000723576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071a90620013be565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200079b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007929062001424565b60405180910390fd5b620007ac8162000ac860201b60201c565b15620007ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e690620013e0565b60405180910390fd5b620008036000838362000b3460201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620008559190620014f4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006200093c8473ffffffffffffffffffffffffffffffffffffffff1662000c7b60201b62001e701760201c565b1562000abb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200096e620004f160201b60201c565b8786866040518563ffffffff1660e01b81526004016200099294939291906200136a565b602060405180830381600087803b158015620009ad57600080fd5b505af1925050508015620009e157506040513d601f19601f82011682018060405250810190620009de9190620011c1565b60015b62000a6a573d806000811462000a14576040519150601f19603f3d011682016040523d82523d6000602084013e62000a19565b606091505b5060008151141562000a62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a5990620013be565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000ac0565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000b4c83838362000c8e60201b62001e831760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000b995762000b938162000c9360201b60201c565b62000be1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000be05762000bdf838262000cdc60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c2e5762000c288162000e5960201b60201c565b62000c76565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000c755762000c74828262000f3560201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000cf68462000fc160201b6200134b1760201c565b62000d02919062001551565b905060006007600084815260200190815260200160002054905081811462000de8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000e6f919062001551565b905060006009600084815260200190815260200160002054905060006008838154811062000ea25762000ea162001725565b5b90600052602060002001549050806008838154811062000ec75762000ec662001725565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000f195762000f18620016f6565b5b6001900381819060005260206000200160009055905550505050565b600062000f4d8362000fc160201b6200134b1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001035576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200102c9062001402565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b8280546200108a906200162c565b90600052602060002090601f016020900481019282620010ae5760008555620010fa565b82601f10620010c957805160ff1916838001178555620010fa565b82800160010185558215620010fa579182015b82811115620010f9578251825591602001919060010190620010dc565b5b5090506200110991906200110d565b5090565b5b80821115620011285760008160009055506001016200110e565b5090565b6000620011436200113d8462001491565b62001468565b90508281526020810184848401111562001162576200116162001788565b5b6200116f848285620015f6565b509392505050565b6000815190506200118881620018c1565b92915050565b600082601f830112620011a657620011a562001783565b5b8151620011b88482602086016200112c565b91505092915050565b600060208284031215620011da57620011d962001792565b5b6000620011ea8482850162001177565b91505092915050565b6000602082840312156200120c576200120b62001792565b5b600082015167ffffffffffffffff8111156200122d576200122c6200178d565b5b6200123b848285016200118e565b91505092915050565b6200124f816200158c565b82525050565b60006200126282620014c7565b6200126e8185620014d2565b935062001280818560208601620015f6565b6200128b8162001797565b840191505092915050565b6000620012a5603283620014e3565b9150620012b282620017a8565b604082019050919050565b6000620012cc601c83620014e3565b9150620012d982620017f7565b602082019050919050565b6000620012f3602a83620014e3565b9150620013008262001820565b604082019050919050565b60006200131a602083620014e3565b915062001327826200186f565b602082019050919050565b600062001341602083620014e3565b91506200134e8262001898565b602082019050919050565b6200136481620015ec565b82525050565b600060808201905062001381600083018762001244565b62001390602083018662001244565b6200139f604083018562001359565b8181036060830152620013b3818462001255565b905095945050505050565b60006020820190508181036000830152620013d98162001296565b9050919050565b60006020820190508181036000830152620013fb81620012bd565b9050919050565b600060208201905081810360008301526200141d81620012e4565b9050919050565b600060208201905081810360008301526200143f816200130b565b9050919050565b60006020820190508181036000830152620014618162001332565b9050919050565b60006200147462001487565b905062001482828262001662565b919050565b6000604051905090565b600067ffffffffffffffff821115620014af57620014ae62001754565b5b620014ba8262001797565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200150182620015ec565b91506200150e83620015ec565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001546576200154562001698565b5b828201905092915050565b60006200155e82620015ec565b91506200156b83620015ec565b92508282101562001581576200158062001698565b5b828203905092915050565b60006200159982620015cc565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562001616578082015181840152602081019050620015f9565b8381111562001626576000848401525b50505050565b600060028204905060018216806200164557607f821691505b602082108114156200165c576200165b620016c7565b5b50919050565b6200166d8262001797565b810181811067ffffffffffffffff821117156200168f576200168e62001754565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620018cc81620015a0565b8114620018d857600080fd5b50565b61472480620018eb6000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063acec338a116100ab578063cfc86f7b1161006f578063cfc86f7b146107dd578063de96931914610808578063e985e9c514610833578063ee40494614610870578063f2fde38b1461089b57610225565b8063acec338a146106fa578063afc9161314610723578063b88d4fde1461074e578063c87b56dd14610777578063cbce4c97146107b457610225565b806391b7f5ed116100f257806391b7f5ed1461063657806395d89b411461065f578063a0712d681461068a578063a22cb465146106a6578063a2fe9c9b146106cf57610225565b8063715018a61461059e5780637e0620f9146105b55780638b8fcdd4146105e05780638da5cb5b1461060b57610225565b80633ccfd60b116101b157806355f804b31161017557806355f804b3146104a55780635f1a90ea146104ce5780636352211e146104f95780636e4d9c7a1461053657806370a082311461056157610225565b80633ccfd60b146103df5780634007ab46146103e957806342842e0e146104145780634d615d231461043d5780634f6ccce71461046857610225565b806315945790116101f857806315945790146102f857806318160ddd14610323578063235b6ea11461034e57806323b872dd146103795780632f745c59146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613324565b6108c4565b60405161025e9190613874565b60405180910390f35b34801561027357600080fd5b5061027c61093e565b604051610289919061388f565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906133c7565b6109d0565b6040516102c6919061380d565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906132b7565b610a55565b005b34801561030457600080fd5b5061030d610b6d565b60405161031a9190613b91565b60405180910390f35b34801561032f57600080fd5b50610338610b73565b6040516103459190613b91565b60405180910390f35b34801561035a57600080fd5b50610363610b80565b6040516103709190613b91565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b91906131a1565b610b86565b005b3480156103ae57600080fd5b506103c960048036038101906103c491906132b7565b610be6565b6040516103d69190613b91565b60405180910390f35b6103e7610c8b565b005b3480156103f557600080fd5b506103fe6110ed565b60405161040b919061380d565b60405180910390f35b34801561042057600080fd5b5061043b600480360381019061043691906131a1565b611113565b005b34801561044957600080fd5b50610452611133565b60405161045f9190613874565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a91906133c7565b611146565b60405161049c9190613b91565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c7919061337e565b6111b7565b005b3480156104da57600080fd5b506104e361124d565b6040516104f0919061380d565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b91906133c7565b611273565b60405161052d919061380d565b60405180910390f35b34801561054257600080fd5b5061054b611325565b604051610558919061380d565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613134565b61134b565b6040516105959190613b91565b60405180910390f35b3480156105aa57600080fd5b506105b3611403565b005b3480156105c157600080fd5b506105ca61148b565b6040516105d7919061380d565b60405180910390f35b3480156105ec57600080fd5b506105f56114b1565b604051610602919061380d565b60405180910390f35b34801561061757600080fd5b506106206114d7565b60405161062d919061380d565b60405180910390f35b34801561064257600080fd5b5061065d600480360381019061065891906133c7565b611501565b005b34801561066b57600080fd5b50610674611587565b604051610681919061388f565b60405180910390f35b6106a4600480360381019061069f91906133c7565b611619565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190613277565b61179c565b005b3480156106db57600080fd5b506106e461191d565b6040516106f1919061380d565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c91906132f7565b611943565b005b34801561072f57600080fd5b506107386119dc565b604051610745919061380d565b60405180910390f35b34801561075a57600080fd5b50610775600480360381019061077091906131f4565b611a02565b005b34801561078357600080fd5b5061079e600480360381019061079991906133c7565b611a64565b6040516107ab919061388f565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d691906132b7565b611b0b565b005b3480156107e957600080fd5b506107f2611c2a565b6040516107ff919061388f565b60405180910390f35b34801561081457600080fd5b5061081d611cb8565b60405161082a919061380d565b60405180910390f35b34801561083f57600080fd5b5061085a60048036038101906108559190613161565b611cde565b6040516108679190613874565b60405180910390f35b34801561087c57600080fd5b50610885611d72565b6040516108929190613b91565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613134565b611d78565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610937575061093682611e88565b5b9050919050565b60606000805461094d90613e41565b80601f016020809104026020016040519081016040528092919081815260200182805461097990613e41565b80156109c65780601f1061099b576101008083540402835291602001916109c6565b820191906000526020600020905b8154815290600101906020018083116109a957829003601f168201915b5050505050905090565b60006109db82611f6a565b610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190613a51565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6082611273565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890613af1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af0611fd6565b73ffffffffffffffffffffffffffffffffffffffff161480610b1f5750610b1e81610b19611fd6565b611cde565b5b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b55906139b1565b60405180910390fd5b610b688383611fde565b505050565b60165481565b6000600880549050905090565b60155481565b610b97610b91611fd6565b82612097565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90613b31565b60405180910390fd5b610be1838383612175565b505050565b6000610bf18361134b565b8210610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c29906138b1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c93611fd6565b73ffffffffffffffffffffffffffffffffffffffff16610cb16114d7565b73ffffffffffffffffffffffffffffffffffffffff1614610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe90613a71565b60405180910390fd5b6000600a47610d169190613ccc565b905060006019600247610d299190613cfd565b610d339190613ccc565b905060006019600247610d469190613cfd565b610d509190613ccc565b905060006064600b47610d639190613cfd565b610d6d9190613ccc565b905060006064600b47610d809190613cfd565b610d8a9190613ccc565b905060006064600b47610d9d9190613cfd565b610da79190613ccc565b905060006064600b47610dba9190613cfd565b610dc49190613ccc565b90506000600a600347610dd79190613cfd565b610de19190613ccc565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc899081150290604051600060405180830381858888f19350505050610e4357600080fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc889081150290604051600060405180830381858888f19350505050610ea357600080fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc879081150290604051600060405180830381858888f19350505050610f0357600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f19350505050610f6357600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050610fc357600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f1935050505061102357600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061108357600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506110e357600080fd5b5050505050505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61112e83838360405180602001604052806000815250611a02565b505050565b601260149054906101000a900460ff1681565b6000611150610b73565b8210611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890613b51565b60405180910390fd5b600882815481106111a5576111a4613fda565b5b90600052602060002001549050919050565b6111bf611fd6565b73ffffffffffffffffffffffffffffffffffffffff166111dd6114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90613a71565b60405180910390fd5b8060139080519060200190611249929190612f48565b5050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561131c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611313906139f1565b60405180910390fd5b80915050919050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b3906139d1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61140b611fd6565b73ffffffffffffffffffffffffffffffffffffffff166114296114d7565b73ffffffffffffffffffffffffffffffffffffffff161461147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690613a71565b60405180910390fd5b61148960006123d1565b565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611509611fd6565b73ffffffffffffffffffffffffffffffffffffffff166115276114d7565b73ffffffffffffffffffffffffffffffffffffffff161461157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613a71565b60405180910390fd5b8060158190555050565b60606001805461159690613e41565b80601f01602080910402602001604051908101604052809291908181526020018280546115c290613e41565b801561160f5780601f106115e45761010080835404028352916020019161160f565b820191906000526020600020905b8154815290600101906020018083116115f257829003601f168201915b5050505050905090565b6000611623610b73565b9050601260149054906101000a900460ff16611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90613ad1565b60405180910390fd5b600a82106116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90613b71565b60405180910390fd5b816015546116c59190613cfd565b341015611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90613a11565b60405180910390fd5b6014546016546117179190613d57565b82826117239190613c76565b1115611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90613b11565b60405180910390fd5b60005b828110156117975761178433828461177f9190613c76565b612497565b808061178f90613ea4565b915050611767565b505050565b6117a4611fd6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180990613951565b60405180910390fd5b806005600061181f611fd6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118cc611fd6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119119190613874565b60405180910390a35050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61194b611fd6565b73ffffffffffffffffffffffffffffffffffffffff166119696114d7565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b690613a71565b60405180910390fd5b80601260146101000a81548160ff02191690831515021790555050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611a13611a0d611fd6565b83612097565b611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4990613b31565b60405180910390fd5b611a5e848484846124b5565b50505050565b6060611a6f82611f6a565b611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa590613ab1565b60405180910390fd5b6000611ab8612511565b90506000815111611ad85760405180602001604052806000815250611b03565b80611ae2846125a3565b604051602001611af39291906137e9565b6040516020818303038152906040525b915050919050565b611b13611fd6565b73ffffffffffffffffffffffffffffffffffffffff16611b316114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90613a71565b60405180910390fd5b601454811115611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc390613991565b60405180910390fd5b6000611bd6610b73565b905060005b82811015611c0b57611bf8848284611bf39190613c76565b612497565b8080611c0390613ea4565b915050611bdb565b508160146000828254611c1e9190613d57565b92505081905550505050565b60138054611c3790613e41565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6390613e41565b8015611cb05780601f10611c8557610100808354040283529160200191611cb0565b820191906000526020600020905b815481529060010190602001808311611c9357829003601f168201915b505050505081565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60145481565b611d80611fd6565b73ffffffffffffffffffffffffffffffffffffffff16611d9e6114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611deb90613a71565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b906138f1565b60405180910390fd5b611e6d816123d1565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f5357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f635750611f6282612704565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661205183611273565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120a282611f6a565b6120e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d890613971565b60405180910390fd5b60006120ec83611273565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061215b57508373ffffffffffffffffffffffffffffffffffffffff16612143846109d0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061216c575061216b8185611cde565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661219582611273565b73ffffffffffffffffffffffffffffffffffffffff16146121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290613a91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290613931565b60405180910390fd5b61226683838361276e565b612271600082611fde565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122c19190613d57565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123189190613c76565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124b1828260405180602001604052806000815250612882565b5050565b6124c0848484612175565b6124cc848484846128dd565b61250b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612502906138d1565b60405180910390fd5b50505050565b60606013805461252090613e41565b80601f016020809104026020016040519081016040528092919081815260200182805461254c90613e41565b80156125995780601f1061256e57610100808354040283529160200191612599565b820191906000526020600020905b81548152906001019060200180831161257c57829003601f168201915b5050505050905090565b606060008214156125eb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126ff565b600082905060005b6000821461261d57808061260690613ea4565b915050600a826126169190613ccc565b91506125f3565b60008167ffffffffffffffff81111561263957612638614009565b5b6040519080825280601f01601f19166020018201604052801561266b5781602001600182028036833780820191505090505b5090505b600085146126f8576001826126849190613d57565b9150600a856126939190613eed565b603061269f9190613c76565b60f81b8183815181106126b5576126b4613fda565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126f19190613ccc565b945061266f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612779838383611e83565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127bc576127b781612a74565b6127fb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127fa576127f98382612abd565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561283e5761283981612c2a565b61287d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461287c5761287b8282612cfb565b5b5b505050565b61288c8383612d7a565b61289960008484846128dd565b6128d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cf906138d1565b60405180910390fd5b505050565b60006128fe8473ffffffffffffffffffffffffffffffffffffffff16611e70565b15612a67578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612927611fd6565b8786866040518563ffffffff1660e01b81526004016129499493929190613828565b602060405180830381600087803b15801561296357600080fd5b505af192505050801561299457506040513d601f19601f820116820180604052508101906129919190613351565b60015b612a17573d80600081146129c4576040519150601f19603f3d011682016040523d82523d6000602084013e6129c9565b606091505b50600081511415612a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a06906138d1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a6c565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612aca8461134b565b612ad49190613d57565b9050600060076000848152602001908152602001600020549050818114612bb9576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c3e9190613d57565b9050600060096000848152602001908152602001600020549050600060088381548110612c6e57612c6d613fda565b5b906000526020600020015490508060088381548110612c9057612c8f613fda565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612cdf57612cde613fab565b5b6001900381819060005260206000200160009055905550505050565b6000612d068361134b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de190613a31565b60405180910390fd5b612df381611f6a565b15612e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2a90613911565b60405180910390fd5b612e3f6000838361276e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e8f9190613c76565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612f5490613e41565b90600052602060002090601f016020900481019282612f765760008555612fbd565b82601f10612f8f57805160ff1916838001178555612fbd565b82800160010185558215612fbd579182015b82811115612fbc578251825591602001919060010190612fa1565b5b509050612fca9190612fce565b5090565b5b80821115612fe7576000816000905550600101612fcf565b5090565b6000612ffe612ff984613bd1565b613bac565b90508281526020810184848401111561301a5761301961403d565b5b613025848285613dff565b509392505050565b600061304061303b84613c02565b613bac565b90508281526020810184848401111561305c5761305b61403d565b5b613067848285613dff565b509392505050565b60008135905061307e81614692565b92915050565b600081359050613093816146a9565b92915050565b6000813590506130a8816146c0565b92915050565b6000815190506130bd816146c0565b92915050565b600082601f8301126130d8576130d7614038565b5b81356130e8848260208601612feb565b91505092915050565b600082601f83011261310657613105614038565b5b813561311684826020860161302d565b91505092915050565b60008135905061312e816146d7565b92915050565b60006020828403121561314a57613149614047565b5b60006131588482850161306f565b91505092915050565b6000806040838503121561317857613177614047565b5b60006131868582860161306f565b92505060206131978582860161306f565b9150509250929050565b6000806000606084860312156131ba576131b9614047565b5b60006131c88682870161306f565b93505060206131d98682870161306f565b92505060406131ea8682870161311f565b9150509250925092565b6000806000806080858703121561320e5761320d614047565b5b600061321c8782880161306f565b945050602061322d8782880161306f565b935050604061323e8782880161311f565b925050606085013567ffffffffffffffff81111561325f5761325e614042565b5b61326b878288016130c3565b91505092959194509250565b6000806040838503121561328e5761328d614047565b5b600061329c8582860161306f565b92505060206132ad85828601613084565b9150509250929050565b600080604083850312156132ce576132cd614047565b5b60006132dc8582860161306f565b92505060206132ed8582860161311f565b9150509250929050565b60006020828403121561330d5761330c614047565b5b600061331b84828501613084565b91505092915050565b60006020828403121561333a57613339614047565b5b600061334884828501613099565b91505092915050565b60006020828403121561336757613366614047565b5b6000613375848285016130ae565b91505092915050565b60006020828403121561339457613393614047565b5b600082013567ffffffffffffffff8111156133b2576133b1614042565b5b6133be848285016130f1565b91505092915050565b6000602082840312156133dd576133dc614047565b5b60006133eb8482850161311f565b91505092915050565b6133fd81613d8b565b82525050565b61340c81613d9d565b82525050565b600061341d82613c33565b6134278185613c49565b9350613437818560208601613e0e565b6134408161404c565b840191505092915050565b600061345682613c3e565b6134608185613c5a565b9350613470818560208601613e0e565b6134798161404c565b840191505092915050565b600061348f82613c3e565b6134998185613c6b565b93506134a9818560208601613e0e565b80840191505092915050565b60006134c2602b83613c5a565b91506134cd8261405d565b604082019050919050565b60006134e5603283613c5a565b91506134f0826140ac565b604082019050919050565b6000613508602683613c5a565b9150613513826140fb565b604082019050919050565b600061352b601c83613c5a565b91506135368261414a565b602082019050919050565b600061354e602483613c5a565b915061355982614173565b604082019050919050565b6000613571601983613c5a565b915061357c826141c2565b602082019050919050565b6000613594602c83613c5a565b915061359f826141eb565b604082019050919050565b60006135b7602b83613c5a565b91506135c28261423a565b604082019050919050565b60006135da603883613c5a565b91506135e582614289565b604082019050919050565b60006135fd602a83613c5a565b9150613608826142d8565b604082019050919050565b6000613620602983613c5a565b915061362b82614327565b604082019050919050565b6000613643601c83613c5a565b915061364e82614376565b602082019050919050565b6000613666602083613c5a565b91506136718261439f565b602082019050919050565b6000613689602c83613c5a565b9150613694826143c8565b604082019050919050565b60006136ac602083613c5a565b91506136b782614417565b602082019050919050565b60006136cf602983613c5a565b91506136da82614440565b604082019050919050565b60006136f2602f83613c5a565b91506136fd8261448f565b604082019050919050565b6000613715601383613c5a565b9150613720826144de565b602082019050919050565b6000613738602183613c5a565b915061374382614507565b604082019050919050565b600061375b602583613c5a565b915061376682614556565b604082019050919050565b600061377e603183613c5a565b9150613789826145a5565b604082019050919050565b60006137a1602c83613c5a565b91506137ac826145f4565b604082019050919050565b60006137c4602383613c5a565b91506137cf82614643565b604082019050919050565b6137e381613df5565b82525050565b60006137f58285613484565b91506138018284613484565b91508190509392505050565b600060208201905061382260008301846133f4565b92915050565b600060808201905061383d60008301876133f4565b61384a60208301866133f4565b61385760408301856137da565b81810360608301526138698184613412565b905095945050505050565b60006020820190506138896000830184613403565b92915050565b600060208201905081810360008301526138a9818461344b565b905092915050565b600060208201905081810360008301526138ca816134b5565b9050919050565b600060208201905081810360008301526138ea816134d8565b9050919050565b6000602082019050818103600083015261390a816134fb565b9050919050565b6000602082019050818103600083015261392a8161351e565b9050919050565b6000602082019050818103600083015261394a81613541565b9050919050565b6000602082019050818103600083015261396a81613564565b9050919050565b6000602082019050818103600083015261398a81613587565b9050919050565b600060208201905081810360008301526139aa816135aa565b9050919050565b600060208201905081810360008301526139ca816135cd565b9050919050565b600060208201905081810360008301526139ea816135f0565b9050919050565b60006020820190508181036000830152613a0a81613613565b9050919050565b60006020820190508181036000830152613a2a81613636565b9050919050565b60006020820190508181036000830152613a4a81613659565b9050919050565b60006020820190508181036000830152613a6a8161367c565b9050919050565b60006020820190508181036000830152613a8a8161369f565b9050919050565b60006020820190508181036000830152613aaa816136c2565b9050919050565b60006020820190508181036000830152613aca816136e5565b9050919050565b60006020820190508181036000830152613aea81613708565b9050919050565b60006020820190508181036000830152613b0a8161372b565b9050919050565b60006020820190508181036000830152613b2a8161374e565b9050919050565b60006020820190508181036000830152613b4a81613771565b9050919050565b60006020820190508181036000830152613b6a81613794565b9050919050565b60006020820190508181036000830152613b8a816137b7565b9050919050565b6000602082019050613ba660008301846137da565b92915050565b6000613bb6613bc7565b9050613bc28282613e73565b919050565b6000604051905090565b600067ffffffffffffffff821115613bec57613beb614009565b5b613bf58261404c565b9050602081019050919050565b600067ffffffffffffffff821115613c1d57613c1c614009565b5b613c268261404c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c8182613df5565b9150613c8c83613df5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cc157613cc0613f1e565b5b828201905092915050565b6000613cd782613df5565b9150613ce283613df5565b925082613cf257613cf1613f4d565b5b828204905092915050565b6000613d0882613df5565b9150613d1383613df5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4c57613d4b613f1e565b5b828202905092915050565b6000613d6282613df5565b9150613d6d83613df5565b925082821015613d8057613d7f613f1e565b5b828203905092915050565b6000613d9682613dd5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e2c578082015181840152602081019050613e11565b83811115613e3b576000848401525b50505050565b60006002820490506001821680613e5957607f821691505b60208210811415613e6d57613e6c613f7c565b5b50919050565b613e7c8261404c565b810181811067ffffffffffffffff82111715613e9b57613e9a614009565b5b80604052505050565b6000613eaf82613df5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ee257613ee1613f1e565b5b600182019050919050565b6000613ef882613df5565b9150613f0383613df5565b925082613f1357613f12613f4d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f47696674207265736572766520657863656564656420776974682070726f766960008201527f64656420616d6f756e742e000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742065746865722070726f76696465642e00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c7920657863656564656420776974682070726f766964656420616d60008201527f6f756e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50726f766964656420616d6f756e742065786365656473206d696e74206c696d60008201527f69742e0000000000000000000000000000000000000000000000000000000000602082015250565b61469b81613d8b565b81146146a657600080fd5b50565b6146b281613d9d565b81146146bd57600080fd5b50565b6146c981613da9565b81146146d457600080fd5b50565b6146e081613df5565b81146146eb57600080fd5b5056fea264697066735822122041d0b94f4aa2c34f029519b31343e6f98d15b3f28d660be705988211c21c468764736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54674b4274623439354159567551383175454439486d783634716673354b4e53586b7764394276476a5461342f00000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063acec338a116100ab578063cfc86f7b1161006f578063cfc86f7b146107dd578063de96931914610808578063e985e9c514610833578063ee40494614610870578063f2fde38b1461089b57610225565b8063acec338a146106fa578063afc9161314610723578063b88d4fde1461074e578063c87b56dd14610777578063cbce4c97146107b457610225565b806391b7f5ed116100f257806391b7f5ed1461063657806395d89b411461065f578063a0712d681461068a578063a22cb465146106a6578063a2fe9c9b146106cf57610225565b8063715018a61461059e5780637e0620f9146105b55780638b8fcdd4146105e05780638da5cb5b1461060b57610225565b80633ccfd60b116101b157806355f804b31161017557806355f804b3146104a55780635f1a90ea146104ce5780636352211e146104f95780636e4d9c7a1461053657806370a082311461056157610225565b80633ccfd60b146103df5780634007ab46146103e957806342842e0e146104145780634d615d231461043d5780634f6ccce71461046857610225565b806315945790116101f857806315945790146102f857806318160ddd14610323578063235b6ea11461034e57806323b872dd146103795780632f745c59146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613324565b6108c4565b60405161025e9190613874565b60405180910390f35b34801561027357600080fd5b5061027c61093e565b604051610289919061388f565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906133c7565b6109d0565b6040516102c6919061380d565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906132b7565b610a55565b005b34801561030457600080fd5b5061030d610b6d565b60405161031a9190613b91565b60405180910390f35b34801561032f57600080fd5b50610338610b73565b6040516103459190613b91565b60405180910390f35b34801561035a57600080fd5b50610363610b80565b6040516103709190613b91565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b91906131a1565b610b86565b005b3480156103ae57600080fd5b506103c960048036038101906103c491906132b7565b610be6565b6040516103d69190613b91565b60405180910390f35b6103e7610c8b565b005b3480156103f557600080fd5b506103fe6110ed565b60405161040b919061380d565b60405180910390f35b34801561042057600080fd5b5061043b600480360381019061043691906131a1565b611113565b005b34801561044957600080fd5b50610452611133565b60405161045f9190613874565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a91906133c7565b611146565b60405161049c9190613b91565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c7919061337e565b6111b7565b005b3480156104da57600080fd5b506104e361124d565b6040516104f0919061380d565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b91906133c7565b611273565b60405161052d919061380d565b60405180910390f35b34801561054257600080fd5b5061054b611325565b604051610558919061380d565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613134565b61134b565b6040516105959190613b91565b60405180910390f35b3480156105aa57600080fd5b506105b3611403565b005b3480156105c157600080fd5b506105ca61148b565b6040516105d7919061380d565b60405180910390f35b3480156105ec57600080fd5b506105f56114b1565b604051610602919061380d565b60405180910390f35b34801561061757600080fd5b506106206114d7565b60405161062d919061380d565b60405180910390f35b34801561064257600080fd5b5061065d600480360381019061065891906133c7565b611501565b005b34801561066b57600080fd5b50610674611587565b604051610681919061388f565b60405180910390f35b6106a4600480360381019061069f91906133c7565b611619565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190613277565b61179c565b005b3480156106db57600080fd5b506106e461191d565b6040516106f1919061380d565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c91906132f7565b611943565b005b34801561072f57600080fd5b506107386119dc565b604051610745919061380d565b60405180910390f35b34801561075a57600080fd5b50610775600480360381019061077091906131f4565b611a02565b005b34801561078357600080fd5b5061079e600480360381019061079991906133c7565b611a64565b6040516107ab919061388f565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d691906132b7565b611b0b565b005b3480156107e957600080fd5b506107f2611c2a565b6040516107ff919061388f565b60405180910390f35b34801561081457600080fd5b5061081d611cb8565b60405161082a919061380d565b60405180910390f35b34801561083f57600080fd5b5061085a60048036038101906108559190613161565b611cde565b6040516108679190613874565b60405180910390f35b34801561087c57600080fd5b50610885611d72565b6040516108929190613b91565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613134565b611d78565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610937575061093682611e88565b5b9050919050565b60606000805461094d90613e41565b80601f016020809104026020016040519081016040528092919081815260200182805461097990613e41565b80156109c65780601f1061099b576101008083540402835291602001916109c6565b820191906000526020600020905b8154815290600101906020018083116109a957829003601f168201915b5050505050905090565b60006109db82611f6a565b610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190613a51565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6082611273565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890613af1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af0611fd6565b73ffffffffffffffffffffffffffffffffffffffff161480610b1f5750610b1e81610b19611fd6565b611cde565b5b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b55906139b1565b60405180910390fd5b610b688383611fde565b505050565b60165481565b6000600880549050905090565b60155481565b610b97610b91611fd6565b82612097565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90613b31565b60405180910390fd5b610be1838383612175565b505050565b6000610bf18361134b565b8210610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c29906138b1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c93611fd6565b73ffffffffffffffffffffffffffffffffffffffff16610cb16114d7565b73ffffffffffffffffffffffffffffffffffffffff1614610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe90613a71565b60405180910390fd5b6000600a47610d169190613ccc565b905060006019600247610d299190613cfd565b610d339190613ccc565b905060006019600247610d469190613cfd565b610d509190613ccc565b905060006064600b47610d639190613cfd565b610d6d9190613ccc565b905060006064600b47610d809190613cfd565b610d8a9190613ccc565b905060006064600b47610d9d9190613cfd565b610da79190613ccc565b905060006064600b47610dba9190613cfd565b610dc49190613ccc565b90506000600a600347610dd79190613cfd565b610de19190613ccc565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc899081150290604051600060405180830381858888f19350505050610e4357600080fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc889081150290604051600060405180830381858888f19350505050610ea357600080fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc879081150290604051600060405180830381858888f19350505050610f0357600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f19350505050610f6357600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050610fc357600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f1935050505061102357600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061108357600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506110e357600080fd5b5050505050505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61112e83838360405180602001604052806000815250611a02565b505050565b601260149054906101000a900460ff1681565b6000611150610b73565b8210611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890613b51565b60405180910390fd5b600882815481106111a5576111a4613fda565b5b90600052602060002001549050919050565b6111bf611fd6565b73ffffffffffffffffffffffffffffffffffffffff166111dd6114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90613a71565b60405180910390fd5b8060139080519060200190611249929190612f48565b5050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561131c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611313906139f1565b60405180910390fd5b80915050919050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b3906139d1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61140b611fd6565b73ffffffffffffffffffffffffffffffffffffffff166114296114d7565b73ffffffffffffffffffffffffffffffffffffffff161461147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690613a71565b60405180910390fd5b61148960006123d1565b565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611509611fd6565b73ffffffffffffffffffffffffffffffffffffffff166115276114d7565b73ffffffffffffffffffffffffffffffffffffffff161461157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613a71565b60405180910390fd5b8060158190555050565b60606001805461159690613e41565b80601f01602080910402602001604051908101604052809291908181526020018280546115c290613e41565b801561160f5780601f106115e45761010080835404028352916020019161160f565b820191906000526020600020905b8154815290600101906020018083116115f257829003601f168201915b5050505050905090565b6000611623610b73565b9050601260149054906101000a900460ff16611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90613ad1565b60405180910390fd5b600a82106116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90613b71565b60405180910390fd5b816015546116c59190613cfd565b341015611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90613a11565b60405180910390fd5b6014546016546117179190613d57565b82826117239190613c76565b1115611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90613b11565b60405180910390fd5b60005b828110156117975761178433828461177f9190613c76565b612497565b808061178f90613ea4565b915050611767565b505050565b6117a4611fd6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180990613951565b60405180910390fd5b806005600061181f611fd6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118cc611fd6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119119190613874565b60405180910390a35050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61194b611fd6565b73ffffffffffffffffffffffffffffffffffffffff166119696114d7565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b690613a71565b60405180910390fd5b80601260146101000a81548160ff02191690831515021790555050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611a13611a0d611fd6565b83612097565b611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4990613b31565b60405180910390fd5b611a5e848484846124b5565b50505050565b6060611a6f82611f6a565b611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa590613ab1565b60405180910390fd5b6000611ab8612511565b90506000815111611ad85760405180602001604052806000815250611b03565b80611ae2846125a3565b604051602001611af39291906137e9565b6040516020818303038152906040525b915050919050565b611b13611fd6565b73ffffffffffffffffffffffffffffffffffffffff16611b316114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90613a71565b60405180910390fd5b601454811115611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc390613991565b60405180910390fd5b6000611bd6610b73565b905060005b82811015611c0b57611bf8848284611bf39190613c76565b612497565b8080611c0390613ea4565b915050611bdb565b508160146000828254611c1e9190613d57565b92505081905550505050565b60138054611c3790613e41565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6390613e41565b8015611cb05780601f10611c8557610100808354040283529160200191611cb0565b820191906000526020600020905b815481529060010190602001808311611c9357829003601f168201915b505050505081565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60145481565b611d80611fd6565b73ffffffffffffffffffffffffffffffffffffffff16611d9e6114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611deb90613a71565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b906138f1565b60405180910390fd5b611e6d816123d1565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f5357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f635750611f6282612704565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661205183611273565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120a282611f6a565b6120e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d890613971565b60405180910390fd5b60006120ec83611273565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061215b57508373ffffffffffffffffffffffffffffffffffffffff16612143846109d0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061216c575061216b8185611cde565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661219582611273565b73ffffffffffffffffffffffffffffffffffffffff16146121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290613a91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290613931565b60405180910390fd5b61226683838361276e565b612271600082611fde565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122c19190613d57565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123189190613c76565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124b1828260405180602001604052806000815250612882565b5050565b6124c0848484612175565b6124cc848484846128dd565b61250b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612502906138d1565b60405180910390fd5b50505050565b60606013805461252090613e41565b80601f016020809104026020016040519081016040528092919081815260200182805461254c90613e41565b80156125995780601f1061256e57610100808354040283529160200191612599565b820191906000526020600020905b81548152906001019060200180831161257c57829003601f168201915b5050505050905090565b606060008214156125eb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126ff565b600082905060005b6000821461261d57808061260690613ea4565b915050600a826126169190613ccc565b91506125f3565b60008167ffffffffffffffff81111561263957612638614009565b5b6040519080825280601f01601f19166020018201604052801561266b5781602001600182028036833780820191505090505b5090505b600085146126f8576001826126849190613d57565b9150600a856126939190613eed565b603061269f9190613c76565b60f81b8183815181106126b5576126b4613fda565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126f19190613ccc565b945061266f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612779838383611e83565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127bc576127b781612a74565b6127fb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127fa576127f98382612abd565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561283e5761283981612c2a565b61287d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461287c5761287b8282612cfb565b5b5b505050565b61288c8383612d7a565b61289960008484846128dd565b6128d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cf906138d1565b60405180910390fd5b505050565b60006128fe8473ffffffffffffffffffffffffffffffffffffffff16611e70565b15612a67578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612927611fd6565b8786866040518563ffffffff1660e01b81526004016129499493929190613828565b602060405180830381600087803b15801561296357600080fd5b505af192505050801561299457506040513d601f19601f820116820180604052508101906129919190613351565b60015b612a17573d80600081146129c4576040519150601f19603f3d011682016040523d82523d6000602084013e6129c9565b606091505b50600081511415612a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a06906138d1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a6c565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612aca8461134b565b612ad49190613d57565b9050600060076000848152602001908152602001600020549050818114612bb9576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c3e9190613d57565b9050600060096000848152602001908152602001600020549050600060088381548110612c6e57612c6d613fda565b5b906000526020600020015490508060088381548110612c9057612c8f613fda565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612cdf57612cde613fab565b5b6001900381819060005260206000200160009055905550505050565b6000612d068361134b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de190613a31565b60405180910390fd5b612df381611f6a565b15612e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2a90613911565b60405180910390fd5b612e3f6000838361276e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e8f9190613c76565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612f5490613e41565b90600052602060002090601f016020900481019282612f765760008555612fbd565b82601f10612f8f57805160ff1916838001178555612fbd565b82800160010185558215612fbd579182015b82811115612fbc578251825591602001919060010190612fa1565b5b509050612fca9190612fce565b5090565b5b80821115612fe7576000816000905550600101612fcf565b5090565b6000612ffe612ff984613bd1565b613bac565b90508281526020810184848401111561301a5761301961403d565b5b613025848285613dff565b509392505050565b600061304061303b84613c02565b613bac565b90508281526020810184848401111561305c5761305b61403d565b5b613067848285613dff565b509392505050565b60008135905061307e81614692565b92915050565b600081359050613093816146a9565b92915050565b6000813590506130a8816146c0565b92915050565b6000815190506130bd816146c0565b92915050565b600082601f8301126130d8576130d7614038565b5b81356130e8848260208601612feb565b91505092915050565b600082601f83011261310657613105614038565b5b813561311684826020860161302d565b91505092915050565b60008135905061312e816146d7565b92915050565b60006020828403121561314a57613149614047565b5b60006131588482850161306f565b91505092915050565b6000806040838503121561317857613177614047565b5b60006131868582860161306f565b92505060206131978582860161306f565b9150509250929050565b6000806000606084860312156131ba576131b9614047565b5b60006131c88682870161306f565b93505060206131d98682870161306f565b92505060406131ea8682870161311f565b9150509250925092565b6000806000806080858703121561320e5761320d614047565b5b600061321c8782880161306f565b945050602061322d8782880161306f565b935050604061323e8782880161311f565b925050606085013567ffffffffffffffff81111561325f5761325e614042565b5b61326b878288016130c3565b91505092959194509250565b6000806040838503121561328e5761328d614047565b5b600061329c8582860161306f565b92505060206132ad85828601613084565b9150509250929050565b600080604083850312156132ce576132cd614047565b5b60006132dc8582860161306f565b92505060206132ed8582860161311f565b9150509250929050565b60006020828403121561330d5761330c614047565b5b600061331b84828501613084565b91505092915050565b60006020828403121561333a57613339614047565b5b600061334884828501613099565b91505092915050565b60006020828403121561336757613366614047565b5b6000613375848285016130ae565b91505092915050565b60006020828403121561339457613393614047565b5b600082013567ffffffffffffffff8111156133b2576133b1614042565b5b6133be848285016130f1565b91505092915050565b6000602082840312156133dd576133dc614047565b5b60006133eb8482850161311f565b91505092915050565b6133fd81613d8b565b82525050565b61340c81613d9d565b82525050565b600061341d82613c33565b6134278185613c49565b9350613437818560208601613e0e565b6134408161404c565b840191505092915050565b600061345682613c3e565b6134608185613c5a565b9350613470818560208601613e0e565b6134798161404c565b840191505092915050565b600061348f82613c3e565b6134998185613c6b565b93506134a9818560208601613e0e565b80840191505092915050565b60006134c2602b83613c5a565b91506134cd8261405d565b604082019050919050565b60006134e5603283613c5a565b91506134f0826140ac565b604082019050919050565b6000613508602683613c5a565b9150613513826140fb565b604082019050919050565b600061352b601c83613c5a565b91506135368261414a565b602082019050919050565b600061354e602483613c5a565b915061355982614173565b604082019050919050565b6000613571601983613c5a565b915061357c826141c2565b602082019050919050565b6000613594602c83613c5a565b915061359f826141eb565b604082019050919050565b60006135b7602b83613c5a565b91506135c28261423a565b604082019050919050565b60006135da603883613c5a565b91506135e582614289565b604082019050919050565b60006135fd602a83613c5a565b9150613608826142d8565b604082019050919050565b6000613620602983613c5a565b915061362b82614327565b604082019050919050565b6000613643601c83613c5a565b915061364e82614376565b602082019050919050565b6000613666602083613c5a565b91506136718261439f565b602082019050919050565b6000613689602c83613c5a565b9150613694826143c8565b604082019050919050565b60006136ac602083613c5a565b91506136b782614417565b602082019050919050565b60006136cf602983613c5a565b91506136da82614440565b604082019050919050565b60006136f2602f83613c5a565b91506136fd8261448f565b604082019050919050565b6000613715601383613c5a565b9150613720826144de565b602082019050919050565b6000613738602183613c5a565b915061374382614507565b604082019050919050565b600061375b602583613c5a565b915061376682614556565b604082019050919050565b600061377e603183613c5a565b9150613789826145a5565b604082019050919050565b60006137a1602c83613c5a565b91506137ac826145f4565b604082019050919050565b60006137c4602383613c5a565b91506137cf82614643565b604082019050919050565b6137e381613df5565b82525050565b60006137f58285613484565b91506138018284613484565b91508190509392505050565b600060208201905061382260008301846133f4565b92915050565b600060808201905061383d60008301876133f4565b61384a60208301866133f4565b61385760408301856137da565b81810360608301526138698184613412565b905095945050505050565b60006020820190506138896000830184613403565b92915050565b600060208201905081810360008301526138a9818461344b565b905092915050565b600060208201905081810360008301526138ca816134b5565b9050919050565b600060208201905081810360008301526138ea816134d8565b9050919050565b6000602082019050818103600083015261390a816134fb565b9050919050565b6000602082019050818103600083015261392a8161351e565b9050919050565b6000602082019050818103600083015261394a81613541565b9050919050565b6000602082019050818103600083015261396a81613564565b9050919050565b6000602082019050818103600083015261398a81613587565b9050919050565b600060208201905081810360008301526139aa816135aa565b9050919050565b600060208201905081810360008301526139ca816135cd565b9050919050565b600060208201905081810360008301526139ea816135f0565b9050919050565b60006020820190508181036000830152613a0a81613613565b9050919050565b60006020820190508181036000830152613a2a81613636565b9050919050565b60006020820190508181036000830152613a4a81613659565b9050919050565b60006020820190508181036000830152613a6a8161367c565b9050919050565b60006020820190508181036000830152613a8a8161369f565b9050919050565b60006020820190508181036000830152613aaa816136c2565b9050919050565b60006020820190508181036000830152613aca816136e5565b9050919050565b60006020820190508181036000830152613aea81613708565b9050919050565b60006020820190508181036000830152613b0a8161372b565b9050919050565b60006020820190508181036000830152613b2a8161374e565b9050919050565b60006020820190508181036000830152613b4a81613771565b9050919050565b60006020820190508181036000830152613b6a81613794565b9050919050565b60006020820190508181036000830152613b8a816137b7565b9050919050565b6000602082019050613ba660008301846137da565b92915050565b6000613bb6613bc7565b9050613bc28282613e73565b919050565b6000604051905090565b600067ffffffffffffffff821115613bec57613beb614009565b5b613bf58261404c565b9050602081019050919050565b600067ffffffffffffffff821115613c1d57613c1c614009565b5b613c268261404c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c8182613df5565b9150613c8c83613df5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cc157613cc0613f1e565b5b828201905092915050565b6000613cd782613df5565b9150613ce283613df5565b925082613cf257613cf1613f4d565b5b828204905092915050565b6000613d0882613df5565b9150613d1383613df5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4c57613d4b613f1e565b5b828202905092915050565b6000613d6282613df5565b9150613d6d83613df5565b925082821015613d8057613d7f613f1e565b5b828203905092915050565b6000613d9682613dd5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e2c578082015181840152602081019050613e11565b83811115613e3b576000848401525b50505050565b60006002820490506001821680613e5957607f821691505b60208210811415613e6d57613e6c613f7c565b5b50919050565b613e7c8261404c565b810181811067ffffffffffffffff82111715613e9b57613e9a614009565b5b80604052505050565b6000613eaf82613df5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ee257613ee1613f1e565b5b600182019050919050565b6000613ef882613df5565b9150613f0383613df5565b925082613f1357613f12613f4d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f47696674207265736572766520657863656564656420776974682070726f766960008201527f64656420616d6f756e742e000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742065746865722070726f76696465642e00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c7920657863656564656420776974682070726f766964656420616d60008201527f6f756e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50726f766964656420616d6f756e742065786365656473206d696e74206c696d60008201527f69742e0000000000000000000000000000000000000000000000000000000000602082015250565b61469b81613d8b565b81146146a657600080fd5b50565b6146b281613d9d565b81146146bd57600080fd5b50565b6146c981613da9565b81146146d457600080fd5b50565b6146e081613df5565b81146146eb57600080fd5b5056fea264697066735822122041d0b94f4aa2c34f029519b31343e6f98d15b3f28d660be705988211c21c468764736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54674b4274623439354159567551383175454439486d783634716673354b4e53586b7764394276476a5461342f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmTgKBtb495AYVuQ81uED9Hmx64qfs5KNSXkwd9BvGjTa4/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d54674b4274623439354159567551383175454439486d78
Arg [3] : 3634716673354b4e53586b7764394276476a5461342f00000000000000000000


Deployed Bytecode Sourcemap

43211:3219:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36996:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24888:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26447:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25970:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44016:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37636:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43974:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27337:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37304:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45592:835;;;:::i;:::-;;43660:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27747:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43872:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37826:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44420:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43800:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24582:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43730:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24312:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8173:94;;;;;;;;;;;;;:::i;:::-;;43590:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43310;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44530:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25057:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45078:506;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26740:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43450:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44328:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43520:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28003:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25232:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44743:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43906:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43380:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27106:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43940:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8422:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36996:224;37098:4;37137:35;37122:50;;;:11;:50;;;;:90;;;;37176:36;37200:11;37176:23;:36::i;:::-;37122:90;37115:97;;36996:224;;;:::o;24888:100::-;24942:13;24975:5;24968:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24888:100;:::o;26447:221::-;26523:7;26551:16;26559:7;26551;:16::i;:::-;26543:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26636:15;:24;26652:7;26636:24;;;;;;;;;;;;;;;;;;;;;26629:31;;26447:221;;;:::o;25970:411::-;26051:13;26067:23;26082:7;26067:14;:23::i;:::-;26051:39;;26115:5;26109:11;;:2;:11;;;;26101:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26209:5;26193:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26218:37;26235:5;26242:12;:10;:12::i;:::-;26218:16;:37::i;:::-;26193:62;26171:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26352:21;26361:2;26365:7;26352:8;:21::i;:::-;26040:341;25970:411;;:::o;44016:29::-;;;;:::o;37636:113::-;37697:7;37724:10;:17;;;;37717:24;;37636:113;:::o;43974:35::-;;;;:::o;27337:339::-;27532:41;27551:12;:10;:12::i;:::-;27565:7;27532:18;:41::i;:::-;27524:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27640:28;27650:4;27656:2;27660:7;27640:9;:28::i;:::-;27337:339;;;:::o;37304:256::-;37401:7;37437:23;37454:5;37437:16;:23::i;:::-;37429:5;:31;37421:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37526:12;:19;37539:5;37526:19;;;;;;;;;;;;;;;:26;37546:5;37526:26;;;;;;;;;;;;37519:33;;37304:256;;;;:::o;45592:835::-;7753:12;:10;:12::i;:::-;7742:23;;:7;:5;:7::i;:::-;:23;;;7734:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45648:11:::1;45686:2;45662:21;:26;;;;:::i;:::-;45648:40;;45699:11;45741:2;45737:1;45713:21;:25;;;;:::i;:::-;:30;;;;:::i;:::-;45699:44;;45754:11;45796:2;45792:1;45768:21;:25;;;;:::i;:::-;:30;;;;:::i;:::-;45754:44;;45809:11;45852:3;45847:2;45823:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;45809:46;;45866:11;45909:3;45904:2;45880:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;45866:46;;45923:11;45966:3;45961:2;45937:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;45923:46;;45980:11;46023:3;46018:2;45994:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;45980:46;;46037:11;46079:2;46075:1;46051:21;:25;;;;:::i;:::-;:30;;;;:::i;:::-;46037:44;;46110:3;;;;;;;;;;;46102:17;;:22;46120:3;46102:22;;;;;;;;;;;;;;;;;;;;;;;46094:31;;;::::0;::::1;;46152:3;;;;;;;;;;;46144:17;;:22;46162:3;46144:22;;;;;;;;;;;;;;;;;;;;;;;46136:31;;;::::0;::::1;;46194:3;;;;;;;;;;;46186:17;;:22;46204:3;46186:22;;;;;;;;;;;;;;;;;;;;;;;46178:31;;;::::0;::::1;;46236:3;;;;;;;;;;;46228:17;;:22;46246:3;46228:22;;;;;;;;;;;;;;;;;;;;;;;46220:31;;;::::0;::::1;;46278:3;;;;;;;;;;;46270:17;;:22;46288:3;46270:22;;;;;;;;;;;;;;;;;;;;;;;46262:31;;;::::0;::::1;;46320:3;;;;;;;;;;;46312:17;;:22;46330:3;46312:22;;;;;;;;;;;;;;;;;;;;;;;46304:31;;;::::0;::::1;;46362:3;;;;;;;;;;;46354:17;;:22;46372:3;46354:22;;;;;;;;;;;;;;;;;;;;;;;46346:31;;;::::0;::::1;;46404:3;;;;;;;;;;;46396:17;;:22;46414:3;46396:22;;;;;;;;;;;;;;;;;;;;;;;46388:31;;;::::0;::::1;;45637:790;;;;;;;;45592:835::o:0;43660:63::-;;;;;;;;;;;;;:::o;27747:185::-;27885:39;27902:4;27908:2;27912:7;27885:39;;;;;;;;;;;;:16;:39::i;:::-;27747:185;;;:::o;43872:27::-;;;;;;;;;;;;;:::o;37826:233::-;37901:7;37937:30;:28;:30::i;:::-;37929:5;:38;37921:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38034:10;38045:5;38034:17;;;;;;;;:::i;:::-;;;;;;;;;;38027:24;;37826:233;;;:::o;44420:102::-;7753:12;:10;:12::i;:::-;7742:23;;:7;:5;:7::i;:::-;:23;;;7734:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44507:7:::1;44491:13;:23;;;;;;;;;;;;:::i;:::-;;44420:102:::0;:::o;43800:63::-;;;;;;;;;;;;;:::o;24582:239::-;24654:7;24674:13;24690:7;:16;24698:7;24690:16;;;;;;;;;;;;;;;;;;;;;24674:32;;24742:1;24725:19;;:5;:19;;;;24717:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24808:5;24801:12;;;24582:239;;;:::o;43730:63::-;;;;;;;;;;;;;:::o;24312:208::-;24384:7;24429:1;24412:19;;:5;:19;;;;24404:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24496:9;:16;24506:5;24496:16;;;;;;;;;;;;;;;;24489:23;;24312:208;;;:::o;8173:94::-;7753:12;:10;:12::i;:::-;7742:23;;:7;:5;:7::i;:::-;:23;;;7734:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8238:21:::1;8256:1;8238:9;:21::i;:::-;8173:94::o:0;43590:63::-;;;;;;;;;;;;;:::o;43310:::-;;;;;;;;;;;;;:::o;7522:87::-;7568:7;7595:6;;;;;;;;;;;7588:13;;7522:87;:::o;44530:83::-;7753:12;:10;:12::i;:::-;7742:23;;:7;:5;:7::i;:::-;:23;;;7734:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44600:5:::1;44591:6;:14;;;;44530:83:::0;:::o;25057:104::-;25113:13;25146:7;25139:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25057:104;:::o;45078:506::-;45135:14;45152:13;:11;:13::i;:::-;45135:30;;45187:7;;;;;;;;;;;45178:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;45248:2;45238:7;:12;45229:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45332:7;45323:6;;:16;;;;:::i;:::-;45310:9;:29;;45301:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45422:6;;45412:7;;:16;;;;:::i;:::-;45401:7;45392:6;:16;;;;:::i;:::-;:36;;45383:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;45487:9;45483:94;45502:7;45498:1;:11;45483:94;;;45530:35;45541:10;45562:1;45553:6;:10;;;;:::i;:::-;45530:9;:35::i;:::-;45511:3;;;;;:::i;:::-;;;;45483:94;;;;45124:460;45078:506;:::o;26740:295::-;26855:12;:10;:12::i;:::-;26843:24;;:8;:24;;;;26835:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26955:8;26910:18;:32;26929:12;:10;:12::i;:::-;26910:32;;;;;;;;;;;;;;;:42;26943:8;26910:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27008:8;26979:48;;26994:12;:10;:12::i;:::-;26979:48;;;27018:8;26979:48;;;;;;:::i;:::-;;;;;;;;26740:295;;:::o;43450:63::-;;;;;;;;;;;;;:::o;44328:84::-;7753:12;:10;:12::i;:::-;7742:23;;:7;:5;:7::i;:::-;:23;;;7734:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44398:6:::1;44388:7;;:16;;;;;;;;;;;;;;;;;;44328:84:::0;:::o;43520:63::-;;;;;;;;;;;;;:::o;28003:328::-;28178:41;28197:12;:10;:12::i;:::-;28211:7;28178:18;:41::i;:::-;28170:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28284:39;28298:4;28304:2;28308:7;28317:5;28284:13;:39::i;:::-;28003:328;;;;:::o;25232:334::-;25305:13;25339:16;25347:7;25339;:16::i;:::-;25331:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25420:21;25444:10;:8;:10::i;:::-;25420:34;;25496:1;25478:7;25472:21;:25;:86;;;;;;;;;;;;;;;;;25524:7;25533:18;:7;:16;:18::i;:::-;25507:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25472:86;25465:93;;;25232:334;;;:::o;44743:327::-;7753:12;:10;:12::i;:::-;7742:23;;:7;:5;:7::i;:::-;:23;;;7734:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44836:6:::1;;44825:7;:17;;44817:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44903:14;44920:13;:11;:13::i;:::-;44903:30;;44950:9;44946:87;44965:7;44961:1;:11;44946:87;;;44993:28;45004:3;45018:1;45009:6;:10;;;;:::i;:::-;44993:9;:28::i;:::-;44974:3;;;;;:::i;:::-;;;;44946:87;;;;45055:7;45045:6;;:17;;;;;;;:::i;:::-;;;;;;;;44806:264;44743:327:::0;;:::o;43906:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43380:63::-;;;;;;;;;;;;;:::o;27106:164::-;27203:4;27227:18;:25;27246:5;27227:25;;;;;;;;;;;;;;;:35;27253:8;27227:35;;;;;;;;;;;;;;;;;;;;;;;;;27220:42;;27106:164;;;;:::o;43940:27::-;;;;:::o;8422:192::-;7753:12;:10;:12::i;:::-;7742:23;;:7;:5;:7::i;:::-;:23;;;7734:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8531:1:::1;8511:22;;:8;:22;;;;8503:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8587:19;8597:8;8587:9;:19::i;:::-;8422:192:::0;:::o;13597:387::-;13657:4;13865:12;13932:7;13920:20;13912:28;;13975:1;13968:4;:8;13961:15;;;13597:387;;;:::o;35933:126::-;;;;:::o;23955:293::-;24057:4;24105:25;24090:40;;;:11;:40;;;;:101;;;;24158:33;24143:48;;;:11;:48;;;;24090:101;:150;;;;24204:36;24228:11;24204:23;:36::i;:::-;24090:150;24074:166;;23955:293;;;:::o;29841:127::-;29906:4;29958:1;29930:30;;:7;:16;29938:7;29930:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29923:37;;29841:127;;;:::o;6310:98::-;6363:7;6390:10;6383:17;;6310:98;:::o;33823:174::-;33925:2;33898:15;:24;33914:7;33898:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33981:7;33977:2;33943:46;;33952:23;33967:7;33952:14;:23::i;:::-;33943:46;;;;;;;;;;;;33823:174;;:::o;30135:348::-;30228:4;30253:16;30261:7;30253;:16::i;:::-;30245:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30329:13;30345:23;30360:7;30345:14;:23::i;:::-;30329:39;;30398:5;30387:16;;:7;:16;;;:51;;;;30431:7;30407:31;;:20;30419:7;30407:11;:20::i;:::-;:31;;;30387:51;:87;;;;30442:32;30459:5;30466:7;30442:16;:32::i;:::-;30387:87;30379:96;;;30135:348;;;;:::o;33127:578::-;33286:4;33259:31;;:23;33274:7;33259:14;:23::i;:::-;:31;;;33251:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33369:1;33355:16;;:2;:16;;;;33347:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33425:39;33446:4;33452:2;33456:7;33425:20;:39::i;:::-;33529:29;33546:1;33550:7;33529:8;:29::i;:::-;33590:1;33571:9;:15;33581:4;33571:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33619:1;33602:9;:13;33612:2;33602:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33650:2;33631:7;:16;33639:7;33631:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33689:7;33685:2;33670:27;;33679:4;33670:27;;;;;;;;;;;;33127:578;;;:::o;8622:173::-;8678:16;8697:6;;;;;;;;;;;8678:25;;8723:8;8714:6;;:17;;;;;;;;;;;;;;;;;;8778:8;8747:40;;8768:8;8747:40;;;;;;;;;;;;8667:128;8622:173;:::o;30825:110::-;30901:26;30911:2;30915:7;30901:26;;;;;;;;;;;;:9;:26::i;:::-;30825:110;;:::o;29213:315::-;29370:28;29380:4;29386:2;29390:7;29370:9;:28::i;:::-;29417:48;29440:4;29446:2;29450:7;29459:5;29417:22;:48::i;:::-;29409:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29213:315;;;;:::o;44621:114::-;44681:13;44714;44707:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44621:114;:::o;10075:723::-;10131:13;10361:1;10352:5;:10;10348:53;;;10379:10;;;;;;;;;;;;;;;;;;;;;10348:53;10411:12;10426:5;10411:20;;10442:14;10467:78;10482:1;10474:4;:9;10467:78;;10500:8;;;;;:::i;:::-;;;;10531:2;10523:10;;;;;:::i;:::-;;;10467:78;;;10555:19;10587:6;10577:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10555:39;;10605:154;10621:1;10612:5;:10;10605:154;;10649:1;10639:11;;;;;:::i;:::-;;;10716:2;10708:5;:10;;;;:::i;:::-;10695:2;:24;;;;:::i;:::-;10682:39;;10665:6;10672;10665:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;10745:2;10736:11;;;;;:::i;:::-;;;10605:154;;;10783:6;10769:21;;;;;10075:723;;;;:::o;9600:157::-;9685:4;9724:25;9709:40;;;:11;:40;;;;9702:47;;9600:157;;;:::o;38672:589::-;38816:45;38843:4;38849:2;38853:7;38816:26;:45::i;:::-;38894:1;38878:18;;:4;:18;;;38874:187;;;38913:40;38945:7;38913:31;:40::i;:::-;38874:187;;;38983:2;38975:10;;:4;:10;;;38971:90;;39002:47;39035:4;39041:7;39002:32;:47::i;:::-;38971:90;38874:187;39089:1;39075:16;;:2;:16;;;39071:183;;;39108:45;39145:7;39108:36;:45::i;:::-;39071:183;;;39181:4;39175:10;;:2;:10;;;39171:83;;39202:40;39230:2;39234:7;39202:27;:40::i;:::-;39171:83;39071:183;38672:589;;;:::o;31162:321::-;31292:18;31298:2;31302:7;31292:5;:18::i;:::-;31343:54;31374:1;31378:2;31382:7;31391:5;31343:22;:54::i;:::-;31321:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31162:321;;;:::o;34562:799::-;34717:4;34738:15;:2;:13;;;:15::i;:::-;34734:620;;;34790:2;34774:36;;;34811:12;:10;:12::i;:::-;34825:4;34831:7;34840:5;34774:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34770:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35033:1;35016:6;:13;:18;35012:272;;;35059:60;;;;;;;;;;:::i;:::-;;;;;;;;35012:272;35234:6;35228:13;35219:6;35215:2;35211:15;35204:38;34770:529;34907:41;;;34897:51;;;:6;:51;;;;34890:58;;;;;34734:620;35338:4;35331:11;;34562:799;;;;;;;:::o;39984:164::-;40088:10;:17;;;;40061:15;:24;40077:7;40061:24;;;;;;;;;;;:44;;;;40116:10;40132:7;40116:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39984:164;:::o;40775:988::-;41041:22;41091:1;41066:22;41083:4;41066:16;:22::i;:::-;:26;;;;:::i;:::-;41041:51;;41103:18;41124:17;:26;41142:7;41124:26;;;;;;;;;;;;41103:47;;41271:14;41257:10;:28;41253:328;;41302:19;41324:12;:18;41337:4;41324:18;;;;;;;;;;;;;;;:34;41343:14;41324:34;;;;;;;;;;;;41302:56;;41408:11;41375:12;:18;41388:4;41375:18;;;;;;;;;;;;;;;:30;41394:10;41375:30;;;;;;;;;;;:44;;;;41525:10;41492:17;:30;41510:11;41492:30;;;;;;;;;;;:43;;;;41287:294;41253:328;41677:17;:26;41695:7;41677:26;;;;;;;;;;;41670:33;;;41721:12;:18;41734:4;41721:18;;;;;;;;;;;;;;;:34;41740:14;41721:34;;;;;;;;;;;41714:41;;;40856:907;;40775:988;;:::o;42058:1079::-;42311:22;42356:1;42336:10;:17;;;;:21;;;;:::i;:::-;42311:46;;42368:18;42389:15;:24;42405:7;42389:24;;;;;;;;;;;;42368:45;;42740:19;42762:10;42773:14;42762:26;;;;;;;;:::i;:::-;;;;;;;;;;42740:48;;42826:11;42801:10;42812;42801:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42937:10;42906:15;:28;42922:11;42906:28;;;;;;;;;;;:41;;;;43078:15;:24;43094:7;43078:24;;;;;;;;;;;43071:31;;;43113:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42129:1008;;;42058:1079;:::o;39562:221::-;39647:14;39664:20;39681:2;39664:16;:20::i;:::-;39647:37;;39722:7;39695:12;:16;39708:2;39695:16;;;;;;;;;;;;;;;:24;39712:6;39695:24;;;;;;;;;;;:34;;;;39769:6;39740:17;:26;39758:7;39740:26;;;;;;;;;;;:35;;;;39636:147;39562:221;;:::o;31819:382::-;31913:1;31899:16;;:2;:16;;;;31891:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31972:16;31980:7;31972;:16::i;:::-;31971:17;31963:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32034:45;32063:1;32067:2;32071:7;32034:20;:45::i;:::-;32109:1;32092:9;:13;32102:2;32092:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32140:2;32121:7;:16;32129:7;32121:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32185:7;32181:2;32160:33;;32177:1;32160:33;;;;;;;;;;;;31819:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:::-;10475:3;10496:67;10560:2;10555:3;10496:67;:::i;:::-;10489:74;;10572:93;10661:3;10572:93;:::i;:::-;10690:2;10685:3;10681:12;10674:19;;10333:366;;;:::o;10705:::-;10847:3;10868:67;10932:2;10927:3;10868:67;:::i;:::-;10861:74;;10944:93;11033:3;10944:93;:::i;:::-;11062:2;11057:3;11053:12;11046:19;;10705:366;;;:::o;11077:::-;11219:3;11240:67;11304:2;11299:3;11240:67;:::i;:::-;11233:74;;11316:93;11405:3;11316:93;:::i;:::-;11434:2;11429:3;11425:12;11418:19;;11077:366;;;:::o;11449:::-;11591:3;11612:67;11676:2;11671:3;11612:67;:::i;:::-;11605:74;;11688:93;11777:3;11688:93;:::i;:::-;11806:2;11801:3;11797:12;11790:19;;11449:366;;;:::o;11821:::-;11963:3;11984:67;12048:2;12043:3;11984:67;:::i;:::-;11977:74;;12060:93;12149:3;12060:93;:::i;:::-;12178:2;12173:3;12169:12;12162:19;;11821:366;;;:::o;12193:::-;12335:3;12356:67;12420:2;12415:3;12356:67;:::i;:::-;12349:74;;12432:93;12521:3;12432:93;:::i;:::-;12550:2;12545:3;12541:12;12534:19;;12193:366;;;:::o;12565:::-;12707:3;12728:67;12792:2;12787:3;12728:67;:::i;:::-;12721:74;;12804:93;12893:3;12804:93;:::i;:::-;12922:2;12917:3;12913:12;12906:19;;12565:366;;;:::o;12937:::-;13079:3;13100:67;13164:2;13159:3;13100:67;:::i;:::-;13093:74;;13176:93;13265:3;13176:93;:::i;:::-;13294:2;13289:3;13285:12;13278:19;;12937:366;;;:::o;13309:::-;13451:3;13472:67;13536:2;13531:3;13472:67;:::i;:::-;13465:74;;13548:93;13637:3;13548:93;:::i;:::-;13666:2;13661:3;13657:12;13650:19;;13309:366;;;:::o;13681:::-;13823:3;13844:67;13908:2;13903:3;13844:67;:::i;:::-;13837:74;;13920:93;14009:3;13920:93;:::i;:::-;14038:2;14033:3;14029:12;14022:19;;13681:366;;;:::o;14053:::-;14195:3;14216:67;14280:2;14275:3;14216:67;:::i;:::-;14209:74;;14292:93;14381:3;14292:93;:::i;:::-;14410:2;14405:3;14401:12;14394:19;;14053:366;;;:::o;14425:::-;14567:3;14588:67;14652:2;14647:3;14588:67;:::i;:::-;14581:74;;14664:93;14753:3;14664:93;:::i;:::-;14782:2;14777:3;14773:12;14766:19;;14425:366;;;:::o;14797:::-;14939:3;14960:67;15024:2;15019:3;14960:67;:::i;:::-;14953:74;;15036:93;15125:3;15036:93;:::i;:::-;15154:2;15149:3;15145:12;15138:19;;14797:366;;;:::o;15169:::-;15311:3;15332:67;15396:2;15391:3;15332:67;:::i;:::-;15325:74;;15408:93;15497:3;15408:93;:::i;:::-;15526:2;15521:3;15517:12;15510:19;;15169:366;;;:::o;15541:::-;15683:3;15704:67;15768:2;15763:3;15704:67;:::i;:::-;15697:74;;15780:93;15869:3;15780:93;:::i;:::-;15898:2;15893:3;15889:12;15882:19;;15541:366;;;:::o;15913:::-;16055:3;16076:67;16140:2;16135:3;16076:67;:::i;:::-;16069:74;;16152:93;16241:3;16152:93;:::i;:::-;16270:2;16265:3;16261:12;16254:19;;15913:366;;;:::o;16285:::-;16427:3;16448:67;16512:2;16507:3;16448:67;:::i;:::-;16441:74;;16524:93;16613:3;16524:93;:::i;:::-;16642:2;16637:3;16633:12;16626:19;;16285:366;;;:::o;16657:::-;16799:3;16820:67;16884:2;16879:3;16820:67;:::i;:::-;16813:74;;16896:93;16985:3;16896:93;:::i;:::-;17014:2;17009:3;17005:12;16998:19;;16657:366;;;:::o;17029:::-;17171:3;17192:67;17256:2;17251:3;17192:67;:::i;:::-;17185:74;;17268:93;17357:3;17268:93;:::i;:::-;17386:2;17381:3;17377:12;17370:19;;17029:366;;;:::o;17401:118::-;17488:24;17506:5;17488:24;:::i;:::-;17483:3;17476:37;17401:118;;:::o;17525:435::-;17705:3;17727:95;17818:3;17809:6;17727:95;:::i;:::-;17720:102;;17839:95;17930:3;17921:6;17839:95;:::i;:::-;17832:102;;17951:3;17944:10;;17525:435;;;;;:::o;17966:222::-;18059:4;18097:2;18086:9;18082:18;18074:26;;18110:71;18178:1;18167:9;18163:17;18154:6;18110:71;:::i;:::-;17966:222;;;;:::o;18194:640::-;18389:4;18427:3;18416:9;18412:19;18404:27;;18441:71;18509:1;18498:9;18494:17;18485:6;18441:71;:::i;:::-;18522:72;18590:2;18579:9;18575:18;18566:6;18522:72;:::i;:::-;18604;18672:2;18661:9;18657:18;18648:6;18604:72;:::i;:::-;18723:9;18717:4;18713:20;18708:2;18697:9;18693:18;18686:48;18751:76;18822:4;18813:6;18751:76;:::i;:::-;18743:84;;18194:640;;;;;;;:::o;18840:210::-;18927:4;18965:2;18954:9;18950:18;18942:26;;18978:65;19040:1;19029:9;19025:17;19016:6;18978:65;:::i;:::-;18840:210;;;;:::o;19056:313::-;19169:4;19207:2;19196:9;19192:18;19184:26;;19256:9;19250:4;19246:20;19242:1;19231:9;19227:17;19220:47;19284:78;19357:4;19348:6;19284:78;:::i;:::-;19276:86;;19056:313;;;;:::o;19375:419::-;19541:4;19579:2;19568:9;19564:18;19556:26;;19628:9;19622:4;19618:20;19614:1;19603:9;19599:17;19592:47;19656:131;19782:4;19656:131;:::i;:::-;19648:139;;19375:419;;;:::o;19800:::-;19966:4;20004:2;19993:9;19989:18;19981:26;;20053:9;20047:4;20043:20;20039:1;20028:9;20024:17;20017:47;20081:131;20207:4;20081:131;:::i;:::-;20073:139;;19800:419;;;:::o;20225:::-;20391:4;20429:2;20418:9;20414:18;20406:26;;20478:9;20472:4;20468:20;20464:1;20453:9;20449:17;20442:47;20506:131;20632:4;20506:131;:::i;:::-;20498:139;;20225:419;;;:::o;20650:::-;20816:4;20854:2;20843:9;20839:18;20831:26;;20903:9;20897:4;20893:20;20889:1;20878:9;20874:17;20867:47;20931:131;21057:4;20931:131;:::i;:::-;20923:139;;20650:419;;;:::o;21075:::-;21241:4;21279:2;21268:9;21264:18;21256:26;;21328:9;21322:4;21318:20;21314:1;21303:9;21299:17;21292:47;21356:131;21482:4;21356:131;:::i;:::-;21348:139;;21075:419;;;:::o;21500:::-;21666:4;21704:2;21693:9;21689:18;21681:26;;21753:9;21747:4;21743:20;21739:1;21728:9;21724:17;21717:47;21781:131;21907:4;21781:131;:::i;:::-;21773:139;;21500:419;;;:::o;21925:::-;22091:4;22129:2;22118:9;22114:18;22106:26;;22178:9;22172:4;22168:20;22164:1;22153:9;22149:17;22142:47;22206:131;22332:4;22206:131;:::i;:::-;22198:139;;21925:419;;;:::o;22350:::-;22516:4;22554:2;22543:9;22539:18;22531:26;;22603:9;22597:4;22593:20;22589:1;22578:9;22574:17;22567:47;22631:131;22757:4;22631:131;:::i;:::-;22623:139;;22350:419;;;:::o;22775:::-;22941:4;22979:2;22968:9;22964:18;22956:26;;23028:9;23022:4;23018:20;23014:1;23003:9;22999:17;22992:47;23056:131;23182:4;23056:131;:::i;:::-;23048:139;;22775:419;;;:::o;23200:::-;23366:4;23404:2;23393:9;23389:18;23381:26;;23453:9;23447:4;23443:20;23439:1;23428:9;23424:17;23417:47;23481:131;23607:4;23481:131;:::i;:::-;23473:139;;23200:419;;;:::o;23625:::-;23791:4;23829:2;23818:9;23814:18;23806:26;;23878:9;23872:4;23868:20;23864:1;23853:9;23849:17;23842:47;23906:131;24032:4;23906:131;:::i;:::-;23898:139;;23625:419;;;:::o;24050:::-;24216:4;24254:2;24243:9;24239:18;24231:26;;24303:9;24297:4;24293:20;24289:1;24278:9;24274:17;24267:47;24331:131;24457:4;24331:131;:::i;:::-;24323:139;;24050:419;;;:::o;24475:::-;24641:4;24679:2;24668:9;24664:18;24656:26;;24728:9;24722:4;24718:20;24714:1;24703:9;24699:17;24692:47;24756:131;24882:4;24756:131;:::i;:::-;24748:139;;24475:419;;;:::o;24900:::-;25066:4;25104:2;25093:9;25089:18;25081:26;;25153:9;25147:4;25143:20;25139:1;25128:9;25124:17;25117:47;25181:131;25307:4;25181:131;:::i;:::-;25173:139;;24900:419;;;:::o;25325:::-;25491:4;25529:2;25518:9;25514:18;25506:26;;25578:9;25572:4;25568:20;25564:1;25553:9;25549:17;25542:47;25606:131;25732:4;25606:131;:::i;:::-;25598:139;;25325:419;;;:::o;25750:::-;25916:4;25954:2;25943:9;25939:18;25931:26;;26003:9;25997:4;25993:20;25989:1;25978:9;25974:17;25967:47;26031:131;26157:4;26031:131;:::i;:::-;26023:139;;25750:419;;;:::o;26175:::-;26341:4;26379:2;26368:9;26364:18;26356:26;;26428:9;26422:4;26418:20;26414:1;26403:9;26399:17;26392:47;26456:131;26582:4;26456:131;:::i;:::-;26448:139;;26175:419;;;:::o;26600:::-;26766:4;26804:2;26793:9;26789:18;26781:26;;26853:9;26847:4;26843:20;26839:1;26828:9;26824:17;26817:47;26881:131;27007:4;26881:131;:::i;:::-;26873:139;;26600:419;;;:::o;27025:::-;27191:4;27229:2;27218:9;27214:18;27206:26;;27278:9;27272:4;27268:20;27264:1;27253:9;27249:17;27242:47;27306:131;27432:4;27306:131;:::i;:::-;27298:139;;27025:419;;;:::o;27450:::-;27616:4;27654:2;27643:9;27639:18;27631:26;;27703:9;27697:4;27693:20;27689:1;27678:9;27674:17;27667:47;27731:131;27857:4;27731:131;:::i;:::-;27723:139;;27450:419;;;:::o;27875:::-;28041:4;28079:2;28068:9;28064:18;28056:26;;28128:9;28122:4;28118:20;28114:1;28103:9;28099:17;28092:47;28156:131;28282:4;28156:131;:::i;:::-;28148:139;;27875:419;;;:::o;28300:::-;28466:4;28504:2;28493:9;28489:18;28481:26;;28553:9;28547:4;28543:20;28539:1;28528:9;28524:17;28517:47;28581:131;28707:4;28581:131;:::i;:::-;28573:139;;28300:419;;;:::o;28725:::-;28891:4;28929:2;28918:9;28914:18;28906:26;;28978:9;28972:4;28968:20;28964:1;28953:9;28949:17;28942:47;29006:131;29132:4;29006:131;:::i;:::-;28998:139;;28725:419;;;:::o;29150:222::-;29243:4;29281:2;29270:9;29266:18;29258:26;;29294:71;29362:1;29351:9;29347:17;29338:6;29294:71;:::i;:::-;29150:222;;;;:::o;29378:129::-;29412:6;29439:20;;:::i;:::-;29429:30;;29468:33;29496:4;29488:6;29468:33;:::i;:::-;29378:129;;;:::o;29513:75::-;29546:6;29579:2;29573:9;29563:19;;29513:75;:::o;29594:307::-;29655:4;29745:18;29737:6;29734:30;29731:56;;;29767:18;;:::i;:::-;29731:56;29805:29;29827:6;29805:29;:::i;:::-;29797:37;;29889:4;29883;29879:15;29871:23;;29594:307;;;:::o;29907:308::-;29969:4;30059:18;30051:6;30048:30;30045:56;;;30081:18;;:::i;:::-;30045:56;30119:29;30141:6;30119:29;:::i;:::-;30111:37;;30203:4;30197;30193:15;30185:23;;29907:308;;;:::o;30221:98::-;30272:6;30306:5;30300:12;30290:22;;30221:98;;;:::o;30325:99::-;30377:6;30411:5;30405:12;30395:22;;30325:99;;;:::o;30430:168::-;30513:11;30547:6;30542:3;30535:19;30587:4;30582:3;30578:14;30563:29;;30430:168;;;;:::o;30604:169::-;30688:11;30722:6;30717:3;30710:19;30762:4;30757:3;30753:14;30738:29;;30604:169;;;;:::o;30779:148::-;30881:11;30918:3;30903:18;;30779:148;;;;:::o;30933:305::-;30973:3;30992:20;31010:1;30992:20;:::i;:::-;30987:25;;31026:20;31044:1;31026:20;:::i;:::-;31021:25;;31180:1;31112:66;31108:74;31105:1;31102:81;31099:107;;;31186:18;;:::i;:::-;31099:107;31230:1;31227;31223:9;31216:16;;30933:305;;;;:::o;31244:185::-;31284:1;31301:20;31319:1;31301:20;:::i;:::-;31296:25;;31335:20;31353:1;31335:20;:::i;:::-;31330:25;;31374:1;31364:35;;31379:18;;:::i;:::-;31364:35;31421:1;31418;31414:9;31409:14;;31244:185;;;;:::o;31435:348::-;31475:7;31498:20;31516:1;31498:20;:::i;:::-;31493:25;;31532:20;31550:1;31532:20;:::i;:::-;31527:25;;31720:1;31652:66;31648:74;31645:1;31642:81;31637:1;31630:9;31623:17;31619:105;31616:131;;;31727:18;;:::i;:::-;31616:131;31775:1;31772;31768:9;31757:20;;31435:348;;;;:::o;31789:191::-;31829:4;31849:20;31867:1;31849:20;:::i;:::-;31844:25;;31883:20;31901:1;31883:20;:::i;:::-;31878:25;;31922:1;31919;31916:8;31913:34;;;31927:18;;:::i;:::-;31913:34;31972:1;31969;31965:9;31957:17;;31789:191;;;;:::o;31986:96::-;32023:7;32052:24;32070:5;32052:24;:::i;:::-;32041:35;;31986:96;;;:::o;32088:90::-;32122:7;32165:5;32158:13;32151:21;32140:32;;32088:90;;;:::o;32184:149::-;32220:7;32260:66;32253:5;32249:78;32238:89;;32184:149;;;:::o;32339:126::-;32376:7;32416:42;32409:5;32405:54;32394:65;;32339:126;;;:::o;32471:77::-;32508:7;32537:5;32526:16;;32471:77;;;:::o;32554:154::-;32638:6;32633:3;32628;32615:30;32700:1;32691:6;32686:3;32682:16;32675:27;32554:154;;;:::o;32714:307::-;32782:1;32792:113;32806:6;32803:1;32800:13;32792:113;;;32891:1;32886:3;32882:11;32876:18;32872:1;32867:3;32863:11;32856:39;32828:2;32825:1;32821:10;32816:15;;32792:113;;;32923:6;32920:1;32917:13;32914:101;;;33003:1;32994:6;32989:3;32985:16;32978:27;32914:101;32763:258;32714:307;;;:::o;33027:320::-;33071:6;33108:1;33102:4;33098:12;33088:22;;33155:1;33149:4;33145:12;33176:18;33166:81;;33232:4;33224:6;33220:17;33210:27;;33166:81;33294:2;33286:6;33283:14;33263:18;33260:38;33257:84;;;33313:18;;:::i;:::-;33257:84;33078:269;33027:320;;;:::o;33353:281::-;33436:27;33458:4;33436:27;:::i;:::-;33428:6;33424:40;33566:6;33554:10;33551:22;33530:18;33518:10;33515:34;33512:62;33509:88;;;33577:18;;:::i;:::-;33509:88;33617:10;33613:2;33606:22;33396:238;33353:281;;:::o;33640:233::-;33679:3;33702:24;33720:5;33702:24;:::i;:::-;33693:33;;33748:66;33741:5;33738:77;33735:103;;;33818:18;;:::i;:::-;33735:103;33865:1;33858:5;33854:13;33847:20;;33640:233;;;:::o;33879:176::-;33911:1;33928:20;33946:1;33928:20;:::i;:::-;33923:25;;33962:20;33980:1;33962:20;:::i;:::-;33957:25;;34001:1;33991:35;;34006:18;;:::i;:::-;33991:35;34047:1;34044;34040:9;34035:14;;33879:176;;;;:::o;34061:180::-;34109:77;34106:1;34099:88;34206:4;34203:1;34196:15;34230:4;34227:1;34220:15;34247:180;34295:77;34292:1;34285:88;34392:4;34389:1;34382:15;34416:4;34413:1;34406:15;34433:180;34481:77;34478:1;34471:88;34578:4;34575:1;34568:15;34602:4;34599:1;34592:15;34619:180;34667:77;34664:1;34657:88;34764:4;34761:1;34754:15;34788:4;34785:1;34778:15;34805:180;34853:77;34850:1;34843:88;34950:4;34947:1;34940:15;34974:4;34971:1;34964:15;34991:180;35039:77;35036:1;35029:88;35136:4;35133:1;35126:15;35160:4;35157:1;35150:15;35177:117;35286:1;35283;35276:12;35300:117;35409:1;35406;35399:12;35423:117;35532:1;35529;35522:12;35546:117;35655:1;35652;35645:12;35669:102;35710:6;35761:2;35757:7;35752:2;35745:5;35741:14;35737:28;35727:38;;35669:102;;;:::o;35777:230::-;35917:34;35913:1;35905:6;35901:14;35894:58;35986:13;35981:2;35973:6;35969:15;35962:38;35777:230;:::o;36013:237::-;36153:34;36149:1;36141:6;36137:14;36130:58;36222:20;36217:2;36209:6;36205:15;36198:45;36013:237;:::o;36256:225::-;36396:34;36392:1;36384:6;36380:14;36373:58;36465:8;36460:2;36452:6;36448:15;36441:33;36256:225;:::o;36487:178::-;36627:30;36623:1;36615:6;36611:14;36604:54;36487:178;:::o;36671:223::-;36811:34;36807:1;36799:6;36795:14;36788:58;36880:6;36875:2;36867:6;36863:15;36856:31;36671:223;:::o;36900:175::-;37040:27;37036:1;37028:6;37024:14;37017:51;36900:175;:::o;37081:231::-;37221:34;37217:1;37209:6;37205:14;37198:58;37290:14;37285:2;37277:6;37273:15;37266:39;37081:231;:::o;37318:230::-;37458:34;37454:1;37446:6;37442:14;37435:58;37527:13;37522:2;37514:6;37510:15;37503:38;37318:230;:::o;37554:243::-;37694:34;37690:1;37682:6;37678:14;37671:58;37763:26;37758:2;37750:6;37746:15;37739:51;37554:243;:::o;37803:229::-;37943:34;37939:1;37931:6;37927:14;37920:58;38012:12;38007:2;37999:6;37995:15;37988:37;37803:229;:::o;38038:228::-;38178:34;38174:1;38166:6;38162:14;38155:58;38247:11;38242:2;38234:6;38230:15;38223:36;38038:228;:::o;38272:178::-;38412:30;38408:1;38400:6;38396:14;38389:54;38272:178;:::o;38456:182::-;38596:34;38592:1;38584:6;38580:14;38573:58;38456:182;:::o;38644:231::-;38784:34;38780:1;38772:6;38768:14;38761:58;38853:14;38848:2;38840:6;38836:15;38829:39;38644:231;:::o;38881:182::-;39021:34;39017:1;39009:6;39005:14;38998:58;38881:182;:::o;39069:228::-;39209:34;39205:1;39197:6;39193:14;39186:58;39278:11;39273:2;39265:6;39261:15;39254:36;39069:228;:::o;39303:234::-;39443:34;39439:1;39431:6;39427:14;39420:58;39512:17;39507:2;39499:6;39495:15;39488:42;39303:234;:::o;39543:169::-;39683:21;39679:1;39671:6;39667:14;39660:45;39543:169;:::o;39718:220::-;39858:34;39854:1;39846:6;39842:14;39835:58;39927:3;39922:2;39914:6;39910:15;39903:28;39718:220;:::o;39944:224::-;40084:34;40080:1;40072:6;40068:14;40061:58;40153:7;40148:2;40140:6;40136:15;40129:32;39944:224;:::o;40174:236::-;40314:34;40310:1;40302:6;40298:14;40291:58;40383:19;40378:2;40370:6;40366:15;40359:44;40174:236;:::o;40416:231::-;40556:34;40552:1;40544:6;40540:14;40533:58;40625:14;40620:2;40612:6;40608:15;40601:39;40416:231;:::o;40653:222::-;40793:34;40789:1;40781:6;40777:14;40770:58;40862:5;40857:2;40849:6;40845:15;40838:30;40653:222;:::o;40881:122::-;40954:24;40972:5;40954:24;:::i;:::-;40947:5;40944:35;40934:63;;40993:1;40990;40983:12;40934:63;40881:122;:::o;41009:116::-;41079:21;41094:5;41079:21;:::i;:::-;41072:5;41069:32;41059:60;;41115:1;41112;41105:12;41059:60;41009:116;:::o;41131:120::-;41203:23;41220:5;41203:23;:::i;:::-;41196:5;41193:34;41183:62;;41241:1;41238;41231:12;41183:62;41131:120;:::o;41257:122::-;41330:24;41348:5;41330:24;:::i;:::-;41323:5;41320:35;41310:63;;41369:1;41366;41359:12;41310:63;41257:122;:::o

Swarm Source

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