ERC-721
Overview
Max Total Supply
3,333 BUNNY
Holders
403
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 BUNNYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BunnyBe
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-25 */ // 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); 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; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @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: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @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 IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev 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 Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // 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. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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, _toString(tokenId))) : ''; } /** * @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 Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0) if (!_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 && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } 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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__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 {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: BunnyBe.sol pragma solidity ^0.8.7; contract BunnyBe is ERC721A, Ownable { uint256 public MAX_MINTS = 3; uint256 MAX_SUPPLY_DEV = 3333; uint256 public MAX_SUPPLY = 3333; uint256 public mintRate = 0.005 ether; string public unrevealedUri = "INSTAREVEAL"; bool public revealed = true; bool public saleIsActive = true; string public baseURI = "https://gateway.pinata.cloud/ipfs/QmdyrYgxA35qXLYN2oG13FLGQoRBLtAq5jhQ4YASBMF8B5/"; constructor(string memory _name, string memory _symbol) ERC721A(_name, _symbol) {} function mint(uint256 quantity) external payable { // _safeMint's second argument now takes in a quantity, not a tokenId. require(saleIsActive, "Sale must be active to mint"); require(quantity <= MAX_MINTS, "Exceeded the limit"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); require(msg.value >= (mintRate * quantity), "Not enough ether sent"); _safeMint(msg.sender, quantity); } function reserveMint(uint256 quantity) public onlyOwner { require(quantity <= MAX_SUPPLY_DEV, "Not enough tokens left"); _safeMint(msg.sender, quantity); } function flipSaleStatus() public onlyOwner { saleIsActive = !saleIsActive; } function flipRevealedStatus() public onlyOwner { revealed = !revealed; } function setCost(uint256 _cost) public onlyOwner { mintRate = _cost; } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(!revealed){ return unrevealedUri; } return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json")) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipRevealedStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","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":[],"name":"unrevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6003600955610d05600a819055600b9081556611c37937e08000600c5560c060405260808190526a125394d51054915591505360aa1b60a09081526200004991600d919062000154565b50600e805461ffff19166101011790556040805160808101909152605180825262001d7d602083013980516200008891600f9160209091019062000154565b503480156200009657600080fd5b5060405162001dce38038062001dce833981016040819052620000b991620002b1565b815182908290620000d290600290602085019062000154565b508051620000e890600390602084019062000154565b50506000805550620000fa3362000102565b50506200036e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000162906200031b565b90600052602060002090601f016020900481019282620001865760008555620001d1565b82601f10620001a157805160ff1916838001178555620001d1565b82800160010185558215620001d1579182015b82811115620001d1578251825591602001919060010190620001b4565b50620001df929150620001e3565b5090565b5b80821115620001df5760008155600101620001e4565b600082601f8301126200020c57600080fd5b81516001600160401b038082111562000229576200022962000358565b604051601f8301601f19908116603f0116810190828211818310171562000254576200025462000358565b816040528381526020925086838588010111156200027157600080fd5b600091505b8382101562000295578582018301518183018401529082019062000276565b83821115620002a75760008385830101525b9695505050505050565b60008060408385031215620002c557600080fd5b82516001600160401b0380821115620002dd57600080fd5b620002eb86838701620001fa565b935060208501519150808211156200030257600080fd5b506200031185828601620001fa565b9150509250929050565b600181811c908216806200033057607f821691505b602082108114156200035257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6119ff806200037e6000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063c02c1bcd11610095578063ce03ec9311610064578063ce03ec93146104c4578063e985e9c5146104d9578063eb8d244414610522578063f2fde38b1461054157600080fd5b8063c02c1bcd14610463578063c87b56dd14610478578063ca0dcf1614610498578063cce132d1146104ae57600080fd5b8063a0712d68116100d1578063a0712d68146103fb578063a22cb4651461040e578063b14a2fce1461042e578063b88d4fde1461044357600080fd5b8063715018a6146103b35780638da5cb5b146103c857806395d89b41146103e657600080fd5b806332cb6b0c1161016f578063518302271161013e57806351830227146103445780636352211e1461035e5780636c0360eb1461037e57806370a082311461039357600080fd5b806332cb6b0c146102e65780633ccfd60b146102fc57806342842e0e1461030457806344a0d68a1461032457600080fd5b8063095ea7b3116101ab578063095ea7b3146102615780631342ff4c1461028357806318160ddd146102a357806323b872dd146102c657600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611688565b610561565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105b3565b6040516101fe919061181b565b34801561023557600080fd5b506102496102443660046116c2565b610645565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c36600461165e565b610689565b005b34801561028f57600080fd5b5061028161029e3660046116c2565b61075c565b3480156102af57600080fd5b50600154600054035b6040519081526020016101fe565b3480156102d257600080fd5b506102816102e136600461150a565b6107e7565b3480156102f257600080fd5b506102b8600b5481565b6102816107f7565b34801561031057600080fd5b5061028161031f36600461150a565b61085a565b34801561033057600080fd5b5061028161033f3660046116c2565b610875565b34801561035057600080fd5b50600e546101f29060ff1681565b34801561036a57600080fd5b506102496103793660046116c2565b6108a4565b34801561038a57600080fd5b5061021c6108af565b34801561039f57600080fd5b506102b86103ae3660046114bc565b61093d565b3480156103bf57600080fd5b5061028161098c565b3480156103d457600080fd5b506008546001600160a01b0316610249565b3480156103f257600080fd5b5061021c6109c2565b6102816104093660046116c2565b6109d1565b34801561041a57600080fd5b50610281610429366004611622565b610b26565b34801561043a57600080fd5b50610281610bbc565b34801561044f57600080fd5b5061028161045e366004611546565b610bfa565b34801561046f57600080fd5b5061021c610c44565b34801561048457600080fd5b5061021c6104933660046116c2565b610c51565b3480156104a457600080fd5b506102b8600c5481565b3480156104ba57600080fd5b506102b860095481565b3480156104d057600080fd5b50610281610db8565b3480156104e557600080fd5b506101f26104f43660046114d7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561052e57600080fd5b50600e546101f290610100900460ff1681565b34801561054d57600080fd5b5061028161055c3660046114bc565b610dff565b60006301ffc9a760e01b6001600160e01b03198316148061059257506380ac58cd60e01b6001600160e01b03198316145b806105ad5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105c2906118f1565b80601f01602080910402602001604051908101604052809291908181526020018280546105ee906118f1565b801561063b5780601f106106105761010080835404028352916020019161063b565b820191906000526020600020905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b600061065082610e97565b61066d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061069482610ebe565b9050806001600160a01b0316836001600160a01b031614156106c95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610700576106e381336104f4565b610700576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0316331461078f5760405162461bcd60e51b81526004016107869061182e565b60405180910390fd5b600a548111156107da5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610786565b6107e43382610f26565b50565b6107f2838383610f44565b505050565b6008546001600160a01b031633146108215760405162461bcd60e51b81526004016107869061182e565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156107e4573d6000803e3d6000fd5b6107f283838360405180602001604052806000815250610bfa565b6008546001600160a01b0316331461089f5760405162461bcd60e51b81526004016107869061182e565b600c55565b60006105ad82610ebe565b600f80546108bc906118f1565b80601f01602080910402602001604051908101604052809291908181526020018280546108e8906118f1565b80156109355780601f1061090a57610100808354040283529160200191610935565b820191906000526020600020905b81548152906001019060200180831161091857829003601f168201915b505050505081565b60006001600160a01b038216610966576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109b65760405162461bcd60e51b81526004016107869061182e565b6109c060006110e7565b565b6060600380546105c2906118f1565b600e54610100900460ff16610a285760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610786565b600954811115610a6f5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b6044820152606401610786565b600b5481610a806001546000540390565b610a8a9190611863565b1115610ad15760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610786565b80600c54610adf919061188f565b3410156107da5760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610786565b6001600160a01b038216331415610b505760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610be65760405162461bcd60e51b81526004016107869061182e565b600e805460ff19811660ff90911615179055565b610c05848484610f44565b6001600160a01b0383163b15610c3e57610c2184848484611139565b610c3e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600d80546108bc906118f1565b6060610c5c82610e97565b610cc05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610786565b600e5460ff16610d5c57600d8054610cd7906118f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d03906118f1565b8015610d505780601f10610d2557610100808354040283529160200191610d50565b820191906000526020600020905b815481529060010190602001808311610d3357829003601f168201915b50505050509050919050565b6000600f8054610d6b906118f1565b905011610d8757604051806020016040528060008152506105ad565b600f610d9283611231565b604051602001610da3929190611723565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610de25760405162461bcd60e51b81526004016107869061182e565b600e805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610e295760405162461bcd60e51b81526004016107869061182e565b6001600160a01b038116610e8e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610786565b6107e4816110e7565b60008054821080156105ad575050600090815260046020526040902054600160e01b161590565b600081600054811015610f0d57600081815260046020526040902054600160e01b8116610f0b575b80610f04575060001901600081815260046020526040902054610ee6565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b610f4082826040518060200160405280600081525061132f565b5050565b6000610f4f82610ebe565b9050836001600160a01b0316816001600160a01b031614610f825760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610fa05750610fa085336104f4565b80610fbb575033610fb084610645565b6001600160a01b0316145b905080610fdb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661100257604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661109f576001830160008181526004602052604090205461109d57600054811461109d5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061116e9033908990889088906004016117de565b602060405180830381600087803b15801561118857600080fd5b505af19250505080156111b8575060408051601f3d908101601f191682019092526111b5918101906116a5565b60015b611213573d8080156111e6576040519150601f19603f3d011682016040523d82523d6000602084013e6111eb565b606091505b50805161120b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816112555750506040805180820190915260018152600360fc1b602082015290565b8160005b811561127f57806112698161192c565b91506112789050600a8361187b565b9150611259565b60008167ffffffffffffffff81111561129a5761129a61199d565b6040519080825280601f01601f1916602001820160405280156112c4576020820181803683370190505b5090505b8415611229576112d96001836118ae565b91506112e6600a86611947565b6112f1906030611863565b60f81b81838151811061130657611306611987565b60200101906001600160f81b031916908160001a905350611328600a8661187b565b94506112c8565b6000546001600160a01b03841661135857604051622e076360e81b815260040160405180910390fd5b826113765760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561144b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114146000878480600101955087611139565b611431576040516368d2bf6b60e11b815260040160405180910390fd5b8082106113c957826000541461144657600080fd5b611490565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061144c575b506000908155610c3e9085838684565b80356001600160a01b03811681146114b757600080fd5b919050565b6000602082840312156114ce57600080fd5b610f04826114a0565b600080604083850312156114ea57600080fd5b6114f3836114a0565b9150611501602084016114a0565b90509250929050565b60008060006060848603121561151f57600080fd5b611528846114a0565b9250611536602085016114a0565b9150604084013590509250925092565b6000806000806080858703121561155c57600080fd5b611565856114a0565b9350611573602086016114a0565b925060408501359150606085013567ffffffffffffffff8082111561159757600080fd5b818701915087601f8301126115ab57600080fd5b8135818111156115bd576115bd61199d565b604051601f8201601f19908116603f011681019083821181831017156115e5576115e561199d565b816040528281528a60208487010111156115fe57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561163557600080fd5b61163e836114a0565b91506020830135801515811461165357600080fd5b809150509250929050565b6000806040838503121561167157600080fd5b61167a836114a0565b946020939093013593505050565b60006020828403121561169a57600080fd5b8135610f04816119b3565b6000602082840312156116b757600080fd5b8151610f04816119b3565b6000602082840312156116d457600080fd5b5035919050565b600081518084526116f38160208601602086016118c5565b601f01601f19169290920160200192915050565b600081516117198185602086016118c5565b9290920192915050565b600080845481600182811c91508083168061173f57607f831692505b602080841082141561175f57634e487b7160e01b86526022600452602486fd5b8180156117735760018114611784576117b1565b60ff198616895284890196506117b1565b60008b81526020902060005b868110156117a95781548b820152908501908301611790565b505084890196505b5050505050506117d56117c48286611707565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611811908301846116db565b9695505050505050565b602081526000610f0460208301846116db565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156118765761187661195b565b500190565b60008261188a5761188a611971565b500490565b60008160001904831182151516156118a9576118a961195b565b500290565b6000828210156118c0576118c061195b565b500390565b60005b838110156118e05781810151838201526020016118c8565b83811115610c3e5750506000910152565b600181811c9082168061190557607f821691505b6020821081141561192657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119405761194061195b565b5060010190565b60008261195657611956611971565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107e457600080fdfea26469706673582212203fcf8efaa7b79d771db4fcfe431dc2e72e380147de86db87702c9efa5c6846da64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d64797259677841333571584c594e326f473133464c47516f52424c744171356a685134594153424d463842352f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000742756e6e79426500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000542554e4e59000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063c02c1bcd11610095578063ce03ec9311610064578063ce03ec93146104c4578063e985e9c5146104d9578063eb8d244414610522578063f2fde38b1461054157600080fd5b8063c02c1bcd14610463578063c87b56dd14610478578063ca0dcf1614610498578063cce132d1146104ae57600080fd5b8063a0712d68116100d1578063a0712d68146103fb578063a22cb4651461040e578063b14a2fce1461042e578063b88d4fde1461044357600080fd5b8063715018a6146103b35780638da5cb5b146103c857806395d89b41146103e657600080fd5b806332cb6b0c1161016f578063518302271161013e57806351830227146103445780636352211e1461035e5780636c0360eb1461037e57806370a082311461039357600080fd5b806332cb6b0c146102e65780633ccfd60b146102fc57806342842e0e1461030457806344a0d68a1461032457600080fd5b8063095ea7b3116101ab578063095ea7b3146102615780631342ff4c1461028357806318160ddd146102a357806323b872dd146102c657600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611688565b610561565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105b3565b6040516101fe919061181b565b34801561023557600080fd5b506102496102443660046116c2565b610645565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c36600461165e565b610689565b005b34801561028f57600080fd5b5061028161029e3660046116c2565b61075c565b3480156102af57600080fd5b50600154600054035b6040519081526020016101fe565b3480156102d257600080fd5b506102816102e136600461150a565b6107e7565b3480156102f257600080fd5b506102b8600b5481565b6102816107f7565b34801561031057600080fd5b5061028161031f36600461150a565b61085a565b34801561033057600080fd5b5061028161033f3660046116c2565b610875565b34801561035057600080fd5b50600e546101f29060ff1681565b34801561036a57600080fd5b506102496103793660046116c2565b6108a4565b34801561038a57600080fd5b5061021c6108af565b34801561039f57600080fd5b506102b86103ae3660046114bc565b61093d565b3480156103bf57600080fd5b5061028161098c565b3480156103d457600080fd5b506008546001600160a01b0316610249565b3480156103f257600080fd5b5061021c6109c2565b6102816104093660046116c2565b6109d1565b34801561041a57600080fd5b50610281610429366004611622565b610b26565b34801561043a57600080fd5b50610281610bbc565b34801561044f57600080fd5b5061028161045e366004611546565b610bfa565b34801561046f57600080fd5b5061021c610c44565b34801561048457600080fd5b5061021c6104933660046116c2565b610c51565b3480156104a457600080fd5b506102b8600c5481565b3480156104ba57600080fd5b506102b860095481565b3480156104d057600080fd5b50610281610db8565b3480156104e557600080fd5b506101f26104f43660046114d7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561052e57600080fd5b50600e546101f290610100900460ff1681565b34801561054d57600080fd5b5061028161055c3660046114bc565b610dff565b60006301ffc9a760e01b6001600160e01b03198316148061059257506380ac58cd60e01b6001600160e01b03198316145b806105ad5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105c2906118f1565b80601f01602080910402602001604051908101604052809291908181526020018280546105ee906118f1565b801561063b5780601f106106105761010080835404028352916020019161063b565b820191906000526020600020905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b600061065082610e97565b61066d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061069482610ebe565b9050806001600160a01b0316836001600160a01b031614156106c95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610700576106e381336104f4565b610700576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0316331461078f5760405162461bcd60e51b81526004016107869061182e565b60405180910390fd5b600a548111156107da5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610786565b6107e43382610f26565b50565b6107f2838383610f44565b505050565b6008546001600160a01b031633146108215760405162461bcd60e51b81526004016107869061182e565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156107e4573d6000803e3d6000fd5b6107f283838360405180602001604052806000815250610bfa565b6008546001600160a01b0316331461089f5760405162461bcd60e51b81526004016107869061182e565b600c55565b60006105ad82610ebe565b600f80546108bc906118f1565b80601f01602080910402602001604051908101604052809291908181526020018280546108e8906118f1565b80156109355780601f1061090a57610100808354040283529160200191610935565b820191906000526020600020905b81548152906001019060200180831161091857829003601f168201915b505050505081565b60006001600160a01b038216610966576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109b65760405162461bcd60e51b81526004016107869061182e565b6109c060006110e7565b565b6060600380546105c2906118f1565b600e54610100900460ff16610a285760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610786565b600954811115610a6f5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b6044820152606401610786565b600b5481610a806001546000540390565b610a8a9190611863565b1115610ad15760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610786565b80600c54610adf919061188f565b3410156107da5760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610786565b6001600160a01b038216331415610b505760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610be65760405162461bcd60e51b81526004016107869061182e565b600e805460ff19811660ff90911615179055565b610c05848484610f44565b6001600160a01b0383163b15610c3e57610c2184848484611139565b610c3e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600d80546108bc906118f1565b6060610c5c82610e97565b610cc05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610786565b600e5460ff16610d5c57600d8054610cd7906118f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d03906118f1565b8015610d505780601f10610d2557610100808354040283529160200191610d50565b820191906000526020600020905b815481529060010190602001808311610d3357829003601f168201915b50505050509050919050565b6000600f8054610d6b906118f1565b905011610d8757604051806020016040528060008152506105ad565b600f610d9283611231565b604051602001610da3929190611723565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610de25760405162461bcd60e51b81526004016107869061182e565b600e805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610e295760405162461bcd60e51b81526004016107869061182e565b6001600160a01b038116610e8e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610786565b6107e4816110e7565b60008054821080156105ad575050600090815260046020526040902054600160e01b161590565b600081600054811015610f0d57600081815260046020526040902054600160e01b8116610f0b575b80610f04575060001901600081815260046020526040902054610ee6565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b610f4082826040518060200160405280600081525061132f565b5050565b6000610f4f82610ebe565b9050836001600160a01b0316816001600160a01b031614610f825760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610fa05750610fa085336104f4565b80610fbb575033610fb084610645565b6001600160a01b0316145b905080610fdb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661100257604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661109f576001830160008181526004602052604090205461109d57600054811461109d5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061116e9033908990889088906004016117de565b602060405180830381600087803b15801561118857600080fd5b505af19250505080156111b8575060408051601f3d908101601f191682019092526111b5918101906116a5565b60015b611213573d8080156111e6576040519150601f19603f3d011682016040523d82523d6000602084013e6111eb565b606091505b50805161120b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816112555750506040805180820190915260018152600360fc1b602082015290565b8160005b811561127f57806112698161192c565b91506112789050600a8361187b565b9150611259565b60008167ffffffffffffffff81111561129a5761129a61199d565b6040519080825280601f01601f1916602001820160405280156112c4576020820181803683370190505b5090505b8415611229576112d96001836118ae565b91506112e6600a86611947565b6112f1906030611863565b60f81b81838151811061130657611306611987565b60200101906001600160f81b031916908160001a905350611328600a8661187b565b94506112c8565b6000546001600160a01b03841661135857604051622e076360e81b815260040160405180910390fd5b826113765760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561144b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114146000878480600101955087611139565b611431576040516368d2bf6b60e11b815260040160405180910390fd5b8082106113c957826000541461144657600080fd5b611490565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061144c575b506000908155610c3e9085838684565b80356001600160a01b03811681146114b757600080fd5b919050565b6000602082840312156114ce57600080fd5b610f04826114a0565b600080604083850312156114ea57600080fd5b6114f3836114a0565b9150611501602084016114a0565b90509250929050565b60008060006060848603121561151f57600080fd5b611528846114a0565b9250611536602085016114a0565b9150604084013590509250925092565b6000806000806080858703121561155c57600080fd5b611565856114a0565b9350611573602086016114a0565b925060408501359150606085013567ffffffffffffffff8082111561159757600080fd5b818701915087601f8301126115ab57600080fd5b8135818111156115bd576115bd61199d565b604051601f8201601f19908116603f011681019083821181831017156115e5576115e561199d565b816040528281528a60208487010111156115fe57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561163557600080fd5b61163e836114a0565b91506020830135801515811461165357600080fd5b809150509250929050565b6000806040838503121561167157600080fd5b61167a836114a0565b946020939093013593505050565b60006020828403121561169a57600080fd5b8135610f04816119b3565b6000602082840312156116b757600080fd5b8151610f04816119b3565b6000602082840312156116d457600080fd5b5035919050565b600081518084526116f38160208601602086016118c5565b601f01601f19169290920160200192915050565b600081516117198185602086016118c5565b9290920192915050565b600080845481600182811c91508083168061173f57607f831692505b602080841082141561175f57634e487b7160e01b86526022600452602486fd5b8180156117735760018114611784576117b1565b60ff198616895284890196506117b1565b60008b81526020902060005b868110156117a95781548b820152908501908301611790565b505084890196505b5050505050506117d56117c48286611707565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611811908301846116db565b9695505050505050565b602081526000610f0460208301846116db565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156118765761187661195b565b500190565b60008261188a5761188a611971565b500490565b60008160001904831182151516156118a9576118a961195b565b500290565b6000828210156118c0576118c061195b565b500390565b60005b838110156118e05781810151838201526020016118c8565b83811115610c3e5750506000910152565b600181811c9082168061190557607f821691505b6020821081141561192657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119405761194061195b565b5060010190565b60008261195657611956611971565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107e457600080fdfea26469706673582212203fcf8efaa7b79d771db4fcfe431dc2e72e380147de86db87702c9efa5c6846da64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000742756e6e79426500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000542554e4e59000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): BunnyBe
Arg [1] : _symbol (string): BUNNY
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 42756e6e79426500000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 42554e4e59000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
43953:2113:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18620:615;;;;;;;;;;-1:-1:-1;18620:615:0;;;;;:::i;:::-;;:::i;:::-;;;6166:14:1;;6159:22;6141:41;;6129:2;6114:18;18620:615:0;;;;;;;;23633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25701:204::-;;;;;;;;;;-1:-1:-1;25701:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5464:32:1;;;5446:51;;5434:2;5419:18;25701:204:0;5300:203:1;25161:474:0;;;;;;;;;;-1:-1:-1;25161:474:0;;;;;:::i;:::-;;:::i;:::-;;44957:178;;;;;;;;;;-1:-1:-1;44957:178:0;;;;;:::i;:::-;;:::i;17674:315::-;;;;;;;;;;-1:-1:-1;17940:12:0;;17727:7;17924:13;:28;17674:315;;;9151:25:1;;;9139:2;9124:18;17674:315:0;9005:177:1;26587:170:0;;;;;;;;;;-1:-1:-1;26587:170:0;;;;;:::i;:::-;;:::i;44068:32::-;;;;;;;;;;;;;;;;45427:114;;;:::i;26828:185::-;;;;;;;;;;-1:-1:-1;26828:185:0;;;;;:::i;:::-;;:::i;45335:84::-;;;;;;;;;;-1:-1:-1;45335:84:0;;;;;:::i;:::-;;:::i;44201:27::-;;;;;;;;;;-1:-1:-1;44201:27:0;;;;;;;;23422:144;;;;;;;;;;-1:-1:-1;23422:144:0;;;;;:::i;:::-;;:::i;44275:107::-;;;;;;;;;;;;;:::i;19299:224::-;;;;;;;;;;-1:-1:-1;19299:224:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;23802:104;;;;;;;;;;;;;:::i;44481:468::-;;;;;;:::i;:::-;;:::i;25977:308::-;;;;;;;;;;-1:-1:-1;25977:308:0;;;;;:::i;:::-;;:::i;45241:86::-;;;;;;;;;;;;;:::i;27084:396::-;;;;;;;;;;-1:-1:-1;27084:396:0;;;;;:::i;:::-;;:::i;44151:43::-;;;;;;;;;;;;;:::i;45657:404::-;;;;;;;;;;-1:-1:-1;45657:404:0;;;;;:::i;:::-;;:::i;44107:37::-;;;;;;;;;;;;;;;;43997:28;;;;;;;;;;;;;;;;45143:90;;;;;;;;;;;;;:::i;26356:164::-;;;;;;;;;;-1:-1:-1;26356:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26477:25:0;;;26453:4;26477:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26356:164;44235:31;;;;;;;;;;-1:-1:-1;44235:31:0;;;;;;;;;;;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;18620:615::-;18705:4;-1:-1:-1;;;;;;;;;19005:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19082:25:0;;;19005:102;:179;;;-1:-1:-1;;;;;;;;;;19159:25:0;;;19005:179;18985:199;18620:615;-1:-1:-1;;18620:615:0:o;23633:100::-;23687:13;23720:5;23713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23633:100;:::o;25701:204::-;25769:7;25794:16;25802:7;25794;:16::i;:::-;25789:64;;25819:34;;-1:-1:-1;;;25819:34:0;;;;;;;;;;;25789:64;-1:-1:-1;25873:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25873:24:0;;25701:204::o;25161:474::-;25234:13;25266:27;25285:7;25266:18;:27::i;:::-;25234:61;;25316:5;-1:-1:-1;;;;;25310:11:0;:2;-1:-1:-1;;;;;25310:11:0;;25306:48;;;25330:24;;-1:-1:-1;;;25330:24:0;;;;;;;;;;;25306:48;41804:10;-1:-1:-1;;;;;25371:28:0;;;25367:175;;25419:44;25436:5;41804:10;26356:164;:::i;25419:44::-;25414:128;;25491:35;;-1:-1:-1;;;25491:35:0;;;;;;;;;;;25414:128;25554:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25554:29:0;-1:-1:-1;;;;;25554:29:0;;;;;;;;;25599:28;;25554:24;;25599:28;;;;;;;25223:412;25161:474;;:::o;44957:178::-;4152:6;;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;45044:14:::1;;45032:8;:26;;45024:61;;;::::0;-1:-1:-1;;;45024:61:0;;7729:2:1;45024:61:0::1;::::0;::::1;7711:21:1::0;7768:2;7748:18;;;7741:30;-1:-1:-1;;;7787:18:1;;;7780:52;7849:18;;45024:61:0::1;7527:346:1::0;45024:61:0::1;45096:31;45106:10;45118:8;45096:9;:31::i;:::-;44957:178:::0;:::o;26587:170::-;26721:28;26731:4;26737:2;26741:7;26721:9;:28::i;:::-;26587:170;;;:::o;45427:114::-;4152:6;;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4152:6;;45485:48:::1;::::0;-1:-1:-1;;;;;4152:6:0;;;;45511:21:::1;45485:48:::0;::::1;;;::::0;::::1;::::0;;;45511:21;4152:6;45485:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;26828:185:::0;26966:39;26983:4;26989:2;26993:7;26966:39;;;;;;;;;;;;:16;:39::i;45335:84::-;4152:6;;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;45395:8:::1;:16:::0;45335:84::o;23422:144::-;23486:7;23529:27;23548:7;23529:18;:27::i;44275:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19299:224::-;19363:7;-1:-1:-1;;;;;19387:19:0;;19383:60;;19415:28;;-1:-1:-1;;;19415:28:0;;;;;;;;;;;19383:60;-1:-1:-1;;;;;;19461:25:0;;;;;:18;:25;;;;;;14638:13;19461:54;;19299:224::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;23802:104::-;23858:13;23891:7;23884:14;;;;;:::i;44481:468::-;44629:12;;;;;;;44621:52;;;;-1:-1:-1;;;44621:52:0;;7373:2:1;44621:52:0;;;7355:21:1;7412:2;7392:18;;;7385:30;7451:29;7431:18;;;7424:57;7498:18;;44621:52:0;7171:351:1;44621:52:0;44704:9;;44692:8;:21;;44684:52;;;;-1:-1:-1;;;44684:52:0;;7026:2:1;44684:52:0;;;7008:21:1;7065:2;7045:18;;;7038:30;-1:-1:-1;;;7084:18:1;;;7077:48;7142:18;;44684:52:0;6824:342:1;44684:52:0;44783:10;;44771:8;44755:13;17940:12;;17727:7;17924:13;:28;;17674:315;44755:13;:24;;;;:::i;:::-;:38;;44747:73;;;;-1:-1:-1;;;44747:73:0;;7729:2:1;44747:73:0;;;7711:21:1;7768:2;7748:18;;;7741:30;-1:-1:-1;;;7787:18:1;;;7780:52;7849:18;;44747:73:0;7527:346:1;44747:73:0;44864:8;44853;;:19;;;;:::i;:::-;44839:9;:34;;44831:68;;;;-1:-1:-1;;;44831:68:0;;8857:2:1;44831:68:0;;;8839:21:1;8896:2;8876:18;;;8869:30;-1:-1:-1;;;8915:18:1;;;8908:51;8976:18;;44831:68:0;8655:345:1;25977:308:0;-1:-1:-1;;;;;26076:31:0;;41804:10;26076:31;26072:61;;;26116:17;;-1:-1:-1;;;26116:17:0;;;;;;;;;;;26072:61;41804:10;26146:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26146:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26146:60:0;;;;;;;;;;26222:55;;6141:41:1;;;26146:49:0;;41804:10;26222:55;;6114:18:1;26222:55:0;;;;;;;25977:308;;:::o;45241:86::-;4152:6;;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;45311:8:::1;::::0;;-1:-1:-1;;45299:20:0;::::1;45311:8;::::0;;::::1;45310:9;45299:20;::::0;;45241:86::o;27084:396::-;27251:28;27261:4;27267:2;27271:7;27251:9;:28::i;:::-;-1:-1:-1;;;;;27294:14:0;;;:19;27290:183;;27333:56;27364:4;27370:2;27374:7;27383:5;27333:30;:56::i;:::-;27328:145;;27417:40;;-1:-1:-1;;;27417:40:0;;;;;;;;;;;27328:145;27084:396;;;;:::o;44151:43::-;;;;;;;:::i;45657:404::-;45730:13;45764:16;45772:7;45764;:16::i;:::-;45756:76;;;;-1:-1:-1;;;45756:76:0;;8441:2:1;45756:76:0;;;8423:21:1;8480:2;8460:18;;;8453:30;8519:34;8499:18;;;8492:62;-1:-1:-1;;;8570:18:1;;;8563:45;8625:19;;45756:76:0;8239:411:1;45756:76:0;45847:8;;;;45843:60;;45878:13;45871:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45657:404;;;:::o;45843:60::-;45954:1;45936:7;45930:21;;;;;:::i;:::-;;;:25;:102;;;;;;;;;;;;;;;;;45982:7;45991:25;46008:7;45991:16;:25::i;:::-;45965:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45923:109;45657:404;-1:-1:-1;;45657:404:0:o;45143:90::-;4152:6;;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;45213:12:::1;::::0;;-1:-1:-1;;45197:28:0;::::1;45213:12;::::0;;;::::1;;;45212:13;45197:28:::0;;::::1;;::::0;;45143:90::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;6619:2:1;5069:73:0::1;::::0;::::1;6601:21:1::0;6658:2;6638:18;;;6631:30;6697:34;6677:18;;;6670:62;-1:-1:-1;;;6748:18:1;;;6741:36;6794:19;;5069:73:0::1;6417:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;27735:273::-:0;27792:4;27882:13;;27872:7;:23;27829:152;;;;-1:-1:-1;;27933:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27933:43:0;:48;;27735:273::o;20937:1129::-;21004:7;21039;21141:13;;21134:4;:20;21130:869;;;21179:14;21196:23;;;:17;:23;;;;;;-1:-1:-1;;;21285:23:0;;21281:699;;21804:113;21811:11;21804:113;;-1:-1:-1;;;21882:6:0;21864:25;;;;:17;:25;;;;;;21804:113;;;21950:6;20937:1129;-1:-1:-1;;;20937:1129:0:o;21281:699::-;21156:843;21130:869;22027:31;;-1:-1:-1;;;22027:31:0;;;;;;;;;;;28092:104;28161:27;28171:2;28175:8;28161:27;;;;;;;;;;;;:9;:27::i;:::-;28092:104;;:::o;32974:2515::-;33089:27;33119;33138:7;33119:18;:27::i;:::-;33089:57;;33204:4;-1:-1:-1;;;;;33163:45:0;33179:19;-1:-1:-1;;;;;33163:45:0;;33159:86;;33217:28;;-1:-1:-1;;;33217:28:0;;;;;;;;;;;33159:86;33258:22;41804:10;-1:-1:-1;;;;;33284:27:0;;;;:87;;-1:-1:-1;33328:43:0;33345:4;41804:10;26356:164;:::i;33328:43::-;33284:147;;;-1:-1:-1;41804:10:0;33388:20;33400:7;33388:11;:20::i;:::-;-1:-1:-1;;;;;33388:43:0;;33284:147;33258:174;;33450:17;33445:66;;33476:35;;-1:-1:-1;;;33476:35:0;;;;;;;;;;;33445:66;-1:-1:-1;;;;;33526:16:0;;33522:52;;33551:23;;-1:-1:-1;;;33551:23:0;;;;;;;;;;;33522:52;33703:24;;;;:15;:24;;;;;;;;33696:31;;-1:-1:-1;;;;;;33696:31:0;;;-1:-1:-1;;;;;34095:24:0;;;;;:18;:24;;;;;34093:26;;-1:-1:-1;;34093:26:0;;;34164:22;;;;;;;34162:24;;-1:-1:-1;34162:24:0;;;34457:26;;;:17;:26;;;;;-1:-1:-1;;;34545:15:0;15292:3;34545:41;34503:84;;:128;;34457:174;;;34751:46;;34747:626;;34855:1;34845:11;;34823:19;34978:30;;;:17;:30;;;;;;34974:384;;35116:13;;35101:11;:28;35097:242;;35263:30;;;;:17;:30;;;;;:52;;;35097:242;34804:569;34747:626;35420:7;35416:2;-1:-1:-1;;;;;35401:27:0;35410:4;-1:-1:-1;;;;;35401:27:0;;;;;;;;;;;33078:2411;;32974:2515;;;:::o;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;39186:716::-;39370:88;;-1:-1:-1;;;39370:88:0;;39349:4;;-1:-1:-1;;;;;39370:45:0;;;;;:88;;41804:10;;39437:4;;39443:7;;39452:5;;39370:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39370:88:0;;;;;;;;-1:-1:-1;;39370:88:0;;;;;;;;;;;;:::i;:::-;;;39366:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39653:13:0;;39649:235;;39699:40;;-1:-1:-1;;;39699:40:0;;;;;;;;;;;39649:235;39842:6;39836:13;39827:6;39823:2;39819:15;39812:38;39366:529;-1:-1:-1;;;;;;39529:64:0;-1:-1:-1;;;39529:64:0;;-1:-1:-1;39366:529:0;39186:716;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;28569:2236;28692:20;28715:13;-1:-1:-1;;;;;28743:16:0;;28739:48;;28768:19;;-1:-1:-1;;;28768:19:0;;;;;;;;;;;28739:48;28802:13;28798:44;;28824:18;;-1:-1:-1;;;28824:18:0;;;;;;;;;;;28798:44;-1:-1:-1;;;;;29391:22:0;;;;;;:18;:22;;;;14775:2;29391:22;;;:70;;29429:31;29417:44;;29391:70;;;29704:31;;;:17;:31;;;;;29797:15;15292:3;29797:41;29755:84;;-1:-1:-1;29875:13:0;;15555:3;29860:56;29755:162;29704:213;;:31;;29998:23;;;;30042:14;:19;30038:635;;30082:313;30113:38;;30138:12;;-1:-1:-1;;;;;30113:38:0;;;30130:1;;30113:38;;30130:1;;30113:38;30179:69;30218:1;30222:2;30226:14;;;;;;30242:5;30179:30;:69::i;:::-;30174:174;;30284:40;;-1:-1:-1;;;30284:40:0;;;;;;;;;;;30174:174;30390:3;30375:12;:18;30082:313;;30476:12;30459:13;;:29;30455:43;;30490:8;;;30455:43;30038:635;;;30539:119;30570:40;;30595:14;;;;;-1:-1:-1;;;;;30570:40:0;;;30587:1;;30570:40;;30587:1;;30570:40;30653:3;30638:12;:18;30539:119;;30038:635;-1:-1:-1;30687:13:0;:28;;;30737:60;;30770:2;30774:12;30788:8;30737:60;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:52;;;3367:1;3364;3357:12;3319:52;-1:-1:-1;3390:23:1;;3239:180;-1:-1:-1;3239:180:1:o;3424:257::-;3465:3;3503:5;3497:12;3530:6;3525:3;3518:19;3546:63;3602:6;3595:4;3590:3;3586:14;3579:4;3572:5;3568:16;3546:63;:::i;:::-;3663:2;3642:15;-1:-1:-1;;3638:29:1;3629:39;;;;3670:4;3625:50;;3424:257;-1:-1:-1;;3424:257:1:o;3686:185::-;3728:3;3766:5;3760:12;3781:52;3826:6;3821:3;3814:4;3807:5;3803:16;3781:52;:::i;:::-;3849:16;;;;;3686:185;-1:-1:-1;;3686:185:1:o;3994:1301::-;4271:3;4300:1;4333:6;4327:13;4363:3;4385:1;4413:9;4409:2;4405:18;4395:28;;4473:2;4462:9;4458:18;4495;4485:61;;4539:4;4531:6;4527:17;4517:27;;4485:61;4565:2;4613;4605:6;4602:14;4582:18;4579:38;4576:165;;;-1:-1:-1;;;4640:33:1;;4696:4;4693:1;4686:15;4726:4;4647:3;4714:17;4576:165;4757:18;4784:104;;;;4902:1;4897:320;;;;4750:467;;4784:104;-1:-1:-1;;4817:24:1;;4805:37;;4862:16;;;;-1:-1:-1;4784:104:1;;4897:320;9260:1;9253:14;;;9297:4;9284:18;;4992:1;5006:165;5020:6;5017:1;5014:13;5006:165;;;5098:14;;5085:11;;;5078:35;5141:16;;;;5035:10;;5006:165;;;5010:3;;5200:6;5195:3;5191:16;5184:23;;4750:467;;;;;;;5233:56;5258:30;5284:3;5276:6;5258:30;:::i;:::-;-1:-1:-1;;;3936:20:1;;3981:1;3972:11;;3876:113;5233:56;5226:63;3994:1301;-1:-1:-1;;;;;3994:1301:1:o;5508:488::-;-1:-1:-1;;;;;5777:15:1;;;5759:34;;5829:15;;5824:2;5809:18;;5802:43;5876:2;5861:18;;5854:34;;;5924:3;5919:2;5904:18;;5897:31;;;5702:4;;5945:45;;5970:19;;5962:6;5945:45;:::i;:::-;5937:53;5508:488;-1:-1:-1;;;;;;5508:488:1:o;6193:219::-;6342:2;6331:9;6324:21;6305:4;6362:44;6402:2;6391:9;6387:18;6379:6;6362:44;:::i;7878:356::-;8080:2;8062:21;;;8099:18;;;8092:30;8158:34;8153:2;8138:18;;8131:62;8225:2;8210:18;;7878:356::o;9313:128::-;9353:3;9384:1;9380:6;9377:1;9374:13;9371:39;;;9390:18;;:::i;:::-;-1:-1:-1;9426:9:1;;9313:128::o;9446:120::-;9486:1;9512;9502:35;;9517:18;;:::i;:::-;-1:-1:-1;9551:9:1;;9446:120::o;9571:168::-;9611:7;9677:1;9673;9669:6;9665:14;9662:1;9659:21;9654:1;9647:9;9640:17;9636:45;9633:71;;;9684:18;;:::i;:::-;-1:-1:-1;9724:9:1;;9571:168::o;9744:125::-;9784:4;9812:1;9809;9806:8;9803:34;;;9817:18;;:::i;:::-;-1:-1:-1;9854:9:1;;9744:125::o;9874:258::-;9946:1;9956:113;9970:6;9967:1;9964:13;9956:113;;;10046:11;;;10040:18;10027:11;;;10020:39;9992:2;9985:10;9956:113;;;10087:6;10084:1;10081:13;10078:48;;;-1:-1:-1;;10122:1:1;10104:16;;10097:27;9874:258::o;10137:380::-;10216:1;10212:12;;;;10259;;;10280:61;;10334:4;10326:6;10322:17;10312:27;;10280:61;10387:2;10379:6;10376:14;10356:18;10353:38;10350:161;;;10433:10;10428:3;10424:20;10421:1;10414:31;10468:4;10465:1;10458:15;10496:4;10493:1;10486:15;10350:161;;10137:380;;;:::o;10522:135::-;10561:3;-1:-1:-1;;10582:17:1;;10579:43;;;10602:18;;:::i;:::-;-1:-1:-1;10649:1:1;10638:13;;10522:135::o;10662:112::-;10694:1;10720;10710:35;;10725:18;;:::i;:::-;-1:-1:-1;10759:9:1;;10662:112::o;10779:127::-;10840:10;10835:3;10831:20;10828:1;10821:31;10871:4;10868:1;10861:15;10895:4;10892:1;10885:15;10911:127;10972:10;10967:3;10963:20;10960:1;10953:31;11003:4;11000:1;10993:15;11027:4;11024:1;11017:15;11043:127;11104:10;11099:3;11095:20;11092:1;11085:31;11135:4;11132:1;11125:15;11159:4;11156:1;11149:15;11175:127;11236:10;11231:3;11227:20;11224:1;11217:31;11267:4;11264:1;11257:15;11291:4;11288:1;11281:15;11307:131;-1:-1:-1;;;;;;11381:32:1;;11371:43;;11361:71;;11428:1;11425;11418:12
Swarm Source
ipfs://3fcf8efaa7b79d771db4fcfe431dc2e72e380147de86db87702c9efa5c6846da
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.