Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 36 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Unwrap | 19999391 | 185 days ago | IN | 0 ETH | 0.0006132 | ||||
Safe Unwrap | 19997497 | 185 days ago | IN | 0 ETH | 0.00097645 | ||||
Safe Unwrap | 19776800 | 216 days ago | IN | 0 ETH | 0.00124991 | ||||
Safe Unwrap | 19719291 | 224 days ago | IN | 0 ETH | 0.002423 | ||||
Safe Unwrap | 19719171 | 224 days ago | IN | 0 ETH | 0.00291621 | ||||
Safe Unwrap | 19717935 | 224 days ago | IN | 0 ETH | 0.0010561 | ||||
Safe Unwrap | 19400297 | 269 days ago | IN | 0 ETH | 0.00808872 | ||||
Safe Wrap | 17178528 | 580 days ago | IN | 0 ETH | 0.00756941 | ||||
Set Approval For... | 17128241 | 587 days ago | IN | 0 ETH | 0.00164125 | ||||
Safe Wrap | 17128237 | 587 days ago | IN | 0 ETH | 0.00501087 | ||||
Set Approval For... | 16553403 | 668 days ago | IN | 0 ETH | 0.00086187 | ||||
Safe Wrap | 16553401 | 668 days ago | IN | 0 ETH | 0.00273081 | ||||
Safe Unwrap | 16487007 | 677 days ago | IN | 0 ETH | 0.00362411 | ||||
Safe Wrap | 16322663 | 700 days ago | IN | 0 ETH | 0.00255594 | ||||
Set Approval For... | 16289044 | 705 days ago | IN | 0 ETH | 0.00076181 | ||||
Safe Wrap | 16289037 | 705 days ago | IN | 0 ETH | 0.00203824 | ||||
Safe Wrap | 16271866 | 708 days ago | IN | 0 ETH | 0.00167652 | ||||
Set Approval For... | 16271857 | 708 days ago | IN | 0 ETH | 0.00057096 | ||||
Safe Wrap | 16208372 | 716 days ago | IN | 0 ETH | 0.00177117 | ||||
Safe Wrap | 16201334 | 717 days ago | IN | 0 ETH | 0.00221304 | ||||
Safe Unwrap | 16201322 | 717 days ago | IN | 0 ETH | 0.0021133 | ||||
Approve | 16201017 | 717 days ago | IN | 0 ETH | 0.00072605 | ||||
Set Approval For... | 16200910 | 717 days ago | IN | 0 ETH | 0.00042921 | ||||
Set Approval For... | 16200886 | 717 days ago | IN | 0 ETH | 0.00039639 | ||||
Set Approval For... | 16200844 | 717 days ago | IN | 0 ETH | 0.00073129 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
WrappedGazers
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-18 */ 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); } pragma solidity ^0.8.0; ////import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } pragma solidity ^0.8.0; ////import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } 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); } } 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; } } pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [////IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * ////IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return 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); } } } } pragma solidity ^0.8.0; ////import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } 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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } pragma solidity ^0.8.0; ////import "./IERC721.sol"; ////import "./IERC721Receiver.sol"; ////import "./extensions/IERC721Metadata.sol"; ////import "../../utils/Address.sol"; ////import "../../utils/Context.sol"; ////import "../../utils/Strings.sol"; ////import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } pragma solidity ^0.8.0; ////import "../ERC721.sol"; ////import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } pragma solidity ^0.8.9; ////import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; ////import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; contract WrappedGazers is ERC721Burnable { address public constant COLLECTION = 0xa7d8d9ef8D8Ce8992Df33D8b8CF4Aebabd5bD270; event SafeWrap(address from, uint256 tokenId); event SafeUnwrap( address from, address to, uint256 tokenId ); constructor() ERC721("Wrapped Gazers by Matt Kane", "GAZERS") {} /// @param tokenId tokenId of the Gazers function safeWrap(uint256 tokenId) external { // Gazers tokenId range require(215000000 <= tokenId && tokenId <= 215000999, "Gazers: invalid tokenId"); IERC721(COLLECTION).transferFrom( _msgSender(), address(this), tokenId ); _safeMint(_msgSender(), tokenId); emit SafeWrap(_msgSender(), tokenId); } /// @param tokenId tokenId of the WrappedGazers function safeUnwrap(uint256 tokenId) external { address owner = ownerOf(tokenId); burn(tokenId); IERC721(COLLECTION).safeTransferFrom( address(this), _msgSender(), tokenId ); emit SafeUnwrap(owner, _msgSender(), tokenId); } /// @notice Returns the Uniform Resource Identifier (URI) for a WrappedGazers. /// @dev This will return the corresponding Gazers token uri /// @param tokenId tokenId of the Gazers function tokenURI(uint256 tokenId) public view override returns (string memory) { require( _exists(tokenId), "ERC721URIStorage: URI query for nonexistent token" ); return IERC721Metadata(COLLECTION).tokenURI(tokenId); } }
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":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"SafeUnwrap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"SafeWrap","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":"COLLECTION","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeUnwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeWrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601b81526020017f577261707065642047617a657273206279204d617474204b616e6500000000008152506040518060400160405280600681526020017f47415a4552530000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620000b8565b508060019080519060200190620000af929190620000b8565b505050620001cd565b828054620000c69062000197565b90600052602060002090601f016020900481019282620000ea576000855562000136565b82601f106200010557805160ff191683800117855562000136565b8280016001018555821562000136579182015b828111156200013557825182559160200191906001019062000118565b5b50905062000145919062000149565b5090565b5b80821115620001645760008160009055506001016200014a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620001b057607f821691505b60208210811415620001c757620001c662000168565b5b50919050565b612b2680620001dd6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80636352211e116100a257806395d89b411161007157806395d89b41146102b4578063a22cb465146102d2578063b88d4fde146102ee578063c87b56dd1461030a578063e985e9c51461033a5761010b565b80636352211e1461021a578063697b23651461024a5780636ac6954b1461026857806370a08231146102845761010b565b806323b872dd116100de57806323b872dd146101aa5780633ffabafe146101c657806342842e0e146101e257806342966c68146101fe5761010b565b806301ffc9a71461011057806306fdde0314610140578063081812fc1461015e578063095ea7b31461018e575b600080fd5b61012a600480360381019061012591906119ca565b61036a565b6040516101379190611a12565b60405180910390f35b61014861044c565b6040516101559190611ac6565b60405180910390f35b61017860048036038101906101739190611b1e565b6104de565b6040516101859190611b8c565b60405180910390f35b6101a860048036038101906101a39190611bd3565b610563565b005b6101c460048036038101906101bf9190611c13565b61067b565b005b6101e060048036038101906101db9190611b1e565b6106db565b005b6101fc60048036038101906101f79190611c13565b610810565b005b61021860048036038101906102139190611b1e565b610830565b005b610234600480360381019061022f9190611b1e565b61088c565b6040516102419190611b8c565b60405180910390f35b61025261093e565b60405161025f9190611b8c565b60405180910390f35b610282600480360381019061027d9190611b1e565b610956565b005b61029e60048036038101906102999190611c66565b610a3c565b6040516102ab9190611ca2565b60405180910390f35b6102bc610af4565b6040516102c99190611ac6565b60405180910390f35b6102ec60048036038101906102e79190611ce9565b610b86565b005b61030860048036038101906103039190611e5e565b610b9c565b005b610324600480360381019061031f9190611b1e565b610bfe565b6040516103319190611ac6565b60405180910390f35b610354600480360381019061034f9190611ee1565b610cf1565b6040516103619190611a12565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061043557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610445575061044482610d85565b5b9050919050565b60606000805461045b90611f50565b80601f016020809104026020016040519081016040528092919081815260200182805461048790611f50565b80156104d45780601f106104a9576101008083540402835291602001916104d4565b820191906000526020600020905b8154815290600101906020018083116104b757829003601f168201915b5050505050905090565b60006104e982610def565b610528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051f90611ff4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061056e8261088c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d690612086565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105fe610e5b565b73ffffffffffffffffffffffffffffffffffffffff16148061062d575061062c81610627610e5b565b610cf1565b5b61066c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066390612118565b60405180910390fd5b6106768383610e63565b505050565b61068c610686610e5b565b82610f1c565b6106cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c2906121aa565b60405180910390fd5b6106d6838383610ffa565b505050565b80630cd0a3c0111580156106f35750630cd0a7a78111155b610732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072990612216565b60405180910390fd5b73a7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd27073ffffffffffffffffffffffffffffffffffffffff166323b872dd61076a610e5b565b30846040518463ffffffff1660e01b815260040161078a93929190612236565b600060405180830381600087803b1580156107a457600080fd5b505af11580156107b8573d6000803e3d6000fd5b505050506107cd6107c7610e5b565b82611261565b7f4e710ae1f65c7d0bf7bf5e94581f6f3cabeb1927a5f6709367adc670a810e9a26107f6610e5b565b8260405161080592919061226d565b60405180910390a150565b61082b83838360405180602001604052806000815250610b9c565b505050565b61084161083b610e5b565b82610f1c565b610880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087790612308565b60405180910390fd5b6108898161127f565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c9061239a565b60405180910390fd5b80915050919050565b73a7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd27081565b60006109618261088c565b905061096c82610830565b73a7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd27073ffffffffffffffffffffffffffffffffffffffff166342842e0e306109a5610e5b565b856040518463ffffffff1660e01b81526004016109c493929190612236565b600060405180830381600087803b1580156109de57600080fd5b505af11580156109f2573d6000803e3d6000fd5b505050507f59bfbdc91eb2729ef9ceb3487534310090abb9b3224aa9e6c86727679c5fdfc481610a20610e5b565b84604051610a3093929190612236565b60405180910390a15050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa49061242c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610b0390611f50565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2f90611f50565b8015610b7c5780601f10610b5157610100808354040283529160200191610b7c565b820191906000526020600020905b815481529060010190602001808311610b5f57829003601f168201915b5050505050905090565b610b98610b91610e5b565b838361139c565b5050565b610bad610ba7610e5b565b83610f1c565b610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be3906121aa565b60405180910390fd5b610bf884848484611509565b50505050565b6060610c0982610def565b610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f906124be565b60405180910390fd5b73a7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd27073ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b8152600401610c959190611ca2565b60006040518083038186803b158015610cad57600080fd5b505afa158015610cc1573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610cea919061257f565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610ed68361088c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f2782610def565b610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d9061263a565b60405180910390fd5b6000610f718361088c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610fb35750610fb28185610cf1565b5b80610ff157508373ffffffffffffffffffffffffffffffffffffffff16610fd9846104de565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661101a8261088c565b73ffffffffffffffffffffffffffffffffffffffff1614611070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611067906126cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d79061275e565b60405180910390fd5b6110eb838383611565565b6110f6600082610e63565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461114691906127ad565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119d91906127e1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461125c83838361156a565b505050565b61127b82826040518060200160405280600081525061156f565b5050565b600061128a8261088c565b905061129881600084611565565b6112a3600083610e63565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112f391906127ad565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113988160008461156a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290612883565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fc9190611a12565b60405180910390a3505050565b611514848484610ffa565b611520848484846115ca565b61155f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155690612915565b60405180910390fd5b50505050565b505050565b505050565b6115798383611761565b61158660008484846115ca565b6115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90612915565b60405180910390fd5b505050565b60006115eb8473ffffffffffffffffffffffffffffffffffffffff1661193b565b15611754578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611614610e5b565b8786866040518563ffffffff1660e01b8152600401611636949392919061298a565b602060405180830381600087803b15801561165057600080fd5b505af192505050801561168157506040513d601f19601f8201168201806040525081019061167e91906129eb565b60015b611704573d80600081146116b1576040519150601f19603f3d011682016040523d82523d6000602084013e6116b6565b606091505b506000815114156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390612915565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611759565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890612a64565b60405180910390fd5b6117da81610def565b1561181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190612ad0565b60405180910390fd5b61182660008383611565565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461187691906127e1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119376000838361156a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6119a781611972565b81146119b257600080fd5b50565b6000813590506119c48161199e565b92915050565b6000602082840312156119e0576119df611968565b5b60006119ee848285016119b5565b91505092915050565b60008115159050919050565b611a0c816119f7565b82525050565b6000602082019050611a276000830184611a03565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a67578082015181840152602081019050611a4c565b83811115611a76576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a9882611a2d565b611aa28185611a38565b9350611ab2818560208601611a49565b611abb81611a7c565b840191505092915050565b60006020820190508181036000830152611ae08184611a8d565b905092915050565b6000819050919050565b611afb81611ae8565b8114611b0657600080fd5b50565b600081359050611b1881611af2565b92915050565b600060208284031215611b3457611b33611968565b5b6000611b4284828501611b09565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b7682611b4b565b9050919050565b611b8681611b6b565b82525050565b6000602082019050611ba16000830184611b7d565b92915050565b611bb081611b6b565b8114611bbb57600080fd5b50565b600081359050611bcd81611ba7565b92915050565b60008060408385031215611bea57611be9611968565b5b6000611bf885828601611bbe565b9250506020611c0985828601611b09565b9150509250929050565b600080600060608486031215611c2c57611c2b611968565b5b6000611c3a86828701611bbe565b9350506020611c4b86828701611bbe565b9250506040611c5c86828701611b09565b9150509250925092565b600060208284031215611c7c57611c7b611968565b5b6000611c8a84828501611bbe565b91505092915050565b611c9c81611ae8565b82525050565b6000602082019050611cb76000830184611c93565b92915050565b611cc6816119f7565b8114611cd157600080fd5b50565b600081359050611ce381611cbd565b92915050565b60008060408385031215611d0057611cff611968565b5b6000611d0e85828601611bbe565b9250506020611d1f85828601611cd4565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d6b82611a7c565b810181811067ffffffffffffffff82111715611d8a57611d89611d33565b5b80604052505050565b6000611d9d61195e565b9050611da98282611d62565b919050565b600067ffffffffffffffff821115611dc957611dc8611d33565b5b611dd282611a7c565b9050602081019050919050565b82818337600083830152505050565b6000611e01611dfc84611dae565b611d93565b905082815260208101848484011115611e1d57611e1c611d2e565b5b611e28848285611ddf565b509392505050565b600082601f830112611e4557611e44611d29565b5b8135611e55848260208601611dee565b91505092915050565b60008060008060808587031215611e7857611e77611968565b5b6000611e8687828801611bbe565b9450506020611e9787828801611bbe565b9350506040611ea887828801611b09565b925050606085013567ffffffffffffffff811115611ec957611ec861196d565b5b611ed587828801611e30565b91505092959194509250565b60008060408385031215611ef857611ef7611968565b5b6000611f0685828601611bbe565b9250506020611f1785828601611bbe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f6857607f821691505b60208210811415611f7c57611f7b611f21565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000611fde602c83611a38565b9150611fe982611f82565b604082019050919050565b6000602082019050818103600083015261200d81611fd1565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612070602183611a38565b915061207b82612014565b604082019050919050565b6000602082019050818103600083015261209f81612063565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612102603883611a38565b915061210d826120a6565b604082019050919050565b60006020820190508181036000830152612131816120f5565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612194603183611a38565b915061219f82612138565b604082019050919050565b600060208201905081810360008301526121c381612187565b9050919050565b7f47617a6572733a20696e76616c696420746f6b656e4964000000000000000000600082015250565b6000612200601783611a38565b915061220b826121ca565b602082019050919050565b6000602082019050818103600083015261222f816121f3565b9050919050565b600060608201905061224b6000830186611b7d565b6122586020830185611b7d565b6122656040830184611c93565b949350505050565b60006040820190506122826000830185611b7d565b61228f6020830184611c93565b9392505050565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b60006122f2603083611a38565b91506122fd82612296565b604082019050919050565b60006020820190508181036000830152612321816122e5565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612384602983611a38565b915061238f82612328565b604082019050919050565b600060208201905081810360008301526123b381612377565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612416602a83611a38565b9150612421826123ba565b604082019050919050565b6000602082019050818103600083015261244581612409565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b60006124a8603183611a38565b91506124b38261244c565b604082019050919050565b600060208201905081810360008301526124d78161249b565b9050919050565b600067ffffffffffffffff8211156124f9576124f8611d33565b5b61250282611a7c565b9050602081019050919050565b600061252261251d846124de565b611d93565b90508281526020810184848401111561253e5761253d611d2e565b5b612549848285611a49565b509392505050565b600082601f83011261256657612565611d29565b5b815161257684826020860161250f565b91505092915050565b60006020828403121561259557612594611968565b5b600082015167ffffffffffffffff8111156125b3576125b261196d565b5b6125bf84828501612551565b91505092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612624602c83611a38565b915061262f826125c8565b604082019050919050565b6000602082019050818103600083015261265381612617565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006126b6602583611a38565b91506126c18261265a565b604082019050919050565b600060208201905081810360008301526126e5816126a9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612748602483611a38565b9150612753826126ec565b604082019050919050565b600060208201905081810360008301526127778161273b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127b882611ae8565b91506127c383611ae8565b9250828210156127d6576127d561277e565b5b828203905092915050565b60006127ec82611ae8565b91506127f783611ae8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561282c5761282b61277e565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061286d601983611a38565b915061287882612837565b602082019050919050565b6000602082019050818103600083015261289c81612860565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006128ff603283611a38565b915061290a826128a3565b604082019050919050565b6000602082019050818103600083015261292e816128f2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061295c82612935565b6129668185612940565b9350612976818560208601611a49565b61297f81611a7c565b840191505092915050565b600060808201905061299f6000830187611b7d565b6129ac6020830186611b7d565b6129b96040830185611c93565b81810360608301526129cb8184612951565b905095945050505050565b6000815190506129e58161199e565b92915050565b600060208284031215612a0157612a00611968565b5b6000612a0f848285016129d6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612a4e602083611a38565b9150612a5982612a18565b602082019050919050565b60006020820190508181036000830152612a7d81612a41565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612aba601c83611a38565b9150612ac582612a84565b602082019050919050565b60006020820190508181036000830152612ae981612aad565b905091905056fea264697066735822122062b63ef7559ef99662e1134debd0239126ad7c2960d6f5337958cf93f305320764736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80636352211e116100a257806395d89b411161007157806395d89b41146102b4578063a22cb465146102d2578063b88d4fde146102ee578063c87b56dd1461030a578063e985e9c51461033a5761010b565b80636352211e1461021a578063697b23651461024a5780636ac6954b1461026857806370a08231146102845761010b565b806323b872dd116100de57806323b872dd146101aa5780633ffabafe146101c657806342842e0e146101e257806342966c68146101fe5761010b565b806301ffc9a71461011057806306fdde0314610140578063081812fc1461015e578063095ea7b31461018e575b600080fd5b61012a600480360381019061012591906119ca565b61036a565b6040516101379190611a12565b60405180910390f35b61014861044c565b6040516101559190611ac6565b60405180910390f35b61017860048036038101906101739190611b1e565b6104de565b6040516101859190611b8c565b60405180910390f35b6101a860048036038101906101a39190611bd3565b610563565b005b6101c460048036038101906101bf9190611c13565b61067b565b005b6101e060048036038101906101db9190611b1e565b6106db565b005b6101fc60048036038101906101f79190611c13565b610810565b005b61021860048036038101906102139190611b1e565b610830565b005b610234600480360381019061022f9190611b1e565b61088c565b6040516102419190611b8c565b60405180910390f35b61025261093e565b60405161025f9190611b8c565b60405180910390f35b610282600480360381019061027d9190611b1e565b610956565b005b61029e60048036038101906102999190611c66565b610a3c565b6040516102ab9190611ca2565b60405180910390f35b6102bc610af4565b6040516102c99190611ac6565b60405180910390f35b6102ec60048036038101906102e79190611ce9565b610b86565b005b61030860048036038101906103039190611e5e565b610b9c565b005b610324600480360381019061031f9190611b1e565b610bfe565b6040516103319190611ac6565b60405180910390f35b610354600480360381019061034f9190611ee1565b610cf1565b6040516103619190611a12565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061043557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610445575061044482610d85565b5b9050919050565b60606000805461045b90611f50565b80601f016020809104026020016040519081016040528092919081815260200182805461048790611f50565b80156104d45780601f106104a9576101008083540402835291602001916104d4565b820191906000526020600020905b8154815290600101906020018083116104b757829003601f168201915b5050505050905090565b60006104e982610def565b610528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051f90611ff4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061056e8261088c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d690612086565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105fe610e5b565b73ffffffffffffffffffffffffffffffffffffffff16148061062d575061062c81610627610e5b565b610cf1565b5b61066c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066390612118565b60405180910390fd5b6106768383610e63565b505050565b61068c610686610e5b565b82610f1c565b6106cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c2906121aa565b60405180910390fd5b6106d6838383610ffa565b505050565b80630cd0a3c0111580156106f35750630cd0a7a78111155b610732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072990612216565b60405180910390fd5b73a7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd27073ffffffffffffffffffffffffffffffffffffffff166323b872dd61076a610e5b565b30846040518463ffffffff1660e01b815260040161078a93929190612236565b600060405180830381600087803b1580156107a457600080fd5b505af11580156107b8573d6000803e3d6000fd5b505050506107cd6107c7610e5b565b82611261565b7f4e710ae1f65c7d0bf7bf5e94581f6f3cabeb1927a5f6709367adc670a810e9a26107f6610e5b565b8260405161080592919061226d565b60405180910390a150565b61082b83838360405180602001604052806000815250610b9c565b505050565b61084161083b610e5b565b82610f1c565b610880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087790612308565b60405180910390fd5b6108898161127f565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c9061239a565b60405180910390fd5b80915050919050565b73a7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd27081565b60006109618261088c565b905061096c82610830565b73a7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd27073ffffffffffffffffffffffffffffffffffffffff166342842e0e306109a5610e5b565b856040518463ffffffff1660e01b81526004016109c493929190612236565b600060405180830381600087803b1580156109de57600080fd5b505af11580156109f2573d6000803e3d6000fd5b505050507f59bfbdc91eb2729ef9ceb3487534310090abb9b3224aa9e6c86727679c5fdfc481610a20610e5b565b84604051610a3093929190612236565b60405180910390a15050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa49061242c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610b0390611f50565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2f90611f50565b8015610b7c5780601f10610b5157610100808354040283529160200191610b7c565b820191906000526020600020905b815481529060010190602001808311610b5f57829003601f168201915b5050505050905090565b610b98610b91610e5b565b838361139c565b5050565b610bad610ba7610e5b565b83610f1c565b610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be3906121aa565b60405180910390fd5b610bf884848484611509565b50505050565b6060610c0982610def565b610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f906124be565b60405180910390fd5b73a7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd27073ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b8152600401610c959190611ca2565b60006040518083038186803b158015610cad57600080fd5b505afa158015610cc1573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610cea919061257f565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610ed68361088c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f2782610def565b610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d9061263a565b60405180910390fd5b6000610f718361088c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610fb35750610fb28185610cf1565b5b80610ff157508373ffffffffffffffffffffffffffffffffffffffff16610fd9846104de565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661101a8261088c565b73ffffffffffffffffffffffffffffffffffffffff1614611070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611067906126cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d79061275e565b60405180910390fd5b6110eb838383611565565b6110f6600082610e63565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461114691906127ad565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119d91906127e1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461125c83838361156a565b505050565b61127b82826040518060200160405280600081525061156f565b5050565b600061128a8261088c565b905061129881600084611565565b6112a3600083610e63565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112f391906127ad565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113988160008461156a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290612883565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fc9190611a12565b60405180910390a3505050565b611514848484610ffa565b611520848484846115ca565b61155f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155690612915565b60405180910390fd5b50505050565b505050565b505050565b6115798383611761565b61158660008484846115ca565b6115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90612915565b60405180910390fd5b505050565b60006115eb8473ffffffffffffffffffffffffffffffffffffffff1661193b565b15611754578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611614610e5b565b8786866040518563ffffffff1660e01b8152600401611636949392919061298a565b602060405180830381600087803b15801561165057600080fd5b505af192505050801561168157506040513d601f19601f8201168201806040525081019061167e91906129eb565b60015b611704573d80600081146116b1576040519150601f19603f3d011682016040523d82523d6000602084013e6116b6565b606091505b506000815114156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390612915565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611759565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890612a64565b60405180910390fd5b6117da81610def565b1561181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190612ad0565b60405180910390fd5b61182660008383611565565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461187691906127e1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119376000838361156a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6119a781611972565b81146119b257600080fd5b50565b6000813590506119c48161199e565b92915050565b6000602082840312156119e0576119df611968565b5b60006119ee848285016119b5565b91505092915050565b60008115159050919050565b611a0c816119f7565b82525050565b6000602082019050611a276000830184611a03565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a67578082015181840152602081019050611a4c565b83811115611a76576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a9882611a2d565b611aa28185611a38565b9350611ab2818560208601611a49565b611abb81611a7c565b840191505092915050565b60006020820190508181036000830152611ae08184611a8d565b905092915050565b6000819050919050565b611afb81611ae8565b8114611b0657600080fd5b50565b600081359050611b1881611af2565b92915050565b600060208284031215611b3457611b33611968565b5b6000611b4284828501611b09565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b7682611b4b565b9050919050565b611b8681611b6b565b82525050565b6000602082019050611ba16000830184611b7d565b92915050565b611bb081611b6b565b8114611bbb57600080fd5b50565b600081359050611bcd81611ba7565b92915050565b60008060408385031215611bea57611be9611968565b5b6000611bf885828601611bbe565b9250506020611c0985828601611b09565b9150509250929050565b600080600060608486031215611c2c57611c2b611968565b5b6000611c3a86828701611bbe565b9350506020611c4b86828701611bbe565b9250506040611c5c86828701611b09565b9150509250925092565b600060208284031215611c7c57611c7b611968565b5b6000611c8a84828501611bbe565b91505092915050565b611c9c81611ae8565b82525050565b6000602082019050611cb76000830184611c93565b92915050565b611cc6816119f7565b8114611cd157600080fd5b50565b600081359050611ce381611cbd565b92915050565b60008060408385031215611d0057611cff611968565b5b6000611d0e85828601611bbe565b9250506020611d1f85828601611cd4565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d6b82611a7c565b810181811067ffffffffffffffff82111715611d8a57611d89611d33565b5b80604052505050565b6000611d9d61195e565b9050611da98282611d62565b919050565b600067ffffffffffffffff821115611dc957611dc8611d33565b5b611dd282611a7c565b9050602081019050919050565b82818337600083830152505050565b6000611e01611dfc84611dae565b611d93565b905082815260208101848484011115611e1d57611e1c611d2e565b5b611e28848285611ddf565b509392505050565b600082601f830112611e4557611e44611d29565b5b8135611e55848260208601611dee565b91505092915050565b60008060008060808587031215611e7857611e77611968565b5b6000611e8687828801611bbe565b9450506020611e9787828801611bbe565b9350506040611ea887828801611b09565b925050606085013567ffffffffffffffff811115611ec957611ec861196d565b5b611ed587828801611e30565b91505092959194509250565b60008060408385031215611ef857611ef7611968565b5b6000611f0685828601611bbe565b9250506020611f1785828601611bbe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f6857607f821691505b60208210811415611f7c57611f7b611f21565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000611fde602c83611a38565b9150611fe982611f82565b604082019050919050565b6000602082019050818103600083015261200d81611fd1565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612070602183611a38565b915061207b82612014565b604082019050919050565b6000602082019050818103600083015261209f81612063565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612102603883611a38565b915061210d826120a6565b604082019050919050565b60006020820190508181036000830152612131816120f5565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612194603183611a38565b915061219f82612138565b604082019050919050565b600060208201905081810360008301526121c381612187565b9050919050565b7f47617a6572733a20696e76616c696420746f6b656e4964000000000000000000600082015250565b6000612200601783611a38565b915061220b826121ca565b602082019050919050565b6000602082019050818103600083015261222f816121f3565b9050919050565b600060608201905061224b6000830186611b7d565b6122586020830185611b7d565b6122656040830184611c93565b949350505050565b60006040820190506122826000830185611b7d565b61228f6020830184611c93565b9392505050565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b60006122f2603083611a38565b91506122fd82612296565b604082019050919050565b60006020820190508181036000830152612321816122e5565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612384602983611a38565b915061238f82612328565b604082019050919050565b600060208201905081810360008301526123b381612377565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612416602a83611a38565b9150612421826123ba565b604082019050919050565b6000602082019050818103600083015261244581612409565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b60006124a8603183611a38565b91506124b38261244c565b604082019050919050565b600060208201905081810360008301526124d78161249b565b9050919050565b600067ffffffffffffffff8211156124f9576124f8611d33565b5b61250282611a7c565b9050602081019050919050565b600061252261251d846124de565b611d93565b90508281526020810184848401111561253e5761253d611d2e565b5b612549848285611a49565b509392505050565b600082601f83011261256657612565611d29565b5b815161257684826020860161250f565b91505092915050565b60006020828403121561259557612594611968565b5b600082015167ffffffffffffffff8111156125b3576125b261196d565b5b6125bf84828501612551565b91505092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612624602c83611a38565b915061262f826125c8565b604082019050919050565b6000602082019050818103600083015261265381612617565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006126b6602583611a38565b91506126c18261265a565b604082019050919050565b600060208201905081810360008301526126e5816126a9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612748602483611a38565b9150612753826126ec565b604082019050919050565b600060208201905081810360008301526127778161273b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127b882611ae8565b91506127c383611ae8565b9250828210156127d6576127d561277e565b5b828203905092915050565b60006127ec82611ae8565b91506127f783611ae8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561282c5761282b61277e565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061286d601983611a38565b915061287882612837565b602082019050919050565b6000602082019050818103600083015261289c81612860565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006128ff603283611a38565b915061290a826128a3565b604082019050919050565b6000602082019050818103600083015261292e816128f2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061295c82612935565b6129668185612940565b9350612976818560208601611a49565b61297f81611a7c565b840191505092915050565b600060808201905061299f6000830187611b7d565b6129ac6020830186611b7d565b6129b96040830185611c93565b81810360608301526129cb8184612951565b905095945050505050565b6000815190506129e58161199e565b92915050565b600060208284031215612a0157612a00611968565b5b6000612a0f848285016129d6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612a4e602083611a38565b9150612a5982612a18565b602082019050919050565b60006020820190508181036000830152612a7d81612a41565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612aba601c83611a38565b9150612ac582612a84565b602082019050919050565b60006020820190508181036000830152612ae981612aad565b905091905056fea264697066735822122062b63ef7559ef99662e1134debd0239126ad7c2960d6f5337958cf93f305320764736f6c63430008090033
Deployed Bytecode Sourcemap
34836:1699:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20826:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21771:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23331:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22854:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24081:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35248:397;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24491:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34388:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21465:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34886:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35706:312;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21195:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21940:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23624:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24747:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36222:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23850:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20826:305;20928:4;20980:25;20965:40;;;:11;:40;;;;:105;;;;21037:33;21022:48;;;:11;:48;;;;20965:105;:158;;;;21087:36;21111:11;21087:23;:36::i;:::-;20965:158;20945:178;;20826:305;;;:::o;21771:100::-;21825:13;21858:5;21851:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21771:100;:::o;23331:221::-;23407:7;23435:16;23443:7;23435;:16::i;:::-;23427:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23520:15;:24;23536:7;23520:24;;;;;;;;;;;;;;;;;;;;;23513:31;;23331:221;;;:::o;22854:411::-;22935:13;22951:23;22966:7;22951:14;:23::i;:::-;22935:39;;22999:5;22993:11;;:2;:11;;;;22985:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23093:5;23077:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23102:37;23119:5;23126:12;:10;:12::i;:::-;23102:16;:37::i;:::-;23077:62;23055:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23236:21;23245:2;23249:7;23236:8;:21::i;:::-;22924:341;22854:411;;:::o;24081:339::-;24276:41;24295:12;:10;:12::i;:::-;24309:7;24276:18;:41::i;:::-;24268:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24384:28;24394:4;24400:2;24404:7;24384:9;:28::i;:::-;24081:339;;;:::o;35248:397::-;35357:7;35344:9;:20;;:44;;;;;35379:9;35368:7;:20;;35344:44;35336:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;34923:42;35427:32;;;35474:12;:10;:12::i;:::-;35509:4;35529:7;35427:120;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35558:32;35568:12;:10;:12::i;:::-;35582:7;35558:9;:32::i;:::-;35606:31;35615:12;:10;:12::i;:::-;35629:7;35606:31;;;;;;;:::i;:::-;;;;;;;;35248:397;:::o;24491:185::-;24629:39;24646:4;24652:2;24656:7;24629:39;;;;;;;;;;;;:16;:39::i;:::-;24491:185;;;:::o;34388:245::-;34506:41;34525:12;:10;:12::i;:::-;34539:7;34506:18;:41::i;:::-;34498:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;34611:14;34617:7;34611:5;:14::i;:::-;34388:245;:::o;21465:239::-;21537:7;21557:13;21573:7;:16;21581:7;21573:16;;;;;;;;;;;;;;;;;;;;;21557:32;;21625:1;21608:19;;:5;:19;;;;21600:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21691:5;21684:12;;;21465:239;;;:::o;34886:79::-;34923:42;34886:79;:::o;35706:312::-;35763:13;35779:16;35787:7;35779;:16::i;:::-;35763:32;;35806:13;35811:7;35806:4;:13::i;:::-;34923:42;35830:36;;;35889:4;35909:12;:10;:12::i;:::-;35936:7;35830:124;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35970:40;35981:5;35988:12;:10;:12::i;:::-;36002:7;35970:40;;;;;;;;:::i;:::-;;;;;;;;35752:266;35706:312;:::o;21195:208::-;21267:7;21312:1;21295:19;;:5;:19;;;;21287:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21379:9;:16;21389:5;21379:16;;;;;;;;;;;;;;;;21372:23;;21195:208;;;:::o;21940:104::-;21996:13;22029:7;22022:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21940:104;:::o;23624:155::-;23719:52;23738:12;:10;:12::i;:::-;23752:8;23762;23719:18;:52::i;:::-;23624:155;;:::o;24747:328::-;24922:41;24941:12;:10;:12::i;:::-;24955:7;24922:18;:41::i;:::-;24914:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25028:39;25042:4;25048:2;25052:7;25061:5;25028:13;:39::i;:::-;24747:328;;;;:::o;36222:310::-;36323:13;36372:16;36380:7;36372;:16::i;:::-;36354:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;34923:42;36479:36;;;36516:7;36479:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36472:52;;36222:310;;;:::o;23850:164::-;23947:4;23971:18;:25;23990:5;23971:25;;;;;;;;;;;;;;;:35;23997:8;23971:35;;;;;;;;;;;;;;;;;;;;;;;;;23964:42;;23850:164;;;;:::o;6338:157::-;6423:4;6462:25;6447:40;;;:11;:40;;;;6440:47;;6338:157;;;:::o;26585:127::-;26650:4;26702:1;26674:30;;:7;:16;26682:7;26674:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26667:37;;26585:127;;;:::o;9091:98::-;9144:7;9171:10;9164:17;;9091:98;:::o;30731:174::-;30833:2;30806:15;:24;30822:7;30806:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30889:7;30885:2;30851:46;;30860:23;30875:7;30860:14;:23::i;:::-;30851:46;;;;;;;;;;;;30731:174;;:::o;26879:348::-;26972:4;26997:16;27005:7;26997;:16::i;:::-;26989:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27073:13;27089:23;27104:7;27089:14;:23::i;:::-;27073:39;;27142:5;27131:16;;:7;:16;;;:52;;;;27151:32;27168:5;27175:7;27151:16;:32::i;:::-;27131:52;:87;;;;27211:7;27187:31;;:20;27199:7;27187:11;:20::i;:::-;:31;;;27131:87;27123:96;;;26879:348;;;;:::o;29988:625::-;30147:4;30120:31;;:23;30135:7;30120:14;:23::i;:::-;:31;;;30112:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;30226:1;30212:16;;:2;:16;;;;30204:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30282:39;30303:4;30309:2;30313:7;30282:20;:39::i;:::-;30386:29;30403:1;30407:7;30386:8;:29::i;:::-;30447:1;30428:9;:15;30438:4;30428:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30476:1;30459:9;:13;30469:2;30459:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30507:2;30488:7;:16;30496:7;30488:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30546:7;30542:2;30527:27;;30536:4;30527:27;;;;;;;;;;;;30567:38;30587:4;30593:2;30597:7;30567:19;:38::i;:::-;29988:625;;;:::o;27569:110::-;27645:26;27655:2;27659:7;27645:26;;;;;;;;;;;;:9;:26::i;:::-;27569:110;;:::o;29231:420::-;29291:13;29307:23;29322:7;29307:14;:23::i;:::-;29291:39;;29343:48;29364:5;29379:1;29383:7;29343:20;:48::i;:::-;29432:29;29449:1;29453:7;29432:8;:29::i;:::-;29494:1;29474:9;:16;29484:5;29474:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;29513:7;:16;29521:7;29513:16;;;;;;;;;;;;29506:23;;;;;;;;;;;29575:7;29571:1;29547:36;;29556:5;29547:36;;;;;;;;;;;;29596:47;29616:5;29631:1;29635:7;29596:19;:47::i;:::-;29280:371;29231:420;:::o;31047:315::-;31202:8;31193:17;;:5;:17;;;;31185:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;31289:8;31251:18;:25;31270:5;31251:25;;;;;;;;;;;;;;;:35;31277:8;31251:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31335:8;31313:41;;31328:5;31313:41;;;31345:8;31313:41;;;;;;:::i;:::-;;;;;;;;31047:315;;;:::o;25957:::-;26114:28;26124:4;26130:2;26134:7;26114:9;:28::i;:::-;26161:48;26184:4;26190:2;26194:7;26203:5;26161:22;:48::i;:::-;26153:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25957:315;;;;:::o;33298:126::-;;;;:::o;33809:125::-;;;;:::o;27906:321::-;28036:18;28042:2;28046:7;28036:5;:18::i;:::-;28087:54;28118:1;28122:2;28126:7;28135:5;28087:22;:54::i;:::-;28065:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27906:321;;;:::o;31927:799::-;32082:4;32103:15;:2;:13;;;:15::i;:::-;32099:620;;;32155:2;32139:36;;;32176:12;:10;:12::i;:::-;32190:4;32196:7;32205:5;32139:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32135:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32398:1;32381:6;:13;:18;32377:272;;;32424:60;;;;;;;;;;:::i;:::-;;;;;;;;32377:272;32599:6;32593:13;32584:6;32580:2;32576:15;32569:38;32135:529;32272:41;;;32262:51;;;:6;:51;;;;32255:58;;;;;32099:620;32703:4;32696:11;;31927:799;;;;;;;:::o;28563:439::-;28657:1;28643:16;;:2;:16;;;;28635:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28716:16;28724:7;28716;:16::i;:::-;28715:17;28707:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28778:45;28807:1;28811:2;28815:7;28778:20;:45::i;:::-;28853:1;28836:9;:13;28846:2;28836:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28884:2;28865:7;:16;28873:7;28865:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28929:7;28925:2;28904:33;;28921:1;28904:33;;;;;;;;;;;;28950:44;28978:1;28982:2;28986:7;28950:19;:44::i;:::-;28563:439;;:::o;10421:326::-;10481:4;10738:1;10716:7;:19;;;:23;10709:30;;10421:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:329::-;5622:6;5671:2;5659:9;5650:7;5646:23;5642:32;5639:119;;;5677:79;;:::i;:::-;5639:119;5797:1;5822:53;5867:7;5858:6;5847:9;5843:22;5822:53;:::i;:::-;5812:63;;5768:117;5563:329;;;;:::o;5898:118::-;5985:24;6003:5;5985:24;:::i;:::-;5980:3;5973:37;5898:118;;:::o;6022:222::-;6115:4;6153:2;6142:9;6138:18;6130:26;;6166:71;6234:1;6223:9;6219:17;6210:6;6166:71;:::i;:::-;6022:222;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:474::-;10102:6;10110;10159:2;10147:9;10138:7;10134:23;10130:32;10127:119;;;10165:79;;:::i;:::-;10127:119;10285:1;10310:53;10355:7;10346:6;10335:9;10331:22;10310:53;:::i;:::-;10300:63;;10256:117;10412:2;10438:53;10483:7;10474:6;10463:9;10459:22;10438:53;:::i;:::-;10428:63;;10383:118;10034:474;;;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:320;10744:6;10781:1;10775:4;10771:12;10761:22;;10828:1;10822:4;10818:12;10849:18;10839:81;;10905:4;10897:6;10893:17;10883:27;;10839:81;10967:2;10959:6;10956:14;10936:18;10933:38;10930:84;;;10986:18;;:::i;:::-;10930:84;10751:269;10700:320;;;:::o;11026:231::-;11166:34;11162:1;11154:6;11150:14;11143:58;11235:14;11230:2;11222:6;11218:15;11211:39;11026:231;:::o;11263:366::-;11405:3;11426:67;11490:2;11485:3;11426:67;:::i;:::-;11419:74;;11502:93;11591:3;11502:93;:::i;:::-;11620:2;11615:3;11611:12;11604:19;;11263:366;;;:::o;11635:419::-;11801:4;11839:2;11828:9;11824:18;11816:26;;11888:9;11882:4;11878:20;11874:1;11863:9;11859:17;11852:47;11916:131;12042:4;11916:131;:::i;:::-;11908:139;;11635:419;;;:::o;12060:220::-;12200:34;12196:1;12188:6;12184:14;12177:58;12269:3;12264:2;12256:6;12252:15;12245:28;12060:220;:::o;12286:366::-;12428:3;12449:67;12513:2;12508:3;12449:67;:::i;:::-;12442:74;;12525:93;12614:3;12525:93;:::i;:::-;12643:2;12638:3;12634:12;12627:19;;12286:366;;;:::o;12658:419::-;12824:4;12862:2;12851:9;12847:18;12839:26;;12911:9;12905:4;12901:20;12897:1;12886:9;12882:17;12875:47;12939:131;13065:4;12939:131;:::i;:::-;12931:139;;12658:419;;;:::o;13083:243::-;13223:34;13219:1;13211:6;13207:14;13200:58;13292:26;13287:2;13279:6;13275:15;13268:51;13083:243;:::o;13332:366::-;13474:3;13495:67;13559:2;13554:3;13495:67;:::i;:::-;13488:74;;13571:93;13660:3;13571:93;:::i;:::-;13689:2;13684:3;13680:12;13673:19;;13332:366;;;:::o;13704:419::-;13870:4;13908:2;13897:9;13893:18;13885:26;;13957:9;13951:4;13947:20;13943:1;13932:9;13928:17;13921:47;13985:131;14111:4;13985:131;:::i;:::-;13977:139;;13704:419;;;:::o;14129:236::-;14269:34;14265:1;14257:6;14253:14;14246:58;14338:19;14333:2;14325:6;14321:15;14314:44;14129:236;:::o;14371:366::-;14513:3;14534:67;14598:2;14593:3;14534:67;:::i;:::-;14527:74;;14610:93;14699:3;14610:93;:::i;:::-;14728:2;14723:3;14719:12;14712:19;;14371:366;;;:::o;14743:419::-;14909:4;14947:2;14936:9;14932:18;14924:26;;14996:9;14990:4;14986:20;14982:1;14971:9;14967:17;14960:47;15024:131;15150:4;15024:131;:::i;:::-;15016:139;;14743:419;;;:::o;15168:173::-;15308:25;15304:1;15296:6;15292:14;15285:49;15168:173;:::o;15347:366::-;15489:3;15510:67;15574:2;15569:3;15510:67;:::i;:::-;15503:74;;15586:93;15675:3;15586:93;:::i;:::-;15704:2;15699:3;15695:12;15688:19;;15347:366;;;:::o;15719:419::-;15885:4;15923:2;15912:9;15908:18;15900:26;;15972:9;15966:4;15962:20;15958:1;15947:9;15943:17;15936:47;16000:131;16126:4;16000:131;:::i;:::-;15992:139;;15719:419;;;:::o;16144:442::-;16293:4;16331:2;16320:9;16316:18;16308:26;;16344:71;16412:1;16401:9;16397:17;16388:6;16344:71;:::i;:::-;16425:72;16493:2;16482:9;16478:18;16469:6;16425:72;:::i;:::-;16507;16575:2;16564:9;16560:18;16551:6;16507:72;:::i;:::-;16144:442;;;;;;:::o;16592:332::-;16713:4;16751:2;16740:9;16736:18;16728:26;;16764:71;16832:1;16821:9;16817:17;16808:6;16764:71;:::i;:::-;16845:72;16913:2;16902:9;16898:18;16889:6;16845:72;:::i;:::-;16592:332;;;;;:::o;16930:235::-;17070:34;17066:1;17058:6;17054:14;17047:58;17139:18;17134:2;17126:6;17122:15;17115:43;16930:235;:::o;17171:366::-;17313:3;17334:67;17398:2;17393:3;17334:67;:::i;:::-;17327:74;;17410:93;17499:3;17410:93;:::i;:::-;17528:2;17523:3;17519:12;17512:19;;17171:366;;;:::o;17543:419::-;17709:4;17747:2;17736:9;17732:18;17724:26;;17796:9;17790:4;17786:20;17782:1;17771:9;17767:17;17760:47;17824:131;17950:4;17824:131;:::i;:::-;17816:139;;17543:419;;;:::o;17968:228::-;18108:34;18104:1;18096:6;18092:14;18085:58;18177:11;18172:2;18164:6;18160:15;18153:36;17968:228;:::o;18202:366::-;18344:3;18365:67;18429:2;18424:3;18365:67;:::i;:::-;18358:74;;18441:93;18530:3;18441:93;:::i;:::-;18559:2;18554:3;18550:12;18543:19;;18202:366;;;:::o;18574:419::-;18740:4;18778:2;18767:9;18763:18;18755:26;;18827:9;18821:4;18817:20;18813:1;18802:9;18798:17;18791:47;18855:131;18981:4;18855:131;:::i;:::-;18847:139;;18574:419;;;:::o;18999:229::-;19139:34;19135:1;19127:6;19123:14;19116:58;19208:12;19203:2;19195:6;19191:15;19184:37;18999:229;:::o;19234:366::-;19376:3;19397:67;19461:2;19456:3;19397:67;:::i;:::-;19390:74;;19473:93;19562:3;19473:93;:::i;:::-;19591:2;19586:3;19582:12;19575:19;;19234:366;;;:::o;19606:419::-;19772:4;19810:2;19799:9;19795:18;19787:26;;19859:9;19853:4;19849:20;19845:1;19834:9;19830:17;19823:47;19887:131;20013:4;19887:131;:::i;:::-;19879:139;;19606:419;;;:::o;20031:236::-;20171:34;20167:1;20159:6;20155:14;20148:58;20240:19;20235:2;20227:6;20223:15;20216:44;20031:236;:::o;20273:366::-;20415:3;20436:67;20500:2;20495:3;20436:67;:::i;:::-;20429:74;;20512:93;20601:3;20512:93;:::i;:::-;20630:2;20625:3;20621:12;20614:19;;20273:366;;;:::o;20645:419::-;20811:4;20849:2;20838:9;20834:18;20826:26;;20898:9;20892:4;20888:20;20884:1;20873:9;20869:17;20862:47;20926:131;21052:4;20926:131;:::i;:::-;20918:139;;20645:419;;;:::o;21070:308::-;21132:4;21222:18;21214:6;21211:30;21208:56;;;21244:18;;:::i;:::-;21208:56;21282:29;21304:6;21282:29;:::i;:::-;21274:37;;21366:4;21360;21356:15;21348:23;;21070:308;;;:::o;21384:421::-;21473:5;21498:66;21514:49;21556:6;21514:49;:::i;:::-;21498:66;:::i;:::-;21489:75;;21587:6;21580:5;21573:21;21625:4;21618:5;21614:16;21663:3;21654:6;21649:3;21645:16;21642:25;21639:112;;;21670:79;;:::i;:::-;21639:112;21760:39;21792:6;21787:3;21782;21760:39;:::i;:::-;21479:326;21384:421;;;;;:::o;21825:355::-;21892:5;21941:3;21934:4;21926:6;21922:17;21918:27;21908:122;;21949:79;;:::i;:::-;21908:122;22059:6;22053:13;22084:90;22170:3;22162:6;22155:4;22147:6;22143:17;22084:90;:::i;:::-;22075:99;;21898:282;21825:355;;;;:::o;22186:524::-;22266:6;22315:2;22303:9;22294:7;22290:23;22286:32;22283:119;;;22321:79;;:::i;:::-;22283:119;22462:1;22451:9;22447:17;22441:24;22492:18;22484:6;22481:30;22478:117;;;22514:79;;:::i;:::-;22478:117;22619:74;22685:7;22676:6;22665:9;22661:22;22619:74;:::i;:::-;22609:84;;22412:291;22186:524;;;;:::o;22716:231::-;22856:34;22852:1;22844:6;22840:14;22833:58;22925:14;22920:2;22912:6;22908:15;22901:39;22716:231;:::o;22953:366::-;23095:3;23116:67;23180:2;23175:3;23116:67;:::i;:::-;23109:74;;23192:93;23281:3;23192:93;:::i;:::-;23310:2;23305:3;23301:12;23294:19;;22953:366;;;:::o;23325:419::-;23491:4;23529:2;23518:9;23514:18;23506:26;;23578:9;23572:4;23568:20;23564:1;23553:9;23549:17;23542:47;23606:131;23732:4;23606:131;:::i;:::-;23598:139;;23325:419;;;:::o;23750:224::-;23890:34;23886:1;23878:6;23874:14;23867:58;23959:7;23954:2;23946:6;23942:15;23935:32;23750:224;:::o;23980:366::-;24122:3;24143:67;24207:2;24202:3;24143:67;:::i;:::-;24136:74;;24219:93;24308:3;24219:93;:::i;:::-;24337:2;24332:3;24328:12;24321:19;;23980:366;;;:::o;24352:419::-;24518:4;24556:2;24545:9;24541:18;24533:26;;24605:9;24599:4;24595:20;24591:1;24580:9;24576:17;24569:47;24633:131;24759:4;24633:131;:::i;:::-;24625:139;;24352:419;;;:::o;24777:223::-;24917:34;24913:1;24905:6;24901:14;24894:58;24986:6;24981:2;24973:6;24969:15;24962:31;24777:223;:::o;25006:366::-;25148:3;25169:67;25233:2;25228:3;25169:67;:::i;:::-;25162:74;;25245:93;25334:3;25245:93;:::i;:::-;25363:2;25358:3;25354:12;25347:19;;25006:366;;;:::o;25378:419::-;25544:4;25582:2;25571:9;25567:18;25559:26;;25631:9;25625:4;25621:20;25617:1;25606:9;25602:17;25595:47;25659:131;25785:4;25659:131;:::i;:::-;25651:139;;25378:419;;;:::o;25803:180::-;25851:77;25848:1;25841:88;25948:4;25945:1;25938:15;25972:4;25969:1;25962:15;25989:191;26029:4;26049:20;26067:1;26049:20;:::i;:::-;26044:25;;26083:20;26101:1;26083:20;:::i;:::-;26078:25;;26122:1;26119;26116:8;26113:34;;;26127:18;;:::i;:::-;26113:34;26172:1;26169;26165:9;26157:17;;25989:191;;;;:::o;26186:305::-;26226:3;26245:20;26263:1;26245:20;:::i;:::-;26240:25;;26279:20;26297:1;26279:20;:::i;:::-;26274:25;;26433:1;26365:66;26361:74;26358:1;26355:81;26352:107;;;26439:18;;:::i;:::-;26352:107;26483:1;26480;26476:9;26469:16;;26186:305;;;;:::o;26497:175::-;26637:27;26633:1;26625:6;26621:14;26614:51;26497:175;:::o;26678:366::-;26820:3;26841:67;26905:2;26900:3;26841:67;:::i;:::-;26834:74;;26917:93;27006:3;26917:93;:::i;:::-;27035:2;27030:3;27026:12;27019:19;;26678:366;;;:::o;27050:419::-;27216:4;27254:2;27243:9;27239:18;27231:26;;27303:9;27297:4;27293:20;27289:1;27278:9;27274:17;27267:47;27331:131;27457:4;27331:131;:::i;:::-;27323:139;;27050:419;;;:::o;27475:237::-;27615:34;27611:1;27603:6;27599:14;27592:58;27684:20;27679:2;27671:6;27667:15;27660:45;27475:237;:::o;27718:366::-;27860:3;27881:67;27945:2;27940:3;27881:67;:::i;:::-;27874:74;;27957:93;28046:3;27957:93;:::i;:::-;28075:2;28070:3;28066:12;28059:19;;27718:366;;;:::o;28090:419::-;28256:4;28294:2;28283:9;28279:18;28271:26;;28343:9;28337:4;28333:20;28329:1;28318:9;28314:17;28307:47;28371:131;28497:4;28371:131;:::i;:::-;28363:139;;28090:419;;;:::o;28515:98::-;28566:6;28600:5;28594:12;28584:22;;28515:98;;;:::o;28619:168::-;28702:11;28736:6;28731:3;28724:19;28776:4;28771:3;28767:14;28752:29;;28619:168;;;;:::o;28793:360::-;28879:3;28907:38;28939:5;28907:38;:::i;:::-;28961:70;29024:6;29019:3;28961:70;:::i;:::-;28954:77;;29040:52;29085:6;29080:3;29073:4;29066:5;29062:16;29040:52;:::i;:::-;29117:29;29139:6;29117:29;:::i;:::-;29112:3;29108:39;29101:46;;28883:270;28793:360;;;;:::o;29159:640::-;29354:4;29392:3;29381:9;29377:19;29369:27;;29406:71;29474:1;29463:9;29459:17;29450:6;29406:71;:::i;:::-;29487:72;29555:2;29544:9;29540:18;29531:6;29487:72;:::i;:::-;29569;29637:2;29626:9;29622:18;29613:6;29569:72;:::i;:::-;29688:9;29682:4;29678:20;29673:2;29662:9;29658:18;29651:48;29716:76;29787:4;29778:6;29716:76;:::i;:::-;29708:84;;29159:640;;;;;;;:::o;29805:141::-;29861:5;29892:6;29886:13;29877:22;;29908:32;29934:5;29908:32;:::i;:::-;29805:141;;;;:::o;29952:349::-;30021:6;30070:2;30058:9;30049:7;30045:23;30041:32;30038:119;;;30076:79;;:::i;:::-;30038:119;30196:1;30221:63;30276:7;30267:6;30256:9;30252:22;30221:63;:::i;:::-;30211:73;;30167:127;29952:349;;;;:::o;30307:182::-;30447:34;30443:1;30435:6;30431:14;30424:58;30307:182;:::o;30495:366::-;30637:3;30658:67;30722:2;30717:3;30658:67;:::i;:::-;30651:74;;30734:93;30823:3;30734:93;:::i;:::-;30852:2;30847:3;30843:12;30836:19;;30495:366;;;:::o;30867:419::-;31033:4;31071:2;31060:9;31056:18;31048:26;;31120:9;31114:4;31110:20;31106:1;31095:9;31091:17;31084:47;31148:131;31274:4;31148:131;:::i;:::-;31140:139;;30867:419;;;:::o;31292:178::-;31432:30;31428:1;31420:6;31416:14;31409:54;31292:178;:::o;31476:366::-;31618:3;31639:67;31703:2;31698:3;31639:67;:::i;:::-;31632:74;;31715:93;31804:3;31715:93;:::i;:::-;31833:2;31828:3;31824:12;31817:19;;31476:366;;;:::o;31848:419::-;32014:4;32052:2;32041:9;32037:18;32029:26;;32101:9;32095:4;32091:20;32087:1;32076:9;32072:17;32065:47;32129:131;32255:4;32129:131;:::i;:::-;32121:139;;31848:419;;;:::o
Swarm Source
ipfs://62b63ef7559ef99662e1134debd0239126ad7c2960d6f5337958cf93f3053207
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 29 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.