Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
4,444 ESTATES
Holders
663
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 ESTATESLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Estate
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "./ERC721ABurnable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; /** _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ /\ \ /\ \ /\ \ /\ \ /\ \ /\ \ /\ \ /\ \ /\ \ /\ \ /::\ \ /::\____\ /::\ \ /::\ \ /::\ \ /::\ \ /::\ \ /::\ \ /::\ \ /::\ \ \:::\ \ /:::/ / /::::\ \ /::::\ \ /::::\ \ \:::\ \ /::::\ \ \:::\ \ /::::\ \ /::::\ \ \:::\ \ /:::/ / /::::::\ \ /::::::\ \ /::::::\ \ \:::\ \ /::::::\ \ \:::\ \ /::::::\ \ /::::::\ \ \:::\ \ /:::/ / /:::/\:::\ \ /:::/\:::\ \ /:::/\:::\ \ \:::\ \ /:::/\:::\ \ \:::\ \ /:::/\:::\ \ /:::/\:::\ \ \:::\ \ /:::/____/ /:::/__\:::\ \ /:::/__\:::\ \ /:::/__\:::\ \ \:::\ \ /:::/__\:::\ \ \:::\ \ /:::/__\:::\ \ /:::/__\:::\ \ /::::\ \ /::::\ \ /::::\ \:::\ \ /::::\ \:::\ \ \:::\ \:::\ \ /::::\ \ /::::\ \:::\ \ /::::\ \ /::::\ \:::\ \ \:::\ \:::\ \ /::::::\ \ /::::::\ \ _____ /::::::\ \:::\ \ /::::::\ \:::\ \ ___\:::\ \:::\ \ /::::::\ \ /::::::\ \:::\ \ /::::::\ \ /::::::\ \:::\ \ ___\:::\ \:::\ \ /:::/\:::\ \ /:::/\:::\ \ /\ \ /:::/\:::\ \:::\ \ /:::/\:::\ \:::\ \ /\ \:::\ \:::\ \ /:::/\:::\ \ /:::/\:::\ \:::\ \ /:::/\:::\ \ /:::/\:::\ \:::\ \ /\ \:::\ \:::\ \ /:::/ \:::\____\/:::/ \:::\ /::\____\/:::/__\:::\ \:::\____\ /:::/__\:::\ \:::\____\/::\ \:::\ \:::\____\ /:::/ \:::\____\/:::/ \:::\ \:::\____\ /:::/ \:::\____\/:::/__\:::\ \:::\____\/::\ \:::\ \:::\____\ /:::/ \::/ /\::/ \:::\ /:::/ /\:::\ \:::\ \::/ / \:::\ \:::\ \::/ /\:::\ \:::\ \::/ / /:::/ \::/ /\::/ \:::\ /:::/ / /:::/ \::/ /\:::\ \:::\ \::/ /\:::\ \:::\ \::/ / /:::/ / \/____/ \/____/ \:::\/:::/ / \:::\ \:::\ \/____/ \:::\ \:::\ \/____/ \:::\ \:::\ \/____/ /:::/ / \/____/ \/____/ \:::\/:::/ / /:::/ / \/____/ \:::\ \:::\ \/____/ \:::\ \:::\ \/____/ /:::/ / \::::::/ / \:::\ \:::\ \ \:::\ \:::\ \ \:::\ \:::\ \ /:::/ / \::::::/ / /:::/ / \:::\ \:::\ \ \:::\ \:::\ \ /:::/ / \::::/ / \:::\ \:::\____\ \:::\ \:::\____\ \:::\ \:::\____\ /:::/ / \::::/ / /:::/ / \:::\ \:::\____\ \:::\ \:::\____\ \::/ / /:::/ / \:::\ \::/ / \:::\ \::/ / \:::\ /:::/ / \::/ / /:::/ / \::/ / \:::\ \::/ / \:::\ /:::/ / \/____/ /:::/ / \:::\ \/____/ \:::\ \/____/ \:::\/:::/ / \/____/ /:::/ / \/____/ \:::\ \/____/ \:::\/:::/ / /:::/ / \:::\ \ \:::\ \ \::::::/ / /:::/ / \:::\ \ \::::::/ / /:::/ / \:::\____\ \:::\____\ \::::/ / /:::/ / \:::\____\ \::::/ / \::/ / \::/ / \::/ / \::/ / \::/ / \::/ / \::/ / \/____/ \/____/ \/____/ \/____/ \/____/ \/____/ \/____/ * @title The Estates ERC721ABurnable * Standard ERC721ABurnable with burn to breed functionality, mint to stake and breeding from staked */ interface IStaking { function stakeMint(uint256 startTokenId, address user, uint256 _vol) external; function setStake(uint64 tokenId, address user) external; function setGroupStake(uint64[] memory tokenId, address user) external; } interface IEquity { function burn(address _from, uint256 _amount) external; } contract Estate is ERC721ABurnable, Ownable { using Address for address; using ECDSA for bytes32; using Strings for uint256; IEquity public equityContract; IStaking public stakingContract; // || SUPPLY || // total that will ever be generated including all four generations, and including those that will be burned uint256 public maxGenesis = 8888; // how much will be sold in each minting batch uint256 public maxBatch = 2222; // || MINT LIMITS || // max mints in total per wallet per batch uint public ADDRESS_MAX_MINTS = 6; // max OG and WL mints per wallet per batch uint public OG_MAX_MINTS = 2; uint public PSL_MAX_MINTS = 1; // mappings of batch - address - number minted mapping (uint256 => mapping (address => uint256)) public numberOfWLMintsOnAddress; mapping (uint256 => mapping (address => uint256)) public numberOfPublicMintsOnAddress; // || SALE STATE CONFIG || // wallet used to sign private mints address public whitelistAdmin; // used to limit where public can be minted from uint256 public publicSaleKey; // which stages of sale are active bool public WLSaleActive; bool public publicSaleActive; // 1-4 mints for the entire collection uint256 public mintingPhase = 1; // Pricing uint256 public WLPrice = 0.15 ether; uint256 public PublicPrice = 0.2 ether; // || UPGRADING (breeding) || bool public upgradesActive; event Upgraded(uint256 newEstate, uint256 parent1, uint256 parent2); uint256 baseUpgradeCost = 1800 ether; /** * @dev Keeps track of gen of each Estate because breeding won't be sequential * 0 - Gen1 * 1 - Gen2 * 2 - Gen3 * 3 - Gen4 */ mapping(uint256 => uint256) public estateGeneration; // || META CONFIG || string private baseURI; string private contURI; event Donation(uint256 amount); constructor( address _whitelistAdmin ) ERC721A("The Estates", "ESTATES") { whitelistAdmin = _whitelistAdmin; } /** *********************************** **/ /** ********* Internal Functions ****** **/ /** *********************************** **/ function isContract(address account) internal view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } modifier estateOwner(uint256 estateId) { require(ownerOf(estateId) == msg.sender, "Cannot interact with a Estates you do not own"); _; } function _isvalidsig( bytes32 data, bytes memory signature, address signerAddress ) private pure returns (bool) { return data.toEthSignedMessageHash().recover(signature) == signerAddress; } // override start token to 1. function _startTokenId() internal view virtual override returns (uint256) { return 1; } /** *********************************** **/ /** ********* Minting Functions ******* **/ /** *********************************** **/ // used to mint Estate #1 to allow Opensea setup before WL mints, and for airdrop if necessary function adminMint (address _address, uint256 _vol) external onlyOwner { require(_totalMinted() + _vol <= maxGenesis,"Purchase would exceed max supply of Genesis Estates"); require(_totalMinted() + _vol <= maxBatch*mintingPhase,"Purchase would exceed max supply of Estates in this phase."); _safeMint(_address, _vol); } function donate (uint256 _amount) external payable { require(msg.value == 0.0001 ether*_amount); emit Donation(_amount); } // option 0 = OG // option 1 = PSL // privateMint is used by two types of WL, OG (2 mints each), PSL (1 mint). function privateMint( address _contractAddress, // address of this contract uint256 _vol, //how many to mint uint256 _option, // whether i am OG '0' or PSL '1' bool _mintToStake, // whether to stake immediately during minting bytes memory _signature ) external payable { require(isContract(msg.sender) == false, "Cannot mint from contract"); require(WLSaleActive, "Presale must be active to mint"); require(WLPrice * _vol == msg.value,"Ether value sent is not correct"); if (_option == 0){ // can mint 2 require(numberOfWLMintsOnAddress[mintingPhase][msg.sender] + _vol <= OG_MAX_MINTS , "Already minted your max OG WL amount"); } else { // can mint 1 require(numberOfWLMintsOnAddress[mintingPhase][msg.sender] + _vol <= PSL_MAX_MINTS , "Already minted your max PSL WL amount"); } numberOfWLMintsOnAddress[mintingPhase][msg.sender] += _vol; require(_totalMinted() + _vol <= maxGenesis,"Purchase would exceed max supply of Genesis Estates"); require(_totalMinted() + _vol <= maxBatch*mintingPhase,"Purchase would exceed max supply of Estates in this phase."); require( _isvalidsig( keccak256( abi.encodePacked( _contractAddress, msg.sender, _option ) ), _signature, whitelistAdmin ), "Signature was not valid" ); if (_mintToStake){ // mint directly to the staking contract and assign token to actual owner _safeMint(address(stakingContract),_vol); stakingContract.stakeMint(_currentIndex-_vol, msg.sender, _vol); } else { _safeMint(msg.sender, _vol); } } // Public fixed price mint to capture any WL mint that didn't sell.. function publicMint(uint256 _vol, bool _mintToStake, uint256 callerPublicSaleKey) external payable { require(isContract(msg.sender) == false, "Cannot mint from contract"); require(publicSaleActive, "Public sale is not yet active"); require(publicSaleKey == callerPublicSaleKey,"called with incorrect public sale key"); require(_totalMinted() + _vol <= maxGenesis,"Purchase would exceed max supply of Genesis Estates"); require(_totalMinted() + _vol <= maxBatch*mintingPhase,"Purchase would exceed max supply of Estates in this phase."); require(numberOfPublicMintsOnAddress[mintingPhase][msg.sender] + numberOfWLMintsOnAddress[mintingPhase][msg.sender] + _vol <= ADDRESS_MAX_MINTS, "Amount to be minted would exceed maximum per address."); require(PublicPrice * _vol == msg.value,"Eth amount sent is not enough."); numberOfPublicMintsOnAddress[mintingPhase][msg.sender] += _vol; if (_mintToStake){ _safeMint(address(stakingContract),_vol); stakingContract.stakeMint(_currentIndex-_vol, msg.sender, _vol); } else { _safeMint(msg.sender, _vol); } } /** *********************************** **/ /** ********* Upgrading / 'Breeding' ********* **/ /** *********************************** **/ // Generations breakdown // Gen 2 costs 1800 to create // Gen 3 costs 4320 to create // Gen 4 costs 10800 to create // WARNING: CALLING THIS FUNCTION WILL PERMANENTLY DESTROY TWO ESTATES NFTs function Upgrade(uint256 estate1, uint256 estate2) external estateOwner(estate1) estateOwner(estate2) { require(upgradesActive, "Upgrading is not currently active"); require(estateGeneration[estate1] == estateGeneration[estate2], "Two estates of the same generation required to upgrade"); require(estateGeneration[estate1] < 3, "4th generation estates cannot be upgraded."); uint burnprice = baseUpgradeCost; if (estateGeneration[estate1] == 1) { burnprice = burnprice*12/5; } if (estateGeneration[estate1] == 2) { burnprice = burnprice*6; } equityContract.burn(msg.sender,burnprice); _burn(estate1); _burn(estate2); // record the generation of the baby, required for staking and breeding estateGeneration[_currentIndex] = estateGeneration[estate1]+1; _safeMint(msg.sender, 1); emit Upgraded(_currentIndex-1, estate1, estate2); } /** *********************************** **/ /** ********* Staking ********* **/ /** *********************************** **/ function Stake(uint64 tokenId) external { stakingContract.setStake(tokenId, msg.sender); safeTransferFrom(msg.sender,address(stakingContract),uint256(tokenId)); } function groupStake(uint64[] memory tokenIds) external { stakingContract.setGroupStake(tokenIds, msg.sender); for (uint64 i = 0; i < tokenIds.length; ++i) { safeTransferFrom(msg.sender,address(stakingContract),uint256(tokenIds[i])); } } /** *********************************** **/ /** ********* Sale State Functions ******* **/ /** *********************************** **/ // view sale states function getSaleState() public view returns (bool, bool, uint256) { return (WLSaleActive, publicSaleActive, mintingPhase); } // SALE OWNER FUNCTIONS // set sale states function togglePrivateSale(bool state) external onlyOwner { WLSaleActive = state; } function togglePublicSale(uint256 saleKey, bool state) external onlyOwner { publicSaleActive = state; publicSaleKey = saleKey; } // mint phases broken into 4, with 2222 supply cap each function setMintingPhase(uint256 newPhase) external onlyOwner { require(newPhase <= 4 && newPhase >= 1, "Wrong minting phase"); mintingPhase = newPhase; } // set the wallet used to sign WL mints function setWLAdmin(address _whitelistAdmin) external onlyOwner { whitelistAdmin = _whitelistAdmin; } // Permanently Lower Supply in event of non-mint out function lowerSupply(uint256 newSupply) external onlyOwner { require(newSupply < maxGenesis, "Cannot increase supply of tokens"); maxGenesis = newSupply; } // Change the max batch size to alter minting phase size function setMaxBatch(uint256 newBatchSize) external onlyOwner { maxBatch = newBatchSize; } function setAddressMaxMints(uint256 newAddressMaxMints) external onlyOwner { ADDRESS_MAX_MINTS = newAddressMaxMints; } function setOGMaxMints(uint256 newWLMaxMints) external onlyOwner { OG_MAX_MINTS = newWLMaxMints; } // adjust WL price function setWLPrice(uint256 newPrice) external onlyOwner { WLPrice = newPrice; } // adjust WL price function setPublicPrice(uint256 newPrice) external onlyOwner { PublicPrice = newPrice; } /** *********************************** **/ /** ********* Other Owner Functions ********* **/ /** *********************************** **/ // enable or disable breeding function toggleUpgrades(bool state) external onlyOwner { upgradesActive = state; } function withdraw() external onlyOwner { require(address(this).balance > 0, "No balance to withdraw"); uint256 contractBalance = address(this).balance; _withdraw(address(0x92654837dAF31303D87d39BE71b4565088E875B2), contractBalance * 50/100); _withdraw(address(0xA32f146226EF206137a090E6481EF283Aa9DbADB), contractBalance * 50/100); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function setContractURI(string memory uri) public onlyOwner { contURI = uri; } // Set Staking contract function setStakingContract(address address_) external onlyOwner { stakingContract = IStaking(address_); } // Set $Equity contract function setEquityContract(address address_) external onlyOwner { equityContract = IEquity(address_); } /** *********************************** **/ /** ********* View Functions ********* **/ /** *********************************** **/ //base url for returning info about an individual adventurer function _baseURI() internal view override returns (string memory) { return baseURI; } //base url for returning info about the token collection contract function contractURI() external view returns (string memory) { return contURI; } /* Added to return all token ids held by owner */ // never call on-chain, very expensive! function tokensOfOwner(address owner) external view returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return _ownershipOf(tokenId); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721ABurnable.sol'; import './ERC721A.sol'; /** * @title ERC721A Burnable Token * @dev ERC721A Token that can be irreversibly burned (destroyed). */ abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual override { _burn(tokenId, true); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of an ERC721ABurnable compliant contract. */ interface IERC721ABurnable is IERC721A { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ 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(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURIr = _baseURI(); return bytes(baseURIr).length != 0 ? string(abi.encodePacked(baseURIr, tokenId.toString(),".json")) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * 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(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_whitelistAdmin","type":"address"}],"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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Donation","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newEstate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"parent1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"parent2","type":"uint256"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"ADDRESS_MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PSL_MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"tokenId","type":"uint64"}],"name":"Stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"estate1","type":"uint256"},{"internalType":"uint256","name":"estate2","type":"uint256"}],"name":"Upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_vol","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"equityContract","outputs":[{"internalType":"contract IEquity","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"estateGeneration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"tokenIds","type":"uint64[]"}],"name":"groupStake","outputs":[],"stateMutability":"nonpayable","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":"newSupply","type":"uint256"}],"name":"lowerSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"numberOfPublicMintsOnAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"numberOfWLMintsOnAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"},{"internalType":"uint256","name":"_vol","type":"uint256"},{"internalType":"uint256","name":"_option","type":"uint256"},{"internalType":"bool","name":"_mintToStake","type":"bool"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"privateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_vol","type":"uint256"},{"internalType":"bool","name":"_mintToStake","type":"bool"},{"internalType":"uint256","name":"callerPublicSaleKey","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleKey","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAddressMaxMints","type":"uint256"}],"name":"setAddressMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setEquityContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBatchSize","type":"uint256"}],"name":"setMaxBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPhase","type":"uint256"}],"name":"setMintingPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newWLMaxMints","type":"uint256"}],"name":"setOGMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelistAdmin","type":"address"}],"name":"setWLAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWLPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingContract","outputs":[{"internalType":"contract IStaking","name":"","type":"address"}],"stateMutability":"view","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":"bool","name":"state","type":"bool"}],"name":"togglePrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"saleKey","type":"uint256"},{"internalType":"bool","name":"state","type":"bool"}],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"toggleUpgrades","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"upgradesActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526122b8600b556108ae600c556006600d556002600e556001600f556001601555670214e8348c4f00006016556702c68af0bb140000601755686194049f30f72000006019553480156200005657600080fd5b506040516200456638038062004566833981016040819052620000799162000212565b604080518082018252600b81526a546865204573746174657360a81b6020808301918252835180850190945260078452664553544154455360c81b908401528151919291620000cb916002916200016c565b508051620000e19060039060208401906200016c565b5050600160005550620000f4336200011a565b601280546001600160a01b0319166001600160a01b039290921691909117905562000281565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017a9062000244565b90600052602060002090601f0160209004810192826200019e5760008555620001e9565b82601f10620001b957805160ff1916838001178555620001e9565b82800160010185558215620001e9579182015b82811115620001e9578251825591602001919060010190620001cc565b50620001f7929150620001fb565b5090565b5b80821115620001f75760008155600101620001fc565b6000602082840312156200022557600080fd5b81516001600160a01b03811681146200023d57600080fd5b9392505050565b600181811c908216806200025957607f821691505b602082108114156200027b57634e487b7160e01b600052602260045260246000fd5b50919050565b6142d580620002916000396000f3fe6080604052600436106103c35760003560e01c80637eb65af2116101f2578063c71538161161010d578063e985e9c5116100a0578063f2fde38b1161006f578063f2fde38b14610b8d578063f6a5b8e614610bad578063fd42b68914610bcd578063fe2e93ae14610bed57600080fd5b8063e985e9c514610af1578063eb0ebb5114610b3a578063ee99205c14610b5a578063f14faf6f14610b7a57600080fd5b8063dc49d5c2116100dc578063dc49d5c214610a86578063e58306f914610aa6578063e6cfefd314610ac6578063e8a3d48514610adc57600080fd5b8063c715381614610a06578063c87b56dd14610a26578063c8c926f014610a46578063dc33e68114610a6657600080fd5b80639dd373b911610185578063b88d4fde11610154578063b88d4fde14610987578063bc8893b4146109a7578063bf1d85fb146109c6578063c6275255146109e657600080fd5b80639dd373b914610911578063a22cb46514610931578063a3d99acc14610951578063b0a04d3d1461097157600080fd5b80639231ab2a116101c15780639231ab2a14610872578063938e3d7b146108c957806393ae5276146108e957806395d89b41146108fc57600080fd5b80637eb65af2146107e75780638355aebf146108075780638462151c146108275780638da5cb5b1461085457600080fd5b80634adbe551116102e25780636352211e11610275578063715018a611610244578063715018a61461078257806375d0ac56146107975780637bf65c12146107b75780637e5ac09a146107d157600080fd5b80636352211e146106f457806367765b87146107145780636ccac45c1461072a57806370a082311461076257600080fd5b806355f804b3116102b157806355f804b3146106925780635c065600146106b25780635fabe446146106c85780636131285a146106de57600080fd5b80634adbe551146106185780634b306a351461063857806351808318146106525780635423ef471461067257600080fd5b806324129aaa1161035a5780633e2e2c1c116103295780633e2e2c1c146105955780633ee6352e146105ab57806342842e0e146105d857806342966c68146105f857600080fd5b806324129aaa1461051257806325bdb2a814610525578063300b23d8146105605780633ccfd60b1461058057600080fd5b80630a2230a4116103965780630a2230a41461047957806318160ddd146104bf57806318f34b0f146104dc57806323b872dd146104f257600080fd5b806301ffc9a7146103c857806306fdde03146103fd578063081812fc1461041f578063095ea7b314610457575b600080fd5b3480156103d457600080fd5b506103e86103e3366004613ad8565b610c0d565b60405190151581526020015b60405180910390f35b34801561040957600080fd5b50610412610caa565b6040516103f49190613b4d565b34801561042b57600080fd5b5061043f61043a366004613b60565b610d3c565b6040516001600160a01b0390911681526020016103f4565b34801561046357600080fd5b50610477610472366004613b95565b610d99565b005b34801561048557600080fd5b506104b1610494366004613bbf565b601160209081526000928352604080842090915290825290205481565b6040519081526020016103f4565b3480156104cb57600080fd5b5060015460005403600019016104b1565b3480156104e857600080fd5b506104b1600d5481565b3480156104fe57600080fd5b5061047761050d366004613beb565b610e59565b610477610520366004613c37565b610e64565b34801561053157600080fd5b506014546015546040805160ff80851615158252610100909404909316151560208401528201526060016103f4565b34801561056c57600080fd5b5061047761057b366004613b60565b6112a8565b34801561058c57600080fd5b506104776112f5565b3480156105a157600080fd5b506104b160135481565b3480156105b757600080fd5b506104b16105c6366004613b60565b601a6020526000908152604090205481565b3480156105e457600080fd5b506104776105f3366004613beb565b6113ea565b34801561060457600080fd5b50610477610613366004613b60565b611405565b34801561062457600080fd5b5060125461043f906001600160a01b031681565b34801561064457600080fd5b506018546103e89060ff1681565b34801561065e57600080fd5b5061047761066d366004613cbb565b611410565b34801561067e57600080fd5b5061047761068d366004613b60565b611504565b34801561069e57600080fd5b506104776106ad366004613dc0565b6115af565b3480156106be57600080fd5b506104b160175481565b3480156106d457600080fd5b506104b1600b5481565b3480156106ea57600080fd5b506104b1600e5481565b34801561070057600080fd5b5061043f61070f366004613b60565b61160a565b34801561072057600080fd5b506104b1600c5481565b34801561073657600080fd5b506104b1610745366004613bbf565b601060209081526000928352604080842090915290825290205481565b34801561076e57600080fd5b506104b161077d366004613e09565b61161c565b34801561078e57600080fd5b50610477611684565b3480156107a357600080fd5b506104776107b2366004613b60565b6116d8565b3480156107c357600080fd5b506014546103e89060ff1681565b3480156107dd57600080fd5b506104b160155481565b3480156107f357600080fd5b50610477610802366004613e09565b611725565b34801561081357600080fd5b5060095461043f906001600160a01b031681565b34801561083357600080fd5b50610847610842366004613e09565b61178f565b6040516103f49190613e24565b34801561086057600080fd5b506008546001600160a01b031661043f565b34801561087e57600080fd5b5061089261088d366004613b60565b6118d9565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff1690820152918101511515908201526060016103f4565b3480156108d557600080fd5b506104776108e4366004613dc0565b6118ff565b6104776108f7366004613e7c565b61195a565b34801561090857600080fd5b50610412611e58565b34801561091d57600080fd5b5061047761092c366004613e09565b611e67565b34801561093d57600080fd5b5061047761094c366004613eee565b611ed1565b34801561095d57600080fd5b5061047761096c366004613f18565b611f80565b34801561097d57600080fd5b506104b160165481565b34801561099357600080fd5b506104776109a2366004613f33565b612028565b3480156109b357600080fd5b506014546103e890610100900460ff1681565b3480156109d257600080fd5b506104776109e1366004613b60565b612079565b3480156109f257600080fd5b50610477610a01366004613b60565b6120c6565b348015610a1257600080fd5b50610477610a21366004613b60565b612113565b348015610a3257600080fd5b50610412610a41366004613b60565b6121b1565b348015610a5257600080fd5b50610477610a61366004613f9b565b61224f565b348015610a7257600080fd5b506104b1610a81366004613e09565b6122b4565b348015610a9257600080fd5b50610477610aa1366004613fbe565b6122e8565b348015610ab257600080fd5b50610477610ac1366004613b95565b612343565b348015610ad257600080fd5b506104b1600f5481565b348015610ae857600080fd5b506104126124c0565b348015610afd57600080fd5b506103e8610b0c366004613fd9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610b4657600080fd5b50610477610b55366004614003565b6124cf565b348015610b6657600080fd5b50600a5461043f906001600160a01b031681565b610477610b88366004613b60565b6128b4565b348015610b9957600080fd5b50610477610ba8366004613e09565b612905565b348015610bb957600080fd5b50610477610bc8366004613b60565b6129d2565b348015610bd957600080fd5b50610477610be8366004613fbe565b612a1f565b348015610bf957600080fd5b50610477610c08366004613e09565b612a7a565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480610c7057506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ca457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060028054610cb990614025565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce590614025565b8015610d325780601f10610d0757610100808354040283529160200191610d32565b820191906000526020600020905b815481529060010190602001808311610d1557829003601f168201915b5050505050905090565b6000610d4782612ae4565b610d7d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610da48261160a565b9050806001600160a01b0316836001600160a01b03161415610df2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610e125750610e108133610b0c565b155b15610e49576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e54838383612b1d565b505050565b610e54838383612b79565b333b15610eb85760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e742066726f6d20636f6e74726163740000000000000060448201526064015b60405180910390fd5b601454610100900460ff16610f0f5760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c65206973206e6f7420796574206163746976650000006044820152606401610eaf565b8060135414610f865760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201527f65206b65790000000000000000000000000000000000000000000000000000006064820152608401610eaf565b600b5483610f976000546000190190565b610fa19190614076565b11156110155760405162461bcd60e51b815260206004820152603360248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f662047656e657369732045737461746573000000000000000000000000006064820152608401610eaf565b601554600c54611025919061408e565b836110336000546000190190565b61103d9190614076565b11156110b15760405162461bcd60e51b815260206004820152603a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f66204573746174657320696e20746869732070686173652e0000000000006064820152608401610eaf565b600d54601554600081815260106020908152604080832033808552908352818420549484526011835281842090845290915290205485916110f191614076565b6110fb9190614076565b111561116f5760405162461bcd60e51b815260206004820152603560248201527f416d6f756e7420746f206265206d696e74656420776f756c642065786365656460448201527f206d6178696d756d2070657220616464726573732e00000000000000000000006064820152608401610eaf565b348360175461117e919061408e565b146111cb5760405162461bcd60e51b815260206004820152601e60248201527f45746820616d6f756e742073656e74206973206e6f7420656e6f7567682e00006044820152606401610eaf565b6015546000908152601160209081526040808320338452909152812080548592906111f7908490614076565b9091555050811561129e57600a54611218906001600160a01b031684612d99565b600a546000546001600160a01b039091169063517c57d99061123b9086906140ad565b6040516001600160e01b031960e084901b168152600481019190915233602482015260448101869052606401600060405180830381600087803b15801561128157600080fd5b505af1158015611295573d6000803e3d6000fd5b50505050505050565b610e543384612d99565b6008546001600160a01b031633146112f05760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b600c55565b6008546001600160a01b0316331461133d5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b6000471161138d5760405162461bcd60e51b815260206004820152601660248201527f4e6f2062616c616e636520746f207769746864726177000000000000000000006044820152606401610eaf565b476113c27392654837daf31303d87d39be71b4565088e875b260646113b384603261408e565b6113bd91906140da565b612db3565b6113e773a32f146226ef206137a090e6481ef283aa9dbadb60646113b384603261408e565b50565b610e5483838360405180602001604052806000815250612028565b6113e7816001612e56565b600a546040517f9c21d6b10000000000000000000000000000000000000000000000000000000081526001600160a01b0390911690639c21d6b19061145b90849033906004016140ee565b600060405180830381600087803b15801561147557600080fd5b505af1158015611489573d6000803e3d6000fd5b5050505060005b81518167ffffffffffffffff161015611500576114f033600a60009054906101000a90046001600160a01b0316848467ffffffffffffffff16815181106114d9576114d961414c565b602002602001015167ffffffffffffffff166113ea565b6114f981614162565b9050611490565b5050565b6008546001600160a01b0316331461154c5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b6004811115801561155e575060018110155b6115aa5760405162461bcd60e51b815260206004820152601360248201527f57726f6e67206d696e74696e67207068617365000000000000000000000000006044820152606401610eaf565b601555565b6008546001600160a01b031633146115f75760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b805161150090601b906020840190613a29565b60006116158261304c565b5192915050565b60006001600160a01b03821661165e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146116cc5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b6116d6600061318e565b565b6008546001600160a01b031633146117205760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b600e55565b6008546001600160a01b0316331461176d5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080600061179f8561161c565b905060008167ffffffffffffffff8111156117bc576117bc613c5c565b6040519080825280602002602001820160405280156117e5578160200160208202803683370190505b50604080516060810182526000808252602082018190529181019190915290915060015b8386146118cd57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16158015928201929092529250611870576118c5565b81516001600160a01b03161561188557815194505b876001600160a01b0316856001600160a01b031614156118c557808387806001019850815181106118b8576118b861414c565b6020026020010181815250505b600101611809565b50909695505050505050565b6040805160608101825260008082526020820181905291810191909152610ca48261304c565b6008546001600160a01b031633146119475760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b805161150090601c906020840190613a29565b333b156119a95760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e742066726f6d20636f6e7472616374000000000000006044820152606401610eaf565b60145460ff166119fb5760405162461bcd60e51b815260206004820152601e60248201527f50726573616c65206d7573742062652061637469766520746f206d696e7400006044820152606401610eaf565b3484601654611a0a919061408e565b14611a575760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610eaf565b82611aff57600e546015546000908152601060209081526040808320338452909152902054611a87908690614076565b1115611afa5760405162461bcd60e51b8152602060048201526024808201527f416c7265616479206d696e74656420796f7572206d6178204f4720574c20616d60448201527f6f756e74000000000000000000000000000000000000000000000000000000006064820152608401610eaf565b611b9e565b600f546015546000908152601060209081526040808320338452909152902054611b2a908690614076565b1115611b9e5760405162461bcd60e51b815260206004820152602560248201527f416c7265616479206d696e74656420796f7572206d61782050534c20574c206160448201527f6d6f756e740000000000000000000000000000000000000000000000000000006064820152608401610eaf565b601554600090815260106020908152604080832033845290915281208054869290611bca908490614076565b9091555050600b5484611be06000546000190190565b611bea9190614076565b1115611c5e5760405162461bcd60e51b815260206004820152603360248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f662047656e657369732045737461746573000000000000000000000000006064820152608401610eaf565b601554600c54611c6e919061408e565b84611c7c6000546000190190565b611c869190614076565b1115611cfa5760405162461bcd60e51b815260206004820152603a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f66204573746174657320696e20746869732070686173652e0000000000006064820152608401610eaf565b6040516bffffffffffffffffffffffff19606087811b8216602084015233901b16603482015260488101849052611d599060680160408051601f19818403018152919052805160209091012060125483906001600160a01b03166131e0565b611da55760405162461bcd60e51b815260206004820152601760248201527f5369676e617475726520776173206e6f742076616c69640000000000000000006044820152606401610eaf565b8115611e4757600a54611dc1906001600160a01b031685612d99565b600a546000546001600160a01b039091169063517c57d990611de49087906140ad565b6040516001600160e01b031960e084901b168152600481019190915233602482015260448101879052606401600060405180830381600087803b158015611e2a57600080fd5b505af1158015611e3e573d6000803e3d6000fd5b50505050611e51565b611e513385612d99565b5050505050565b606060038054610cb990614025565b6008546001600160a01b03163314611eaf5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216331415611f14576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546040517f8ee5711400000000000000000000000000000000000000000000000000000000815267ffffffffffffffff831660048201523360248201526001600160a01b0390911690638ee5711490604401600060405180830381600087803b158015611fee57600080fd5b505af1158015612002573d6000803e3d6000fd5b5050600a546113e792503391506001600160a01b031667ffffffffffffffff84166113ea565b612033848484612b79565b6001600160a01b0383163b1515801561205557506120538484848461325f565b155b15612073576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146120c15760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b600d55565b6008546001600160a01b0316331461210e5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b601755565b6008546001600160a01b0316331461215b5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b600b5481106121ac5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420696e63726561736520737570706c79206f6620746f6b656e736044820152606401610eaf565b600b55565b60606121bc82612ae4565b6121f2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006121fc613348565b905080516000141561221d5760405180602001604052806000815250612248565b8061222784613357565b60405160200161223892919061418a565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146122975760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b601480549115156101000261ff0019909216919091179055601355565b6001600160a01b03811660009081526005602052604081205468010000000000000000900467ffffffffffffffff16610ca4565b6008546001600160a01b031633146123305760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b6018805460ff1916911515919091179055565b6008546001600160a01b0316331461238b5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b600b548161239c6000546000190190565b6123a69190614076565b111561241a5760405162461bcd60e51b815260206004820152603360248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f662047656e657369732045737461746573000000000000000000000000006064820152608401610eaf565b601554600c5461242a919061408e565b816124386000546000190190565b6124429190614076565b11156124b65760405162461bcd60e51b815260206004820152603a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f66204573746174657320696e20746869732070686173652e0000000000006064820152608401610eaf565b6115008282612d99565b6060601c8054610cb990614025565b81336124da8261160a565b6001600160a01b0316146125465760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420696e746572616374207769746820612045737461746573207960448201526c37ba903237903737ba1037bbb760991b6064820152608401610eaf565b81336125518261160a565b6001600160a01b0316146125bd5760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420696e746572616374207769746820612045737461746573207960448201526c37ba903237903737ba1037bbb760991b6064820152608401610eaf565b60185460ff166126355760405162461bcd60e51b815260206004820152602160248201527f557067726164696e67206973206e6f742063757272656e746c7920616374697660448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610eaf565b6000838152601a602052604080822054868352912054146126be5760405162461bcd60e51b815260206004820152603660248201527f54776f2065737461746573206f66207468652073616d652067656e657261746960448201527f6f6e20726571756972656420746f2075706772616465000000000000000000006064820152608401610eaf565b6000848152601a60205260409020546003116127425760405162461bcd60e51b815260206004820152602a60248201527f3474682067656e65726174696f6e20657374617465732063616e6e6f7420626560448201527f2075706772616465642e000000000000000000000000000000000000000000006064820152608401610eaf565b6019546000858152601a60205260409020546001141561277657600561276982600c61408e565b61277391906140da565b90505b6000858152601a60205260409020546002141561279b5761279881600661408e565b90505b6009546040517f9dc29fac000000000000000000000000000000000000000000000000000000008152336004820152602481018390526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b15801561280057600080fd5b505af1158015612814573d6000803e3d6000fd5b5050505061282185613489565b61282a84613489565b6000858152601a6020526040902054612844906001614076565b600080548152601a602052604090205561285f336001612d99565b7f936f056112badb39ff4b5bf0d185576c15ed35d94502e37e8b6d7bfbec428854600160005461288f91906140ad565b6040805191825260208201889052810186905260600160405180910390a15050505050565b6128c481655af3107a400061408e565b34146128cf57600080fd5b6040518181527f4ad6d3cd6f9acbf734536f9812be14aded33cc8c4ae2cfbf3ff9a0a4acb337489060200160405180910390a150565b6008546001600160a01b0316331461294d5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b6001600160a01b0381166129c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610eaf565b6113e78161318e565b6008546001600160a01b03163314612a1a5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b601655565b6008546001600160a01b03163314612a675760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b6014805460ff1916911515919091179055565b6008546001600160a01b03163314612ac25760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b600081600111158015612af8575060005482105b8015610ca4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612b848261304c565b9050836001600160a01b031681600001516001600160a01b031614612bd5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b0386161480612bf35750612bf38533610b0c565b80612c0e575033612c0384610d3c565b6001600160a01b0316145b905080612c2e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416612c6e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c7a60008487612b1d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612d50576000548214612d50578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e51565b611500828260405180602001604052806000815250613494565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612e00576040519150601f19603f3d011682016040523d82523d6000602084013e612e05565b606091505b5050905080610e545760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610eaf565b6000612e618361304c565b80519091508215612ec7576000336001600160a01b0383161480612e8a5750612e8a8233610b0c565b80612ea5575033612e9a86610d3c565b6001600160a01b0316145b905080612ec557604051632ce44b5f60e11b815260040160405180910390fd5b505b612ed360008583612b1d565b6001600160a01b038082166000818152600560209081526040808320805470010000000000000000000000000000000060001967ffffffffffffffff80841691909101811667ffffffffffffffff19841681178390048216600190810183169093027fffffffffffffffff0000000000000000ffffffffffffffff0000000000000000909416179290921783558b8652600490945282852080547fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff42909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116613002576000548214613002578054602087015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b6040805160608101825260008082526020820181905291810191909152818060011115801561307c575060005481105b1561315c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061315a5780516001600160a01b0316156130f0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215613155579392505050565b6130f0565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000816001600160a01b031661324d84613247876040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b9061369b565b6001600160a01b031614949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906132949033908990889088906004016141e1565b6020604051808303816000875af19250505080156132cf575060408051601f3d908101601f191682019092526132cc9181019061421d565b60015b61332a573d8080156132fd576040519150601f19603f3d011682016040523d82523d6000602084013e613302565b606091505b508051613322576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601b8054610cb990614025565b60608161339757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156133c157806133ab8161423a565b91506133ba9050600a836140da565b915061339b565b60008167ffffffffffffffff8111156133dc576133dc613c5c565b6040519080825280601f01601f191660200182016040528015613406576020820181803683370190505b5090505b84156133405761341b6001836140ad565b9150613428600a86614255565b613433906030614076565b60f81b8183815181106134485761344861414c565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613482600a866140da565b945061340a565b6113e7816000612e56565b6000546001600160a01b0384166134d7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8261350e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15613646575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461360f600087848060010195508761325f565b61362c576040516368d2bf6b60e11b815260040160405180910390fd5b8082106135c457826000541461364157600080fd5b61368b565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210613647575b5060009081556120739085838684565b60008060006136aa85856136bf565b915091506136b78161372f565b509392505050565b6000808251604114156136f65760208301516040840151606085015160001a6136ea878285856138ea565b94509450505050613728565b82516040141561372057602083015160408401516137158683836139d7565b935093505050613728565b506000905060025b9250929050565b600081600481111561374357613743614269565b141561374c5750565b600181600481111561376057613760614269565b14156137ae5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610eaf565b60028160048111156137c2576137c2614269565b14156138105760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610eaf565b600381600481111561382457613824614269565b141561387d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610eaf565b600481600481111561389157613891614269565b14156113e75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610eaf565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561392157506000905060036139ce565b8460ff16601b1415801561393957508460ff16601c14155b1561394a57506000905060046139ce565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561399e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166139c7576000600192509250506139ce565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681613a0d60ff86901c601b614076565b9050613a1b878288856138ea565b935093505050935093915050565b828054613a3590614025565b90600052602060002090601f016020900481019282613a575760008555613a9d565b82601f10613a7057805160ff1916838001178555613a9d565b82800160010185558215613a9d579182015b82811115613a9d578251825591602001919060010190613a82565b50613aa9929150613aad565b5090565b5b80821115613aa95760008155600101613aae565b6001600160e01b0319811681146113e757600080fd5b600060208284031215613aea57600080fd5b813561224881613ac2565b60005b83811015613b10578181015183820152602001613af8565b838111156120735750506000910152565b60008151808452613b39816020860160208601613af5565b601f01601f19169290920160200192915050565b6020815260006122486020830184613b21565b600060208284031215613b7257600080fd5b5035919050565b80356001600160a01b0381168114613b9057600080fd5b919050565b60008060408385031215613ba857600080fd5b613bb183613b79565b946020939093013593505050565b60008060408385031215613bd257600080fd5b82359150613be260208401613b79565b90509250929050565b600080600060608486031215613c0057600080fd5b613c0984613b79565b9250613c1760208501613b79565b9150604084013590509250925092565b80358015158114613b9057600080fd5b600080600060608486031215613c4c57600080fd5b83359250613c1760208501613c27565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613c9b57613c9b613c5c565b604052919050565b803567ffffffffffffffff81168114613b9057600080fd5b60006020808385031215613cce57600080fd5b823567ffffffffffffffff80821115613ce657600080fd5b818501915085601f830112613cfa57600080fd5b813581811115613d0c57613d0c613c5c565b8060051b9150613d1d848301613c72565b8181529183018401918481019088841115613d3757600080fd5b938501935b83851015613d5c57613d4d85613ca3565b82529385019390850190613d3c565b98975050505050505050565b600067ffffffffffffffff831115613d8257613d82613c5c565b613d95601f8401601f1916602001613c72565b9050828152838383011115613da957600080fd5b828260208301376000602084830101529392505050565b600060208284031215613dd257600080fd5b813567ffffffffffffffff811115613de957600080fd5b8201601f81018413613dfa57600080fd5b61334084823560208401613d68565b600060208284031215613e1b57600080fd5b61224882613b79565b6020808252825182820181905260009190848201906040850190845b818110156118cd57835183529284019291840191600101613e40565b600082601f830112613e6d57600080fd5b61224883833560208501613d68565b600080600080600060a08688031215613e9457600080fd5b613e9d86613b79565b94506020860135935060408601359250613eb960608701613c27565b9150608086013567ffffffffffffffff811115613ed557600080fd5b613ee188828901613e5c565b9150509295509295909350565b60008060408385031215613f0157600080fd5b613f0a83613b79565b9150613be260208401613c27565b600060208284031215613f2a57600080fd5b61224882613ca3565b60008060008060808587031215613f4957600080fd5b613f5285613b79565b9350613f6060208601613b79565b925060408501359150606085013567ffffffffffffffff811115613f8357600080fd5b613f8f87828801613e5c565b91505092959194509250565b60008060408385031215613fae57600080fd5b82359150613be260208401613c27565b600060208284031215613fd057600080fd5b61224882613c27565b60008060408385031215613fec57600080fd5b613ff583613b79565b9150613be260208401613b79565b6000806040838503121561401657600080fd5b50508035926020909101359150565b600181811c9082168061403957607f821691505b6020821081141561405a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561408957614089614060565b500190565b60008160001904831182151516156140a8576140a8614060565b500290565b6000828210156140bf576140bf614060565b500390565b634e487b7160e01b600052601260045260246000fd5b6000826140e9576140e96140c4565b500490565b604080825283519082018190526000906020906060840190828701845b8281101561413157815167ffffffffffffffff168452928401929084019060010161410b565b5050506001600160a01b039490941692019190915250919050565b634e487b7160e01b600052603260045260246000fd5b600067ffffffffffffffff8083168181141561418057614180614060565b6001019392505050565b6000835161419c818460208801613af5565b8351908301906141b0818360208801613af5565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526142136080830184613b21565b9695505050505050565b60006020828403121561422f57600080fd5b815161224881613ac2565b600060001982141561424e5761424e614060565b5060010190565b600082614264576142646140c4565b500690565b634e487b7160e01b600052602160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212203e7e83e736d8a943b3e4c0b5265b79904c3fafd81a15addfa913b2f637c4c6ab64736f6c634300080b00330000000000000000000000003bb00d55dfa3063cb886dbbfa4b65cbec286f8eb
Deployed Bytecode
0x6080604052600436106103c35760003560e01c80637eb65af2116101f2578063c71538161161010d578063e985e9c5116100a0578063f2fde38b1161006f578063f2fde38b14610b8d578063f6a5b8e614610bad578063fd42b68914610bcd578063fe2e93ae14610bed57600080fd5b8063e985e9c514610af1578063eb0ebb5114610b3a578063ee99205c14610b5a578063f14faf6f14610b7a57600080fd5b8063dc49d5c2116100dc578063dc49d5c214610a86578063e58306f914610aa6578063e6cfefd314610ac6578063e8a3d48514610adc57600080fd5b8063c715381614610a06578063c87b56dd14610a26578063c8c926f014610a46578063dc33e68114610a6657600080fd5b80639dd373b911610185578063b88d4fde11610154578063b88d4fde14610987578063bc8893b4146109a7578063bf1d85fb146109c6578063c6275255146109e657600080fd5b80639dd373b914610911578063a22cb46514610931578063a3d99acc14610951578063b0a04d3d1461097157600080fd5b80639231ab2a116101c15780639231ab2a14610872578063938e3d7b146108c957806393ae5276146108e957806395d89b41146108fc57600080fd5b80637eb65af2146107e75780638355aebf146108075780638462151c146108275780638da5cb5b1461085457600080fd5b80634adbe551116102e25780636352211e11610275578063715018a611610244578063715018a61461078257806375d0ac56146107975780637bf65c12146107b75780637e5ac09a146107d157600080fd5b80636352211e146106f457806367765b87146107145780636ccac45c1461072a57806370a082311461076257600080fd5b806355f804b3116102b157806355f804b3146106925780635c065600146106b25780635fabe446146106c85780636131285a146106de57600080fd5b80634adbe551146106185780634b306a351461063857806351808318146106525780635423ef471461067257600080fd5b806324129aaa1161035a5780633e2e2c1c116103295780633e2e2c1c146105955780633ee6352e146105ab57806342842e0e146105d857806342966c68146105f857600080fd5b806324129aaa1461051257806325bdb2a814610525578063300b23d8146105605780633ccfd60b1461058057600080fd5b80630a2230a4116103965780630a2230a41461047957806318160ddd146104bf57806318f34b0f146104dc57806323b872dd146104f257600080fd5b806301ffc9a7146103c857806306fdde03146103fd578063081812fc1461041f578063095ea7b314610457575b600080fd5b3480156103d457600080fd5b506103e86103e3366004613ad8565b610c0d565b60405190151581526020015b60405180910390f35b34801561040957600080fd5b50610412610caa565b6040516103f49190613b4d565b34801561042b57600080fd5b5061043f61043a366004613b60565b610d3c565b6040516001600160a01b0390911681526020016103f4565b34801561046357600080fd5b50610477610472366004613b95565b610d99565b005b34801561048557600080fd5b506104b1610494366004613bbf565b601160209081526000928352604080842090915290825290205481565b6040519081526020016103f4565b3480156104cb57600080fd5b5060015460005403600019016104b1565b3480156104e857600080fd5b506104b1600d5481565b3480156104fe57600080fd5b5061047761050d366004613beb565b610e59565b610477610520366004613c37565b610e64565b34801561053157600080fd5b506014546015546040805160ff80851615158252610100909404909316151560208401528201526060016103f4565b34801561056c57600080fd5b5061047761057b366004613b60565b6112a8565b34801561058c57600080fd5b506104776112f5565b3480156105a157600080fd5b506104b160135481565b3480156105b757600080fd5b506104b16105c6366004613b60565b601a6020526000908152604090205481565b3480156105e457600080fd5b506104776105f3366004613beb565b6113ea565b34801561060457600080fd5b50610477610613366004613b60565b611405565b34801561062457600080fd5b5060125461043f906001600160a01b031681565b34801561064457600080fd5b506018546103e89060ff1681565b34801561065e57600080fd5b5061047761066d366004613cbb565b611410565b34801561067e57600080fd5b5061047761068d366004613b60565b611504565b34801561069e57600080fd5b506104776106ad366004613dc0565b6115af565b3480156106be57600080fd5b506104b160175481565b3480156106d457600080fd5b506104b1600b5481565b3480156106ea57600080fd5b506104b1600e5481565b34801561070057600080fd5b5061043f61070f366004613b60565b61160a565b34801561072057600080fd5b506104b1600c5481565b34801561073657600080fd5b506104b1610745366004613bbf565b601060209081526000928352604080842090915290825290205481565b34801561076e57600080fd5b506104b161077d366004613e09565b61161c565b34801561078e57600080fd5b50610477611684565b3480156107a357600080fd5b506104776107b2366004613b60565b6116d8565b3480156107c357600080fd5b506014546103e89060ff1681565b3480156107dd57600080fd5b506104b160155481565b3480156107f357600080fd5b50610477610802366004613e09565b611725565b34801561081357600080fd5b5060095461043f906001600160a01b031681565b34801561083357600080fd5b50610847610842366004613e09565b61178f565b6040516103f49190613e24565b34801561086057600080fd5b506008546001600160a01b031661043f565b34801561087e57600080fd5b5061089261088d366004613b60565b6118d9565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff1690820152918101511515908201526060016103f4565b3480156108d557600080fd5b506104776108e4366004613dc0565b6118ff565b6104776108f7366004613e7c565b61195a565b34801561090857600080fd5b50610412611e58565b34801561091d57600080fd5b5061047761092c366004613e09565b611e67565b34801561093d57600080fd5b5061047761094c366004613eee565b611ed1565b34801561095d57600080fd5b5061047761096c366004613f18565b611f80565b34801561097d57600080fd5b506104b160165481565b34801561099357600080fd5b506104776109a2366004613f33565b612028565b3480156109b357600080fd5b506014546103e890610100900460ff1681565b3480156109d257600080fd5b506104776109e1366004613b60565b612079565b3480156109f257600080fd5b50610477610a01366004613b60565b6120c6565b348015610a1257600080fd5b50610477610a21366004613b60565b612113565b348015610a3257600080fd5b50610412610a41366004613b60565b6121b1565b348015610a5257600080fd5b50610477610a61366004613f9b565b61224f565b348015610a7257600080fd5b506104b1610a81366004613e09565b6122b4565b348015610a9257600080fd5b50610477610aa1366004613fbe565b6122e8565b348015610ab257600080fd5b50610477610ac1366004613b95565b612343565b348015610ad257600080fd5b506104b1600f5481565b348015610ae857600080fd5b506104126124c0565b348015610afd57600080fd5b506103e8610b0c366004613fd9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610b4657600080fd5b50610477610b55366004614003565b6124cf565b348015610b6657600080fd5b50600a5461043f906001600160a01b031681565b610477610b88366004613b60565b6128b4565b348015610b9957600080fd5b50610477610ba8366004613e09565b612905565b348015610bb957600080fd5b50610477610bc8366004613b60565b6129d2565b348015610bd957600080fd5b50610477610be8366004613fbe565b612a1f565b348015610bf957600080fd5b50610477610c08366004613e09565b612a7a565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480610c7057506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ca457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060028054610cb990614025565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce590614025565b8015610d325780601f10610d0757610100808354040283529160200191610d32565b820191906000526020600020905b815481529060010190602001808311610d1557829003601f168201915b5050505050905090565b6000610d4782612ae4565b610d7d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610da48261160a565b9050806001600160a01b0316836001600160a01b03161415610df2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610e125750610e108133610b0c565b155b15610e49576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e54838383612b1d565b505050565b610e54838383612b79565b333b15610eb85760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e742066726f6d20636f6e74726163740000000000000060448201526064015b60405180910390fd5b601454610100900460ff16610f0f5760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c65206973206e6f7420796574206163746976650000006044820152606401610eaf565b8060135414610f865760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201527f65206b65790000000000000000000000000000000000000000000000000000006064820152608401610eaf565b600b5483610f976000546000190190565b610fa19190614076565b11156110155760405162461bcd60e51b815260206004820152603360248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f662047656e657369732045737461746573000000000000000000000000006064820152608401610eaf565b601554600c54611025919061408e565b836110336000546000190190565b61103d9190614076565b11156110b15760405162461bcd60e51b815260206004820152603a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f66204573746174657320696e20746869732070686173652e0000000000006064820152608401610eaf565b600d54601554600081815260106020908152604080832033808552908352818420549484526011835281842090845290915290205485916110f191614076565b6110fb9190614076565b111561116f5760405162461bcd60e51b815260206004820152603560248201527f416d6f756e7420746f206265206d696e74656420776f756c642065786365656460448201527f206d6178696d756d2070657220616464726573732e00000000000000000000006064820152608401610eaf565b348360175461117e919061408e565b146111cb5760405162461bcd60e51b815260206004820152601e60248201527f45746820616d6f756e742073656e74206973206e6f7420656e6f7567682e00006044820152606401610eaf565b6015546000908152601160209081526040808320338452909152812080548592906111f7908490614076565b9091555050811561129e57600a54611218906001600160a01b031684612d99565b600a546000546001600160a01b039091169063517c57d99061123b9086906140ad565b6040516001600160e01b031960e084901b168152600481019190915233602482015260448101869052606401600060405180830381600087803b15801561128157600080fd5b505af1158015611295573d6000803e3d6000fd5b50505050505050565b610e543384612d99565b6008546001600160a01b031633146112f05760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b600c55565b6008546001600160a01b0316331461133d5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b6000471161138d5760405162461bcd60e51b815260206004820152601660248201527f4e6f2062616c616e636520746f207769746864726177000000000000000000006044820152606401610eaf565b476113c27392654837daf31303d87d39be71b4565088e875b260646113b384603261408e565b6113bd91906140da565b612db3565b6113e773a32f146226ef206137a090e6481ef283aa9dbadb60646113b384603261408e565b50565b610e5483838360405180602001604052806000815250612028565b6113e7816001612e56565b600a546040517f9c21d6b10000000000000000000000000000000000000000000000000000000081526001600160a01b0390911690639c21d6b19061145b90849033906004016140ee565b600060405180830381600087803b15801561147557600080fd5b505af1158015611489573d6000803e3d6000fd5b5050505060005b81518167ffffffffffffffff161015611500576114f033600a60009054906101000a90046001600160a01b0316848467ffffffffffffffff16815181106114d9576114d961414c565b602002602001015167ffffffffffffffff166113ea565b6114f981614162565b9050611490565b5050565b6008546001600160a01b0316331461154c5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b6004811115801561155e575060018110155b6115aa5760405162461bcd60e51b815260206004820152601360248201527f57726f6e67206d696e74696e67207068617365000000000000000000000000006044820152606401610eaf565b601555565b6008546001600160a01b031633146115f75760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b805161150090601b906020840190613a29565b60006116158261304c565b5192915050565b60006001600160a01b03821661165e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146116cc5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b6116d6600061318e565b565b6008546001600160a01b031633146117205760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b600e55565b6008546001600160a01b0316331461176d5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080600061179f8561161c565b905060008167ffffffffffffffff8111156117bc576117bc613c5c565b6040519080825280602002602001820160405280156117e5578160200160208202803683370190505b50604080516060810182526000808252602082018190529181019190915290915060015b8386146118cd57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16158015928201929092529250611870576118c5565b81516001600160a01b03161561188557815194505b876001600160a01b0316856001600160a01b031614156118c557808387806001019850815181106118b8576118b861414c565b6020026020010181815250505b600101611809565b50909695505050505050565b6040805160608101825260008082526020820181905291810191909152610ca48261304c565b6008546001600160a01b031633146119475760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b805161150090601c906020840190613a29565b333b156119a95760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e742066726f6d20636f6e7472616374000000000000006044820152606401610eaf565b60145460ff166119fb5760405162461bcd60e51b815260206004820152601e60248201527f50726573616c65206d7573742062652061637469766520746f206d696e7400006044820152606401610eaf565b3484601654611a0a919061408e565b14611a575760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610eaf565b82611aff57600e546015546000908152601060209081526040808320338452909152902054611a87908690614076565b1115611afa5760405162461bcd60e51b8152602060048201526024808201527f416c7265616479206d696e74656420796f7572206d6178204f4720574c20616d60448201527f6f756e74000000000000000000000000000000000000000000000000000000006064820152608401610eaf565b611b9e565b600f546015546000908152601060209081526040808320338452909152902054611b2a908690614076565b1115611b9e5760405162461bcd60e51b815260206004820152602560248201527f416c7265616479206d696e74656420796f7572206d61782050534c20574c206160448201527f6d6f756e740000000000000000000000000000000000000000000000000000006064820152608401610eaf565b601554600090815260106020908152604080832033845290915281208054869290611bca908490614076565b9091555050600b5484611be06000546000190190565b611bea9190614076565b1115611c5e5760405162461bcd60e51b815260206004820152603360248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f662047656e657369732045737461746573000000000000000000000000006064820152608401610eaf565b601554600c54611c6e919061408e565b84611c7c6000546000190190565b611c869190614076565b1115611cfa5760405162461bcd60e51b815260206004820152603a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f66204573746174657320696e20746869732070686173652e0000000000006064820152608401610eaf565b6040516bffffffffffffffffffffffff19606087811b8216602084015233901b16603482015260488101849052611d599060680160408051601f19818403018152919052805160209091012060125483906001600160a01b03166131e0565b611da55760405162461bcd60e51b815260206004820152601760248201527f5369676e617475726520776173206e6f742076616c69640000000000000000006044820152606401610eaf565b8115611e4757600a54611dc1906001600160a01b031685612d99565b600a546000546001600160a01b039091169063517c57d990611de49087906140ad565b6040516001600160e01b031960e084901b168152600481019190915233602482015260448101879052606401600060405180830381600087803b158015611e2a57600080fd5b505af1158015611e3e573d6000803e3d6000fd5b50505050611e51565b611e513385612d99565b5050505050565b606060038054610cb990614025565b6008546001600160a01b03163314611eaf5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216331415611f14576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546040517f8ee5711400000000000000000000000000000000000000000000000000000000815267ffffffffffffffff831660048201523360248201526001600160a01b0390911690638ee5711490604401600060405180830381600087803b158015611fee57600080fd5b505af1158015612002573d6000803e3d6000fd5b5050600a546113e792503391506001600160a01b031667ffffffffffffffff84166113ea565b612033848484612b79565b6001600160a01b0383163b1515801561205557506120538484848461325f565b155b15612073576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146120c15760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b600d55565b6008546001600160a01b0316331461210e5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b601755565b6008546001600160a01b0316331461215b5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b600b5481106121ac5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420696e63726561736520737570706c79206f6620746f6b656e736044820152606401610eaf565b600b55565b60606121bc82612ae4565b6121f2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006121fc613348565b905080516000141561221d5760405180602001604052806000815250612248565b8061222784613357565b60405160200161223892919061418a565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146122975760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b601480549115156101000261ff0019909216919091179055601355565b6001600160a01b03811660009081526005602052604081205468010000000000000000900467ffffffffffffffff16610ca4565b6008546001600160a01b031633146123305760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b6018805460ff1916911515919091179055565b6008546001600160a01b0316331461238b5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b600b548161239c6000546000190190565b6123a69190614076565b111561241a5760405162461bcd60e51b815260206004820152603360248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f662047656e657369732045737461746573000000000000000000000000006064820152608401610eaf565b601554600c5461242a919061408e565b816124386000546000190190565b6124429190614076565b11156124b65760405162461bcd60e51b815260206004820152603a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f66204573746174657320696e20746869732070686173652e0000000000006064820152608401610eaf565b6115008282612d99565b6060601c8054610cb990614025565b81336124da8261160a565b6001600160a01b0316146125465760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420696e746572616374207769746820612045737461746573207960448201526c37ba903237903737ba1037bbb760991b6064820152608401610eaf565b81336125518261160a565b6001600160a01b0316146125bd5760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420696e746572616374207769746820612045737461746573207960448201526c37ba903237903737ba1037bbb760991b6064820152608401610eaf565b60185460ff166126355760405162461bcd60e51b815260206004820152602160248201527f557067726164696e67206973206e6f742063757272656e746c7920616374697660448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610eaf565b6000838152601a602052604080822054868352912054146126be5760405162461bcd60e51b815260206004820152603660248201527f54776f2065737461746573206f66207468652073616d652067656e657261746960448201527f6f6e20726571756972656420746f2075706772616465000000000000000000006064820152608401610eaf565b6000848152601a60205260409020546003116127425760405162461bcd60e51b815260206004820152602a60248201527f3474682067656e65726174696f6e20657374617465732063616e6e6f7420626560448201527f2075706772616465642e000000000000000000000000000000000000000000006064820152608401610eaf565b6019546000858152601a60205260409020546001141561277657600561276982600c61408e565b61277391906140da565b90505b6000858152601a60205260409020546002141561279b5761279881600661408e565b90505b6009546040517f9dc29fac000000000000000000000000000000000000000000000000000000008152336004820152602481018390526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b15801561280057600080fd5b505af1158015612814573d6000803e3d6000fd5b5050505061282185613489565b61282a84613489565b6000858152601a6020526040902054612844906001614076565b600080548152601a602052604090205561285f336001612d99565b7f936f056112badb39ff4b5bf0d185576c15ed35d94502e37e8b6d7bfbec428854600160005461288f91906140ad565b6040805191825260208201889052810186905260600160405180910390a15050505050565b6128c481655af3107a400061408e565b34146128cf57600080fd5b6040518181527f4ad6d3cd6f9acbf734536f9812be14aded33cc8c4ae2cfbf3ff9a0a4acb337489060200160405180910390a150565b6008546001600160a01b0316331461294d5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b6001600160a01b0381166129c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610eaf565b6113e78161318e565b6008546001600160a01b03163314612a1a5760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b601655565b6008546001600160a01b03163314612a675760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b6014805460ff1916911515919091179055565b6008546001600160a01b03163314612ac25760405162461bcd60e51b815260206004820181905260248201526000805160206142808339815191526044820152606401610eaf565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b600081600111158015612af8575060005482105b8015610ca4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612b848261304c565b9050836001600160a01b031681600001516001600160a01b031614612bd5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b0386161480612bf35750612bf38533610b0c565b80612c0e575033612c0384610d3c565b6001600160a01b0316145b905080612c2e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416612c6e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c7a60008487612b1d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612d50576000548214612d50578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e51565b611500828260405180602001604052806000815250613494565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612e00576040519150601f19603f3d011682016040523d82523d6000602084013e612e05565b606091505b5050905080610e545760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610eaf565b6000612e618361304c565b80519091508215612ec7576000336001600160a01b0383161480612e8a5750612e8a8233610b0c565b80612ea5575033612e9a86610d3c565b6001600160a01b0316145b905080612ec557604051632ce44b5f60e11b815260040160405180910390fd5b505b612ed360008583612b1d565b6001600160a01b038082166000818152600560209081526040808320805470010000000000000000000000000000000060001967ffffffffffffffff80841691909101811667ffffffffffffffff19841681178390048216600190810183169093027fffffffffffffffff0000000000000000ffffffffffffffff0000000000000000909416179290921783558b8652600490945282852080547fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff42909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116613002576000548214613002578054602087015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b6040805160608101825260008082526020820181905291810191909152818060011115801561307c575060005481105b1561315c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061315a5780516001600160a01b0316156130f0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215613155579392505050565b6130f0565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000816001600160a01b031661324d84613247876040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b9061369b565b6001600160a01b031614949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906132949033908990889088906004016141e1565b6020604051808303816000875af19250505080156132cf575060408051601f3d908101601f191682019092526132cc9181019061421d565b60015b61332a573d8080156132fd576040519150601f19603f3d011682016040523d82523d6000602084013e613302565b606091505b508051613322576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601b8054610cb990614025565b60608161339757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156133c157806133ab8161423a565b91506133ba9050600a836140da565b915061339b565b60008167ffffffffffffffff8111156133dc576133dc613c5c565b6040519080825280601f01601f191660200182016040528015613406576020820181803683370190505b5090505b84156133405761341b6001836140ad565b9150613428600a86614255565b613433906030614076565b60f81b8183815181106134485761344861414c565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613482600a866140da565b945061340a565b6113e7816000612e56565b6000546001600160a01b0384166134d7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8261350e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15613646575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461360f600087848060010195508761325f565b61362c576040516368d2bf6b60e11b815260040160405180910390fd5b8082106135c457826000541461364157600080fd5b61368b565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210613647575b5060009081556120739085838684565b60008060006136aa85856136bf565b915091506136b78161372f565b509392505050565b6000808251604114156136f65760208301516040840151606085015160001a6136ea878285856138ea565b94509450505050613728565b82516040141561372057602083015160408401516137158683836139d7565b935093505050613728565b506000905060025b9250929050565b600081600481111561374357613743614269565b141561374c5750565b600181600481111561376057613760614269565b14156137ae5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610eaf565b60028160048111156137c2576137c2614269565b14156138105760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610eaf565b600381600481111561382457613824614269565b141561387d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610eaf565b600481600481111561389157613891614269565b14156113e75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610eaf565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561392157506000905060036139ce565b8460ff16601b1415801561393957508460ff16601c14155b1561394a57506000905060046139ce565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561399e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166139c7576000600192509250506139ce565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681613a0d60ff86901c601b614076565b9050613a1b878288856138ea565b935093505050935093915050565b828054613a3590614025565b90600052602060002090601f016020900481019282613a575760008555613a9d565b82601f10613a7057805160ff1916838001178555613a9d565b82800160010185558215613a9d579182015b82811115613a9d578251825591602001919060010190613a82565b50613aa9929150613aad565b5090565b5b80821115613aa95760008155600101613aae565b6001600160e01b0319811681146113e757600080fd5b600060208284031215613aea57600080fd5b813561224881613ac2565b60005b83811015613b10578181015183820152602001613af8565b838111156120735750506000910152565b60008151808452613b39816020860160208601613af5565b601f01601f19169290920160200192915050565b6020815260006122486020830184613b21565b600060208284031215613b7257600080fd5b5035919050565b80356001600160a01b0381168114613b9057600080fd5b919050565b60008060408385031215613ba857600080fd5b613bb183613b79565b946020939093013593505050565b60008060408385031215613bd257600080fd5b82359150613be260208401613b79565b90509250929050565b600080600060608486031215613c0057600080fd5b613c0984613b79565b9250613c1760208501613b79565b9150604084013590509250925092565b80358015158114613b9057600080fd5b600080600060608486031215613c4c57600080fd5b83359250613c1760208501613c27565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613c9b57613c9b613c5c565b604052919050565b803567ffffffffffffffff81168114613b9057600080fd5b60006020808385031215613cce57600080fd5b823567ffffffffffffffff80821115613ce657600080fd5b818501915085601f830112613cfa57600080fd5b813581811115613d0c57613d0c613c5c565b8060051b9150613d1d848301613c72565b8181529183018401918481019088841115613d3757600080fd5b938501935b83851015613d5c57613d4d85613ca3565b82529385019390850190613d3c565b98975050505050505050565b600067ffffffffffffffff831115613d8257613d82613c5c565b613d95601f8401601f1916602001613c72565b9050828152838383011115613da957600080fd5b828260208301376000602084830101529392505050565b600060208284031215613dd257600080fd5b813567ffffffffffffffff811115613de957600080fd5b8201601f81018413613dfa57600080fd5b61334084823560208401613d68565b600060208284031215613e1b57600080fd5b61224882613b79565b6020808252825182820181905260009190848201906040850190845b818110156118cd57835183529284019291840191600101613e40565b600082601f830112613e6d57600080fd5b61224883833560208501613d68565b600080600080600060a08688031215613e9457600080fd5b613e9d86613b79565b94506020860135935060408601359250613eb960608701613c27565b9150608086013567ffffffffffffffff811115613ed557600080fd5b613ee188828901613e5c565b9150509295509295909350565b60008060408385031215613f0157600080fd5b613f0a83613b79565b9150613be260208401613c27565b600060208284031215613f2a57600080fd5b61224882613ca3565b60008060008060808587031215613f4957600080fd5b613f5285613b79565b9350613f6060208601613b79565b925060408501359150606085013567ffffffffffffffff811115613f8357600080fd5b613f8f87828801613e5c565b91505092959194509250565b60008060408385031215613fae57600080fd5b82359150613be260208401613c27565b600060208284031215613fd057600080fd5b61224882613c27565b60008060408385031215613fec57600080fd5b613ff583613b79565b9150613be260208401613b79565b6000806040838503121561401657600080fd5b50508035926020909101359150565b600181811c9082168061403957607f821691505b6020821081141561405a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561408957614089614060565b500190565b60008160001904831182151516156140a8576140a8614060565b500290565b6000828210156140bf576140bf614060565b500390565b634e487b7160e01b600052601260045260246000fd5b6000826140e9576140e96140c4565b500490565b604080825283519082018190526000906020906060840190828701845b8281101561413157815167ffffffffffffffff168452928401929084019060010161410b565b5050506001600160a01b039490941692019190915250919050565b634e487b7160e01b600052603260045260246000fd5b600067ffffffffffffffff8083168181141561418057614180614060565b6001019392505050565b6000835161419c818460208801613af5565b8351908301906141b0818360208801613af5565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526142136080830184613b21565b9695505050505050565b60006020828403121561422f57600080fd5b815161224881613ac2565b600060001982141561424e5761424e614060565b5060010190565b600082614264576142646140c4565b500690565b634e487b7160e01b600052602160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212203e7e83e736d8a943b3e4c0b5265b79904c3fafd81a15addfa913b2f637c4c6ab64736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003bb00d55dfa3063cb886dbbfa4b65cbec286f8eb
-----Decoded View---------------
Arg [0] : _whitelistAdmin (address): 0x3BB00d55DFa3063cB886dbBfA4b65CbEC286F8Eb
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003bb00d55dfa3063cb886dbbfa4b65cbec286f8eb
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.