ERC-721
Overview
Max Total Supply
316 MYWORDLE
Holders
111
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
7 MYWORDLELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MyWordleNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-08 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (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/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (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/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (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/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (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/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (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/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (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 { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/MyWordleNFT.sol /* MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMWOlcclOWW0lcclkWMMMMMMMMMMMMKocdXWOlcxNWOllOWMMMMMMMMMMMMMMMMMMMMMMMMMW0lcxNMNkclOWMMMMMMMMMMMMMMMMMMMXdccoKM0lckNMWkcccccclOW0lcccccccxNMMMM MMMMMMMK; oW0, .dWWWNNWMWNNWMWd. ,00' ;KO' .OWMWXXXNWMMMMWNWWNXWMMWWNXNK: lNMO' .xWMMWNXXXWMMMMMMMMMMWx. .kX: oWM0' .,,,:ONx;. .,,dNMMMM MMMMMMWd. . .dK;.. ;KMK:':0Nd,,xWWl cO; c0; .xW0l,''.'oXMM0:',:,;0W0c,'.,,. 'OMNl :XMWOc,,'.;kWMMMMMMMMK; .dx. ,0MWo 'kXXNWMMWNd. .kWWWMMMMM MMMMMMK; .;..oc.,. .dWMO' .kd. cXMNc cc.'. lc .dNk. .do. .OMNl .:lkNO' .lo. lNMO' .xMNd. ,x: :NMMMMMMMWx. '..c; oWM0' .'',oXMMMX; cNMMMMMMMM MMMMMWd. :l....;c. ;KMM0' 'l. cXMMX; .'.;o..,. lNK, .dNd. ,KMO. .xWMMX: .lNk. 'OMNl :XMk. ';'..dWMMMMMMMK; .o: .. ,0MWo .:cclkWMMWx. .OMMMMMMMMM MMMMMK; .xo ;x; .dWMMK, ...cXMMM0' 'Ox. :XWd. ,KK, .dWNc :XMMMk. .:OX: lNMO' .xWNc :Od::dNMMMMMMMWx. :Kl oWM0, oWMMMMMMMX; cNMMMMMMMMM MMMMWd. :Ko ,Od. ;KMMMK; cXMMMMO. .xNl ,KMWd .c, .dNMO. .kMMMMx. ..;; 'OMNl :XMNc ,l' ,OWMMMMMMMX; .xNo ,0MWo ,0MMMMMMMWx. .OMMMMMMMMMM MMMMWOlo0WOlo0WOllOWMWNO' lXMMMMMKdllkNWOlloKMMMXxc::cd0WMM0olxNMMMMXxcccodllkWMNklo0MMMKdc:clxXMMMMMMMMMXdlxNW0ollOWMNkllOWMMMMMMMWOllkNMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMWk,..'dNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMWKkk0XMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM */ pragma solidity ^0.8.6; contract MyWordleNFT is ERC721Enumerable, Ownable { string private _baseTokenURI; uint256 private _maxSupply = 10000; uint256 private _price = 0.035 ether; uint256 public _reserved = 200; bool private _preSaleActive = false; bool private _mainSaleActive = false; constructor() ERC721("MyWordle NFT", "MYWORDLE") { } mapping(address => bool) private _inPresale; mapping(address => uint256) private _totalClaimed; function addToPresale(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Null addr"); _inPresale[addresses[i]] = true; _totalClaimed[addresses[i]] > 0 ? _totalClaimed[addresses[i]] : 0; } } function mintPresale(uint256 num) external payable { uint256 supply = totalSupply(); require( _preSaleActive, "No Presale"); require( _inPresale[msg.sender], "Not in WL"); require( _totalClaimed[msg.sender] + num <= 7, "Too many mint"); require( _reserved + supply + num <= _maxSupply, "No NFT left"); require( msg.value >= _price * num, "Less ETH" ); for (uint256 i = 0; i < num; i++){ _totalClaimed[msg.sender] += 1; _safeMint( msg.sender, supply + i + 1); } } function mintMainSale(uint256 num) external payable { uint256 supply = totalSupply(); require( _mainSaleActive, "No MainSale" ); require( num > 0 && num < 11, "Too many mint" ); require( _reserved + supply + num <= _maxSupply, "No NFT left" ); require( msg.value >= _price * num, "Less ETH" ); for(uint256 i = 0; i < num; i++){ _safeMint( msg.sender, supply + i + 1); } } function walletOfOwner(address _owner) external view returns(uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i = 0; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function setPrice(uint256 _newPrice) external onlyOwner { _price = _newPrice; } function inPresale(address addr) external view returns(bool) { return _inPresale[addr]; } function resumePresale() external onlyOwner { _preSaleActive = true; } function resumeMainSale() external onlyOwner { _mainSaleActive = true; } function pausePresale() external onlyOwner { _preSaleActive = false; } function pauseMainSale() external onlyOwner { _mainSaleActive = false; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory uri) external onlyOwner { _baseTokenURI = string(uri); } function getPrice() external view returns (uint256) { return _price; } function getBaseTokenURI() external view onlyOwner returns (string memory) { return _baseTokenURI; } function getTokensLeft() external view returns (uint256) { uint256 supply = totalSupply(); return _maxSupply - supply - _reserved; } function giveAway(address to, uint256 quantity) external onlyOwner { uint256 supply = totalSupply(); require(quantity <= _reserved , "No left"); _reserved -= quantity; for(uint256 i = 0; i < quantity; i++){ _safeMint( to, supply + i + 1); } } function withdraw() external onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokensLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"inPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintMainSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintPresale","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":"pauseMainSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pausePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resumeMainSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resumePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052612710600c55667c585087238000600d5560c8600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055503480156200005d57600080fd5b506040518060400160405280600c81526020017f4d79576f72646c65204e465400000000000000000000000000000000000000008152506040518060400160405280600881526020017f4d59574f52444c450000000000000000000000000000000000000000000000008152508160009080519060200190620000e2929190620001f2565b508060019080519060200190620000fb929190620001f2565b5050506200011e620001126200012460201b60201c565b6200012c60201b60201c565b62000307565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020090620002a2565b90600052602060002090601f01602090048101928262000224576000855562000270565b82601f106200023f57805160ff191683800117855562000270565b8280016001018555821562000270579182015b828111156200026f57825182559160200191906001019062000252565b5b5090506200027f919062000283565b5090565b5b808211156200029e57600081600090555060010162000284565b5090565b60006002820490506001821680620002bb57607f821691505b60208210811415620002d257620002d1620002d8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614cc780620003176000396000f3fe60806040526004361061020f5760003560e01c80636aaa571d11610118578063aef6ee1f116100a0578063ca8001441161006f578063ca80014414610754578063de5f98661461077d578063e985e9c5146107a8578063f2fde38b146107e5578063f759867a1461080e5761020f565b8063aef6ee1f1461069a578063b88d4fde146106c3578063bdc32be0146106ec578063c87b56dd146107175761020f565b806391b7f5ed116100e757806391b7f5ed146105b557806395d89b41146105de57806398d5fdca14610609578063a22cb46514610634578063a58e640a1461065d5761020f565b80636aaa571d1461050b57806370a0823114610536578063715018a6146105735780638da5cb5b1461058a5761020f565b80633ccfd60b1161019b5780634f6ccce71161016a5780634f6ccce71461043a57806354f63ee51461047757806355f804b31461048e5780635e55b5c6146104b75780636352211e146104ce5761020f565b80633ccfd60b146103a157806342842e0e146103b8578063438b6300146103e15780634a759ecc1461041e5761020f565b80630869f72d116101e25780630869f72d146102d0578063095ea7b3146102e757806318160ddd1461031057806323b872dd1461033b5780632f745c59146103645761020f565b806301ffc9a71461021457806306fdde0314610251578063070f5c091461027c578063081812fc14610293575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061370b565b61082a565b6040516102489190613d6b565b60405180910390f35b34801561025d57600080fd5b506102666108a4565b6040516102739190613d86565b60405180910390f35b34801561028857600080fd5b50610291610936565b005b34801561029f57600080fd5b506102ba60048036038101906102b591906137ae565b6109cf565b6040516102c79190613ce2565b60405180910390f35b3480156102dc57600080fd5b506102e5610a54565b005b3480156102f357600080fd5b5061030e6004803603810190610309919061367e565b610aed565b005b34801561031c57600080fd5b50610325610c05565b60405161033291906140e8565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190613568565b610c12565b005b34801561037057600080fd5b5061038b6004803603810190610386919061367e565b610c72565b60405161039891906140e8565b60405180910390f35b3480156103ad57600080fd5b506103b6610d17565b005b3480156103c457600080fd5b506103df60048036038101906103da9190613568565b610dd3565b005b3480156103ed57600080fd5b50610408600480360381019061040391906134fb565b610df3565b6040516104159190613d49565b60405180910390f35b610438600480360381019061043391906137ae565b610ea1565b005b34801561044657600080fd5b50610461600480360381019061045c91906137ae565b61103c565b60405161046e91906140e8565b60405180910390f35b34801561048357600080fd5b5061048c6110ad565b005b34801561049a57600080fd5b506104b560048036038101906104b09190613765565b611146565b005b3480156104c357600080fd5b506104cc6111dc565b005b3480156104da57600080fd5b506104f560048036038101906104f091906137ae565b611275565b6040516105029190613ce2565b60405180910390f35b34801561051757600080fd5b50610520611327565b60405161052d91906140e8565b60405180910390f35b34801561054257600080fd5b5061055d600480360381019061055891906134fb565b61132d565b60405161056a91906140e8565b60405180910390f35b34801561057f57600080fd5b506105886113e5565b005b34801561059657600080fd5b5061059f61146d565b6040516105ac9190613ce2565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d791906137ae565b611497565b005b3480156105ea57600080fd5b506105f361151d565b6040516106009190613d86565b60405180910390f35b34801561061557600080fd5b5061061e6115af565b60405161062b91906140e8565b60405180910390f35b34801561064057600080fd5b5061065b6004803603810190610656919061363e565b6115b9565b005b34801561066957600080fd5b50610684600480360381019061067f91906134fb565b6115cf565b6040516106919190613d6b565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc91906136be565b611625565b005b3480156106cf57600080fd5b506106ea60048036038101906106e591906135bb565b6118bb565b005b3480156106f857600080fd5b5061070161191d565b60405161070e9190613d86565b60405180910390f35b34801561072357600080fd5b5061073e600480360381019061073991906137ae565b611a2b565b60405161074b9190613d86565b60405180910390f35b34801561076057600080fd5b5061077b6004803603810190610776919061367e565b611ad2565b005b34801561078957600080fd5b50610792611bfd565b60405161079f91906140e8565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613528565b611c2b565b6040516107dc9190613d6b565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906134fb565b611cbf565b005b610828600480360381019061082391906137ae565b611db7565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089d575061089c82612074565b5b9050919050565b6060600080546108b3906143d1565b80601f01602080910402602001604051908101604052809291908181526020018280546108df906143d1565b801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b61093e612156565b73ffffffffffffffffffffffffffffffffffffffff1661095c61146d565b73ffffffffffffffffffffffffffffffffffffffff16146109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990613fe8565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550565b60006109da8261215e565b610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090613fa8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a5c612156565b73ffffffffffffffffffffffffffffffffffffffff16610a7a61146d565b73ffffffffffffffffffffffffffffffffffffffff1614610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac790613fe8565b60405180910390fd5b6000600f60016101000a81548160ff021916908315150217905550565b6000610af882611275565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090614048565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b88612156565b73ffffffffffffffffffffffffffffffffffffffff161480610bb75750610bb681610bb1612156565b611c2b565b5b610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90613f28565b60405180910390fd5b610c0083836121ca565b505050565b6000600880549050905090565b610c23610c1d612156565b82612283565b610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990614088565b60405180910390fd5b610c6d838383612361565b505050565b6000610c7d8361132d565b8210610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590613dc8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d1f612156565b73ffffffffffffffffffffffffffffffffffffffff16610d3d61146d565b73ffffffffffffffffffffffffffffffffffffffff1614610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90613fe8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610dd157600080fd5b565b610dee838383604051806020016040528060008152506118bb565b505050565b60606000610e008361132d565b905060008167ffffffffffffffff811115610e1e57610e1d614599565b5b604051908082528060200260200182016040528015610e4c5781602001602082028036833780820191505090505b50905060005b82811015610e9657610e648582610c72565b828281518110610e7757610e7661456a565b5b6020026020010181815250508080610e8e90614434565b915050610e52565b508092505050919050565b6000610eab610c05565b9050600f60019054906101000a900460ff16610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390613da8565b60405180910390fd5b600082118015610f0c5750600b82105b610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290614068565b60405180910390fd5b600c548282600e54610f5d9190614206565b610f679190614206565b1115610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90613e88565b60405180910390fd5b81600d54610fb6919061428d565b341015610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef90613ea8565b60405180910390fd5b60005b828110156110375761102433600183856110159190614206565b61101f9190614206565b6125bd565b808061102f90614434565b915050610ffb565b505050565b6000611046610c05565b8210611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e906140a8565b60405180910390fd5b6008828154811061109b5761109a61456a565b5b90600052602060002001549050919050565b6110b5612156565b73ffffffffffffffffffffffffffffffffffffffff166110d361146d565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090613fe8565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b61114e612156565b73ffffffffffffffffffffffffffffffffffffffff1661116c61146d565b73ffffffffffffffffffffffffffffffffffffffff16146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990613fe8565b60405180910390fd5b80600b90805190602001906111d89291906132b9565b5050565b6111e4612156565b73ffffffffffffffffffffffffffffffffffffffff1661120261146d565b73ffffffffffffffffffffffffffffffffffffffff1614611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f90613fe8565b60405180910390fd5b6001600f60016101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590613f68565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590613f48565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113ed612156565b73ffffffffffffffffffffffffffffffffffffffff1661140b61146d565b73ffffffffffffffffffffffffffffffffffffffff1614611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890613fe8565b60405180910390fd5b61146b60006125db565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61149f612156565b73ffffffffffffffffffffffffffffffffffffffff166114bd61146d565b73ffffffffffffffffffffffffffffffffffffffff1614611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90613fe8565b60405180910390fd5b80600d8190555050565b60606001805461152c906143d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611558906143d1565b80156115a55780601f1061157a576101008083540402835291602001916115a5565b820191906000526020600020905b81548152906001019060200180831161158857829003601f168201915b5050505050905090565b6000600d54905090565b6115cb6115c4612156565b83836126a1565b5050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61162d612156565b73ffffffffffffffffffffffffffffffffffffffff1661164b61146d565b73ffffffffffffffffffffffffffffffffffffffff16146116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613fe8565b60405180910390fd5b60005b828290508110156118b657600073ffffffffffffffffffffffffffffffffffffffff168383838181106116da576116d961456a565b5b90506020020160208101906116ef91906134fb565b73ffffffffffffffffffffffffffffffffffffffff161415611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90613fc8565b60405180910390fd5b60016010600085858581811061175f5761175e61456a565b5b905060200201602081019061177491906134fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601160008585858181106117de576117dd61456a565b5b90506020020160208101906117f391906134fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161183a5760006118a2565b601160008484848181106118515761185061456a565b5b905060200201602081019061186691906134fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b5080806118ae90614434565b9150506116a4565b505050565b6118cc6118c6612156565b83612283565b61190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190290614088565b60405180910390fd5b6119178484848461280e565b50505050565b6060611927612156565b73ffffffffffffffffffffffffffffffffffffffff1661194561146d565b73ffffffffffffffffffffffffffffffffffffffff161461199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290613fe8565b60405180910390fd5b600b80546119a8906143d1565b80601f01602080910402602001604051908101604052809291908181526020018280546119d4906143d1565b8015611a215780601f106119f657610100808354040283529160200191611a21565b820191906000526020600020905b815481529060010190602001808311611a0457829003601f168201915b5050505050905090565b6060611a368261215e565b611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c90614028565b60405180910390fd5b6000611a7f61286a565b90506000815111611a9f5760405180602001604052806000815250611aca565b80611aa9846128fc565b604051602001611aba929190613cbe565b6040516020818303038152906040525b915050919050565b611ada612156565b73ffffffffffffffffffffffffffffffffffffffff16611af861146d565b73ffffffffffffffffffffffffffffffffffffffff1614611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4590613fe8565b60405180910390fd5b6000611b58610c05565b9050600e54821115611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9690613e48565b60405180910390fd5b81600e6000828254611bb191906142e7565b9250508190555060005b82811015611bf757611be48460018385611bd59190614206565b611bdf9190614206565b6125bd565b8080611bef90614434565b915050611bbb565b50505050565b600080611c08610c05565b9050600e5481600c54611c1b91906142e7565b611c2591906142e7565b91505090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cc7612156565b73ffffffffffffffffffffffffffffffffffffffff16611ce561146d565b73ffffffffffffffffffffffffffffffffffffffff1614611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290613fe8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da290613e28565b60405180910390fd5b611db4816125db565b50565b6000611dc1610c05565b9050600f60009054906101000a900460ff16611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0990613e08565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e95906140c8565b60405180910390fd5b600782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eeb9190614206565b1115611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390614068565b60405180910390fd5b600c548282600e54611f3e9190614206565b611f489190614206565b1115611f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8090613e88565b60405180910390fd5b81600d54611f97919061428d565b341015611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090613ea8565b60405180910390fd5b60005b8281101561206f576001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120349190614206565b9250508190555061205c336001838561204d9190614206565b6120579190614206565b6125bd565b808061206790614434565b915050611fdc565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061213f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061214f575061214e82612a5d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661223d83611275565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061228e8261215e565b6122cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c490613f08565b60405180910390fd5b60006122d883611275565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061234757508373ffffffffffffffffffffffffffffffffffffffff1661232f846109cf565b73ffffffffffffffffffffffffffffffffffffffff16145b8061235857506123578185611c2b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661238182611275565b73ffffffffffffffffffffffffffffffffffffffff16146123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce90614008565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243e90613ec8565b60405180910390fd5b612452838383612ac7565b61245d6000826121ca565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ad91906142e7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125049190614206565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125d7828260405180602001604052806000815250612bdb565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270790613ee8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128019190613d6b565b60405180910390a3505050565b612819848484612361565b61282584848484612c36565b612864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285b90613de8565b60405180910390fd5b50505050565b6060600b8054612879906143d1565b80601f01602080910402602001604051908101604052809291908181526020018280546128a5906143d1565b80156128f25780601f106128c7576101008083540402835291602001916128f2565b820191906000526020600020905b8154815290600101906020018083116128d557829003601f168201915b5050505050905090565b60606000821415612944576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a58565b600082905060005b6000821461297657808061295f90614434565b915050600a8261296f919061425c565b915061294c565b60008167ffffffffffffffff81111561299257612991614599565b5b6040519080825280601f01601f1916602001820160405280156129c45781602001600182028036833780820191505090505b5090505b60008514612a51576001826129dd91906142e7565b9150600a856129ec919061447d565b60306129f89190614206565b60f81b818381518110612a0e57612a0d61456a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a4a919061425c565b94506129c8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ad2838383612dcd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b1557612b1081612dd2565b612b54565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b5357612b528382612e1b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b9757612b9281612f88565b612bd6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bd557612bd48282613059565b5b5b505050565b612be583836130d8565b612bf26000848484612c36565b612c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2890613de8565b60405180910390fd5b505050565b6000612c578473ffffffffffffffffffffffffffffffffffffffff166132a6565b15612dc0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c80612156565b8786866040518563ffffffff1660e01b8152600401612ca29493929190613cfd565b602060405180830381600087803b158015612cbc57600080fd5b505af1925050508015612ced57506040513d601f19601f82011682018060405250810190612cea9190613738565b60015b612d70573d8060008114612d1d576040519150601f19603f3d011682016040523d82523d6000602084013e612d22565b606091505b50600081511415612d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5f90613de8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dc5565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e288461132d565b612e3291906142e7565b9050600060076000848152602001908152602001600020549050818114612f17576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612f9c91906142e7565b9050600060096000848152602001908152602001600020549050600060088381548110612fcc57612fcb61456a565b5b906000526020600020015490508060088381548110612fee57612fed61456a565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061303d5761303c61453b565b5b6001900381819060005260206000200160009055905550505050565b60006130648361132d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313f90613f88565b60405180910390fd5b6131518161215e565b15613191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318890613e68565b60405180910390fd5b61319d60008383612ac7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131ed9190614206565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546132c5906143d1565b90600052602060002090601f0160209004810192826132e7576000855561332e565b82601f1061330057805160ff191683800117855561332e565b8280016001018555821561332e579182015b8281111561332d578251825591602001919060010190613312565b5b50905061333b919061333f565b5090565b5b80821115613358576000816000905550600101613340565b5090565b600061336f61336a84614128565b614103565b90508281526020810184848401111561338b5761338a6145d7565b5b61339684828561438f565b509392505050565b60006133b16133ac84614159565b614103565b9050828152602081018484840111156133cd576133cc6145d7565b5b6133d884828561438f565b509392505050565b6000813590506133ef81614c35565b92915050565b60008083601f84011261340b5761340a6145cd565b5b8235905067ffffffffffffffff811115613428576134276145c8565b5b602083019150836020820283011115613444576134436145d2565b5b9250929050565b60008135905061345a81614c4c565b92915050565b60008135905061346f81614c63565b92915050565b60008151905061348481614c63565b92915050565b600082601f83011261349f5761349e6145cd565b5b81356134af84826020860161335c565b91505092915050565b600082601f8301126134cd576134cc6145cd565b5b81356134dd84826020860161339e565b91505092915050565b6000813590506134f581614c7a565b92915050565b600060208284031215613511576135106145e1565b5b600061351f848285016133e0565b91505092915050565b6000806040838503121561353f5761353e6145e1565b5b600061354d858286016133e0565b925050602061355e858286016133e0565b9150509250929050565b600080600060608486031215613581576135806145e1565b5b600061358f868287016133e0565b93505060206135a0868287016133e0565b92505060406135b1868287016134e6565b9150509250925092565b600080600080608085870312156135d5576135d46145e1565b5b60006135e3878288016133e0565b94505060206135f4878288016133e0565b9350506040613605878288016134e6565b925050606085013567ffffffffffffffff811115613626576136256145dc565b5b6136328782880161348a565b91505092959194509250565b60008060408385031215613655576136546145e1565b5b6000613663858286016133e0565b92505060206136748582860161344b565b9150509250929050565b60008060408385031215613695576136946145e1565b5b60006136a3858286016133e0565b92505060206136b4858286016134e6565b9150509250929050565b600080602083850312156136d5576136d46145e1565b5b600083013567ffffffffffffffff8111156136f3576136f26145dc565b5b6136ff858286016133f5565b92509250509250929050565b600060208284031215613721576137206145e1565b5b600061372f84828501613460565b91505092915050565b60006020828403121561374e5761374d6145e1565b5b600061375c84828501613475565b91505092915050565b60006020828403121561377b5761377a6145e1565b5b600082013567ffffffffffffffff811115613799576137986145dc565b5b6137a5848285016134b8565b91505092915050565b6000602082840312156137c4576137c36145e1565b5b60006137d2848285016134e6565b91505092915050565b60006137e78383613ca0565b60208301905092915050565b6137fc8161431b565b82525050565b600061380d8261419a565b61381781856141c8565b93506138228361418a565b8060005b8381101561385357815161383a88826137db565b9750613845836141bb565b925050600181019050613826565b5085935050505092915050565b6138698161432d565b82525050565b600061387a826141a5565b61388481856141d9565b935061389481856020860161439e565b61389d816145e6565b840191505092915050565b60006138b3826141b0565b6138bd81856141ea565b93506138cd81856020860161439e565b6138d6816145e6565b840191505092915050565b60006138ec826141b0565b6138f681856141fb565b935061390681856020860161439e565b80840191505092915050565b600061391f600b836141ea565b915061392a826145f7565b602082019050919050565b6000613942602b836141ea565b915061394d82614620565b604082019050919050565b60006139656032836141ea565b91506139708261466f565b604082019050919050565b6000613988600a836141ea565b9150613993826146be565b602082019050919050565b60006139ab6026836141ea565b91506139b6826146e7565b604082019050919050565b60006139ce6007836141ea565b91506139d982614736565b602082019050919050565b60006139f1601c836141ea565b91506139fc8261475f565b602082019050919050565b6000613a14600b836141ea565b9150613a1f82614788565b602082019050919050565b6000613a376008836141ea565b9150613a42826147b1565b602082019050919050565b6000613a5a6024836141ea565b9150613a65826147da565b604082019050919050565b6000613a7d6019836141ea565b9150613a8882614829565b602082019050919050565b6000613aa0602c836141ea565b9150613aab82614852565b604082019050919050565b6000613ac36038836141ea565b9150613ace826148a1565b604082019050919050565b6000613ae6602a836141ea565b9150613af1826148f0565b604082019050919050565b6000613b096029836141ea565b9150613b148261493f565b604082019050919050565b6000613b2c6020836141ea565b9150613b378261498e565b602082019050919050565b6000613b4f602c836141ea565b9150613b5a826149b7565b604082019050919050565b6000613b726009836141ea565b9150613b7d82614a06565b602082019050919050565b6000613b956020836141ea565b9150613ba082614a2f565b602082019050919050565b6000613bb86029836141ea565b9150613bc382614a58565b604082019050919050565b6000613bdb602f836141ea565b9150613be682614aa7565b604082019050919050565b6000613bfe6021836141ea565b9150613c0982614af6565b604082019050919050565b6000613c21600d836141ea565b9150613c2c82614b45565b602082019050919050565b6000613c446031836141ea565b9150613c4f82614b6e565b604082019050919050565b6000613c67602c836141ea565b9150613c7282614bbd565b604082019050919050565b6000613c8a6009836141ea565b9150613c9582614c0c565b602082019050919050565b613ca981614385565b82525050565b613cb881614385565b82525050565b6000613cca82856138e1565b9150613cd682846138e1565b91508190509392505050565b6000602082019050613cf760008301846137f3565b92915050565b6000608082019050613d1260008301876137f3565b613d1f60208301866137f3565b613d2c6040830185613caf565b8181036060830152613d3e818461386f565b905095945050505050565b60006020820190508181036000830152613d638184613802565b905092915050565b6000602082019050613d806000830184613860565b92915050565b60006020820190508181036000830152613da081846138a8565b905092915050565b60006020820190508181036000830152613dc181613912565b9050919050565b60006020820190508181036000830152613de181613935565b9050919050565b60006020820190508181036000830152613e0181613958565b9050919050565b60006020820190508181036000830152613e218161397b565b9050919050565b60006020820190508181036000830152613e418161399e565b9050919050565b60006020820190508181036000830152613e61816139c1565b9050919050565b60006020820190508181036000830152613e81816139e4565b9050919050565b60006020820190508181036000830152613ea181613a07565b9050919050565b60006020820190508181036000830152613ec181613a2a565b9050919050565b60006020820190508181036000830152613ee181613a4d565b9050919050565b60006020820190508181036000830152613f0181613a70565b9050919050565b60006020820190508181036000830152613f2181613a93565b9050919050565b60006020820190508181036000830152613f4181613ab6565b9050919050565b60006020820190508181036000830152613f6181613ad9565b9050919050565b60006020820190508181036000830152613f8181613afc565b9050919050565b60006020820190508181036000830152613fa181613b1f565b9050919050565b60006020820190508181036000830152613fc181613b42565b9050919050565b60006020820190508181036000830152613fe181613b65565b9050919050565b6000602082019050818103600083015261400181613b88565b9050919050565b6000602082019050818103600083015261402181613bab565b9050919050565b6000602082019050818103600083015261404181613bce565b9050919050565b6000602082019050818103600083015261406181613bf1565b9050919050565b6000602082019050818103600083015261408181613c14565b9050919050565b600060208201905081810360008301526140a181613c37565b9050919050565b600060208201905081810360008301526140c181613c5a565b9050919050565b600060208201905081810360008301526140e181613c7d565b9050919050565b60006020820190506140fd6000830184613caf565b92915050565b600061410d61411e565b90506141198282614403565b919050565b6000604051905090565b600067ffffffffffffffff82111561414357614142614599565b5b61414c826145e6565b9050602081019050919050565b600067ffffffffffffffff82111561417457614173614599565b5b61417d826145e6565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061421182614385565b915061421c83614385565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614251576142506144ae565b5b828201905092915050565b600061426782614385565b915061427283614385565b925082614282576142816144dd565b5b828204905092915050565b600061429882614385565b91506142a383614385565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142dc576142db6144ae565b5b828202905092915050565b60006142f282614385565b91506142fd83614385565b9250828210156143105761430f6144ae565b5b828203905092915050565b600061432682614365565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143bc5780820151818401526020810190506143a1565b838111156143cb576000848401525b50505050565b600060028204905060018216806143e957607f821691505b602082108114156143fd576143fc61450c565b5b50919050565b61440c826145e6565b810181811067ffffffffffffffff8211171561442b5761442a614599565b5b80604052505050565b600061443f82614385565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614472576144716144ae565b5b600182019050919050565b600061448882614385565b915061449383614385565b9250826144a3576144a26144dd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f204d61696e53616c65000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4e6f2050726573616c6500000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206c65667400000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f204e4654206c656674000000000000000000000000000000000000000000600082015250565b7f4c65737320455448000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e756c6c20616464720000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79206d696e7400000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420696e20574c0000000000000000000000000000000000000000000000600082015250565b614c3e8161431b565b8114614c4957600080fd5b50565b614c558161432d565b8114614c6057600080fd5b50565b614c6c81614339565b8114614c7757600080fd5b50565b614c8381614385565b8114614c8e57600080fd5b5056fea26469706673582212201d5b589b0ae4e0e50c568ead932c8aaab081f5d9514ac86d84bf86b9be50126164736f6c63430008070033
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636aaa571d11610118578063aef6ee1f116100a0578063ca8001441161006f578063ca80014414610754578063de5f98661461077d578063e985e9c5146107a8578063f2fde38b146107e5578063f759867a1461080e5761020f565b8063aef6ee1f1461069a578063b88d4fde146106c3578063bdc32be0146106ec578063c87b56dd146107175761020f565b806391b7f5ed116100e757806391b7f5ed146105b557806395d89b41146105de57806398d5fdca14610609578063a22cb46514610634578063a58e640a1461065d5761020f565b80636aaa571d1461050b57806370a0823114610536578063715018a6146105735780638da5cb5b1461058a5761020f565b80633ccfd60b1161019b5780634f6ccce71161016a5780634f6ccce71461043a57806354f63ee51461047757806355f804b31461048e5780635e55b5c6146104b75780636352211e146104ce5761020f565b80633ccfd60b146103a157806342842e0e146103b8578063438b6300146103e15780634a759ecc1461041e5761020f565b80630869f72d116101e25780630869f72d146102d0578063095ea7b3146102e757806318160ddd1461031057806323b872dd1461033b5780632f745c59146103645761020f565b806301ffc9a71461021457806306fdde0314610251578063070f5c091461027c578063081812fc14610293575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061370b565b61082a565b6040516102489190613d6b565b60405180910390f35b34801561025d57600080fd5b506102666108a4565b6040516102739190613d86565b60405180910390f35b34801561028857600080fd5b50610291610936565b005b34801561029f57600080fd5b506102ba60048036038101906102b591906137ae565b6109cf565b6040516102c79190613ce2565b60405180910390f35b3480156102dc57600080fd5b506102e5610a54565b005b3480156102f357600080fd5b5061030e6004803603810190610309919061367e565b610aed565b005b34801561031c57600080fd5b50610325610c05565b60405161033291906140e8565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190613568565b610c12565b005b34801561037057600080fd5b5061038b6004803603810190610386919061367e565b610c72565b60405161039891906140e8565b60405180910390f35b3480156103ad57600080fd5b506103b6610d17565b005b3480156103c457600080fd5b506103df60048036038101906103da9190613568565b610dd3565b005b3480156103ed57600080fd5b50610408600480360381019061040391906134fb565b610df3565b6040516104159190613d49565b60405180910390f35b610438600480360381019061043391906137ae565b610ea1565b005b34801561044657600080fd5b50610461600480360381019061045c91906137ae565b61103c565b60405161046e91906140e8565b60405180910390f35b34801561048357600080fd5b5061048c6110ad565b005b34801561049a57600080fd5b506104b560048036038101906104b09190613765565b611146565b005b3480156104c357600080fd5b506104cc6111dc565b005b3480156104da57600080fd5b506104f560048036038101906104f091906137ae565b611275565b6040516105029190613ce2565b60405180910390f35b34801561051757600080fd5b50610520611327565b60405161052d91906140e8565b60405180910390f35b34801561054257600080fd5b5061055d600480360381019061055891906134fb565b61132d565b60405161056a91906140e8565b60405180910390f35b34801561057f57600080fd5b506105886113e5565b005b34801561059657600080fd5b5061059f61146d565b6040516105ac9190613ce2565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d791906137ae565b611497565b005b3480156105ea57600080fd5b506105f361151d565b6040516106009190613d86565b60405180910390f35b34801561061557600080fd5b5061061e6115af565b60405161062b91906140e8565b60405180910390f35b34801561064057600080fd5b5061065b6004803603810190610656919061363e565b6115b9565b005b34801561066957600080fd5b50610684600480360381019061067f91906134fb565b6115cf565b6040516106919190613d6b565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc91906136be565b611625565b005b3480156106cf57600080fd5b506106ea60048036038101906106e591906135bb565b6118bb565b005b3480156106f857600080fd5b5061070161191d565b60405161070e9190613d86565b60405180910390f35b34801561072357600080fd5b5061073e600480360381019061073991906137ae565b611a2b565b60405161074b9190613d86565b60405180910390f35b34801561076057600080fd5b5061077b6004803603810190610776919061367e565b611ad2565b005b34801561078957600080fd5b50610792611bfd565b60405161079f91906140e8565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613528565b611c2b565b6040516107dc9190613d6b565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906134fb565b611cbf565b005b610828600480360381019061082391906137ae565b611db7565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089d575061089c82612074565b5b9050919050565b6060600080546108b3906143d1565b80601f01602080910402602001604051908101604052809291908181526020018280546108df906143d1565b801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b61093e612156565b73ffffffffffffffffffffffffffffffffffffffff1661095c61146d565b73ffffffffffffffffffffffffffffffffffffffff16146109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990613fe8565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550565b60006109da8261215e565b610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090613fa8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a5c612156565b73ffffffffffffffffffffffffffffffffffffffff16610a7a61146d565b73ffffffffffffffffffffffffffffffffffffffff1614610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac790613fe8565b60405180910390fd5b6000600f60016101000a81548160ff021916908315150217905550565b6000610af882611275565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090614048565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b88612156565b73ffffffffffffffffffffffffffffffffffffffff161480610bb75750610bb681610bb1612156565b611c2b565b5b610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90613f28565b60405180910390fd5b610c0083836121ca565b505050565b6000600880549050905090565b610c23610c1d612156565b82612283565b610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990614088565b60405180910390fd5b610c6d838383612361565b505050565b6000610c7d8361132d565b8210610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590613dc8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d1f612156565b73ffffffffffffffffffffffffffffffffffffffff16610d3d61146d565b73ffffffffffffffffffffffffffffffffffffffff1614610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90613fe8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610dd157600080fd5b565b610dee838383604051806020016040528060008152506118bb565b505050565b60606000610e008361132d565b905060008167ffffffffffffffff811115610e1e57610e1d614599565b5b604051908082528060200260200182016040528015610e4c5781602001602082028036833780820191505090505b50905060005b82811015610e9657610e648582610c72565b828281518110610e7757610e7661456a565b5b6020026020010181815250508080610e8e90614434565b915050610e52565b508092505050919050565b6000610eab610c05565b9050600f60019054906101000a900460ff16610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390613da8565b60405180910390fd5b600082118015610f0c5750600b82105b610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290614068565b60405180910390fd5b600c548282600e54610f5d9190614206565b610f679190614206565b1115610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90613e88565b60405180910390fd5b81600d54610fb6919061428d565b341015610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef90613ea8565b60405180910390fd5b60005b828110156110375761102433600183856110159190614206565b61101f9190614206565b6125bd565b808061102f90614434565b915050610ffb565b505050565b6000611046610c05565b8210611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e906140a8565b60405180910390fd5b6008828154811061109b5761109a61456a565b5b90600052602060002001549050919050565b6110b5612156565b73ffffffffffffffffffffffffffffffffffffffff166110d361146d565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090613fe8565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b61114e612156565b73ffffffffffffffffffffffffffffffffffffffff1661116c61146d565b73ffffffffffffffffffffffffffffffffffffffff16146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990613fe8565b60405180910390fd5b80600b90805190602001906111d89291906132b9565b5050565b6111e4612156565b73ffffffffffffffffffffffffffffffffffffffff1661120261146d565b73ffffffffffffffffffffffffffffffffffffffff1614611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f90613fe8565b60405180910390fd5b6001600f60016101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590613f68565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590613f48565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113ed612156565b73ffffffffffffffffffffffffffffffffffffffff1661140b61146d565b73ffffffffffffffffffffffffffffffffffffffff1614611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890613fe8565b60405180910390fd5b61146b60006125db565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61149f612156565b73ffffffffffffffffffffffffffffffffffffffff166114bd61146d565b73ffffffffffffffffffffffffffffffffffffffff1614611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90613fe8565b60405180910390fd5b80600d8190555050565b60606001805461152c906143d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611558906143d1565b80156115a55780601f1061157a576101008083540402835291602001916115a5565b820191906000526020600020905b81548152906001019060200180831161158857829003601f168201915b5050505050905090565b6000600d54905090565b6115cb6115c4612156565b83836126a1565b5050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61162d612156565b73ffffffffffffffffffffffffffffffffffffffff1661164b61146d565b73ffffffffffffffffffffffffffffffffffffffff16146116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613fe8565b60405180910390fd5b60005b828290508110156118b657600073ffffffffffffffffffffffffffffffffffffffff168383838181106116da576116d961456a565b5b90506020020160208101906116ef91906134fb565b73ffffffffffffffffffffffffffffffffffffffff161415611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90613fc8565b60405180910390fd5b60016010600085858581811061175f5761175e61456a565b5b905060200201602081019061177491906134fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601160008585858181106117de576117dd61456a565b5b90506020020160208101906117f391906134fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161183a5760006118a2565b601160008484848181106118515761185061456a565b5b905060200201602081019061186691906134fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b5080806118ae90614434565b9150506116a4565b505050565b6118cc6118c6612156565b83612283565b61190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190290614088565b60405180910390fd5b6119178484848461280e565b50505050565b6060611927612156565b73ffffffffffffffffffffffffffffffffffffffff1661194561146d565b73ffffffffffffffffffffffffffffffffffffffff161461199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290613fe8565b60405180910390fd5b600b80546119a8906143d1565b80601f01602080910402602001604051908101604052809291908181526020018280546119d4906143d1565b8015611a215780601f106119f657610100808354040283529160200191611a21565b820191906000526020600020905b815481529060010190602001808311611a0457829003601f168201915b5050505050905090565b6060611a368261215e565b611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c90614028565b60405180910390fd5b6000611a7f61286a565b90506000815111611a9f5760405180602001604052806000815250611aca565b80611aa9846128fc565b604051602001611aba929190613cbe565b6040516020818303038152906040525b915050919050565b611ada612156565b73ffffffffffffffffffffffffffffffffffffffff16611af861146d565b73ffffffffffffffffffffffffffffffffffffffff1614611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4590613fe8565b60405180910390fd5b6000611b58610c05565b9050600e54821115611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9690613e48565b60405180910390fd5b81600e6000828254611bb191906142e7565b9250508190555060005b82811015611bf757611be48460018385611bd59190614206565b611bdf9190614206565b6125bd565b8080611bef90614434565b915050611bbb565b50505050565b600080611c08610c05565b9050600e5481600c54611c1b91906142e7565b611c2591906142e7565b91505090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cc7612156565b73ffffffffffffffffffffffffffffffffffffffff16611ce561146d565b73ffffffffffffffffffffffffffffffffffffffff1614611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290613fe8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da290613e28565b60405180910390fd5b611db4816125db565b50565b6000611dc1610c05565b9050600f60009054906101000a900460ff16611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0990613e08565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e95906140c8565b60405180910390fd5b600782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eeb9190614206565b1115611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390614068565b60405180910390fd5b600c548282600e54611f3e9190614206565b611f489190614206565b1115611f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8090613e88565b60405180910390fd5b81600d54611f97919061428d565b341015611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090613ea8565b60405180910390fd5b60005b8281101561206f576001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120349190614206565b9250508190555061205c336001838561204d9190614206565b6120579190614206565b6125bd565b808061206790614434565b915050611fdc565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061213f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061214f575061214e82612a5d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661223d83611275565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061228e8261215e565b6122cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c490613f08565b60405180910390fd5b60006122d883611275565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061234757508373ffffffffffffffffffffffffffffffffffffffff1661232f846109cf565b73ffffffffffffffffffffffffffffffffffffffff16145b8061235857506123578185611c2b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661238182611275565b73ffffffffffffffffffffffffffffffffffffffff16146123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce90614008565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243e90613ec8565b60405180910390fd5b612452838383612ac7565b61245d6000826121ca565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ad91906142e7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125049190614206565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125d7828260405180602001604052806000815250612bdb565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270790613ee8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128019190613d6b565b60405180910390a3505050565b612819848484612361565b61282584848484612c36565b612864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285b90613de8565b60405180910390fd5b50505050565b6060600b8054612879906143d1565b80601f01602080910402602001604051908101604052809291908181526020018280546128a5906143d1565b80156128f25780601f106128c7576101008083540402835291602001916128f2565b820191906000526020600020905b8154815290600101906020018083116128d557829003601f168201915b5050505050905090565b60606000821415612944576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a58565b600082905060005b6000821461297657808061295f90614434565b915050600a8261296f919061425c565b915061294c565b60008167ffffffffffffffff81111561299257612991614599565b5b6040519080825280601f01601f1916602001820160405280156129c45781602001600182028036833780820191505090505b5090505b60008514612a51576001826129dd91906142e7565b9150600a856129ec919061447d565b60306129f89190614206565b60f81b818381518110612a0e57612a0d61456a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a4a919061425c565b94506129c8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ad2838383612dcd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b1557612b1081612dd2565b612b54565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b5357612b528382612e1b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b9757612b9281612f88565b612bd6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bd557612bd48282613059565b5b5b505050565b612be583836130d8565b612bf26000848484612c36565b612c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2890613de8565b60405180910390fd5b505050565b6000612c578473ffffffffffffffffffffffffffffffffffffffff166132a6565b15612dc0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c80612156565b8786866040518563ffffffff1660e01b8152600401612ca29493929190613cfd565b602060405180830381600087803b158015612cbc57600080fd5b505af1925050508015612ced57506040513d601f19601f82011682018060405250810190612cea9190613738565b60015b612d70573d8060008114612d1d576040519150601f19603f3d011682016040523d82523d6000602084013e612d22565b606091505b50600081511415612d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5f90613de8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dc5565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e288461132d565b612e3291906142e7565b9050600060076000848152602001908152602001600020549050818114612f17576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612f9c91906142e7565b9050600060096000848152602001908152602001600020549050600060088381548110612fcc57612fcb61456a565b5b906000526020600020015490508060088381548110612fee57612fed61456a565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061303d5761303c61453b565b5b6001900381819060005260206000200160009055905550505050565b60006130648361132d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313f90613f88565b60405180910390fd5b6131518161215e565b15613191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318890613e68565b60405180910390fd5b61319d60008383612ac7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131ed9190614206565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546132c5906143d1565b90600052602060002090601f0160209004810192826132e7576000855561332e565b82601f1061330057805160ff191683800117855561332e565b8280016001018555821561332e579182015b8281111561332d578251825591602001919060010190613312565b5b50905061333b919061333f565b5090565b5b80821115613358576000816000905550600101613340565b5090565b600061336f61336a84614128565b614103565b90508281526020810184848401111561338b5761338a6145d7565b5b61339684828561438f565b509392505050565b60006133b16133ac84614159565b614103565b9050828152602081018484840111156133cd576133cc6145d7565b5b6133d884828561438f565b509392505050565b6000813590506133ef81614c35565b92915050565b60008083601f84011261340b5761340a6145cd565b5b8235905067ffffffffffffffff811115613428576134276145c8565b5b602083019150836020820283011115613444576134436145d2565b5b9250929050565b60008135905061345a81614c4c565b92915050565b60008135905061346f81614c63565b92915050565b60008151905061348481614c63565b92915050565b600082601f83011261349f5761349e6145cd565b5b81356134af84826020860161335c565b91505092915050565b600082601f8301126134cd576134cc6145cd565b5b81356134dd84826020860161339e565b91505092915050565b6000813590506134f581614c7a565b92915050565b600060208284031215613511576135106145e1565b5b600061351f848285016133e0565b91505092915050565b6000806040838503121561353f5761353e6145e1565b5b600061354d858286016133e0565b925050602061355e858286016133e0565b9150509250929050565b600080600060608486031215613581576135806145e1565b5b600061358f868287016133e0565b93505060206135a0868287016133e0565b92505060406135b1868287016134e6565b9150509250925092565b600080600080608085870312156135d5576135d46145e1565b5b60006135e3878288016133e0565b94505060206135f4878288016133e0565b9350506040613605878288016134e6565b925050606085013567ffffffffffffffff811115613626576136256145dc565b5b6136328782880161348a565b91505092959194509250565b60008060408385031215613655576136546145e1565b5b6000613663858286016133e0565b92505060206136748582860161344b565b9150509250929050565b60008060408385031215613695576136946145e1565b5b60006136a3858286016133e0565b92505060206136b4858286016134e6565b9150509250929050565b600080602083850312156136d5576136d46145e1565b5b600083013567ffffffffffffffff8111156136f3576136f26145dc565b5b6136ff858286016133f5565b92509250509250929050565b600060208284031215613721576137206145e1565b5b600061372f84828501613460565b91505092915050565b60006020828403121561374e5761374d6145e1565b5b600061375c84828501613475565b91505092915050565b60006020828403121561377b5761377a6145e1565b5b600082013567ffffffffffffffff811115613799576137986145dc565b5b6137a5848285016134b8565b91505092915050565b6000602082840312156137c4576137c36145e1565b5b60006137d2848285016134e6565b91505092915050565b60006137e78383613ca0565b60208301905092915050565b6137fc8161431b565b82525050565b600061380d8261419a565b61381781856141c8565b93506138228361418a565b8060005b8381101561385357815161383a88826137db565b9750613845836141bb565b925050600181019050613826565b5085935050505092915050565b6138698161432d565b82525050565b600061387a826141a5565b61388481856141d9565b935061389481856020860161439e565b61389d816145e6565b840191505092915050565b60006138b3826141b0565b6138bd81856141ea565b93506138cd81856020860161439e565b6138d6816145e6565b840191505092915050565b60006138ec826141b0565b6138f681856141fb565b935061390681856020860161439e565b80840191505092915050565b600061391f600b836141ea565b915061392a826145f7565b602082019050919050565b6000613942602b836141ea565b915061394d82614620565b604082019050919050565b60006139656032836141ea565b91506139708261466f565b604082019050919050565b6000613988600a836141ea565b9150613993826146be565b602082019050919050565b60006139ab6026836141ea565b91506139b6826146e7565b604082019050919050565b60006139ce6007836141ea565b91506139d982614736565b602082019050919050565b60006139f1601c836141ea565b91506139fc8261475f565b602082019050919050565b6000613a14600b836141ea565b9150613a1f82614788565b602082019050919050565b6000613a376008836141ea565b9150613a42826147b1565b602082019050919050565b6000613a5a6024836141ea565b9150613a65826147da565b604082019050919050565b6000613a7d6019836141ea565b9150613a8882614829565b602082019050919050565b6000613aa0602c836141ea565b9150613aab82614852565b604082019050919050565b6000613ac36038836141ea565b9150613ace826148a1565b604082019050919050565b6000613ae6602a836141ea565b9150613af1826148f0565b604082019050919050565b6000613b096029836141ea565b9150613b148261493f565b604082019050919050565b6000613b2c6020836141ea565b9150613b378261498e565b602082019050919050565b6000613b4f602c836141ea565b9150613b5a826149b7565b604082019050919050565b6000613b726009836141ea565b9150613b7d82614a06565b602082019050919050565b6000613b956020836141ea565b9150613ba082614a2f565b602082019050919050565b6000613bb86029836141ea565b9150613bc382614a58565b604082019050919050565b6000613bdb602f836141ea565b9150613be682614aa7565b604082019050919050565b6000613bfe6021836141ea565b9150613c0982614af6565b604082019050919050565b6000613c21600d836141ea565b9150613c2c82614b45565b602082019050919050565b6000613c446031836141ea565b9150613c4f82614b6e565b604082019050919050565b6000613c67602c836141ea565b9150613c7282614bbd565b604082019050919050565b6000613c8a6009836141ea565b9150613c9582614c0c565b602082019050919050565b613ca981614385565b82525050565b613cb881614385565b82525050565b6000613cca82856138e1565b9150613cd682846138e1565b91508190509392505050565b6000602082019050613cf760008301846137f3565b92915050565b6000608082019050613d1260008301876137f3565b613d1f60208301866137f3565b613d2c6040830185613caf565b8181036060830152613d3e818461386f565b905095945050505050565b60006020820190508181036000830152613d638184613802565b905092915050565b6000602082019050613d806000830184613860565b92915050565b60006020820190508181036000830152613da081846138a8565b905092915050565b60006020820190508181036000830152613dc181613912565b9050919050565b60006020820190508181036000830152613de181613935565b9050919050565b60006020820190508181036000830152613e0181613958565b9050919050565b60006020820190508181036000830152613e218161397b565b9050919050565b60006020820190508181036000830152613e418161399e565b9050919050565b60006020820190508181036000830152613e61816139c1565b9050919050565b60006020820190508181036000830152613e81816139e4565b9050919050565b60006020820190508181036000830152613ea181613a07565b9050919050565b60006020820190508181036000830152613ec181613a2a565b9050919050565b60006020820190508181036000830152613ee181613a4d565b9050919050565b60006020820190508181036000830152613f0181613a70565b9050919050565b60006020820190508181036000830152613f2181613a93565b9050919050565b60006020820190508181036000830152613f4181613ab6565b9050919050565b60006020820190508181036000830152613f6181613ad9565b9050919050565b60006020820190508181036000830152613f8181613afc565b9050919050565b60006020820190508181036000830152613fa181613b1f565b9050919050565b60006020820190508181036000830152613fc181613b42565b9050919050565b60006020820190508181036000830152613fe181613b65565b9050919050565b6000602082019050818103600083015261400181613b88565b9050919050565b6000602082019050818103600083015261402181613bab565b9050919050565b6000602082019050818103600083015261404181613bce565b9050919050565b6000602082019050818103600083015261406181613bf1565b9050919050565b6000602082019050818103600083015261408181613c14565b9050919050565b600060208201905081810360008301526140a181613c37565b9050919050565b600060208201905081810360008301526140c181613c5a565b9050919050565b600060208201905081810360008301526140e181613c7d565b9050919050565b60006020820190506140fd6000830184613caf565b92915050565b600061410d61411e565b90506141198282614403565b919050565b6000604051905090565b600067ffffffffffffffff82111561414357614142614599565b5b61414c826145e6565b9050602081019050919050565b600067ffffffffffffffff82111561417457614173614599565b5b61417d826145e6565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061421182614385565b915061421c83614385565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614251576142506144ae565b5b828201905092915050565b600061426782614385565b915061427283614385565b925082614282576142816144dd565b5b828204905092915050565b600061429882614385565b91506142a383614385565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142dc576142db6144ae565b5b828202905092915050565b60006142f282614385565b91506142fd83614385565b9250828210156143105761430f6144ae565b5b828203905092915050565b600061432682614365565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143bc5780820151818401526020810190506143a1565b838111156143cb576000848401525b50505050565b600060028204905060018216806143e957607f821691505b602082108114156143fd576143fc61450c565b5b50919050565b61440c826145e6565b810181811067ffffffffffffffff8211171561442b5761442a614599565b5b80604052505050565b600061443f82614385565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614472576144716144ae565b5b600182019050919050565b600061448882614385565b915061449383614385565b9250826144a3576144a26144dd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f204d61696e53616c65000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4e6f2050726573616c6500000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206c65667400000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f204e4654206c656674000000000000000000000000000000000000000000600082015250565b7f4c65737320455448000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e756c6c20616464720000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79206d696e7400000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420696e20574c0000000000000000000000000000000000000000000000600082015250565b614c3e8161431b565b8114614c4957600080fd5b50565b614c558161432d565b8114614c6057600080fd5b50565b614c6c81614339565b8114614c7757600080fd5b50565b614c8381614385565b8114614c8e57600080fd5b5056fea26469706673582212201d5b589b0ae4e0e50c568ead932c8aaab081f5d9514ac86d84bf86b9be50126164736f6c63430008070033
Deployed Bytecode Sourcemap
47797:3848:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38266:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25760:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50416:84;;;;;;;;;;;;;:::i;:::-;;27319:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50508:86;;;;;;;;;;;;;:::i;:::-;;26842:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38906:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28069:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38574:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51528:114;;;;;;;;;;;;;:::i;:::-;;28479:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49662:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49200:454;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39096:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50230:84;;;;;;;;;;;;;:::i;:::-;;50724:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50322:86;;;;;;;;;;;;;:::i;:::-;;25454:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47975:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25184:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50018:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25929:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50836:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27612:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50119:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48272:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28735:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50928:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26104:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51213:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51050:155;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27838:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48619:573;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38266:224;38368:4;38407:35;38392:50;;;:11;:50;;;;:90;;;;38446:36;38470:11;38446:23;:36::i;:::-;38392:90;38385:97;;38266:224;;;:::o;25760:100::-;25814:13;25847:5;25840:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25760:100;:::o;50416:84::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50487:5:::1;50470:14;;:22;;;;;;;;;;;;;;;;;;50416:84::o:0;27319:221::-;27395:7;27423:16;27431:7;27423;:16::i;:::-;27415:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27508:15;:24;27524:7;27508:24;;;;;;;;;;;;;;;;;;;;;27501:31;;27319:221;;;:::o;50508:86::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50581:5:::1;50563:15;;:23;;;;;;;;;;;;;;;;;;50508:86::o:0;26842:411::-;26923:13;26939:23;26954:7;26939:14;:23::i;:::-;26923:39;;26987:5;26981:11;;:2;:11;;;;26973:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27081:5;27065:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27090:37;27107:5;27114:12;:10;:12::i;:::-;27090:16;:37::i;:::-;27065:62;27043:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27224:21;27233:2;27237:7;27224:8;:21::i;:::-;26912:341;26842:411;;:::o;38906:113::-;38967:7;38994:10;:17;;;;38987:24;;38906:113;:::o;28069:339::-;28264:41;28283:12;:10;:12::i;:::-;28297:7;28264:18;:41::i;:::-;28256:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28372:28;28382:4;28388:2;28392:7;28372:9;:28::i;:::-;28069:339;;;:::o;38574:256::-;38671:7;38707:23;38724:5;38707:16;:23::i;:::-;38699:5;:31;38691:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38796:12;:19;38809:5;38796:19;;;;;;;;;;;;;;;:26;38816:5;38796:26;;;;;;;;;;;;38789:33;;38574:256;;;;:::o;51528:114::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51594:10:::1;51586:24;;:47;51611:21;51586:47;;;;;;;;;;;;;;;;;;;;;;;51578:56;;;::::0;::::1;;51528:114::o:0;28479:185::-;28617:39;28634:4;28640:2;28644:7;28617:39;;;;;;;;;;;;:16;:39::i;:::-;28479:185;;;:::o;49662:348::-;49723:16;49752:18;49773:17;49783:6;49773:9;:17::i;:::-;49752:38;;49803:25;49845:10;49831:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49803:53;;49871:9;49867:110;49890:10;49886:1;:14;49867:110;;;49935:30;49955:6;49963:1;49935:19;:30::i;:::-;49921:8;49930:1;49921:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;49902:3;;;;;:::i;:::-;;;;49867:110;;;;49994:8;49987:15;;;;49662:348;;;:::o;49200:454::-;49263:14;49280:13;:11;:13::i;:::-;49263:30;;49313:15;;;;;;;;;;;49304:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;49371:1;49365:3;:7;:19;;;;;49382:2;49376:3;:8;49365:19;49356:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;49451:10;;49444:3;49435:6;49423:9;;:18;;;;:::i;:::-;:24;;;;:::i;:::-;:38;;49414:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49520:3;49511:6;;:12;;;;:::i;:::-;49498:9;:25;;49489:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;49554:9;49550:97;49573:3;49569:1;:7;49550:97;;;49597:38;49608:10;49633:1;49629;49620:6;:10;;;;:::i;:::-;:14;;;;:::i;:::-;49597:9;:38::i;:::-;49578:3;;;;;:::i;:::-;;;;49550:97;;;;49252:402;49200:454;:::o;39096:233::-;39171:7;39207:30;:28;:30::i;:::-;39199:5;:38;39191:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;39304:10;39315:5;39304:17;;;;;;;;:::i;:::-;;;;;;;;;;39297:24;;39096:233;;;:::o;50230:84::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50302:4:::1;50285:14;;:21;;;;;;;;;;;;;;;;;;50230:84::o:0;50724:104::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50816:3:::1;50793:13;:27;;;;;;;;;;;;:::i;:::-;;50724:104:::0;:::o;50322:86::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50396:4:::1;50378:15;;:22;;;;;;;;;;;;;;;;;;50322:86::o:0;25454:239::-;25526:7;25546:13;25562:7;:16;25570:7;25562:16;;;;;;;;;;;;;;;;;;;;;25546:32;;25614:1;25597:19;;:5;:19;;;;25589:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25680:5;25673:12;;;25454:239;;;:::o;47975:30::-;;;;:::o;25184:208::-;25256:7;25301:1;25284:19;;:5;:19;;;;25276:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25368:9;:16;25378:5;25368:16;;;;;;;;;;;;;;;;25361:23;;25184:208;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;50018:93::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50094:9:::1;50085:6;:18;;;;50018:93:::0;:::o;25929:104::-;25985:13;26018:7;26011:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25929:104;:::o;50836:84::-;50879:7;50906:6;;50899:13;;50836:84;:::o;27612:155::-;27707:52;27726:12;:10;:12::i;:::-;27740:8;27750;27707:18;:52::i;:::-;27612:155;;:::o;50119:103::-;50174:4;50198:10;:16;50209:4;50198:16;;;;;;;;;;;;;;;;;;;;;;;;;50191:23;;50119:103;;;:::o;48272:339::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48359:9:::1;48354:250;48378:9;;:16;;48374:1;:20;48354:250;;;48448:1;48424:26;;:9;;48434:1;48424:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;;;48416:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;48508:4;48481:10;:24;48492:9;;48502:1;48492:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;48481:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;48557:1;48527:13;:27;48541:9;;48551:1;48541:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;48527:27;;;;;;;;;;;;;;;;:31;:65;;48591:1;48527:65;;;48561:13;:27;48575:9;;48585:1;48575:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;48561:27;;;;;;;;;;;;;;;;48527:65;;48396:3;;;;;:::i;:::-;;;;48354:250;;;;48272:339:::0;;:::o;28735:328::-;28910:41;28929:12;:10;:12::i;:::-;28943:7;28910:18;:41::i;:::-;28902:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29016:39;29030:4;29036:2;29040:7;29049:5;29016:13;:39::i;:::-;28735:328;;;;:::o;50928:114::-;50988:13;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51021:13:::1;51014:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50928:114:::0;:::o;26104:334::-;26177:13;26211:16;26219:7;26211;:16::i;:::-;26203:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26292:21;26316:10;:8;:10::i;:::-;26292:34;;26368:1;26350:7;26344:21;:25;:86;;;;;;;;;;;;;;;;;26396:7;26405:18;:7;:16;:18::i;:::-;26379:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26344:86;26337:93;;;26104:334;;;:::o;51213:307::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51291:14:::1;51308:13;:11;:13::i;:::-;51291:30;;51352:9;;51340:8;:21;;51332:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;51400:8;51387:9;;:21;;;;;;;:::i;:::-;;;;;;;;51423:9;51419:94;51442:8;51438:1;:12;51419:94;;;51471:30;51482:2;51499:1;51495;51486:6;:10;;;;:::i;:::-;:14;;;;:::i;:::-;51471:9;:30::i;:::-;51452:3;;;;;:::i;:::-;;;;51419:94;;;;51280:240;51213:307:::0;;:::o;51050:155::-;51098:7;51118:14;51135:13;:11;:13::i;:::-;51118:30;;51188:9;;51179:6;51166:10;;:19;;;;:::i;:::-;:31;;;;:::i;:::-;51159:38;;;51050:155;:::o;27838:164::-;27935:4;27959:18;:25;27978:5;27959:25;;;;;;;;;;;;;;;:35;27985:8;27959:35;;;;;;;;;;;;;;;;;;;;;;;;;27952:42;;27838:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;48619:573::-;48681:14;48698:13;:11;:13::i;:::-;48681:30;;48731:14;;;;;;;;;;;48722:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;48780:10;:22;48791:10;48780:22;;;;;;;;;;;;;;;;;;;;;;;;;48771:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;48871:1;48864:3;48836:13;:25;48850:10;48836:25;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:36;;48827:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48938:10;;48931:3;48922:6;48910:9;;:18;;;;:::i;:::-;:24;;;;:::i;:::-;:38;;48901:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49006:3;48997:6;;:12;;;;:::i;:::-;48984:9;:25;;48975:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;49041:9;49036:149;49060:3;49056:1;:7;49036:149;;;49116:1;49087:13;:25;49101:10;49087:25;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;49135:38;49146:10;49171:1;49167;49158:6;:10;;;;:::i;:::-;:14;;;;:::i;:::-;49135:9;:38::i;:::-;49065:3;;;;;:::i;:::-;;;;49036:149;;;;48670:522;48619:573;:::o;24815:305::-;24917:4;24969:25;24954:40;;;:11;:40;;;;:105;;;;25026:33;25011:48;;;:11;:48;;;;24954:105;:158;;;;25076:36;25100:11;25076:23;:36::i;:::-;24954:158;24934:178;;24815:305;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;30573:127::-;30638:4;30690:1;30662:30;;:7;:16;30670:7;30662:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30655:37;;30573:127;;;:::o;34555:174::-;34657:2;34630:15;:24;34646:7;34630:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34713:7;34709:2;34675:46;;34684:23;34699:7;34684:14;:23::i;:::-;34675:46;;;;;;;;;;;;34555:174;;:::o;30867:348::-;30960:4;30985:16;30993:7;30985;:16::i;:::-;30977:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31061:13;31077:23;31092:7;31077:14;:23::i;:::-;31061:39;;31130:5;31119:16;;:7;:16;;;:51;;;;31163:7;31139:31;;:20;31151:7;31139:11;:20::i;:::-;:31;;;31119:51;:87;;;;31174:32;31191:5;31198:7;31174:16;:32::i;:::-;31119:87;31111:96;;;30867:348;;;;:::o;33859:578::-;34018:4;33991:31;;:23;34006:7;33991:14;:23::i;:::-;:31;;;33983:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34101:1;34087:16;;:2;:16;;;;34079:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34157:39;34178:4;34184:2;34188:7;34157:20;:39::i;:::-;34261:29;34278:1;34282:7;34261:8;:29::i;:::-;34322:1;34303:9;:15;34313:4;34303:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34351:1;34334:9;:13;34344:2;34334:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34382:2;34363:7;:16;34371:7;34363:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34421:7;34417:2;34402:27;;34411:4;34402:27;;;;;;;;;;;;33859:578;;;:::o;31557:110::-;31633:26;31643:2;31647:7;31633:26;;;;;;;;;;;;:9;:26::i;:::-;31557:110;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;34871:315::-;35026:8;35017:17;;:5;:17;;;;35009:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35113:8;35075:18;:25;35094:5;35075:25;;;;;;;;;;;;;;;:35;35101:8;35075:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35159:8;35137:41;;35152:5;35137:41;;;35169:8;35137:41;;;;;;:::i;:::-;;;;;;;;34871:315;;;:::o;29945:::-;30102:28;30112:4;30118:2;30122:7;30102:9;:28::i;:::-;30149:48;30172:4;30178:2;30182:7;30191:5;30149:22;:48::i;:::-;30141:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29945:315;;;;:::o;50602:114::-;50662:13;50695;50688:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50602:114;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;16511:157::-;16596:4;16635:25;16620:40;;;:11;:40;;;;16613:47;;16511:157;;;:::o;39942:589::-;40086:45;40113:4;40119:2;40123:7;40086:26;:45::i;:::-;40164:1;40148:18;;:4;:18;;;40144:187;;;40183:40;40215:7;40183:31;:40::i;:::-;40144:187;;;40253:2;40245:10;;:4;:10;;;40241:90;;40272:47;40305:4;40311:7;40272:32;:47::i;:::-;40241:90;40144:187;40359:1;40345:16;;:2;:16;;;40341:183;;;40378:45;40415:7;40378:36;:45::i;:::-;40341:183;;;40451:4;40445:10;;:2;:10;;;40441:83;;40472:40;40500:2;40504:7;40472:27;:40::i;:::-;40441:83;40341:183;39942:589;;;:::o;31894:321::-;32024:18;32030:2;32034:7;32024:5;:18::i;:::-;32075:54;32106:1;32110:2;32114:7;32123:5;32075:22;:54::i;:::-;32053:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31894:321;;;:::o;35751:799::-;35906:4;35927:15;:2;:13;;;:15::i;:::-;35923:620;;;35979:2;35963:36;;;36000:12;:10;:12::i;:::-;36014:4;36020:7;36029:5;35963:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35959:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36222:1;36205:6;:13;:18;36201:272;;;36248:60;;;;;;;;;;:::i;:::-;;;;;;;;36201:272;36423:6;36417:13;36408:6;36404:2;36400:15;36393:38;35959:529;36096:41;;;36086:51;;;:6;:51;;;;36079:58;;;;;35923:620;36527:4;36520:11;;35751:799;;;;;;;:::o;37122:126::-;;;;:::o;41254:164::-;41358:10;:17;;;;41331:15;:24;41347:7;41331:24;;;;;;;;;;;:44;;;;41386:10;41402:7;41386:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41254:164;:::o;42045:988::-;42311:22;42361:1;42336:22;42353:4;42336:16;:22::i;:::-;:26;;;;:::i;:::-;42311:51;;42373:18;42394:17;:26;42412:7;42394:26;;;;;;;;;;;;42373:47;;42541:14;42527:10;:28;42523:328;;42572:19;42594:12;:18;42607:4;42594:18;;;;;;;;;;;;;;;:34;42613:14;42594:34;;;;;;;;;;;;42572:56;;42678:11;42645:12;:18;42658:4;42645:18;;;;;;;;;;;;;;;:30;42664:10;42645:30;;;;;;;;;;;:44;;;;42795:10;42762:17;:30;42780:11;42762:30;;;;;;;;;;;:43;;;;42557:294;42523:328;42947:17;:26;42965:7;42947:26;;;;;;;;;;;42940:33;;;42991:12;:18;43004:4;42991:18;;;;;;;;;;;;;;;:34;43010:14;42991:34;;;;;;;;;;;42984:41;;;42126:907;;42045:988;;:::o;43328:1079::-;43581:22;43626:1;43606:10;:17;;;;:21;;;;:::i;:::-;43581:46;;43638:18;43659:15;:24;43675:7;43659:24;;;;;;;;;;;;43638:45;;44010:19;44032:10;44043:14;44032:26;;;;;;;;:::i;:::-;;;;;;;;;;44010:48;;44096:11;44071:10;44082;44071:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;44207:10;44176:15;:28;44192:11;44176:28;;;;;;;;;;;:41;;;;44348:15;:24;44364:7;44348:24;;;;;;;;;;;44341:31;;;44383:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43399:1008;;;43328:1079;:::o;40832:221::-;40917:14;40934:20;40951:2;40934:16;:20::i;:::-;40917:37;;40992:7;40965:12;:16;40978:2;40965:16;;;;;;;;;;;;;;;:24;40982:6;40965:24;;;;;;;;;;;:34;;;;41039:6;41010:17;:26;41028:7;41010:26;;;;;;;;;;;:35;;;;40906:147;40832:221;;:::o;32551:382::-;32645:1;32631:16;;:2;:16;;;;32623:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32704:16;32712:7;32704;:16::i;:::-;32703:17;32695:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32766:45;32795:1;32799:2;32803:7;32766:20;:45::i;:::-;32841:1;32824:9;:13;32834:2;32824:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32872:2;32853:7;:16;32861:7;32853:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32917:7;32913:2;32892:33;;32909:1;32892:33;;;;;;;;;;;;32551:382;;:::o;6367:387::-;6427:4;6635:12;6702:7;6690:20;6682:28;;6745:1;6738:4;:8;6731:15;;;6367:387;;;:::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;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:327::-;6834:6;6883:2;6871:9;6862:7;6858:23;6854:32;6851:119;;;6889:79;;:::i;:::-;6851:119;7009:1;7034:52;7078:7;7069:6;7058:9;7054:22;7034:52;:::i;:::-;7024:62;;6980:116;6776:327;;;;:::o;7109:349::-;7178:6;7227:2;7215:9;7206:7;7202:23;7198:32;7195:119;;;7233:79;;:::i;:::-;7195:119;7353:1;7378:63;7433:7;7424:6;7413:9;7409:22;7378:63;:::i;:::-;7368:73;;7324:127;7109:349;;;;:::o;7464:509::-;7533:6;7582:2;7570:9;7561:7;7557:23;7553:32;7550:119;;;7588:79;;:::i;:::-;7550:119;7736:1;7725:9;7721:17;7708:31;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:63;7948:7;7939:6;7928:9;7924:22;7893:63;:::i;:::-;7883:73;;7679:287;7464:509;;;;:::o;7979:329::-;8038:6;8087:2;8075:9;8066:7;8062:23;8058:32;8055:119;;;8093:79;;:::i;:::-;8055:119;8213:1;8238:53;8283:7;8274:6;8263:9;8259:22;8238:53;:::i;:::-;8228:63;;8184:117;7979:329;;;;:::o;8314:179::-;8383:10;8404:46;8446:3;8438:6;8404:46;:::i;:::-;8482:4;8477:3;8473:14;8459:28;;8314:179;;;;:::o;8499:118::-;8586:24;8604:5;8586:24;:::i;:::-;8581:3;8574:37;8499:118;;:::o;8653:732::-;8772:3;8801:54;8849:5;8801:54;:::i;:::-;8871:86;8950:6;8945:3;8871:86;:::i;:::-;8864:93;;8981:56;9031:5;8981:56;:::i;:::-;9060:7;9091:1;9076:284;9101:6;9098:1;9095:13;9076:284;;;9177:6;9171:13;9204:63;9263:3;9248:13;9204:63;:::i;:::-;9197:70;;9290:60;9343:6;9290:60;:::i;:::-;9280:70;;9136:224;9123:1;9120;9116:9;9111:14;;9076:284;;;9080:14;9376:3;9369:10;;8777:608;;;8653:732;;;;:::o;9391:109::-;9472:21;9487:5;9472:21;:::i;:::-;9467:3;9460:34;9391:109;;:::o;9506:360::-;9592:3;9620:38;9652:5;9620:38;:::i;:::-;9674:70;9737:6;9732:3;9674:70;:::i;:::-;9667:77;;9753:52;9798:6;9793:3;9786:4;9779:5;9775:16;9753:52;:::i;:::-;9830:29;9852:6;9830:29;:::i;:::-;9825:3;9821:39;9814:46;;9596:270;9506:360;;;;:::o;9872:364::-;9960:3;9988:39;10021:5;9988:39;:::i;:::-;10043:71;10107:6;10102:3;10043:71;:::i;:::-;10036:78;;10123:52;10168:6;10163:3;10156:4;10149:5;10145:16;10123:52;:::i;:::-;10200:29;10222:6;10200:29;:::i;:::-;10195:3;10191:39;10184:46;;9964:272;9872:364;;;;:::o;10242:377::-;10348:3;10376:39;10409:5;10376:39;:::i;:::-;10431:89;10513:6;10508:3;10431:89;:::i;:::-;10424:96;;10529:52;10574:6;10569:3;10562:4;10555:5;10551:16;10529:52;:::i;:::-;10606:6;10601:3;10597:16;10590:23;;10352:267;10242:377;;;;:::o;10625:366::-;10767:3;10788:67;10852:2;10847:3;10788:67;:::i;:::-;10781:74;;10864:93;10953:3;10864:93;:::i;:::-;10982:2;10977:3;10973:12;10966:19;;10625:366;;;:::o;10997:::-;11139:3;11160:67;11224:2;11219:3;11160:67;:::i;:::-;11153:74;;11236:93;11325:3;11236:93;:::i;:::-;11354:2;11349:3;11345:12;11338:19;;10997:366;;;:::o;11369:::-;11511:3;11532:67;11596:2;11591:3;11532:67;:::i;:::-;11525:74;;11608:93;11697:3;11608:93;:::i;:::-;11726:2;11721:3;11717:12;11710:19;;11369:366;;;:::o;11741:::-;11883:3;11904:67;11968:2;11963:3;11904:67;:::i;:::-;11897:74;;11980:93;12069:3;11980:93;:::i;:::-;12098:2;12093:3;12089:12;12082:19;;11741:366;;;:::o;12113:::-;12255:3;12276:67;12340:2;12335:3;12276:67;:::i;:::-;12269:74;;12352:93;12441:3;12352:93;:::i;:::-;12470:2;12465:3;12461:12;12454:19;;12113:366;;;:::o;12485:365::-;12627:3;12648:66;12712:1;12707:3;12648:66;:::i;:::-;12641:73;;12723:93;12812:3;12723:93;:::i;:::-;12841:2;12836:3;12832:12;12825:19;;12485:365;;;:::o;12856:366::-;12998:3;13019:67;13083:2;13078:3;13019:67;:::i;:::-;13012:74;;13095:93;13184:3;13095:93;:::i;:::-;13213:2;13208:3;13204:12;13197:19;;12856:366;;;:::o;13228:::-;13370:3;13391:67;13455:2;13450:3;13391:67;:::i;:::-;13384:74;;13467:93;13556:3;13467:93;:::i;:::-;13585:2;13580:3;13576:12;13569:19;;13228:366;;;:::o;13600:365::-;13742:3;13763:66;13827:1;13822:3;13763:66;:::i;:::-;13756:73;;13838:93;13927:3;13838:93;:::i;:::-;13956:2;13951:3;13947:12;13940:19;;13600:365;;;:::o;13971:366::-;14113:3;14134:67;14198:2;14193:3;14134:67;:::i;:::-;14127:74;;14210:93;14299:3;14210:93;:::i;:::-;14328:2;14323:3;14319:12;14312:19;;13971:366;;;:::o;14343:::-;14485:3;14506:67;14570:2;14565:3;14506:67;:::i;:::-;14499:74;;14582:93;14671:3;14582:93;:::i;:::-;14700:2;14695:3;14691:12;14684:19;;14343:366;;;:::o;14715:::-;14857:3;14878:67;14942:2;14937:3;14878:67;:::i;:::-;14871:74;;14954:93;15043:3;14954:93;:::i;:::-;15072:2;15067:3;15063:12;15056:19;;14715:366;;;:::o;15087:::-;15229:3;15250:67;15314:2;15309:3;15250:67;:::i;:::-;15243:74;;15326:93;15415:3;15326:93;:::i;:::-;15444:2;15439:3;15435:12;15428:19;;15087:366;;;:::o;15459:::-;15601:3;15622:67;15686:2;15681:3;15622:67;:::i;:::-;15615:74;;15698:93;15787:3;15698:93;:::i;:::-;15816:2;15811:3;15807:12;15800:19;;15459:366;;;:::o;15831:::-;15973:3;15994:67;16058:2;16053:3;15994:67;:::i;:::-;15987:74;;16070:93;16159:3;16070:93;:::i;:::-;16188:2;16183:3;16179:12;16172:19;;15831:366;;;:::o;16203:::-;16345:3;16366:67;16430:2;16425:3;16366:67;:::i;:::-;16359:74;;16442:93;16531:3;16442:93;:::i;:::-;16560:2;16555:3;16551:12;16544:19;;16203:366;;;:::o;16575:::-;16717:3;16738:67;16802:2;16797:3;16738:67;:::i;:::-;16731:74;;16814:93;16903:3;16814:93;:::i;:::-;16932:2;16927:3;16923:12;16916:19;;16575:366;;;:::o;16947:365::-;17089:3;17110:66;17174:1;17169:3;17110:66;:::i;:::-;17103:73;;17185:93;17274:3;17185:93;:::i;:::-;17303:2;17298:3;17294:12;17287:19;;16947:365;;;:::o;17318:366::-;17460:3;17481:67;17545:2;17540:3;17481:67;:::i;:::-;17474:74;;17557:93;17646:3;17557:93;:::i;:::-;17675:2;17670:3;17666:12;17659:19;;17318:366;;;:::o;17690:::-;17832:3;17853:67;17917:2;17912:3;17853:67;:::i;:::-;17846:74;;17929:93;18018:3;17929:93;:::i;:::-;18047:2;18042:3;18038:12;18031:19;;17690:366;;;:::o;18062:::-;18204:3;18225:67;18289:2;18284:3;18225:67;:::i;:::-;18218:74;;18301:93;18390:3;18301:93;:::i;:::-;18419:2;18414:3;18410:12;18403:19;;18062:366;;;:::o;18434:::-;18576:3;18597:67;18661:2;18656:3;18597:67;:::i;:::-;18590:74;;18673:93;18762:3;18673:93;:::i;:::-;18791:2;18786:3;18782:12;18775:19;;18434:366;;;:::o;18806:::-;18948:3;18969:67;19033:2;19028:3;18969:67;:::i;:::-;18962:74;;19045:93;19134:3;19045:93;:::i;:::-;19163:2;19158:3;19154:12;19147:19;;18806:366;;;:::o;19178:::-;19320:3;19341:67;19405:2;19400:3;19341:67;:::i;:::-;19334:74;;19417:93;19506:3;19417:93;:::i;:::-;19535:2;19530:3;19526:12;19519:19;;19178:366;;;:::o;19550:::-;19692:3;19713:67;19777:2;19772:3;19713:67;:::i;:::-;19706:74;;19789:93;19878:3;19789:93;:::i;:::-;19907:2;19902:3;19898:12;19891:19;;19550:366;;;:::o;19922:365::-;20064:3;20085:66;20149:1;20144:3;20085:66;:::i;:::-;20078:73;;20160:93;20249:3;20160:93;:::i;:::-;20278:2;20273:3;20269:12;20262:19;;19922:365;;;:::o;20293:108::-;20370:24;20388:5;20370:24;:::i;:::-;20365:3;20358:37;20293:108;;:::o;20407:118::-;20494:24;20512:5;20494:24;:::i;:::-;20489:3;20482:37;20407:118;;:::o;20531:435::-;20711:3;20733:95;20824:3;20815:6;20733:95;:::i;:::-;20726:102;;20845:95;20936:3;20927:6;20845:95;:::i;:::-;20838:102;;20957:3;20950:10;;20531:435;;;;;:::o;20972:222::-;21065:4;21103:2;21092:9;21088:18;21080:26;;21116:71;21184:1;21173:9;21169:17;21160:6;21116:71;:::i;:::-;20972:222;;;;:::o;21200:640::-;21395:4;21433:3;21422:9;21418:19;21410:27;;21447:71;21515:1;21504:9;21500:17;21491:6;21447:71;:::i;:::-;21528:72;21596:2;21585:9;21581:18;21572:6;21528:72;:::i;:::-;21610;21678:2;21667:9;21663:18;21654:6;21610:72;:::i;:::-;21729:9;21723:4;21719:20;21714:2;21703:9;21699:18;21692:48;21757:76;21828:4;21819:6;21757:76;:::i;:::-;21749:84;;21200:640;;;;;;;:::o;21846:373::-;21989:4;22027:2;22016:9;22012:18;22004:26;;22076:9;22070:4;22066:20;22062:1;22051:9;22047:17;22040:47;22104:108;22207:4;22198:6;22104:108;:::i;:::-;22096:116;;21846:373;;;;:::o;22225:210::-;22312:4;22350:2;22339:9;22335:18;22327:26;;22363:65;22425:1;22414:9;22410:17;22401:6;22363:65;:::i;:::-;22225:210;;;;:::o;22441:313::-;22554:4;22592:2;22581:9;22577:18;22569:26;;22641:9;22635:4;22631:20;22627:1;22616:9;22612:17;22605:47;22669:78;22742:4;22733:6;22669:78;:::i;:::-;22661:86;;22441:313;;;;:::o;22760:419::-;22926:4;22964:2;22953:9;22949:18;22941:26;;23013:9;23007:4;23003:20;22999:1;22988:9;22984:17;22977:47;23041:131;23167:4;23041:131;:::i;:::-;23033:139;;22760:419;;;:::o;23185:::-;23351:4;23389:2;23378:9;23374:18;23366:26;;23438:9;23432:4;23428:20;23424:1;23413:9;23409:17;23402:47;23466:131;23592:4;23466:131;:::i;:::-;23458:139;;23185:419;;;:::o;23610:::-;23776:4;23814:2;23803:9;23799:18;23791:26;;23863:9;23857:4;23853:20;23849:1;23838:9;23834:17;23827:47;23891:131;24017:4;23891:131;:::i;:::-;23883:139;;23610:419;;;:::o;24035:::-;24201:4;24239:2;24228:9;24224:18;24216:26;;24288:9;24282:4;24278:20;24274:1;24263:9;24259:17;24252:47;24316:131;24442:4;24316:131;:::i;:::-;24308:139;;24035:419;;;:::o;24460:::-;24626:4;24664:2;24653:9;24649:18;24641:26;;24713:9;24707:4;24703:20;24699:1;24688:9;24684:17;24677:47;24741:131;24867:4;24741:131;:::i;:::-;24733:139;;24460:419;;;:::o;24885:::-;25051:4;25089:2;25078:9;25074:18;25066:26;;25138:9;25132:4;25128:20;25124:1;25113:9;25109:17;25102:47;25166:131;25292:4;25166:131;:::i;:::-;25158:139;;24885:419;;;:::o;25310:::-;25476:4;25514:2;25503:9;25499:18;25491:26;;25563:9;25557:4;25553:20;25549:1;25538:9;25534:17;25527:47;25591:131;25717:4;25591:131;:::i;:::-;25583:139;;25310:419;;;:::o;25735:::-;25901:4;25939:2;25928:9;25924:18;25916:26;;25988:9;25982:4;25978:20;25974:1;25963:9;25959:17;25952:47;26016:131;26142:4;26016:131;:::i;:::-;26008:139;;25735:419;;;:::o;26160:::-;26326:4;26364:2;26353:9;26349:18;26341:26;;26413:9;26407:4;26403:20;26399:1;26388:9;26384:17;26377:47;26441:131;26567:4;26441:131;:::i;:::-;26433:139;;26160:419;;;:::o;26585:::-;26751:4;26789:2;26778:9;26774:18;26766:26;;26838:9;26832:4;26828:20;26824:1;26813:9;26809:17;26802:47;26866:131;26992:4;26866:131;:::i;:::-;26858:139;;26585:419;;;:::o;27010:::-;27176:4;27214:2;27203:9;27199:18;27191:26;;27263:9;27257:4;27253:20;27249:1;27238:9;27234:17;27227:47;27291:131;27417:4;27291:131;:::i;:::-;27283:139;;27010:419;;;:::o;27435:::-;27601:4;27639:2;27628:9;27624:18;27616:26;;27688:9;27682:4;27678:20;27674:1;27663:9;27659:17;27652:47;27716:131;27842:4;27716:131;:::i;:::-;27708:139;;27435:419;;;:::o;27860:::-;28026:4;28064:2;28053:9;28049:18;28041:26;;28113:9;28107:4;28103:20;28099:1;28088:9;28084:17;28077:47;28141:131;28267:4;28141:131;:::i;:::-;28133:139;;27860:419;;;:::o;28285:::-;28451:4;28489:2;28478:9;28474:18;28466:26;;28538:9;28532:4;28528:20;28524:1;28513:9;28509:17;28502:47;28566:131;28692:4;28566:131;:::i;:::-;28558:139;;28285:419;;;:::o;28710:::-;28876:4;28914:2;28903:9;28899:18;28891:26;;28963:9;28957:4;28953:20;28949:1;28938:9;28934:17;28927:47;28991:131;29117:4;28991:131;:::i;:::-;28983:139;;28710:419;;;:::o;29135:::-;29301:4;29339:2;29328:9;29324:18;29316:26;;29388:9;29382:4;29378:20;29374:1;29363:9;29359:17;29352:47;29416:131;29542:4;29416:131;:::i;:::-;29408:139;;29135:419;;;:::o;29560:::-;29726:4;29764:2;29753:9;29749:18;29741:26;;29813:9;29807:4;29803:20;29799:1;29788:9;29784:17;29777:47;29841:131;29967:4;29841:131;:::i;:::-;29833:139;;29560:419;;;:::o;29985:::-;30151:4;30189:2;30178:9;30174:18;30166:26;;30238:9;30232:4;30228:20;30224:1;30213:9;30209:17;30202:47;30266:131;30392:4;30266:131;:::i;:::-;30258:139;;29985:419;;;:::o;30410:::-;30576:4;30614:2;30603:9;30599:18;30591:26;;30663:9;30657:4;30653:20;30649:1;30638:9;30634:17;30627:47;30691:131;30817:4;30691:131;:::i;:::-;30683:139;;30410:419;;;:::o;30835:::-;31001:4;31039:2;31028:9;31024:18;31016:26;;31088:9;31082:4;31078:20;31074:1;31063:9;31059:17;31052:47;31116:131;31242:4;31116:131;:::i;:::-;31108:139;;30835:419;;;:::o;31260:::-;31426:4;31464:2;31453:9;31449:18;31441:26;;31513:9;31507:4;31503:20;31499:1;31488:9;31484:17;31477:47;31541:131;31667:4;31541:131;:::i;:::-;31533:139;;31260:419;;;:::o;31685:::-;31851:4;31889:2;31878:9;31874:18;31866:26;;31938:9;31932:4;31928:20;31924:1;31913:9;31909:17;31902:47;31966:131;32092:4;31966:131;:::i;:::-;31958:139;;31685:419;;;:::o;32110:::-;32276:4;32314:2;32303:9;32299:18;32291:26;;32363:9;32357:4;32353:20;32349:1;32338:9;32334:17;32327:47;32391:131;32517:4;32391:131;:::i;:::-;32383:139;;32110:419;;;:::o;32535:::-;32701:4;32739:2;32728:9;32724:18;32716:26;;32788:9;32782:4;32778:20;32774:1;32763:9;32759:17;32752:47;32816:131;32942:4;32816:131;:::i;:::-;32808:139;;32535:419;;;:::o;32960:::-;33126:4;33164:2;33153:9;33149:18;33141:26;;33213:9;33207:4;33203:20;33199:1;33188:9;33184:17;33177:47;33241:131;33367:4;33241:131;:::i;:::-;33233:139;;32960:419;;;:::o;33385:::-;33551:4;33589:2;33578:9;33574:18;33566:26;;33638:9;33632:4;33628:20;33624:1;33613:9;33609:17;33602:47;33666:131;33792:4;33666:131;:::i;:::-;33658:139;;33385:419;;;:::o;33810:222::-;33903:4;33941:2;33930:9;33926:18;33918:26;;33954:71;34022:1;34011:9;34007:17;33998:6;33954:71;:::i;:::-;33810:222;;;;:::o;34038:129::-;34072:6;34099:20;;:::i;:::-;34089:30;;34128:33;34156:4;34148:6;34128:33;:::i;:::-;34038:129;;;:::o;34173:75::-;34206:6;34239:2;34233:9;34223:19;;34173:75;:::o;34254:307::-;34315:4;34405:18;34397:6;34394:30;34391:56;;;34427:18;;:::i;:::-;34391:56;34465:29;34487:6;34465:29;:::i;:::-;34457:37;;34549:4;34543;34539:15;34531:23;;34254:307;;;:::o;34567:308::-;34629:4;34719:18;34711:6;34708:30;34705:56;;;34741:18;;:::i;:::-;34705:56;34779:29;34801:6;34779:29;:::i;:::-;34771:37;;34863:4;34857;34853:15;34845:23;;34567:308;;;:::o;34881:132::-;34948:4;34971:3;34963:11;;35001:4;34996:3;34992:14;34984:22;;34881:132;;;:::o;35019:114::-;35086:6;35120:5;35114:12;35104:22;;35019:114;;;:::o;35139:98::-;35190:6;35224:5;35218:12;35208:22;;35139:98;;;:::o;35243:99::-;35295:6;35329:5;35323:12;35313:22;;35243:99;;;:::o;35348:113::-;35418:4;35450;35445:3;35441:14;35433:22;;35348:113;;;:::o;35467:184::-;35566:11;35600:6;35595:3;35588:19;35640:4;35635:3;35631:14;35616:29;;35467:184;;;;:::o;35657:168::-;35740:11;35774:6;35769:3;35762:19;35814:4;35809:3;35805:14;35790:29;;35657:168;;;;:::o;35831:169::-;35915:11;35949:6;35944:3;35937:19;35989:4;35984:3;35980:14;35965:29;;35831:169;;;;:::o;36006:148::-;36108:11;36145:3;36130:18;;36006:148;;;;:::o;36160:305::-;36200:3;36219:20;36237:1;36219:20;:::i;:::-;36214:25;;36253:20;36271:1;36253:20;:::i;:::-;36248:25;;36407:1;36339:66;36335:74;36332:1;36329:81;36326:107;;;36413:18;;:::i;:::-;36326:107;36457:1;36454;36450:9;36443:16;;36160:305;;;;:::o;36471:185::-;36511:1;36528:20;36546:1;36528:20;:::i;:::-;36523:25;;36562:20;36580:1;36562:20;:::i;:::-;36557:25;;36601:1;36591:35;;36606:18;;:::i;:::-;36591:35;36648:1;36645;36641:9;36636:14;;36471:185;;;;:::o;36662:348::-;36702:7;36725:20;36743:1;36725:20;:::i;:::-;36720:25;;36759:20;36777:1;36759:20;:::i;:::-;36754:25;;36947:1;36879:66;36875:74;36872:1;36869:81;36864:1;36857:9;36850:17;36846:105;36843:131;;;36954:18;;:::i;:::-;36843:131;37002:1;36999;36995:9;36984:20;;36662:348;;;;:::o;37016:191::-;37056:4;37076:20;37094:1;37076:20;:::i;:::-;37071:25;;37110:20;37128:1;37110:20;:::i;:::-;37105:25;;37149:1;37146;37143:8;37140:34;;;37154:18;;:::i;:::-;37140:34;37199:1;37196;37192:9;37184:17;;37016:191;;;;:::o;37213:96::-;37250:7;37279:24;37297:5;37279:24;:::i;:::-;37268:35;;37213:96;;;:::o;37315:90::-;37349:7;37392:5;37385:13;37378:21;37367:32;;37315:90;;;:::o;37411:149::-;37447:7;37487:66;37480:5;37476:78;37465:89;;37411:149;;;:::o;37566:126::-;37603:7;37643:42;37636:5;37632:54;37621:65;;37566:126;;;:::o;37698:77::-;37735:7;37764:5;37753:16;;37698:77;;;:::o;37781:154::-;37865:6;37860:3;37855;37842:30;37927:1;37918:6;37913:3;37909:16;37902:27;37781:154;;;:::o;37941:307::-;38009:1;38019:113;38033:6;38030:1;38027:13;38019:113;;;38118:1;38113:3;38109:11;38103:18;38099:1;38094:3;38090:11;38083:39;38055:2;38052:1;38048:10;38043:15;;38019:113;;;38150:6;38147:1;38144:13;38141:101;;;38230:1;38221:6;38216:3;38212:16;38205:27;38141:101;37990:258;37941:307;;;:::o;38254:320::-;38298:6;38335:1;38329:4;38325:12;38315:22;;38382:1;38376:4;38372:12;38403:18;38393:81;;38459:4;38451:6;38447:17;38437:27;;38393:81;38521:2;38513:6;38510:14;38490:18;38487:38;38484:84;;;38540:18;;:::i;:::-;38484:84;38305:269;38254:320;;;:::o;38580:281::-;38663:27;38685:4;38663:27;:::i;:::-;38655:6;38651:40;38793:6;38781:10;38778:22;38757:18;38745:10;38742:34;38739:62;38736:88;;;38804:18;;:::i;:::-;38736:88;38844:10;38840:2;38833:22;38623:238;38580:281;;:::o;38867:233::-;38906:3;38929:24;38947:5;38929:24;:::i;:::-;38920:33;;38975:66;38968:5;38965:77;38962:103;;;39045:18;;:::i;:::-;38962:103;39092:1;39085:5;39081:13;39074:20;;38867:233;;;:::o;39106:176::-;39138:1;39155:20;39173:1;39155:20;:::i;:::-;39150:25;;39189:20;39207:1;39189:20;:::i;:::-;39184:25;;39228:1;39218:35;;39233:18;;:::i;:::-;39218:35;39274:1;39271;39267:9;39262:14;;39106:176;;;;:::o;39288:180::-;39336:77;39333:1;39326:88;39433:4;39430:1;39423:15;39457:4;39454:1;39447:15;39474:180;39522:77;39519:1;39512:88;39619:4;39616:1;39609:15;39643:4;39640:1;39633:15;39660:180;39708:77;39705:1;39698:88;39805:4;39802:1;39795:15;39829:4;39826:1;39819:15;39846:180;39894:77;39891:1;39884:88;39991:4;39988:1;39981:15;40015:4;40012:1;40005:15;40032:180;40080:77;40077:1;40070:88;40177:4;40174:1;40167:15;40201:4;40198:1;40191:15;40218:180;40266:77;40263:1;40256:88;40363:4;40360:1;40353:15;40387:4;40384:1;40377:15;40404:117;40513:1;40510;40503:12;40527:117;40636:1;40633;40626:12;40650:117;40759:1;40756;40749:12;40773:117;40882:1;40879;40872:12;40896:117;41005:1;41002;40995:12;41019:117;41128:1;41125;41118:12;41142:102;41183:6;41234:2;41230:7;41225:2;41218:5;41214:14;41210:28;41200:38;;41142:102;;;:::o;41250:161::-;41390:13;41386:1;41378:6;41374:14;41367:37;41250:161;:::o;41417:230::-;41557:34;41553:1;41545:6;41541:14;41534:58;41626:13;41621:2;41613:6;41609:15;41602:38;41417:230;:::o;41653:237::-;41793:34;41789:1;41781:6;41777:14;41770:58;41862:20;41857:2;41849:6;41845:15;41838:45;41653:237;:::o;41896:160::-;42036:12;42032:1;42024:6;42020:14;42013:36;41896:160;:::o;42062:225::-;42202:34;42198:1;42190:6;42186:14;42179:58;42271:8;42266:2;42258:6;42254:15;42247:33;42062:225;:::o;42293:157::-;42433:9;42429:1;42421:6;42417:14;42410:33;42293:157;:::o;42456:178::-;42596:30;42592:1;42584:6;42580:14;42573:54;42456:178;:::o;42640:161::-;42780:13;42776:1;42768:6;42764:14;42757:37;42640:161;:::o;42807:158::-;42947:10;42943:1;42935:6;42931:14;42924:34;42807:158;:::o;42971:223::-;43111:34;43107:1;43099:6;43095:14;43088:58;43180:6;43175:2;43167:6;43163:15;43156:31;42971:223;:::o;43200:175::-;43340:27;43336:1;43328:6;43324:14;43317:51;43200:175;:::o;43381:231::-;43521:34;43517:1;43509:6;43505:14;43498:58;43590:14;43585:2;43577:6;43573:15;43566:39;43381:231;:::o;43618:243::-;43758:34;43754:1;43746:6;43742:14;43735:58;43827:26;43822:2;43814:6;43810:15;43803:51;43618:243;:::o;43867:229::-;44007:34;44003:1;43995:6;43991:14;43984:58;44076:12;44071:2;44063:6;44059:15;44052:37;43867:229;:::o;44102:228::-;44242:34;44238:1;44230:6;44226:14;44219:58;44311:11;44306:2;44298:6;44294:15;44287:36;44102:228;:::o;44336:182::-;44476:34;44472:1;44464:6;44460:14;44453:58;44336:182;:::o;44524:231::-;44664:34;44660:1;44652:6;44648:14;44641:58;44733:14;44728:2;44720:6;44716:15;44709:39;44524:231;:::o;44761:159::-;44901:11;44897:1;44889:6;44885:14;44878:35;44761:159;:::o;44926:182::-;45066:34;45062:1;45054:6;45050:14;45043:58;44926:182;:::o;45114:228::-;45254:34;45250:1;45242:6;45238:14;45231:58;45323:11;45318:2;45310:6;45306:15;45299:36;45114:228;:::o;45348:234::-;45488:34;45484:1;45476:6;45472:14;45465:58;45557:17;45552:2;45544:6;45540:15;45533:42;45348:234;:::o;45588:220::-;45728:34;45724:1;45716:6;45712:14;45705:58;45797:3;45792:2;45784:6;45780:15;45773:28;45588:220;:::o;45814:163::-;45954:15;45950:1;45942:6;45938:14;45931:39;45814:163;:::o;45983:236::-;46123:34;46119:1;46111:6;46107:14;46100:58;46192:19;46187:2;46179:6;46175:15;46168:44;45983:236;:::o;46225:231::-;46365:34;46361:1;46353:6;46349:14;46342:58;46434:14;46429:2;46421:6;46417:15;46410:39;46225:231;:::o;46462:159::-;46602:11;46598:1;46590:6;46586:14;46579:35;46462:159;:::o;46627:122::-;46700:24;46718:5;46700:24;:::i;:::-;46693:5;46690:35;46680:63;;46739:1;46736;46729:12;46680:63;46627:122;:::o;46755:116::-;46825:21;46840:5;46825:21;:::i;:::-;46818:5;46815:32;46805:60;;46861:1;46858;46851:12;46805:60;46755:116;:::o;46877:120::-;46949:23;46966:5;46949:23;:::i;:::-;46942:5;46939:34;46929:62;;46987:1;46984;46977:12;46929:62;46877:120;:::o;47003:122::-;47076:24;47094:5;47076:24;:::i;:::-;47069:5;47066:35;47056:63;;47115:1;47112;47105:12;47056:63;47003:122;:::o
Swarm Source
ipfs://1d5b589b0ae4e0e50c568ead932c8aaab081f5d9514ac86d84bf86b9be501261
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.