Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 184 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 16525798 | 1148 days ago | IN | 0 ETH | 0.00037027 | ||||
| Set Approval For... | 16501012 | 1152 days ago | IN | 0 ETH | 0.00092841 | ||||
| Transfer From | 15164470 | 1346 days ago | IN | 0 ETH | 0.00091611 | ||||
| Public Mint | 15108443 | 1354 days ago | IN | 0 ETH | 0.00159621 | ||||
| Set Approval For... | 15108412 | 1354 days ago | IN | 0 ETH | 0.0005502 | ||||
| Public Mint | 15108406 | 1354 days ago | IN | 0 ETH | 0.00075442 | ||||
| Public Mint | 15108405 | 1354 days ago | IN | 0 ETH | 0.00111118 | ||||
| Public Mint | 15108400 | 1354 days ago | IN | 0 ETH | 0.00122447 | ||||
| Public Mint | 15020128 | 1369 days ago | IN | 0 ETH | 0.00635428 | ||||
| Public Mint | 14945446 | 1382 days ago | IN | 0 ETH | 0.00507099 | ||||
| Public Mint | 14902718 | 1389 days ago | IN | 0 ETH | 0.00711889 | ||||
| Public Mint | 14902711 | 1389 days ago | IN | 0 ETH | 0.00207625 | ||||
| Transfer From | 14894456 | 1391 days ago | IN | 0 ETH | 0.00251004 | ||||
| Public Mint | 14893451 | 1391 days ago | IN | 0 ETH | 0.01041991 | ||||
| Public Mint | 14892737 | 1391 days ago | IN | 0 ETH | 0.01248146 | ||||
| Set Token Price | 14892714 | 1391 days ago | IN | 0 ETH | 0.00245675 | ||||
| Transfer From | 14516507 | 1451 days ago | IN | 0 ETH | 0.0040639 | ||||
| Safe Transfer Fr... | 14477370 | 1457 days ago | IN | 0 ETH | 0.00246791 | ||||
| Public Mint | 14415282 | 1466 days ago | IN | 0.05 ETH | 0.00183617 | ||||
| Withdraw | 14380387 | 1472 days ago | IN | 0 ETH | 0.00153555 | ||||
| Safe Transfer Fr... | 14363062 | 1475 days ago | IN | 0 ETH | 0.00259407 | ||||
| Set Approval For... | 14360886 | 1475 days ago | IN | 0 ETH | 0.00144507 | ||||
| Public Mint | 14335369 | 1479 days ago | IN | 0.05 ETH | 0.00503482 | ||||
| Set Approval For... | 14331317 | 1480 days ago | IN | 0 ETH | 0.0008364 | ||||
| Safe Transfer Fr... | 14331019 | 1480 days ago | IN | 0 ETH | 0.00175291 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Zoodles
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-02-17
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
//
// #######
// # #### #### ##### # ###### ####
// # # # # # # # # # #
// # # # # # # # # ##### ####
// # # # # # # # # # #
// # # # # # # # # # # #
// ####### #### #### ##### ###### ###### ####
//
// Zoodles is a collection of 8888 evolving animals on the Ethereum blockchain
//
// Zoodles.io
//
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/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/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/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/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/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: Contracts/Zoodles.sol
pragma solidity ^0.8.0;
contract Zoodles is Ownable, ERC721 {
using Counters for Counters.Counter;
Counters.Counter private _tokenSupply;
uint256 public constant MAX_TOKENS = 8888;
uint256 public constant MINT_TRANSACTION_LIMIT = 9;
uint256 public tokenPrice = 0.05 ether;
bool public saleIsActive;
string _baseTokenURI;
address _proxyRegistryAddress;
constructor(address proxyRegistryAddress) ERC721("Zoodles", "ZOOD") {
_proxyRegistryAddress = proxyRegistryAddress;
_tokenSupply.increment();
_safeMint(msg.sender, 0);
}
function publicMint(uint256 amount) external payable {
require(saleIsActive, "Sale is not active");
require(amount < MINT_TRANSACTION_LIMIT, "Mint amount too large");
uint256 supply = _tokenSupply.current();
require(supply + amount < MAX_TOKENS, "Not enough tokens remaining");
require(tokenPrice * amount <= msg.value, "Not enough ether sent");
for (uint256 i = 0; i < amount; i++) {
_tokenSupply.increment();
_safeMint(msg.sender, supply + i);
}
}
function reserveTokens(address to, uint256 amount) external onlyOwner {
uint256 supply = _tokenSupply.current();
require(supply + amount < MAX_TOKENS, "Not enough tokens remaining");
for (uint256 i = 0; i < amount; i++) {
_tokenSupply.increment();
_safeMint(to, supply + i);
}
}
function setTokenPrice(uint256 newPrice) external onlyOwner {
tokenPrice = newPrice;
}
function flipSaleState() external onlyOwner {
saleIsActive = !saleIsActive;
}
function totalSupply() public view returns (uint256) {
return _tokenSupply.current();
}
function setBaseURI(string memory newBaseURI) external onlyOwner {
_baseTokenURI = newBaseURI;
}
function _baseURI() internal view override returns (string memory) {
return _baseTokenURI;
}
function setProxyRegistryAddress(address proxyRegistryAddress)
external
onlyOwner
{
_proxyRegistryAddress = proxyRegistryAddress;
}
function isApprovedForAll(address owner, address operator)
public
view
override
returns (bool)
{
// Whitelist OpenSea proxy contract for easy trading.
ProxyRegistry proxyRegistry = ProxyRegistry(_proxyRegistryAddress);
if (address(proxyRegistry.proxies(owner)) == operator) {
return true;
}
return super.isApprovedForAll(owner, operator);
}
receive() external payable {}
function withdraw() external onlyOwner {
(bool success, ) = msg.sender.call{value: address(this).balance}("");
require(success, "Withdrawal failed");
}
}
contract OwnableDelegateProxy {}
contract ProxyRegistry {
mapping(address => OwnableDelegateProxy) public proxies;
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_TRANSACTION_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserveTokens","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setTokenPrice","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":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
608060405266b1a2bc2ec500006008553480156200001c57600080fd5b5060405162002692380380620026928339810160408190526200003f91620004c3565b604051806040016040528060078152602001665a6f6f646c657360c81b815250604051806040016040528060048152602001631693d3d160e21b81525062000096620000906200010b60201b60201c565b6200010f565b8151620000ab9060019060208501906200041d565b508051620000c19060029060208401906200041d565b5050600b80546001600160a01b0319166001600160a01b03841617905550620000f760076200015f602090811b62000daf17901c565b6200010433600062000168565b50620006b6565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80546001019055565b6200018a8282604051806020016040528060008152506200018e60201b60201c565b5050565b6200019a8383620001d6565b620001a96000848484620002c1565b620001d15760405162461bcd60e51b8152600401620001c89062000596565b60405180910390fd5b505050565b6001600160a01b038216620001ff5760405162461bcd60e51b8152600401620001c8906200061f565b6200020a81620003fa565b156200022a5760405162461bcd60e51b8152600401620001c890620005e8565b6200023860008383620001d1565b6001600160a01b03821660009081526004602052604081208054600192906200026390849062000654565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620002e2846001600160a01b03166200041760201b62000db81760201c565b15620003ee576001600160a01b03841663150b7a02620003016200010b565b8786866040518563ffffffff1660e01b81526004016200032594939291906200051d565b602060405180830381600087803b1580156200034057600080fd5b505af192505050801562000373575060408051601f3d908101601f191682019092526200037091810190620004f3565b60015b620003d3573d808015620003a4576040519150601f19603f3d011682016040523d82523d6000602084013e620003a9565b606091505b508051620003cb5760405162461bcd60e51b8152600401620001c89062000596565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620003f2565b5060015b949350505050565b6000908152600360205260409020546001600160a01b0316151590565b3b151590565b8280546200042b9062000679565b90600052602060002090601f0160209004810192826200044f57600085556200049a565b82601f106200046a57805160ff19168380011785556200049a565b828001600101855582156200049a579182015b828111156200049a5782518255916020019190600101906200047d565b50620004a8929150620004ac565b5090565b5b80821115620004a85760008155600101620004ad565b600060208284031215620004d5578081fd5b81516001600160a01b0381168114620004ec578182fd5b9392505050565b60006020828403121562000505578081fd5b81516001600160e01b031981168114620004ec578182fd5b600060018060a01b0380871683526020818716818501528560408501526080606085015284519150816080850152825b828110156200056b5785810182015185820160a0015281016200054d565b828111156200057d578360a084870101525b5050601f01601f19169190910160a00195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b600082198211156200067457634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200068e57607f821691505b60208210811415620006b057634e487b7160e01b600052602260045260246000fd5b50919050565b611fcc80620006c66000396000f3fe6080604052600436106101bb5760003560e01c8063715018a6116100ec578063bea6d30e1161008a578063e985e9c511610064578063e985e9c514610496578063eb8d2444146104b6578063f2fde38b146104cb578063f47c84c5146104eb576101c2565b8063bea6d30e14610441578063c87b56dd14610456578063d26ea6c014610476576101c2565b80638da5cb5b116100c65780638da5cb5b146103d757806395d89b41146103ec578063a22cb46514610401578063b88d4fde14610421576101c2565b8063715018a61461038d57806378cf19e9146103a25780637ff9b596146103c2576101c2565b806334918dfd1161015957806355f804b31161013357806355f804b31461030d5780636352211e1461032d5780636a61e5fc1461034d57806370a082311461036d576101c2565b806334918dfd146102c35780633ccfd60b146102d857806342842e0e146102ed576101c2565b8063095ea7b311610195578063095ea7b31461024c57806318160ddd1461026e57806323b872dd146102905780632db11544146102b0576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101e76101e2366004611757565b610500565b6040516101f491906118b8565b60405180910390f35b34801561020957600080fd5b50610212610548565b6040516101f491906118c3565b34801561022b57600080fd5b5061023f61023a3660046117f1565b6105da565b6040516101f49190611867565b34801561025857600080fd5b5061026c61026736600461172c565b610626565b005b34801561027a57600080fd5b506102836106be565b6040516101f49190611e28565b34801561029c57600080fd5b5061026c6102ab36600461163e565b6106cf565b61026c6102be3660046117f1565b610707565b3480156102cf57600080fd5b5061026c6107e8565b3480156102e457600080fd5b5061026c61083b565b3480156102f957600080fd5b5061026c61030836600461163e565b6108f9565b34801561031957600080fd5b5061026c6103283660046117ab565b610914565b34801561033957600080fd5b5061023f6103483660046117f1565b61096a565b34801561035957600080fd5b5061026c6103683660046117f1565b61099f565b34801561037957600080fd5b506102836103883660046115ea565b6109e3565b34801561039957600080fd5b5061026c610a27565b3480156103ae57600080fd5b5061026c6103bd36600461172c565b610a72565b3480156103ce57600080fd5b50610283610b24565b3480156103e357600080fd5b5061023f610b2a565b3480156103f857600080fd5b50610212610b39565b34801561040d57600080fd5b5061026c61041c3660046116fb565b610b48565b34801561042d57600080fd5b5061026c61043c36600461167e565b610b5a565b34801561044d57600080fd5b50610283610b93565b34801561046257600080fd5b506102126104713660046117f1565b610b98565b34801561048257600080fd5b5061026c6104913660046115ea565b610c1b565b3480156104a257600080fd5b506101e76104b1366004611606565b610c7c565b3480156104c257600080fd5b506101e7610d32565b3480156104d757600080fd5b5061026c6104e63660046115ea565b610d3b565b3480156104f757600080fd5b50610283610da9565b60006001600160e01b031982166380ac58cd60e01b148061053157506001600160e01b03198216635b5e139f60e01b145b80610540575061054082610dbe565b90505b919050565b60606001805461055790611ebf565b80601f016020809104026020016040519081016040528092919081815260200182805461058390611ebf565b80156105d05780601f106105a5576101008083540402835291602001916105d0565b820191906000526020600020905b8154815290600101906020018083116105b357829003601f168201915b5050505050905090565b60006105e582610dd7565b61060a5760405162461bcd60e51b815260040161060190611bec565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106318261096a565b9050806001600160a01b0316836001600160a01b031614156106655760405162461bcd60e51b815260040161060190611d05565b806001600160a01b0316610677610df4565b6001600160a01b031614806106935750610693816104b1610df4565b6106af5760405162461bcd60e51b815260040161060190611ac7565b6106b98383610df8565b505050565b60006106ca6007610e66565b905090565b6106e06106da610df4565b82610e6a565b6106fc5760405162461bcd60e51b815260040161060190611d46565b6106b9838383610ee7565b60095460ff166107295760405162461bcd60e51b815260040161060190611a4f565b600981106107495760405162461bcd60e51b8152600401610601906118d6565b60006107556007610e66565b90506122b86107648383611e31565b106107815760405162461bcd60e51b815260040161060190611df1565b34826008546107909190611e5d565b11156107ae5760405162461bcd60e51b815260040161060190611d97565b60005b828110156106b9576107c36007610daf565b6107d6336107d18385611e31565b611014565b806107e081611efa565b9150506107b1565b6107f0610df4565b6001600160a01b0316610801610b2a565b6001600160a01b0316146108275760405162461bcd60e51b815260040161060190611c38565b6009805460ff19811660ff90911615179055565b610843610df4565b6001600160a01b0316610854610b2a565b6001600160a01b03161461087a5760405162461bcd60e51b815260040161060190611c38565b6000336001600160a01b03164760405161089390611864565b60006040518083038185875af1925050503d80600081146108d0576040519150601f19603f3d011682016040523d82523d6000602084013e6108d5565b606091505b50509050806108f65760405162461bcd60e51b815260040161060190611dc6565b50565b6106b983838360405180602001604052806000815250610b5a565b61091c610df4565b6001600160a01b031661092d610b2a565b6001600160a01b0316146109535760405162461bcd60e51b815260040161060190611c38565b805161096690600a9060208401906114e1565b5050565b6000818152600360205260408120546001600160a01b0316806105405760405162461bcd60e51b815260040161060190611b6e565b6109a7610df4565b6001600160a01b03166109b8610b2a565b6001600160a01b0316146109de5760405162461bcd60e51b815260040161060190611c38565b600855565b60006001600160a01b038216610a0b5760405162461bcd60e51b815260040161060190611b24565b506001600160a01b031660009081526004602052604090205490565b610a2f610df4565b6001600160a01b0316610a40610b2a565b6001600160a01b031614610a665760405162461bcd60e51b815260040161060190611c38565b610a70600061102e565b565b610a7a610df4565b6001600160a01b0316610a8b610b2a565b6001600160a01b031614610ab15760405162461bcd60e51b815260040161060190611c38565b6000610abd6007610e66565b90506122b8610acc8383611e31565b10610ae95760405162461bcd60e51b815260040161060190611df1565b60005b82811015610b1e57610afe6007610daf565b610b0c846107d18385611e31565b80610b1681611efa565b915050610aec565b50505050565b60085481565b6000546001600160a01b031690565b60606002805461055790611ebf565b610966610b53610df4565b838361107e565b610b6b610b65610df4565b83610e6a565b610b875760405162461bcd60e51b815260040161060190611d46565b610b1e84848484611121565b600981565b6060610ba382610dd7565b610bbf5760405162461bcd60e51b815260040161060190611cb6565b6000610bc9611154565b90506000815111610be95760405180602001604052806000815250610c14565b80610bf384611163565b604051602001610c04929190611835565b6040516020818303038152906040525b9392505050565b610c23610df4565b6001600160a01b0316610c34610b2a565b6001600160a01b031614610c5a5760405162461bcd60e51b815260040161060190611c38565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600b5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c455279190610cb5908890600401611867565b60206040518083038186803b158015610ccd57600080fd5b505afa158015610ce1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d05919061178f565b6001600160a01b03161415610d1e576001915050610d2c565b610d288484611286565b9150505b92915050565b60095460ff1681565b610d43610df4565b6001600160a01b0316610d54610b2a565b6001600160a01b031614610d7a5760405162461bcd60e51b815260040161060190611c38565b6001600160a01b038116610da05760405162461bcd60e51b815260040161060190611957565b6108f68161102e565b6122b881565b80546001019055565b3b151590565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e2d8261096a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b6000610e7582610dd7565b610e915760405162461bcd60e51b815260040161060190611a7b565b6000610e9c8361096a565b9050806001600160a01b0316846001600160a01b03161480610ed75750836001600160a01b0316610ecc846105da565b6001600160a01b0316145b80610d285750610d288185610c7c565b826001600160a01b0316610efa8261096a565b6001600160a01b031614610f205760405162461bcd60e51b815260040161060190611c6d565b6001600160a01b038216610f465760405162461bcd60e51b8152600401610601906119d4565b610f518383836106b9565b610f5c600082610df8565b6001600160a01b0383166000908152600460205260408120805460019290610f85908490611e7c565b90915550506001600160a01b0382166000908152600460205260408120805460019290610fb3908490611e31565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109668282604051806020016040528060008152506112b4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156110b05760405162461bcd60e51b815260040161060190611a18565b6001600160a01b0383811660008181526006602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906111149085906118b8565b60405180910390a3505050565b61112c848484610ee7565b611138848484846112e7565b610b1e5760405162461bcd60e51b815260040161060190611905565b6060600a805461055790611ebf565b60608161118857506040805180820190915260018152600360fc1b6020820152610543565b8160005b81156111b2578061119c81611efa565b91506111ab9050600a83611e49565b915061118c565b60008167ffffffffffffffff8111156111db57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611205576020820181803683370190505b5090505b841561127e5761121a600183611e7c565b9150611227600a86611f15565b611232906030611e31565b60f81b81838151811061125557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611277600a86611e49565b9450611209565b949350505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6112be8383611402565b6112cb60008484846112e7565b6106b95760405162461bcd60e51b815260040161060190611905565b60006112fb846001600160a01b0316610db8565b156113f757836001600160a01b031663150b7a02611317610df4565b8786866040518563ffffffff1660e01b8152600401611339949392919061187b565b602060405180830381600087803b15801561135357600080fd5b505af1925050508015611383575060408051601f3d908101601f1916820190925261138091810190611773565b60015b6113dd573d8080156113b1576040519150601f19603f3d011682016040523d82523d6000602084013e6113b6565b606091505b5080516113d55760405162461bcd60e51b815260040161060190611905565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061127e565b506001949350505050565b6001600160a01b0382166114285760405162461bcd60e51b815260040161060190611bb7565b61143181610dd7565b1561144e5760405162461bcd60e51b81526004016106019061199d565b61145a600083836106b9565b6001600160a01b0382166000908152600460205260408120805460019290611483908490611e31565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546114ed90611ebf565b90600052602060002090601f01602090048101928261150f5760008555611555565b82601f1061152857805160ff1916838001178555611555565b82800160010185558215611555579182015b8281111561155557825182559160200191906001019061153a565b50611561929150611565565b5090565b5b808211156115615760008155600101611566565b600067ffffffffffffffff8084111561159557611595611f55565b604051601f8501601f1916810160200182811182821017156115b9576115b9611f55565b6040528481529150818385018610156115d157600080fd5b8484602083013760006020868301015250509392505050565b6000602082840312156115fb578081fd5b8135610c1481611f6b565b60008060408385031215611618578081fd5b823561162381611f6b565b9150602083013561163381611f6b565b809150509250929050565b600080600060608486031215611652578081fd5b833561165d81611f6b565b9250602084013561166d81611f6b565b929592945050506040919091013590565b60008060008060808587031215611693578081fd5b843561169e81611f6b565b935060208501356116ae81611f6b565b925060408501359150606085013567ffffffffffffffff8111156116d0578182fd5b8501601f810187136116e0578182fd5b6116ef8782356020840161157a565b91505092959194509250565b6000806040838503121561170d578182fd5b823561171881611f6b565b915060208301358015158114611633578182fd5b6000806040838503121561173e578182fd5b823561174981611f6b565b946020939093013593505050565b600060208284031215611768578081fd5b8135610c1481611f80565b600060208284031215611784578081fd5b8151610c1481611f80565b6000602082840312156117a0578081fd5b8151610c1481611f6b565b6000602082840312156117bc578081fd5b813567ffffffffffffffff8111156117d2578182fd5b8201601f810184136117e2578182fd5b610d288482356020840161157a565b600060208284031215611802578081fd5b5035919050565b60008151808452611821816020860160208601611e93565b601f01601f19169290920160200192915050565b60008351611847818460208801611e93565b83519083019061185b818360208801611e93565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118ae90830184611809565b9695505050505050565b901515815260200190565b600060208252610c146020830184611809565b6020808252601590820152744d696e7420616d6f756e7420746f6f206c6172676560581b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260159082015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604082015260600190565b60208082526011908201527015da5d1a191c985dd85b0819985a5b1959607a1b604082015260600190565b6020808252601b908201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e670000000000604082015260600190565b90815260200190565b60008219821115611e4457611e44611f29565b500190565b600082611e5857611e58611f3f565b500490565b6000816000190483118215151615611e7757611e77611f29565b500290565b600082821015611e8e57611e8e611f29565b500390565b60005b83811015611eae578181015183820152602001611e96565b83811115610b1e5750506000910152565b600281046001821680611ed357607f821691505b60208210811415611ef457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f0e57611f0e611f29565b5060010190565b600082611f2457611f24611f3f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146108f657600080fd5b6001600160e01b0319811681146108f657600080fdfea2646970667358221220b842062ab81670d0181719a503567e0313a50024f6461ec0ee69b8018bbe1e9a64736f6c63430008000033000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Deployed Bytecode
0x6080604052600436106101bb5760003560e01c8063715018a6116100ec578063bea6d30e1161008a578063e985e9c511610064578063e985e9c514610496578063eb8d2444146104b6578063f2fde38b146104cb578063f47c84c5146104eb576101c2565b8063bea6d30e14610441578063c87b56dd14610456578063d26ea6c014610476576101c2565b80638da5cb5b116100c65780638da5cb5b146103d757806395d89b41146103ec578063a22cb46514610401578063b88d4fde14610421576101c2565b8063715018a61461038d57806378cf19e9146103a25780637ff9b596146103c2576101c2565b806334918dfd1161015957806355f804b31161013357806355f804b31461030d5780636352211e1461032d5780636a61e5fc1461034d57806370a082311461036d576101c2565b806334918dfd146102c35780633ccfd60b146102d857806342842e0e146102ed576101c2565b8063095ea7b311610195578063095ea7b31461024c57806318160ddd1461026e57806323b872dd146102905780632db11544146102b0576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101e76101e2366004611757565b610500565b6040516101f491906118b8565b60405180910390f35b34801561020957600080fd5b50610212610548565b6040516101f491906118c3565b34801561022b57600080fd5b5061023f61023a3660046117f1565b6105da565b6040516101f49190611867565b34801561025857600080fd5b5061026c61026736600461172c565b610626565b005b34801561027a57600080fd5b506102836106be565b6040516101f49190611e28565b34801561029c57600080fd5b5061026c6102ab36600461163e565b6106cf565b61026c6102be3660046117f1565b610707565b3480156102cf57600080fd5b5061026c6107e8565b3480156102e457600080fd5b5061026c61083b565b3480156102f957600080fd5b5061026c61030836600461163e565b6108f9565b34801561031957600080fd5b5061026c6103283660046117ab565b610914565b34801561033957600080fd5b5061023f6103483660046117f1565b61096a565b34801561035957600080fd5b5061026c6103683660046117f1565b61099f565b34801561037957600080fd5b506102836103883660046115ea565b6109e3565b34801561039957600080fd5b5061026c610a27565b3480156103ae57600080fd5b5061026c6103bd36600461172c565b610a72565b3480156103ce57600080fd5b50610283610b24565b3480156103e357600080fd5b5061023f610b2a565b3480156103f857600080fd5b50610212610b39565b34801561040d57600080fd5b5061026c61041c3660046116fb565b610b48565b34801561042d57600080fd5b5061026c61043c36600461167e565b610b5a565b34801561044d57600080fd5b50610283610b93565b34801561046257600080fd5b506102126104713660046117f1565b610b98565b34801561048257600080fd5b5061026c6104913660046115ea565b610c1b565b3480156104a257600080fd5b506101e76104b1366004611606565b610c7c565b3480156104c257600080fd5b506101e7610d32565b3480156104d757600080fd5b5061026c6104e63660046115ea565b610d3b565b3480156104f757600080fd5b50610283610da9565b60006001600160e01b031982166380ac58cd60e01b148061053157506001600160e01b03198216635b5e139f60e01b145b80610540575061054082610dbe565b90505b919050565b60606001805461055790611ebf565b80601f016020809104026020016040519081016040528092919081815260200182805461058390611ebf565b80156105d05780601f106105a5576101008083540402835291602001916105d0565b820191906000526020600020905b8154815290600101906020018083116105b357829003601f168201915b5050505050905090565b60006105e582610dd7565b61060a5760405162461bcd60e51b815260040161060190611bec565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106318261096a565b9050806001600160a01b0316836001600160a01b031614156106655760405162461bcd60e51b815260040161060190611d05565b806001600160a01b0316610677610df4565b6001600160a01b031614806106935750610693816104b1610df4565b6106af5760405162461bcd60e51b815260040161060190611ac7565b6106b98383610df8565b505050565b60006106ca6007610e66565b905090565b6106e06106da610df4565b82610e6a565b6106fc5760405162461bcd60e51b815260040161060190611d46565b6106b9838383610ee7565b60095460ff166107295760405162461bcd60e51b815260040161060190611a4f565b600981106107495760405162461bcd60e51b8152600401610601906118d6565b60006107556007610e66565b90506122b86107648383611e31565b106107815760405162461bcd60e51b815260040161060190611df1565b34826008546107909190611e5d565b11156107ae5760405162461bcd60e51b815260040161060190611d97565b60005b828110156106b9576107c36007610daf565b6107d6336107d18385611e31565b611014565b806107e081611efa565b9150506107b1565b6107f0610df4565b6001600160a01b0316610801610b2a565b6001600160a01b0316146108275760405162461bcd60e51b815260040161060190611c38565b6009805460ff19811660ff90911615179055565b610843610df4565b6001600160a01b0316610854610b2a565b6001600160a01b03161461087a5760405162461bcd60e51b815260040161060190611c38565b6000336001600160a01b03164760405161089390611864565b60006040518083038185875af1925050503d80600081146108d0576040519150601f19603f3d011682016040523d82523d6000602084013e6108d5565b606091505b50509050806108f65760405162461bcd60e51b815260040161060190611dc6565b50565b6106b983838360405180602001604052806000815250610b5a565b61091c610df4565b6001600160a01b031661092d610b2a565b6001600160a01b0316146109535760405162461bcd60e51b815260040161060190611c38565b805161096690600a9060208401906114e1565b5050565b6000818152600360205260408120546001600160a01b0316806105405760405162461bcd60e51b815260040161060190611b6e565b6109a7610df4565b6001600160a01b03166109b8610b2a565b6001600160a01b0316146109de5760405162461bcd60e51b815260040161060190611c38565b600855565b60006001600160a01b038216610a0b5760405162461bcd60e51b815260040161060190611b24565b506001600160a01b031660009081526004602052604090205490565b610a2f610df4565b6001600160a01b0316610a40610b2a565b6001600160a01b031614610a665760405162461bcd60e51b815260040161060190611c38565b610a70600061102e565b565b610a7a610df4565b6001600160a01b0316610a8b610b2a565b6001600160a01b031614610ab15760405162461bcd60e51b815260040161060190611c38565b6000610abd6007610e66565b90506122b8610acc8383611e31565b10610ae95760405162461bcd60e51b815260040161060190611df1565b60005b82811015610b1e57610afe6007610daf565b610b0c846107d18385611e31565b80610b1681611efa565b915050610aec565b50505050565b60085481565b6000546001600160a01b031690565b60606002805461055790611ebf565b610966610b53610df4565b838361107e565b610b6b610b65610df4565b83610e6a565b610b875760405162461bcd60e51b815260040161060190611d46565b610b1e84848484611121565b600981565b6060610ba382610dd7565b610bbf5760405162461bcd60e51b815260040161060190611cb6565b6000610bc9611154565b90506000815111610be95760405180602001604052806000815250610c14565b80610bf384611163565b604051602001610c04929190611835565b6040516020818303038152906040525b9392505050565b610c23610df4565b6001600160a01b0316610c34610b2a565b6001600160a01b031614610c5a5760405162461bcd60e51b815260040161060190611c38565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600b5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c455279190610cb5908890600401611867565b60206040518083038186803b158015610ccd57600080fd5b505afa158015610ce1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d05919061178f565b6001600160a01b03161415610d1e576001915050610d2c565b610d288484611286565b9150505b92915050565b60095460ff1681565b610d43610df4565b6001600160a01b0316610d54610b2a565b6001600160a01b031614610d7a5760405162461bcd60e51b815260040161060190611c38565b6001600160a01b038116610da05760405162461bcd60e51b815260040161060190611957565b6108f68161102e565b6122b881565b80546001019055565b3b151590565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e2d8261096a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b6000610e7582610dd7565b610e915760405162461bcd60e51b815260040161060190611a7b565b6000610e9c8361096a565b9050806001600160a01b0316846001600160a01b03161480610ed75750836001600160a01b0316610ecc846105da565b6001600160a01b0316145b80610d285750610d288185610c7c565b826001600160a01b0316610efa8261096a565b6001600160a01b031614610f205760405162461bcd60e51b815260040161060190611c6d565b6001600160a01b038216610f465760405162461bcd60e51b8152600401610601906119d4565b610f518383836106b9565b610f5c600082610df8565b6001600160a01b0383166000908152600460205260408120805460019290610f85908490611e7c565b90915550506001600160a01b0382166000908152600460205260408120805460019290610fb3908490611e31565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109668282604051806020016040528060008152506112b4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156110b05760405162461bcd60e51b815260040161060190611a18565b6001600160a01b0383811660008181526006602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906111149085906118b8565b60405180910390a3505050565b61112c848484610ee7565b611138848484846112e7565b610b1e5760405162461bcd60e51b815260040161060190611905565b6060600a805461055790611ebf565b60608161118857506040805180820190915260018152600360fc1b6020820152610543565b8160005b81156111b2578061119c81611efa565b91506111ab9050600a83611e49565b915061118c565b60008167ffffffffffffffff8111156111db57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611205576020820181803683370190505b5090505b841561127e5761121a600183611e7c565b9150611227600a86611f15565b611232906030611e31565b60f81b81838151811061125557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611277600a86611e49565b9450611209565b949350505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6112be8383611402565b6112cb60008484846112e7565b6106b95760405162461bcd60e51b815260040161060190611905565b60006112fb846001600160a01b0316610db8565b156113f757836001600160a01b031663150b7a02611317610df4565b8786866040518563ffffffff1660e01b8152600401611339949392919061187b565b602060405180830381600087803b15801561135357600080fd5b505af1925050508015611383575060408051601f3d908101601f1916820190925261138091810190611773565b60015b6113dd573d8080156113b1576040519150601f19603f3d011682016040523d82523d6000602084013e6113b6565b606091505b5080516113d55760405162461bcd60e51b815260040161060190611905565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061127e565b506001949350505050565b6001600160a01b0382166114285760405162461bcd60e51b815260040161060190611bb7565b61143181610dd7565b1561144e5760405162461bcd60e51b81526004016106019061199d565b61145a600083836106b9565b6001600160a01b0382166000908152600460205260408120805460019290611483908490611e31565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546114ed90611ebf565b90600052602060002090601f01602090048101928261150f5760008555611555565b82601f1061152857805160ff1916838001178555611555565b82800160010185558215611555579182015b8281111561155557825182559160200191906001019061153a565b50611561929150611565565b5090565b5b808211156115615760008155600101611566565b600067ffffffffffffffff8084111561159557611595611f55565b604051601f8501601f1916810160200182811182821017156115b9576115b9611f55565b6040528481529150818385018610156115d157600080fd5b8484602083013760006020868301015250509392505050565b6000602082840312156115fb578081fd5b8135610c1481611f6b565b60008060408385031215611618578081fd5b823561162381611f6b565b9150602083013561163381611f6b565b809150509250929050565b600080600060608486031215611652578081fd5b833561165d81611f6b565b9250602084013561166d81611f6b565b929592945050506040919091013590565b60008060008060808587031215611693578081fd5b843561169e81611f6b565b935060208501356116ae81611f6b565b925060408501359150606085013567ffffffffffffffff8111156116d0578182fd5b8501601f810187136116e0578182fd5b6116ef8782356020840161157a565b91505092959194509250565b6000806040838503121561170d578182fd5b823561171881611f6b565b915060208301358015158114611633578182fd5b6000806040838503121561173e578182fd5b823561174981611f6b565b946020939093013593505050565b600060208284031215611768578081fd5b8135610c1481611f80565b600060208284031215611784578081fd5b8151610c1481611f80565b6000602082840312156117a0578081fd5b8151610c1481611f6b565b6000602082840312156117bc578081fd5b813567ffffffffffffffff8111156117d2578182fd5b8201601f810184136117e2578182fd5b610d288482356020840161157a565b600060208284031215611802578081fd5b5035919050565b60008151808452611821816020860160208601611e93565b601f01601f19169290920160200192915050565b60008351611847818460208801611e93565b83519083019061185b818360208801611e93565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118ae90830184611809565b9695505050505050565b901515815260200190565b600060208252610c146020830184611809565b6020808252601590820152744d696e7420616d6f756e7420746f6f206c6172676560581b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260159082015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604082015260600190565b60208082526011908201527015da5d1a191c985dd85b0819985a5b1959607a1b604082015260600190565b6020808252601b908201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e670000000000604082015260600190565b90815260200190565b60008219821115611e4457611e44611f29565b500190565b600082611e5857611e58611f3f565b500490565b6000816000190483118215151615611e7757611e77611f29565b500290565b600082821015611e8e57611e8e611f29565b500390565b60005b83811015611eae578181015183820152602001611e96565b83811115610b1e5750506000910152565b600281046001821680611ed357607f821691505b60208210811415611ef457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f0e57611f0e611f29565b5060010190565b600082611f2457611f24611f3f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146108f657600080fd5b6001600160e01b0319811681146108f657600080fdfea2646970667358221220b842062ab81670d0181719a503567e0313a50024f6461ec0ee69b8018bbe1e9a64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
-----Decoded View---------------
Arg [0] : proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Deployed Bytecode Sourcemap
38343:2886:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23312:305;;;;;;;;;;-1:-1:-1;23312:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24257:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25816:221::-;;;;;;;;;;-1:-1:-1;25816:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25339:411::-;;;;;;;;;;-1:-1:-1;25339:411:0;;;;;:::i;:::-;;:::i;:::-;;40046:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26566:339::-;;;;;;;;;;-1:-1:-1;26566:339:0;;;;;:::i;:::-;;:::i;38933:545::-;;;;;;:::i;:::-;;:::i;39947:91::-;;;;;;;;;;;;;:::i;41052:174::-;;;;;;;;;;;;;:::i;26976:185::-;;;;;;;;;;-1:-1:-1;26976:185:0;;;;;:::i;:::-;;:::i;40155:110::-;;;;;;;;;;-1:-1:-1;40155:110:0;;;;;:::i;:::-;;:::i;23951:239::-;;;;;;;;;;-1:-1:-1;23951:239:0;;;;;:::i;:::-;;:::i;39839:100::-;;;;;;;;;;-1:-1:-1;39839:100:0;;;;;:::i;:::-;;:::i;23681:208::-;;;;;;;;;;-1:-1:-1;23681:208:0;;;;;:::i;:::-;;:::i;37465:103::-;;;;;;;;;;;;;:::i;39486:345::-;;;;;;;;;;-1:-1:-1;39486:345:0;;;;;:::i;:::-;;:::i;38581:38::-;;;;;;;;;;;;;:::i;36814:87::-;;;;;;;;;;;;;:::i;24426:104::-;;;;;;;;;;;;;:::i;26109:155::-;;;;;;;;;;-1:-1:-1;26109:155:0;;;;;:::i;:::-;;:::i;27232:328::-;;;;;;;;;;-1:-1:-1;27232:328:0;;;;;:::i;:::-;;:::i;38522:50::-;;;;;;;;;;;;;:::i;24601:334::-;;;;;;;;;;-1:-1:-1;24601:334:0;;;;;:::i;:::-;;:::i;40387:168::-;;;;;;;;;;-1:-1:-1;40387:168:0;;;;;:::i;:::-;;:::i;40563:444::-;;;;;;;;;;-1:-1:-1;40563:444:0;;;;;:::i;:::-;;:::i;38626:24::-;;;;;;;;;;;;;:::i;37723:201::-;;;;;;;;;;-1:-1:-1;37723:201:0;;;;;:::i;:::-;;:::i;38474:41::-;;;;;;;;;;;;;:::i;23312:305::-;23414:4;-1:-1:-1;;;;;;23451:40:0;;-1:-1:-1;;;23451:40:0;;:105;;-1:-1:-1;;;;;;;23508:48:0;;-1:-1:-1;;;23508:48:0;23451:105;:158;;;;23573:36;23597:11;23573:23;:36::i;:::-;23431:178;;23312:305;;;;:::o;24257:100::-;24311:13;24344:5;24337:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24257:100;:::o;25816:221::-;25892:7;25920:16;25928:7;25920;:16::i;:::-;25912:73;;;;-1:-1:-1;;;25912:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26005:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26005:24:0;;25816:221::o;25339:411::-;25420:13;25436:23;25451:7;25436:14;:23::i;:::-;25420:39;;25484:5;-1:-1:-1;;;;;25478:11:0;:2;-1:-1:-1;;;;;25478:11:0;;;25470:57;;;;-1:-1:-1;;;25470:57:0;;;;;;;:::i;:::-;25578:5;-1:-1:-1;;;;;25562:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;25562:21:0;;:62;;;;25587:37;25604:5;25611:12;:10;:12::i;25587:37::-;25540:168;;;;-1:-1:-1;;;25540:168:0;;;;;;;:::i;:::-;25721:21;25730:2;25734:7;25721:8;:21::i;:::-;25339:411;;;:::o;40046:101::-;40090:7;40117:22;:12;:20;:22::i;:::-;40110:29;;40046:101;:::o;26566:339::-;26761:41;26780:12;:10;:12::i;:::-;26794:7;26761:18;:41::i;:::-;26753:103;;;;-1:-1:-1;;;26753:103:0;;;;;;;:::i;:::-;26869:28;26879:4;26885:2;26889:7;26869:9;:28::i;38933:545::-;39005:12;;;;38997:43;;;;-1:-1:-1;;;38997:43:0;;;;;;;:::i;:::-;38571:1;39059:6;:31;39051:65;;;;-1:-1:-1;;;39051:65:0;;;;;;;:::i;:::-;39127:14;39144:22;:12;:20;:22::i;:::-;39127:39;-1:-1:-1;38511:4:0;39185:15;39194:6;39127:39;39185:15;:::i;:::-;:28;39177:68;;;;-1:-1:-1;;;39177:68:0;;;;;;;:::i;:::-;39287:9;39277:6;39264:10;;:19;;;;:::i;:::-;:32;;39256:66;;;;-1:-1:-1;;;39256:66:0;;;;;;;:::i;:::-;39340:9;39335:136;39359:6;39355:1;:10;39335:136;;;39387:24;:12;:22;:24::i;:::-;39426:33;39436:10;39448;39457:1;39448:6;:10;:::i;:::-;39426:9;:33::i;:::-;39367:3;;;;:::i;:::-;;;;39335:136;;39947:91;37045:12;:10;:12::i;:::-;-1:-1:-1;;;;;37034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37034:23:0;;37026:68;;;;-1:-1:-1;;;37026:68:0;;;;;;;:::i;:::-;40018:12:::1;::::0;;-1:-1:-1;;40002:28:0;::::1;40018:12;::::0;;::::1;40017:13;40002:28;::::0;;39947:91::o;41052:174::-;37045:12;:10;:12::i;:::-;-1:-1:-1;;;;;37034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37034:23:0;;37026:68;;;;-1:-1:-1;;;37026:68:0;;;;;;;:::i;:::-;41103:12:::1;41121:10;-1:-1:-1::0;;;;;41121:15:0::1;41144:21;41121:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41102:68;;;41189:7;41181:37;;;;-1:-1:-1::0;;;41181:37:0::1;;;;;;;:::i;:::-;37105:1;41052:174::o:0;26976:185::-;27114:39;27131:4;27137:2;27141:7;27114:39;;;;;;;;;;;;:16;:39::i;40155:110::-;37045:12;:10;:12::i;:::-;-1:-1:-1;;;;;37034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37034:23:0;;37026:68;;;;-1:-1:-1;;;37026:68:0;;;;;;;:::i;:::-;40231:26;;::::1;::::0;:13:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40155:110:::0;:::o;23951:239::-;24023:7;24059:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24059:16:0;24094:19;24086:73;;;;-1:-1:-1;;;24086:73:0;;;;;;;:::i;39839:100::-;37045:12;:10;:12::i;:::-;-1:-1:-1;;;;;37034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37034:23:0;;37026:68;;;;-1:-1:-1;;;37026:68:0;;;;;;;:::i;:::-;39910:10:::1;:21:::0;39839:100::o;23681:208::-;23753:7;-1:-1:-1;;;;;23781:19:0;;23773:74;;;;-1:-1:-1;;;23773:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23865:16:0;;;;;:9;:16;;;;;;;23681:208::o;37465:103::-;37045:12;:10;:12::i;:::-;-1:-1:-1;;;;;37034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37034:23:0;;37026:68;;;;-1:-1:-1;;;37026:68:0;;;;;;;:::i;:::-;37530:30:::1;37557:1;37530:18;:30::i;:::-;37465:103::o:0;39486:345::-;37045:12;:10;:12::i;:::-;-1:-1:-1;;;;;37034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37034:23:0;;37026:68;;;;-1:-1:-1;;;37026:68:0;;;;;;;:::i;:::-;39567:14:::1;39584:22;:12;:20;:22::i;:::-;39567:39:::0;-1:-1:-1;38511:4:0::1;39625:15;39634:6:::0;39567:39;39625:15:::1;:::i;:::-;:28;39617:68;;;;-1:-1:-1::0;;;39617:68:0::1;;;;;;;:::i;:::-;39701:9;39696:128;39720:6;39716:1;:10;39696:128;;;39748:24;:12;:22;:24::i;:::-;39787:25;39797:2:::0;39801:10:::1;39810:1:::0;39801:6;:10:::1;:::i;39787:25::-;39728:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39696:128;;;;37105:1;39486:345:::0;;:::o;38581:38::-;;;;:::o;36814:87::-;36860:7;36887:6;-1:-1:-1;;;;;36887:6:0;36814:87;:::o;24426:104::-;24482:13;24515:7;24508:14;;;;;:::i;26109:155::-;26204:52;26223:12;:10;:12::i;:::-;26237:8;26247;26204:18;:52::i;27232:328::-;27407:41;27426:12;:10;:12::i;:::-;27440:7;27407:18;:41::i;:::-;27399:103;;;;-1:-1:-1;;;27399:103:0;;;;;;;:::i;:::-;27513:39;27527:4;27533:2;27537:7;27546:5;27513:13;:39::i;38522:50::-;38571:1;38522:50;:::o;24601:334::-;24674:13;24708:16;24716:7;24708;:16::i;:::-;24700:76;;;;-1:-1:-1;;;24700:76:0;;;;;;;:::i;:::-;24789:21;24813:10;:8;:10::i;:::-;24789:34;;24865:1;24847:7;24841:21;:25;:86;;;;;;;;;;;;;;;;;24893:7;24902:18;:7;:16;:18::i;:::-;24876:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24841:86;24834:93;24601:334;-1:-1:-1;;;24601:334:0:o;40387:168::-;37045:12;:10;:12::i;:::-;-1:-1:-1;;;;;37034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37034:23:0;;37026:68;;;;-1:-1:-1;;;37026:68:0;;;;;;;:::i;:::-;40503:21:::1;:44:::0;;-1:-1:-1;;;;;;40503:44:0::1;-1:-1:-1::0;;;;;40503:44:0;;;::::1;::::0;;;::::1;::::0;;40387:168::o;40563:444::-;40817:21;;40862:28;;-1:-1:-1;;;40862:28:0;;40688:4;;-1:-1:-1;;;;;40817:21:0;;;;40854:49;;;;40817:21;;40862;;:28;;40884:5;;40862:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40854:49:0;;40850:93;;;40927:4;40920:11;;;;;40850:93;40960:39;40983:5;40990:8;40960:22;:39::i;:::-;40953:46;;;40563:444;;;;;:::o;38626:24::-;;;;;;:::o;37723:201::-;37045:12;:10;:12::i;:::-;-1:-1:-1;;;;;37034:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37034:23:0;;37026:68;;;;-1:-1:-1;;;37026:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37812:22:0;::::1;37804:73;;;;-1:-1:-1::0;;;37804:73:0::1;;;;;;;:::i;:::-;37888:28;37907:8;37888:18;:28::i;38474:41::-:0;38511:4;38474:41;:::o;1629:127::-;1718:19;;1736:1;1718:19;;;1629:127::o;5044:387::-;5367:20;5415:8;;;5044:387::o;15188:157::-;-1:-1:-1;;;;;;15297:40:0;;-1:-1:-1;;;15297:40:0;15188:157;;;:::o;29070:127::-;29135:4;29159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29159:16:0;:30;;;29070:127::o;21706:98::-;21786:10;21706:98;:::o;33052:174::-;33127:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33127:29:0;-1:-1:-1;;;;;33127:29:0;;;;;;;;:24;;33181:23;33127:24;33181:14;:23::i;:::-;-1:-1:-1;;;;;33172:46:0;;;;;;;;;;;33052:174;;:::o;1507:114::-;1599:14;;1507:114::o;29364:348::-;29457:4;29482:16;29490:7;29482;:16::i;:::-;29474:73;;;;-1:-1:-1;;;29474:73:0;;;;;;;:::i;:::-;29558:13;29574:23;29589:7;29574:14;:23::i;:::-;29558:39;;29627:5;-1:-1:-1;;;;;29616:16:0;:7;-1:-1:-1;;;;;29616:16:0;;:51;;;;29660:7;-1:-1:-1;;;;;29636:31:0;:20;29648:7;29636:11;:20::i;:::-;-1:-1:-1;;;;;29636:31:0;;29616:51;:87;;;;29671:32;29688:5;29695:7;29671:16;:32::i;32356:578::-;32515:4;-1:-1:-1;;;;;32488:31:0;:23;32503:7;32488:14;:23::i;:::-;-1:-1:-1;;;;;32488:31:0;;32480:85;;;;-1:-1:-1;;;32480:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32584:16:0;;32576:65;;;;-1:-1:-1;;;32576:65:0;;;;;;;:::i;:::-;32654:39;32675:4;32681:2;32685:7;32654:20;:39::i;:::-;32758:29;32775:1;32779:7;32758:8;:29::i;:::-;-1:-1:-1;;;;;32800:15:0;;;;;;:9;:15;;;;;:20;;32819:1;;32800:15;:20;;32819:1;;32800:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32831:13:0;;;;;;:9;:13;;;;;:18;;32848:1;;32831:13;:18;;32848:1;;32831:18;:::i;:::-;;;;-1:-1:-1;;32860:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32860:21:0;-1:-1:-1;;;;;32860:21:0;;;;;;;;;32899:27;;32860:16;;32899:27;;;;;;;32356:578;;;:::o;30054:110::-;30130:26;30140:2;30144:7;30130:26;;;;;;;;;;;;:9;:26::i;38084:191::-;38158:16;38177:6;;-1:-1:-1;;;;;38194:17:0;;;-1:-1:-1;;;;;;38194:17:0;;;;;;38227:40;;38177:6;;;;;;;38227:40;;38158:16;38227:40;38084:191;;:::o;33368:315::-;33523:8;-1:-1:-1;;;;;33514:17:0;:5;-1:-1:-1;;;;;33514:17:0;;;33506:55;;;;-1:-1:-1;;;33506:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33572:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;33572:46:0;;;;;;;33634:41;;;;;33572:46;;33634:41;:::i;:::-;;;;;;;;33368:315;;;:::o;28442:::-;28599:28;28609:4;28615:2;28619:7;28599:9;:28::i;:::-;28646:48;28669:4;28675:2;28679:7;28688:5;28646:22;:48::i;:::-;28638:111;;;;-1:-1:-1;;;28638:111:0;;;;;;;:::i;40273:106::-;40325:13;40358;40351:20;;;;;:::i;2465:723::-;2521:13;2742:10;2738:53;;-1:-1:-1;2769:10:0;;;;;;;;;;;;-1:-1:-1;;;2769:10:0;;;;;;2738:53;2816:5;2801:12;2857:78;2864:9;;2857:78;;2890:8;;;;:::i;:::-;;-1:-1:-1;2913:10:0;;-1:-1:-1;2921:2:0;2913:10;;:::i;:::-;;;2857:78;;;2945:19;2977:6;2967:17;;;;;;-1:-1:-1;;;2967:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2967:17:0;;2945:39;;2995:154;3002:10;;2995:154;;3029:11;3039:1;3029:11;;:::i;:::-;;-1:-1:-1;3098:10:0;3106:2;3098:5;:10;:::i;:::-;3085:24;;:2;:24;:::i;:::-;3072:39;;3055:6;3062;3055:14;;;;;;-1:-1:-1;;;3055:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;3055:56:0;;;;;;;;-1:-1:-1;3126:11:0;3135:2;3126:11;;:::i;:::-;;;2995:154;;;3173:6;2465:723;-1:-1:-1;;;;2465:723:0:o;26335:164::-;-1:-1:-1;;;;;26456:25:0;;;26432:4;26456:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26335:164::o;30391:321::-;30521:18;30527:2;30531:7;30521:5;:18::i;:::-;30572:54;30603:1;30607:2;30611:7;30620:5;30572:22;:54::i;:::-;30550:154;;;;-1:-1:-1;;;30550:154:0;;;;;;;:::i;34248:799::-;34403:4;34424:15;:2;-1:-1:-1;;;;;34424:13:0;;:15::i;:::-;34420:620;;;34476:2;-1:-1:-1;;;;;34460:36:0;;34497:12;:10;:12::i;:::-;34511:4;34517:7;34526:5;34460:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34460:72:0;;;;;;;;-1:-1:-1;;34460:72:0;;;;;;;;;;;;:::i;:::-;;;34456:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34702:13:0;;34698:272;;34745:60;;-1:-1:-1;;;34745:60:0;;;;;;;:::i;34698:272::-;34920:6;34914:13;34905:6;34901:2;34897:15;34890:38;34456:529;-1:-1:-1;;;;;;34583:51:0;-1:-1:-1;;;34583:51:0;;-1:-1:-1;34576:58:0;;34420:620;-1:-1:-1;35024:4:0;34248:799;;;;;;:::o;31048:382::-;-1:-1:-1;;;;;31128:16:0;;31120:61;;;;-1:-1:-1;;;31120:61:0;;;;;;;:::i;:::-;31201:16;31209:7;31201;:16::i;:::-;31200:17;31192:58;;;;-1:-1:-1;;;31192:58:0;;;;;;;:::i;:::-;31263:45;31292:1;31296:2;31300:7;31263:20;:45::i;:::-;-1:-1:-1;;;;;31321:13:0;;;;;;:9;:13;;;;;:18;;31338:1;;31321:13;:18;;31338:1;;31321:18;:::i;:::-;;;;-1:-1:-1;;31350:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31350:21:0;-1:-1:-1;;;;;31350:21:0;;;;;;;;31389:33;;31350:16;;;31389:33;;31350:16;;31389:33;31048:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:259::-;;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;803:9;790:23;822:33;849:5;822:33;:::i;890:402::-;;;1019:2;1007:9;998:7;994:23;990:32;987:2;;;1040:6;1032;1025:22;987:2;1084:9;1071:23;1103:33;1130:5;1103:33;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:35;1184:32;1225:35;:::i;:::-;1279:7;1269:17;;;977:315;;;;;:::o;1297:470::-;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;1464:6;1456;1449:22;1411:2;1508:9;1495:23;1527:33;1554:5;1527:33;:::i;:::-;1579:5;-1:-1:-1;1636:2:1;1621:18;;1608:32;1649:35;1608:32;1649:35;:::i;:::-;1401:366;;1703:7;;-1:-1:-1;;;1757:2:1;1742:18;;;;1729:32;;1401:366::o;1772:830::-;;;;;1944:3;1932:9;1923:7;1919:23;1915:33;1912:2;;;1966:6;1958;1951:22;1912:2;2010:9;1997:23;2029:33;2056:5;2029:33;:::i;:::-;2081:5;-1:-1:-1;2138:2:1;2123:18;;2110:32;2151:35;2110:32;2151:35;:::i;:::-;2205:7;-1:-1:-1;2259:2:1;2244:18;;2231:32;;-1:-1:-1;2314:2:1;2299:18;;2286:32;2341:18;2330:30;;2327:2;;;2378:6;2370;2363:22;2327:2;2406:22;;2459:4;2451:13;;2447:27;-1:-1:-1;2437:2:1;;2493:6;2485;2478:22;2437:2;2521:75;2588:7;2583:2;2570:16;2565:2;2561;2557:11;2521:75;:::i;:::-;2511:85;;;1902:700;;;;;;;:::o;2607:438::-;;;2733:2;2721:9;2712:7;2708:23;2704:32;2701:2;;;2754:6;2746;2739:22;2701:2;2798:9;2785:23;2817:33;2844:5;2817:33;:::i;:::-;2869:5;-1:-1:-1;2926:2:1;2911:18;;2898:32;2968:15;;2961:23;2949:36;;2939:2;;3004:6;2996;2989:22;3050:327;;;3179:2;3167:9;3158:7;3154:23;3150:32;3147:2;;;3200:6;3192;3185:22;3147:2;3244:9;3231:23;3263:33;3290:5;3263:33;:::i;:::-;3315:5;3367:2;3352:18;;;;3339:32;;-1:-1:-1;;;3137:240:1:o;3382:257::-;;3493:2;3481:9;3472:7;3468:23;3464:32;3461:2;;;3514:6;3506;3499:22;3461:2;3558:9;3545:23;3577:32;3603:5;3577:32;:::i;3644:261::-;;3766:2;3754:9;3745:7;3741:23;3737:32;3734:2;;;3787:6;3779;3772:22;3734:2;3824:9;3818:16;3843:32;3869:5;3843:32;:::i;3910:292::-;;4062:2;4050:9;4041:7;4037:23;4033:32;4030:2;;;4083:6;4075;4068:22;4030:2;4120:9;4114:16;4139:33;4166:5;4139:33;:::i;4207:482::-;;4329:2;4317:9;4308:7;4304:23;4300:32;4297:2;;;4350:6;4342;4335:22;4297:2;4395:9;4382:23;4428:18;4420:6;4417:30;4414:2;;;4465:6;4457;4450:22;4414:2;4493:22;;4546:4;4538:13;;4534:27;-1:-1:-1;4524:2:1;;4580:6;4572;4565:22;4524:2;4608:75;4675:7;4670:2;4657:16;4652:2;4648;4644:11;4608:75;:::i;4694:190::-;;4806:2;4794:9;4785:7;4781:23;4777:32;4774:2;;;4827:6;4819;4812:22;4774:2;-1:-1:-1;4855:23:1;;4764:120;-1:-1:-1;4764:120:1:o;4889:259::-;;4970:5;4964:12;4997:6;4992:3;4985:19;5013:63;5069:6;5062:4;5057:3;5053:14;5046:4;5039:5;5035:16;5013:63;:::i;:::-;5130:2;5109:15;-1:-1:-1;;5105:29:1;5096:39;;;;5137:4;5092:50;;4940:208;-1:-1:-1;;4940:208:1:o;5153:470::-;;5370:6;5364:13;5386:53;5432:6;5427:3;5420:4;5412:6;5408:17;5386:53;:::i;:::-;5502:13;;5461:16;;;;5524:57;5502:13;5461:16;5558:4;5546:17;;5524:57;:::i;:::-;5597:20;;5340:283;-1:-1:-1;;;;5340:283:1:o;5628:205::-;5828:3;5819:14::o;5838:203::-;-1:-1:-1;;;;;6002:32:1;;;;5984:51;;5972:2;5957:18;;5939:102::o;6046:490::-;-1:-1:-1;;;;;6315:15:1;;;6297:34;;6367:15;;6362:2;6347:18;;6340:43;6414:2;6399:18;;6392:34;;;6462:3;6457:2;6442:18;;6435:31;;;6046:490;;6483:47;;6510:19;;6502:6;6483:47;:::i;:::-;6475:55;6249:287;-1:-1:-1;;;;;;6249:287:1:o;6541:187::-;6706:14;;6699:22;6681:41;;6669:2;6654:18;;6636:92::o;6733:221::-;;6882:2;6871:9;6864:21;6902:46;6944:2;6933:9;6929:18;6921:6;6902:46;:::i;6959:345::-;7161:2;7143:21;;;7200:2;7180:18;;;7173:30;-1:-1:-1;;;7234:2:1;7219:18;;7212:51;7295:2;7280:18;;7133:171::o;7309:414::-;7511:2;7493:21;;;7550:2;7530:18;;;7523:30;7589:34;7584:2;7569:18;;7562:62;-1:-1:-1;;;7655:2:1;7640:18;;7633:48;7713:3;7698:19;;7483:240::o;7728:402::-;7930:2;7912:21;;;7969:2;7949:18;;;7942:30;8008:34;8003:2;7988:18;;7981:62;-1:-1:-1;;;8074:2:1;8059:18;;8052:36;8120:3;8105:19;;7902:228::o;8135:352::-;8337:2;8319:21;;;8376:2;8356:18;;;8349:30;8415;8410:2;8395:18;;8388:58;8478:2;8463:18;;8309:178::o;8492:400::-;8694:2;8676:21;;;8733:2;8713:18;;;8706:30;8772:34;8767:2;8752:18;;8745:62;-1:-1:-1;;;8838:2:1;8823:18;;8816:34;8882:3;8867:19;;8666:226::o;8897:349::-;9099:2;9081:21;;;9138:2;9118:18;;;9111:30;9177:27;9172:2;9157:18;;9150:55;9237:2;9222:18;;9071:175::o;9251:342::-;9453:2;9435:21;;;9492:2;9472:18;;;9465:30;-1:-1:-1;;;9526:2:1;9511:18;;9504:48;9584:2;9569:18;;9425:168::o;9598:408::-;9800:2;9782:21;;;9839:2;9819:18;;;9812:30;9878:34;9873:2;9858:18;;9851:62;-1:-1:-1;;;9944:2:1;9929:18;;9922:42;9996:3;9981:19;;9772:234::o;10011:420::-;10213:2;10195:21;;;10252:2;10232:18;;;10225:30;10291:34;10286:2;10271:18;;10264:62;10362:26;10357:2;10342:18;;10335:54;10421:3;10406:19;;10185:246::o;10436:406::-;10638:2;10620:21;;;10677:2;10657:18;;;10650:30;10716:34;10711:2;10696:18;;10689:62;-1:-1:-1;;;10782:2:1;10767:18;;10760:40;10832:3;10817:19;;10610:232::o;10847:405::-;11049:2;11031:21;;;11088:2;11068:18;;;11061:30;11127:34;11122:2;11107:18;;11100:62;-1:-1:-1;;;11193:2:1;11178:18;;11171:39;11242:3;11227:19;;11021:231::o;11257:356::-;11459:2;11441:21;;;11478:18;;;11471:30;11537:34;11532:2;11517:18;;11510:62;11604:2;11589:18;;11431:182::o;11618:408::-;11820:2;11802:21;;;11859:2;11839:18;;;11832:30;11898:34;11893:2;11878:18;;11871:62;-1:-1:-1;;;11964:2:1;11949:18;;11942:42;12016:3;12001:19;;11792:234::o;12031:356::-;12233:2;12215:21;;;12252:18;;;12245:30;12311:34;12306:2;12291:18;;12284:62;12378:2;12363:18;;12205:182::o;12392:405::-;12594:2;12576:21;;;12633:2;12613:18;;;12606:30;12672:34;12667:2;12652:18;;12645:62;-1:-1:-1;;;12738:2:1;12723:18;;12716:39;12787:3;12772:19;;12566:231::o;12802:411::-;13004:2;12986:21;;;13043:2;13023:18;;;13016:30;13082:34;13077:2;13062:18;;13055:62;-1:-1:-1;;;13148:2:1;13133:18;;13126:45;13203:3;13188:19;;12976:237::o;13218:397::-;13420:2;13402:21;;;13459:2;13439:18;;;13432:30;13498:34;13493:2;13478:18;;13471:62;-1:-1:-1;;;13564:2:1;13549:18;;13542:31;13605:3;13590:19;;13392:223::o;13620:413::-;13822:2;13804:21;;;13861:2;13841:18;;;13834:30;13900:34;13895:2;13880:18;;13873:62;-1:-1:-1;;;13966:2:1;13951:18;;13944:47;14023:3;14008:19;;13794:239::o;14038:345::-;14240:2;14222:21;;;14279:2;14259:18;;;14252:30;-1:-1:-1;;;14313:2:1;14298:18;;14291:51;14374:2;14359:18;;14212:171::o;14388:341::-;14590:2;14572:21;;;14629:2;14609:18;;;14602:30;-1:-1:-1;;;14663:2:1;14648:18;;14641:47;14720:2;14705:18;;14562:167::o;14734:351::-;14936:2;14918:21;;;14975:2;14955:18;;;14948:30;15014:29;15009:2;14994:18;;14987:57;15076:2;15061:18;;14908:177::o;15090:::-;15236:25;;;15224:2;15209:18;;15191:76::o;15272:128::-;;15343:1;15339:6;15336:1;15333:13;15330:2;;;15349:18;;:::i;:::-;-1:-1:-1;15385:9:1;;15320:80::o;15405:120::-;;15471:1;15461:2;;15476:18;;:::i;:::-;-1:-1:-1;15510:9:1;;15451:74::o;15530:168::-;;15636:1;15632;15628:6;15624:14;15621:1;15618:21;15613:1;15606:9;15599:17;15595:45;15592:2;;;15643:18;;:::i;:::-;-1:-1:-1;15683:9:1;;15582:116::o;15703:125::-;;15771:1;15768;15765:8;15762:2;;;15776:18;;:::i;:::-;-1:-1:-1;15813:9:1;;15752:76::o;15833:258::-;15905:1;15915:113;15929:6;15926:1;15923:13;15915:113;;;16005:11;;;15999:18;15986:11;;;15979:39;15951:2;15944:10;15915:113;;;16046:6;16043:1;16040:13;16037:2;;;-1:-1:-1;;16081:1:1;16063:16;;16056:27;15886:205::o;16096:380::-;16181:1;16171:12;;16228:1;16218:12;;;16239:2;;16293:4;16285:6;16281:17;16271:27;;16239:2;16346;16338:6;16335:14;16315:18;16312:38;16309:2;;;16392:10;16387:3;16383:20;16380:1;16373:31;16427:4;16424:1;16417:15;16455:4;16452:1;16445:15;16309:2;;16151:325;;;:::o;16481:135::-;;-1:-1:-1;;16541:17:1;;16538:2;;;16561:18;;:::i;:::-;-1:-1:-1;16608:1:1;16597:13;;16528:88::o;16621:112::-;;16679:1;16669:2;;16684:18;;:::i;:::-;-1:-1:-1;16718:9:1;;16659:74::o;16738:127::-;16799:10;16794:3;16790:20;16787:1;16780:31;16830:4;16827:1;16820:15;16854:4;16851:1;16844:15;16870:127;16931:10;16926:3;16922:20;16919:1;16912:31;16962:4;16959:1;16952:15;16986:4;16983:1;16976:15;17002:127;17063:10;17058:3;17054:20;17051:1;17044:31;17094:4;17091:1;17084:15;17118:4;17115:1;17108:15;17134:133;-1:-1:-1;;;;;17211:31:1;;17201:42;;17191:2;;17257:1;17254;17247:12;17272:133;-1:-1:-1;;;;;;17348:32:1;;17338:43;;17328:2;;17395:1;17392;17385:12
Swarm Source
ipfs://b842062ab81670d0181719a503567e0313a50024f6461ec0ee69b8018bbe1e9a
Loading...
Loading
Loading...
Loading
Net Worth in USD
$108.26
Net Worth in ETH
0.05
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,165.28 | 0.05 | $108.26 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.