Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 12 from a total of 12 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Mint NFT | 15960511 | 1189 days ago | IN | 0 ETH | 0.0003039 | ||||
| Mint NFT | 15960498 | 1189 days ago | IN | 0 ETH | 0.00031181 | ||||
| Set Fee | 15376519 | 1274 days ago | IN | 0 ETH | 0.00023539 | ||||
| Mint Owner | 15365589 | 1276 days ago | IN | 0 ETH | 0.00326932 | ||||
| Transfer From | 15323023 | 1283 days ago | IN | 0 ETH | 0.0014141 | ||||
| Mint NFT | 15285001 | 1289 days ago | IN | 3.5 ETH | 0.00185755 | ||||
| Mint NFT | 15278072 | 1290 days ago | IN | 3.5 ETH | 0.00224893 | ||||
| Set Fee Admin | 15278023 | 1290 days ago | IN | 0 ETH | 0.00042979 | ||||
| Set Fee | 15278010 | 1290 days ago | IN | 0 ETH | 0.00044421 | ||||
| Mint NFT | 15277993 | 1290 days ago | IN | 0.002 ETH | 0.0042798 | ||||
| Mint NFT | 15277985 | 1290 days ago | IN | 0.001 ETH | 0.00176039 | ||||
| Set Fee Admin | 15277977 | 1290 days ago | IN | 0 ETH | 0.00032367 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Fantasmones
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-07-30
*/
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @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);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
// 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;
}
}
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// 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);
}
// 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;
}
}
// OpenZeppelin Contracts (last updated v4.7.0) (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`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// 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);
}
// OpenZeppelin Contracts (last updated v4.7.0) (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: address zero is not a valid owner");
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: invalid token ID");
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) {
_requireMinted(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
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: caller is not token 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: caller is not token 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) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @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 {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
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);
}
}
//Version Mainnet
pragma solidity >= 0.8.14;
//**************** MAIN CONTRACT ****************************
//Who? A3g1X. When? July 2022
//Owner: Exuma Fortress Ltd. (Bahamas)
contract Fantasmones is ERC721Enumerable, Ownable{
using Counters for Counters.Counter;
using Address for address;
uint public mintFee = 3.5 ether;
string private _baseURIextended;
string private _contractURI;
Counters.Counter private _tokenIdTracker;
address payable private admin;
address payable private admin2;
constructor() ERC721("Frida Kahlo - Fantasmones", "FRIDAFANT") {
_baseURIextended = "https://fridanft.org/tokenmeta/getmetadata.php?tokenid=";
_contractURI = "https://fridanft.org/tokenmeta/contractmetadata";
admin = payable(0xaDBfF9803d2B2EdbF5162D84B826907727121731);
admin2 = payable(0x3FEA3a089F40acfD45841024fB26992C64F24E4F);
//genesis test
_mintFantasmone(owner());
//giveaways
for (uint i = 1; i<=20; i++){
_mintFantasmone(0x3FEA3a089F40acfD45841024fB26992C64F24E4F);
}
}
//set and return URIs
function setBaseURI(string memory baseURI_) external onlyOwner() {
_baseURIextended = baseURI_;
}
function _baseURI() internal view virtual override returns (string memory) {
return _baseURIextended;
}
function setContractURI(string memory contractURI_) external onlyOwner() {
_contractURI = contractURI_;
}
function contractURI() public view returns (string memory) {
return _contractURI;
}
function setFee(uint _newfee) external onlyOwner {
mintFee = _newfee;
}
function setFeeAdmin(uint _newfee) external {
require(msg.sender == admin || msg.sender == admin2,"Caller not Admin");
mintFee = _newfee;
}
//Mint the Fantasmone
function _mintFantasmone(address _to) private {
uint256 newNftTokenId = _tokenIdTracker.current();
_mint(_to, newNftTokenId);
_tokenIdTracker.increment();
}
//mint a specific ethogen
function mintOwner(address _to) external onlyOwner {
require (_tokenIdTracker.current()<=9999, "Sold Out");
_mintFantasmone(_to);
}
function mintAdmin(address _to) external {
require(msg.sender == admin || msg.sender == admin2,"Caller not Admin");
require (_tokenIdTracker.current()<=9999, "Sold Out");
_mintFantasmone(_to);
}
//buy nft
function mintNFT(uint amount) external payable {
require(amount > 0 && amount <=50,"Amount 1-50");
require(msg.value == mintFee * amount ,"Fee mismatch");
require(_tokenIdTracker.current() + amount -1 <= 9999, "Sold Out");
for (uint i = 1; i<=amount; i++){
_mintFantasmone(msg.sender);
}
}
//distribute balance
function collectFees() external onlyOwner {
_distribute();
}
function collectFeesAdmin() external {
require(msg.sender == admin || msg.sender == admin2,"Caller not Admin");
_distribute();
}
function _distribute() private {
uint _divamount = address(this).balance;
payable(0x3FEA3a089F40acfD45841024fB26992C64F24E4F).transfer((_divamount * 685)/1000);
payable(0x67abb9CfBc54a506B9c78f8283a4dd0A5Bf7b5E2).transfer((_divamount * 300)/1000);
payable(0x8553935666f348CAd9492780c1a6cC0794F043D0).transfer((_divamount * 5)/1000);
payable(0xaDBfF9803d2B2EdbF5162D84B826907727121731).transfer((_divamount * 5)/1000);
payable(0x1C1333a823f733b744EF417F94295432b984E397).transfer((_divamount * 5)/1000);
}
function collectxtoken(address _token,uint _amount) external onlyOwner {
IERC20 xtoken;
xtoken = IERC20(_token);
xtoken.transfer(owner(), _amount);
}
function collectxtokenadmin(address _token,uint _amount) external {
require(msg.sender == admin || msg.sender == admin2,"Caller not Admin");
IERC20 xtoken;
xtoken = IERC20(_token);
xtoken.transfer(msg.sender, _amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"collectFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectFeesAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"collectxtoken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"collectxtokenadmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfee","type":"uint256"}],"name":"setFeeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526730927f74c9de0000600b553480156200001d57600080fd5b50604080518082018252601981527f4672696461204b61686c6f202d2046616e7461736d6f6e65730000000000000060208083019182528351808501909452600984526811949251105190539560ba1b9084015281519192916200008491600091620006e5565b5080516200009a906001906020840190620006e5565b505050620000b7620000b1620001c560201b60201c565b620001c9565b60405180606001604052806037815260200162003353603791398051620000e791600c91602090910190620006e5565b506040518060600160405280602f815260200162003324602f913980516200011891600d91602090910190620006e5565b50600f80546001600160a01b031990811673adbff9803d2b2edbf5162d84b8269077271217311790915560108054909116733fea3a089f40acfd45841024fb26992c64f24e4f1790556200017e62000178600a546001600160a01b031690565b6200021b565b60015b60148111620001be57620001a9733fea3a089f40acfd45841024fb26992c64f24e4f6200021b565b80620001b581620007a1565b91505062000181565b506200085a565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600062000234600e6200025d60201b620012f61760201c565b905062000242828262000261565b62000259600e620003bb60201b620012fa1760201c565b5050565b5490565b6001600160a01b038216620002bd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600260205260409020546001600160a01b031615620003245760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620002b4565b6200033260008383620003c4565b6001600160a01b03821660009081526003602052604081208054600192906200035d908490620007bd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b620003dc8383836200047a60201b620008961760201c565b6001600160a01b0383166200043a576200043481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000460565b816001600160a01b0316836001600160a01b0316146200046057620004608382620004a5565b6001600160a01b0382166200047f576200047a8162000552565b505050565b826001600160a01b0316826001600160a01b0316146200047a576200047a82826200060c565b60006001620004bf846200065d60201b62000ccb1760201c565b620004cb9190620007d8565b6000838152600760205260409020549091508082146200051f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906200056690600190620007d8565b60008381526009602052604081205460088054939450909284908110620005915762000591620007f2565b906000526020600020015490508060088381548110620005b557620005b5620007f2565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480620005f057620005f062000808565b6001900381819060005260206000200160009055905550505050565b600062000624836200065d60201b62000ccb1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620006c95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401620002b4565b506001600160a01b031660009081526003602052604090205490565b828054620006f3906200081e565b90600052602060002090601f01602090048101928262000717576000855562000762565b82601f106200073257805160ff191683800117855562000762565b8280016001018555821562000762579182015b828111156200076257825182559160200191906001019062000745565b506200077092915062000774565b5090565b5b8082111562000770576000815560010162000775565b634e487b7160e01b600052601160045260246000fd5b600060018201620007b657620007b66200078b565b5060010190565b60008219821115620007d357620007d36200078b565b500190565b600082821015620007ed57620007ed6200078b565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600181811c908216806200083357607f821691505b6020821081036200085457634e487b7160e01b600052602260045260246000fd5b50919050565b612aba806200086a6000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063a22cb46511610095578063d0888d4411610064578063d0888d4414610571578063e8a3d48514610591578063e985e9c5146105a6578063f2fde38b146105fc57600080fd5b8063a22cb465146104fc578063b88d4fde1461051c578063c87965721461053c578063c87b56dd1461055157600080fd5b80638da5cb5b116100d15780638da5cb5b1461048957806392642744146104b4578063938e3d7b146104c757806395d89b41146104e757600080fd5b8063715018a61461041f5780637e467a4314610434578063825ddb43146104495780638805b9fa1461046957600080fd5b80632f745c591161017a57806361f80f881161014957806361f80f881461039f5780636352211e146103bf57806369fe0e2d146103df57806370a08231146103ff57600080fd5b80632f745c591461031f57806342842e0e1461033f5780634f6ccce71461035f57806355f804b31461037f57600080fd5b80630fd15572116101b65780630fd15572146102a657806313966db5146102c657806318160ddd146102ea57806323b872dd146102ff57600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610284575b600080fd5b3480156101f457600080fd5b5061020861020336600461248e565b61061c565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610678565b6040516102149190612521565b34801561024b57600080fd5b5061025f61025a366004612534565b61070a565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610214565b34801561029057600080fd5b506102a461029f366004612576565b61073e565b005b3480156102b257600080fd5b506102a46102c1366004612576565b61089b565b3480156102d257600080fd5b506102dc600b5481565b604051908152602001610214565b3480156102f657600080fd5b506008546102dc565b34801561030b57600080fd5b506102a461031a3660046125a0565b6109c4565b34801561032b57600080fd5b506102dc61033a366004612576565b610a4b565b34801561034b57600080fd5b506102a461035a3660046125a0565b610b00565b34801561036b57600080fd5b506102dc61037a366004612534565b610b1b565b34801561038b57600080fd5b506102a461039a36600461269f565b610bbf565b3480156103ab57600080fd5b506102a46103ba3660046126e8565b610bde565b3480156103cb57600080fd5b5061025f6103da366004612534565b610c4c565b3480156103eb57600080fd5b506102a46103fa366004612534565b610cbe565b34801561040b57600080fd5b506102dc61041a3660046126e8565b610ccb565b34801561042b57600080fd5b506102a4610d7f565b34801561044057600080fd5b506102a4610d93565b34801561045557600080fd5b506102a4610464366004612576565b610e24565b34801561047557600080fd5b506102a4610484366004612534565b610ec0565b34801561049557600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff1661025f565b6102a46104c2366004612534565b610f49565b3480156104d357600080fd5b506102a46104e236600461269f565b611098565b3480156104f357600080fd5b506102326110b3565b34801561050857600080fd5b506102a4610517366004612711565b6110c2565b34801561052857600080fd5b506102a4610537366004612748565b6110cd565b34801561054857600080fd5b506102a4611155565b34801561055d57600080fd5b5061023261056c366004612534565b61115d565b34801561057d57600080fd5b506102a461058c3660046126e8565b6111c4565b34801561059d57600080fd5b5061023261124d565b3480156105b257600080fd5b506102086105c13660046127c4565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060857600080fd5b506102a46106173660046126e8565b61125c565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610672575061067282611303565b92915050565b606060008054610687906127f7565b80601f01602080910402602001604051908101604052809291908181526020018280546106b3906127f7565b80156107005780601f106106d557610100808354040283529160200191610700565b820191906000526020600020905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b6000610715826113e6565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061074982610c4c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107f15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff8216148061081a575061081a81336105c1565b61088c5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016107e8565b6108968383611457565b505050565b600f5473ffffffffffffffffffffffffffffffffffffffff163314806108d8575060105473ffffffffffffffffffffffffffffffffffffffff1633145b6109245760405162461bcd60e51b815260206004820152601060248201527f43616c6c6572206e6f742041646d696e0000000000000000000000000000000060448201526064016107e8565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815233600482015260248101829052829073ffffffffffffffffffffffffffffffffffffffff82169063a9059cbb906044015b6020604051808303816000875af115801561099a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109be919061284a565b50505050565b6109ce33826114f7565b610a405760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f76656400000000000000000000000000000000000060648201526084016107e8565b6108968383836115b7565b6000610a5683610ccb565b8210610aca5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016107e8565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b610896838383604051806020016040528060008152506110cd565b6000610b2660085490565b8210610b9a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016107e8565b60088281548110610bad57610bad612867565b90600052602060002001549050919050565b610bc76117f5565b8051610bda90600c9060208401906123c7565b5050565b610be66117f5565b61270f610bf2600e5490565b1115610c405760405162461bcd60e51b815260206004820152600860248201527f536f6c64204f757400000000000000000000000000000000000000000000000060448201526064016107e8565b610c498161185c565b50565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806106725760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016107e8565b610cc66117f5565b600b55565b600073ffffffffffffffffffffffffffffffffffffffff8216610d565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e6572000000000000000000000000000000000000000000000060648201526084016107e8565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b610d876117f5565b610d916000611881565b565b600f5473ffffffffffffffffffffffffffffffffffffffff16331480610dd0575060105473ffffffffffffffffffffffffffffffffffffffff1633145b610e1c5760405162461bcd60e51b815260206004820152601060248201527f43616c6c6572206e6f742041646d696e0000000000000000000000000000000060448201526064016107e8565b610d916118f8565b610e2c6117f5565b8173ffffffffffffffffffffffffffffffffffffffff811663a9059cbb610e68600a5473ffffffffffffffffffffffffffffffffffffffff1690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024810185905260440161097b565b600f5473ffffffffffffffffffffffffffffffffffffffff16331480610efd575060105473ffffffffffffffffffffffffffffffffffffffff1633145b610cc65760405162461bcd60e51b815260206004820152601060248201527f43616c6c6572206e6f742041646d696e0000000000000000000000000000000060448201526064016107e8565b600081118015610f5a575060328111155b610fa65760405162461bcd60e51b815260206004820152600b60248201527f416d6f756e7420312d353000000000000000000000000000000000000000000060448201526064016107e8565b80600b54610fb491906128c5565b34146110025760405162461bcd60e51b815260206004820152600c60248201527f466565206d69736d61746368000000000000000000000000000000000000000060448201526064016107e8565b61270f600182611011600e5490565b61101b9190612902565b611025919061291a565b11156110735760405162461bcd60e51b815260206004820152600860248201527f536f6c64204f757400000000000000000000000000000000000000000000000060448201526064016107e8565b60015b818111610bda576110863361185c565b8061109081612931565b915050611076565b6110a06117f5565b8051610bda90600d9060208401906123c7565b606060018054610687906127f7565b610bda338383611ab7565b6110d733836114f7565b6111495760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f76656400000000000000000000000000000000000060648201526084016107e8565b6109be84848484611bca565b610e1c6117f5565b6060611168826113e6565b6000611172611c53565b9050600081511161119257604051806020016040528060008152506111bd565b8061119c84611c62565b6040516020016111ad929190612969565b6040516020818303038152906040525b9392505050565b600f5473ffffffffffffffffffffffffffffffffffffffff16331480611201575060105473ffffffffffffffffffffffffffffffffffffffff1633145b610be65760405162461bcd60e51b815260206004820152601060248201527f43616c6c6572206e6f742041646d696e0000000000000000000000000000000060448201526064016107e8565b6060600d8054610687906127f7565b6112646117f5565b73ffffffffffffffffffffffffffffffffffffffff81166112ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107e8565b610c4981611881565b5490565b80546001019055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061139657507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061067257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610672565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16610c495760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016107e8565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906114b182610c4c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061150383610c4c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611571575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b806115af57508373ffffffffffffffffffffffffffffffffffffffff166115978461070a565b73ffffffffffffffffffffffffffffffffffffffff16145b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166115d782610c4c565b73ffffffffffffffffffffffffffffffffffffffff16146116605760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016107e8565b73ffffffffffffffffffffffffffffffffffffffff82166116e85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107e8565b6116f3838383611d97565b6116fe600082611457565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812080546001929061173490849061291a565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061176f908490612902565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610d915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e8565b6000611867600e5490565b90506118738282611e9d565b610bda600e80546001019055565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b47733fea3a089f40acfd45841024fb26992c64f24e4f6108fc6103e8611920846102ad6128c5565b61192a91906129c7565b6040518115909202916000818181858888f19350505050158015611952573d6000803e3d6000fd5b507367abb9cfbc54a506b9c78f8283a4dd0a5bf7b5e26108fc6103e861197a8461012c6128c5565b61198491906129c7565b6040518115909202916000818181858888f193505050501580156119ac573d6000803e3d6000fd5b50738553935666f348cad9492780c1a6cc0794f043d06108fc6103e86119d38460056128c5565b6119dd91906129c7565b6040518115909202916000818181858888f19350505050158015611a05573d6000803e3d6000fd5b5073adbff9803d2b2edbf5162d84b8269077271217316108fc6103e8611a2c8460056128c5565b611a3691906129c7565b6040518115909202916000818181858888f19350505050158015611a5e573d6000803e3d6000fd5b50731c1333a823f733b744ef417f94295432b984e3976108fc6103e8611a858460056128c5565b611a8f91906129c7565b6040518115909202916000818181858888f19350505050158015610bda573d6000803e3d6000fd5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b325760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e8565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611bd58484846115b7565b611be184848484612037565b6109be5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107e8565b6060600c8054610687906127f7565b606081600003611ca557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611ccf5780611cb981612931565b9150611cc89050600a836129c7565b9150611ca9565b60008167ffffffffffffffff811115611cea57611cea6125dc565b6040519080825280601f01601f191660200182016040528015611d14576020820181803683370190505b5090505b84156115af57611d2960018361291a565b9150611d36600a866129db565b611d41906030612902565b60f81b818381518110611d5657611d56612867565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d90600a866129c7565b9450611d18565b73ffffffffffffffffffffffffffffffffffffffff8316611dff57611dfa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e3c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e3c57611e3c8382612210565b73ffffffffffffffffffffffffffffffffffffffff8216611e6057610896816122c7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610896576108968282612376565b73ffffffffffffffffffffffffffffffffffffffff8216611f005760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e8565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611f725760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e8565b611f7e60008383611d97565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611fb4908490612902565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612205576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906120ae9033908990889088906004016129ef565b6020604051808303816000875af1925050508015612107575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261210491810190612a38565b60015b6121ba573d808015612135576040519150601f19603f3d011682016040523d82523d6000602084013e61213a565b606091505b5080516000036121b25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107e8565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506115af565b506001949350505050565b6000600161221d84610ccb565b612227919061291a565b6000838152600760205260409020549091508082146122875773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b6008546000906122d99060019061291a565b6000838152600960205260408120546008805493945090928490811061230157612301612867565b90600052602060002001549050806008838154811061232257612322612867565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061235a5761235a612a55565b6001900381819060005260206000200160009055905550505050565b600061238183610ccb565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546123d3906127f7565b90600052602060002090601f0160209004810192826123f5576000855561243b565b82601f1061240e57805160ff191683800117855561243b565b8280016001018555821561243b579182015b8281111561243b578251825591602001919060010190612420565b5061244792915061244b565b5090565b5b80821115612447576000815560010161244c565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610c4957600080fd5b6000602082840312156124a057600080fd5b81356111bd81612460565b60005b838110156124c65781810151838201526020016124ae565b838111156109be5750506000910152565b600081518084526124ef8160208601602086016124ab565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006111bd60208301846124d7565b60006020828403121561254657600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461257157600080fd5b919050565b6000806040838503121561258957600080fd5b6125928361254d565b946020939093013593505050565b6000806000606084860312156125b557600080fd5b6125be8461254d565b92506125cc6020850161254d565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612626576126266125dc565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561266c5761266c6125dc565b8160405280935085815286868601111561268557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126b157600080fd5b813567ffffffffffffffff8111156126c857600080fd5b8201601f810184136126d957600080fd5b6115af8482356020840161260b565b6000602082840312156126fa57600080fd5b6111bd8261254d565b8015158114610c4957600080fd5b6000806040838503121561272457600080fd5b61272d8361254d565b9150602083013561273d81612703565b809150509250929050565b6000806000806080858703121561275e57600080fd5b6127678561254d565b93506127756020860161254d565b925060408501359150606085013567ffffffffffffffff81111561279857600080fd5b8501601f810187136127a957600080fd5b6127b88782356020840161260b565b91505092959194509250565b600080604083850312156127d757600080fd5b6127e08361254d565b91506127ee6020840161254d565b90509250929050565b600181811c9082168061280b57607f821691505b602082108103612844577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60006020828403121561285c57600080fd5b81516111bd81612703565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128fd576128fd612896565b500290565b6000821982111561291557612915612896565b500190565b60008282101561292c5761292c612896565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361296257612962612896565b5060010190565b6000835161297b8184602088016124ab565b83519083019061298f8183602088016124ab565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826129d6576129d6612998565b500490565b6000826129ea576129ea612998565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612a2e60808301846124d7565b9695505050505050565b600060208284031215612a4a57600080fd5b81516111bd81612460565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212200b50002b5336b5c4e33df3ba8b46297bbe584e67c8b36ba0f7900a80c5c2b48764736f6c634300080e003368747470733a2f2f66726964616e66742e6f72672f746f6b656e6d6574612f636f6e74726163746d6574616461746168747470733a2f2f66726964616e66742e6f72672f746f6b656e6d6574612f6765746d657461646174612e7068703f746f6b656e69643d
Deployed Bytecode
0x6080604052600436106101e35760003560e01c8063715018a611610102578063a22cb46511610095578063d0888d4411610064578063d0888d4414610571578063e8a3d48514610591578063e985e9c5146105a6578063f2fde38b146105fc57600080fd5b8063a22cb465146104fc578063b88d4fde1461051c578063c87965721461053c578063c87b56dd1461055157600080fd5b80638da5cb5b116100d15780638da5cb5b1461048957806392642744146104b4578063938e3d7b146104c757806395d89b41146104e757600080fd5b8063715018a61461041f5780637e467a4314610434578063825ddb43146104495780638805b9fa1461046957600080fd5b80632f745c591161017a57806361f80f881161014957806361f80f881461039f5780636352211e146103bf57806369fe0e2d146103df57806370a08231146103ff57600080fd5b80632f745c591461031f57806342842e0e1461033f5780634f6ccce71461035f57806355f804b31461037f57600080fd5b80630fd15572116101b65780630fd15572146102a657806313966db5146102c657806318160ddd146102ea57806323b872dd146102ff57600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610284575b600080fd5b3480156101f457600080fd5b5061020861020336600461248e565b61061c565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610678565b6040516102149190612521565b34801561024b57600080fd5b5061025f61025a366004612534565b61070a565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610214565b34801561029057600080fd5b506102a461029f366004612576565b61073e565b005b3480156102b257600080fd5b506102a46102c1366004612576565b61089b565b3480156102d257600080fd5b506102dc600b5481565b604051908152602001610214565b3480156102f657600080fd5b506008546102dc565b34801561030b57600080fd5b506102a461031a3660046125a0565b6109c4565b34801561032b57600080fd5b506102dc61033a366004612576565b610a4b565b34801561034b57600080fd5b506102a461035a3660046125a0565b610b00565b34801561036b57600080fd5b506102dc61037a366004612534565b610b1b565b34801561038b57600080fd5b506102a461039a36600461269f565b610bbf565b3480156103ab57600080fd5b506102a46103ba3660046126e8565b610bde565b3480156103cb57600080fd5b5061025f6103da366004612534565b610c4c565b3480156103eb57600080fd5b506102a46103fa366004612534565b610cbe565b34801561040b57600080fd5b506102dc61041a3660046126e8565b610ccb565b34801561042b57600080fd5b506102a4610d7f565b34801561044057600080fd5b506102a4610d93565b34801561045557600080fd5b506102a4610464366004612576565b610e24565b34801561047557600080fd5b506102a4610484366004612534565b610ec0565b34801561049557600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff1661025f565b6102a46104c2366004612534565b610f49565b3480156104d357600080fd5b506102a46104e236600461269f565b611098565b3480156104f357600080fd5b506102326110b3565b34801561050857600080fd5b506102a4610517366004612711565b6110c2565b34801561052857600080fd5b506102a4610537366004612748565b6110cd565b34801561054857600080fd5b506102a4611155565b34801561055d57600080fd5b5061023261056c366004612534565b61115d565b34801561057d57600080fd5b506102a461058c3660046126e8565b6111c4565b34801561059d57600080fd5b5061023261124d565b3480156105b257600080fd5b506102086105c13660046127c4565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060857600080fd5b506102a46106173660046126e8565b61125c565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610672575061067282611303565b92915050565b606060008054610687906127f7565b80601f01602080910402602001604051908101604052809291908181526020018280546106b3906127f7565b80156107005780601f106106d557610100808354040283529160200191610700565b820191906000526020600020905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b6000610715826113e6565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061074982610c4c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107f15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff8216148061081a575061081a81336105c1565b61088c5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016107e8565b6108968383611457565b505050565b600f5473ffffffffffffffffffffffffffffffffffffffff163314806108d8575060105473ffffffffffffffffffffffffffffffffffffffff1633145b6109245760405162461bcd60e51b815260206004820152601060248201527f43616c6c6572206e6f742041646d696e0000000000000000000000000000000060448201526064016107e8565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815233600482015260248101829052829073ffffffffffffffffffffffffffffffffffffffff82169063a9059cbb906044015b6020604051808303816000875af115801561099a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109be919061284a565b50505050565b6109ce33826114f7565b610a405760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f76656400000000000000000000000000000000000060648201526084016107e8565b6108968383836115b7565b6000610a5683610ccb565b8210610aca5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016107e8565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b610896838383604051806020016040528060008152506110cd565b6000610b2660085490565b8210610b9a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016107e8565b60088281548110610bad57610bad612867565b90600052602060002001549050919050565b610bc76117f5565b8051610bda90600c9060208401906123c7565b5050565b610be66117f5565b61270f610bf2600e5490565b1115610c405760405162461bcd60e51b815260206004820152600860248201527f536f6c64204f757400000000000000000000000000000000000000000000000060448201526064016107e8565b610c498161185c565b50565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806106725760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016107e8565b610cc66117f5565b600b55565b600073ffffffffffffffffffffffffffffffffffffffff8216610d565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e6572000000000000000000000000000000000000000000000060648201526084016107e8565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b610d876117f5565b610d916000611881565b565b600f5473ffffffffffffffffffffffffffffffffffffffff16331480610dd0575060105473ffffffffffffffffffffffffffffffffffffffff1633145b610e1c5760405162461bcd60e51b815260206004820152601060248201527f43616c6c6572206e6f742041646d696e0000000000000000000000000000000060448201526064016107e8565b610d916118f8565b610e2c6117f5565b8173ffffffffffffffffffffffffffffffffffffffff811663a9059cbb610e68600a5473ffffffffffffffffffffffffffffffffffffffff1690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024810185905260440161097b565b600f5473ffffffffffffffffffffffffffffffffffffffff16331480610efd575060105473ffffffffffffffffffffffffffffffffffffffff1633145b610cc65760405162461bcd60e51b815260206004820152601060248201527f43616c6c6572206e6f742041646d696e0000000000000000000000000000000060448201526064016107e8565b600081118015610f5a575060328111155b610fa65760405162461bcd60e51b815260206004820152600b60248201527f416d6f756e7420312d353000000000000000000000000000000000000000000060448201526064016107e8565b80600b54610fb491906128c5565b34146110025760405162461bcd60e51b815260206004820152600c60248201527f466565206d69736d61746368000000000000000000000000000000000000000060448201526064016107e8565b61270f600182611011600e5490565b61101b9190612902565b611025919061291a565b11156110735760405162461bcd60e51b815260206004820152600860248201527f536f6c64204f757400000000000000000000000000000000000000000000000060448201526064016107e8565b60015b818111610bda576110863361185c565b8061109081612931565b915050611076565b6110a06117f5565b8051610bda90600d9060208401906123c7565b606060018054610687906127f7565b610bda338383611ab7565b6110d733836114f7565b6111495760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f76656400000000000000000000000000000000000060648201526084016107e8565b6109be84848484611bca565b610e1c6117f5565b6060611168826113e6565b6000611172611c53565b9050600081511161119257604051806020016040528060008152506111bd565b8061119c84611c62565b6040516020016111ad929190612969565b6040516020818303038152906040525b9392505050565b600f5473ffffffffffffffffffffffffffffffffffffffff16331480611201575060105473ffffffffffffffffffffffffffffffffffffffff1633145b610be65760405162461bcd60e51b815260206004820152601060248201527f43616c6c6572206e6f742041646d696e0000000000000000000000000000000060448201526064016107e8565b6060600d8054610687906127f7565b6112646117f5565b73ffffffffffffffffffffffffffffffffffffffff81166112ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107e8565b610c4981611881565b5490565b80546001019055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061139657507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061067257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610672565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16610c495760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016107e8565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906114b182610c4c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061150383610c4c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611571575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b806115af57508373ffffffffffffffffffffffffffffffffffffffff166115978461070a565b73ffffffffffffffffffffffffffffffffffffffff16145b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166115d782610c4c565b73ffffffffffffffffffffffffffffffffffffffff16146116605760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016107e8565b73ffffffffffffffffffffffffffffffffffffffff82166116e85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107e8565b6116f3838383611d97565b6116fe600082611457565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812080546001929061173490849061291a565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061176f908490612902565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610d915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e8565b6000611867600e5490565b90506118738282611e9d565b610bda600e80546001019055565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b47733fea3a089f40acfd45841024fb26992c64f24e4f6108fc6103e8611920846102ad6128c5565b61192a91906129c7565b6040518115909202916000818181858888f19350505050158015611952573d6000803e3d6000fd5b507367abb9cfbc54a506b9c78f8283a4dd0a5bf7b5e26108fc6103e861197a8461012c6128c5565b61198491906129c7565b6040518115909202916000818181858888f193505050501580156119ac573d6000803e3d6000fd5b50738553935666f348cad9492780c1a6cc0794f043d06108fc6103e86119d38460056128c5565b6119dd91906129c7565b6040518115909202916000818181858888f19350505050158015611a05573d6000803e3d6000fd5b5073adbff9803d2b2edbf5162d84b8269077271217316108fc6103e8611a2c8460056128c5565b611a3691906129c7565b6040518115909202916000818181858888f19350505050158015611a5e573d6000803e3d6000fd5b50731c1333a823f733b744ef417f94295432b984e3976108fc6103e8611a858460056128c5565b611a8f91906129c7565b6040518115909202916000818181858888f19350505050158015610bda573d6000803e3d6000fd5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b325760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e8565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611bd58484846115b7565b611be184848484612037565b6109be5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107e8565b6060600c8054610687906127f7565b606081600003611ca557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611ccf5780611cb981612931565b9150611cc89050600a836129c7565b9150611ca9565b60008167ffffffffffffffff811115611cea57611cea6125dc565b6040519080825280601f01601f191660200182016040528015611d14576020820181803683370190505b5090505b84156115af57611d2960018361291a565b9150611d36600a866129db565b611d41906030612902565b60f81b818381518110611d5657611d56612867565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d90600a866129c7565b9450611d18565b73ffffffffffffffffffffffffffffffffffffffff8316611dff57611dfa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e3c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e3c57611e3c8382612210565b73ffffffffffffffffffffffffffffffffffffffff8216611e6057610896816122c7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610896576108968282612376565b73ffffffffffffffffffffffffffffffffffffffff8216611f005760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e8565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611f725760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e8565b611f7e60008383611d97565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611fb4908490612902565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612205576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906120ae9033908990889088906004016129ef565b6020604051808303816000875af1925050508015612107575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261210491810190612a38565b60015b6121ba573d808015612135576040519150601f19603f3d011682016040523d82523d6000602084013e61213a565b606091505b5080516000036121b25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107e8565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506115af565b506001949350505050565b6000600161221d84610ccb565b612227919061291a565b6000838152600760205260409020549091508082146122875773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b6008546000906122d99060019061291a565b6000838152600960205260408120546008805493945090928490811061230157612301612867565b90600052602060002001549050806008838154811061232257612322612867565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061235a5761235a612a55565b6001900381819060005260206000200160009055905550505050565b600061238183610ccb565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546123d3906127f7565b90600052602060002090601f0160209004810192826123f5576000855561243b565b82601f1061240e57805160ff191683800117855561243b565b8280016001018555821561243b579182015b8281111561243b578251825591602001919060010190612420565b5061244792915061244b565b5090565b5b80821115612447576000815560010161244c565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610c4957600080fd5b6000602082840312156124a057600080fd5b81356111bd81612460565b60005b838110156124c65781810151838201526020016124ae565b838111156109be5750506000910152565b600081518084526124ef8160208601602086016124ab565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006111bd60208301846124d7565b60006020828403121561254657600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461257157600080fd5b919050565b6000806040838503121561258957600080fd5b6125928361254d565b946020939093013593505050565b6000806000606084860312156125b557600080fd5b6125be8461254d565b92506125cc6020850161254d565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612626576126266125dc565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561266c5761266c6125dc565b8160405280935085815286868601111561268557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126b157600080fd5b813567ffffffffffffffff8111156126c857600080fd5b8201601f810184136126d957600080fd5b6115af8482356020840161260b565b6000602082840312156126fa57600080fd5b6111bd8261254d565b8015158114610c4957600080fd5b6000806040838503121561272457600080fd5b61272d8361254d565b9150602083013561273d81612703565b809150509250929050565b6000806000806080858703121561275e57600080fd5b6127678561254d565b93506127756020860161254d565b925060408501359150606085013567ffffffffffffffff81111561279857600080fd5b8501601f810187136127a957600080fd5b6127b88782356020840161260b565b91505092959194509250565b600080604083850312156127d757600080fd5b6127e08361254d565b91506127ee6020840161254d565b90509250929050565b600181811c9082168061280b57607f821691505b602082108103612844577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60006020828403121561285c57600080fd5b81516111bd81612703565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128fd576128fd612896565b500290565b6000821982111561291557612915612896565b500190565b60008282101561292c5761292c612896565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361296257612962612896565b5060010190565b6000835161297b8184602088016124ab565b83519083019061298f8183602088016124ab565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826129d6576129d6612998565b500490565b6000826129ea576129ea612998565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612a2e60808301846124d7565b9695505050505050565b600060208284031215612a4a57600080fd5b81516111bd81612460565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212200b50002b5336b5c4e33df3ba8b46297bbe584e67c8b36ba0f7900a80c5c2b48764736f6c634300080e0033
Deployed Bytecode Sourcemap
49845:3953:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36619:224;;;;;;;;;;-1:-1:-1;36619:224:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;36619:224:0;;;;;;;;22430:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23943:171::-;;;;;;;;;;-1:-1:-1;23943:171:0;;;;;:::i;:::-;;:::i;:::-;;;1809:42:1;1797:55;;;1779:74;;1767:2;1752:18;23943:171:0;1633:226:1;23460:417:0;;;;;;;;;;-1:-1:-1;23460:417:0;;;;;:::i;:::-;;:::i;:::-;;53541:252;;;;;;;;;;-1:-1:-1;53541:252:0;;;;;:::i;:::-;;:::i;49970:31::-;;;;;;;;;;;;;;;;;;;2470:25:1;;;2458:2;2443:18;49970:31:0;2324:177:1;37259:113:0;;;;;;;;;;-1:-1:-1;37347:10:0;:17;37259:113;;24643:336;;;;;;;;;;-1:-1:-1;24643:336:0;;;;;:::i;:::-;;:::i;36927:256::-;;;;;;;;;;-1:-1:-1;36927:256:0;;;;;:::i;:::-;;:::i;25050:185::-;;;;;;;;;;-1:-1:-1;25050:185:0;;;;;:::i;:::-;;:::i;37449:233::-;;;;;;;;;;-1:-1:-1;37449:233:0;;;;;:::i;:::-;;:::i;50828:111::-;;;;;;;;;;-1:-1:-1;50828:111:0;;;;;:::i;:::-;;:::i;51792:144::-;;;;;;;;;;-1:-1:-1;51792:144:0;;;;;:::i;:::-;;:::i;22141:222::-;;;;;;;;;;-1:-1:-1;22141:222:0;;;;;:::i;:::-;;:::i;51295:84::-;;;;;;;;;;-1:-1:-1;51295:84:0;;;;;:::i;:::-;;:::i;21872:207::-;;;;;;;;;;-1:-1:-1;21872:207:0;;;;;:::i;:::-;;:::i;48827:103::-;;;;;;;;;;;;;:::i;52639:148::-;;;;;;;;;;;;;:::i;53366:172::-;;;;;;;;;;-1:-1:-1;53366:172:0;;;;;:::i;:::-;;:::i;51385:159::-;;;;;;;;;;-1:-1:-1;51385:159:0;;;;;:::i;:::-;;:::i;48179:87::-;;;;;;;;;;-1:-1:-1;48252:6:0;;;;48179:87;;52174:366;;;;;;:::i;:::-;;:::i;51068:119::-;;;;;;;;;;-1:-1:-1;51068:119:0;;;;;:::i;:::-;;:::i;22599:104::-;;;;;;;;;;;;;:::i;24186:155::-;;;;;;;;;;-1:-1:-1;24186:155:0;;;;;:::i;:::-;;:::i;25306:323::-;;;;;;;;;;-1:-1:-1;25306:323:0;;;;;:::i;:::-;;:::i;52565:71::-;;;;;;;;;;;;;:::i;22774:281::-;;;;;;;;;;-1:-1:-1;22774:281:0;;;;;:::i;:::-;;:::i;51940:217::-;;;;;;;;;;-1:-1:-1;51940:217:0;;;;;:::i;:::-;;:::i;51193:97::-;;;;;;;;;;;;;:::i;24412:164::-;;;;;;;;;;-1:-1:-1;24412:164:0;;;;;:::i;:::-;24533:25;;;;24509:4;24533:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24412:164;49085:201;;;;;;;;;;-1:-1:-1;49085:201:0;;;;;:::i;:::-;;:::i;36619:224::-;36721:4;36745:50;;;36760:35;36745:50;;:90;;;36799:36;36823:11;36799:23;:36::i;:::-;36738:97;36619:224;-1:-1:-1;;36619:224:0:o;22430:100::-;22484:13;22517:5;22510:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22430:100;:::o;23943:171::-;24019:7;24039:23;24054:7;24039:14;:23::i;:::-;-1:-1:-1;24082:24:0;;;;:15;:24;;;;;;;;;23943:171::o;23460:417::-;23541:13;23557:23;23572:7;23557:14;:23::i;:::-;23541:39;;23605:5;23599:11;;:2;:11;;;23591:57;;;;-1:-1:-1;;;23591:57:0;;6395:2:1;23591:57:0;;;6377:21:1;6434:2;6414:18;;;6407:30;6473:34;6453:18;;;6446:62;6544:3;6524:18;;;6517:31;6565:19;;23591:57:0;;;;;;;;;3177:10;23683:21;;;;;:62;;-1:-1:-1;23708:37:0;23725:5;3177:10;24412:164;:::i;23708:37::-;23661:174;;;;-1:-1:-1;;;23661:174:0;;6797:2:1;23661:174:0;;;6779:21:1;6836:2;6816:18;;;6809:30;6875:34;6855:18;;;6848:62;6946:32;6926:18;;;6919:60;6996:19;;23661:174:0;6595:426:1;23661:174:0;23848:21;23857:2;23861:7;23848:8;:21::i;:::-;23530:347;23460:417;;:::o;53541:252::-;53640:5;;;;53626:10;:19;;:43;;-1:-1:-1;53663:6:0;;;;53649:10;:20;53626:43;53618:71;;;;-1:-1:-1;;;53618:71:0;;7228:2:1;53618:71:0;;;7210:21:1;7267:2;7247:18;;;7240:30;7306:18;7286;;;7279:46;7342:18;;53618:71:0;7026:340:1;53618:71:0;53752:36;;;;;53768:10;53752:36;;;7545:74:1;7635:18;;;7628:34;;;53734:6:0;;53752:15;;;;;;7518:18:1;;53752:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53607:186;53541:252;;:::o;24643:336::-;24838:41;3177:10;24871:7;24838:18;:41::i;:::-;24830:100;;;;-1:-1:-1;;;24830:100:0;;8125:2:1;24830:100:0;;;8107:21:1;8164:2;8144:18;;;8137:30;8203:34;8183:18;;;8176:62;8274:16;8254:18;;;8247:44;8308:19;;24830:100:0;7923:410:1;24830:100:0;24943:28;24953:4;24959:2;24963:7;24943:9;:28::i;36927:256::-;37024:7;37060:23;37077:5;37060:16;:23::i;:::-;37052:5;:31;37044:87;;;;-1:-1:-1;;;37044:87:0;;8540:2:1;37044:87:0;;;8522:21:1;8579:2;8559:18;;;8552:30;8618:34;8598:18;;;8591:62;8689:13;8669:18;;;8662:41;8720:19;;37044:87:0;8338:407:1;37044:87:0;-1:-1:-1;37149:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36927:256::o;25050:185::-;25188:39;25205:4;25211:2;25215:7;25188:39;;;;;;;;;;;;:16;:39::i;37449:233::-;37524:7;37560:30;37347:10;:17;;37259:113;37560:30;37552:5;:38;37544:95;;;;-1:-1:-1;;;37544:95:0;;8952:2:1;37544:95:0;;;8934:21:1;8991:2;8971:18;;;8964:30;9030:34;9010:18;;;9003:62;9101:14;9081:18;;;9074:42;9133:19;;37544:95:0;8750:408:1;37544:95:0;37657:10;37668:5;37657:17;;;;;;;;:::i;:::-;;;;;;;;;37650:24;;37449:233;;;:::o;50828:111::-;48065:13;:11;:13::i;:::-;50904:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50828:111:::0;:::o;51792:144::-;48065:13;:11;:13::i;:::-;51888:4:::1;51861:25;:15;46498:14:::0;;46406:114;51861:25:::1;:31;;51852:53;;;::::0;-1:-1:-1;;;51852:53:0;;9554:2:1;51852:53:0::1;::::0;::::1;9536:21:1::0;9593:1;9573:18;;;9566:29;9631:10;9611:18;;;9604:38;9659:18;;51852:53:0::1;9352:331:1::0;51852:53:0::1;51911:20;51927:3;51911:15;:20::i;:::-;51792:144:::0;:::o;22141:222::-;22213:7;22249:16;;;:7;:16;;;;;;;;;22276:56;;;;-1:-1:-1;;;22276:56:0;;9890:2:1;22276:56:0;;;9872:21:1;9929:2;9909:18;;;9902:30;9968:26;9948:18;;;9941:54;10012:18;;22276:56:0;9688:348:1;51295:84:0;48065:13;:11;:13::i;:::-;51354:7:::1;:17:::0;51295:84::o;21872:207::-;21944:7;21972:19;;;21964:73;;;;-1:-1:-1;;;21964:73:0;;10243:2:1;21964:73:0;;;10225:21:1;10282:2;10262:18;;;10255:30;10321:34;10301:18;;;10294:62;10392:11;10372:18;;;10365:39;10421:19;;21964:73:0;10041:405:1;21964:73:0;-1:-1:-1;22055:16:0;;;;;;:9;:16;;;;;;;21872:207::o;48827:103::-;48065:13;:11;:13::i;:::-;48892:30:::1;48919:1;48892:18;:30::i;:::-;48827:103::o:0;52639:148::-;52709:5;;;;52695:10;:19;;:43;;-1:-1:-1;52732:6:0;;;;52718:10;:20;52695:43;52687:71;;;;-1:-1:-1;;;52687:71:0;;7228:2:1;52687:71:0;;;7210:21:1;7267:2;7247:18;;;7240:30;7306:18;7286;;;7279:46;7342:18;;52687:71:0;7026:340:1;52687:71:0;52769:13;:11;:13::i;53366:172::-;48065:13;:11;:13::i;:::-;53488:6;53500:15:::1;::::0;::::1;;53516:7;48252:6:::0;;;;;48179:87;53516:7:::1;53500:33;::::0;;::::1;::::0;;;;;;7575:42:1;7563:55;;;53500:33:0::1;::::0;::::1;7545:74:1::0;7635:18;;;7628:34;;;7518:18;;53500:33:0::1;7371:297:1::0;51385:159:0;51462:5;;;;51448:10;:19;;:43;;-1:-1:-1;51485:6:0;;;;51471:10;:20;51448:43;51440:71;;;;-1:-1:-1;;;51440:71:0;;7228:2:1;51440:71:0;;;7210:21:1;7267:2;7247:18;;;7240:30;7306:18;7286;;;7279:46;7342:18;;51440:71:0;7026:340:1;52174:366:0;52249:1;52240:6;:10;:25;;;;;52263:2;52254:6;:11;;52240:25;52232:48;;;;-1:-1:-1;;;52232:48:0;;10653:2:1;52232:48:0;;;10635:21:1;10692:2;10672:18;;;10665:30;10731:13;10711:18;;;10704:41;10762:18;;52232:48:0;10451:335:1;52232:48:0;52316:6;52306:7;;:16;;;;:::i;:::-;52293:9;:29;52285:54;;;;-1:-1:-1;;;52285:54:0;;11415:2:1;52285:54:0;;;11397:21:1;11454:2;11434:18;;;11427:30;11493:14;11473:18;;;11466:42;11525:18;;52285:54:0;11213:336:1;52285:54:0;52399:4;52394:1;52386:6;52358:25;:15;46498:14;;46406:114;52358:25;:34;;;;:::i;:::-;:37;;;;:::i;:::-;:45;;52350:66;;;;-1:-1:-1;;;52350:66:0;;9554:2:1;52350:66:0;;;9536:21:1;9593:1;9573:18;;;9566:29;9631:10;9611:18;;;9604:38;9659:18;;52350:66:0;9352:331:1;52350:66:0;52451:1;52437:86;52457:6;52454:1;:9;52437:86;;52484:27;52500:10;52484:15;:27::i;:::-;52465:3;;;;:::i;:::-;;;;52437:86;;51068:119;48065:13;:11;:13::i;:::-;51152:27;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;22599:104::-:0;22655:13;22688:7;22681:14;;;;;:::i;24186:155::-;24281:52;3177:10;24314:8;24324;24281:18;:52::i;25306:323::-;25480:41;3177:10;25513:7;25480:18;:41::i;:::-;25472:100;;;;-1:-1:-1;;;25472:100:0;;8125:2:1;25472:100:0;;;8107:21:1;8164:2;8144:18;;;8137:30;8203:34;8183:18;;;8176:62;8274:16;8254:18;;;8247:44;8308:19;;25472:100:0;7923:410:1;25472:100:0;25583:38;25597:4;25603:2;25607:7;25616:4;25583:13;:38::i;52565:71::-;48065:13;:11;:13::i;22774:281::-;22847:13;22873:23;22888:7;22873:14;:23::i;:::-;22909:21;22933:10;:8;:10::i;:::-;22909:34;;22985:1;22967:7;22961:21;:25;:86;;;;;;;;;;;;;;;;;23013:7;23022:18;:7;:16;:18::i;:::-;22996:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22961:86;22954:93;22774:281;-1:-1:-1;;;22774:281:0:o;51940:217::-;52012:5;;;;51998:10;:19;;:43;;-1:-1:-1;52035:6:0;;;;52021:10;:20;51998:43;51990:71;;;;-1:-1:-1;;;51990:71:0;;7228:2:1;51990:71:0;;;7210:21:1;7267:2;7247:18;;;7240:30;7306:18;7286;;;7279:46;7342:18;;51990:71:0;7026:340:1;51193:97:0;51237:13;51270:12;51263:19;;;;;:::i;49085:201::-;48065:13;:11;:13::i;:::-;49174:22:::1;::::0;::::1;49166:73;;;::::0;-1:-1:-1;;;49166:73:0;;12694:2:1;49166:73:0::1;::::0;::::1;12676:21:1::0;12733:2;12713:18;;;12706:30;12772:34;12752:18;;;12745:62;12843:8;12823:18;;;12816:36;12869:19;;49166:73:0::1;12492:402:1::0;49166:73:0::1;49250:28;49269:8;49250:18;:28::i;46406:114::-:0;46498:14;;46406:114::o;46528:127::-;46617:19;;46635:1;46617:19;;;46528:127::o;21503:305::-;21605:4;21642:40;;;21657:25;21642:40;;:105;;-1:-1:-1;21699:48:0;;;21714:33;21699:48;21642:105;:158;;;-1:-1:-1;13587:25:0;13572:40;;;;21764:36;13463:157;31918:135;27201:4;27225:16;;;:7;:16;;;;;;:30;:16;31992:53;;;;-1:-1:-1;;;31992:53:0;;9890:2:1;31992:53:0;;;9872:21:1;9929:2;9909:18;;;9902:30;9968:26;9948:18;;;9941:54;10012:18;;31992:53:0;9688:348:1;31197:174:0;31272:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;31326:23;31272:24;31326:14;:23::i;:::-;31317:46;;;;;;;;;;;;31197:174;;:::o;27430:264::-;27523:4;27540:13;27556:23;27571:7;27556:14;:23::i;:::-;27540:39;;27609:5;27598:16;;:7;:16;;;:52;;;-1:-1:-1;24533:25:0;;;;24509:4;24533:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27618:32;27598:87;;;;27678:7;27654:31;;:20;27666:7;27654:11;:20::i;:::-;:31;;;27598:87;27590:96;27430:264;-1:-1:-1;;;;27430:264:0:o;30453:625::-;30612:4;30585:31;;:23;30600:7;30585:14;:23::i;:::-;:31;;;30577:81;;;;-1:-1:-1;;;30577:81:0;;13101:2:1;30577:81:0;;;13083:21:1;13140:2;13120:18;;;13113:30;13179:34;13159:18;;;13152:62;13250:7;13230:18;;;13223:35;13275:19;;30577:81:0;12899:401:1;30577:81:0;30677:16;;;30669:65;;;;-1:-1:-1;;;30669:65:0;;13507:2:1;30669:65:0;;;13489:21:1;13546:2;13526:18;;;13519:30;13585:34;13565:18;;;13558:62;13656:6;13636:18;;;13629:34;13680:19;;30669:65:0;13305:400:1;30669:65:0;30747:39;30768:4;30774:2;30778:7;30747:20;:39::i;:::-;30851:29;30868:1;30872:7;30851:8;:29::i;:::-;30893:15;;;;;;;:9;:15;;;;;:20;;30912:1;;30893:15;:20;;30912:1;;30893:20;:::i;:::-;;;;-1:-1:-1;;30924:13:0;;;;;;;:9;:13;;;;;:18;;30941:1;;30924:13;:18;;30941:1;;30924:18;:::i;:::-;;;;-1:-1:-1;;30953:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;30992:27;;30953:16;;30992:27;;;;;;;23530:347;23460:417;;:::o;48344:132::-;48252:6;;48408:23;48252:6;3177:10;48408:23;48400:68;;;;-1:-1:-1;;;48400:68:0;;13912:2:1;48400:68:0;;;13894:21:1;;;13931:18;;;13924:30;13990:34;13970:18;;;13963:62;14042:18;;48400:68:0;13710:356:1;51572:190:0;51631:21;51655:25;:15;46498:14;;46406:114;51655:25;51631:49;;51691:25;51697:3;51702:13;51691:5;:25::i;:::-;51727:27;:15;46617:19;;46635:1;46617:19;;;46528:127;49446:191;49539:6;;;;49556:17;;;;;;;;;;;49589:40;;49539:6;;;49556:17;49539:6;;49589:40;;49520:16;;49589:40;49509:128;49446:191;:::o;52790:573::-;52858:21;52900:42;52892:85;52972:4;52954:16;52858:21;52967:3;52954:16;:::i;:::-;52953:23;;;;:::i;:::-;52892:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52996:42:0;52988:85;53068:4;53050:16;:10;53063:3;53050:16;:::i;:::-;53049:23;;;;:::i;:::-;52988:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53092:42:0;53084:83;53162:4;53146:14;:10;53159:1;53146:14;:::i;:::-;53145:21;;;;:::i;:::-;53084:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53186:42:0;53178:83;53256:4;53240:14;:10;53253:1;53240:14;:::i;:::-;53239:21;;;;:::i;:::-;53178:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53280:42:0;53272:83;53350:4;53334:14;:10;53347:1;53334:14;:::i;:::-;53333:21;;;;:::i;:::-;53272:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31514:315;31669:8;31660:17;;:5;:17;;;31652:55;;;;-1:-1:-1;;;31652:55:0;;14587:2:1;31652:55:0;;;14569:21:1;14626:2;14606:18;;;14599:30;14665:27;14645:18;;;14638:55;14710:18;;31652:55:0;14385:349:1;31652:55:0;31718:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;31780:41;;586::1;;;31780::0;;559:18:1;31780:41:0;;;;;;;31514:315;;;:::o;26510:313::-;26666:28;26676:4;26682:2;26686:7;26666:9;:28::i;:::-;26713:47;26736:4;26742:2;26746:7;26755:4;26713:22;:47::i;:::-;26705:110;;;;-1:-1:-1;;;26705:110:0;;14941:2:1;26705:110:0;;;14923:21:1;14980:2;14960:18;;;14953:30;15019:34;14999:18;;;14992:62;15090:20;15070:18;;;15063:48;15128:19;;26705:110:0;14739:414:1;50945:117:0;51005:13;51038:16;51031:23;;;;;:::i;407:723::-;463:13;684:5;693:1;684:10;680:53;;-1:-1:-1;;711:10:0;;;;;;;;;;;;;;;;;;407:723::o;680:53::-;758:5;743:12;799:78;806:9;;799:78;;832:8;;;;:::i;:::-;;-1:-1:-1;855:10:0;;-1:-1:-1;863:2:0;855:10;;:::i;:::-;;;799:78;;;887:19;919:6;909:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;909:17:0;;887:39;;937:154;944:10;;937:154;;971:11;981:1;971:11;;:::i;:::-;;-1:-1:-1;1040:10:0;1048:2;1040:5;:10;:::i;:::-;1027:24;;:2;:24;:::i;:::-;1014:39;;997:6;1004;997:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1068:11:0;1077:2;1068:11;;:::i;:::-;;;937:154;;38295:589;38501:18;;;38497:187;;38536:40;38568:7;39711:10;:17;;39684:24;;;;:15;:24;;;;;:44;;;39739:24;;;;;;;;;;;;39607:164;38536:40;38497:187;;;38606:2;38598:10;;:4;:10;;;38594:90;;38625:47;38658:4;38664:7;38625:32;:47::i;:::-;38698:16;;;38694:183;;38731:45;38768:7;38731:36;:45::i;38694:183::-;38804:4;38798:10;;:2;:10;;;38794:83;;38825:40;38853:2;38857:7;38825:27;:40::i;29028:439::-;29108:16;;;29100:61;;;;-1:-1:-1;;;29100:61:0;;15477:2:1;29100:61:0;;;15459:21:1;;;15496:18;;;15489:30;15555:34;15535:18;;;15528:62;15607:18;;29100:61:0;15275:356:1;29100:61:0;27201:4;27225:16;;;:7;:16;;;;;;:30;:16;:30;29172:58;;;;-1:-1:-1;;;29172:58:0;;15838:2:1;29172:58:0;;;15820:21:1;15877:2;15857:18;;;15850:30;15916;15896:18;;;15889:58;15964:18;;29172:58:0;15636:352:1;29172:58:0;29243:45;29272:1;29276:2;29280:7;29243:20;:45::i;:::-;29301:13;;;;;;;:9;:13;;;;;:18;;29318:1;;29301:13;:18;;29318:1;;29301:18;:::i;:::-;;;;-1:-1:-1;;29330:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;29369:33;;29330:16;;;29369:33;;29330:16;;29369:33;50904:27:::1;50828:111:::0;:::o;32617:853::-;32771:4;32792:13;;;4787:19;:23;32788:675;;32828:71;;;;;:36;;;;;;:71;;3177:10;;32879:4;;32885:7;;32894:4;;32828:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32828:71:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32824:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33069:6;:13;33086:1;33069:18;33065:328;;33112:60;;-1:-1:-1;;;33112:60:0;;14941:2:1;33112:60:0;;;14923:21:1;14980:2;14960:18;;;14953:30;15019:34;14999:18;;;14992:62;15090:20;15070:18;;;15063:48;15128:19;;33112:60:0;14739:414:1;33065:328:0;33343:6;33337:13;33328:6;33324:2;33320:15;33313:38;32824:584;32950:51;;32960:41;32950:51;;-1:-1:-1;32943:58:0;;32788:675;-1:-1:-1;33447:4:0;32617:853;;;;;;:::o;40398:988::-;40664:22;40714:1;40689:22;40706:4;40689:16;:22::i;:::-;:26;;;;:::i;:::-;40726:18;40747:26;;;:17;:26;;;;;;40664:51;;-1:-1:-1;40880:28:0;;;40876:328;;40947:18;;;40925:19;40947:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40998:30;;;;;;:44;;;41115:30;;:17;:30;;;;;:43;;;40876:328;-1:-1:-1;41300:26:0;;;;:17;:26;;;;;;;;41293:33;;;41344:18;;;;;;:12;:18;;;;;:34;;;;;;;41337:41;40398:988::o;41681:1079::-;41959:10;:17;41934:22;;41959:21;;41979:1;;41959:21;:::i;:::-;41991:18;42012:24;;;:15;:24;;;;;;42385:10;:26;;41934:46;;-1:-1:-1;42012:24:0;;41934:46;;42385:26;;;;;;:::i;:::-;;;;;;;;;42363:48;;42449:11;42424:10;42435;42424:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42529:28;;;:15;:28;;;;;;;:41;;;42701:24;;;;;42694:31;42736:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41752:1008;;;41681:1079;:::o;39185:221::-;39270:14;39287:20;39304:2;39287:16;:20::i;:::-;39318:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39363:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39185:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;1137:66;1116:88;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:1:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:1;;1448:180;-1:-1:-1;1448:180:1:o;1864:196::-;1932:20;;1992:42;1981:54;;1971:65;;1961:93;;2050:1;2047;2040:12;1961:93;1864:196;;;:::o;2065:254::-;2133:6;2141;2194:2;2182:9;2173:7;2169:23;2165:32;2162:52;;;2210:1;2207;2200:12;2162:52;2233:29;2252:9;2233:29;:::i;:::-;2223:39;2309:2;2294:18;;;;2281:32;;-1:-1:-1;;;2065:254:1:o;2506:328::-;2583:6;2591;2599;2652:2;2640:9;2631:7;2627:23;2623:32;2620:52;;;2668:1;2665;2658:12;2620:52;2691:29;2710:9;2691:29;:::i;:::-;2681:39;;2739:38;2773:2;2762:9;2758:18;2739:38;:::i;:::-;2729:48;;2824:2;2813:9;2809:18;2796:32;2786:42;;2506:328;;;;;:::o;2839:184::-;2891:77;2888:1;2881:88;2988:4;2985:1;2978:15;3012:4;3009:1;3002:15;3028:691;3093:5;3123:18;3164:2;3156:6;3153:14;3150:40;;;3170:18;;:::i;:::-;3304:2;3298:9;3370:2;3358:15;;3209:66;3354:24;;;3380:2;3350:33;3346:42;3334:55;;;3404:18;;;3424:22;;;3401:46;3398:72;;;3450:18;;:::i;:::-;3490:10;3486:2;3479:22;3519:6;3510:15;;3549:6;3541;3534:22;3589:3;3580:6;3575:3;3571:16;3568:25;3565:45;;;3606:1;3603;3596:12;3565:45;3656:6;3651:3;3644:4;3636:6;3632:17;3619:44;3711:1;3704:4;3695:6;3687;3683:19;3679:30;3672:41;;;;3028:691;;;;;:::o;3724:451::-;3793:6;3846:2;3834:9;3825:7;3821:23;3817:32;3814:52;;;3862:1;3859;3852:12;3814:52;3902:9;3889:23;3935:18;3927:6;3924:30;3921:50;;;3967:1;3964;3957:12;3921:50;3990:22;;4043:4;4035:13;;4031:27;-1:-1:-1;4021:55:1;;4072:1;4069;4062:12;4021:55;4095:74;4161:7;4156:2;4143:16;4138:2;4134;4130:11;4095:74;:::i;4180:186::-;4239:6;4292:2;4280:9;4271:7;4267:23;4263:32;4260:52;;;4308:1;4305;4298:12;4260:52;4331:29;4350:9;4331:29;:::i;4371:118::-;4457:5;4450:13;4443:21;4436:5;4433:32;4423:60;;4479:1;4476;4469:12;4494:315;4559:6;4567;4620:2;4608:9;4599:7;4595:23;4591:32;4588:52;;;4636:1;4633;4626:12;4588:52;4659:29;4678:9;4659:29;:::i;:::-;4649:39;;4738:2;4727:9;4723:18;4710:32;4751:28;4773:5;4751:28;:::i;:::-;4798:5;4788:15;;;4494:315;;;;;:::o;4814:667::-;4909:6;4917;4925;4933;4986:3;4974:9;4965:7;4961:23;4957:33;4954:53;;;5003:1;5000;4993:12;4954:53;5026:29;5045:9;5026:29;:::i;:::-;5016:39;;5074:38;5108:2;5097:9;5093:18;5074:38;:::i;:::-;5064:48;;5159:2;5148:9;5144:18;5131:32;5121:42;;5214:2;5203:9;5199:18;5186:32;5241:18;5233:6;5230:30;5227:50;;;5273:1;5270;5263:12;5227:50;5296:22;;5349:4;5341:13;;5337:27;-1:-1:-1;5327:55:1;;5378:1;5375;5368:12;5327:55;5401:74;5467:7;5462:2;5449:16;5444:2;5440;5436:11;5401:74;:::i;:::-;5391:84;;;4814:667;;;;;;;:::o;5486:260::-;5554:6;5562;5615:2;5603:9;5594:7;5590:23;5586:32;5583:52;;;5631:1;5628;5621:12;5583:52;5654:29;5673:9;5654:29;:::i;:::-;5644:39;;5702:38;5736:2;5725:9;5721:18;5702:38;:::i;:::-;5692:48;;5486:260;;;;;:::o;5751:437::-;5830:1;5826:12;;;;5873;;;5894:61;;5948:4;5940:6;5936:17;5926:27;;5894:61;6001:2;5993:6;5990:14;5970:18;5967:38;5964:218;;6038:77;6035:1;6028:88;6139:4;6136:1;6129:15;6167:4;6164:1;6157:15;5964:218;;5751:437;;;:::o;7673:245::-;7740:6;7793:2;7781:9;7772:7;7768:23;7764:32;7761:52;;;7809:1;7806;7799:12;7761:52;7841:9;7835:16;7860:28;7882:5;7860:28;:::i;9163:184::-;9215:77;9212:1;9205:88;9312:4;9309:1;9302:15;9336:4;9333:1;9326:15;10791:184;10843:77;10840:1;10833:88;10940:4;10937:1;10930:15;10964:4;10961:1;10954:15;10980:228;11020:7;11146:1;11078:66;11074:74;11071:1;11068:81;11063:1;11056:9;11049:17;11045:105;11042:131;;;11153:18;;:::i;:::-;-1:-1:-1;11193:9:1;;10980:228::o;11554:128::-;11594:3;11625:1;11621:6;11618:1;11615:13;11612:39;;;11631:18;;:::i;:::-;-1:-1:-1;11667:9:1;;11554:128::o;11687:125::-;11727:4;11755:1;11752;11749:8;11746:34;;;11760:18;;:::i;:::-;-1:-1:-1;11797:9:1;;11687:125::o;11817:195::-;11856:3;11887:66;11880:5;11877:77;11874:103;;11957:18;;:::i;:::-;-1:-1:-1;12004:1:1;11993:13;;11817:195::o;12017:470::-;12196:3;12234:6;12228:13;12250:53;12296:6;12291:3;12284:4;12276:6;12272:17;12250:53;:::i;:::-;12366:13;;12325:16;;;;12388:57;12366:13;12325:16;12422:4;12410:17;;12388:57;:::i;:::-;12461:20;;12017:470;-1:-1:-1;;;;12017:470:1:o;14071:184::-;14123:77;14120:1;14113:88;14220:4;14217:1;14210:15;14244:4;14241:1;14234:15;14260:120;14300:1;14326;14316:35;;14331:18;;:::i;:::-;-1:-1:-1;14365:9:1;;14260:120::o;15158:112::-;15190:1;15216;15206:35;;15221:18;;:::i;:::-;-1:-1:-1;15255:9:1;;15158:112::o;15993:512::-;16187:4;16216:42;16297:2;16289:6;16285:15;16274:9;16267:34;16349:2;16341:6;16337:15;16332:2;16321:9;16317:18;16310:43;;16389:6;16384:2;16373:9;16369:18;16362:34;16432:3;16427:2;16416:9;16412:18;16405:31;16453:46;16494:3;16483:9;16479:19;16471:6;16453:46;:::i;:::-;16445:54;15993:512;-1:-1:-1;;;;;;15993:512:1:o;16510:249::-;16579:6;16632:2;16620:9;16611:7;16607:23;16603:32;16600:52;;;16648:1;16645;16638:12;16600:52;16680:9;16674:16;16699:30;16723:5;16699:30;:::i;16764:184::-;16816:77;16813:1;16806:88;16913:4;16910:1;16903:15;16937:4;16934:1;16927:15
Swarm Source
ipfs://0b50002b5336b5c4e33df3ba8b46297bbe584e67c8b36ba0f7900a80c5c2b487
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.