ERC-721
Overview
Max Total Supply
9,931 BYDC
Holders
2,759
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 BYDCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Boredy00tsdogeclub
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-06 */ /** ____ __ __ __ __ ____ ____ ___ __ /\ _`\ /\ \ /'__`\ /'__`\/\ \__ /\ _`\ /\ _`\ /\_ \ /\ \ \ \ \L\ \ ___ _ __ __ \_\ \ __ __/\ \/\ \/\ \/\ \ \ ,_\ ____ \ \ \/\ \ ___ __ __ \ \ \/\_\//\ \ __ __\ \ \____ \ \ _ <' / __`\/\`'__\/'__`\ /'_` \ /\ \/\ \ \ \ \ \ \ \ \ \ \ \/ /',__\ \ \ \ \ \ / __`\ /'_ `\ /'__`\ \ \ \/_/_\ \ \ /\ \/\ \\ \ '__`\ \ \ \L\ \/\ \L\ \ \ \//\ __//\ \L\ \ \ \ \_\ \ \ \_\ \ \ \_\ \ \ \_/\__, `\ \ \ \_\ \/\ \L\ \/\ \L\ \/\ __/ \ \ \L\ \\_\ \_\ \ \_\ \\ \ \L\ \ \ \____/\ \____/\ \_\\ \____\ \___,_\ \/`____ \ \____/\ \____/\ \__\/\____/ \ \____/\ \____/\ \____ \ \____\ \ \____//\____\\ \____/ \ \_,__/ \/___/ \/___/ \/_/ \/____/\/__,_ / `/___/> \/___/ \/___/ \/__/\/___/ \/___/ \/___/ \/___L\ \/____/ \/___/ \/____/ \/___/ \/___/ /\___/ /\____/ \/__/ \_/__/ */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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 v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/Boredy00tsdogeclub.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } pragma solidity ^0.8.13; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } pragma solidity ^0.8.13; interface IMain { function balanceOf( address ) external view returns (uint); } pragma solidity ^0.8.0; contract Boredy00tsdogeclub is ERC721A,DefaultOperatorFilterer, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI = "ipfs://bafybeihufu27pso3b2xmu6ntvln4amkfcph3y727wpxeplalxjro723jji/"; uint256 public maxSupply = 10000; uint256 public MAX_MINTS_PER_TX = 20; uint256 public PUBLIC_SALE_PRICE = 0.0035 ether; uint256 public NUM_FREE_MINTS = 2000; uint256 public MAX_FREE_PER_WALLET = 2; uint256 public freeNFTAlreadyMinted = 0; bool public isPublicSaleActive = true; constructor( ) ERC721A("Bored Y00ts Doge Club", "BYDC") { } function mint(uint256 numberOfTokens) external payable { require(isPublicSaleActive, "Public sale is not open"); require(totalSupply() + numberOfTokens < maxSupply + 1, "No more"); if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS){ require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); } else { if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) { require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); require( numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded" ); } else { require( numberOfTokens <= MAX_FREE_PER_WALLET, "Max mints per transaction exceeded" ); freeNFTAlreadyMinted += numberOfTokens; } } _safeMint(msg.sender, numberOfTokens); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function treasuryMint(uint quantity) public onlyOwner { require( quantity > 0, "Invalid mint amount" ); require( totalSupply() + quantity <= maxSupply, "Maximum supply exceeded" ); _safeMint(msg.sender, quantity); } function withdraw() public onlyOwner nonReentrant { Address.sendValue(payable(msg.sender), address(this).balance); } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json")); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setNumFreeMints(uint256 _numfreemints) external onlyOwner { NUM_FREE_MINTS = _numfreemints; } function setSalePrice(uint256 _price) external onlyOwner { PUBLIC_SALE_PRICE = _price; } function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner { MAX_MINTS_PER_TX = _limit; } function setFreeLimitPerWallet(uint256 _limit) external onlyOwner { MAX_FREE_PER_WALLET = _limit; } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61010060405260436080818152906200278a60a03980516200002a91600a91602090910190620002b4565b50612710600b556014600c55660c6f3b40b6c000600d556107d0600e556002600f5560006010556011805460ff191660011790553480156200006b57600080fd5b50604080518082018252601581527f426f72656420593030747320446f676520436c756200000000000000000000006020808301918252835180850190945260048452634259444360e01b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb693600193929091620000e691600291620002b4565b508051620000fc906003906020840190620002b4565b50600160005550506daaeb6d7670e522a718067333cd4e3b15620002495780156200019757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017857600080fd5b505af11580156200018d573d6000803e3d6000fd5b5050505062000249565b6001600160a01b03821615620001e85760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200015d565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200022f57600080fd5b505af115801562000244573d6000803e3d6000fd5b505050505b506200025790503362000262565b600160095562000396565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002c2906200035a565b90600052602060002090601f016020900481019282620002e6576000855562000331565b82601f106200030157805160ff191683800117855562000331565b8280016001018555821562000331579182015b828111156200033157825182559160200191906001019062000314565b506200033f92915062000343565b5090565b5b808211156200033f576000815560010162000344565b600181811c908216806200036f57607f821691505b6020821081036200039057634e487b7160e01b600052602260045260246000fd5b50919050565b6123e480620003a66000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb714610572578063d5abeb0114610587578063e985e9c51461059d578063efdc7788146105e6578063f2fde38b1461060657600080fd5b8063a22cb465146104fc578063b88d4fde1461051c578063c6a91b421461053c578063c87b56dd1461055257600080fd5b8063982d669e116100dc578063982d669e1461049d57806398710d1e146104b35780639e9fcffc146104c9578063a0712d68146104e957600080fd5b806370a0823114610435578063715018a6146104555780638da5cb5b1461046a57806395d89b411461048857600080fd5b8063193ad7b41161019057806328cad13d1161015f57806328cad13d146103a05780633ccfd60b146103c057806342842e0e146103d557806355f804b3146103f55780636352211e1461041557600080fd5b8063193ad7b4146103305780631e84c41314610346578063202f298a1461036057806323b872dd1461038057600080fd5b8063095ea7b3116101cc578063095ea7b3146102b15780630a00ae83146102d357806318160ddd146102f35780631919fed71461031057600080fd5b806301ffc9a7146101fe57806306fdde031461023357806307e89ec014610255578063081812fc14610279575b600080fd5b34801561020a57600080fd5b5061021e610219366004611da4565b610626565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610678565b60405161022a9190611e20565b34801561026157600080fd5b5061026b600d5481565b60405190815260200161022a565b34801561028557600080fd5b50610299610294366004611e33565b61070a565b6040516001600160a01b03909116815260200161022a565b3480156102bd57600080fd5b506102d16102cc366004611e68565b61074e565b005b3480156102df57600080fd5b506102d16102ee366004611e33565b6107db565b3480156102ff57600080fd5b50600154600054036000190161026b565b34801561031c57600080fd5b506102d161032b366004611e33565b610813565b34801561033c57600080fd5b5061026b60105481565b34801561035257600080fd5b5060115461021e9060ff1681565b34801561036c57600080fd5b506102d161037b366004611e33565b610842565b34801561038c57600080fd5b506102d161039b366004611e92565b610871565b3480156103ac57600080fd5b506102d16103bb366004611edc565b6109cd565b3480156103cc57600080fd5b506102d1610a0a565b3480156103e157600080fd5b506102d16103f0366004611e92565b610a9c565b34801561040157600080fd5b506102d1610410366004611f85565b610bed565b34801561042157600080fd5b50610299610430366004611e33565b610c2e565b34801561044157600080fd5b5061026b610450366004611fce565b610c40565b34801561046157600080fd5b506102d1610c8f565b34801561047657600080fd5b506008546001600160a01b0316610299565b34801561049457600080fd5b50610248610cc5565b3480156104a957600080fd5b5061026b600e5481565b3480156104bf57600080fd5b5061026b600f5481565b3480156104d557600080fd5b506102d16104e4366004611e33565b610cd4565b6102d16104f7366004611e33565b610d03565b34801561050857600080fd5b506102d1610517366004611fe9565b610f04565b34801561052857600080fd5b506102d1610537366004612020565b610f99565b34801561054857600080fd5b5061026b600c5481565b34801561055e57600080fd5b5061024861056d366004611e33565b6110f8565b34801561057e57600080fd5b50610248611199565b34801561059357600080fd5b5061026b600b5481565b3480156105a957600080fd5b5061021e6105b836600461209c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105f257600080fd5b506102d1610601366004611e33565b611227565b34801561061257600080fd5b506102d1610621366004611fce565b611300565b60006001600160e01b031982166380ac58cd60e01b148061065757506001600160e01b03198216635b5e139f60e01b145b8061067257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610687906120cf565b80601f01602080910402602001604051908101604052809291908181526020018280546106b3906120cf565b80156107005780601f106106d557610100808354040283529160200191610700565b820191906000526020600020905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b600061071582611398565b610732576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075982610c2e565b9050806001600160a01b0316836001600160a01b03160361078d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107ad57506107ab81336105b8565b155b156107cb576040516367d9dca160e11b815260040160405180910390fd5b6107d68383836113d1565b505050565b6008546001600160a01b0316331461080e5760405162461bcd60e51b815260040161080590612109565b60405180910390fd5b600e55565b6008546001600160a01b0316331461083d5760405162461bcd60e51b815260040161080590612109565b600d55565b6008546001600160a01b0316331461086c5760405162461bcd60e51b815260040161080590612109565b600f55565b826daaeb6d7670e522a718067333cd4e3b156109bc57336001600160a01b038216036108a7576108a284848461142d565b6109c7565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091a919061213e565b801561099d5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610979573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099d919061213e565b6109bc57604051633b79c77360e21b8152336004820152602401610805565b6109c784848461142d565b50505050565b6008546001600160a01b031633146109f75760405162461bcd60e51b815260040161080590612109565b6011805460ff1916911515919091179055565b6008546001600160a01b03163314610a345760405162461bcd60e51b815260040161080590612109565b600260095403610a865760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610805565b6002600955610a953347611438565b6001600955565b826daaeb6d7670e522a718067333cd4e3b15610be257336001600160a01b03821603610acd576108a2848484611551565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b40919061213e565b8015610bc35750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc3919061213e565b610be257604051633b79c77360e21b8152336004820152602401610805565b6109c7848484611551565b6008546001600160a01b03163314610c175760405162461bcd60e51b815260040161080590612109565b8051610c2a90600a906020840190611cf5565b5050565b6000610c398261156c565b5192915050565b60006001600160a01b038216610c69576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610cb95760405162461bcd60e51b815260040161080590612109565b610cc36000611695565b565b606060038054610687906120cf565b6008546001600160a01b03163314610cfe5760405162461bcd60e51b815260040161080590612109565b600c55565b60115460ff16610d555760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006044820152606401610805565b600b54610d63906001612171565b6001546000548391900360001901610d7b9190612171565b10610db25760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610805565b600e5481601054610dc39190612171565b1115610e26573481600d54610dd89190612189565b1115610e215760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610805565b610ef7565b600f5481610e3333610c40565b610e3d9190612171565b1115610ebd573481600d54610e529190612189565b1115610e9b5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610805565b600c54811115610e215760405162461bcd60e51b8152600401610805906121a8565b600f54811115610edf5760405162461bcd60e51b8152600401610805906121a8565b8060106000828254610ef19190612171565b90915550505b610f0133826116e7565b50565b336001600160a01b03831603610f2d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b156110e557336001600160a01b03821603610fd057610fcb85858585611701565b6110f1565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561101f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611043919061213e565b80156110c65750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c6919061213e565b6110e557604051633b79c77360e21b8152336004820152602401610805565b6110f185858585611701565b5050505050565b606061110382611398565b6111675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610805565b600a6111728361174c565b604051602001611183929190612206565b6040516020818303038152906040529050919050565b600a80546111a6906120cf565b80601f01602080910402602001604051908101604052809291908181526020018280546111d2906120cf565b801561121f5780601f106111f45761010080835404028352916020019161121f565b820191906000526020600020905b81548152906001019060200180831161120257829003601f168201915b505050505081565b6008546001600160a01b031633146112515760405162461bcd60e51b815260040161080590612109565b600081116112975760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610805565b600b5460015460005483919003600019016112b29190612171565b1115610ef75760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c792065786365656465640000000000000000006044820152606401610805565b6008546001600160a01b0316331461132a5760405162461bcd60e51b815260040161080590612109565b6001600160a01b03811661138f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610805565b610f0181611695565b6000816001111580156113ac575060005482105b8015610672575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107d6838383611855565b804710156114885760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610805565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146114d5576040519150601f19603f3d011682016040523d82523d6000602084013e6114da565b606091505b50509050806107d65760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610805565b6107d683838360405180602001604052806000815250610f99565b6040805160608101825260008082526020820181905291810191909152818060011115801561159c575060005481105b1561167c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061167a5780516001600160a01b031615611610579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611675579392505050565b611610565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c2a828260405180602001604052806000815250611a42565b61170c848484611855565b6001600160a01b0383163b1515801561172e575061172c84848484611c0a565b155b156109c7576040516368d2bf6b60e11b815260040160405180910390fd5b6060816000036117735750506040805180820190915260018152600360fc1b602082015290565b8160005b811561179d5780611787816122d0565b91506117969050600a836122ff565b9150611777565b60008167ffffffffffffffff8111156117b8576117b8611ef9565b6040519080825280601f01601f1916602001820160405280156117e2576020820181803683370190505b5090505b841561184d576117f7600183612313565b9150611804600a8661232a565b61180f906030612171565b60f81b8183815181106118245761182461233e565b60200101906001600160f81b031916908160001a905350611846600a866122ff565b94506117e6565b949350505050565b60006118608261156c565b9050836001600160a01b031681600001516001600160a01b0316146118975760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118b557506118b585336105b8565b806118d05750336118c58461070a565b6001600160a01b0316145b9050806118f057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661191757604051633a954ecd60e21b815260040160405180910390fd5b611923600084876113d1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166119f95760005482146119f9578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110f1565b6000546001600160a01b038416611a6b57604051622e076360e81b815260040160405180910390fd5b82600003611a8c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611bb5575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b7e6000878480600101955087611c0a565b611b9b576040516368d2bf6b60e11b815260040160405180910390fd5b808203611b33578260005414611bb057600080fd5b611bfa565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611bb6575b5060009081556109c79085838684565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c3f903390899088908890600401612354565b6020604051808303816000875af1925050508015611c7a575060408051601f3d908101601f19168201909252611c7791810190612391565b60015b611cd8573d808015611ca8576040519150601f19603f3d011682016040523d82523d6000602084013e611cad565b606091505b508051600003611cd0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054611d01906120cf565b90600052602060002090601f016020900481019282611d235760008555611d69565b82601f10611d3c57805160ff1916838001178555611d69565b82800160010185558215611d69579182015b82811115611d69578251825591602001919060010190611d4e565b50611d75929150611d79565b5090565b5b80821115611d755760008155600101611d7a565b6001600160e01b031981168114610f0157600080fd5b600060208284031215611db657600080fd5b8135611dc181611d8e565b9392505050565b60005b83811015611de3578181015183820152602001611dcb565b838111156109c75750506000910152565b60008151808452611e0c816020860160208601611dc8565b601f01601f19169290920160200192915050565b602081526000611dc16020830184611df4565b600060208284031215611e4557600080fd5b5035919050565b80356001600160a01b0381168114611e6357600080fd5b919050565b60008060408385031215611e7b57600080fd5b611e8483611e4c565b946020939093013593505050565b600080600060608486031215611ea757600080fd5b611eb084611e4c565b9250611ebe60208501611e4c565b9150604084013590509250925092565b8015158114610f0157600080fd5b600060208284031215611eee57600080fd5b8135611dc181611ece565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f2a57611f2a611ef9565b604051601f8501601f19908116603f01168101908282118183101715611f5257611f52611ef9565b81604052809350858152868686011115611f6b57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f9757600080fd5b813567ffffffffffffffff811115611fae57600080fd5b8201601f81018413611fbf57600080fd5b61184d84823560208401611f0f565b600060208284031215611fe057600080fd5b611dc182611e4c565b60008060408385031215611ffc57600080fd5b61200583611e4c565b9150602083013561201581611ece565b809150509250929050565b6000806000806080858703121561203657600080fd5b61203f85611e4c565b935061204d60208601611e4c565b925060408501359150606085013567ffffffffffffffff81111561207057600080fd5b8501601f8101871361208157600080fd5b61209087823560208401611f0f565b91505092959194509250565b600080604083850312156120af57600080fd5b6120b883611e4c565b91506120c660208401611e4c565b90509250929050565b600181811c908216806120e357607f821691505b60208210810361210357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561215057600080fd5b8151611dc181611ece565b634e487b7160e01b600052601160045260246000fd5b600082198211156121845761218461215b565b500190565b60008160001904831182151516156121a3576121a361215b565b500290565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b600081516121fc818560208601611dc8565b9290920192915050565b600080845481600182811c91508083168061222257607f831692505b6020808410820361224157634e487b7160e01b86526022600452602486fd5b818015612255576001811461226657612293565b60ff19861689528489019650612293565b60008b81526020902060005b8681101561228b5781548b820152908501908301612272565b505084890196505b5050505050506122c76122b66122b083602f60f81b815260010190565b866121ea565b64173539b7b760d91b815260050190565b95945050505050565b6000600182016122e2576122e261215b565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261230e5761230e6122e9565b500490565b6000828210156123255761232561215b565b500390565b600082612339576123396122e9565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061238790830184611df4565b9695505050505050565b6000602082840312156123a357600080fd5b8151611dc181611d8e56fea264697066735822122037e0609936ef441e1109504bb48cd9bf589e3bc00b97b8c5f4b182d41eae0c6a64736f6c634300080d0033697066733a2f2f6261667962656968756675323770736f336232786d75366e74766c6e34616d6b66637068337937323777707865706c616c786a726f3732336a6a692f
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb714610572578063d5abeb0114610587578063e985e9c51461059d578063efdc7788146105e6578063f2fde38b1461060657600080fd5b8063a22cb465146104fc578063b88d4fde1461051c578063c6a91b421461053c578063c87b56dd1461055257600080fd5b8063982d669e116100dc578063982d669e1461049d57806398710d1e146104b35780639e9fcffc146104c9578063a0712d68146104e957600080fd5b806370a0823114610435578063715018a6146104555780638da5cb5b1461046a57806395d89b411461048857600080fd5b8063193ad7b41161019057806328cad13d1161015f57806328cad13d146103a05780633ccfd60b146103c057806342842e0e146103d557806355f804b3146103f55780636352211e1461041557600080fd5b8063193ad7b4146103305780631e84c41314610346578063202f298a1461036057806323b872dd1461038057600080fd5b8063095ea7b3116101cc578063095ea7b3146102b15780630a00ae83146102d357806318160ddd146102f35780631919fed71461031057600080fd5b806301ffc9a7146101fe57806306fdde031461023357806307e89ec014610255578063081812fc14610279575b600080fd5b34801561020a57600080fd5b5061021e610219366004611da4565b610626565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610678565b60405161022a9190611e20565b34801561026157600080fd5b5061026b600d5481565b60405190815260200161022a565b34801561028557600080fd5b50610299610294366004611e33565b61070a565b6040516001600160a01b03909116815260200161022a565b3480156102bd57600080fd5b506102d16102cc366004611e68565b61074e565b005b3480156102df57600080fd5b506102d16102ee366004611e33565b6107db565b3480156102ff57600080fd5b50600154600054036000190161026b565b34801561031c57600080fd5b506102d161032b366004611e33565b610813565b34801561033c57600080fd5b5061026b60105481565b34801561035257600080fd5b5060115461021e9060ff1681565b34801561036c57600080fd5b506102d161037b366004611e33565b610842565b34801561038c57600080fd5b506102d161039b366004611e92565b610871565b3480156103ac57600080fd5b506102d16103bb366004611edc565b6109cd565b3480156103cc57600080fd5b506102d1610a0a565b3480156103e157600080fd5b506102d16103f0366004611e92565b610a9c565b34801561040157600080fd5b506102d1610410366004611f85565b610bed565b34801561042157600080fd5b50610299610430366004611e33565b610c2e565b34801561044157600080fd5b5061026b610450366004611fce565b610c40565b34801561046157600080fd5b506102d1610c8f565b34801561047657600080fd5b506008546001600160a01b0316610299565b34801561049457600080fd5b50610248610cc5565b3480156104a957600080fd5b5061026b600e5481565b3480156104bf57600080fd5b5061026b600f5481565b3480156104d557600080fd5b506102d16104e4366004611e33565b610cd4565b6102d16104f7366004611e33565b610d03565b34801561050857600080fd5b506102d1610517366004611fe9565b610f04565b34801561052857600080fd5b506102d1610537366004612020565b610f99565b34801561054857600080fd5b5061026b600c5481565b34801561055e57600080fd5b5061024861056d366004611e33565b6110f8565b34801561057e57600080fd5b50610248611199565b34801561059357600080fd5b5061026b600b5481565b3480156105a957600080fd5b5061021e6105b836600461209c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105f257600080fd5b506102d1610601366004611e33565b611227565b34801561061257600080fd5b506102d1610621366004611fce565b611300565b60006001600160e01b031982166380ac58cd60e01b148061065757506001600160e01b03198216635b5e139f60e01b145b8061067257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610687906120cf565b80601f01602080910402602001604051908101604052809291908181526020018280546106b3906120cf565b80156107005780601f106106d557610100808354040283529160200191610700565b820191906000526020600020905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b600061071582611398565b610732576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075982610c2e565b9050806001600160a01b0316836001600160a01b03160361078d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107ad57506107ab81336105b8565b155b156107cb576040516367d9dca160e11b815260040160405180910390fd5b6107d68383836113d1565b505050565b6008546001600160a01b0316331461080e5760405162461bcd60e51b815260040161080590612109565b60405180910390fd5b600e55565b6008546001600160a01b0316331461083d5760405162461bcd60e51b815260040161080590612109565b600d55565b6008546001600160a01b0316331461086c5760405162461bcd60e51b815260040161080590612109565b600f55565b826daaeb6d7670e522a718067333cd4e3b156109bc57336001600160a01b038216036108a7576108a284848461142d565b6109c7565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091a919061213e565b801561099d5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610979573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099d919061213e565b6109bc57604051633b79c77360e21b8152336004820152602401610805565b6109c784848461142d565b50505050565b6008546001600160a01b031633146109f75760405162461bcd60e51b815260040161080590612109565b6011805460ff1916911515919091179055565b6008546001600160a01b03163314610a345760405162461bcd60e51b815260040161080590612109565b600260095403610a865760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610805565b6002600955610a953347611438565b6001600955565b826daaeb6d7670e522a718067333cd4e3b15610be257336001600160a01b03821603610acd576108a2848484611551565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b40919061213e565b8015610bc35750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc3919061213e565b610be257604051633b79c77360e21b8152336004820152602401610805565b6109c7848484611551565b6008546001600160a01b03163314610c175760405162461bcd60e51b815260040161080590612109565b8051610c2a90600a906020840190611cf5565b5050565b6000610c398261156c565b5192915050565b60006001600160a01b038216610c69576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610cb95760405162461bcd60e51b815260040161080590612109565b610cc36000611695565b565b606060038054610687906120cf565b6008546001600160a01b03163314610cfe5760405162461bcd60e51b815260040161080590612109565b600c55565b60115460ff16610d555760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006044820152606401610805565b600b54610d63906001612171565b6001546000548391900360001901610d7b9190612171565b10610db25760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610805565b600e5481601054610dc39190612171565b1115610e26573481600d54610dd89190612189565b1115610e215760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610805565b610ef7565b600f5481610e3333610c40565b610e3d9190612171565b1115610ebd573481600d54610e529190612189565b1115610e9b5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610805565b600c54811115610e215760405162461bcd60e51b8152600401610805906121a8565b600f54811115610edf5760405162461bcd60e51b8152600401610805906121a8565b8060106000828254610ef19190612171565b90915550505b610f0133826116e7565b50565b336001600160a01b03831603610f2d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b156110e557336001600160a01b03821603610fd057610fcb85858585611701565b6110f1565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561101f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611043919061213e565b80156110c65750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c6919061213e565b6110e557604051633b79c77360e21b8152336004820152602401610805565b6110f185858585611701565b5050505050565b606061110382611398565b6111675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610805565b600a6111728361174c565b604051602001611183929190612206565b6040516020818303038152906040529050919050565b600a80546111a6906120cf565b80601f01602080910402602001604051908101604052809291908181526020018280546111d2906120cf565b801561121f5780601f106111f45761010080835404028352916020019161121f565b820191906000526020600020905b81548152906001019060200180831161120257829003601f168201915b505050505081565b6008546001600160a01b031633146112515760405162461bcd60e51b815260040161080590612109565b600081116112975760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610805565b600b5460015460005483919003600019016112b29190612171565b1115610ef75760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c792065786365656465640000000000000000006044820152606401610805565b6008546001600160a01b0316331461132a5760405162461bcd60e51b815260040161080590612109565b6001600160a01b03811661138f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610805565b610f0181611695565b6000816001111580156113ac575060005482105b8015610672575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107d6838383611855565b804710156114885760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610805565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146114d5576040519150601f19603f3d011682016040523d82523d6000602084013e6114da565b606091505b50509050806107d65760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610805565b6107d683838360405180602001604052806000815250610f99565b6040805160608101825260008082526020820181905291810191909152818060011115801561159c575060005481105b1561167c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061167a5780516001600160a01b031615611610579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611675579392505050565b611610565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c2a828260405180602001604052806000815250611a42565b61170c848484611855565b6001600160a01b0383163b1515801561172e575061172c84848484611c0a565b155b156109c7576040516368d2bf6b60e11b815260040160405180910390fd5b6060816000036117735750506040805180820190915260018152600360fc1b602082015290565b8160005b811561179d5780611787816122d0565b91506117969050600a836122ff565b9150611777565b60008167ffffffffffffffff8111156117b8576117b8611ef9565b6040519080825280601f01601f1916602001820160405280156117e2576020820181803683370190505b5090505b841561184d576117f7600183612313565b9150611804600a8661232a565b61180f906030612171565b60f81b8183815181106118245761182461233e565b60200101906001600160f81b031916908160001a905350611846600a866122ff565b94506117e6565b949350505050565b60006118608261156c565b9050836001600160a01b031681600001516001600160a01b0316146118975760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118b557506118b585336105b8565b806118d05750336118c58461070a565b6001600160a01b0316145b9050806118f057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661191757604051633a954ecd60e21b815260040160405180910390fd5b611923600084876113d1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166119f95760005482146119f9578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110f1565b6000546001600160a01b038416611a6b57604051622e076360e81b815260040160405180910390fd5b82600003611a8c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611bb5575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b7e6000878480600101955087611c0a565b611b9b576040516368d2bf6b60e11b815260040160405180910390fd5b808203611b33578260005414611bb057600080fd5b611bfa565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611bb6575b5060009081556109c79085838684565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c3f903390899088908890600401612354565b6020604051808303816000875af1925050508015611c7a575060408051601f3d908101601f19168201909252611c7791810190612391565b60015b611cd8573d808015611ca8576040519150601f19603f3d011682016040523d82523d6000602084013e611cad565b606091505b508051600003611cd0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054611d01906120cf565b90600052602060002090601f016020900481019282611d235760008555611d69565b82601f10611d3c57805160ff1916838001178555611d69565b82800160010185558215611d69579182015b82811115611d69578251825591602001919060010190611d4e565b50611d75929150611d79565b5090565b5b80821115611d755760008155600101611d7a565b6001600160e01b031981168114610f0157600080fd5b600060208284031215611db657600080fd5b8135611dc181611d8e565b9392505050565b60005b83811015611de3578181015183820152602001611dcb565b838111156109c75750506000910152565b60008151808452611e0c816020860160208601611dc8565b601f01601f19169290920160200192915050565b602081526000611dc16020830184611df4565b600060208284031215611e4557600080fd5b5035919050565b80356001600160a01b0381168114611e6357600080fd5b919050565b60008060408385031215611e7b57600080fd5b611e8483611e4c565b946020939093013593505050565b600080600060608486031215611ea757600080fd5b611eb084611e4c565b9250611ebe60208501611e4c565b9150604084013590509250925092565b8015158114610f0157600080fd5b600060208284031215611eee57600080fd5b8135611dc181611ece565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f2a57611f2a611ef9565b604051601f8501601f19908116603f01168101908282118183101715611f5257611f52611ef9565b81604052809350858152868686011115611f6b57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f9757600080fd5b813567ffffffffffffffff811115611fae57600080fd5b8201601f81018413611fbf57600080fd5b61184d84823560208401611f0f565b600060208284031215611fe057600080fd5b611dc182611e4c565b60008060408385031215611ffc57600080fd5b61200583611e4c565b9150602083013561201581611ece565b809150509250929050565b6000806000806080858703121561203657600080fd5b61203f85611e4c565b935061204d60208601611e4c565b925060408501359150606085013567ffffffffffffffff81111561207057600080fd5b8501601f8101871361208157600080fd5b61209087823560208401611f0f565b91505092959194509250565b600080604083850312156120af57600080fd5b6120b883611e4c565b91506120c660208401611e4c565b90509250929050565b600181811c908216806120e357607f821691505b60208210810361210357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561215057600080fd5b8151611dc181611ece565b634e487b7160e01b600052601160045260246000fd5b600082198211156121845761218461215b565b500190565b60008160001904831182151516156121a3576121a361215b565b500290565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b600081516121fc818560208601611dc8565b9290920192915050565b600080845481600182811c91508083168061222257607f831692505b6020808410820361224157634e487b7160e01b86526022600452602486fd5b818015612255576001811461226657612293565b60ff19861689528489019650612293565b60008b81526020902060005b8681101561228b5781548b820152908501908301612272565b505084890196505b5050505050506122c76122b66122b083602f60f81b815260010190565b866121ea565b64173539b7b760d91b815260050190565b95945050505050565b6000600182016122e2576122e261215b565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261230e5761230e6122e9565b500490565b6000828210156123255761232561215b565b500390565b600082612339576123396122e9565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061238790830184611df4565b9695505050505050565b6000602082840312156123a357600080fd5b8151611dc181611d8e56fea264697066735822122037e0609936ef441e1109504bb48cd9bf589e3bc00b97b8c5f4b182d41eae0c6a64736f6c634300080d0033
Deployed Bytecode Sourcemap
54597:3964:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31135:305;;;;;;;;;;-1:-1:-1;31135:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;31135:305:0;;;;;;;;34248:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54938:48::-;;;;;;;;;;;;;;;;;;;1511:25:1;;;1499:2;1484:18;54938:48:0;1365:177:1;35751:204:0;;;;;;;;;;-1:-1:-1;35751:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;35751:204:0;1732:203:1;35314:371:0;;;;;;;;;;-1:-1:-1;35314:371:0;;;;;:::i;:::-;;:::i;:::-;;57461:129;;;;;;;;;;-1:-1:-1;57461:129:0;;;;;:::i;:::-;;:::i;30384:303::-;;;;;;;;;;-1:-1:-1;30241:1:0;30638:12;30428:7;30622:13;:28;-1:-1:-1;;30622:46:0;30384:303;;57596:115;;;;;;;;;;-1:-1:-1;57596:115:0;;;;;:::i;:::-;;:::i;55077:39::-;;;;;;;;;;;;;;;;55121:37;;;;;;;;;;-1:-1:-1;55121:37:0;;;;;;;;57850:126;;;;;;;;;;-1:-1:-1;57850:126:0;;;;;:::i;:::-;;:::i;57980:163::-;;;;;;;;;;-1:-1:-1;57980:163:0;;;;;:::i;:::-;;:::i;57307:148::-;;;;;;;;;;-1:-1:-1;57307:148:0;;;;;:::i;:::-;;:::i;56700:142::-;;;;;;;;;;;;;:::i;58151:171::-;;;;;;;;;;-1:-1:-1;58151:171:0;;;;;:::i;:::-;;:::i;56296:108::-;;;;;;;;;;-1:-1:-1;56296:108:0;;;;;:::i;:::-;;:::i;34056:125::-;;;;;;;;;;-1:-1:-1;34056:125:0;;;;;:::i;:::-;;:::i;31504:206::-;;;;;;;;;;-1:-1:-1;31504:206:0;;;;;:::i;:::-;;:::i;8927:103::-;;;;;;;;;;;;;:::i;8276:87::-;;;;;;;;;;-1:-1:-1;8349:6:0;;-1:-1:-1;;;;;8349:6:0;8276:87;;34417:104;;;;;;;;;;;;;:::i;54991:37::-;;;;;;;;;;;;;;;;55033:39;;;;;;;;;;;;;;;;57717:127;;;;;;;;;;-1:-1:-1;57717:127:0;;;;;:::i;:::-;;:::i;55242:1048::-;;;;;;:::i;:::-;;:::i;36027:287::-;;;;;;;;;;-1:-1:-1;36027:287:0;;;;;:::i;:::-;;:::i;58330:228::-;;;;;;;;;;-1:-1:-1;58330:228:0;;;;;:::i;:::-;;:::i;54896:37::-;;;;;;;;;;;;;;;;56848:312;;;;;;;;;;-1:-1:-1;56848:312:0;;;;;:::i;:::-;;:::i;54752:100::-;;;;;;;;;;;;;:::i;54857:34::-;;;;;;;;;;;;;;;;36385:164;;;;;;;;;;-1:-1:-1;36385:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36506:25:0;;;36482:4;36506:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36385:164;56410:284;;;;;;;;;;-1:-1:-1;56410:284:0;;;;;:::i;:::-;;:::i;9185:201::-;;;;;;;;;;-1:-1:-1;9185:201:0;;;;;:::i;:::-;;:::i;31135:305::-;31237:4;-1:-1:-1;;;;;;31274:40:0;;-1:-1:-1;;;31274:40:0;;:105;;-1:-1:-1;;;;;;;31331:48:0;;-1:-1:-1;;;31331:48:0;31274:105;:158;;;-1:-1:-1;;;;;;;;;;21169:40:0;;;31396:36;31254:178;31135:305;-1:-1:-1;;31135:305:0:o;34248:100::-;34302:13;34335:5;34328:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34248:100;:::o;35751:204::-;35819:7;35844:16;35852:7;35844;:16::i;:::-;35839:64;;35869:34;;-1:-1:-1;;;35869:34:0;;;;;;;;;;;35839:64;-1:-1:-1;35923:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35923:24:0;;35751:204::o;35314:371::-;35387:13;35403:24;35419:7;35403:15;:24::i;:::-;35387:40;;35448:5;-1:-1:-1;;;;;35442:11:0;:2;-1:-1:-1;;;;;35442:11:0;;35438:48;;35462:24;;-1:-1:-1;;;35462:24:0;;;;;;;;;;;35438:48;7080:10;-1:-1:-1;;;;;35503:21:0;;;;;;:63;;-1:-1:-1;35529:37:0;35546:5;7080:10;36385:164;:::i;35529:37::-;35528:38;35503:63;35499:138;;;35590:35;;-1:-1:-1;;;35590:35:0;;;;;;;;;;;35499:138;35649:28;35658:2;35662:7;35671:5;35649:8;:28::i;:::-;35376:309;35314:371;;:::o;57461:129::-;8349:6;;-1:-1:-1;;;;;8349:6:0;7080:10;8496:23;8488:68;;;;-1:-1:-1;;;8488:68:0;;;;;;;:::i;:::-;;;;;;;;;57554:14:::1;:30:::0;57461:129::o;57596:115::-;8349:6;;-1:-1:-1;;;;;8349:6:0;7080:10;8496:23;8488:68;;;;-1:-1:-1;;;8488:68:0;;;;;;;:::i;:::-;57679:17:::1;:26:::0;57596:115::o;57850:126::-;8349:6;;-1:-1:-1;;;;;8349:6:0;7080:10;8496:23;8488:68;;;;-1:-1:-1;;;8488:68:0;;;;;;;:::i;:::-;57942:19:::1;:28:::0;57850:126::o;57980:163::-;58081:4;52301:42;53441:43;:47;53437:699;;53728:10;-1:-1:-1;;;;;53720:18:0;;;53716:85;;58098:37:::1;58117:4;58123:2;58127:7;58098:18;:37::i;:::-;53779:7:::0;;53716:85;53861:67;;-1:-1:-1;;;53861:67:0;;53910:4;53861:67;;;6710:34:1;53917:10:0;6760:18:1;;;6753:43;52301:42:0;;53861:40;;6645:18:1;;53861:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;53957:61:0;;-1:-1:-1;;;53957:61:0;;54006:4;53957:61;;;6710:34:1;-1:-1:-1;;;;;6780:15:1;;6760:18;;;6753:43;52301:42:0;;53957:40;;6645:18:1;;53957:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53815:310;;54079:30;;-1:-1:-1;;;54079:30:0;;54098:10;54079:30;;;1878:51:1;1851:18;;54079:30:0;1732:203:1;53815:310:0;58098:37:::1;58117:4;58123:2;58127:7;58098:18;:37::i;:::-;57980:163:::0;;;;:::o;57307:148::-;8349:6;;-1:-1:-1;;;;;8349:6:0;7080:10;8496:23;8488:68;;;;-1:-1:-1;;;8488:68:0;;;;;;;:::i;:::-;57409:18:::1;:40:::0;;-1:-1:-1;;57409:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57307:148::o;56700:142::-;8349:6;;-1:-1:-1;;;;;8349:6:0;7080:10;8496:23;8488:68;;;;-1:-1:-1;;;8488:68:0;;;;;;;:::i;:::-;3250:1:::1;3848:7;;:19:::0;3840:63:::1;;;::::0;-1:-1:-1;;;3840:63:0;;7259:2:1;3840:63:0::1;::::0;::::1;7241:21:1::0;7298:2;7278:18;;;7271:30;7337:33;7317:18;;;7310:61;7388:18;;3840:63:0::1;7057:355:1::0;3840:63:0::1;3250:1;3981:7;:18:::0;56775:61:::2;56801:10;56814:21;56775:17;:61::i;:::-;3206:1:::1;4160:7;:22:::0;56700:142::o;58151:171::-;58256:4;52301:42;53441:43;:47;53437:699;;53728:10;-1:-1:-1;;;;;53720:18:0;;;53716:85;;58273:41:::1;58296:4;58302:2;58306:7;58273:22;:41::i;53716:85::-:0;53861:67;;-1:-1:-1;;;53861:67:0;;53910:4;53861:67;;;6710:34:1;53917:10:0;6760:18:1;;;6753:43;52301:42:0;;53861:40;;6645:18:1;;53861:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;53957:61:0;;-1:-1:-1;;;53957:61:0;;54006:4;53957:61;;;6710:34:1;-1:-1:-1;;;;;6780:15:1;;6760:18;;;6753:43;52301:42:0;;53957:40;;6645:18:1;;53957:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53815:310;;54079:30;;-1:-1:-1;;;54079:30:0;;54098:10;54079:30;;;1878:51:1;1851:18;;54079:30:0;1732:203:1;53815:310:0;58273:41:::1;58296:4;58302:2;58306:7;58273:22;:41::i;56296:108::-:0;8349:6;;-1:-1:-1;;;;;8349:6:0;7080:10;8496:23;8488:68;;;;-1:-1:-1;;;8488:68:0;;;;;;;:::i;:::-;56376:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56296:108:::0;:::o;34056:125::-;34120:7;34147:21;34160:7;34147:12;:21::i;:::-;:26;;34056:125;-1:-1:-1;;34056:125:0:o;31504:206::-;31568:7;-1:-1:-1;;;;;31592:19:0;;31588:60;;31620:28;;-1:-1:-1;;;31620:28:0;;;;;;;;;;;31588:60;-1:-1:-1;;;;;;31674:19:0;;;;;:12;:19;;;;;:27;;;;31504:206::o;8927:103::-;8349:6;;-1:-1:-1;;;;;8349:6:0;7080:10;8496:23;8488:68;;;;-1:-1:-1;;;8488:68:0;;;;;;;:::i;:::-;8992:30:::1;9019:1;8992:18;:30::i;:::-;8927:103::o:0;34417:104::-;34473:13;34506:7;34499:14;;;;;:::i;57717:127::-;8349:6;;-1:-1:-1;;;;;8349:6:0;7080:10;8496:23;8488:68;;;;-1:-1:-1;;;8488:68:0;;;;;;;:::i;:::-;57813:16:::1;:25:::0;57717:127::o;55242:1048::-;55329:18;;;;55321:54;;;;-1:-1:-1;;;55321:54:0;;7619:2:1;55321:54:0;;;7601:21:1;7658:2;7638:18;;;7631:30;7697:25;7677:18;;;7670:53;7740:18;;55321:54:0;7417:347:1;55321:54:0;55423:9;;:13;;55435:1;55423:13;:::i;:::-;30241:1;30638:12;30428:7;30622:13;55406:14;;30622:28;;-1:-1:-1;;30622:46:0;55390:30;;;;:::i;:::-;:46;55382:66;;;;-1:-1:-1;;;55382:66:0;;8236:2:1;55382:66:0;;;8218:21:1;8275:1;8255:18;;;8248:29;-1:-1:-1;;;8293:18:1;;;8286:37;8340:18;;55382:66:0;8034:330:1;55382:66:0;55500:14;;55483;55460:20;;:37;;;;:::i;:::-;:54;55457:784;;;55588:9;55569:14;55549:17;;:34;;;;:::i;:::-;55548:49;;55526:123;;;;-1:-1:-1;;;55526:123:0;;8744:2:1;55526:123:0;;;8726:21:1;8783:2;8763:18;;;8756:30;-1:-1:-1;;;8802:18:1;;;8795:54;8866:18;;55526:123:0;8542:348:1;55526:123:0;55457:784;;;55719:19;;55702:14;55678:21;55688:10;55678:9;:21::i;:::-;:38;;;;:::i;:::-;:60;55674:560;;;55813:9;55794:14;55774:17;;:34;;;;:::i;:::-;55773:49;;55751:123;;;;-1:-1:-1;;;55751:123:0;;8744:2:1;55751:123:0;;;8726:21:1;8783:2;8763:18;;;8756:30;-1:-1:-1;;;8802:18:1;;;8795:54;8866:18;;55751:123:0;8542:348:1;55751:123:0;55925:16;;55907:14;:34;;55885:118;;;;-1:-1:-1;;;55885:118:0;;;;;;;:::i;55674:560::-;56080:19;;56062:14;:37;;56036:133;;;;-1:-1:-1;;;56036:133:0;;;;;;;:::i;:::-;56208:14;56184:20;;:38;;;;;;;:::i;:::-;;;;-1:-1:-1;;55674:560:0;56247:37;56257:10;56269:14;56247:9;:37::i;:::-;55242:1048;:::o;36027:287::-;7080:10;-1:-1:-1;;;;;36126:24:0;;;36122:54;;36159:17;;-1:-1:-1;;;36159:17:0;;;;;;;;;;;36122:54;7080:10;36189:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36189:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36189:53:0;;;;;;;;;;36258:48;;540:41:1;;;36189:42:0;;7080:10;36258:48;;513:18:1;36258:48:0;;;;;;;36027:287;;:::o;58330:228::-;58481:4;52301:42;53441:43;:47;53437:699;;53728:10;-1:-1:-1;;;;;53720:18:0;;;53716:85;;58503:47:::1;58526:4;58532:2;58536:7;58545:4;58503:22;:47::i;:::-;53779:7:::0;;53716:85;53861:67;;-1:-1:-1;;;53861:67:0;;53910:4;53861:67;;;6710:34:1;53917:10:0;6760:18:1;;;6753:43;52301:42:0;;53861:40;;6645:18:1;;53861:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;53957:61:0;;-1:-1:-1;;;53957:61:0;;54006:4;53957:61;;;6710:34:1;-1:-1:-1;;;;;6780:15:1;;6760:18;;;6753:43;52301:42:0;;53957:40;;6645:18:1;;53957:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53815:310;;54079:30;;-1:-1:-1;;;54079:30:0;;54098:10;54079:30;;;1878:51:1;1851:18;;54079:30:0;1732:203:1;53815:310:0;58503:47:::1;58526:4;58532:2;58536:7;58545:4;58503:22;:47::i;:::-;58330:228:::0;;;;;:::o;56848:312::-;56944:13;56985:17;56993:8;56985:7;:17::i;:::-;56969:98;;;;-1:-1:-1;;;56969:98:0;;9500:2:1;56969:98:0;;;9482:21:1;9539:2;9519:18;;;9512:30;9578:34;9558:18;;;9551:62;-1:-1:-1;;;9629:18:1;;;9622:45;9684:19;;56969:98:0;9298:411:1;56969:98:0;57105:12;57124:19;:8;:17;:19::i;:::-;57088:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57074:80;;56848:312;;;:::o;54752:100::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56410:284::-;8349:6;;-1:-1:-1;;;;;8349:6:0;7080:10;8496:23;8488:68;;;;-1:-1:-1;;;8488:68:0;;;;;;;:::i;:::-;56511:1:::1;56500:8;:12;56484:65;;;::::0;-1:-1:-1;;;56484:65:0;;11907:2:1;56484:65:0::1;::::0;::::1;11889:21:1::0;11946:2;11926:18;;;11919:30;-1:-1:-1;;;11965:18:1;;;11958:49;12024:18;;56484:65:0::1;11705:343:1::0;56484:65:0::1;56600:9;::::0;30241:1;30638:12;30428:7;30622:13;56588:8;;30622:28;;-1:-1:-1;;30622:46:0;56572:24:::1;;;;:::i;:::-;:37;;56556:94;;;::::0;-1:-1:-1;;;56556:94:0;;12255:2:1;56556:94:0::1;::::0;::::1;12237:21:1::0;12294:2;12274:18;;;12267:30;12333:25;12313:18;;;12306:53;12376:18;;56556:94:0::1;12053:347:1::0;9185:201:0;8349:6;;-1:-1:-1;;;;;8349:6:0;7080:10;8496:23;8488:68;;;;-1:-1:-1;;;8488:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9274:22:0;::::1;9266:73;;;::::0;-1:-1:-1;;;9266:73:0;;12607:2:1;9266:73:0::1;::::0;::::1;12589:21:1::0;12646:2;12626:18;;;12619:30;12685:34;12665:18;;;12658:62;-1:-1:-1;;;12736:18:1;;;12729:36;12782:19;;9266:73:0::1;12405:402:1::0;9266:73:0::1;9350:28;9369:8;9350:18;:28::i;37737:174::-:0;37794:4;37837:7;30241:1;37818:26;;:53;;;;;37858:13;;37848:7;:23;37818:53;:85;;;;-1:-1:-1;;37876:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37876:27:0;;;;37875:28;;37737:174::o;46963:196::-;47078:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47078:29:0;-1:-1:-1;;;;;47078:29:0;;;;;;;;;47123:28;;47078:24;;47123:28;;;;;;;46963:196;;;:::o;36616:170::-;36750:28;36760:4;36766:2;36770:7;36750:9;:28::i;12238:317::-;12353:6;12328:21;:31;;12320:73;;;;-1:-1:-1;;;12320:73:0;;13014:2:1;12320:73:0;;;12996:21:1;13053:2;13033:18;;;13026:30;13092:31;13072:18;;;13065:59;13141:18;;12320:73:0;12812:353:1;12320:73:0;12407:12;12425:9;-1:-1:-1;;;;;12425:14:0;12447:6;12425:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12406:52;;;12477:7;12469:78;;;;-1:-1:-1;;;12469:78:0;;13582:2:1;12469:78:0;;;13564:21:1;13621:2;13601:18;;;13594:30;13660:34;13640:18;;;13633:62;13731:28;13711:18;;;13704:56;13777:19;;12469:78:0;13380:422:1;36857:185:0;36995:39;37012:4;37018:2;37022:7;36995:39;;;;;;;;;;;;:16;:39::i;32885:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32996:7:0;;30241:1;33045:23;;:47;;;;;33079:13;;33072:4;:20;33045:47;33041:886;;;33113:31;33147:17;;;:11;:17;;;;;;;;;33113:51;;;;;;;;;-1:-1:-1;;;;;33113:51:0;;;;-1:-1:-1;;;33113:51:0;;;;;;;;;;;-1:-1:-1;;;33113:51:0;;;;;;;;;;;;;;33183:729;;33233:14;;-1:-1:-1;;;;;33233:28:0;;33229:101;;33297:9;32885:1109;-1:-1:-1;;;32885:1109:0:o;33229:101::-;-1:-1:-1;;;33672:6:0;33717:17;;;;:11;:17;;;;;;;;;33705:29;;;;;;;;;-1:-1:-1;;;;;33705:29:0;;;;;-1:-1:-1;;;33705:29:0;;;;;;;;;;;-1:-1:-1;;;33705:29:0;;;;;;;;;;;;;33765:28;33761:109;;33833:9;32885:1109;-1:-1:-1;;;32885:1109:0:o;33761:109::-;33632:261;;;33094:833;33041:886;33955:31;;-1:-1:-1;;;33955:31:0;;;;;;;;;;;9546:191;9639:6;;;-1:-1:-1;;;;;9656:17:0;;;-1:-1:-1;;;;;;9656:17:0;;;;;;;9689:40;;9639:6;;;9656:17;9639:6;;9689:40;;9620:16;;9689:40;9609:128;9546:191;:::o;37995:104::-;38064:27;38074:2;38078:8;38064:27;;;;;;;;;;;;:9;:27::i;37113:369::-;37280:28;37290:4;37296:2;37300:7;37280:9;:28::i;:::-;-1:-1:-1;;;;;37323:13:0;;11272:19;:23;;37323:76;;;;;37343:56;37374:4;37380:2;37384:7;37393:5;37343:30;:56::i;:::-;37342:57;37323:76;37319:156;;;37423:40;;-1:-1:-1;;;37423:40:0;;;;;;;;;;;4562:723;4618:13;4839:5;4848:1;4839:10;4835:53;;-1:-1:-1;;4866:10:0;;;;;;;;;;;;-1:-1:-1;;;4866:10:0;;;;;4562:723::o;4835:53::-;4913:5;4898:12;4954:78;4961:9;;4954:78;;4987:8;;;;:::i;:::-;;-1:-1:-1;5010:10:0;;-1:-1:-1;5018:2:0;5010:10;;:::i;:::-;;;4954:78;;;5042:19;5074:6;5064:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5064:17:0;;5042:39;;5092:154;5099:10;;5092:154;;5126:11;5136:1;5126:11;;:::i;:::-;;-1:-1:-1;5195:10:0;5203:2;5195:5;:10;:::i;:::-;5182:24;;:2;:24;:::i;:::-;5169:39;;5152:6;5159;5152:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5152:56:0;;;;;;;;-1:-1:-1;5223:11:0;5232:2;5223:11;;:::i;:::-;;;5092:154;;;5270:6;4562:723;-1:-1:-1;;;;4562:723:0:o;41911:2130::-;42026:35;42064:21;42077:7;42064:12;:21::i;:::-;42026:59;;42124:4;-1:-1:-1;;;;;42102:26:0;:13;:18;;;-1:-1:-1;;;;;42102:26:0;;42098:67;;42137:28;;-1:-1:-1;;;42137:28:0;;;;;;;;;;;42098:67;42178:22;7080:10;-1:-1:-1;;;;;42204:20:0;;;;:73;;-1:-1:-1;42241:36:0;42258:4;7080:10;36385:164;:::i;42241:36::-;42204:126;;;-1:-1:-1;7080:10:0;42294:20;42306:7;42294:11;:20::i;:::-;-1:-1:-1;;;;;42294:36:0;;42204:126;42178:153;;42349:17;42344:66;;42375:35;;-1:-1:-1;;;42375:35:0;;;;;;;;;;;42344:66;-1:-1:-1;;;;;42425:16:0;;42421:52;;42450:23;;-1:-1:-1;;;42450:23:0;;;;;;;;;;;42421:52;42594:35;42611:1;42615:7;42624:4;42594:8;:35::i;:::-;-1:-1:-1;;;;;42925:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42925:31:0;;;;;;;-1:-1:-1;;42925:31:0;;;;;;;42971:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42971:29:0;;;;;;;;;;;43051:20;;;:11;:20;;;;;;43086:18;;-1:-1:-1;;;;;;43119:49:0;;;;-1:-1:-1;;;43152:15:0;43119:49;;;;;;;;;;43442:11;;43502:24;;;;;43545:13;;43051:20;;43502:24;;43545:13;43541:384;;43755:13;;43740:11;:28;43736:174;;43793:20;;43862:28;;;;43836:54;;-1:-1:-1;;;43836:54:0;-1:-1:-1;;;;;;43836:54:0;;;-1:-1:-1;;;;;43793:20:0;;43836:54;;;;43736:174;42900:1036;;;43972:7;43968:2;-1:-1:-1;;;;;43953:27:0;43962:4;-1:-1:-1;;;;;43953:27:0;;;;;;;;;;;43991:42;57980:163;38473:1751;38596:20;38619:13;-1:-1:-1;;;;;38647:16:0;;38643:48;;38672:19;;-1:-1:-1;;;38672:19:0;;;;;;;;;;;38643:48;38706:8;38718:1;38706:13;38702:44;;38728:18;;-1:-1:-1;;;38728:18:0;;;;;;;;;;;38702:44;-1:-1:-1;;;;;39097:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;39156:49:0;;39097:44;;;;;;;;39156:49;;;;-1:-1:-1;;39097:44:0;;;;;;39156:49;;;;;;;;;;;;;;;;39222:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39272:66:0;;;-1:-1:-1;;;39322:15:0;39272:66;;;;;;;;;;;;;39222:25;;39419:23;;;;11272:19;:23;39459:633;;39499:314;39530:38;;39555:12;;-1:-1:-1;;;;;39530:38:0;;;39547:1;;39530:38;;39547:1;;39530:38;39596:69;39635:1;39639:2;39643:14;;;;;;39659:5;39596:30;:69::i;:::-;39591:174;;39701:40;;-1:-1:-1;;;39701:40:0;;;;;;;;;;;39591:174;39808:3;39792:12;:19;39499:314;;39894:12;39877:13;;:29;39873:43;;39908:8;;;39873:43;39459:633;;;39957:120;39988:40;;40013:14;;;;;-1:-1:-1;;;;;39988:40:0;;;40005:1;;39988:40;;40005:1;;39988:40;40072:3;40056:12;:19;39957:120;;39459:633;-1:-1:-1;40106:13:0;:28;;;40156:60;;40189:2;40193:12;40207:8;40156:60;:::i;47651:667::-;47835:72;;-1:-1:-1;;;47835:72:0;;47814:4;;-1:-1:-1;;;;;47835:36:0;;;;;:72;;7080:10;;47886:4;;47892:7;;47901:5;;47835:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47835:72:0;;;;;;;;-1:-1:-1;;47835:72:0;;;;;;;;;;;;:::i;:::-;;;47831:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48069:6;:13;48086:1;48069:18;48065:235;;48115:40;;-1:-1:-1;;;48115:40:0;;;;;;;;;;;48065:235;48258:6;48252:13;48243:6;48239:2;48235:15;48228:38;47831:480;-1:-1:-1;;;;;;47954:55:0;-1:-1:-1;;;47954:55:0;;-1:-1:-1;47651:667:0;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1547:180::-;1606:6;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;-1:-1:-1;1698:23:1;;1547:180;-1:-1:-1;1547:180:1:o;1940:173::-;2008:20;;-1:-1:-1;;;;;2057:31:1;;2047:42;;2037:70;;2103:1;2100;2093:12;2037:70;1940:173;;;:::o;2118:254::-;2186:6;2194;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2286:29;2305:9;2286:29;:::i;:::-;2276:39;2362:2;2347:18;;;;2334:32;;-1:-1:-1;;;2118:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:118::-;2796:5;2789:13;2782:21;2775:5;2772:32;2762:60;;2818:1;2815;2808:12;2833:241;2889:6;2942:2;2930:9;2921:7;2917:23;2913:32;2910:52;;;2958:1;2955;2948:12;2910:52;2997:9;2984:23;3016:28;3038:5;3016:28;:::i;3079:127::-;3140:10;3135:3;3131:20;3128:1;3121:31;3171:4;3168:1;3161:15;3195:4;3192:1;3185:15;3211:632;3276:5;3306:18;3347:2;3339:6;3336:14;3333:40;;;3353:18;;:::i;:::-;3428:2;3422:9;3396:2;3482:15;;-1:-1:-1;;3478:24:1;;;3504:2;3474:33;3470:42;3458:55;;;3528:18;;;3548:22;;;3525:46;3522:72;;;3574:18;;:::i;:::-;3614:10;3610:2;3603:22;3643:6;3634:15;;3673:6;3665;3658:22;3713:3;3704:6;3699:3;3695:16;3692:25;3689:45;;;3730:1;3727;3720:12;3689:45;3780:6;3775:3;3768:4;3760:6;3756:17;3743:44;3835:1;3828:4;3819:6;3811;3807:19;3803:30;3796:41;;;;3211:632;;;;;:::o;3848:451::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;4026:9;4013:23;4059:18;4051:6;4048:30;4045:50;;;4091:1;4088;4081:12;4045:50;4114:22;;4167:4;4159:13;;4155:27;-1:-1:-1;4145:55:1;;4196:1;4193;4186:12;4145:55;4219:74;4285:7;4280:2;4267:16;4262:2;4258;4254:11;4219:74;:::i;4304:186::-;4363:6;4416:2;4404:9;4395:7;4391:23;4387:32;4384:52;;;4432:1;4429;4422:12;4384:52;4455:29;4474:9;4455:29;:::i;4495:315::-;4560:6;4568;4621:2;4609:9;4600:7;4596:23;4592:32;4589:52;;;4637:1;4634;4627:12;4589:52;4660:29;4679:9;4660:29;:::i;:::-;4650:39;;4739:2;4728:9;4724:18;4711:32;4752:28;4774:5;4752:28;:::i;:::-;4799:5;4789:15;;;4495:315;;;;;:::o;4815:667::-;4910:6;4918;4926;4934;4987:3;4975:9;4966:7;4962:23;4958:33;4955:53;;;5004:1;5001;4994:12;4955:53;5027:29;5046:9;5027:29;:::i;:::-;5017:39;;5075:38;5109:2;5098:9;5094:18;5075:38;:::i;:::-;5065:48;;5160:2;5149:9;5145:18;5132:32;5122:42;;5215:2;5204:9;5200:18;5187:32;5242:18;5234:6;5231:30;5228:50;;;5274:1;5271;5264:12;5228:50;5297:22;;5350:4;5342:13;;5338:27;-1:-1:-1;5328:55:1;;5379:1;5376;5369:12;5328:55;5402:74;5468:7;5463:2;5450:16;5445:2;5441;5437:11;5402:74;:::i;:::-;5392:84;;;4815:667;;;;;;;:::o;5487:260::-;5555:6;5563;5616:2;5604:9;5595:7;5591:23;5587:32;5584:52;;;5632:1;5629;5622:12;5584:52;5655:29;5674:9;5655:29;:::i;:::-;5645:39;;5703:38;5737:2;5726:9;5722:18;5703:38;:::i;:::-;5693:48;;5487:260;;;;;:::o;5752:380::-;5831:1;5827:12;;;;5874;;;5895:61;;5949:4;5941:6;5937:17;5927:27;;5895:61;6002:2;5994:6;5991:14;5971:18;5968:38;5965:161;;6048:10;6043:3;6039:20;6036:1;6029:31;6083:4;6080:1;6073:15;6111:4;6108:1;6101:15;5965:161;;5752:380;;;:::o;6137:356::-;6339:2;6321:21;;;6358:18;;;6351:30;6417:34;6412:2;6397:18;;6390:62;6484:2;6469:18;;6137:356::o;6807:245::-;6874:6;6927:2;6915:9;6906:7;6902:23;6898:32;6895:52;;;6943:1;6940;6933:12;6895:52;6975:9;6969:16;6994:28;7016:5;6994:28;:::i;7769:127::-;7830:10;7825:3;7821:20;7818:1;7811:31;7861:4;7858:1;7851:15;7885:4;7882:1;7875:15;7901:128;7941:3;7972:1;7968:6;7965:1;7962:13;7959:39;;;7978:18;;:::i;:::-;-1:-1:-1;8014:9:1;;7901:128::o;8369:168::-;8409:7;8475:1;8471;8467:6;8463:14;8460:1;8457:21;8452:1;8445:9;8438:17;8434:45;8431:71;;;8482:18;;:::i;:::-;-1:-1:-1;8522:9:1;;8369:168::o;8895:398::-;9097:2;9079:21;;;9136:2;9116:18;;;9109:30;9175:34;9170:2;9155:18;;9148:62;-1:-1:-1;;;9241:2:1;9226:18;;9219:32;9283:3;9268:19;;8895:398::o;9959:185::-;10001:3;10039:5;10033:12;10054:52;10099:6;10094:3;10087:4;10080:5;10076:16;10054:52;:::i;:::-;10122:16;;;;;9959:185;-1:-1:-1;;9959:185:1:o;10267:1433::-;10645:3;10674:1;10707:6;10701:13;10737:3;10759:1;10787:9;10783:2;10779:18;10769:28;;10847:2;10836:9;10832:18;10869;10859:61;;10913:4;10905:6;10901:17;10891:27;;10859:61;10939:2;10987;10979:6;10976:14;10956:18;10953:38;10950:165;;-1:-1:-1;;;11014:33:1;;11070:4;11067:1;11060:15;11100:4;11021:3;11088:17;10950:165;11131:18;11158:104;;;;11276:1;11271:320;;;;11124:467;;11158:104;-1:-1:-1;;11191:24:1;;11179:37;;11236:16;;;;-1:-1:-1;11158:104:1;;11271:320;9787:1;9780:14;;;9824:4;9811:18;;11366:1;11380:165;11394:6;11391:1;11388:13;11380:165;;;11472:14;;11459:11;;;11452:35;11515:16;;;;11409:10;;11380:165;;;11384:3;;11574:6;11569:3;11565:16;11558:23;;11124:467;;;;;;;11607:87;11632:61;11658:34;11688:3;-1:-1:-1;;;9905:16:1;;9946:1;9937:11;;9840:114;11658:34;11650:6;11632:61;:::i;:::-;-1:-1:-1;;;10209:20:1;;10254:1;10245:11;;10149:113;11607:87;11600:94;10267:1433;-1:-1:-1;;;;;10267:1433:1:o;13807:135::-;13846:3;13867:17;;;13864:43;;13887:18;;:::i;:::-;-1:-1:-1;13934:1:1;13923:13;;13807:135::o;13947:127::-;14008:10;14003:3;13999:20;13996:1;13989:31;14039:4;14036:1;14029:15;14063:4;14060:1;14053:15;14079:120;14119:1;14145;14135:35;;14150:18;;:::i;:::-;-1:-1:-1;14184:9:1;;14079:120::o;14204:125::-;14244:4;14272:1;14269;14266:8;14263:34;;;14277:18;;:::i;:::-;-1:-1:-1;14314:9:1;;14204:125::o;14334:112::-;14366:1;14392;14382:35;;14397:18;;:::i;:::-;-1:-1:-1;14431:9:1;;14334:112::o;14451:127::-;14512:10;14507:3;14503:20;14500:1;14493:31;14543:4;14540:1;14533:15;14567:4;14564:1;14557:15;14583:500;-1:-1:-1;;;;;14852:15:1;;;14834:34;;14904:15;;14899:2;14884:18;;14877:43;14951:2;14936:18;;14929:34;;;14999:3;14994:2;14979:18;;14972:31;;;14777:4;;15020:57;;15057:19;;15049:6;15020:57;:::i;:::-;15012:65;14583:500;-1:-1:-1;;;;;;14583:500:1:o;15088:249::-;15157:6;15210:2;15198:9;15189:7;15185:23;15181:32;15178:52;;;15226:1;15223;15216:12;15178:52;15258:9;15252:16;15277:30;15301:5;15277:30;:::i
Swarm Source
ipfs://37e0609936ef441e1109504bb48cd9bf589e3bc00b97b8c5f4b182d41eae0c6a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.