Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 62 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 21180841 | 19 days ago | IN | 0 ETH | 0.0037423 | ||||
Set Approval For... | 16829965 | 628 days ago | IN | 0 ETH | 0.00110317 | ||||
Set Approval For... | 16322335 | 699 days ago | IN | 0 ETH | 0.00094969 | ||||
Set Approval For... | 15435397 | 826 days ago | IN | 0 ETH | 0.00107477 | ||||
Set Approval For... | 15297415 | 847 days ago | IN | 0 ETH | 0.00017532 | ||||
Set Approval For... | 15245798 | 856 days ago | IN | 0 ETH | 0.00048547 | ||||
Set Approval For... | 15245783 | 856 days ago | IN | 0 ETH | 0.00069167 | ||||
Set Approval For... | 15241961 | 856 days ago | IN | 0 ETH | 0.0185076 | ||||
Set Approval For... | 15207256 | 862 days ago | IN | 0 ETH | 0.00030808 | ||||
Set Approval For... | 15031969 | 889 days ago | IN | 0 ETH | 0.0013005 | ||||
Set Approval For... | 15030242 | 890 days ago | IN | 0 ETH | 0.00071175 | ||||
Set Approval For... | 14992062 | 897 days ago | IN | 0 ETH | 0.00052129 | ||||
Set Approval For... | 14950639 | 904 days ago | IN | 0 ETH | 0.00251352 | ||||
Set Approval For... | 14909202 | 911 days ago | IN | 0 ETH | 0.0014031 | ||||
Set Approval For... | 14720620 | 941 days ago | IN | 0 ETH | 0.0009056 | ||||
Set Approval For... | 14720428 | 941 days ago | IN | 0 ETH | 0.00172103 | ||||
Set Approval For... | 14720151 | 941 days ago | IN | 0 ETH | 0.00149418 | ||||
Set Approval For... | 14700284 | 945 days ago | IN | 0 ETH | 0.00267851 | ||||
Set Approval For... | 14675443 | 948 days ago | IN | 0 ETH | 0.00229289 | ||||
Set Approval For... | 14643782 | 953 days ago | IN | 0 ETH | 0.00079475 | ||||
Set Approval For... | 14643507 | 953 days ago | IN | 0 ETH | 0.00134713 | ||||
Set Approval For... | 14641700 | 954 days ago | IN | 0 ETH | 0.00281995 | ||||
Set Approval For... | 14626437 | 956 days ago | IN | 0 ETH | 0.00253062 | ||||
Set Approval For... | 14604694 | 960 days ago | IN | 0 ETH | 0.0010831 | ||||
Set Approval For... | 14603727 | 960 days ago | IN | 0 ETH | 0.0010558 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
14060582 | 1044 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
ancientnft
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-23 */ // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [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); } } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: Contracts/ancientnft.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ interface erc20{ function mint(address add, uint amount)external; } contract ancientnft is Context, ERC165, IERC721, IERC721Metadata ,Ownable,IERC721Enumerable{ using Address for address; using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIds; uint counter; uint _counter; erc20 _erc20; string public baseURI_ = "ipfs://QmYDwia8r68Mp3EWhmNtfVJA6FxYn52UMDNvkSaSUwtufU/"; string public baseExtension = ".json"; // 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; mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; mapping(uint => mapping(address => uint)) private idtostartingtimet; mapping (address =>bool) onlyapprovedcontractaddress; /** * @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 {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual { if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ancientnft.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ancientnft.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return baseURI_; } function setapprovedcontractaddress(address add)external { require(counter<1, "already called"); onlyapprovedcontractaddress[add] =true; counter+=1; } function mint(address _to) public { require(onlyapprovedcontractaddress[msg.sender] ==true, "you are not approved to mint"); if (_tokenIds.current()==0){ _tokenIds.increment(); } uint256 newTokenID = _tokenIds.current(); _safeMint(_to, newTokenID); _tokenIds.increment(); } function approve(address to, uint256 tokenId) public virtual override { address owner = ancientnft.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 setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI_ = _newBaseURI; } 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 = ancientnft.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; idtostartingtimet[tokenId][to]=block.timestamp; // totalSupply+=1; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } function seterc20address(address add)external { require(_counter<1, "already called this function"); _erc20= erc20(add); _counter++; } function walletofNFT(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function checkrewardbal(address add)public view returns(uint){ uint256 ownerTokenCount = balanceOf(add); uint256[] memory tokenIds = new uint256[](ownerTokenCount); tokenIds= walletofNFT(add); uint current; uint reward; uint rewardbal; for (uint i ;i<ownerTokenCount; i++){ if (idtostartingtimet[tokenIds[i]][add]>0 ){ current = block.timestamp - idtostartingtimet[tokenIds[i]][add]; reward = ((50*10**18)*current)/86400; rewardbal+=reward; } } return rewardbal; } function claimreward(address add) public { require(balanceOf(add)>0, "not qualified for reward"); uint256 ownerTokenCount = balanceOf(add); uint256[] memory tokenIds = new uint256[](ownerTokenCount); tokenIds= walletofNFT(add); uint current; uint reward; uint rewardbal; for (uint i ;i<ownerTokenCount; i++){ if (idtostartingtimet[tokenIds[i]][add]>0 ){ current = block.timestamp - idtostartingtimet[tokenIds[i]][add]; reward = ((50*10**18)*current)/86400; rewardbal+=reward; idtostartingtimet[tokenIds[i]][add]=block.timestamp; } } _erc20.mint(add,rewardbal); } /** * @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 = ancientnft.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(ancientnft.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; idtostartingtimet[tokenId][to]=block.timestamp; idtostartingtimet[tokenId][from]=0; 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(ancientnft.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 {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"add","type":"address"}],"name":"checkrewardbal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"add","type":"address"}],"name":"claimreward","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":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"add","type":"address"}],"name":"setapprovedcontractaddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"add","type":"address"}],"name":"seterc20address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletofNFT","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60e06040526036608081815290620026ab60a0398051620000299160059160209091019062000118565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000589160069162000118565b503480156200006657600080fd5b50604051620026e1380380620026e1833981016040819052620000899162000275565b6200009433620000c8565b8151620000a990600790602085019062000118565b508051620000bf90600890602084019062000118565b50505062000332565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200012690620002df565b90600052602060002090601f0160209004810192826200014a576000855562000195565b82601f106200016557805160ff191683800117855562000195565b8280016001018555821562000195579182015b828111156200019557825182559160200191906001019062000178565b50620001a3929150620001a7565b5090565b5b80821115620001a35760008155600101620001a8565b600082601f830112620001d057600080fd5b81516001600160401b0380821115620001ed57620001ed6200031c565b604051601f8301601f19908116603f011681019082821181831017156200021857620002186200031c565b816040528381526020925086838588010111156200023557600080fd5b600091505b838210156200025957858201830151818301840152908201906200023a565b838211156200026b5760008385830101525b9695505050505050565b600080604083850312156200028957600080fd5b82516001600160401b0380821115620002a157600080fd5b620002af86838701620001be565b93506020850151915080821115620002c657600080fd5b50620002d585828601620001be565b9150509250929050565b600181811c90821680620002f457607f821691505b602082108114156200031657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61236980620003426000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063b6b285d911610097578063c87b56dd11610071578063c87b56dd146103ab578063e985e9c5146103be578063f259a29e146103fa578063f2fde38b1461040257600080fd5b8063b6b285d91461037d578063b88d4fde14610390578063c6682862146103a357600080fd5b8063715018a6116100d3578063715018a6146103495780638da5cb5b1461035157806395d89b4114610362578063a22cb4651461036a57600080fd5b80636352211e146103105780636a6278421461032357806370a082311461033657600080fd5b80632d38f11e11610166578063434358e011610140578063434358e0146102c45780634f6ccce7146102d7578063503d2e72146102ea57806355f804b3146102fd57600080fd5b80632d38f11e1461027e5780632f745c591461029e57806342842e0e146102b157600080fd5b8063095ea7b3116101a2578063095ea7b31461023157806318160ddd1461024657806323b872dd146102585780632b875c941461026b57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004611f54565b610415565b60405190151581526020015b60405180910390f35b6101f9610467565b6040516101e891906120cc565b610219610214366004611fd7565b6104f9565b6040516001600160a01b0390911681526020016101e8565b61024461023f366004611f2a565b610593565b005b600f545b6040519081526020016101e8565b610244610266366004611e36565b6106a9565b61024a610279366004611de8565b6106da565b61029161028c366004611de8565b61084b565b6040516101e89190612088565b61024a6102ac366004611f2a565b6108ed565b6102446102bf366004611e36565b610983565b6102446102d2366004611de8565b61099e565b61024a6102e5366004611fd7565b610a23565b6102446102f8366004611de8565b610ab6565b61024461030b366004611f8e565b610d38565b61021961031e366004611fd7565b610d79565b610244610331366004611de8565b610df0565b61024a610344366004611de8565b610e8e565b610244610f15565b6000546001600160a01b0316610219565b6101f9610f4b565b610244610378366004611eee565b610f5a565b61024461038b366004611de8565b610f65565b61024461039e366004611e72565b610fe9565b6101f9611021565b6101f96103b9366004611fd7565b6110af565b6101dc6103cc366004611e03565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205460ff1690565b6101f961118a565b610244610410366004611de8565b611197565b60006001600160e01b031982166380ac58cd60e01b148061044657506001600160e01b03198216635b5e139f60e01b145b8061046157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606007805461047690612245565b80601f01602080910402602001604051908101604052809291908181526020018280546104a290612245565b80156104ef5780601f106104c4576101008083540402835291602001916104ef565b820191906000526020600020905b8154815290600101906020018083116104d257829003601f168201915b5050505050905090565b6000818152600960205260408120546001600160a01b03166105775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600b60205260409020546001600160a01b031690565b600061059e82610d79565b9050806001600160a01b0316836001600160a01b0316141561060c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161056e565b336001600160a01b0382161480610628575061062881336103cc565b61069a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161056e565b6106a48383611232565b505050565b6106b333826112a0565b6106cf5760405162461bcd60e51b815260040161056e90612166565b6106a4838383611397565b6000806106e683610e8e565b905060008167ffffffffffffffff81111561070357610703612307565b60405190808252806020026020018201604052801561072c578160200160208202803683370190505b5090506107388461084b565b90506000806000805b8581101561084057600060116000878481518110610761576107616122f1565b6020026020010151815260200190815260200160002060008a6001600160a01b03166001600160a01b0316815260200190815260200160002054111561082e57601160008683815181106107b7576107b76122f1565b602002602001015181526020019081526020016000206000896001600160a01b03166001600160a01b0316815260200190815260200160002054426107fc9190612202565b935062015180610815856802b5e3af16b18800006121e3565b61081f91906121cf565b925061082b83836121b7565b91505b8061083881612280565b915050610741565b509695505050505050565b6060600061085883610e8e565b905060008167ffffffffffffffff81111561087557610875612307565b60405190808252806020026020018201604052801561089e578160200160208202803683370190505b50905060005b828110156108e5576108b685826108ed565b8282815181106108c8576108c86122f1565b6020908102919091010152806108dd81612280565b9150506108a4565b509392505050565b60006108f883610e8e565b821061095a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161056e565b506001600160a01b03919091166000908152600d60209081526040808320938352929052205490565b6106a483838360405180602001604052806000815250610fe9565b6001600354106109f05760405162461bcd60e51b815260206004820152601c60248201527f616c72656164792063616c6c656420746869732066756e6374696f6e00000000604482015260640161056e565b600480546001600160a01b0319166001600160a01b03831617905560038054906000610a1b83612280565b919050555050565b6000610a2e600f5490565b8210610a915760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161056e565b600f8281548110610aa457610aa46122f1565b90600052602060002001549050919050565b6000610ac182610e8e565b11610b0e5760405162461bcd60e51b815260206004820152601860248201527f6e6f74207175616c696669656420666f72207265776172640000000000000000604482015260640161056e565b6000610b1982610e8e565b905060008167ffffffffffffffff811115610b3657610b36612307565b604051908082528060200260200182016040528015610b5f578160200160208202803683370190505b509050610b6b8361084b565b90506000806000805b85811015610cc757600060116000878481518110610b9457610b946122f1565b602002602001015181526020019081526020016000206000896001600160a01b03166001600160a01b03168152602001908152602001600020541115610cb55760116000868381518110610bea57610bea6122f1565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000205442610c2f9190612202565b935062015180610c48856802b5e3af16b18800006121e3565b610c5291906121cf565b9250610c5e83836121b7565b91504260116000878481518110610c7757610c776122f1565b602002602001015181526020019081526020016000206000896001600160a01b03166001600160a01b03168152602001908152602001600020819055505b80610cbf81612280565b915050610b74565b50600480546040516340c10f1960e01b81526001600160a01b0389811693820193909352602481018490529116906340c10f1990604401600060405180830381600087803b158015610d1857600080fd5b505af1158015610d2c573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b03163314610d625760405162461bcd60e51b815260040161056e90612131565b8051610d75906005906020840190611cbd565b5050565b6000818152600960205260408120546001600160a01b0316806104615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161056e565b3360009081526012602052604090205460ff161515600114610e545760405162461bcd60e51b815260206004820152601d60248201527f796f7520617265206e6f7420617070726f7665642020746f206d696e74000000604482015260640161056e565b600154610e6957610e69600180546001019055565b6000610e7460015490565b9050610e80828261155a565b610d75600180546001019055565b60006001600160a01b038216610ef95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161056e565b506001600160a01b03166000908152600a602052604090205490565b6000546001600160a01b03163314610f3f5760405162461bcd60e51b815260040161056e90612131565b610f496000611574565b565b60606008805461047690612245565b610d753383836115c4565b600160025410610fa85760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e4818d85b1b195960921b604482015260640161056e565b6001600160a01b0381166000908152601260205260408120805460ff191660019081179091556002805491929091610fe19084906121b7565b909155505050565b610ff333836112a0565b61100f5760405162461bcd60e51b815260040161056e90612166565b61101b84848484611693565b50505050565b6006805461102e90612245565b80601f016020809104026020016040519081016040528092919081815260200182805461105a90612245565b80156110a75780601f1061107c576101008083540402835291602001916110a7565b820191906000526020600020905b81548152906001019060200180831161108a57829003601f168201915b505050505081565b6000818152600960205260409020546060906001600160a01b031661112e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161056e565b60006111386116c6565b905060008151116111585760405180602001604052806000815250611183565b80611162846116d5565b60405160200161117392919061201c565b6040516020818303038152906040525b9392505050565b6005805461102e90612245565b6000546001600160a01b031633146111c15760405162461bcd60e51b815260040161056e90612131565b6001600160a01b0381166112265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056e565b61122f81611574565b50565b6000818152600b6020526040902080546001600160a01b0319166001600160a01b038416908117909155819061126782610d79565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600960205260408120546001600160a01b03166113195760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056e565b600061132483610d79565b9050806001600160a01b0316846001600160a01b0316148061135f5750836001600160a01b0316611354846104f9565b6001600160a01b0316145b8061138f57506001600160a01b038082166000908152600c602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113aa82610d79565b6001600160a01b03161461140e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161056e565b6001600160a01b0382166114705760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161056e565b61147b8383836117d3565b611486600082611232565b6001600160a01b0383166000908152600a602052604081208054600192906114af908490612202565b90915550506001600160a01b0382166000908152600a602052604081208054600192906114dd9084906121b7565b9091555050600081815260096020908152604080832080546001600160a01b0319166001600160a01b03878116918217909255601184528285208186529093528184204290558616808452818420849055905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d7582826040518060200160405280600081525061188b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156116265760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161056e565b6001600160a01b038381166000818152600c6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61169e848484611397565b6116aa848484846118be565b61101b5760405162461bcd60e51b815260040161056e906120df565b60606005805461047690612245565b6060816116f95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611723578061170d81612280565b915061171c9050600a836121cf565b91506116fd565b60008167ffffffffffffffff81111561173e5761173e612307565b6040519080825280601f01601f191660200182016040528015611768576020820181803683370190505b5090505b841561138f5761177d600183612202565b915061178a600a8661229b565b6117959060306121b7565b60f81b8183815181106117aa576117aa6122f1565b60200101906001600160f81b031916908160001a9053506117cc600a866121cf565b945061176c565b6001600160a01b03831661182e5761182981600f80546000838152601060205260408120829055600182018355919091527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020155565b611851565b816001600160a01b0316836001600160a01b0316146118515761185183826119cb565b6001600160a01b038216611868576106a481611a68565b826001600160a01b0316826001600160a01b0316146106a4576106a48282611b17565b6118958383611b5b565b6118a260008484846118be565b6106a45760405162461bcd60e51b815260040161056e906120df565b60006001600160a01b0384163b156119c057604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061190290339089908890889060040161204b565b602060405180830381600087803b15801561191c57600080fd5b505af192505050801561194c575060408051601f3d908101601f1916820190925261194991810190611f71565b60015b6119a6573d80801561197a576040519150601f19603f3d011682016040523d82523d6000602084013e61197f565b606091505b50805161199e5760405162461bcd60e51b815260040161056e906120df565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061138f565b506001949350505050565b600060016119d884610e8e565b6119e29190612202565b6000838152600e6020526040902054909150808214611a35576001600160a01b0384166000908152600d602090815260408083208584528252808320548484528184208190558352600e90915290208190555b506000918252600e602090815260408084208490556001600160a01b039094168352600d81528383209183525290812055565b600f54600090611a7a90600190612202565b600083815260106020526040812054600f8054939450909284908110611aa257611aa26122f1565b9060005260206000200154905080600f8381548110611ac357611ac36122f1565b600091825260208083209091019290925582815260109091526040808220849055858252812055600f805480611afb57611afb6122db565b6001900381819060005260206000200160009055905550505050565b6000611b2283610e8e565b6001600160a01b039093166000908152600d602090815260408083208684528252808320859055938252600e9052919091209190915550565b6001600160a01b038216611bb15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161056e565b6000818152600960205260409020546001600160a01b031615611c165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161056e565b611c22600083836117d3565b6001600160a01b0382166000908152600a60205260408120805460019290611c4b9084906121b7565b9091555050600081815260096020908152604080832080546001600160a01b0319166001600160a01b03871690811790915560118352818420818552909252808320429055518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cc990612245565b90600052602060002090601f016020900481019282611ceb5760008555611d31565b82601f10611d0457805160ff1916838001178555611d31565b82800160010185558215611d31579182015b82811115611d31578251825591602001919060010190611d16565b50611d3d929150611d41565b5090565b5b80821115611d3d5760008155600101611d42565b600067ffffffffffffffff80841115611d7157611d71612307565b604051601f8501601f19908116603f01168101908282118183101715611d9957611d99612307565b81604052809350858152868686011115611db257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611de357600080fd5b919050565b600060208284031215611dfa57600080fd5b61118382611dcc565b60008060408385031215611e1657600080fd5b611e1f83611dcc565b9150611e2d60208401611dcc565b90509250929050565b600080600060608486031215611e4b57600080fd5b611e5484611dcc565b9250611e6260208501611dcc565b9150604084013590509250925092565b60008060008060808587031215611e8857600080fd5b611e9185611dcc565b9350611e9f60208601611dcc565b925060408501359150606085013567ffffffffffffffff811115611ec257600080fd5b8501601f81018713611ed357600080fd5b611ee287823560208401611d56565b91505092959194509250565b60008060408385031215611f0157600080fd5b611f0a83611dcc565b915060208301358015158114611f1f57600080fd5b809150509250929050565b60008060408385031215611f3d57600080fd5b611f4683611dcc565b946020939093013593505050565b600060208284031215611f6657600080fd5b81356111838161231d565b600060208284031215611f8357600080fd5b81516111838161231d565b600060208284031215611fa057600080fd5b813567ffffffffffffffff811115611fb757600080fd5b8201601f81018413611fc857600080fd5b61138f84823560208401611d56565b600060208284031215611fe957600080fd5b5035919050565b60008151808452612008816020860160208601612219565b601f01601f19169290920160200192915050565b6000835161202e818460208801612219565b835190830190612042818360208801612219565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207e90830184611ff0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120c0578351835292840192918401916001016120a4565b50909695505050505050565b6020815260006111836020830184611ff0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121ca576121ca6122af565b500190565b6000826121de576121de6122c5565b500490565b60008160001904831182151516156121fd576121fd6122af565b500290565b600082821015612214576122146122af565b500390565b60005b8381101561223457818101518382015260200161221c565b8381111561101b5750506000910152565b600181811c9082168061225957607f821691505b6020821081141561227a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612294576122946122af565b5060010190565b6000826122aa576122aa6122c5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461122f57600080fdfea2646970667358221220b46c2ab11490785f54e498ec573b7f02d7ef3ae7d2dd8a89182b6690cb09693864736f6c63430008070033697066733a2f2f516d5944776961387236384d70334557686d4e7466564a41364678596e3532554d444e766b5361535577747566552f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000008416e6369656e74730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005414e434e54000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063b6b285d911610097578063c87b56dd11610071578063c87b56dd146103ab578063e985e9c5146103be578063f259a29e146103fa578063f2fde38b1461040257600080fd5b8063b6b285d91461037d578063b88d4fde14610390578063c6682862146103a357600080fd5b8063715018a6116100d3578063715018a6146103495780638da5cb5b1461035157806395d89b4114610362578063a22cb4651461036a57600080fd5b80636352211e146103105780636a6278421461032357806370a082311461033657600080fd5b80632d38f11e11610166578063434358e011610140578063434358e0146102c45780634f6ccce7146102d7578063503d2e72146102ea57806355f804b3146102fd57600080fd5b80632d38f11e1461027e5780632f745c591461029e57806342842e0e146102b157600080fd5b8063095ea7b3116101a2578063095ea7b31461023157806318160ddd1461024657806323b872dd146102585780632b875c941461026b57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004611f54565b610415565b60405190151581526020015b60405180910390f35b6101f9610467565b6040516101e891906120cc565b610219610214366004611fd7565b6104f9565b6040516001600160a01b0390911681526020016101e8565b61024461023f366004611f2a565b610593565b005b600f545b6040519081526020016101e8565b610244610266366004611e36565b6106a9565b61024a610279366004611de8565b6106da565b61029161028c366004611de8565b61084b565b6040516101e89190612088565b61024a6102ac366004611f2a565b6108ed565b6102446102bf366004611e36565b610983565b6102446102d2366004611de8565b61099e565b61024a6102e5366004611fd7565b610a23565b6102446102f8366004611de8565b610ab6565b61024461030b366004611f8e565b610d38565b61021961031e366004611fd7565b610d79565b610244610331366004611de8565b610df0565b61024a610344366004611de8565b610e8e565b610244610f15565b6000546001600160a01b0316610219565b6101f9610f4b565b610244610378366004611eee565b610f5a565b61024461038b366004611de8565b610f65565b61024461039e366004611e72565b610fe9565b6101f9611021565b6101f96103b9366004611fd7565b6110af565b6101dc6103cc366004611e03565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205460ff1690565b6101f961118a565b610244610410366004611de8565b611197565b60006001600160e01b031982166380ac58cd60e01b148061044657506001600160e01b03198216635b5e139f60e01b145b8061046157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606007805461047690612245565b80601f01602080910402602001604051908101604052809291908181526020018280546104a290612245565b80156104ef5780601f106104c4576101008083540402835291602001916104ef565b820191906000526020600020905b8154815290600101906020018083116104d257829003601f168201915b5050505050905090565b6000818152600960205260408120546001600160a01b03166105775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600b60205260409020546001600160a01b031690565b600061059e82610d79565b9050806001600160a01b0316836001600160a01b0316141561060c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161056e565b336001600160a01b0382161480610628575061062881336103cc565b61069a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161056e565b6106a48383611232565b505050565b6106b333826112a0565b6106cf5760405162461bcd60e51b815260040161056e90612166565b6106a4838383611397565b6000806106e683610e8e565b905060008167ffffffffffffffff81111561070357610703612307565b60405190808252806020026020018201604052801561072c578160200160208202803683370190505b5090506107388461084b565b90506000806000805b8581101561084057600060116000878481518110610761576107616122f1565b6020026020010151815260200190815260200160002060008a6001600160a01b03166001600160a01b0316815260200190815260200160002054111561082e57601160008683815181106107b7576107b76122f1565b602002602001015181526020019081526020016000206000896001600160a01b03166001600160a01b0316815260200190815260200160002054426107fc9190612202565b935062015180610815856802b5e3af16b18800006121e3565b61081f91906121cf565b925061082b83836121b7565b91505b8061083881612280565b915050610741565b509695505050505050565b6060600061085883610e8e565b905060008167ffffffffffffffff81111561087557610875612307565b60405190808252806020026020018201604052801561089e578160200160208202803683370190505b50905060005b828110156108e5576108b685826108ed565b8282815181106108c8576108c86122f1565b6020908102919091010152806108dd81612280565b9150506108a4565b509392505050565b60006108f883610e8e565b821061095a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161056e565b506001600160a01b03919091166000908152600d60209081526040808320938352929052205490565b6106a483838360405180602001604052806000815250610fe9565b6001600354106109f05760405162461bcd60e51b815260206004820152601c60248201527f616c72656164792063616c6c656420746869732066756e6374696f6e00000000604482015260640161056e565b600480546001600160a01b0319166001600160a01b03831617905560038054906000610a1b83612280565b919050555050565b6000610a2e600f5490565b8210610a915760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161056e565b600f8281548110610aa457610aa46122f1565b90600052602060002001549050919050565b6000610ac182610e8e565b11610b0e5760405162461bcd60e51b815260206004820152601860248201527f6e6f74207175616c696669656420666f72207265776172640000000000000000604482015260640161056e565b6000610b1982610e8e565b905060008167ffffffffffffffff811115610b3657610b36612307565b604051908082528060200260200182016040528015610b5f578160200160208202803683370190505b509050610b6b8361084b565b90506000806000805b85811015610cc757600060116000878481518110610b9457610b946122f1565b602002602001015181526020019081526020016000206000896001600160a01b03166001600160a01b03168152602001908152602001600020541115610cb55760116000868381518110610bea57610bea6122f1565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000205442610c2f9190612202565b935062015180610c48856802b5e3af16b18800006121e3565b610c5291906121cf565b9250610c5e83836121b7565b91504260116000878481518110610c7757610c776122f1565b602002602001015181526020019081526020016000206000896001600160a01b03166001600160a01b03168152602001908152602001600020819055505b80610cbf81612280565b915050610b74565b50600480546040516340c10f1960e01b81526001600160a01b0389811693820193909352602481018490529116906340c10f1990604401600060405180830381600087803b158015610d1857600080fd5b505af1158015610d2c573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b03163314610d625760405162461bcd60e51b815260040161056e90612131565b8051610d75906005906020840190611cbd565b5050565b6000818152600960205260408120546001600160a01b0316806104615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161056e565b3360009081526012602052604090205460ff161515600114610e545760405162461bcd60e51b815260206004820152601d60248201527f796f7520617265206e6f7420617070726f7665642020746f206d696e74000000604482015260640161056e565b600154610e6957610e69600180546001019055565b6000610e7460015490565b9050610e80828261155a565b610d75600180546001019055565b60006001600160a01b038216610ef95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161056e565b506001600160a01b03166000908152600a602052604090205490565b6000546001600160a01b03163314610f3f5760405162461bcd60e51b815260040161056e90612131565b610f496000611574565b565b60606008805461047690612245565b610d753383836115c4565b600160025410610fa85760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e4818d85b1b195960921b604482015260640161056e565b6001600160a01b0381166000908152601260205260408120805460ff191660019081179091556002805491929091610fe19084906121b7565b909155505050565b610ff333836112a0565b61100f5760405162461bcd60e51b815260040161056e90612166565b61101b84848484611693565b50505050565b6006805461102e90612245565b80601f016020809104026020016040519081016040528092919081815260200182805461105a90612245565b80156110a75780601f1061107c576101008083540402835291602001916110a7565b820191906000526020600020905b81548152906001019060200180831161108a57829003601f168201915b505050505081565b6000818152600960205260409020546060906001600160a01b031661112e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161056e565b60006111386116c6565b905060008151116111585760405180602001604052806000815250611183565b80611162846116d5565b60405160200161117392919061201c565b6040516020818303038152906040525b9392505050565b6005805461102e90612245565b6000546001600160a01b031633146111c15760405162461bcd60e51b815260040161056e90612131565b6001600160a01b0381166112265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056e565b61122f81611574565b50565b6000818152600b6020526040902080546001600160a01b0319166001600160a01b038416908117909155819061126782610d79565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600960205260408120546001600160a01b03166113195760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056e565b600061132483610d79565b9050806001600160a01b0316846001600160a01b0316148061135f5750836001600160a01b0316611354846104f9565b6001600160a01b0316145b8061138f57506001600160a01b038082166000908152600c602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113aa82610d79565b6001600160a01b03161461140e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161056e565b6001600160a01b0382166114705760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161056e565b61147b8383836117d3565b611486600082611232565b6001600160a01b0383166000908152600a602052604081208054600192906114af908490612202565b90915550506001600160a01b0382166000908152600a602052604081208054600192906114dd9084906121b7565b9091555050600081815260096020908152604080832080546001600160a01b0319166001600160a01b03878116918217909255601184528285208186529093528184204290558616808452818420849055905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d7582826040518060200160405280600081525061188b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156116265760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161056e565b6001600160a01b038381166000818152600c6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61169e848484611397565b6116aa848484846118be565b61101b5760405162461bcd60e51b815260040161056e906120df565b60606005805461047690612245565b6060816116f95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611723578061170d81612280565b915061171c9050600a836121cf565b91506116fd565b60008167ffffffffffffffff81111561173e5761173e612307565b6040519080825280601f01601f191660200182016040528015611768576020820181803683370190505b5090505b841561138f5761177d600183612202565b915061178a600a8661229b565b6117959060306121b7565b60f81b8183815181106117aa576117aa6122f1565b60200101906001600160f81b031916908160001a9053506117cc600a866121cf565b945061176c565b6001600160a01b03831661182e5761182981600f80546000838152601060205260408120829055600182018355919091527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020155565b611851565b816001600160a01b0316836001600160a01b0316146118515761185183826119cb565b6001600160a01b038216611868576106a481611a68565b826001600160a01b0316826001600160a01b0316146106a4576106a48282611b17565b6118958383611b5b565b6118a260008484846118be565b6106a45760405162461bcd60e51b815260040161056e906120df565b60006001600160a01b0384163b156119c057604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061190290339089908890889060040161204b565b602060405180830381600087803b15801561191c57600080fd5b505af192505050801561194c575060408051601f3d908101601f1916820190925261194991810190611f71565b60015b6119a6573d80801561197a576040519150601f19603f3d011682016040523d82523d6000602084013e61197f565b606091505b50805161199e5760405162461bcd60e51b815260040161056e906120df565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061138f565b506001949350505050565b600060016119d884610e8e565b6119e29190612202565b6000838152600e6020526040902054909150808214611a35576001600160a01b0384166000908152600d602090815260408083208584528252808320548484528184208190558352600e90915290208190555b506000918252600e602090815260408084208490556001600160a01b039094168352600d81528383209183525290812055565b600f54600090611a7a90600190612202565b600083815260106020526040812054600f8054939450909284908110611aa257611aa26122f1565b9060005260206000200154905080600f8381548110611ac357611ac36122f1565b600091825260208083209091019290925582815260109091526040808220849055858252812055600f805480611afb57611afb6122db565b6001900381819060005260206000200160009055905550505050565b6000611b2283610e8e565b6001600160a01b039093166000908152600d602090815260408083208684528252808320859055938252600e9052919091209190915550565b6001600160a01b038216611bb15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161056e565b6000818152600960205260409020546001600160a01b031615611c165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161056e565b611c22600083836117d3565b6001600160a01b0382166000908152600a60205260408120805460019290611c4b9084906121b7565b9091555050600081815260096020908152604080832080546001600160a01b0319166001600160a01b03871690811790915560118352818420818552909252808320429055518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cc990612245565b90600052602060002090601f016020900481019282611ceb5760008555611d31565b82601f10611d0457805160ff1916838001178555611d31565b82800160010185558215611d31579182015b82811115611d31578251825591602001919060010190611d16565b50611d3d929150611d41565b5090565b5b80821115611d3d5760008155600101611d42565b600067ffffffffffffffff80841115611d7157611d71612307565b604051601f8501601f19908116603f01168101908282118183101715611d9957611d99612307565b81604052809350858152868686011115611db257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611de357600080fd5b919050565b600060208284031215611dfa57600080fd5b61118382611dcc565b60008060408385031215611e1657600080fd5b611e1f83611dcc565b9150611e2d60208401611dcc565b90509250929050565b600080600060608486031215611e4b57600080fd5b611e5484611dcc565b9250611e6260208501611dcc565b9150604084013590509250925092565b60008060008060808587031215611e8857600080fd5b611e9185611dcc565b9350611e9f60208601611dcc565b925060408501359150606085013567ffffffffffffffff811115611ec257600080fd5b8501601f81018713611ed357600080fd5b611ee287823560208401611d56565b91505092959194509250565b60008060408385031215611f0157600080fd5b611f0a83611dcc565b915060208301358015158114611f1f57600080fd5b809150509250929050565b60008060408385031215611f3d57600080fd5b611f4683611dcc565b946020939093013593505050565b600060208284031215611f6657600080fd5b81356111838161231d565b600060208284031215611f8357600080fd5b81516111838161231d565b600060208284031215611fa057600080fd5b813567ffffffffffffffff811115611fb757600080fd5b8201601f81018413611fc857600080fd5b61138f84823560208401611d56565b600060208284031215611fe957600080fd5b5035919050565b60008151808452612008816020860160208601612219565b601f01601f19169290920160200192915050565b6000835161202e818460208801612219565b835190830190612042818360208801612219565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207e90830184611ff0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120c0578351835292840192918401916001016120a4565b50909695505050505050565b6020815260006111836020830184611ff0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121ca576121ca6122af565b500190565b6000826121de576121de6122c5565b500490565b60008160001904831182151516156121fd576121fd6122af565b500290565b600082821015612214576122146122af565b500390565b60005b8381101561223457818101518382015260200161221c565b8381111561101b5750506000910152565b600181811c9082168061225957607f821691505b6020821081141561227a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612294576122946122af565b5060010190565b6000826122aa576122aa6122c5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461122f57600080fdfea2646970667358221220b46c2ab11490785f54e498ec573b7f02d7ef3ae7d2dd8a89182b6690cb09693864736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000008416e6369656e74730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005414e434e54000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Ancients
Arg [1] : symbol_ (string): ANCNT
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 416e6369656e7473000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 414e434e54000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
26231:21774:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31967:305;;;;;;:::i;:::-;;:::i;:::-;;;6562:14:1;;6555:22;6537:41;;6525:2;6510:18;31967:305:0;;;;;;;;32912:100;;;:::i;:::-;;;;;;;:::i;35126:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;35126:221:0;4780:203:1;34522:415:0;;;;;;:::i;:::-;;:::i;:::-;;28435:113;28523:10;:17;28435:113;;;15573:25:1;;;15561:2;15546:18;28435:113:0;15427:177:1;35876:339:0;;;;;;:::i;:::-;;:::i;41471:668::-;;;;;;:::i;:::-;;:::i;41073:388::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28110:249::-;;;;;;:::i;:::-;;:::i;36286:185::-;;;;;;:::i;:::-;;:::i;40895:168::-;;;;;;:::i;:::-;;:::i;28625:216::-;;;;;;:::i;:::-;;:::i;42147:781::-;;;;;;:::i;:::-;;:::i;35011:105::-;;;;;;:::i;:::-;;:::i;32606:239::-;;;;;;:::i;:::-;;:::i;34136:374::-;;;;;;:::i;:::-;;:::i;32336:208::-;;;;;;:::i;:::-;;:::i;6407:103::-;;;:::i;5756:87::-;5802:7;5829:6;-1:-1:-1;;;;;5829:6:0;5756:87;;33081:104;;;:::i;35419:155::-;;;;;;:::i;:::-;;:::i;33946:182::-;;;;;;:::i;:::-;;:::i;36542:328::-;;;;;;:::i;:::-;;:::i;26640:37::-;;;:::i;33256:334::-;;;;;;:::i;:::-;;:::i;35645:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;35766:25:0;;;35742:4;35766:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35645:164;26552:81;;;:::i;6665:201::-;;;;;;:::i;:::-;;:::i;31967:305::-;32069:4;-1:-1:-1;;;;;;32106:40:0;;-1:-1:-1;;;32106:40:0;;:105;;-1:-1:-1;;;;;;;32163:48:0;;-1:-1:-1;;;32163:48:0;32106:105;:158;;;-1:-1:-1;;;;;;;;;;18846:40:0;;;32228:36;32086:178;31967:305;-1:-1:-1;;31967:305:0:o;32912:100::-;32966:13;32999:5;32992:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32912:100;:::o;35126:221::-;35202:7;38469:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38469:16:0;35222:73;;;;-1:-1:-1;;;35222:73:0;;12148:2:1;35222:73:0;;;12130:21:1;12187:2;12167:18;;;12160:30;12226:34;12206:18;;;12199:62;-1:-1:-1;;;12277:18:1;;;12270:42;12329:19;;35222:73:0;;;;;;;;;-1:-1:-1;35315:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35315:24:0;;35126:221::o;34522:415::-;34603:13;34619:27;34638:7;34619:18;:27::i;:::-;34603:43;;34671:5;-1:-1:-1;;;;;34665:11:0;:2;-1:-1:-1;;;;;34665:11:0;;;34657:57;;;;-1:-1:-1;;;34657:57:0;;14039:2:1;34657:57:0;;;14021:21:1;14078:2;14058:18;;;14051:30;14117:34;14097:18;;;14090:62;-1:-1:-1;;;14168:18:1;;;14161:31;14209:19;;34657:57:0;13837:397:1;34657:57:0;4507:10;-1:-1:-1;;;;;34749:21:0;;;;:62;;-1:-1:-1;34774:37:0;34791:5;4507:10;35645:164;:::i;34774:37::-;34727:168;;;;-1:-1:-1;;;34727:168:0;;10541:2:1;34727:168:0;;;10523:21:1;10580:2;10560:18;;;10553:30;10619:34;10599:18;;;10592:62;10690:26;10670:18;;;10663:54;10734:19;;34727:168:0;10339:420:1;34727:168:0;34908:21;34917:2;34921:7;34908:8;:21::i;:::-;34592:345;34522:415;;:::o;35876:339::-;36071:41;4507:10;36104:7;36071:18;:41::i;:::-;36063:103;;;;-1:-1:-1;;;36063:103:0;;;;;;;:::i;:::-;36179:28;36189:4;36195:2;36199:7;36179:9;:28::i;41471:668::-;41527:4;41545:23;41571:14;41581:3;41571:9;:14::i;:::-;41545:40;;41599:25;41641:15;41627:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41627:30:0;;41599:58;;41679:16;41691:3;41679:11;:16::i;:::-;41669:26;;41719:12;41744:11;41768:14;41799:6;41794:309;41809:15;41807:1;:17;41794:309;;;41901:1;41865:17;:30;41883:8;41892:1;41883:11;;;;;;;;:::i;:::-;;;;;;;41865:30;;;;;;;;;;;:35;41896:3;-1:-1:-1;;;;;41865:35:0;-1:-1:-1;;;;;41865:35:0;;;;;;;;;;;;;:37;41861:231;;;41946:17;:30;41964:8;41973:1;41964:11;;;;;;;;:::i;:::-;;;;;;;41946:30;;;;;;;;;;;:35;41977:3;-1:-1:-1;;;;;41946:35:0;-1:-1:-1;;;;;41946:35:0;;;;;;;;;;;;;41928:15;:53;;;;:::i;:::-;41918:63;-1:-1:-1;42028:5:0;42007:19;41918:63;42008:9;42007:19;:::i;:::-;42006:27;;;;:::i;:::-;41997:36;-1:-1:-1;42048:17:0;41997:36;42048:17;;:::i;:::-;;;41861:231;41826:3;;;;:::i;:::-;;;;41794:309;;;-1:-1:-1;42122:9:0;41471:668;-1:-1:-1;;;;;;41471:668:0:o;41073:388::-;41158:16;41192:23;41218:17;41228:6;41218:9;:17::i;:::-;41192:43;;41246:25;41288:15;41274:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41274:30:0;;41246:58;;41320:9;41315:113;41335:15;41331:1;:19;41315:113;;;41386:30;41406:6;41414:1;41386:19;:30::i;:::-;41372:8;41381:1;41372:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;41352:3;;;;:::i;:::-;;;;41315:113;;;-1:-1:-1;41445:8:0;41073:388;-1:-1:-1;;;41073:388:0:o;28110:249::-;28207:7;28243:16;28253:5;28243:9;:16::i;:::-;28235:5;:24;28227:80;;;;-1:-1:-1;;;28227:80:0;;7368:2:1;28227:80:0;;;7350:21:1;7407:2;7387:18;;;7380:30;7446:34;7426:18;;;7419:62;-1:-1:-1;;;7497:18:1;;;7490:41;7548:19;;28227:80:0;7166:407:1;28227:80:0;-1:-1:-1;;;;;;28325:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;28110:249::o;36286:185::-;36424:39;36441:4;36447:2;36451:7;36424:39;;;;;;;;;;;;:16;:39::i;40895:168::-;40969:1;40960:8;;:10;40952:51;;;;-1:-1:-1;;;40952:51:0;;14859:2:1;40952:51:0;;;14841:21:1;14898:2;14878:18;;;14871:30;14937;14917:18;;;14910:58;14985:18;;40952:51:0;14657:352:1;40952:51:0;41015:6;:18;;-1:-1:-1;;;;;;41015:18:0;-1:-1:-1;;;;;41015:18:0;;;;;41045:8;:10;;;-1:-1:-1;41045:10:0;;;:::i;:::-;;;;;;40895:168;:::o;28625:216::-;28700:7;28736:13;28523:10;:17;;28435:113;28736:13;28728:5;:21;28720:78;;;;-1:-1:-1;;;28720:78:0;;15216:2:1;28720:78:0;;;15198:21:1;15255:2;15235:18;;;15228:30;15294:34;15274:18;;;15267:62;-1:-1:-1;;;15345:18:1;;;15338:42;15397:19;;28720:78:0;15014:408:1;28720:78:0;28816:10;28827:5;28816:17;;;;;;;;:::i;:::-;;;;;;;;;28809:24;;28625:216;;;:::o;42147:781::-;42224:1;42209:14;42219:3;42209:9;:14::i;:::-;:16;42201:53;;;;-1:-1:-1;;;42201:53:0;;7015:2:1;42201:53:0;;;6997:21:1;7054:2;7034:18;;;7027:30;7093:26;7073:18;;;7066:54;7137:18;;42201:53:0;6813:348:1;42201:53:0;42266:23;42292:14;42302:3;42292:9;:14::i;:::-;42266:40;;42320:25;42362:15;42348:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42348:30:0;;42320:58;;42400:16;42412:3;42400:11;:16::i;:::-;42390:26;;42440:12;42465:11;42489:14;42520:6;42515:361;42530:15;42528:1;:17;42515:361;;;42622:1;42586:17;:30;42604:8;42613:1;42604:11;;;;;;;;:::i;:::-;;;;;;;42586:30;;;;;;;;;;;:35;42617:3;-1:-1:-1;;;;;42586:35:0;-1:-1:-1;;;;;42586:35:0;;;;;;;;;;;;;:37;42582:283;;;42667:17;:30;42685:8;42694:1;42685:11;;;;;;;;:::i;:::-;;;;;;;42667:30;;;;;;;;;;;:35;42698:3;-1:-1:-1;;;;;42667:35:0;-1:-1:-1;;;;;42667:35:0;;;;;;;;;;;;;42649:15;:53;;;;:::i;:::-;42639:63;-1:-1:-1;42749:5:0;42728:19;42639:63;42729:9;42728:19;:::i;:::-;42727:27;;;;:::i;:::-;42718:36;-1:-1:-1;42769:17:0;42718:36;42769:17;;:::i;:::-;;;42835:15;42799:17;:30;42817:8;42826:1;42817:11;;;;;;;;:::i;:::-;;;;;;;42799:30;;;;;;;;;;;:35;42830:3;-1:-1:-1;;;;;42799:35:0;-1:-1:-1;;;;;42799:35:0;;;;;;;;;;;;:51;;;;42582:283;42547:3;;;;:::i;:::-;;;;42515:361;;;-1:-1:-1;42890:6:0;;;:26;;-1:-1:-1;;;42890:26:0;;-1:-1:-1;;;;;5673:32:1;;;42890:26:0;;;5655:51:1;;;;5722:18;;;5715:34;;;42890:6:0;;;:11;;5628:18:1;;42890:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42188:740;;;;;42147:781;:::o;35011:105::-;5802:7;5829:6;-1:-1:-1;;;;;5829:6:0;4507:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;35086:22;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;35011:105:::0;:::o;32606:239::-;32678:7;32714:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32714:16:0;32749:19;32741:73;;;;-1:-1:-1;;;32741:73:0;;11377:2:1;32741:73:0;;;11359:21:1;11416:2;11396:18;;;11389:30;11455:34;11435:18;;;11428:62;-1:-1:-1;;;11506:18:1;;;11499:39;11555:19;;32741:73:0;11175:405:1;34136:374:0;34214:10;34186:39;;;;:27;:39;;;;;;;;:46;;:39;:46;34178:88;;;;-1:-1:-1;;;34178:88:0;;13338:2:1;34178:88:0;;;13320:21:1;13377:2;13357:18;;;13350:30;13416:31;13396:18;;;13389:59;13465:18;;34178:88:0;13136:353:1;34178:88:0;34282:9;1017:14;34278:75;;34320:21;:9;1136:19;;1154:1;1136:19;;;1047:127;34320:21;34383:18;34404:19;:9;1017:14;;925:114;34404:19;34383:40;;34434:26;34444:3;34449:10;34434:9;:26::i;:::-;34471:21;:9;1136:19;;1154:1;1136:19;;;1047:127;32336:208;32408:7;-1:-1:-1;;;;;32436:19:0;;32428:74;;;;-1:-1:-1;;;32428:74:0;;10966:2:1;32428:74:0;;;10948:21:1;11005:2;10985:18;;;10978:30;11044:34;11024:18;;;11017:62;-1:-1:-1;;;11095:18:1;;;11088:40;11145:19;;32428:74:0;10764:406:1;32428:74:0;-1:-1:-1;;;;;;32520:16:0;;;;;:9;:16;;;;;;;32336:208::o;6407:103::-;5802:7;5829:6;-1:-1:-1;;;;;5829:6:0;4507:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;6472:30:::1;6499:1;6472:18;:30::i;:::-;6407:103::o:0;33081:104::-;33137:13;33170:7;33163:14;;;;;:::i;35419:155::-;35514:52;4507:10;35547:8;35557;35514:18;:52::i;33946:182::-;34030:1;34022:7;;:9;34014:36;;;;-1:-1:-1;;;34014:36:0;;13696:2:1;34014:36:0;;;13678:21:1;13735:2;13715:18;;;13708:30;-1:-1:-1;;;13754:18:1;;;13747:44;13808:18;;34014:36:0;13494:338:1;34014:36:0;-1:-1:-1;;;;;34061:32:0;;;;;;:27;:32;;;;;:38;;-1:-1:-1;;34061:38:0;34095:4;34061:38;;;;;;34110:7;:10;;34095:4;;34110:7;;:10;;34095:4;;34110:10;:::i;:::-;;;;-1:-1:-1;;;33946:182:0:o;36542:328::-;36717:41;4507:10;36750:7;36717:18;:41::i;:::-;36709:103;;;;-1:-1:-1;;;36709:103:0;;;;;;;:::i;:::-;36823:39;36837:4;36843:2;36847:7;36856:5;36823:13;:39::i;:::-;36542:328;;;;:::o;26640:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33256:334::-;38445:4;38469:16;;;:7;:16;;;;;;33329:13;;-1:-1:-1;;;;;38469:16:0;33355:76;;;;-1:-1:-1;;;33355:76:0;;12922:2:1;33355:76:0;;;12904:21:1;12961:2;12941:18;;;12934:30;13000:34;12980:18;;;12973:62;-1:-1:-1;;;13051:18:1;;;13044:45;13106:19;;33355:76:0;12720:411:1;33355:76:0;33444:21;33468:10;:8;:10::i;:::-;33444:34;;33520:1;33502:7;33496:21;:25;:86;;;;;;;;;;;;;;;;;33548:7;33557:18;:7;:16;:18::i;:::-;33531:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33496:86;33489:93;33256:334;-1:-1:-1;;;33256:334:0:o;26552:81::-;;;;;;;:::i;6665:201::-;5802:7;5829:6;-1:-1:-1;;;;;5829:6:0;4507:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6754:22:0;::::1;6746:73;;;::::0;-1:-1:-1;;;6746:73:0;;8199:2:1;6746:73:0::1;::::0;::::1;8181:21:1::0;8238:2;8218:18;;;8211:30;8277:34;8257:18;;;8250:62;-1:-1:-1;;;8328:18:1;;;8321:36;8374:19;;6746:73:0::1;7997:402:1::0;6746:73:0::1;6830:28;6849:8;6830:18;:28::i;:::-;6665:201:::0;:::o;44780:178::-;44855:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44855:29:0;-1:-1:-1;;;;;44855:29:0;;;;;;;;:24;;44909:27;44855:24;44909:18;:27::i;:::-;-1:-1:-1;;;;;44900:50:0;;;;;;;;;;;44780:178;;:::o;38674:352::-;38767:4;38469:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38469:16:0;38784:73;;;;-1:-1:-1;;;38784:73:0;;10128:2:1;38784:73:0;;;10110:21:1;10167:2;10147:18;;;10140:30;10206:34;10186:18;;;10179:62;-1:-1:-1;;;10257:18:1;;;10250:42;10309:19;;38784:73:0;9926:408:1;38784:73:0;38868:13;38884:27;38903:7;38884:18;:27::i;:::-;38868:43;;38941:5;-1:-1:-1;;;;;38930:16:0;:7;-1:-1:-1;;;;;38930:16:0;;:51;;;;38974:7;-1:-1:-1;;;;;38950:31:0;:20;38962:7;38950:11;:20::i;:::-;-1:-1:-1;;;;;38950:31:0;;38930:51;:87;;;-1:-1:-1;;;;;;35766:25:0;;;35742:4;35766:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38985:32;38922:96;38674:352;-1:-1:-1;;;;38674:352:0:o;43921:741::-;44084:4;-1:-1:-1;;;;;44053:35:0;:27;44072:7;44053:18;:27::i;:::-;-1:-1:-1;;;;;44053:35:0;;44045:85;;;;-1:-1:-1;;;44045:85:0;;8606:2:1;44045:85:0;;;8588:21:1;8645:2;8625:18;;;8618:30;8684:34;8664:18;;;8657:62;-1:-1:-1;;;8735:18:1;;;8728:35;8780:19;;44045:85:0;8404:401:1;44045:85:0;-1:-1:-1;;;;;44149:16:0;;44141:65;;;;-1:-1:-1;;;44141:65:0;;9369:2:1;44141:65:0;;;9351:21:1;9408:2;9388:18;;;9381:30;9447:34;9427:18;;;9420:62;-1:-1:-1;;;9498:18:1;;;9491:34;9542:19;;44141:65:0;9167:400:1;44141:65:0;44219:39;44240:4;44246:2;44250:7;44219:20;:39::i;:::-;44323:29;44340:1;44344:7;44323:8;:29::i;:::-;-1:-1:-1;;;;;44365:15:0;;;;;;:9;:15;;;;;:20;;44384:1;;44365:15;:20;;44384:1;;44365:20;:::i;:::-;;;;-1:-1:-1;;;;;;;44396:13:0;;;;;;:9;:13;;;;;:18;;44413:1;;44396:13;:18;;44413:1;;44396:18;:::i;:::-;;;;-1:-1:-1;;44425:16:0;;;;:7;:16;;;;;;;;:21;;-1:-1:-1;;;;;;44425:21:0;-1:-1:-1;;;;;44425:21:0;;;;;;;;;44457:17;:26;;;;;:30;;;;;;;;;44488:15;44457:46;;44514:32;;;;;;;;:34;;;44576:27;;44425:16;;44576:27;;;34592:345;34522:415;;:::o;39368:110::-;39444:26;39454:2;39458:7;39444:26;;;;;;;;;;;;:9;:26::i;7026:191::-;7100:16;7119:6;;-1:-1:-1;;;;;7136:17:0;;;-1:-1:-1;;;;;;7136:17:0;;;;;;7169:40;;7119:6;;;;;;;7169:40;;7100:16;7169:40;7089:128;7026:191;:::o;45100:315::-;45255:8;-1:-1:-1;;;;;45246:17:0;:5;-1:-1:-1;;;;;45246:17:0;;;45238:55;;;;-1:-1:-1;;;45238:55:0;;9774:2:1;45238:55:0;;;9756:21:1;9813:2;9793:18;;;9786:30;9852:27;9832:18;;;9825:55;9897:18;;45238:55:0;9572:349:1;45238:55:0;-1:-1:-1;;;;;45304:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;45304:46:0;;;;;;;;;;45366:41;;6537::1;;;45366::0;;6510:18:1;45366:41:0;;;;;;;45100:315;;;:::o;37752:::-;37909:28;37919:4;37925:2;37929:7;37909:9;:28::i;:::-;37956:48;37979:4;37985:2;37989:7;37998:5;37956:22;:48::i;:::-;37948:111;;;;-1:-1:-1;;;37948:111:0;;;;;;;:::i;33838:100::-;33889:13;33922:8;33915:15;;;;;:::i;1936:723::-;1992:13;2213:10;2209:53;;-1:-1:-1;;2240:10:0;;;;;;;;;;;;-1:-1:-1;;;2240:10:0;;;;;1936:723::o;2209:53::-;2287:5;2272:12;2328:78;2335:9;;2328:78;;2361:8;;;;:::i;:::-;;-1:-1:-1;2384:10:0;;-1:-1:-1;2392:2:0;2384:10;;:::i;:::-;;;2328:78;;;2416:19;2448:6;2438:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2438:17:0;;2416:39;;2466:154;2473:10;;2466:154;;2500:11;2510:1;2500:11;;:::i;:::-;;-1:-1:-1;2569:10:0;2577:2;2569:5;:10;:::i;:::-;2556:24;;:2;:24;:::i;:::-;2543:39;;2526:6;2533;2526:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2526:56:0;;;;;;;;-1:-1:-1;2597:11:0;2606:2;2597:11;;:::i;:::-;;;2466:154;;28852:532;-1:-1:-1;;;;;29001:18:0;;28997:187;;29036:40;29068:7;29739:10;:17;;29712:24;;;;:15;:24;;;;;:44;;;29767:24;;;;;;;;;;;;29635:164;29036:40;28997:187;;;29106:2;-1:-1:-1;;;;;29098:10:0;:4;-1:-1:-1;;;;;29098:10:0;;29094:90;;29125:47;29158:4;29164:7;29125:32;:47::i;:::-;-1:-1:-1;;;;;29198:16:0;;29194:183;;29231:45;29268:7;29231:36;:45::i;29194:183::-;29304:4;-1:-1:-1;;;;;29298:10:0;:2;-1:-1:-1;;;;;29298:10:0;;29294:83;;29325:40;29353:2;29357:7;29325:27;:40::i;39705:321::-;39835:18;39841:2;39845:7;39835:5;:18::i;:::-;39886:54;39917:1;39921:2;39925:7;39934:5;39886:22;:54::i;:::-;39864:154;;;;-1:-1:-1;;;39864:154:0;;;;;;;:::i;45980:799::-;46135:4;-1:-1:-1;;;;;46156:13:0;;8790:19;:23;46152:620;;46192:72;;-1:-1:-1;;;46192:72:0;;-1:-1:-1;;;;;46192:36:0;;;;;:72;;4507:10;;46243:4;;46249:7;;46258:5;;46192:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46192:72:0;;;;;;;;-1:-1:-1;;46192:72:0;;;;;;;;;;;;:::i;:::-;;;46188:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46434:13:0;;46430:272;;46477:60;;-1:-1:-1;;;46477:60:0;;;;;;;:::i;46430:272::-;46652:6;46646:13;46637:6;46633:2;46629:15;46622:38;46188:529;-1:-1:-1;;;;;;46315:51:0;-1:-1:-1;;;46315:51:0;;-1:-1:-1;46308:58:0;;46152:620;-1:-1:-1;46756:4:0;45980:799;;;;;;:::o;29811:992::-;30077:22;30131:1;30102:26;30123:4;30102:20;:26::i;:::-;:30;;;;:::i;:::-;30143:18;30164:26;;;:17;:26;;;;;;30077:55;;-1:-1:-1;30297:28:0;;;30293:328;;-1:-1:-1;;;;;30364:18:0;;30342:19;30364:18;;;:12;:18;;;;;;;;:34;;;;;;;;;30415:30;;;;;;:44;;;30532:30;;:17;:30;;;;;:43;;;30293:328;-1:-1:-1;30717:26:0;;;;:17;:26;;;;;;;;30710:33;;;-1:-1:-1;;;;;30761:18:0;;;;;:12;:18;;;;;:34;;;;;;;30754:41;29811:992::o;30816:1079::-;31094:10;:17;31069:22;;31094:21;;31114:1;;31094:21;:::i;:::-;31126:18;31147:24;;;:15;:24;;;;;;31520:10;:26;;31069:46;;-1:-1:-1;31147:24:0;;31069:46;;31520:26;;;;;;:::i;:::-;;;;;;;;;31498:48;;31584:11;31559:10;31570;31559:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;31664:28;;;:15;:28;;;;;;;:41;;;31836:24;;;;;31829:31;31871:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30887:1008;;;30816:1079;:::o;29397:225::-;29482:14;29499:24;29520:2;29499:20;:24::i;:::-;-1:-1:-1;;;;;29534:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;29579:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;29397:225:0:o;40361:526::-;-1:-1:-1;;;;;40441:16:0;;40433:61;;;;-1:-1:-1;;;40433:61:0;;11787:2:1;40433:61:0;;;11769:21:1;;;11806:18;;;11799:30;11865:34;11845:18;;;11838:62;11917:18;;40433:61:0;11585:356:1;40433:61:0;38445:4;38469:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38469:16:0;:30;40505:58;;;;-1:-1:-1;;;40505:58:0;;9012:2:1;40505:58:0;;;8994:21:1;9051:2;9031:18;;;9024:30;9090;9070:18;;;9063:58;9138:18;;40505:58:0;8810:352:1;40505:58:0;40576:45;40605:1;40609:2;40613:7;40576:20;:45::i;:::-;-1:-1:-1;;;;;40634:13:0;;;;;;:9;:13;;;;;:18;;40651:1;;40634:13;:18;;40651:1;;40634:18;:::i;:::-;;;;-1:-1:-1;;40663:16:0;;;;:7;:16;;;;;;;;:21;;-1:-1:-1;;;;;;40663:21:0;-1:-1:-1;;;;;40663:21:0;;;;;;;;40695:17;:26;;;;;:30;;;;;;;;;40726:15;40695:46;;40789:33;40663:16;;;40789:33;;40663:16;;40789:33;35086:22:::1;35011:105:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5760:632::-;5931:2;5983:21;;;6053:13;;5956:18;;;6075:22;;;5902:4;;5931:2;6154:15;;;;6128:2;6113:18;;;5902:4;6197:169;6211:6;6208:1;6205:13;6197:169;;;6272:13;;6260:26;;6341:15;;;;6306:12;;;;6233:1;6226:9;6197:169;;;-1:-1:-1;6383:3:1;;5760:632;-1:-1:-1;;;;;;5760:632:1:o;6589:219::-;6738:2;6727:9;6720:21;6701:4;6758:44;6798:2;6787:9;6783:18;6775:6;6758:44;:::i;7578:414::-;7780:2;7762:21;;;7819:2;7799:18;;;7792:30;7858:34;7853:2;7838:18;;7831:62;-1:-1:-1;;;7924:2:1;7909:18;;7902:48;7982:3;7967:19;;7578:414::o;12359:356::-;12561:2;12543:21;;;12580:18;;;12573:30;12639:34;12634:2;12619:18;;12612:62;12706:2;12691:18;;12359:356::o;14239:413::-;14441:2;14423:21;;;14480:2;14460:18;;;14453:30;14519:34;14514:2;14499:18;;14492:62;-1:-1:-1;;;14585:2:1;14570:18;;14563:47;14642:3;14627:19;;14239:413::o;15609:128::-;15649:3;15680:1;15676:6;15673:1;15670:13;15667:39;;;15686:18;;:::i;:::-;-1:-1:-1;15722:9:1;;15609:128::o;15742:120::-;15782:1;15808;15798:35;;15813:18;;:::i;:::-;-1:-1:-1;15847:9:1;;15742:120::o;15867:168::-;15907:7;15973:1;15969;15965:6;15961:14;15958:1;15955:21;15950:1;15943:9;15936:17;15932:45;15929:71;;;15980:18;;:::i;:::-;-1:-1:-1;16020:9:1;;15867:168::o;16040:125::-;16080:4;16108:1;16105;16102:8;16099:34;;;16113:18;;:::i;:::-;-1:-1:-1;16150:9:1;;16040:125::o;16170:258::-;16242:1;16252:113;16266:6;16263:1;16260:13;16252:113;;;16342:11;;;16336:18;16323:11;;;16316:39;16288:2;16281:10;16252:113;;;16383:6;16380:1;16377:13;16374:48;;;-1:-1:-1;;16418:1:1;16400:16;;16393:27;16170:258::o;16433:380::-;16512:1;16508:12;;;;16555;;;16576:61;;16630:4;16622:6;16618:17;16608:27;;16576:61;16683:2;16675:6;16672:14;16652:18;16649:38;16646:161;;;16729:10;16724:3;16720:20;16717:1;16710:31;16764:4;16761:1;16754:15;16792:4;16789:1;16782:15;16646:161;;16433:380;;;:::o;16818:135::-;16857:3;-1:-1:-1;;16878:17:1;;16875:43;;;16898:18;;:::i;:::-;-1:-1:-1;16945:1:1;16934:13;;16818:135::o;16958:112::-;16990:1;17016;17006:35;;17021:18;;:::i;:::-;-1:-1:-1;17055:9:1;;16958:112::o;17075:127::-;17136:10;17131:3;17127:20;17124:1;17117:31;17167:4;17164:1;17157:15;17191:4;17188:1;17181:15;17207:127;17268:10;17263:3;17259:20;17256:1;17249:31;17299:4;17296:1;17289:15;17323:4;17320:1;17313:15;17339:127;17400:10;17395:3;17391:20;17388:1;17381:31;17431:4;17428:1;17421:15;17455:4;17452:1;17445:15;17471:127;17532:10;17527:3;17523:20;17520:1;17513:31;17563:4;17560:1;17553:15;17587:4;17584:1;17577:15;17603:127;17664:10;17659:3;17655:20;17652:1;17645:31;17695:4;17692:1;17685:15;17719:4;17716:1;17709:15;17735:131;-1:-1:-1;;;;;;17809:32:1;;17799:43;;17789:71;;17856:1;17853;17846:12
Swarm Source
ipfs://b46c2ab11490785f54e498ec573b7f02d7ef3ae7d2dd8a89182b6690cb096938
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 29 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ 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.