Overview
CRO Balance
CRO Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,907 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 17985104 | 4 days ago | IN | 0 CRO | 0.23343625 | ||||
Set Approval For... | 16216177 | 121 days ago | IN | 0 CRO | 0.23343625 | ||||
Set Approval For... | 15668680 | 156 days ago | IN | 0 CRO | 0.1513876 | ||||
Set Approval For... | 15116798 | 193 days ago | IN | 0 CRO | 0.23343625 | ||||
Set Approval For... | 14215514 | 252 days ago | IN | 0 CRO | 0.23336691 | ||||
Set Approval For... | 14192567 | 253 days ago | IN | 0 CRO | 0.23336691 | ||||
Set Approval For... | 13953612 | 269 days ago | IN | 0 CRO | 0.23231529 | ||||
Set Approval For... | 13911931 | 272 days ago | IN | 0 CRO | 0.1484763 | ||||
Set Approval For... | 13909950 | 272 days ago | IN | 0 CRO | 0.23343625 | ||||
Set Approval For... | 13899014 | 273 days ago | IN | 0 CRO | 0.1542989 | ||||
Set Approval For... | 13898878 | 273 days ago | IN | 0 CRO | 0.1542989 | ||||
Set Approval For... | 13868519 | 275 days ago | IN | 0 CRO | 0.23336691 | ||||
Set Approval For... | 13834324 | 277 days ago | IN | 0 CRO | 0.23343625 | ||||
Set Approval For... | 13809076 | 279 days ago | IN | 0 CRO | 0.23410829 | ||||
Set Approval For... | 13709919 | 285 days ago | IN | 0 CRO | 0.23343625 | ||||
Safe Transfer Fr... | 13348072 | 309 days ago | IN | 0 CRO | 0.48566355 | ||||
Set Approval For... | 13326009 | 310 days ago | IN | 0 CRO | 0.14697698 | ||||
Set Approval For... | 13325162 | 310 days ago | IN | 0 CRO | 0.14702065 | ||||
Set Approval For... | 13226217 | 317 days ago | IN | 0 CRO | 0.1484763 | ||||
Set Approval For... | 13179922 | 320 days ago | IN | 0 CRO | 0.12274418 | ||||
Set Approval For... | 13179919 | 320 days ago | IN | 0 CRO | 0.1227088 | ||||
Set Approval For... | 13179916 | 320 days ago | IN | 0 CRO | 0.1225444 | ||||
Set Approval For... | 13173510 | 320 days ago | IN | 0 CRO | 0.12274418 | ||||
Set Approval For... | 13130952 | 323 days ago | IN | 0 CRO | 0.23343625 | ||||
Set Approval For... | 13119512 | 324 days ago | IN | 0 CRO | 0.23119433 |
Loading...
Loading
Contract Name:
BADUFO
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2023-04-10 */ // File: @openzeppelin/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: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: UFOBAD.sol pragma solidity ^0.8.7; /* B.A.D Baby Alien Division - U F O ------------------------- Artist/Founder - Hawtchkiss (@DanielBHotchkis) Community Lead/Founder - Legendd (@ImDarrenB1) ------------------------- Contract Dev: Astra (@0x_astra) */ contract BADUFO is ERC721Enumerable, Pausable, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIds; // Maximum number of tokens uint256 public _totalSupply = 1300; // uint256 public _price = 0; // Mappings mapping (address => uint256) public _mintCount; // Settings bool public _mintActive = false; uint256 public _maxMint = 0; // Base URI for metadata string public _prefixURI; // Events event BurnToken(uint256 tokenID); event SetBaseURI(string newURI); event AirDrop(address[] indexed addrs); event ToggleMintActive(bool mint1Active); event Mint(address indexed addr, uint256 amount, uint256 price); event ToggleTransferPause(bool paused); event UpdateTotalSupply(uint256 newMax); event UpdatePrice(uint256 newPrice); event Withdraw(uint256 amount); constructor() ERC721("Baby Alien Division UFOs", "UFO") {} function burnToken(uint256 tokenId) public virtual { require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721 Burnable: caller is not owner nor approved"); _burn(tokenId); emit BurnToken(tokenId); } // URI Functions function _baseURI() internal view override returns (string memory) { return _prefixURI; } function setBaseURI(string memory _uri) public onlyOwner { _prefixURI = _uri; emit SetBaseURI(_uri); } function airDrop(address[] memory addrs) public onlyOwner { require(addrs.length > 0, "airDrop: cannot airdrop to empty array"); for (uint256 i = 0; i < addrs.length; i++) { _mintItem(addrs[i]); } emit AirDrop(addrs); } function toggleMintActive() public onlyOwner { _mintActive = !_mintActive; emit ToggleMintActive(_mintActive); } function mint(uint256 amount) public payable { address sender = msg.sender; require(amount > 0, "mint: need to mint atleast 1"); require(_mintActive, "mint: mint not active"); uint256 totalMinted = _tokenIds.current(); require(totalMinted < _totalSupply, "mint: sold out"); require(totalMinted + amount <= _totalSupply, "mint: can't mint that many"); require(amount + _mintCount[sender] <= _maxMint, "mint: 25 is limit"); require(msg.value >= amount * _price, "mint: value not enough"); _mintCount[sender] = _mintCount[sender] + amount; for (uint256 i = 0; i < amount; i++) { _mintItem(msg.sender); } emit Mint(sender, amount, _price); } // function _mintItem(address to) internal { _tokenIds.increment(); uint256 id = _tokenIds.current(); _safeMint(to, id); } // State management function toggleTransferPause() public onlyOwner { paused() ? _unpause() : _pause(); emit ToggleTransferPause(paused()); } function updatePrice(uint256 newPrice) public onlyOwner { require(newPrice > 0, "updatePrice: new price must be greater than 0"); _price = newPrice; emit UpdatePrice(newPrice); } function updateTotalSupply(uint256 newSupply) external onlyOwner { require(newSupply > 0, "updateTotalSupply: new supply must be greater than 0"); _totalSupply = newSupply; emit UpdateTotalSupply(newSupply); } function updateMaxMint(uint256 newMax) external onlyOwner { require(newMax > 0); _maxMint = newMax; } function withdraw() external onlyOwner { require(address(this).balance > 0); uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); emit Withdraw(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"AirDrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"BurnToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"Mint","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"SetBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"mint1Active","type":"bool"}],"name":"ToggleMintActive","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"paused","type":"bool"}],"name":"ToggleTransferPause","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"UpdatePrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"UpdateTotalSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"_maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prefixURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnToken","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":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_uri","type":"string"}],"name":"setBaseURI","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":[],"name":"toggleMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTransferPause","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"newMax","type":"uint256"}],"name":"updateMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610514600c556000600d819055600f805460ff191690556010553480156200002b57600080fd5b50604080518082018252601881527f4261627920416c69656e204469766973696f6e2055464f73000000000000000060208083019182528351808501909452600384526255464f60e81b9084015281519192916200008c916000916200011a565b508051620000a29060019060208401906200011a565b5050600a805460ff1916905550620000ba33620000c0565b620001fd565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012890620001c0565b90600052602060002090601f0160209004810192826200014c576000855562000197565b82601f106200016757805160ff191683800117855562000197565b8280016001018555821562000197579182015b82811115620001975782518255916020019190600101906200017a565b50620001a5929150620001a9565b5090565b5b80821115620001a55760008155600101620001aa565b600181811c90821680620001d557607f821691505b60208210811415620001f757634e487b7160e01b600052602260045260246000fd5b50919050565b612a73806200020d6000396000f3fe60806040526004361061020e5760003560e01c806370a0823111610118578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146105c3578063d02c2bf2146105e3578063e6c6df59146105f8578063e985e9c514610618578063f2fde38b1461066157600080fd5b8063a0712d681461055a578063a22cb4651461056d578063b640392c1461058d578063b88d4fde146105a357600080fd5b80638da5cb5b116100e75780638da5cb5b146104de57806391860f781461050157806395d89b41146105165780639752a0171461052b5780639ef4b9aa1461054057600080fd5b806370a0823114610469578063715018a6146104895780637b47ec1a1461049e5780638d6cc56d146104be57600080fd5b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce7146103d157806355f804b3146103f15780635c975abb146104115780636352211e1461042957806366d49bab1461044957600080fd5b80632f745c59146103665780633ccfd60b146103865780633eaaf86b1461039b57806342842e0e146103b157600080fd5b8063095ea7b3116101e2578063095ea7b3146102c457806318160ddd146102e4578063235b6ea11461030357806323b872dd14610319578063288ee6461461033957600080fd5b8062b6849f1461021357806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c575b600080fd5b34801561021f57600080fd5b5061023361022e36600461257e565b610681565b005b34801561024157600080fd5b50610255610250366004612632565b61079c565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f6107c7565b60405161026191906127a5565b34801561029857600080fd5b506102ac6102a73660046126b5565b610859565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102336102df366004612554565b6108ee565b3480156102f057600080fd5b506008545b604051908152602001610261565b34801561030f57600080fd5b506102f5600d5481565b34801561032557600080fd5b50610233610334366004612460565b610a04565b34801561034557600080fd5b506102f5610354366004612412565b600e6020526000908152604090205481565b34801561037257600080fd5b506102f5610381366004612554565b610a35565b34801561039257600080fd5b50610233610acb565b3480156103a757600080fd5b506102f5600c5481565b3480156103bd57600080fd5b506102336103cc366004612460565b610b6f565b3480156103dd57600080fd5b506102f56103ec3660046126b5565b610b8a565b3480156103fd57600080fd5b5061023361040c36600461266c565b610c1d565b34801561041d57600080fd5b50600a5460ff16610255565b34801561043557600080fd5b506102ac6104443660046126b5565b610c90565b34801561045557600080fd5b506102336104643660046126b5565b610d07565b34801561047557600080fd5b506102f5610484366004612412565b610dd9565b34801561049557600080fd5b50610233610e60565b3480156104aa57600080fd5b506102336104b93660046126b5565b610e9c565b3480156104ca57600080fd5b506102336104d93660046126b5565b610f45565b3480156104ea57600080fd5b50600a5461010090046001600160a01b03166102ac565b34801561050d57600080fd5b5061027f611010565b34801561052257600080fd5b5061027f61109e565b34801561053757600080fd5b506102336110ad565b34801561054c57600080fd5b50600f546102559060ff1681565b6102336105683660046126b5565b61113f565b34801561057957600080fd5b50610233610588366004612518565b6113f6565b34801561059957600080fd5b506102f560105481565b3480156105af57600080fd5b506102336105be36600461249c565b611405565b3480156105cf57600080fd5b5061027f6105de3660046126b5565b61143d565b3480156105ef57600080fd5b50610233611518565b34801561060457600080fd5b506102336106133660046126b5565b611590565b34801561062457600080fd5b5061025561063336600461242d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066d57600080fd5b5061023361067c366004612412565b6115d2565b600a546001600160a01b036101009091041633146106ba5760405162461bcd60e51b81526004016106b19061280a565b60405180910390fd5b600081511161071a5760405162461bcd60e51b815260206004820152602660248201527f61697244726f703a2063616e6e6f742061697264726f7020746f20656d70747960448201526520617272617960d01b60648201526084016106b1565b60005b815181101561075a5761074882828151811061073b5761073b6129fb565b6020026020010151611673565b806107528161298a565b91505061071d565b508060405161076991906126fa565b604051908190038120907fb9413d9dd40eadf97d2949c3c57a163bb454e537a8696520d52a74e0252011e990600090a250565b60006001600160e01b0319821663780e9d6360e01b14806107c157506107c182611698565b92915050565b6060600080546107d69061294f565b80601f01602080910402602001604051908101604052809291908181526020018280546108029061294f565b801561084f5780601f106108245761010080835404028352916020019161084f565b820191906000526020600020905b81548152906001019060200180831161083257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108d25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b1565b506000908152600460205260409020546001600160a01b031690565b60006108f982610c90565b9050806001600160a01b0316836001600160a01b031614156109675760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b1565b336001600160a01b038216148061098357506109838133610633565b6109f55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b1565b6109ff83836116e8565b505050565b610a0e3382611756565b610a2a5760405162461bcd60e51b81526004016106b19061283f565b6109ff83838361184d565b6000610a4083610dd9565b8210610aa25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106b1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03610100909104163314610afb5760405162461bcd60e51b81526004016106b19061280a565b60004711610b0857600080fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610b37573d6000803e3d6000fd5b506040518181527f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d906020015b60405180910390a150565b6109ff83838360405180602001604052806000815250611405565b6000610b9560085490565b8210610bf85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106b1565b60088281548110610c0b57610c0b6129fb565b90600052602060002001549050919050565b600a546001600160a01b03610100909104163314610c4d5760405162461bcd60e51b81526004016106b19061280a565b8051610c60906011906020840190612305565b507f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa81604051610b6491906127a5565b6000818152600260205260408120546001600160a01b0316806107c15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b1565b600a546001600160a01b03610100909104163314610d375760405162461bcd60e51b81526004016106b19061280a565b60008111610da45760405162461bcd60e51b815260206004820152603460248201527f757064617465546f74616c537570706c793a206e657720737570706c79206d75604482015273073742062652067726561746572207468616e20360641b60648201526084016106b1565b600c8190556040518181527fee643f334779f1031decbee003f80a0bcb7ecdc24b6693539cf7447a66afba8a90602001610b64565b60006001600160a01b038216610e445760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03610100909104163314610e905760405162461bcd60e51b81526004016106b19061280a565b610e9a60006119f8565b565b610ea63382611756565b610f0c5760405162461bcd60e51b815260206004820152603160248201527f455243373231204275726e61626c653a2063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016106b1565b610f1581611a52565b6040518181527f066548819fc4bd1208ea1c8608597593134d5661f459c2ef75cad30918af5a3390602001610b64565b600a546001600160a01b03610100909104163314610f755760405162461bcd60e51b81526004016106b19061280a565b60008111610fdb5760405162461bcd60e51b815260206004820152602d60248201527f75706461746550726963653a206e6577207072696365206d757374206265206760448201526c0726561746572207468616e203609c1b60648201526084016106b1565b600d8190556040518181527f1a15ab7124a4e1ce00837351261771caf1691cd7d85ed3a0ac3157a1ee1a380590602001610b64565b6011805461101d9061294f565b80601f01602080910402602001604051908101604052809291908181526020018280546110499061294f565b80156110965780601f1061106b57610100808354040283529160200191611096565b820191906000526020600020905b81548152906001019060200180831161107957829003601f168201915b505050505081565b6060600180546107d69061294f565b600a546001600160a01b036101009091041633146110dd5760405162461bcd60e51b81526004016106b19061280a565b600a5460ff166110f4576110ef611af9565b6110fc565b6110fc611b8c565b7f71aa6dbdf1045ea9e6926a7848dbdd98d55270c4fee88cbc77fd816ccc8d6d2f611129600a5460ff1690565b60405190151581526020015b60405180910390a1565b338161118d5760405162461bcd60e51b815260206004820152601c60248201527f6d696e743a206e65656420746f206d696e742061746c6561737420310000000060448201526064016106b1565b600f5460ff166111d75760405162461bcd60e51b81526020600482015260156024820152746d696e743a206d696e74206e6f742061637469766560581b60448201526064016106b1565b60006111e2600b5490565b9050600c5481106112265760405162461bcd60e51b815260206004820152600e60248201526d1b5a5b9d0e881cdbdb19081bdd5d60921b60448201526064016106b1565b600c5461123384836128c1565b11156112815760405162461bcd60e51b815260206004820152601a60248201527f6d696e743a2063616e2774206d696e742074686174206d616e7900000000000060448201526064016106b1565b6010546001600160a01b0383166000908152600e60205260409020546112a790856128c1565b11156112e95760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d0e880c8d481a5cc81b1a5b5a5d607a1b60448201526064016106b1565b600d546112f690846128ed565b34101561133e5760405162461bcd60e51b81526020600482015260166024820152750dad2dce87440ecc2d8eaca40dcdee840cadcdeeaced60531b60448201526064016106b1565b6001600160a01b0382166000908152600e60205260409020546113629084906128c1565b6001600160a01b0383166000908152600e60205260408120919091555b838110156113a25761139033611673565b8061139a8161298a565b91505061137f565b50816001600160a01b03167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f84600d546040516113e9929190918252602082015260400190565b60405180910390a2505050565b611401338383611c06565b5050565b61140f3383611756565b61142b5760405162461bcd60e51b81526004016106b19061283f565b61143784848484611cd5565b50505050565b6000818152600260205260409020546060906001600160a01b03166114bc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b1565b60006114c6611d08565b905060008151116114e65760405180602001604052806000815250611511565b806114f084611d17565b604051602001611501929190612739565b6040516020818303038152906040525b9392505050565b600a546001600160a01b036101009091041633146115485760405162461bcd60e51b81526004016106b19061280a565b600f805460ff8082161560ff1990921682179092556040519116151581527f756643b49a6f13e0209676621cbd6d5e01c401e38a271b690fdf2a347597faa990602001611135565b600a546001600160a01b036101009091041633146115c05760405162461bcd60e51b81526004016106b19061280a565b600081116115cd57600080fd5b601055565b600a546001600160a01b036101009091041633146116025760405162461bcd60e51b81526004016106b19061280a565b6001600160a01b0381166116675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b1565b611670816119f8565b50565b611681600b80546001019055565b600061168c600b5490565b90506114018282611e15565b60006001600160e01b031982166380ac58cd60e01b14806116c957506001600160e01b03198216635b5e139f60e01b145b806107c157506301ffc9a760e01b6001600160e01b03198316146107c1565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061171d82610c90565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117cf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b1565b60006117da83610c90565b9050806001600160a01b0316846001600160a01b031614806118155750836001600160a01b031661180a84610859565b6001600160a01b0316145b8061184557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661186082610c90565b6001600160a01b0316146118c85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106b1565b6001600160a01b03821661192a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b1565b611935838383611e2f565b6119406000826116e8565b6001600160a01b038316600090815260036020526040812080546001929061196990849061290c565b90915550506001600160a01b03821660009081526003602052604081208054600192906119979084906128c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611a5d82610c90565b9050611a6b81600084611e2f565b611a766000836116e8565b6001600160a01b0381166000908152600360205260408120805460019290611a9f90849061290c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a5460ff1615611b3f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106b1565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b743390565b6040516001600160a01b039091168152602001611135565b600a5460ff16611bd55760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106b1565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611b74565b816001600160a01b0316836001600160a01b03161415611c685760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ce084848461184d565b611cec84848484611ee7565b6114375760405162461bcd60e51b81526004016106b1906127b8565b6060601180546107d69061294f565b606081611d3b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d655780611d4f8161298a565b9150611d5e9050600a836128d9565b9150611d3f565b60008167ffffffffffffffff811115611d8057611d80612a11565b6040519080825280601f01601f191660200182016040528015611daa576020820181803683370190505b5090505b841561184557611dbf60018361290c565b9150611dcc600a866129a5565b611dd79060306128c1565b60f81b818381518110611dec57611dec6129fb565b60200101906001600160f81b031916908160001a905350611e0e600a866128d9565b9450611dae565b611401828260405180602001604052806000815250611ff4565b6001600160a01b038316611e8a57611e8581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ead565b816001600160a01b0316836001600160a01b031614611ead57611ead8382612027565b6001600160a01b038216611ec4576109ff816120c4565b826001600160a01b0316826001600160a01b0316146109ff576109ff8282612173565b60006001600160a01b0384163b15611fe957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f2b903390899088908890600401612768565b602060405180830381600087803b158015611f4557600080fd5b505af1925050508015611f75575060408051601f3d908101601f19168201909252611f729181019061264f565b60015b611fcf573d808015611fa3576040519150601f19603f3d011682016040523d82523d6000602084013e611fa8565b606091505b508051611fc75760405162461bcd60e51b81526004016106b1906127b8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611845565b506001949350505050565b611ffe83836121b7565b61200b6000848484611ee7565b6109ff5760405162461bcd60e51b81526004016106b1906127b8565b6000600161203484610dd9565b61203e919061290c565b600083815260076020526040902054909150808214612091576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120d69060019061290c565b600083815260096020526040812054600880549394509092849081106120fe576120fe6129fb565b90600052602060002001549050806008838154811061211f5761211f6129fb565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612157576121576129e5565b6001900381819060005260206000200160009055905550505050565b600061217e83610dd9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661220d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b1565b6000818152600260205260409020546001600160a01b0316156122725760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b1565b61227e60008383611e2f565b6001600160a01b03821660009081526003602052604081208054600192906122a79084906128c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546123119061294f565b90600052602060002090601f0160209004810192826123335760008555612379565b82601f1061234c57805160ff1916838001178555612379565b82800160010185558215612379579182015b8281111561237957825182559160200191906001019061235e565b50612385929150612389565b5090565b5b80821115612385576000815560010161238a565b600067ffffffffffffffff8311156123b8576123b8612a11565b6123cb601f8401601f1916602001612890565b90508281528383830111156123df57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461240d57600080fd5b919050565b60006020828403121561242457600080fd5b611511826123f6565b6000806040838503121561244057600080fd5b612449836123f6565b9150612457602084016123f6565b90509250929050565b60008060006060848603121561247557600080fd5b61247e846123f6565b925061248c602085016123f6565b9150604084013590509250925092565b600080600080608085870312156124b257600080fd5b6124bb856123f6565b93506124c9602086016123f6565b925060408501359150606085013567ffffffffffffffff8111156124ec57600080fd5b8501601f810187136124fd57600080fd5b61250c8782356020840161239e565b91505092959194509250565b6000806040838503121561252b57600080fd5b612534836123f6565b91506020830135801515811461254957600080fd5b809150509250929050565b6000806040838503121561256757600080fd5b612570836123f6565b946020939093013593505050565b6000602080838503121561259157600080fd5b823567ffffffffffffffff808211156125a957600080fd5b818501915085601f8301126125bd57600080fd5b8135818111156125cf576125cf612a11565b8060051b91506125e0848301612890565b8181528481019084860184860187018a10156125fb57600080fd5b600095505b8386101561262557612611816123f6565b835260019590950194918601918601612600565b5098975050505050505050565b60006020828403121561264457600080fd5b813561151181612a27565b60006020828403121561266157600080fd5b815161151181612a27565b60006020828403121561267e57600080fd5b813567ffffffffffffffff81111561269557600080fd5b8201601f810184136126a657600080fd5b6118458482356020840161239e565b6000602082840312156126c757600080fd5b5035919050565b600081518084526126e6816020860160208601612923565b601f01601f19169290920160200192915050565b815160009082906020808601845b8381101561272d5781516001600160a01b031685529382019390820190600101612708565b50929695505050505050565b6000835161274b818460208801612923565b83519083019061275f818360208801612923565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061279b908301846126ce565b9695505050505050565b60208152600061151160208301846126ce565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156128b9576128b9612a11565b604052919050565b600082198211156128d4576128d46129b9565b500190565b6000826128e8576128e86129cf565b500490565b6000816000190483118215151615612907576129076129b9565b500290565b60008282101561291e5761291e6129b9565b500390565b60005b8381101561293e578181015183820152602001612926565b838111156114375750506000910152565b600181811c9082168061296357607f821691505b6020821081141561298457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561299e5761299e6129b9565b5060010190565b6000826129b4576129b46129cf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461167057600080fdfea2646970667358221220b4cc37587e88a518eb44c2f79a323e9dbf24d49880b80a6a041ba55ba74852a464736f6c63430008070033
Deployed Bytecode
0x60806040526004361061020e5760003560e01c806370a0823111610118578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146105c3578063d02c2bf2146105e3578063e6c6df59146105f8578063e985e9c514610618578063f2fde38b1461066157600080fd5b8063a0712d681461055a578063a22cb4651461056d578063b640392c1461058d578063b88d4fde146105a357600080fd5b80638da5cb5b116100e75780638da5cb5b146104de57806391860f781461050157806395d89b41146105165780639752a0171461052b5780639ef4b9aa1461054057600080fd5b806370a0823114610469578063715018a6146104895780637b47ec1a1461049e5780638d6cc56d146104be57600080fd5b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce7146103d157806355f804b3146103f15780635c975abb146104115780636352211e1461042957806366d49bab1461044957600080fd5b80632f745c59146103665780633ccfd60b146103865780633eaaf86b1461039b57806342842e0e146103b157600080fd5b8063095ea7b3116101e2578063095ea7b3146102c457806318160ddd146102e4578063235b6ea11461030357806323b872dd14610319578063288ee6461461033957600080fd5b8062b6849f1461021357806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c575b600080fd5b34801561021f57600080fd5b5061023361022e36600461257e565b610681565b005b34801561024157600080fd5b50610255610250366004612632565b61079c565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f6107c7565b60405161026191906127a5565b34801561029857600080fd5b506102ac6102a73660046126b5565b610859565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102336102df366004612554565b6108ee565b3480156102f057600080fd5b506008545b604051908152602001610261565b34801561030f57600080fd5b506102f5600d5481565b34801561032557600080fd5b50610233610334366004612460565b610a04565b34801561034557600080fd5b506102f5610354366004612412565b600e6020526000908152604090205481565b34801561037257600080fd5b506102f5610381366004612554565b610a35565b34801561039257600080fd5b50610233610acb565b3480156103a757600080fd5b506102f5600c5481565b3480156103bd57600080fd5b506102336103cc366004612460565b610b6f565b3480156103dd57600080fd5b506102f56103ec3660046126b5565b610b8a565b3480156103fd57600080fd5b5061023361040c36600461266c565b610c1d565b34801561041d57600080fd5b50600a5460ff16610255565b34801561043557600080fd5b506102ac6104443660046126b5565b610c90565b34801561045557600080fd5b506102336104643660046126b5565b610d07565b34801561047557600080fd5b506102f5610484366004612412565b610dd9565b34801561049557600080fd5b50610233610e60565b3480156104aa57600080fd5b506102336104b93660046126b5565b610e9c565b3480156104ca57600080fd5b506102336104d93660046126b5565b610f45565b3480156104ea57600080fd5b50600a5461010090046001600160a01b03166102ac565b34801561050d57600080fd5b5061027f611010565b34801561052257600080fd5b5061027f61109e565b34801561053757600080fd5b506102336110ad565b34801561054c57600080fd5b50600f546102559060ff1681565b6102336105683660046126b5565b61113f565b34801561057957600080fd5b50610233610588366004612518565b6113f6565b34801561059957600080fd5b506102f560105481565b3480156105af57600080fd5b506102336105be36600461249c565b611405565b3480156105cf57600080fd5b5061027f6105de3660046126b5565b61143d565b3480156105ef57600080fd5b50610233611518565b34801561060457600080fd5b506102336106133660046126b5565b611590565b34801561062457600080fd5b5061025561063336600461242d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066d57600080fd5b5061023361067c366004612412565b6115d2565b600a546001600160a01b036101009091041633146106ba5760405162461bcd60e51b81526004016106b19061280a565b60405180910390fd5b600081511161071a5760405162461bcd60e51b815260206004820152602660248201527f61697244726f703a2063616e6e6f742061697264726f7020746f20656d70747960448201526520617272617960d01b60648201526084016106b1565b60005b815181101561075a5761074882828151811061073b5761073b6129fb565b6020026020010151611673565b806107528161298a565b91505061071d565b508060405161076991906126fa565b604051908190038120907fb9413d9dd40eadf97d2949c3c57a163bb454e537a8696520d52a74e0252011e990600090a250565b60006001600160e01b0319821663780e9d6360e01b14806107c157506107c182611698565b92915050565b6060600080546107d69061294f565b80601f01602080910402602001604051908101604052809291908181526020018280546108029061294f565b801561084f5780601f106108245761010080835404028352916020019161084f565b820191906000526020600020905b81548152906001019060200180831161083257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108d25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b1565b506000908152600460205260409020546001600160a01b031690565b60006108f982610c90565b9050806001600160a01b0316836001600160a01b031614156109675760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b1565b336001600160a01b038216148061098357506109838133610633565b6109f55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b1565b6109ff83836116e8565b505050565b610a0e3382611756565b610a2a5760405162461bcd60e51b81526004016106b19061283f565b6109ff83838361184d565b6000610a4083610dd9565b8210610aa25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106b1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03610100909104163314610afb5760405162461bcd60e51b81526004016106b19061280a565b60004711610b0857600080fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610b37573d6000803e3d6000fd5b506040518181527f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d906020015b60405180910390a150565b6109ff83838360405180602001604052806000815250611405565b6000610b9560085490565b8210610bf85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106b1565b60088281548110610c0b57610c0b6129fb565b90600052602060002001549050919050565b600a546001600160a01b03610100909104163314610c4d5760405162461bcd60e51b81526004016106b19061280a565b8051610c60906011906020840190612305565b507f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa81604051610b6491906127a5565b6000818152600260205260408120546001600160a01b0316806107c15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b1565b600a546001600160a01b03610100909104163314610d375760405162461bcd60e51b81526004016106b19061280a565b60008111610da45760405162461bcd60e51b815260206004820152603460248201527f757064617465546f74616c537570706c793a206e657720737570706c79206d75604482015273073742062652067726561746572207468616e20360641b60648201526084016106b1565b600c8190556040518181527fee643f334779f1031decbee003f80a0bcb7ecdc24b6693539cf7447a66afba8a90602001610b64565b60006001600160a01b038216610e445760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03610100909104163314610e905760405162461bcd60e51b81526004016106b19061280a565b610e9a60006119f8565b565b610ea63382611756565b610f0c5760405162461bcd60e51b815260206004820152603160248201527f455243373231204275726e61626c653a2063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016106b1565b610f1581611a52565b6040518181527f066548819fc4bd1208ea1c8608597593134d5661f459c2ef75cad30918af5a3390602001610b64565b600a546001600160a01b03610100909104163314610f755760405162461bcd60e51b81526004016106b19061280a565b60008111610fdb5760405162461bcd60e51b815260206004820152602d60248201527f75706461746550726963653a206e6577207072696365206d757374206265206760448201526c0726561746572207468616e203609c1b60648201526084016106b1565b600d8190556040518181527f1a15ab7124a4e1ce00837351261771caf1691cd7d85ed3a0ac3157a1ee1a380590602001610b64565b6011805461101d9061294f565b80601f01602080910402602001604051908101604052809291908181526020018280546110499061294f565b80156110965780601f1061106b57610100808354040283529160200191611096565b820191906000526020600020905b81548152906001019060200180831161107957829003601f168201915b505050505081565b6060600180546107d69061294f565b600a546001600160a01b036101009091041633146110dd5760405162461bcd60e51b81526004016106b19061280a565b600a5460ff166110f4576110ef611af9565b6110fc565b6110fc611b8c565b7f71aa6dbdf1045ea9e6926a7848dbdd98d55270c4fee88cbc77fd816ccc8d6d2f611129600a5460ff1690565b60405190151581526020015b60405180910390a1565b338161118d5760405162461bcd60e51b815260206004820152601c60248201527f6d696e743a206e65656420746f206d696e742061746c6561737420310000000060448201526064016106b1565b600f5460ff166111d75760405162461bcd60e51b81526020600482015260156024820152746d696e743a206d696e74206e6f742061637469766560581b60448201526064016106b1565b60006111e2600b5490565b9050600c5481106112265760405162461bcd60e51b815260206004820152600e60248201526d1b5a5b9d0e881cdbdb19081bdd5d60921b60448201526064016106b1565b600c5461123384836128c1565b11156112815760405162461bcd60e51b815260206004820152601a60248201527f6d696e743a2063616e2774206d696e742074686174206d616e7900000000000060448201526064016106b1565b6010546001600160a01b0383166000908152600e60205260409020546112a790856128c1565b11156112e95760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d0e880c8d481a5cc81b1a5b5a5d607a1b60448201526064016106b1565b600d546112f690846128ed565b34101561133e5760405162461bcd60e51b81526020600482015260166024820152750dad2dce87440ecc2d8eaca40dcdee840cadcdeeaced60531b60448201526064016106b1565b6001600160a01b0382166000908152600e60205260409020546113629084906128c1565b6001600160a01b0383166000908152600e60205260408120919091555b838110156113a25761139033611673565b8061139a8161298a565b91505061137f565b50816001600160a01b03167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f84600d546040516113e9929190918252602082015260400190565b60405180910390a2505050565b611401338383611c06565b5050565b61140f3383611756565b61142b5760405162461bcd60e51b81526004016106b19061283f565b61143784848484611cd5565b50505050565b6000818152600260205260409020546060906001600160a01b03166114bc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b1565b60006114c6611d08565b905060008151116114e65760405180602001604052806000815250611511565b806114f084611d17565b604051602001611501929190612739565b6040516020818303038152906040525b9392505050565b600a546001600160a01b036101009091041633146115485760405162461bcd60e51b81526004016106b19061280a565b600f805460ff8082161560ff1990921682179092556040519116151581527f756643b49a6f13e0209676621cbd6d5e01c401e38a271b690fdf2a347597faa990602001611135565b600a546001600160a01b036101009091041633146115c05760405162461bcd60e51b81526004016106b19061280a565b600081116115cd57600080fd5b601055565b600a546001600160a01b036101009091041633146116025760405162461bcd60e51b81526004016106b19061280a565b6001600160a01b0381166116675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b1565b611670816119f8565b50565b611681600b80546001019055565b600061168c600b5490565b90506114018282611e15565b60006001600160e01b031982166380ac58cd60e01b14806116c957506001600160e01b03198216635b5e139f60e01b145b806107c157506301ffc9a760e01b6001600160e01b03198316146107c1565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061171d82610c90565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117cf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b1565b60006117da83610c90565b9050806001600160a01b0316846001600160a01b031614806118155750836001600160a01b031661180a84610859565b6001600160a01b0316145b8061184557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661186082610c90565b6001600160a01b0316146118c85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106b1565b6001600160a01b03821661192a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b1565b611935838383611e2f565b6119406000826116e8565b6001600160a01b038316600090815260036020526040812080546001929061196990849061290c565b90915550506001600160a01b03821660009081526003602052604081208054600192906119979084906128c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611a5d82610c90565b9050611a6b81600084611e2f565b611a766000836116e8565b6001600160a01b0381166000908152600360205260408120805460019290611a9f90849061290c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a5460ff1615611b3f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106b1565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b743390565b6040516001600160a01b039091168152602001611135565b600a5460ff16611bd55760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106b1565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611b74565b816001600160a01b0316836001600160a01b03161415611c685760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ce084848461184d565b611cec84848484611ee7565b6114375760405162461bcd60e51b81526004016106b1906127b8565b6060601180546107d69061294f565b606081611d3b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d655780611d4f8161298a565b9150611d5e9050600a836128d9565b9150611d3f565b60008167ffffffffffffffff811115611d8057611d80612a11565b6040519080825280601f01601f191660200182016040528015611daa576020820181803683370190505b5090505b841561184557611dbf60018361290c565b9150611dcc600a866129a5565b611dd79060306128c1565b60f81b818381518110611dec57611dec6129fb565b60200101906001600160f81b031916908160001a905350611e0e600a866128d9565b9450611dae565b611401828260405180602001604052806000815250611ff4565b6001600160a01b038316611e8a57611e8581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ead565b816001600160a01b0316836001600160a01b031614611ead57611ead8382612027565b6001600160a01b038216611ec4576109ff816120c4565b826001600160a01b0316826001600160a01b0316146109ff576109ff8282612173565b60006001600160a01b0384163b15611fe957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f2b903390899088908890600401612768565b602060405180830381600087803b158015611f4557600080fd5b505af1925050508015611f75575060408051601f3d908101601f19168201909252611f729181019061264f565b60015b611fcf573d808015611fa3576040519150601f19603f3d011682016040523d82523d6000602084013e611fa8565b606091505b508051611fc75760405162461bcd60e51b81526004016106b1906127b8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611845565b506001949350505050565b611ffe83836121b7565b61200b6000848484611ee7565b6109ff5760405162461bcd60e51b81526004016106b1906127b8565b6000600161203484610dd9565b61203e919061290c565b600083815260076020526040902054909150808214612091576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120d69060019061290c565b600083815260096020526040812054600880549394509092849081106120fe576120fe6129fb565b90600052602060002001549050806008838154811061211f5761211f6129fb565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612157576121576129e5565b6001900381819060005260206000200160009055905550505050565b600061217e83610dd9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661220d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b1565b6000818152600260205260409020546001600160a01b0316156122725760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b1565b61227e60008383611e2f565b6001600160a01b03821660009081526003602052604081208054600192906122a79084906128c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546123119061294f565b90600052602060002090601f0160209004810192826123335760008555612379565b82601f1061234c57805160ff1916838001178555612379565b82800160010185558215612379579182015b8281111561237957825182559160200191906001019061235e565b50612385929150612389565b5090565b5b80821115612385576000815560010161238a565b600067ffffffffffffffff8311156123b8576123b8612a11565b6123cb601f8401601f1916602001612890565b90508281528383830111156123df57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461240d57600080fd5b919050565b60006020828403121561242457600080fd5b611511826123f6565b6000806040838503121561244057600080fd5b612449836123f6565b9150612457602084016123f6565b90509250929050565b60008060006060848603121561247557600080fd5b61247e846123f6565b925061248c602085016123f6565b9150604084013590509250925092565b600080600080608085870312156124b257600080fd5b6124bb856123f6565b93506124c9602086016123f6565b925060408501359150606085013567ffffffffffffffff8111156124ec57600080fd5b8501601f810187136124fd57600080fd5b61250c8782356020840161239e565b91505092959194509250565b6000806040838503121561252b57600080fd5b612534836123f6565b91506020830135801515811461254957600080fd5b809150509250929050565b6000806040838503121561256757600080fd5b612570836123f6565b946020939093013593505050565b6000602080838503121561259157600080fd5b823567ffffffffffffffff808211156125a957600080fd5b818501915085601f8301126125bd57600080fd5b8135818111156125cf576125cf612a11565b8060051b91506125e0848301612890565b8181528481019084860184860187018a10156125fb57600080fd5b600095505b8386101561262557612611816123f6565b835260019590950194918601918601612600565b5098975050505050505050565b60006020828403121561264457600080fd5b813561151181612a27565b60006020828403121561266157600080fd5b815161151181612a27565b60006020828403121561267e57600080fd5b813567ffffffffffffffff81111561269557600080fd5b8201601f810184136126a657600080fd5b6118458482356020840161239e565b6000602082840312156126c757600080fd5b5035919050565b600081518084526126e6816020860160208601612923565b601f01601f19169290920160200192915050565b815160009082906020808601845b8381101561272d5781516001600160a01b031685529382019390820190600101612708565b50929695505050505050565b6000835161274b818460208801612923565b83519083019061275f818360208801612923565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061279b908301846126ce565b9695505050505050565b60208152600061151160208301846126ce565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156128b9576128b9612a11565b604052919050565b600082198211156128d4576128d46129b9565b500190565b6000826128e8576128e86129cf565b500490565b6000816000190483118215151615612907576129076129b9565b500290565b60008282101561291e5761291e6129b9565b500390565b60005b8381101561293e578181015183820152602001612926565b838111156114375750506000910152565b600181811c9082168061296357607f821691505b6020821081141561298457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561299e5761299e6129b9565b5060010190565b6000826129b4576129b46129cf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461167057600080fdfea2646970667358221220b4cc37587e88a518eb44c2f79a323e9dbf24d49880b80a6a041ba55ba74852a464736f6c63430008070033
Deployed Bytecode Sourcemap
48490:3889:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49992:275;;;;;;;;;;-1:-1:-1;49992:275:0;;;;;:::i;:::-;;:::i;:::-;;42049:224;;;;;;;;;;-1:-1:-1;42049:224:0;;;;;:::i;:::-;;:::i;:::-;;;6963:14:1;;6956:22;6938:41;;6926:2;6911:18;42049:224:0;;;;;;;;29543:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31102:221::-;;;;;;;;;;-1:-1:-1;31102:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6261:32:1;;;6243:51;;6231:2;6216:18;31102:221:0;6097:203:1;30625:411:0;;;;;;;;;;-1:-1:-1;30625:411:0;;;;;:::i;:::-;;:::i;42689:113::-;;;;;;;;;;-1:-1:-1;42777:10:0;:17;42689:113;;;19023:25:1;;;19011:2;18996:18;42689:113:0;18877:177:1;48716:26:0;;;;;;;;;;;;;;;;31852:339;;;;;;;;;;-1:-1:-1;31852:339:0;;;;;:::i;:::-;;:::i;48770:46::-;;;;;;;;;;-1:-1:-1;48770:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;42357:256;;;;;;;;;;-1:-1:-1;42357:256:0;;;;;:::i;:::-;;:::i;52151:225::-;;;;;;;;;;;;;:::i;48670:35::-;;;;;;;;;;;;;;;;32262:185;;;;;;;;;;-1:-1:-1;32262:185:0;;;;;:::i;:::-;;:::i;42879:233::-;;;;;;;;;;-1:-1:-1;42879:233:0;;;;;:::i;:::-;;:::i;49859:125::-;;;;;;;;;;-1:-1:-1;49859:125:0;;;;;:::i;:::-;;:::i;8144:86::-;;;;;;;;;;-1:-1:-1;8215:7:0;;;;8144:86;;29237:239;;;;;;;;;;-1:-1:-1;29237:239:0;;;;;:::i;:::-;;:::i;51766:243::-;;;;;;;;;;-1:-1:-1;51766:243:0;;;;;:::i;:::-;;:::i;28967:208::-;;;;;;;;;;-1:-1:-1;28967:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;49487:231::-;;;;;;;;;;-1:-1:-1;49487:231:0;;;;;:::i;:::-;;:::i;51546:212::-;;;;;;;;;;-1:-1:-1;51546:212:0;;;;;:::i;:::-;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;;;;-1:-1:-1;;;;;5617:6:0;5544:87;;48950:24;;;;;;;;;;;;;:::i;29712:104::-;;;;;;;;;;;;;:::i;51393:145::-;;;;;;;;;;;;;:::i;48843:31::-;;;;;;;;;;-1:-1:-1;48843:31:0;;;;;;;;50422:770;;;;;;:::i;:::-;;:::i;31395:155::-;;;;;;;;;;-1:-1:-1;31395:155:0;;;;;:::i;:::-;;:::i;48882:27::-;;;;;;;;;;;;;;;;32518:328;;;;;;;;;;-1:-1:-1;32518:328:0;;;;;:::i;:::-;;:::i;29887:334::-;;;;;;;;;;-1:-1:-1;29887:334:0;;;;;:::i;:::-;;:::i;50275:137::-;;;;;;;;;;;;;:::i;52017:126::-;;;;;;;;;;-1:-1:-1;52017:126:0;;;;;:::i;:::-;;:::i;31621:164::-;;;;;;;;;;-1:-1:-1;31621:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31742:25:0;;;31718:4;31742:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31621:164;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;49992:275::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;;;;;;;;;50084:1:::1;50069:5;:12;:16;50061:67;;;::::0;-1:-1:-1;;;50061:67:0;;18672:2:1;50061:67:0::1;::::0;::::1;18654:21:1::0;18711:2;18691:18;;;18684:30;18750:34;18730:18;;;18723:62;-1:-1:-1;;;18801:18:1;;;18794:36;18847:19;;50061:67:0::1;18470:402:1::0;50061:67:0::1;50145:9;50140:90;50164:5;:12;50160:1;:16;50140:90;;;50198:19;50208:5;50214:1;50208:8;;;;;;;;:::i;:::-;;;;;;;50198:9;:19::i;:::-;50178:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50140:90;;;;50253:5;50245:14;;;;;;:::i;:::-;;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;49992:275:::0;:::o;42049:224::-;42151:4;-1:-1:-1;;;;;;42175:50:0;;-1:-1:-1;;;42175:50:0;;:90;;;42229:36;42253:11;42229:23;:36::i;:::-;42168:97;42049:224;-1:-1:-1;;42049:224:0:o;29543:100::-;29597:13;29630:5;29623:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29543:100;:::o;31102:221::-;31178:7;34445:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34445:16:0;31198:73;;;;-1:-1:-1;;;31198:73:0;;15488:2:1;31198:73:0;;;15470:21:1;15527:2;15507:18;;;15500:30;15566:34;15546:18;;;15539:62;-1:-1:-1;;;15617:18:1;;;15610:42;15669:19;;31198:73:0;15286:408:1;31198:73:0;-1:-1:-1;31291:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31291:24:0;;31102:221::o;30625:411::-;30706:13;30722:23;30737:7;30722:14;:23::i;:::-;30706:39;;30770:5;-1:-1:-1;;;;;30764:11:0;:2;-1:-1:-1;;;;;30764:11:0;;;30756:57;;;;-1:-1:-1;;;30756:57:0;;17088:2:1;30756:57:0;;;17070:21:1;17127:2;17107:18;;;17100:30;17166:34;17146:18;;;17139:62;-1:-1:-1;;;17217:18:1;;;17210:31;17258:19;;30756:57:0;16886:397:1;30756:57:0;4348:10;-1:-1:-1;;;;;30848:21:0;;;;:62;;-1:-1:-1;30873:37:0;30890:5;4348:10;31621:164;:::i;30873:37::-;30826:168;;;;-1:-1:-1;;;30826:168:0;;13174:2:1;30826:168:0;;;13156:21:1;13213:2;13193:18;;;13186:30;13252:34;13232:18;;;13225:62;13323:26;13303:18;;;13296:54;13367:19;;30826:168:0;12972:420:1;30826:168:0;31007:21;31016:2;31020:7;31007:8;:21::i;:::-;30695:341;30625:411;;:::o;31852:339::-;32047:41;4348:10;32080:7;32047:18;:41::i;:::-;32039:103;;;;-1:-1:-1;;;32039:103:0;;;;;;;:::i;:::-;32155:28;32165:4;32171:2;32175:7;32155:9;:28::i;42357:256::-;42454:7;42490:23;42507:5;42490:16;:23::i;:::-;42482:5;:31;42474:87;;;;-1:-1:-1;;;42474:87:0;;8529:2:1;42474:87:0;;;8511:21:1;8568:2;8548:18;;;8541:30;8607:34;8587:18;;;8580:62;-1:-1:-1;;;8658:18:1;;;8651:41;8709:19;;42474:87:0;8327:407:1;42474:87:0;-1:-1:-1;;;;;;42579:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42357:256::o;52151:225::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;52233:1:::1;52209:21;:25;52201:34;;;::::0;::::1;;52298:37;::::0;52265:21:::1;::::0;52306:10:::1;::::0;52298:37;::::1;;;::::0;52265:21;;52247:15:::1;52298:37:::0;52247:15;52298:37;52265:21;52306:10;52298:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;52351:17:0::1;::::0;19023:25:1;;;52351:17:0::1;::::0;19011:2:1;18996:18;52351:17:0::1;;;;;;;;52190:186;52151:225::o:0;32262:185::-;32400:39;32417:4;32423:2;32427:7;32400:39;;;;;;;;;;;;:16;:39::i;42879:233::-;42954:7;42990:30;42777:10;:17;;42689:113;42990:30;42982:5;:38;42974:95;;;;-1:-1:-1;;;42974:95:0;;18259:2:1;42974:95:0;;;18241:21:1;18298:2;18278:18;;;18271:30;18337:34;18317:18;;;18310:62;-1:-1:-1;;;18388:18:1;;;18381:42;18440:19;;42974:95:0;18057:408:1;42974:95:0;43087:10;43098:5;43087:17;;;;;;;;:::i;:::-;;;;;;;;;43080:24;;42879:233;;;:::o;49859:125::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;49927:17;;::::1;::::0;:10:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49960:16;49971:4;49960:16;;;;;;:::i;29237:239::-:0;29309:7;29345:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29345:16:0;29380:19;29372:73;;;;-1:-1:-1;;;29372:73:0;;14010:2:1;29372:73:0;;;13992:21:1;14049:2;14029:18;;;14022:30;14088:34;14068:18;;;14061:62;-1:-1:-1;;;14139:18:1;;;14132:39;14188:19;;29372:73:0;13808:405:1;51766:243:0;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;51862:1:::1;51850:9;:13;51842:78;;;::::0;-1:-1:-1;;;51842:78:0;;8108:2:1;51842:78:0::1;::::0;::::1;8090:21:1::0;8147:2;8127:18;;;8120:30;8186:34;8166:18;;;8159:62;-1:-1:-1;;;8237:18:1;;;8230:50;8297:19;;51842:78:0::1;7906:416:1::0;51842:78:0::1;51932:12;:24:::0;;;51973:28:::1;::::0;19023:25:1;;;51973:28:0::1;::::0;19011:2:1;18996:18;51973:28:0::1;18877:177:1::0;28967:208:0;29039:7;-1:-1:-1;;;;;29067:19:0;;29059:74;;;;-1:-1:-1;;;29059:74:0;;13599:2:1;29059:74:0;;;13581:21:1;13638:2;13618:18;;;13611:30;13677:34;13657:18;;;13650:62;-1:-1:-1;;;13728:18:1;;;13721:40;13778:19;;29059:74:0;13397:406:1;29059:74:0;-1:-1:-1;;;;;;29151:16:0;;;;;:9;:16;;;;;;;28967:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;49487:231::-;49557:39;49576:10;49588:7;49557:18;:39::i;:::-;49549:101;;;;-1:-1:-1;;;49549:101:0;;11651:2:1;49549:101:0;;;11633:21:1;11690:2;11670:18;;;11663:30;11729:34;11709:18;;;11702:62;-1:-1:-1;;;11780:18:1;;;11773:47;11837:19;;49549:101:0;11449:413:1;49549:101:0;49662:14;49668:7;49662:5;:14::i;:::-;49692:18;;19023:25:1;;;49692:18:0;;19011:2:1;18996:18;49692::0;18877:177:1;51546:212:0;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;51632:1:::1;51621:8;:12;51613:70;;;::::0;-1:-1:-1;;;51613:70:0;;12760:2:1;51613:70:0::1;::::0;::::1;12742:21:1::0;12799:2;12779:18;;;12772:30;12838:34;12818:18;;;12811:62;-1:-1:-1;;;12889:18:1;;;12882:43;12942:19;;51613:70:0::1;12558:409:1::0;51613:70:0::1;51694:6;:17:::0;;;51728:21:::1;::::0;19023:25:1;;;51728:21:0::1;::::0;19011:2:1;18996:18;51728:21:0::1;18877:177:1::0;48950:24:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29712:104::-;29768:13;29801:7;29794:14;;;;;:::i;51393:145::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;8215:7;;;;51452:32:::1;;51476:8;:6;:8::i;:::-;51452:32;;;51463:10;:8;:10::i;:::-;51500:29;51520:8;8215:7:::0;;;;;8144:86;51520:8:::1;51500:29;::::0;6963:14:1;;6956:22;6938:41;;6926:2;6911:18;51500:29:0::1;;;;;;;;51393:145::o:0;50422:770::-;50495:10;50525;50517:51;;;;-1:-1:-1;;;50517:51:0;;14420:2:1;50517:51:0;;;14402:21:1;14459:2;14439:18;;;14432:30;14498;14478:18;;;14471:58;14546:18;;50517:51:0;14218:352:1;50517:51:0;50588:11;;;;50580:45;;;;-1:-1:-1;;;50580:45:0;;15138:2:1;50580:45:0;;;15120:21:1;15177:2;15157:18;;;15150:30;-1:-1:-1;;;15196:18:1;;;15189:51;15257:18;;50580:45:0;14936:345:1;50580:45:0;50637:19;50659;:9;964:14;;872:114;50659:19;50637:41;;50711:12;;50697:11;:26;50689:53;;;;-1:-1:-1;;;50689:53:0;;7765:2:1;50689:53:0;;;7747:21:1;7804:2;7784:18;;;7777:30;-1:-1:-1;;;7823:18:1;;;7816:44;7877:18;;50689:53:0;7563:338:1;50689:53:0;50785:12;;50761:20;50775:6;50761:11;:20;:::i;:::-;:36;;50753:75;;;;-1:-1:-1;;;50753:75:0;;10124:2:1;50753:75:0;;;10106:21:1;10163:2;10143:18;;;10136:30;10202:28;10182:18;;;10175:56;10248:18;;50753:75:0;9922:350:1;50753:75:0;50879:8;;-1:-1:-1;;;;;50857:18:0;;;;;;:10;:18;;;;;;50848:27;;:6;:27;:::i;:::-;:39;;50840:69;;;;-1:-1:-1;;;50840:69:0;;12069:2:1;50840:69:0;;;12051:21:1;12108:2;12088:18;;;12081:30;-1:-1:-1;;;12127:18:1;;;12120:47;12184:18;;50840:69:0;11867:341:1;50840:69:0;50951:6;;50942:15;;:6;:15;:::i;:::-;50929:9;:28;;50921:63;;;;-1:-1:-1;;;50921:63:0;;17490:2:1;50921:63:0;;;17472:21:1;17529:2;17509:18;;;17502:30;-1:-1:-1;;;17548:18:1;;;17541:52;17610:18;;50921:63:0;17288:346:1;50921:63:0;-1:-1:-1;;;;;51016:18:0;;;;;;:10;:18;;;;;;:27;;51037:6;;51016:27;:::i;:::-;-1:-1:-1;;;;;50995:18:0;;;;;;:10;:18;;;;;:48;;;;51055:86;51079:6;51075:1;:10;51055:86;;;51107:21;51117:10;51107:9;:21::i;:::-;51087:3;;;;:::i;:::-;;;;51055:86;;;;51161:6;-1:-1:-1;;;;;51156:28:0;;51169:6;51177;;51156:28;;;;;;19233:25:1;;;19289:2;19274:18;;19267:34;19221:2;19206:18;;19059:248;51156:28:0;;;;;;;;50467:725;;50422:770;:::o;31395:155::-;31490:52;4348:10;31523:8;31533;31490:18;:52::i;:::-;31395:155;;:::o;32518:328::-;32693:41;4348:10;32726:7;32693:18;:41::i;:::-;32685:103;;;;-1:-1:-1;;;32685:103:0;;;;;;;:::i;:::-;32799:39;32813:4;32819:2;32823:7;32832:5;32799:13;:39::i;:::-;32518:328;;;;:::o;29887:334::-;34421:4;34445:16;;;:7;:16;;;;;;29960:13;;-1:-1:-1;;;;;34445:16:0;29986:76;;;;-1:-1:-1;;;29986:76:0;;16672:2:1;29986:76:0;;;16654:21:1;16711:2;16691:18;;;16684:30;16750:34;16730:18;;;16723:62;-1:-1:-1;;;16801:18:1;;;16794:45;16856:19;;29986:76:0;16470:411:1;29986:76:0;30075:21;30099:10;:8;:10::i;:::-;30075:34;;30151:1;30133:7;30127:21;:25;:86;;;;;;;;;;;;;;;;;30179:7;30188:18;:7;:16;:18::i;:::-;30162:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30127:86;30120:93;29887:334;-1:-1:-1;;;29887:334:0:o;50275:137::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;50346:11:::1;::::0;;::::1;::::0;;::::1;50345:12;-1:-1:-1::0;;50331:26:0;;::::1;::::0;::::1;::::0;;;50374:29:::1;::::0;50391:11;;6963:14:1;6956:22;6938:41;;50374:29:0::1;::::0;6926:2:1;6911:18;50374:29:0::1;6798:187:1::0;52017:126:0;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;52103:1:::1;52094:6;:10;52086:19;;;::::0;::::1;;52117:8;:17:::0;52017:126::o;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;9360:2:1;6534:73:0::1;::::0;::::1;9342:21:1::0;9399:2;9379:18;;;9372:30;9438:34;9418:18;;;9411:62;-1:-1:-1;;;9489:18:1;;;9482:36;9535:19;;6534:73:0::1;9158:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;51208:151::-;51259:21;:9;1083:19;;1101:1;1083:19;;;994:127;51259:21;51291:10;51304:19;:9;964:14;;872:114;51304:19;51291:32;;51334:17;51344:2;51348;51334:9;:17::i;28598:305::-;28700:4;-1:-1:-1;;;;;;28737:40:0;;-1:-1:-1;;;28737:40:0;;:105;;-1:-1:-1;;;;;;;28794:48:0;;-1:-1:-1;;;28794:48:0;28737:105;:158;;;-1:-1:-1;;;;;;;;;;20403:40:0;;;28859:36;20294:157;38338:174;38413:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38413:29:0;-1:-1:-1;;;;;38413:29:0;;;;;;;;:24;;38467:23;38413:24;38467:14;:23::i;:::-;-1:-1:-1;;;;;38458:46:0;;;;;;;;;;;38338:174;;:::o;34650:348::-;34743:4;34445:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34445:16:0;34760:73;;;;-1:-1:-1;;;34760:73:0;;11238:2:1;34760:73:0;;;11220:21:1;11277:2;11257:18;;;11250:30;11316:34;11296:18;;;11289:62;-1:-1:-1;;;11367:18:1;;;11360:42;11419:19;;34760:73:0;11036:408:1;34760:73:0;34844:13;34860:23;34875:7;34860:14;:23::i;:::-;34844:39;;34913:5;-1:-1:-1;;;;;34902:16:0;:7;-1:-1:-1;;;;;34902:16:0;;:51;;;;34946:7;-1:-1:-1;;;;;34922:31:0;:20;34934:7;34922:11;:20::i;:::-;-1:-1:-1;;;;;34922:31:0;;34902:51;:87;;;-1:-1:-1;;;;;;31742:25:0;;;31718:4;31742:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34957:32;34894:96;34650:348;-1:-1:-1;;;;34650:348:0:o;37642:578::-;37801:4;-1:-1:-1;;;;;37774:31:0;:23;37789:7;37774:14;:23::i;:::-;-1:-1:-1;;;;;37774:31:0;;37766:85;;;;-1:-1:-1;;;37766:85:0;;16262:2:1;37766:85:0;;;16244:21:1;16301:2;16281:18;;;16274:30;16340:34;16320:18;;;16313:62;-1:-1:-1;;;16391:18:1;;;16384:39;16440:19;;37766:85:0;16060:405:1;37766:85:0;-1:-1:-1;;;;;37870:16:0;;37862:65;;;;-1:-1:-1;;;37862:65:0;;10479:2:1;37862:65:0;;;10461:21:1;10518:2;10498:18;;;10491:30;10557:34;10537:18;;;10530:62;-1:-1:-1;;;10608:18:1;;;10601:34;10652:19;;37862:65:0;10277:400:1;37862:65:0;37940:39;37961:4;37967:2;37971:7;37940:20;:39::i;:::-;38044:29;38061:1;38065:7;38044:8;:29::i;:::-;-1:-1:-1;;;;;38086:15:0;;;;;;:9;:15;;;;;:20;;38105:1;;38086:15;:20;;38105:1;;38086:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38117:13:0;;;;;;:9;:13;;;;;:18;;38134:1;;38117:13;:18;;38134:1;;38117:18;:::i;:::-;;;;-1:-1:-1;;38146:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38146:21:0;-1:-1:-1;;;;;38146:21:0;;;;;;;;;38185:27;;38146:16;;38185:27;;;;;;;37642:578;;;:::o;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;6907:6;6924:17;;;-1:-1:-1;;;;;;6924:17:0;;;;;;6957:40;;6907:6;;;;;;;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;36945:360::-;37005:13;37021:23;37036:7;37021:14;:23::i;:::-;37005:39;;37057:48;37078:5;37093:1;37097:7;37057:20;:48::i;:::-;37146:29;37163:1;37167:7;37146:8;:29::i;:::-;-1:-1:-1;;;;;37188:16:0;;;;;;:9;:16;;;;;:21;;37208:1;;37188:16;:21;;37208:1;;37188:21;:::i;:::-;;;;-1:-1:-1;;37227:16:0;;;;:7;:16;;;;;;37220:23;;-1:-1:-1;;;;;;37220:23:0;;;37261:36;37235:7;;37227:16;-1:-1:-1;;;;;37261:36:0;;;;;37227:16;;37261:36;36994:311;36945:360;:::o;8944:118::-;8215:7;;;;8469:9;8461:38;;;;-1:-1:-1;;;8461:38:0;;12415:2:1;8461:38:0;;;12397:21:1;12454:2;12434:18;;;12427:30;-1:-1:-1;;;12473:18:1;;;12466:46;12529:18;;8461:38:0;12213:340:1;8461:38:0;9004:7:::1;:14:::0;;-1:-1:-1;;9004:14:0::1;9014:4;9004:14;::::0;;9034:20:::1;9041:12;4348:10:::0;;4268:98;9041:12:::1;9034:20;::::0;-1:-1:-1;;;;;6261:32:1;;;6243:51;;6231:2;6216:18;9034:20:0::1;6097:203:1::0;9203:120:0;8215:7;;;;8739:41;;;;-1:-1:-1;;;8739:41:0;;7416:2:1;8739:41:0;;;7398:21:1;7455:2;7435:18;;;7428:30;-1:-1:-1;;;7474:18:1;;;7467:50;7534:18;;8739:41:0;7214:344:1;8739:41:0;9262:7:::1;:15:::0;;-1:-1:-1;;9262:15:0::1;::::0;;9293:22:::1;4348:10:::0;9302:12:::1;4268:98:::0;38654:315;38809:8;-1:-1:-1;;;;;38800:17:0;:5;-1:-1:-1;;;;;38800:17:0;;;38792:55;;;;-1:-1:-1;;;38792:55:0;;10884:2:1;38792:55:0;;;10866:21:1;10923:2;10903:18;;;10896:30;10962:27;10942:18;;;10935:55;11007:18;;38792:55:0;10682:349:1;38792:55:0;-1:-1:-1;;;;;38858:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38858:46:0;;;;;;;;;;38920:41;;6938::1;;;38920::0;;6911:18:1;38920:41:0;;;;;;;38654:315;;;:::o;33728:::-;33885:28;33895:4;33901:2;33905:7;33885:9;:28::i;:::-;33932:48;33955:4;33961:2;33965:7;33974:5;33932:22;:48::i;:::-;33924:111;;;;-1:-1:-1;;;33924:111:0;;;;;;;:::i;49748:103::-;49800:13;49833:10;49826:17;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;35340:110;35416:26;35426:2;35430:7;35416:26;;;;;;;;;;;;:9;:26::i;43725:589::-;-1:-1:-1;;;;;43931:18:0;;43927:187;;43966:40;43998:7;45141:10;:17;;45114:24;;;;:15;:24;;;;;:44;;;45169:24;;;;;;;;;;;;45037:164;43966:40;43927:187;;;44036:2;-1:-1:-1;;;;;44028:10:0;:4;-1:-1:-1;;;;;44028:10:0;;44024:90;;44055:47;44088:4;44094:7;44055:32;:47::i;:::-;-1:-1:-1;;;;;44128:16:0;;44124:183;;44161:45;44198:7;44161:36;:45::i;44124:183::-;44234:4;-1:-1:-1;;;;;44228:10:0;:2;-1:-1:-1;;;;;44228:10:0;;44224:83;;44255:40;44283:2;44287:7;44255:27;:40::i;39534:799::-;39689:4;-1:-1:-1;;;;;39710:13:0;;10473:20;10521:8;39706:620;;39746:72;;-1:-1:-1;;;39746:72:0;;-1:-1:-1;;;;;39746:36:0;;;;;:72;;4348:10;;39797:4;;39803:7;;39812:5;;39746:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39746:72:0;;;;;;;;-1:-1:-1;;39746:72:0;;;;;;;;;;;;:::i;:::-;;;39742:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39988:13:0;;39984:272;;40031:60;;-1:-1:-1;;;40031:60:0;;;;;;;:::i;39984:272::-;40206:6;40200:13;40191:6;40187:2;40183:15;40176:38;39742:529;-1:-1:-1;;;;;;39869:51:0;-1:-1:-1;;;39869:51:0;;-1:-1:-1;39862:58:0;;39706:620;-1:-1:-1;40310:4:0;39534:799;;;;;;:::o;35677:321::-;35807:18;35813:2;35817:7;35807:5;:18::i;:::-;35858:54;35889:1;35893:2;35897:7;35906:5;35858:22;:54::i;:::-;35836:154;;;;-1:-1:-1;;;35836:154:0;;;;;;;:::i;45828:988::-;46094:22;46144:1;46119:22;46136:4;46119:16;:22::i;:::-;:26;;;;:::i;:::-;46156:18;46177:26;;;:17;:26;;;;;;46094:51;;-1:-1:-1;46310:28:0;;;46306:328;;-1:-1:-1;;;;;46377:18:0;;46355:19;46377:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46428:30;;;;;;:44;;;46545:30;;:17;:30;;;;;:43;;;46306:328;-1:-1:-1;46730:26:0;;;;:17;:26;;;;;;;;46723:33;;;-1:-1:-1;;;;;46774:18:0;;;;;:12;:18;;;;;:34;;;;;;;46767:41;45828:988::o;47111:1079::-;47389:10;:17;47364:22;;47389:21;;47409:1;;47389:21;:::i;:::-;47421:18;47442:24;;;:15;:24;;;;;;47815:10;:26;;47364:46;;-1:-1:-1;47442:24:0;;47364:46;;47815:26;;;;;;:::i;:::-;;;;;;;;;47793:48;;47879:11;47854:10;47865;47854:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47959:28;;;:15;:28;;;;;;;:41;;;48131:24;;;;;48124:31;48166:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47182:1008;;;47111:1079;:::o;44615:221::-;44700:14;44717:20;44734:2;44717:16;:20::i;:::-;-1:-1:-1;;;;;44748:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44793:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44615:221:0:o;36334:382::-;-1:-1:-1;;;;;36414:16:0;;36406:61;;;;-1:-1:-1;;;36406:61:0;;14777:2:1;36406:61:0;;;14759:21:1;;;14796:18;;;14789:30;14855:34;14835:18;;;14828:62;14907:18;;36406:61:0;14575:356:1;36406:61:0;34421:4;34445:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34445:16:0;:30;36478:58;;;;-1:-1:-1;;;36478:58:0;;9767:2:1;36478:58:0;;;9749:21:1;9806:2;9786:18;;;9779:30;9845;9825:18;;;9818:58;9893:18;;36478:58:0;9565:352:1;36478:58:0;36549:45;36578:1;36582:2;36586:7;36549:20;:45::i;:::-;-1:-1:-1;;;;;36607:13:0;;;;;;:9;:13;;;;;:18;;36624:1;;36607:13;:18;;36624:1;;36607:18;:::i;:::-;;;;-1:-1:-1;;36636:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36636:21:0;-1:-1:-1;;;;;36636:21:0;;;;;;;;36675:33;;36636:16;;;36675:33;;36636:16;;36675:33;36334:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:1;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:1;2674:963;-1:-1:-1;;;;;;;;2674:963:1:o;3642:245::-;3700:6;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:30;3851:5;3827:30;:::i;3892:249::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4062:9;4056:16;4081:30;4105:5;4081:30;:::i;4146:450::-;4215:6;4268:2;4256:9;4247:7;4243:23;4239:32;4236:52;;;4284:1;4281;4274:12;4236:52;4324:9;4311:23;4357:18;4349:6;4346:30;4343:50;;;4389:1;4386;4379:12;4343:50;4412:22;;4465:4;4457:13;;4453:27;-1:-1:-1;4443:55:1;;4494:1;4491;4484:12;4443:55;4517:73;4582:7;4577:2;4564:16;4559:2;4555;4551:11;4517:73;:::i;4601:180::-;4660:6;4713:2;4701:9;4692:7;4688:23;4684:32;4681:52;;;4729:1;4726;4719:12;4681:52;-1:-1:-1;4752:23:1;;4601:180;-1:-1:-1;4601:180:1:o;4786:257::-;4827:3;4865:5;4859:12;4892:6;4887:3;4880:19;4908:63;4964:6;4957:4;4952:3;4948:14;4941:4;4934:5;4930:16;4908:63;:::i;:::-;5025:2;5004:15;-1:-1:-1;;5000:29:1;4991:39;;;;5032:4;4987:50;;4786:257;-1:-1:-1;;4786:257:1:o;5048:569::-;5266:13;;5209:3;;5240;;5319:4;5346:15;;;5209:3;5389:201;5403:6;5400:1;5397:13;5389:201;;;5470:13;;-1:-1:-1;;;;;5466:39:1;5452:54;;5528:14;;;;5565:15;;;;5502:1;5418:9;5389:201;;;-1:-1:-1;5606:5:1;;5048:569;-1:-1:-1;;;;;;5048:569:1:o;5622:470::-;5801:3;5839:6;5833:13;5855:53;5901:6;5896:3;5889:4;5881:6;5877:17;5855:53;:::i;:::-;5971:13;;5930:16;;;;5993:57;5971:13;5930:16;6027:4;6015:17;;5993:57;:::i;:::-;6066:20;;5622:470;-1:-1:-1;;;;5622:470:1:o;6305:488::-;-1:-1:-1;;;;;6574:15:1;;;6556:34;;6626:15;;6621:2;6606:18;;6599:43;6673:2;6658:18;;6651:34;;;6721:3;6716:2;6701:18;;6694:31;;;6499:4;;6742:45;;6767:19;;6759:6;6742:45;:::i;:::-;6734:53;6305:488;-1:-1:-1;;;;;;6305:488:1:o;6990:219::-;7139:2;7128:9;7121:21;7102:4;7159:44;7199:2;7188:9;7184:18;7176:6;7159:44;:::i;8739:414::-;8941:2;8923:21;;;8980:2;8960:18;;;8953:30;9019:34;9014:2;8999:18;;8992:62;-1:-1:-1;;;9085:2:1;9070:18;;9063:48;9143:3;9128:19;;8739:414::o;15699:356::-;15901:2;15883:21;;;15920:18;;;15913:30;15979:34;15974:2;15959:18;;15952:62;16046:2;16031:18;;15699:356::o;17639:413::-;17841:2;17823:21;;;17880:2;17860:18;;;17853:30;17919:34;17914:2;17899:18;;17892:62;-1:-1:-1;;;17985:2:1;17970:18;;17963:47;18042:3;18027:19;;17639:413::o;19312:275::-;19383:2;19377:9;19448:2;19429:13;;-1:-1:-1;;19425:27:1;19413:40;;19483:18;19468:34;;19504:22;;;19465:62;19462:88;;;19530:18;;:::i;:::-;19566:2;19559:22;19312:275;;-1:-1:-1;19312:275:1:o;19592:128::-;19632:3;19663:1;19659:6;19656:1;19653:13;19650:39;;;19669:18;;:::i;:::-;-1:-1:-1;19705:9:1;;19592:128::o;19725:120::-;19765:1;19791;19781:35;;19796:18;;:::i;:::-;-1:-1:-1;19830:9:1;;19725:120::o;19850:168::-;19890:7;19956:1;19952;19948:6;19944:14;19941:1;19938:21;19933:1;19926:9;19919:17;19915:45;19912:71;;;19963:18;;:::i;:::-;-1:-1:-1;20003:9:1;;19850:168::o;20023:125::-;20063:4;20091:1;20088;20085:8;20082:34;;;20096:18;;:::i;:::-;-1:-1:-1;20133:9:1;;20023:125::o;20153:258::-;20225:1;20235:113;20249:6;20246:1;20243:13;20235:113;;;20325:11;;;20319:18;20306:11;;;20299:39;20271:2;20264:10;20235:113;;;20366:6;20363:1;20360:13;20357:48;;;-1:-1:-1;;20401:1:1;20383:16;;20376:27;20153:258::o;20416:380::-;20495:1;20491:12;;;;20538;;;20559:61;;20613:4;20605:6;20601:17;20591:27;;20559:61;20666:2;20658:6;20655:14;20635:18;20632:38;20629:161;;;20712:10;20707:3;20703:20;20700:1;20693:31;20747:4;20744:1;20737:15;20775:4;20772:1;20765:15;20629:161;;20416:380;;;:::o;20801:135::-;20840:3;-1:-1:-1;;20861:17:1;;20858:43;;;20881:18;;:::i;:::-;-1:-1:-1;20928:1:1;20917:13;;20801:135::o;20941:112::-;20973:1;20999;20989:35;;21004:18;;:::i;:::-;-1:-1:-1;21038:9:1;;20941:112::o;21058:127::-;21119:10;21114:3;21110:20;21107:1;21100:31;21150:4;21147:1;21140:15;21174:4;21171:1;21164:15;21190:127;21251:10;21246:3;21242:20;21239:1;21232:31;21282:4;21279:1;21272:15;21306:4;21303:1;21296:15;21322:127;21383:10;21378:3;21374:20;21371:1;21364:31;21414:4;21411:1;21404:15;21438:4;21435:1;21428:15;21454:127;21515:10;21510:3;21506:20;21503:1;21496:31;21546:4;21543:1;21536:15;21570:4;21567:1;21560:15;21586:127;21647:10;21642:3;21638:20;21635:1;21628:31;21678:4;21675:1;21668:15;21702:4;21699:1;21692:15;21718:131;-1:-1:-1;;;;;;21792:32:1;;21782:43;;21772:71;;21839:1;21836;21829:12
Swarm Source
ipfs://b4cc37587e88a518eb44c2f79a323e9dbf24d49880b80a6a041ba55ba74852a4
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.