Contract Overview
Balance:
0 AVAX
AVAX Value:
$0.00
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
Nft
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2022-05-24 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // 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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.6.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: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/Nft.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract Nft is Context, ERC721, ERC721Enumerable, ERC721URIStorage, Ownable { using Counters for Counters.Counter; Counters.Counter public currentTokenId; string public baseTokenUri; uint256 public mintPrice; uint256 public whitelistMintPrice; uint256 public mintSupply; uint256 public royaltyPercentage; address public paymentSplitterContractAddress; address public burnerContractAddress; bool public mintingEnabled; bool public whitelistMintingEnabled; mapping(address => uint256) public freeMints; mapping(address => bool) public whitelistAddresses; bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a; constructor( string memory _name, string memory _symbol, string memory _baseTokenUri, uint256 _mintPrice, uint256 _maxMintSupply, address _paymentSplitterContractAddress, address _burnerContractAddress, uint256 _whitelistMintPrice, uint256 _royaltyPercentage ) ERC721(_name, _symbol) { setNftMetadata( _baseTokenUri, _mintPrice, _maxMintSupply, _paymentSplitterContractAddress, _burnerContractAddress, _whitelistMintPrice, _royaltyPercentage ); whitelistMintingEnabled = false; mintingEnabled = false; } modifier onlyMintingEnabled() { require( owner() == msg.sender || mintingEnabled == true || (whitelistMintingEnabled && whitelistAddresses[msg.sender]), "Minting is closed or this address isn't whitelisted." ); _; } function setNftMetadata( string memory _baseTokenUri, uint256 _mintPrice, uint256 _maxMintSupply, address _paymentSplitterContractAddress, address _burnerContractAddress, uint256 _whitelistMintPrice, uint256 _royaltyPercentage ) public onlyOwner { baseTokenUri = _baseTokenUri; mintPrice = _mintPrice; mintSupply = _maxMintSupply; paymentSplitterContractAddress = _paymentSplitterContractAddress; burnerContractAddress = _burnerContractAddress; whitelistMintPrice = _whitelistMintPrice; royaltyPercentage = _royaltyPercentage; } function royaltyInfo(uint256 tokenId, uint256 salesprice) external view returns (address reciever, uint256 royaltyAmount) { uint256 royalty = salesprice * royaltyPercentage / 100; return (paymentSplitterContractAddress, royalty); } function setMintingEnabled( bool _mintingEnabled, bool _whitelistMintingEnabled ) public onlyOwner { mintingEnabled = _mintingEnabled; whitelistMintingEnabled = _whitelistMintingEnabled; } function getMintPrice(address userAddress) public view returns (uint256) { return whitelistAddresses[userAddress] ? whitelistMintPrice : mintPrice; } function mint(uint256 amount) public payable onlyMintingEnabled { require( msg.value == getMintPrice(msg.sender) * amount || owner() == msg.sender, "Incorrect price sent." ); require( currentTokenId.current() + amount <= mintSupply, "Not enough supply for mint amount requested." ); for (uint256 i = 0; i < amount; i++) { // NFT IDs are 1-indexed, need to add +1 to the counter (0-indexed). _mint(msg.sender, currentTokenId.current() + 1); currentTokenId.increment(); } if (owner() != msg.sender) { payable(paymentSplitterContractAddress).transfer(msg.value); } } function claimFreeMints(uint256 amount) public onlyMintingEnabled { require(freeMints[msg.sender] > 0, "No free mints for this address."); require( currentTokenId.current() + amount <= mintSupply, "Not enough supply for mint amount requested." ); for (uint256 i = 0; i < amount; i++) { if (freeMints[msg.sender] > 0) { // NFT IDs are 1-indexed, need to add +1 to the counter (0-indexed). _mint(msg.sender, currentTokenId.current() + 1); currentTokenId.increment(); freeMints[msg.sender]--; } } } function setWhitelistAddresses( address[] memory userAddresses, bool isWhitelisted ) public onlyOwner { for (uint256 i = 0; i < userAddresses.length; i++) { whitelistAddresses[userAddresses[i]] = isWhitelisted; } } function setFreeMintsForAddress(address userAddress, uint256 amount) public onlyOwner { freeMints[userAddress] = amount; } function burn(uint256 tokenId) public { transferFrom(msg.sender, burnerContractAddress, tokenId); } function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) { return ERC721URIStorage._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return ERC721URIStorage.tokenURI(tokenId); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenUri; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return interfaceId == _INTERFACE_ID_ERC2981 ? true : super.supportsInterface(interfaceId); } }
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseTokenUri","type":"string"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_maxMintSupply","type":"uint256"},{"internalType":"address","name":"_paymentSplitterContractAddress","type":"address"},{"internalType":"address","name":"_burnerContractAddress","type":"address"},{"internalType":"uint256","name":"_whitelistMintPrice","type":"uint256"},{"internalType":"uint256","name":"_royaltyPercentage","type":"uint256"}],"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":"baseTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnerContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"userAddress","type":"address"}],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paymentSplitterContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salesprice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"reciever","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPercentage","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":"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":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeMintsForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintingEnabled","type":"bool"},{"internalType":"bool","name":"_whitelistMintingEnabled","type":"bool"}],"name":"setMintingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_maxMintSupply","type":"uint256"},{"internalType":"address","name":"_paymentSplitterContractAddress","type":"address"},{"internalType":"address","name":"_burnerContractAddress","type":"address"},{"internalType":"uint256","name":"_whitelistMintPrice","type":"uint256"},{"internalType":"uint256","name":"_royaltyPercentage","type":"uint256"}],"name":"setNftMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"userAddresses","type":"address[]"},{"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"setWhitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002d6638038062002d6683398101604081905262000034916200034b565b8851899089906200004d906000906020850190620001bb565b50805162000063906001906020840190620001bb565b505050620000806200007a620000af60201b60201c565b620000b3565b620000918787878787878762000105565b50506013805461ffff60a01b19169055506200046595505050505050565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b546001600160a01b03163314620001645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b86516200017990600d9060208a0190620001bb565b50600e95909555601093909355601280546001600160a01b039384166001600160a01b03199182161790915560138054929093169116179055600f5560115550565b828054620001c99062000429565b90600052602060002090601f016020900481019282620001ed576000855562000238565b82601f106200020857805160ff191683800117855562000238565b8280016001018555821562000238579182015b82811115620002385782518255916020019190600101906200021b565b50620002469291506200024a565b5090565b5b808211156200024657600081556001016200024b565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028957600080fd5b81516001600160401b0380821115620002a657620002a662000261565b604051601f8301601f19908116603f01168101908282118183101715620002d157620002d162000261565b81604052838152602092508683858801011115620002ee57600080fd5b600091505b83821015620003125785820183015181830184015290820190620002f3565b83821115620003245760008385830101525b9695505050505050565b80516001600160a01b03811681146200034657600080fd5b919050565b60008060008060008060008060006101208a8c0312156200036b57600080fd5b89516001600160401b03808211156200038357600080fd5b620003918d838e0162000277565b9a5060208c0151915080821115620003a857600080fd5b620003b68d838e0162000277565b995060408c0151915080821115620003cd57600080fd5b50620003dc8c828d0162000277565b97505060608a0151955060808a01519450620003fb60a08b016200032e565b93506200040b60c08b016200032e565b925060e08a015191506101008a015190509295985092959850929598565b600181811c908216806200043e57607f821691505b6020821081036200045f57634e487b7160e01b600052602260045260246000fd5b50919050565b6128f180620004756000396000f3fe60806040526004361061023a5760003560e01c806369ddd67d1161012e578063971deb51116100ab578063b88d4fde1161006f578063b88d4fde146106b0578063c87b56dd146106d0578063e985e9c5146106f0578063f2fde38b14610739578063f9caf0941461075957600080fd5b8063971deb511461061c5780639fd6db121461063c578063a0712d681461065d578063a22cb46514610670578063a8d9bb771461069057600080fd5b80637a0101a2116100f25780637a0101a21461059d57806381d0113d146105b25780638a71bb2d146105d35780638da5cb5b146105e957806395d89b411461060757600080fd5b806369ddd67d146104eb5780636d41d4fb1461051b57806370a0823114610548578063715018a614610568578063719d0f2b1461057d57600080fd5b80632d3447d1116101bc57806342842e0e1161018057806342842e0e1461045557806342966c68146104755780634f6ccce7146104955780636352211e146104b55780636817c76c146104d557600080fd5b80632d3447d1146103bf5780632f745c59146103df57806331c515b8146103ff578063353ab9841461041f57806335c6aaf81461043f57600080fd5b8063095ea7b311610203578063095ea7b31461030957806318160ddd1461032b5780631abf75281461034057806323b872dd146103605780632a55205a1461038057600080fd5b80629a9b7b1461023f57806301ffc9a714610269578063045b7dca1461029957806306fdde03146102af578063081812fc146102d1575b600080fd5b34801561024b57600080fd5b50600c546102569081565b6040519081526020015b60405180910390f35b34801561027557600080fd5b50610289610284366004612126565b610779565b6040519015158152602001610260565b3480156102a557600080fd5b5061025660105481565b3480156102bb57600080fd5b506102c46107aa565b604051610260919061219b565b3480156102dd57600080fd5b506102f16102ec3660046121ae565b61083c565b6040516001600160a01b039091168152602001610260565b34801561031557600080fd5b506103296103243660046121e3565b6108d6565b005b34801561033757600080fd5b50600854610256565b34801561034c57600080fd5b5061032961035b3660046121e3565b6109eb565b34801561036c57600080fd5b5061032961037b36600461220d565b610a31565b34801561038c57600080fd5b506103a061039b366004612249565b610a62565b604080516001600160a01b039093168352602083019190915201610260565b3480156103cb57600080fd5b506103296103da3660046121ae565b610a98565b3480156103eb57600080fd5b506102566103fa3660046121e3565b610c2b565b34801561040b57600080fd5b5061032961041a36600461227b565b610cc1565b34801561042b57600080fd5b506013546102f1906001600160a01b031681565b34801561044b57600080fd5b50610256600f5481565b34801561046157600080fd5b5061032961047036600461220d565b610d1f565b34801561048157600080fd5b506103296104903660046121ae565b610d3a565b3480156104a157600080fd5b506102566104b03660046121ae565b610d55565b3480156104c157600080fd5b506102f16104d03660046121ae565b610de8565b3480156104e157600080fd5b50610256600e5481565b3480156104f757600080fd5b506102896105063660046122ae565b60156020526000908152604090205460ff1681565b34801561052757600080fd5b506102566105363660046122ae565b60146020526000908152604090205481565b34801561055457600080fd5b506102566105633660046122ae565b610e5f565b34801561057457600080fd5b50610329610ee6565b34801561058957600080fd5b506102566105983660046122ae565b610f1c565b3480156105a957600080fd5b506102c4610f4c565b3480156105be57600080fd5b5060135461028990600160a81b900460ff1681565b3480156105df57600080fd5b5061025660115481565b3480156105f557600080fd5b50600b546001600160a01b03166102f1565b34801561061357600080fd5b506102c4610fda565b34801561062857600080fd5b506012546102f1906001600160a01b031681565b34801561064857600080fd5b5060135461028990600160a01b900460ff1681565b61032961066b3660046121ae565b610fe9565b34801561067c57600080fd5b5061032961068b3660046122c9565b6111af565b34801561069c57600080fd5b506103296106ab36600461232c565b6111ba565b3480156106bc57600080fd5b506103296106cb366004612443565b61124b565b3480156106dc57600080fd5b506102c46106eb3660046121ae565b611283565b3480156106fc57600080fd5b5061028961070b3660046124bf565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074557600080fd5b506103296107543660046122ae565b61128e565b34801561076557600080fd5b506103296107743660046124e9565b611326565b60006001600160e01b0319821663152a902d60e11b146107a15761079c826113a5565b6107a4565b60015b92915050565b6060600080546107b990612582565b80601f01602080910402602001604051908101604052809291908181526020018280546107e590612582565b80156108325780601f1061080757610100808354040283529160200191610832565b820191906000526020600020905b81548152906001019060200180831161081557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108e182610de8565b9050806001600160a01b0316836001600160a01b03160361094e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108b1565b336001600160a01b038216148061096a575061096a813361070b565b6109dc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108b1565b6109e683836113ca565b505050565b600b546001600160a01b03163314610a155760405162461bcd60e51b81526004016108b1906125bc565b6001600160a01b03909116600090815260146020526040902055565b610a3b3382611438565b610a575760405162461bcd60e51b81526004016108b1906125f1565b6109e683838361152f565b6000806000606460115485610a779190612658565b610a81919061268d565b6012546001600160a01b0316969095509350505050565b33610aab600b546001600160a01b031690565b6001600160a01b03161480610ace5750601354600160a01b900460ff1615156001145b80610afc5750601354600160a81b900460ff168015610afc57503360009081526015602052604090205460ff165b610b185760405162461bcd60e51b81526004016108b1906126a1565b33600090815260146020526040902054610b745760405162461bcd60e51b815260206004820152601f60248201527f4e6f2066726565206d696e747320666f72207468697320616464726573732e0060448201526064016108b1565b60105481610b81600c5490565b610b8b91906126f5565b1115610ba95760405162461bcd60e51b81526004016108b19061270d565b60005b81811015610c27573360009081526014602052604090205415610c1557610be633610bd6600c5490565b610be19060016126f5565b6116d6565b610bf4600c80546001019055565b336000908152601460205260408120805491610c0f83612759565b91905055505b80610c1f81612770565b915050610bac565b5050565b6000610c3683610e5f565b8210610c985760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108b1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610ceb5760405162461bcd60e51b81526004016108b1906125bc565b6013805461ffff60a01b1916600160a01b9315159390930260ff60a81b191692909217600160a81b91151591909102179055565b6109e68383836040518060200160405280600081525061124b565b601354610d529033906001600160a01b031683610a31565b50565b6000610d6060085490565b8210610dc35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108b1565b60088281548110610dd657610dd6612789565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806107a45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108b1565b60006001600160a01b038216610eca5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108b1565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610f105760405162461bcd60e51b81526004016108b1906125bc565b610f1a6000611824565b565b6001600160a01b03811660009081526015602052604081205460ff16610f4457600e546107a4565b5050600f5490565b600d8054610f5990612582565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8590612582565b8015610fd25780601f10610fa757610100808354040283529160200191610fd2565b820191906000526020600020905b815481529060010190602001808311610fb557829003601f168201915b505050505081565b6060600180546107b990612582565b33610ffc600b546001600160a01b031690565b6001600160a01b0316148061101f5750601354600160a01b900460ff1615156001145b8061104d5750601354600160a81b900460ff16801561104d57503360009081526015602052604090205460ff165b6110695760405162461bcd60e51b81526004016108b1906126a1565b8061107333610f1c565b61107d9190612658565b3414806110a3575033611098600b546001600160a01b031690565b6001600160a01b0316145b6110e75760405162461bcd60e51b815260206004820152601560248201527424b731b7b93932b1ba10383934b1b29039b2b73a1760591b60448201526064016108b1565b601054816110f4600c5490565b6110fe91906126f5565b111561111c5760405162461bcd60e51b81526004016108b19061270d565b60005b818110156111545761113433610bd6600c5490565b611142600c80546001019055565b8061114c81612770565b91505061111f565b5033611168600b546001600160a01b031690565b6001600160a01b031614610d52576012546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610c27573d6000803e3d6000fd5b610c27338383611876565b600b546001600160a01b031633146111e45760405162461bcd60e51b81526004016108b1906125bc565b60005b82518110156109e657816015600085848151811061120757611207612789565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061124381612770565b9150506111e7565b6112553383611438565b6112715760405162461bcd60e51b81526004016108b1906125f1565b61127d84848484611944565b50505050565b60606107a482611977565b600b546001600160a01b031633146112b85760405162461bcd60e51b81526004016108b1906125bc565b6001600160a01b03811661131d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b1565b610d5281611824565b600b546001600160a01b031633146113505760405162461bcd60e51b81526004016108b1906125bc565b865161136390600d9060208a0190612077565b50600e95909555601093909355601280546001600160a01b039384166001600160a01b03199182161790915560138054929093169116179055600f5560115550565b60006001600160e01b0319821663780e9d6360e01b14806107a457506107a482611ae8565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113ff82610de8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108b1565b60006114bc83610de8565b9050806001600160a01b0316846001600160a01b0316148061150357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806115275750836001600160a01b031661151c8461083c565b6001600160a01b0316145b949350505050565b826001600160a01b031661154282610de8565b6001600160a01b0316146115a65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108b1565b6001600160a01b0382166116085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108b1565b611613838383611b38565b61161e6000826113ca565b6001600160a01b038316600090815260036020526040812080546001929061164790849061279f565b90915550506001600160a01b03821660009081526003602052604081208054600192906116759084906126f5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821661172c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108b1565b6000818152600260205260409020546001600160a01b0316156117915760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108b1565b61179d60008383611b38565b6001600160a01b03821660009081526003602052604081208054600192906117c69084906126f5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036118d75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108b1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61194f84848461152f565b61195b84848484611b43565b61127d5760405162461bcd60e51b81526004016108b1906127b6565b6000818152600260205260409020546060906001600160a01b03166119f85760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016108b1565b6000828152600a602052604081208054611a1190612582565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3d90612582565b8015611a8a5780601f10611a5f57610100808354040283529160200191611a8a565b820191906000526020600020905b815481529060010190602001808311611a6d57829003601f168201915b505050505090506000611a9b611c44565b90508051600003611aad575092915050565b815115611adf578082604051602001611ac7929190612808565b60405160208183030381529060405292505050919050565b61152784611c53565b60006001600160e01b031982166380ac58cd60e01b1480611b1957506001600160e01b03198216635b5e139f60e01b145b806107a457506301ffc9a760e01b6001600160e01b03198316146107a4565b6109e6838383611d2e565b60006001600160a01b0384163b15611c3957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b87903390899088908890600401612837565b6020604051808303816000875af1925050508015611bc2575060408051601f3d908101601f19168201909252611bbf91810190612874565b60015b611c1f573d808015611bf0576040519150601f19603f3d011682016040523d82523d6000602084013e611bf5565b606091505b508051600003611c175760405162461bcd60e51b81526004016108b1906127b6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611527565b506001949350505050565b6060600d80546107b990612582565b6000818152600260205260409020546060906001600160a01b0316611cd25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b1565b6000611cdc611c44565b90506000815111611cfc5760405180602001604052806000815250611d27565b80611d0684611de6565b604051602001611d17929190612808565b6040516020818303038152906040525b9392505050565b6001600160a01b038316611d8957611d8481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611dac565b816001600160a01b0316836001600160a01b031614611dac57611dac8382611ee7565b6001600160a01b038216611dc3576109e681611f84565b826001600160a01b0316826001600160a01b0316146109e6576109e68282612033565b606081600003611e0d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e375780611e2181612770565b9150611e309050600a8361268d565b9150611e11565b60008167ffffffffffffffff811115611e5257611e526122e5565b6040519080825280601f01601f191660200182016040528015611e7c576020820181803683370190505b5090505b841561152757611e9160018361279f565b9150611e9e600a86612891565b611ea99060306126f5565b60f81b818381518110611ebe57611ebe612789565b60200101906001600160f81b031916908160001a905350611ee0600a8661268d565b9450611e80565b60006001611ef484610e5f565b611efe919061279f565b600083815260076020526040902054909150808214611f51576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f969060019061279f565b60008381526009602052604081205460088054939450909284908110611fbe57611fbe612789565b906000526020600020015490508060088381548110611fdf57611fdf612789565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612017576120176128a5565b6001900381819060005260206000200160009055905550505050565b600061203e83610e5f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461208390612582565b90600052602060002090601f0160209004810192826120a557600085556120eb565b82601f106120be57805160ff19168380011785556120eb565b828001600101855582156120eb579182015b828111156120eb5782518255916020019190600101906120d0565b506120f79291506120fb565b5090565b5b808211156120f757600081556001016120fc565b6001600160e01b031981168114610d5257600080fd5b60006020828403121561213857600080fd5b8135611d2781612110565b60005b8381101561215e578181015183820152602001612146565b8381111561127d5750506000910152565b60008151808452612187816020860160208601612143565b601f01601f19169290920160200192915050565b602081526000611d27602083018461216f565b6000602082840312156121c057600080fd5b5035919050565b80356001600160a01b03811681146121de57600080fd5b919050565b600080604083850312156121f657600080fd5b6121ff836121c7565b946020939093013593505050565b60008060006060848603121561222257600080fd5b61222b846121c7565b9250612239602085016121c7565b9150604084013590509250925092565b6000806040838503121561225c57600080fd5b50508035926020909101359150565b803580151581146121de57600080fd5b6000806040838503121561228e57600080fd5b6122978361226b565b91506122a56020840161226b565b90509250929050565b6000602082840312156122c057600080fd5b611d27826121c7565b600080604083850312156122dc57600080fd5b612297836121c7565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612324576123246122e5565b604052919050565b6000806040838503121561233f57600080fd5b823567ffffffffffffffff8082111561235757600080fd5b818501915085601f83011261236b57600080fd5b813560208282111561237f5761237f6122e5565b8160051b92506123908184016122fb565b82815292840181019281810190898511156123aa57600080fd5b948201945b848610156123cf576123c0866121c7565b825294820194908201906123af565b96506123de905087820161226b565b9450505050509250929050565b600067ffffffffffffffff831115612405576124056122e5565b612418601f8401601f19166020016122fb565b905082815283838301111561242c57600080fd5b828260208301376000602084830101529392505050565b6000806000806080858703121561245957600080fd5b612462856121c7565b9350612470602086016121c7565b925060408501359150606085013567ffffffffffffffff81111561249357600080fd5b8501601f810187136124a457600080fd5b6124b3878235602084016123eb565b91505092959194509250565b600080604083850312156124d257600080fd5b6124db836121c7565b91506122a5602084016121c7565b600080600080600080600060e0888a03121561250457600080fd5b873567ffffffffffffffff81111561251b57600080fd5b8801601f81018a1361252c57600080fd5b61253b8a8235602084016123eb565b9750506020880135955060408801359450612558606089016121c7565b9350612566608089016121c7565b925060a0880135915060c0880135905092959891949750929550565b600181811c9082168061259657607f821691505b6020821081036125b657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561267257612672612642565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261269c5761269c612677565b500490565b60208082526034908201527f4d696e74696e6720697320636c6f736564206f72207468697320616464726573604082015273399034b9b713ba103bb434ba32b634b9ba32b21760611b606082015260800190565b6000821982111561270857612708612642565b500190565b6020808252602c908201527f4e6f7420656e6f75676820737570706c7920666f72206d696e7420616d6f756e60408201526b3a103932b8bab2b9ba32b21760a11b606082015260800190565b60008161276857612768612642565b506000190190565b60006001820161278257612782612642565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000828210156127b1576127b1612642565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000835161281a818460208801612143565b83519083019061282e818360208801612143565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061286a9083018461216f565b9695505050505050565b60006020828403121561288657600080fd5b8151611d2781612110565b6000826128a0576128a0612677565b500690565b634e487b7160e01b600052603160045260246000fdfea264697066735822122041fc7da1c8f776c99abeae92daadf54e28069a90374bbddda4828e42b1906cec64736f6c634300080e00330000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000853a0d2313c000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000c56d14768b4fb77449a6c95a8c4d663b77949886000000000000000000000000000000000000000000000000000000000000dead00000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e426f756e7479204261646469657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054254594244000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003668747470733a2f2f6e386c316b667962786a2e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d00000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000853a0d2313c000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000c56d14768b4fb77449a6c95a8c4d663b77949886000000000000000000000000000000000000000000000000000000000000dead00000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e426f756e7479204261646469657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054254594244000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003668747470733a2f2f6e386c316b667962786a2e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Bounty Baddies
Arg [1] : _symbol (string): BTYBD
Arg [2] : _baseTokenUri (string): https://n8l1kfybxj.execute-api.us-east-1.amazonaws.com
Arg [3] : _mintPrice (uint256): 600000000000000000
Arg [4] : _maxMintSupply (uint256): 1000
Arg [5] : _paymentSplitterContractAddress (address): 0xc56d14768b4fb77449a6c95a8c4d663b77949886
Arg [6] : _burnerContractAddress (address): 0x000000000000000000000000000000000000dead
Arg [7] : _whitelistMintPrice (uint256): 500000000000000000
Arg [8] : _royaltyPercentage (uint256): 8
-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [3] : 0000000000000000000000000000000000000000000000000853a0d2313c0000
Arg [4] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [5] : 000000000000000000000000c56d14768b4fb77449a6c95a8c4d663b77949886
Arg [6] : 000000000000000000000000000000000000000000000000000000000000dead
Arg [7] : 00000000000000000000000000000000000000000000000006f05b59d3b20000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [10] : 426f756e74792042616464696573000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [12] : 4254594244000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [14] : 68747470733a2f2f6e386c316b667962786a2e657865637574652d6170692e75
Arg [15] : 732d656173742d312e616d617a6f6e6177732e636f6d00000000000000000000
Deployed ByteCode Sourcemap
49072:6156:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49200:38;;;;;;;;;;-1:-1:-1;49200:38:0;;;;;;;;;160:25:1;;;148:2;133:18;49200:38:0;;;;;;;;54923:302;;;;;;;;;;-1:-1:-1;54923:302:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;54923:302:0;582:187:1;49349:25:0;;;;;;;;;;;;;;;;27637:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29197:221::-;;;;;;;;;;-1:-1:-1;29197:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;29197:221:0;1710:203:1;28720:411:0;;;;;;;;;;-1:-1:-1;28720:411:0;;;;;:::i;:::-;;:::i;:::-;;43463:113;;;;;;;;;;-1:-1:-1;43551:10:0;:17;43463:113;;53887:159;;;;;;;;;;-1:-1:-1;53887:159:0;;;;;:::i;:::-;;:::i;29947:339::-;;;;;;;;;;-1:-1:-1;29947:339:0;;;;;:::i;:::-;;:::i;51483:254::-;;;;;;;;;;-1:-1:-1;51483:254:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3133:32:1;;;3115:51;;3197:2;3182:18;;3175:34;;;;3088:18;51483:254:0;2941:274:1;52931:667:0;;;;;;;;;;-1:-1:-1;52931:667:0;;;;;:::i;:::-;;:::i;43131:256::-;;;;;;;;;;-1:-1:-1;43131:256:0;;;;;:::i;:::-;;:::i;51745:234::-;;;;;;;;;;-1:-1:-1;51745:234:0;;;;;:::i;:::-;;:::i;49472:36::-;;;;;;;;;;-1:-1:-1;49472:36:0;;;;-1:-1:-1;;;;;49472:36:0;;;49309:33;;;;;;;;;;;;;;;;30357:185;;;;;;;;;;-1:-1:-1;30357:185:0;;;;;:::i;:::-;;:::i;54054:113::-;;;;;;;;;;-1:-1:-1;54054:113:0;;;;;:::i;:::-;;:::i;43653:233::-;;;;;;;;;;-1:-1:-1;43653:233:0;;;;;:::i;:::-;;:::i;27331:239::-;;;;;;;;;;-1:-1:-1;27331:239:0;;;;;:::i;:::-;;:::i;49278:24::-;;;;;;;;;;;;;;;;49641:50;;;;;;;;;;-1:-1:-1;49641:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49590:44;;;;;;;;;;-1:-1:-1;49590:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;27061:208;;;;;;;;;;-1:-1:-1;27061:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;51987:163::-;;;;;;;;;;-1:-1:-1;51987:163:0;;;;;:::i;:::-;;:::i;49245:26::-;;;;;;;;;;;;;:::i;49548:35::-;;;;;;;;;;-1:-1:-1;49548:35:0;;;;-1:-1:-1;;;49548:35:0;;;;;;49381:32;;;;;;;;;;;;;;;;5544:87;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;27806:104;;;;;;;;;;;;;:::i;49420:45::-;;;;;;;;;;-1:-1:-1;49420:45:0;;;;-1:-1:-1;;;;;49420:45:0;;;49515:26;;;;;;;;;;-1:-1:-1;49515:26:0;;;;-1:-1:-1;;;49515:26:0;;;;;;52158:765;;;;;;:::i;:::-;;:::i;29490:155::-;;;;;;;;;;-1:-1:-1;29490:155:0;;;;;:::i;:::-;;:::i;53606:273::-;;;;;;;;;;-1:-1:-1;53606:273:0;;;;;:::i;:::-;;:::i;30613:328::-;;;;;;;;;;-1:-1:-1;30613:328:0;;;;;:::i;:::-;;:::i;54356:207::-;;;;;;;;;;-1:-1:-1;54356:207:0;;;;;:::i;:::-;;:::i;29716:164::-;;;;;;;;;;-1:-1:-1;29716:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29837:25:0;;;29813:4;29837:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29716:164;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;50811:664::-;;;;;;;;;;-1:-1:-1;50811:664:0;;;;;:::i;:::-;;:::i;54923:302::-;55079:4;-1:-1:-1;;;;;;55108:36:0;;-1:-1:-1;;;55108:36:0;:109;;55181:36;55205:11;55181:23;:36::i;:::-;55108:109;;;55161:4;55108:109;55101:116;54923:302;-1:-1:-1;;54923:302:0:o;27637:100::-;27691:13;27724:5;27717:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27637:100;:::o;29197:221::-;29273:7;32540:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32540:16:0;29293:73;;;;-1:-1:-1;;;29293:73:0;;8344:2:1;29293:73:0;;;8326:21:1;8383:2;8363:18;;;8356:30;8422:34;8402:18;;;8395:62;-1:-1:-1;;;8473:18:1;;;8466:42;8525:19;;29293:73:0;;;;;;;;;-1:-1:-1;29386:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29386:24:0;;29197:221::o;28720:411::-;28801:13;28817:23;28832:7;28817:14;:23::i;:::-;28801:39;;28865:5;-1:-1:-1;;;;;28859:11:0;:2;-1:-1:-1;;;;;28859:11:0;;28851:57;;;;-1:-1:-1;;;28851:57:0;;8757:2:1;28851:57:0;;;8739:21:1;8796:2;8776:18;;;8769:30;8835:34;8815:18;;;8808:62;-1:-1:-1;;;8886:18:1;;;8879:31;8927:19;;28851:57:0;8555:397:1;28851:57:0;4348:10;-1:-1:-1;;;;;28943:21:0;;;;:62;;-1:-1:-1;28968:37:0;28985:5;4348:10;29716:164;:::i;28968:37::-;28921:168;;;;-1:-1:-1;;;28921:168:0;;9159:2:1;28921:168:0;;;9141:21:1;9198:2;9178:18;;;9171:30;9237:34;9217:18;;;9210:62;9308:26;9288:18;;;9281:54;9352:19;;28921:168:0;8957:420:1;28921:168:0;29102:21;29111:2;29115:7;29102:8;:21::i;:::-;28790:341;28720:411;;:::o;53887:159::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54007:22:0;;::::1;;::::0;;;:9:::1;:22;::::0;;;;:31;53887:159::o;29947:339::-;30142:41;4348:10;30175:7;30142:18;:41::i;:::-;30134:103;;;;-1:-1:-1;;;30134:103:0;;;;;;;:::i;:::-;30250:28;30260:4;30266:2;30270:7;30250:9;:28::i;51483:254::-;51564:16;51582:21;51616:15;51667:3;51647:17;;51634:10;:30;;;;:::i;:::-;:36;;;;:::i;:::-;51689:30;;-1:-1:-1;;;;;51689:30:0;;51616:54;;-1:-1:-1;51483:254:0;-1:-1:-1;;;;51483:254:0:o;52931:667::-;50570:10;50559:7;5617:6;;-1:-1:-1;;;;;5617:6:0;;5544:87;50559:7;-1:-1:-1;;;;;50559:21:0;;:64;;;-1:-1:-1;50601:14:0;;-1:-1:-1;;;50601:14:0;;;;:22;;50619:4;50601:22;50559:64;:144;;;-1:-1:-1;50645:23:0;;-1:-1:-1;;;50645:23:0;;;;:57;;;;-1:-1:-1;50691:10:0;50672:30;;;;:18;:30;;;;;;;;50645:57;50537:246;;;;-1:-1:-1;;;50537:246:0;;;;;;;:::i;:::-;53026:10:::1;53040:1;53016:21:::0;;;:9:::1;:21;::::0;;;;;53008:69:::1;;;::::0;-1:-1:-1;;;53008:69:0;;11346:2:1;53008:69:0::1;::::0;::::1;11328:21:1::0;11385:2;11365:18;;;11358:30;11424:33;11404:18;;;11397:61;11475:18;;53008:69:0::1;11144:355:1::0;53008:69:0::1;53147:10;;53137:6;53110:24;:14;964::::0;;872:114;53110:24:::1;:33;;;;:::i;:::-;:47;;53088:141;;;;-1:-1:-1::0;;;53088:141:0::1;;;;;;;:::i;:::-;53247:9;53242:349;53266:6;53262:1;:10;53242:349;;;53308:10;53322:1;53298:21:::0;;;:9:::1;:21;::::0;;;;;:25;53294:286:::1;;53430:47;53436:10;53448:24;:14;964::::0;;872:114;53448:24:::1;:28;::::0;53475:1:::1;53448:28;:::i;:::-;53430:5;:47::i;:::-;53496:26;:14;1083:19:::0;;1101:1;1083:19;;;994:127;53496:26:::1;53551:10;53541:21;::::0;;;:9:::1;:21;::::0;;;;:23;;;::::1;::::0;::::1;:::i;:::-;;;;;;53294:286;53274:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53242:349;;;;52931:667:::0;:::o;43131:256::-;43228:7;43264:23;43281:5;43264:16;:23::i;:::-;43256:5;:31;43248:87;;;;-1:-1:-1;;;43248:87:0;;12533:2:1;43248:87:0;;;12515:21:1;12572:2;12552:18;;;12545:30;12611:34;12591:18;;;12584:62;-1:-1:-1;;;12662:18:1;;;12655:41;12713:19;;43248:87:0;12331:407:1;43248:87:0;-1:-1:-1;;;;;;43353:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43131:256::o;51745:234::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;51878:14:::1;:32:::0;;-1:-1:-1;;;;51921:50:0;-1:-1:-1;;;51878:32:0;::::1;;::::0;;;::::1;-1:-1:-1::0;;;;51921:50:0;;;;;-1:-1:-1;;;51921:50:0;::::1;;::::0;;;::::1;;::::0;;51745:234::o;30357:185::-;30495:39;30512:4;30518:2;30522:7;30495:39;;;;;;;;;;;;:16;:39::i;54054:113::-;54128:21;;54103:56;;54116:10;;-1:-1:-1;;;;;54128:21:0;54151:7;54103:12;:56::i;:::-;54054:113;:::o;43653:233::-;43728:7;43764:30;43551:10;:17;;43463:113;43764:30;43756:5;:38;43748:95;;;;-1:-1:-1;;;43748:95:0;;12945:2:1;43748:95:0;;;12927:21:1;12984:2;12964:18;;;12957:30;13023:34;13003:18;;;12996:62;-1:-1:-1;;;13074:18:1;;;13067:42;13126:19;;43748:95:0;12743:408:1;43748:95:0;43861:10;43872:5;43861:17;;;;;;;;:::i;:::-;;;;;;;;;43854:24;;43653:233;;;:::o;27331:239::-;27403:7;27439:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27439:16:0;;27466:73;;;;-1:-1:-1;;;27466:73:0;;13490:2:1;27466:73:0;;;13472:21:1;13529:2;13509:18;;;13502:30;13568:34;13548:18;;;13541:62;-1:-1:-1;;;13619:18:1;;;13612:39;13668:19;;27466:73:0;13288:405:1;27061:208:0;27133:7;-1:-1:-1;;;;;27161:19:0;;27153:74;;;;-1:-1:-1;;;27153:74:0;;13900:2:1;27153:74:0;;;13882:21:1;13939:2;13919:18;;;13912:30;13978:34;13958:18;;;13951:62;-1:-1:-1;;;14029:18:1;;;14022:40;14079:19;;27153:74:0;13698:406:1;27153:74:0;-1:-1:-1;;;;;;27245:16:0;;;;;:9;:16;;;;;;;27061:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;51987:163::-;-1:-1:-1;;;;;52078:31:0;;52051:7;52078:31;;;:18;:31;;;;;;;;:64;;52133:9;;52078:64;;;-1:-1:-1;;52112:18:0;;;51987:163::o;49245:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27806:104::-;27862:13;27895:7;27888:14;;;;;:::i;52158:765::-;50570:10;50559:7;5617:6;;-1:-1:-1;;;;;5617:6:0;;5544:87;50559:7;-1:-1:-1;;;;;50559:21:0;;:64;;;-1:-1:-1;50601:14:0;;-1:-1:-1;;;50601:14:0;;;;:22;;50619:4;50601:22;50559:64;:144;;;-1:-1:-1;50645:23:0;;-1:-1:-1;;;50645:23:0;;;;:57;;;;-1:-1:-1;50691:10:0;50672:30;;;;:18;:30;;;;;;;;50645:57;50537:246;;;;-1:-1:-1;;;50537:246:0;;;;;;;:::i;:::-;52295:6:::1;52268:24;52281:10;52268:12;:24::i;:::-;:33;;;;:::i;:::-;52255:9;:46;:88;;;-1:-1:-1::0;52333:10:0::1;52322:7;5617:6:::0;;-1:-1:-1;;;;;5617:6:0;;5544:87;52322:7:::1;-1:-1:-1::0;;;;;52322:21:0::1;;52255:88;52233:159;;;::::0;-1:-1:-1;;;52233:159:0;;14311:2:1;52233:159:0::1;::::0;::::1;14293:21:1::0;14350:2;14330:18;;;14323:30;-1:-1:-1;;;14369:18:1;;;14362:51;14430:18;;52233:159:0::1;14109:345:1::0;52233:159:0::1;52462:10;;52452:6;52425:24;:14;964::::0;;872:114;52425:24:::1;:33;;;;:::i;:::-;:47;;52403:141;;;;-1:-1:-1::0;;;52403:141:0::1;;;;;;;:::i;:::-;52562:9;52557:234;52581:6;52577:1;:10;52557:234;;;52691:47;52697:10;52709:24;:14;964::::0;;872:114;52691:47:::1;52753:26;:14;1083:19:::0;;1101:1;1083:19;;;994:127;52753:26:::1;52589:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52557:234;;;-1:-1:-1::0;52818:10:0::1;52807:7;5617:6:::0;;-1:-1:-1;;;;;5617:6:0;;5544:87;52807:7:::1;-1:-1:-1::0;;;;;52807:21:0::1;;52803:113;;52853:30;::::0;52845:59:::1;::::0;-1:-1:-1;;;;;52853:30:0;;::::1;::::0;52894:9:::1;52845:59:::0;::::1;;;::::0;52853:30:::1;52845:59:::0;52853:30;52845:59;52894:9;52853:30;52845:59;::::1;;;;;;;;;;;;;::::0;::::1;;;;29490:155:::0;29585:52;4348:10;29618:8;29628;29585:18;:52::i;53606:273::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;53747:9:::1;53742:130;53766:13;:20;53762:1;:24;53742:130;;;53847:13;53808:18;:36;53827:13;53841:1;53827:16;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;53808:36:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;53808:36:0;:52;;-1:-1:-1;;53808:52:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53788:3;::::1;::::0;::::1;:::i;:::-;;;;53742:130;;30613:328:::0;30788:41;4348:10;30821:7;30788:18;:41::i;:::-;30780:103;;;;-1:-1:-1;;;30780:103:0;;;;;;;:::i;:::-;30894:39;30908:4;30914:2;30918:7;30927:5;30894:13;:39::i;:::-;30613:328;;;;:::o;54356:207::-;54483:13;54521:34;54547:7;54521:25;:34::i;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;14661:2:1;6534:73:0::1;::::0;::::1;14643:21:1::0;14700:2;14680:18;;;14673:30;14739:34;14719:18;;;14712:62;-1:-1:-1;;;14790:18:1;;;14783:36;14836:19;;6534:73:0::1;14459:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;50811:664::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;51136:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;51175:9:0::1;:22:::0;;;;51208:10:::1;:27:::0;;;;51246:30:::1;:64:::0;;-1:-1:-1;;;;;51246:64:0;;::::1;-1:-1:-1::0;;;;;;51246:64:0;;::::1;;::::0;;;51321:21:::1;:46:::0;;;;;::::1;::::0;::::1;;::::0;;51378:18:::1;:40:::0;51429:17:::1;:38:::0;-1:-1:-1;50811:664:0:o;42823:224::-;42925:4;-1:-1:-1;;;;;;42949:50:0;;-1:-1:-1;;;42949:50:0;;:90;;;43003:36;43027:11;43003:23;:36::i;36597:174::-;36672:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36672:29:0;-1:-1:-1;;;;;36672:29:0;;;;;;;;:24;;36726:23;36672:24;36726:14;:23::i;:::-;-1:-1:-1;;;;;36717:46:0;;;;;;;;;;;36597:174;;:::o;32745:348::-;32838:4;32540:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32540:16:0;32855:73;;;;-1:-1:-1;;;32855:73:0;;15068:2:1;32855:73:0;;;15050:21:1;15107:2;15087:18;;;15080:30;15146:34;15126:18;;;15119:62;-1:-1:-1;;;15197:18:1;;;15190:42;15249:19;;32855:73:0;14866:408:1;32855:73:0;32939:13;32955:23;32970:7;32955:14;:23::i;:::-;32939:39;;33008:5;-1:-1:-1;;;;;32997:16:0;:7;-1:-1:-1;;;;;32997:16:0;;:52;;;-1:-1:-1;;;;;;29837:25:0;;;29813:4;29837:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33017:32;32997:87;;;;33077:7;-1:-1:-1;;;;;33053:31:0;:20;33065:7;33053:11;:20::i;:::-;-1:-1:-1;;;;;33053:31:0;;32997:87;32989:96;32745:348;-1:-1:-1;;;;32745:348:0:o;35854:625::-;36013:4;-1:-1:-1;;;;;35986:31:0;:23;36001:7;35986:14;:23::i;:::-;-1:-1:-1;;;;;35986:31:0;;35978:81;;;;-1:-1:-1;;;35978:81:0;;15481:2:1;35978:81:0;;;15463:21:1;15520:2;15500:18;;;15493:30;15559:34;15539:18;;;15532:62;-1:-1:-1;;;15610:18:1;;;15603:35;15655:19;;35978:81:0;15279:401:1;35978:81:0;-1:-1:-1;;;;;36078:16:0;;36070:65;;;;-1:-1:-1;;;36070:65:0;;15887:2:1;36070:65:0;;;15869:21:1;15926:2;15906:18;;;15899:30;15965:34;15945:18;;;15938:62;-1:-1:-1;;;16016:18:1;;;16009:34;16060:19;;36070:65:0;15685:400:1;36070:65:0;36148:39;36169:4;36175:2;36179:7;36148:20;:39::i;:::-;36252:29;36269:1;36273:7;36252:8;:29::i;:::-;-1:-1:-1;;;;;36294:15:0;;;;;;:9;:15;;;;;:20;;36313:1;;36294:15;:20;;36313:1;;36294:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36325:13:0;;;;;;:9;:13;;;;;:18;;36342:1;;36325:13;:18;;36342:1;;36325:18;:::i;:::-;;;;-1:-1:-1;;36354:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36354:21:0;-1:-1:-1;;;;;36354:21:0;;;;;;;;;36393:27;;36354:16;;36393:27;;;;;;;28790:341;28720:411;;:::o;34429:439::-;-1:-1:-1;;;;;34509:16:0;;34501:61;;;;-1:-1:-1;;;34501:61:0;;16422:2:1;34501:61:0;;;16404:21:1;;;16441:18;;;16434:30;16500:34;16480:18;;;16473:62;16552:18;;34501:61:0;16220:356:1;34501:61:0;32516:4;32540:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32540:16:0;:30;34573:58;;;;-1:-1:-1;;;34573:58:0;;16783:2:1;34573:58:0;;;16765:21:1;16822:2;16802:18;;;16795:30;16861;16841:18;;;16834:58;16909:18;;34573:58:0;16581:352:1;34573:58:0;34644:45;34673:1;34677:2;34681:7;34644:20;:45::i;:::-;-1:-1:-1;;;;;34702:13:0;;;;;;:9;:13;;;;;:18;;34719:1;;34702:13;:18;;34719:1;;34702:18;:::i;:::-;;;;-1:-1:-1;;34731:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34731:21:0;-1:-1:-1;;;;;34731:21:0;;;;;;;;34770:33;;34731:16;;;34770:33;;34731:16;;34770:33;53242:349:::1;52931:667:::0;:::o;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;36913:315::-;37068:8;-1:-1:-1;;;;;37059:17:0;:5;-1:-1:-1;;;;;37059:17:0;;37051:55;;;;-1:-1:-1;;;37051:55:0;;17140:2:1;37051:55:0;;;17122:21:1;17179:2;17159:18;;;17152:30;17218:27;17198:18;;;17191:55;17263:18;;37051:55:0;16938:349:1;37051:55:0;-1:-1:-1;;;;;37117:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37117:46:0;;;;;;;;;;37179:41;;722::1;;;37179::0;;695:18:1;37179:41:0;;;;;;;36913:315;;;:::o;31823:::-;31980:28;31990:4;31996:2;32000:7;31980:9;:28::i;:::-;32027:48;32050:4;32056:2;32060:7;32069:5;32027:22;:48::i;:::-;32019:111;;;;-1:-1:-1;;;32019:111:0;;;;;;;:::i;40318:679::-;32516:4;32540:16;;;:7;:16;;;;;;40391:13;;-1:-1:-1;;;;;32540:16:0;40417:78;;;;-1:-1:-1;;;40417:78:0;;17913:2:1;40417:78:0;;;17895:21:1;17952:2;17932:18;;;17925:30;17991:34;17971:18;;;17964:62;-1:-1:-1;;;18042:18:1;;;18035:47;18099:19;;40417:78:0;17711:413:1;40417:78:0;40508:23;40534:19;;;:10;:19;;;;;40508:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40564:18;40585:10;:8;:10::i;:::-;40564:31;;40677:4;40671:18;40693:1;40671:23;40667:72;;-1:-1:-1;40718:9:0;40318:679;-1:-1:-1;;40318:679:0:o;40667:72::-;40843:23;;:27;40839:108;;40918:4;40924:9;40901:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40887:48;;;;40318:679;;;:::o;40839:108::-;40966:23;40981:7;40966:14;:23::i;26692:305::-;26794:4;-1:-1:-1;;;;;;26831:40:0;;-1:-1:-1;;;26831:40:0;;:105;;-1:-1:-1;;;;;;;26888:48:0;;-1:-1:-1;;;26888:48:0;26831:105;:158;;;-1:-1:-1;;;;;;;;;;18460:40:0;;;26953:36;18351:157;54571:223;54741:45;54768:4;54774:2;54778:7;54741:26;:45::i;37793:799::-;37948:4;-1:-1:-1;;;;;37969:13:0;;8540:19;:23;37965:620;;38005:72;;-1:-1:-1;;;38005:72:0;;-1:-1:-1;;;;;38005:36:0;;;;;:72;;4348:10;;38056:4;;38062:7;;38071:5;;38005:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38005:72:0;;;;;;;;-1:-1:-1;;38005:72:0;;;;;;;;;;;;:::i;:::-;;;38001:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38247:6;:13;38264:1;38247:18;38243:272;;38290:60;;-1:-1:-1;;;38290:60:0;;;;;;;:::i;38243:272::-;38465:6;38459:13;38450:6;38446:2;38442:15;38435:38;38001:529;-1:-1:-1;;;;;;38128:51:0;-1:-1:-1;;;38128:51:0;;-1:-1:-1;38121:58:0;;37965:620;-1:-1:-1;38569:4:0;37793:799;;;;;;:::o;54802:113::-;54862:13;54895:12;54888:19;;;;;:::i;27981:334::-;32516:4;32540:16;;;:7;:16;;;;;;28054:13;;-1:-1:-1;;;;;32540:16:0;28080:76;;;;-1:-1:-1;;;28080:76:0;;19554:2:1;28080:76:0;;;19536:21:1;19593:2;19573:18;;;19566:30;19632:34;19612:18;;;19605:62;-1:-1:-1;;;19683:18:1;;;19676:45;19738:19;;28080:76:0;19352:411:1;28080:76:0;28169:21;28193:10;:8;:10::i;:::-;28169:34;;28245:1;28227:7;28221:21;:25;:86;;;;;;;;;;;;;;;;;28273:7;28282:18;:7;:16;:18::i;:::-;28256:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28221:86;28214:93;27981:334;-1:-1:-1;;;27981:334:0:o;44499:589::-;-1:-1:-1;;;;;44705:18:0;;44701:187;;44740:40;44772:7;45915:10;:17;;45888:24;;;;:15;:24;;;;;:44;;;45943:24;;;;;;;;;;;;45811:164;44740:40;44701:187;;;44810:2;-1:-1:-1;;;;;44802:10:0;:4;-1:-1:-1;;;;;44802:10:0;;44798:90;;44829:47;44862:4;44868:7;44829:32;:47::i;:::-;-1:-1:-1;;;;;44902:16:0;;44898:183;;44935:45;44972:7;44935:36;:45::i;44898:183::-;45008:4;-1:-1:-1;;;;;45002:10:0;:2;-1:-1:-1;;;;;45002:10:0;;44998:83;;45029:40;45057:2;45061:7;45029:27;:40::i;1830:723::-;1886:13;2107:5;2116:1;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;46602:988;46868:22;46918:1;46893:22;46910:4;46893:16;:22::i;:::-;:26;;;;:::i;:::-;46930:18;46951:26;;;:17;:26;;;;;;46868:51;;-1:-1:-1;47084:28:0;;;47080:328;;-1:-1:-1;;;;;47151:18:0;;47129:19;47151:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47202:30;;;;;;:44;;;47319:30;;:17;:30;;;;;:43;;;47080:328;-1:-1:-1;47504:26:0;;;;:17;:26;;;;;;;;47497:33;;;-1:-1:-1;;;;;47548:18:0;;;;;:12;:18;;;;;:34;;;;;;;47541:41;46602:988::o;47885:1079::-;48163:10;:17;48138:22;;48163:21;;48183:1;;48163:21;:::i;:::-;48195:18;48216:24;;;:15;:24;;;;;;48589:10;:26;;48138:46;;-1:-1:-1;48216:24:0;;48138:46;;48589:26;;;;;;:::i;:::-;;;;;;;;;48567:48;;48653:11;48628:10;48639;48628:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48733:28;;;:15;:28;;;;;;;:41;;;48905:24;;;;;48898:31;48940:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47956:1008;;;47885:1079;:::o;45389:221::-;45474:14;45491:20;45508:2;45491:16;:20::i;:::-;-1:-1:-1;;;;;45522:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45567:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45389:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:248::-;2756:6;2764;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;-1:-1:-1;;2856:23:1;;;2926:2;2911:18;;;2898:32;;-1:-1:-1;2688:248:1:o;3220:160::-;3285:20;;3341:13;;3334:21;3324:32;;3314:60;;3370:1;3367;3360:12;3385:248;3447:6;3455;3508:2;3496:9;3487:7;3483:23;3479:32;3476:52;;;3524:1;3521;3514:12;3476:52;3547:26;3563:9;3547:26;:::i;:::-;3537:36;;3592:35;3623:2;3612:9;3608:18;3592:35;:::i;:::-;3582:45;;3385:248;;;;;:::o;3638:186::-;3697:6;3750:2;3738:9;3729:7;3725:23;3721:32;3718:52;;;3766:1;3763;3756:12;3718:52;3789:29;3808:9;3789:29;:::i;3829:254::-;3894:6;3902;3955:2;3943:9;3934:7;3930:23;3926:32;3923:52;;;3971:1;3968;3961:12;3923:52;3994:29;4013:9;3994:29;:::i;4088:127::-;4149:10;4144:3;4140:20;4137:1;4130:31;4180:4;4177:1;4170:15;4204:4;4201:1;4194:15;4220:275;4291:2;4285:9;4356:2;4337:13;;-1:-1:-1;;4333:27:1;4321:40;;4391:18;4376:34;;4412:22;;;4373:62;4370:88;;;4438:18;;:::i;:::-;4474:2;4467:22;4220:275;;-1:-1:-1;4220:275:1:o;4500:1022::-;4590:6;4598;4651:2;4639:9;4630:7;4626:23;4622:32;4619:52;;;4667:1;4664;4657:12;4619:52;4707:9;4694:23;4736:18;4777:2;4769:6;4766:14;4763:34;;;4793:1;4790;4783:12;4763:34;4831:6;4820:9;4816:22;4806:32;;4876:7;4869:4;4865:2;4861:13;4857:27;4847:55;;4898:1;4895;4888:12;4847:55;4934:2;4921:16;4956:4;4979:2;4975;4972:10;4969:36;;;4985:18;;:::i;:::-;5031:2;5028:1;5024:10;5014:20;;5054:28;5078:2;5074;5070:11;5054:28;:::i;:::-;5116:15;;;5186:11;;;5182:20;;;5147:12;;;;5214:19;;;5211:39;;;5246:1;5243;5236:12;5211:39;5270:11;;;;5290:148;5306:6;5301:3;5298:15;5290:148;;;5372:23;5391:3;5372:23;:::i;:::-;5360:36;;5323:12;;;;5416;;;;5290:148;;;5457:5;-1:-1:-1;5481:35:1;;-1:-1:-1;5497:18:1;;;5481:35;:::i;:::-;5471:45;;;;;;4500:1022;;;;;:::o;5527:406::-;5591:5;5625:18;5617:6;5614:30;5611:56;;;5647:18;;:::i;:::-;5685:57;5730:2;5709:15;;-1:-1:-1;;5705:29:1;5736:4;5701:40;5685:57;:::i;:::-;5676:66;;5765:6;5758:5;5751:21;5805:3;5796:6;5791:3;5787:16;5784:25;5781:45;;;5822:1;5819;5812:12;5781:45;5871:6;5866:3;5859:4;5852:5;5848:16;5835:43;5925:1;5918:4;5909:6;5902:5;5898:18;5894:29;5887:40;5527:406;;;;;:::o;5938:666::-;6033:6;6041;6049;6057;6110:3;6098:9;6089:7;6085:23;6081:33;6078:53;;;6127:1;6124;6117:12;6078:53;6150:29;6169:9;6150:29;:::i;:::-;6140:39;;6198:38;6232:2;6221:9;6217:18;6198:38;:::i;:::-;6188:48;;6283:2;6272:9;6268:18;6255:32;6245:42;;6338:2;6327:9;6323:18;6310:32;6365:18;6357:6;6354:30;6351:50;;;6397:1;6394;6387:12;6351:50;6420:22;;6473:4;6465:13;;6461:27;-1:-1:-1;6451:55:1;;6502:1;6499;6492:12;6451:55;6525:73;6590:7;6585:2;6572:16;6567:2;6563;6559:11;6525:73;:::i;:::-;6515:83;;;5938:666;;;;;;;:::o;6609:260::-;6677:6;6685;6738:2;6726:9;6717:7;6713:23;6709:32;6706:52;;;6754:1;6751;6744:12;6706:52;6777:29;6796:9;6777:29;:::i;:::-;6767:39;;6825:38;6859:2;6848:9;6844:18;6825:38;:::i;6874:878::-;6997:6;7005;7013;7021;7029;7037;7045;7098:3;7086:9;7077:7;7073:23;7069:33;7066:53;;;7115:1;7112;7105:12;7066:53;7155:9;7142:23;7188:18;7180:6;7177:30;7174:50;;;7220:1;7217;7210:12;7174:50;7243:22;;7296:4;7288:13;;7284:27;-1:-1:-1;7274:55:1;;7325:1;7322;7315:12;7274:55;7348:75;7415:7;7410:2;7397:16;7390:4;7386:2;7382:13;7348:75;:::i;:::-;7338:85;;;7470:4;7459:9;7455:20;7442:34;7432:44;;7523:2;7512:9;7508:18;7495:32;7485:42;;7546:38;7580:2;7569:9;7565:18;7546:38;:::i;:::-;7536:48;;7603:39;7637:3;7626:9;7622:19;7603:39;:::i;:::-;7593:49;;7689:3;7678:9;7674:19;7661:33;7651:43;;7741:3;7730:9;7726:19;7713:33;7703:43;;6874:878;;;;;;;;;;:::o;7757:380::-;7836:1;7832:12;;;;7879;;;7900:61;;7954:4;7946:6;7942:17;7932:27;;7900:61;8007:2;7999:6;7996:14;7976:18;7973:38;7970:161;;8053:10;8048:3;8044:20;8041:1;8034:31;8088:4;8085:1;8078:15;8116:4;8113:1;8106:15;7970:161;;7757:380;;;:::o;9382:356::-;9584:2;9566:21;;;9603:18;;;9596:30;9662:34;9657:2;9642:18;;9635:62;9729:2;9714:18;;9382:356::o;9743:413::-;9945:2;9927:21;;;9984:2;9964:18;;;9957:30;10023:34;10018:2;10003:18;;9996:62;-1:-1:-1;;;10089:2:1;10074:18;;10067:47;10146:3;10131:19;;9743:413::o;10161:127::-;10222:10;10217:3;10213:20;10210:1;10203:31;10253:4;10250:1;10243:15;10277:4;10274:1;10267:15;10293:168;10333:7;10399:1;10395;10391:6;10387:14;10384:1;10381:21;10376:1;10369:9;10362:17;10358:45;10355:71;;;10406:18;;:::i;:::-;-1:-1:-1;10446:9:1;;10293:168::o;10466:127::-;10527:10;10522:3;10518:20;10515:1;10508:31;10558:4;10555:1;10548:15;10582:4;10579:1;10572:15;10598:120;10638:1;10664;10654:35;;10669:18;;:::i;:::-;-1:-1:-1;10703:9:1;;10598:120::o;10723:416::-;10925:2;10907:21;;;10964:2;10944:18;;;10937:30;11003:34;10998:2;10983:18;;10976:62;-1:-1:-1;;;11069:2:1;11054:18;;11047:50;11129:3;11114:19;;10723:416::o;11504:128::-;11544:3;11575:1;11571:6;11568:1;11565:13;11562:39;;;11581:18;;:::i;:::-;-1:-1:-1;11617:9:1;;11504:128::o;11637:408::-;11839:2;11821:21;;;11878:2;11858:18;;;11851:30;11917:34;11912:2;11897:18;;11890:62;-1:-1:-1;;;11983:2:1;11968:18;;11961:42;12035:3;12020:19;;11637:408::o;12050:136::-;12089:3;12117:5;12107:39;;12126:18;;:::i;:::-;-1:-1:-1;;;12162:18:1;;12050:136::o;12191:135::-;12230:3;12251:17;;;12248:43;;12271:18;;:::i;:::-;-1:-1:-1;12318:1:1;12307:13;;12191:135::o;13156:127::-;13217:10;13212:3;13208:20;13205:1;13198:31;13248:4;13245:1;13238:15;13272:4;13269:1;13262:15;16090:125;16130:4;16158:1;16155;16152:8;16149:34;;;16163:18;;:::i;:::-;-1:-1:-1;16200:9:1;;16090:125::o;17292:414::-;17494:2;17476:21;;;17533:2;17513:18;;;17506:30;17572:34;17567:2;17552:18;;17545:62;-1:-1:-1;;;17638:2:1;17623:18;;17616:48;17696:3;17681:19;;17292:414::o;18129:470::-;18308:3;18346:6;18340:13;18362:53;18408:6;18403:3;18396:4;18388:6;18384:17;18362:53;:::i;:::-;18478:13;;18437:16;;;;18500:57;18478:13;18437:16;18534:4;18522:17;;18500:57;:::i;:::-;18573:20;;18129:470;-1:-1:-1;;;;18129:470:1:o;18604:489::-;-1:-1:-1;;;;;18873:15:1;;;18855:34;;18925:15;;18920:2;18905:18;;18898:43;18972:2;18957:18;;18950:34;;;19020:3;19015:2;19000:18;;18993:31;;;18798:4;;19041:46;;19067:19;;19059:6;19041:46;:::i;:::-;19033:54;18604:489;-1:-1:-1;;;;;;18604:489:1:o;19098:249::-;19167:6;19220:2;19208:9;19199:7;19195:23;19191:32;19188:52;;;19236:1;19233;19226:12;19188:52;19268:9;19262:16;19287:30;19311:5;19287:30;:::i;19768:112::-;19800:1;19826;19816:35;;19831:18;;:::i;:::-;-1:-1:-1;19865:9:1;;19768:112::o;19885:127::-;19946:10;19941:3;19937:20;19934:1;19927:31;19977:4;19974:1;19967:15;20001:4;19998:1;19991:15
Swarm Source
ipfs://41fc7da1c8f776c99abeae92daadf54e28069a90374bbddda4828e42b1906cec
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.