ERC-721
NFT
Overview
Max Total Supply
666 DGXG
Holders
265
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DGXGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DeathGirlGenesis
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract DeathGirlGenesis is ERC721A, Ownable, ReentrancyGuard { // state string private base; uint256 public immutable allowedMintsPerAddress; uint256 public immutable mintPrice; uint256 public immutable collectionSize; string private placeholderURI; bool private deathlistActive; bytes32 private deathlistMerkleRoot; bool private allowlistActive; bytes32 private allowlistMerkleRoot; bool private teamActive; bytes32 private teamMerkleRoot; event UpdatedTeamList(bytes32 _old, bytes32 _new); event UpdatedTeamStatus(bool _old, bool _new); event UpdatedDeathlist(bytes32 _old, bytes32 _new); event UpdatedDeathlistStatus(bool _old, bool _new); event UpdatedAllowlist(bytes32 _old, bytes32 _new); event UpdatedAllowlistStatus(bool _old, bool _new); constructor( string memory _placeholderURI, bytes32 _teamMerkleRoot, bytes32 _deathlistMerkleRoot, bytes32 _allowlistMerkleRoot ) ERC721A("Deathgirl Genesis", "DGXG") { placeholderURI = _placeholderURI; mintPrice = 0; collectionSize = 666; allowedMintsPerAddress = 2; teamMerkleRoot = _teamMerkleRoot; deathlistMerkleRoot = _deathlistMerkleRoot; allowlistMerkleRoot = _allowlistMerkleRoot; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } // Mint function deathlistMint(bytes32[] calldata merkleProof, uint64 amount) external callerIsUser { require(deathlistActive, "Deathlist not active"); require(totalSupply() + amount < collectionSize + 1, "Hit max supply"); require(amount < allowedMintsPerAddress + 1, "The limit is 2"); require( MerkleProof.verify( merkleProof, deathlistMerkleRoot, keccak256(abi.encodePacked(_msgSender())) ), "Not on deathlist" ); require( amountMinted(msg.sender) + amount < allowedMintsPerAddress + 1, "Can't mint more than 2 total" ); _safeMint(_msgSender(), amount); } function allowlistMint(bytes32[] calldata merkleProof, uint64 amount) external callerIsUser { require(allowlistActive, "Allowlist not active"); require(totalSupply() + amount < collectionSize + 1, "Hit max supply"); require(amount < allowedMintsPerAddress + 1, "The limit is 2"); require( MerkleProof.verify( merkleProof, allowlistMerkleRoot, keccak256(abi.encodePacked(_msgSender())) ), "Not on allowlist" ); require( amountMinted(msg.sender) + amount < allowedMintsPerAddress + 1, "Can't mint more than 2 total" ); _safeMint(_msgSender(), amount); } function teamMint(bytes32[] calldata merkleProof, uint64 amount) external callerIsUser { require(teamActive, "Team mint not active"); require(totalSupply() + amount < collectionSize + 1, "Hit max supply"); require( MerkleProof.verify( merkleProof, teamMerkleRoot, keccak256(abi.encodePacked(_msgSender())) ), "Not part of the dev team" ); _safeMint(_msgSender(), amount); } // Contract Admin function setBaseURI(string memory baseURI) public onlyOwner { base = baseURI; } function enableTeam() external onlyOwner { require(!teamActive, "Team mint already active"); bool oldValue = teamActive; teamActive = true; emit UpdatedTeamStatus(oldValue, teamActive); } function disableTeam() public onlyOwner { require(teamActive, "Team mint not active"); bool oldValue = teamActive; teamActive = false; emit UpdatedTeamStatus(oldValue, teamActive); } function enableDeathlist() external onlyOwner { require(!deathlistActive, "Deathlist mint already active"); bool oldValue = deathlistActive; deathlistActive = true; emit UpdatedDeathlistStatus(oldValue, deathlistActive); } function disableDeathlist() public onlyOwner { require(deathlistActive, "Deathlist mint not active"); bool oldValue = deathlistActive; deathlistActive = false; emit UpdatedDeathlistStatus(oldValue, deathlistActive); } function enableAllowlist() external onlyOwner { require(!allowlistActive, "Allowlist mint already active"); bool oldValue = allowlistActive; allowlistActive = true; emit UpdatedDeathlistStatus(oldValue, allowlistActive); } function disableAllowlist() public onlyOwner { require(allowlistActive, "Allowlist mint not active"); bool oldValue = allowlistActive; allowlistActive = false; emit UpdatedAllowlistStatus(oldValue, allowlistActive); } function setTeamlistMerkleRoot(bytes32 _merkleRoot) public onlyOwner { bytes32 oldList = teamMerkleRoot; teamMerkleRoot = _merkleRoot; emit UpdatedTeamList(oldList, teamMerkleRoot); } function setDeathlistMerkleRoot(bytes32 _merkleRoot) public onlyOwner { bytes32 oldList = deathlistMerkleRoot; deathlistMerkleRoot = _merkleRoot; emit UpdatedTeamList(oldList, deathlistMerkleRoot); } function setAllowlistMerkleRoot(bytes32 _merkleRoot) public onlyOwner { bytes32 oldList = allowlistMerkleRoot; allowlistMerkleRoot = _merkleRoot; emit UpdatedAllowlist(oldList, allowlistMerkleRoot); } function amountMinted(address ownerAddress) public view returns (uint256) { return _numberMinted(ownerAddress); } // Getters function getMintStatus() external view returns (bool) { return deathlistActive || allowlistActive; } function teamStatus() external view returns (bool) { return teamActive; } function deathlistStatus() external view returns (bool) { return deathlistActive; } function allowlistStatus() external view returns (bool) { return allowlistActive; } function mintingFee() external view returns (uint256) { return mintPrice; } function getCollectionSize() external view returns (uint256) { return collectionSize; } function contractURI() public pure returns (string memory) { return "ipfs://Qma655xPC2HffrPUptCac9gvLzBNr6YEMZHn9kQuh7ReuD"; } // Overrides // @notice Solidity required override for _baseURI(), if you wish to // be able to set from API -> IPFS or vice versa using setBaseURI(string) function _baseURI() internal view override returns (string memory) { return base; } // @notice Override for ERC721A _startTokenId to change from default 0 -> 1 function _startTokenId() internal pure override returns (uint256) { return 1; } // @notice Override for ERC721A tokenURI function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Token doesn't exist"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, "/", Strings.toString(tokenId), ".json" ) ) : placeholderURI; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// 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 (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 (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 // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_placeholderURI","type":"string"},{"internalType":"bytes32","name":"_teamMerkleRoot","type":"bytes32"},{"internalType":"bytes32","name":"_deathlistMerkleRoot","type":"bytes32"},{"internalType":"bytes32","name":"_allowlistMerkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"_old","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"_new","type":"bytes32"}],"name":"UpdatedAllowlist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_old","type":"bool"},{"indexed":false,"internalType":"bool","name":"_new","type":"bool"}],"name":"UpdatedAllowlistStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"_old","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"_new","type":"bytes32"}],"name":"UpdatedDeathlist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_old","type":"bool"},{"indexed":false,"internalType":"bool","name":"_new","type":"bool"}],"name":"UpdatedDeathlistStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"_old","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"_new","type":"bytes32"}],"name":"UpdatedTeamList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_old","type":"bool"},{"indexed":false,"internalType":"bool","name":"_new","type":"bool"}],"name":"UpdatedTeamStatus","type":"event"},{"inputs":[],"name":"allowedMintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint64","name":"amount","type":"uint64"}],"name":"allowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowlistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"ownerAddress","type":"address"}],"name":"amountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint64","name":"amount","type":"uint64"}],"name":"deathlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deathlistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableDeathlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableDeathlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCollectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setAllowlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setDeathlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setTeamlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint64","name":"amount","type":"uint64"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040523480156200001157600080fd5b5060405162004e0838038062004e08833981810160405281019062000037919062000379565b6040518060400160405280601181526020017f44656174686769726c2047656e657369730000000000000000000000000000008152506040518060400160405280600481526020017f44475847000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb92919062000240565b508060039080519060200190620000d492919062000240565b50620000e56200016960201b60201c565b60008190555050506200010d620001016200017260201b60201c565b6200017a60201b60201c565b600160098190555083600b90805190602001906200012d92919062000240565b50600060a0818152505061029a60c081815250506002608081815250508260118190555081600d8190555080600f819055505050505062000592565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024e906200049d565b90600052602060002090601f016020900481019282620002725760008555620002be565b82601f106200028d57805160ff1916838001178555620002be565b82800160010185558215620002be579182015b82811115620002bd578251825591602001919060010190620002a0565b5b509050620002cd9190620002d1565b5090565b5b80821115620002ec576000816000905550600101620002d2565b5090565b600062000307620003018462000427565b620003fe565b9050828152602081018484840111156200032057600080fd5b6200032d84828562000467565b509392505050565b600081519050620003468162000578565b92915050565b600082601f8301126200035e57600080fd5b815162000370848260208601620002f0565b91505092915050565b600080600080608085870312156200039057600080fd5b600085015167ffffffffffffffff811115620003ab57600080fd5b620003b9878288016200034c565b9450506020620003cc8782880162000335565b9350506040620003df8782880162000335565b9250506060620003f28782880162000335565b91505092959194509250565b60006200040a6200041d565b9050620004188282620004d3565b919050565b6000604051905090565b600067ffffffffffffffff82111562000445576200044462000538565b5b620004508262000567565b9050602081019050919050565b6000819050919050565b60005b83811015620004875780820151818401526020810190506200046a565b8381111562000497576000848401525b50505050565b60006002820490506001821680620004b657607f821691505b60208210811415620004cd57620004cc62000509565b5b50919050565b620004de8262000567565b810181811067ffffffffffffffff821117156200050057620004ff62000538565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000583816200045d565b81146200058f57600080fd5b50565b60805160a05160c051614807620006016000396000818161085101528181610fe9015281816110cc015281816116ad01526121bb01526000818161150e01526115460152600081816108db01528181610a0d015281816111560152818161128801526117bd01526148076000f3fe608060405234801561001057600080fd5b50600436106102535760003560e01c8063715018a611610146578063c6a2aac8116100c3578063e48d58b111610087578063e48d58b11461063e578063e836e8e61461065c578063e8a3d48514610678578063e985e9c514610696578063f2fde38b146106c6578063f95df414146106e257610253565b8063c6a2aac8146105e6578063c87b56dd146105f0578063c9272eba14610620578063cf8e629a1461062a578063dd690f071461063457610253565b8063975097fb1161010a578063975097fb146105565780639aa1f2ad14610574578063a22cb46514610592578063b88d4fde146105ae578063c6979535146105ca57610253565b8063715018a6146104d45780637155c1ea146104de5780638da5cb5b146104fc578063941ada0e1461051a57806395d89b411461053857610253565b806342842e0e116101d457806355f804b31161019857806355f804b31461041c5780635a64ad95146104385780636352211e146104565780636817c76c1461048657806370a08231146104a457610253565b806342842e0e1461038c578063438a67e7146103a857806345c0f533146103d857806347ababf0146103f65780634f187ea91461041257610253565b80630f14b0d91161021b5780630f14b0d91461030e57806318160ddd1461032a57806323b872dd14610348578063242337fd1461036457806331d065c11461038257610253565b806301ffc9a71461025857806303f35fef1461028857806306fdde03146102a4578063081812fc146102c2578063095ea7b3146102f2575b600080fd5b610272600480360381019061026d9190613770565b6106fe565b60405161027f9190613c9a565b60405180910390f35b6102a2600480360381019061029d91906136ef565b610790565b005b6102ac610ab4565b6040516102b99190613d07565b60405180910390f35b6102dc60048036038101906102d79190613803565b610b46565b6040516102e99190613c33565b60405180910390f35b61030c600480360381019061030791906136b3565b610bc2565b005b61032860048036038101906103239190613747565b610d69565b005b610332610e32565b60405161033f9190613f69565b60405180910390f35b610362600480360381019061035d91906135ad565b610e49565b005b61036c610e59565b6040516103799190613c9a565b60405180910390f35b61038a610e70565b005b6103a660048036038101906103a191906135ad565b610fb5565b005b6103c260048036038101906103bd9190613548565b610fd5565b6040516103cf9190613f69565b60405180910390f35b6103e0610fe7565b6040516103ed9190613f69565b60405180910390f35b610410600480360381019061040b91906136ef565b61100b565b005b61041a61132f565b005b610436600480360381019061043191906137c2565b611474565b005b61044061150a565b60405161044d9190613f69565b60405180910390f35b610470600480360381019061046b9190613803565b611532565b60405161047d9190613c33565b60405180910390f35b61048e611544565b60405161049b9190613f69565b60405180910390f35b6104be60048036038101906104b99190613548565b611568565b6040516104cb9190613f69565b60405180910390f35b6104dc611621565b005b6104e66116a9565b6040516104f39190613f69565b60405180910390f35b6105046116d1565b6040516105119190613c33565b60405180910390f35b6105226116fb565b60405161052f9190613c9a565b60405180910390f35b610540611729565b60405161054d9190613d07565b60405180910390f35b61055e6117bb565b60405161056b9190613f69565b60405180910390f35b61057c6117df565b6040516105899190613c9a565b60405180910390f35b6105ac60048036038101906105a79190613677565b6117f6565b005b6105c860048036038101906105c391906135fc565b61196e565b005b6105e460048036038101906105df9190613747565b6119e1565b005b6105ee611aaa565b005b61060a60048036038101906106059190613803565b611bf0565b6040516106179190613d07565b60405180910390f35b610628611d12565b005b610632611e58565b005b61063c611f9d565b005b6106466120e3565b6040516106539190613c9a565b60405180910390f35b610676600480360381019061067191906136ef565b6120fa565b005b61068061231b565b60405161068d9190613d07565b60405180910390f35b6106b060048036038101906106ab9190613571565b61233b565b6040516106bd9190613c9a565b60405180910390f35b6106e060048036038101906106db9190613548565b6123cf565b005b6106fc60048036038101906106f79190613747565b6124c7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107895750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146107fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f590613ea9565b60405180910390fd5b600e60009054906101000a900460ff1661084d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084490613d49565b60405180910390fd5b60017f000000000000000000000000000000000000000000000000000000000000000061087a919061404e565b8167ffffffffffffffff1661088d610e32565b610897919061404e565b106108d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ce90613f49565b60405180910390fd5b60017f0000000000000000000000000000000000000000000000000000000000000000610904919061404e565b8167ffffffffffffffff161061094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094690613ec9565b60405180910390fd5b6109ca838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5461099f612590565b6040516020016109af9190613bde565b60405160208183030381529060405280519060200120612598565b610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0090613de9565b60405180910390fd5b60017f0000000000000000000000000000000000000000000000000000000000000000610a36919061404e565b8167ffffffffffffffff16610a4a33610fd5565b610a54919061404e565b10610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90613d69565b60405180910390fd5b610aaf610a9f612590565b8267ffffffffffffffff166125af565b505050565b606060028054610ac3906141dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610aef906141dd565b8015610b3c5780601f10610b1157610100808354040283529160200191610b3c565b820191906000526020600020905b815481529060010190602001808311610b1f57829003601f168201915b5050505050905090565b6000610b51826125cd565b610b87576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bcd8261262c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c35576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c546126fa565b73ffffffffffffffffffffffffffffffffffffffff1614610cb757610c8081610c7b6126fa565b61233b565b610cb6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d71612590565b73ffffffffffffffffffffffffffffffffffffffff16610d8f6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90613f09565b60405180910390fd5b6000600d54905081600d819055507f0292b07ed9bd38a0e7381e89b515d4c9898c41dba950d7f43f8691f355afc86981600d54604051610e26929190613cde565b60405180910390a15050565b6000610e3c612702565b6001546000540303905090565b610e5483838361270b565b505050565b6000600e60009054906101000a900460ff16905090565b610e78612590565b73ffffffffffffffffffffffffffffffffffffffff16610e966116d1565b73ffffffffffffffffffffffffffffffffffffffff1614610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390613f09565b60405180910390fd5b601060009054906101000a900460ff16610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290613dc9565b60405180910390fd5b6000601060009054906101000a900460ff1690506000601060006101000a81548160ff0219169083151502179055507f43e459d76e4724770c57f06163095b606fde96ff8672ef63a0cfaa2695446c3281601060009054906101000a900460ff16604051610faa929190613cb5565b60405180910390a150565b610fd08383836040518060200160405280600081525061196e565b505050565b6000610fe082612ab5565b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090613ea9565b60405180910390fd5b600c60009054906101000a900460ff166110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf90613e09565b60405180910390fd5b60017f00000000000000000000000000000000000000000000000000000000000000006110f5919061404e565b8167ffffffffffffffff16611108610e32565b611112919061404e565b10611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990613f49565b60405180910390fd5b60017f000000000000000000000000000000000000000000000000000000000000000061117f919061404e565b8167ffffffffffffffff16106111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190613ec9565b60405180910390fd5b611245838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5461121a612590565b60405160200161122a9190613bde565b60405160208183030381529060405280519060200120612598565b611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90613e89565b60405180910390fd5b60017f00000000000000000000000000000000000000000000000000000000000000006112b1919061404e565b8167ffffffffffffffff166112c533610fd5565b6112cf919061404e565b1061130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690613d69565b60405180910390fd5b61132a61131a612590565b8267ffffffffffffffff166125af565b505050565b611337612590565b73ffffffffffffffffffffffffffffffffffffffff166113556116d1565b73ffffffffffffffffffffffffffffffffffffffff16146113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613f09565b60405180910390fd5b600c60009054906101000a900460ff166113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190613e69565b60405180910390fd5b6000600c60009054906101000a900460ff1690506000600c60006101000a81548160ff0219169083151502179055507fcce5e6e5e8d8d23bc8c307cd4c4a64cd4dbd0e853fc894ea9ba3accfb291a07381600c60009054906101000a900460ff16604051611469929190613cb5565b60405180910390a150565b61147c612590565b73ffffffffffffffffffffffffffffffffffffffff1661149a6116d1565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790613f09565b60405180910390fd5b80600a90805190602001906115069291906132f8565b5050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600061153d8261262c565b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611629612590565b73ffffffffffffffffffffffffffffffffffffffff166116476116d1565b73ffffffffffffffffffffffffffffffffffffffff161461169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169490613f09565b60405180910390fd5b6116a76000612b0c565b565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600c60009054906101000a900460ff16806117245750600e60009054906101000a900460ff165b905090565b606060038054611738906141dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611764906141dd565b80156117b15780601f10611786576101008083540402835291602001916117b1565b820191906000526020600020905b81548152906001019060200180831161179457829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601060009054906101000a900460ff16905090565b6117fe6126fa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611863576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118706126fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661191d6126fa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119629190613c9a565b60405180910390a35050565b61197984848461270b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119db576119a484848484612bd2565b6119da576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6119e9612590565b73ffffffffffffffffffffffffffffffffffffffff16611a076116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490613f09565b60405180910390fd5b60006011549050816011819055507f0292b07ed9bd38a0e7381e89b515d4c9898c41dba950d7f43f8691f355afc86981601154604051611a9e929190613cde565b60405180910390a15050565b611ab2612590565b73ffffffffffffffffffffffffffffffffffffffff16611ad06116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613f09565b60405180910390fd5b600e60009054906101000a900460ff1615611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90613e49565b60405180910390fd5b6000600e60009054906101000a900460ff1690506001600e60006101000a81548160ff0219169083151502179055507fcce5e6e5e8d8d23bc8c307cd4c4a64cd4dbd0e853fc894ea9ba3accfb291a07381600e60009054906101000a900460ff16604051611be5929190613cb5565b60405180910390a150565b6060611bfb826125cd565b611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190613d29565b60405180910390fd5b6000611c44612d32565b90506000815111611cdf57600b8054611c5c906141dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611c88906141dd565b8015611cd55780601f10611caa57610100808354040283529160200191611cd5565b820191906000526020600020905b815481529060010190602001808311611cb857829003601f168201915b5050505050611d0a565b80611ce984612dc4565b604051602001611cfa929190613bf9565b6040516020818303038152906040525b915050919050565b611d1a612590565b73ffffffffffffffffffffffffffffffffffffffff16611d386116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8590613f09565b60405180910390fd5b601060009054906101000a900460ff1615611dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd590613ee9565b60405180910390fd5b6000601060009054906101000a900460ff1690506001601060006101000a81548160ff0219169083151502179055507f43e459d76e4724770c57f06163095b606fde96ff8672ef63a0cfaa2695446c3281601060009054906101000a900460ff16604051611e4d929190613cb5565b60405180910390a150565b611e60612590565b73ffffffffffffffffffffffffffffffffffffffff16611e7e6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecb90613f09565b60405180910390fd5b600e60009054906101000a900460ff16611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90613f29565b60405180910390fd5b6000600e60009054906101000a900460ff1690506000600e60006101000a81548160ff0219169083151502179055507ffdb473908b488896b1205b07b4dc9bda8dbaa0b0977f506ea8beb3e5513988e481600e60009054906101000a900460ff16604051611f92929190613cb5565b60405180910390a150565b611fa5612590565b73ffffffffffffffffffffffffffffffffffffffff16611fc36116d1565b73ffffffffffffffffffffffffffffffffffffffff1614612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090613f09565b60405180910390fd5b600c60009054906101000a900460ff1615612069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206090613e29565b60405180910390fd5b6000600c60009054906101000a900460ff1690506001600c60006101000a81548160ff0219169083151502179055507fcce5e6e5e8d8d23bc8c307cd4c4a64cd4dbd0e853fc894ea9ba3accfb291a07381600c60009054906101000a900460ff166040516120d8929190613cb5565b60405180910390a150565b6000600c60009054906101000a900460ff16905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f90613ea9565b60405180910390fd5b601060009054906101000a900460ff166121b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ae90613dc9565b60405180910390fd5b60017f00000000000000000000000000000000000000000000000000000000000000006121e4919061404e565b8167ffffffffffffffff166121f7610e32565b612201919061404e565b10612241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223890613f49565b60405180910390fd5b6122bc838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601154612291612590565b6040516020016122a19190613bde565b60405160208183030381529060405280519060200120612598565b6122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f290613da9565b60405180910390fd5b612316612306612590565b8267ffffffffffffffff166125af565b505050565b606060405180606001604052806035815260200161479d60359139905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123d7612590565b73ffffffffffffffffffffffffffffffffffffffff166123f56116d1565b73ffffffffffffffffffffffffffffffffffffffff161461244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290613f09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b290613d89565b60405180910390fd5b6124c481612b0c565b50565b6124cf612590565b73ffffffffffffffffffffffffffffffffffffffff166124ed6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614612543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253a90613f09565b60405180910390fd5b6000600f54905081600f819055507fbb72925e3cb741e20be9bfbbf0ba38553c576fb58e31a76d01aa2001a424229581600f54604051612584929190613cde565b60405180910390a15050565b600033905090565b6000826125a58584612f71565b1490509392505050565b6125c982826040518060200160405280600081525061300c565b5050565b6000816125d8612702565b111580156125e7575060005482105b8015612625575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061263b612702565b116126c3576000548110156126c25760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156126c0575b60008114156126b657600460008360019003935083815260200190815260200160002054905061268b565b80925050506126f5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b60006127168261262c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461277d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661279e6126fa565b73ffffffffffffffffffffffffffffffffffffffff1614806127cd57506127cc856127c76126fa565b61233b565b5b8061281257506127db6126fa565b73ffffffffffffffffffffffffffffffffffffffff166127fa84610b46565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061284b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128b2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128bf85858560016132c1565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6129bc866132c7565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612a46576000600184019050600060046000838152602001908152602001600020541415612a44576000548114612a43578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612aae85858560016132d1565b5050505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bf86126fa565b8786866040518563ffffffff1660e01b8152600401612c1a9493929190613c4e565b602060405180830381600087803b158015612c3457600080fd5b505af1925050508015612c6557506040513d601f19601f82011682018060405250810190612c629190613799565b60015b612cdf573d8060008114612c95576040519150601f19603f3d011682016040523d82523d6000602084013e612c9a565b606091505b50600081511415612cd7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612d41906141dd565b80601f0160208091040260200160405190810160405280929190818152602001828054612d6d906141dd565b8015612dba5780601f10612d8f57610100808354040283529160200191612dba565b820191906000526020600020905b815481529060010190602001808311612d9d57829003601f168201915b5050505050905090565b60606000821415612e0c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f6c565b600082905060005b60008214612e3e578080612e2790614240565b915050600a82612e3791906140a4565b9150612e14565b60008167ffffffffffffffff811115612e80577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612eb25781602001600182028036833780820191505090505b5090505b60008514612f6557600182612ecb91906140d5565b9150600a85612eda91906142ad565b6030612ee6919061404e565b60f81b818381518110612f22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f5e91906140a4565b9450612eb6565b8093505050505b919050565b60008082905060005b8451811015613001576000858281518110612fbe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612fe057612fd983826132d7565b9250612fed565b612fea81846132d7565b92505b508080612ff990614240565b915050612f7a565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613079576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156130b4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130c160008583866132c1565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1613126600185146132ee565b901b60a042901b613136866132c7565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461323a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131ea6000878480600101955087612bd2565b613220576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061317b57826000541461323557600080fd5b6132a5565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061323b575b8160008190555050506132bb60008583866132d1565b50505050565b50505050565b6000819050919050565b50505050565b600082600052816020526040600020905092915050565b6000819050919050565b828054613304906141dd565b90600052602060002090601f016020900481019282613326576000855561336d565b82601f1061333f57805160ff191683800117855561336d565b8280016001018555821561336d579182015b8281111561336c578251825591602001919060010190613351565b5b50905061337a919061337e565b5090565b5b8082111561339757600081600090555060010161337f565b5090565b60006133ae6133a984613fa9565b613f84565b9050828152602081018484840111156133c657600080fd5b6133d184828561419b565b509392505050565b60006133ec6133e784613fda565b613f84565b90508281526020810184848401111561340457600080fd5b61340f84828561419b565b509392505050565b60008135905061342681614712565b92915050565b60008083601f84011261343e57600080fd5b8235905067ffffffffffffffff81111561345757600080fd5b60208301915083602082028301111561346f57600080fd5b9250929050565b60008135905061348581614729565b92915050565b60008135905061349a81614740565b92915050565b6000813590506134af81614757565b92915050565b6000815190506134c481614757565b92915050565b600082601f8301126134db57600080fd5b81356134eb84826020860161339b565b91505092915050565b600082601f83011261350557600080fd5b81356135158482602086016133d9565b91505092915050565b60008135905061352d8161476e565b92915050565b60008135905061354281614785565b92915050565b60006020828403121561355a57600080fd5b600061356884828501613417565b91505092915050565b6000806040838503121561358457600080fd5b600061359285828601613417565b92505060206135a385828601613417565b9150509250929050565b6000806000606084860312156135c257600080fd5b60006135d086828701613417565b93505060206135e186828701613417565b92505060406135f28682870161351e565b9150509250925092565b6000806000806080858703121561361257600080fd5b600061362087828801613417565b945050602061363187828801613417565b93505060406136428782880161351e565b925050606085013567ffffffffffffffff81111561365f57600080fd5b61366b878288016134ca565b91505092959194509250565b6000806040838503121561368a57600080fd5b600061369885828601613417565b92505060206136a985828601613476565b9150509250929050565b600080604083850312156136c657600080fd5b60006136d485828601613417565b92505060206136e58582860161351e565b9150509250929050565b60008060006040848603121561370457600080fd5b600084013567ffffffffffffffff81111561371e57600080fd5b61372a8682870161342c565b9350935050602061373d86828701613533565b9150509250925092565b60006020828403121561375957600080fd5b60006137678482850161348b565b91505092915050565b60006020828403121561378257600080fd5b6000613790848285016134a0565b91505092915050565b6000602082840312156137ab57600080fd5b60006137b9848285016134b5565b91505092915050565b6000602082840312156137d457600080fd5b600082013567ffffffffffffffff8111156137ee57600080fd5b6137fa848285016134f4565b91505092915050565b60006020828403121561381557600080fd5b60006138238482850161351e565b91505092915050565b61383581614109565b82525050565b61384c61384782614109565b614289565b82525050565b61385b8161411b565b82525050565b61386a81614127565b82525050565b600061387b8261400b565b6138858185614021565b93506138958185602086016141aa565b61389e8161439a565b840191505092915050565b60006138b482614016565b6138be8185614032565b93506138ce8185602086016141aa565b6138d78161439a565b840191505092915050565b60006138ed82614016565b6138f78185614043565b93506139078185602086016141aa565b80840191505092915050565b6000613920601383614032565b915061392b826143b8565b602082019050919050565b6000613943601483614032565b915061394e826143e1565b602082019050919050565b6000613966601c83614032565b91506139718261440a565b602082019050919050565b6000613989602683614032565b915061399482614433565b604082019050919050565b60006139ac601883614032565b91506139b782614482565b602082019050919050565b60006139cf601483614032565b91506139da826144ab565b602082019050919050565b60006139f2601083614032565b91506139fd826144d4565b602082019050919050565b6000613a15601483614032565b9150613a20826144fd565b602082019050919050565b6000613a38601d83614032565b9150613a4382614526565b602082019050919050565b6000613a5b601d83614032565b9150613a668261454f565b602082019050919050565b6000613a7e601983614032565b9150613a8982614578565b602082019050919050565b6000613aa1601083614032565b9150613aac826145a1565b602082019050919050565b6000613ac4601e83614032565b9150613acf826145ca565b602082019050919050565b6000613ae7600e83614032565b9150613af2826145f3565b602082019050919050565b6000613b0a601883614032565b9150613b158261461c565b602082019050919050565b6000613b2d600583614043565b9150613b3882614645565b600582019050919050565b6000613b50602083614032565b9150613b5b8261466e565b602082019050919050565b6000613b73601983614032565b9150613b7e82614697565b602082019050919050565b6000613b96600e83614032565b9150613ba1826146c0565b602082019050919050565b6000613bb9600183614043565b9150613bc4826146e9565b600182019050919050565b613bd88161417d565b82525050565b6000613bea828461383b565b60148201915081905092915050565b6000613c0582856138e2565b9150613c1082613bac565b9150613c1c82846138e2565b9150613c2782613b20565b91508190509392505050565b6000602082019050613c48600083018461382c565b92915050565b6000608082019050613c63600083018761382c565b613c70602083018661382c565b613c7d6040830185613bcf565b8181036060830152613c8f8184613870565b905095945050505050565b6000602082019050613caf6000830184613852565b92915050565b6000604082019050613cca6000830185613852565b613cd76020830184613852565b9392505050565b6000604082019050613cf36000830185613861565b613d006020830184613861565b9392505050565b60006020820190508181036000830152613d2181846138a9565b905092915050565b60006020820190508181036000830152613d4281613913565b9050919050565b60006020820190508181036000830152613d6281613936565b9050919050565b60006020820190508181036000830152613d8281613959565b9050919050565b60006020820190508181036000830152613da28161397c565b9050919050565b60006020820190508181036000830152613dc28161399f565b9050919050565b60006020820190508181036000830152613de2816139c2565b9050919050565b60006020820190508181036000830152613e02816139e5565b9050919050565b60006020820190508181036000830152613e2281613a08565b9050919050565b60006020820190508181036000830152613e4281613a2b565b9050919050565b60006020820190508181036000830152613e6281613a4e565b9050919050565b60006020820190508181036000830152613e8281613a71565b9050919050565b60006020820190508181036000830152613ea281613a94565b9050919050565b60006020820190508181036000830152613ec281613ab7565b9050919050565b60006020820190508181036000830152613ee281613ada565b9050919050565b60006020820190508181036000830152613f0281613afd565b9050919050565b60006020820190508181036000830152613f2281613b43565b9050919050565b60006020820190508181036000830152613f4281613b66565b9050919050565b60006020820190508181036000830152613f6281613b89565b9050919050565b6000602082019050613f7e6000830184613bcf565b92915050565b6000613f8e613f9f565b9050613f9a828261420f565b919050565b6000604051905090565b600067ffffffffffffffff821115613fc457613fc361436b565b5b613fcd8261439a565b9050602081019050919050565b600067ffffffffffffffff821115613ff557613ff461436b565b5b613ffe8261439a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006140598261417d565b91506140648361417d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614099576140986142de565b5b828201905092915050565b60006140af8261417d565b91506140ba8361417d565b9250826140ca576140c961430d565b5b828204905092915050565b60006140e08261417d565b91506140eb8361417d565b9250828210156140fe576140fd6142de565b5b828203905092915050565b60006141148261415d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156141c85780820151818401526020810190506141ad565b838111156141d7576000848401525b50505050565b600060028204905060018216806141f557607f821691505b602082108114156142095761420861433c565b5b50919050565b6142188261439a565b810181811067ffffffffffffffff821117156142375761423661436b565b5b80604052505050565b600061424b8261417d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561427e5761427d6142de565b5b600182019050919050565b60006142948261429b565b9050919050565b60006142a6826143ab565b9050919050565b60006142b88261417d565b91506142c38361417d565b9250826142d3576142d261430d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546f6b656e20646f65736e277420657869737400000000000000000000000000600082015250565b7f416c6c6f776c697374206e6f7420616374697665000000000000000000000000600082015250565b7f43616e2774206d696e74206d6f7265207468616e203220746f74616c00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742070617274206f662074686520646576207465616d0000000000000000600082015250565b7f5465616d206d696e74206e6f7420616374697665000000000000000000000000600082015250565b7f4e6f74206f6e20616c6c6f776c69737400000000000000000000000000000000600082015250565b7f44656174686c697374206e6f7420616374697665000000000000000000000000600082015250565b7f44656174686c697374206d696e7420616c726561647920616374697665000000600082015250565b7f416c6c6f776c697374206d696e7420616c726561647920616374697665000000600082015250565b7f44656174686c697374206d696e74206e6f742061637469766500000000000000600082015250565b7f4e6f74206f6e2064656174686c69737400000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f546865206c696d69742069732032000000000000000000000000000000000000600082015250565b7f5465616d206d696e7420616c7265616479206163746976650000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416c6c6f776c697374206d696e74206e6f742061637469766500000000000000600082015250565b7f486974206d617820737570706c79000000000000000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61471b81614109565b811461472657600080fd5b50565b6147328161411b565b811461473d57600080fd5b50565b61474981614127565b811461475457600080fd5b50565b61476081614131565b811461476b57600080fd5b50565b6147778161417d565b811461478257600080fd5b50565b61478e81614187565b811461479957600080fd5b5056fe697066733a2f2f516d613635357850433248666672505570744361633967764c7a424e723659454d5a486e396b5175683752657544a2646970667358221220be1791d63b0977d4de0cc8f48404a4c0f5a1de4b8dd1c6d2a9009f718f34591c64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000080c85b2405808f8c4f21265423b0bd594d8d7d992bf8c63067471c40e35b229736e25ca0e1fcdfa9ebb17aac39bfce3b38e8755813e61a7f2333eaae0238bdb5903420a336d25c4f344cd20cfe4e2bde901e5b821ed6510b1cb4dfb6bb4f1272480000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d584d706a726d676a58734171786f566a52476739415554507a7061504a525651327a7346363859796b74736d0000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102535760003560e01c8063715018a611610146578063c6a2aac8116100c3578063e48d58b111610087578063e48d58b11461063e578063e836e8e61461065c578063e8a3d48514610678578063e985e9c514610696578063f2fde38b146106c6578063f95df414146106e257610253565b8063c6a2aac8146105e6578063c87b56dd146105f0578063c9272eba14610620578063cf8e629a1461062a578063dd690f071461063457610253565b8063975097fb1161010a578063975097fb146105565780639aa1f2ad14610574578063a22cb46514610592578063b88d4fde146105ae578063c6979535146105ca57610253565b8063715018a6146104d45780637155c1ea146104de5780638da5cb5b146104fc578063941ada0e1461051a57806395d89b411461053857610253565b806342842e0e116101d457806355f804b31161019857806355f804b31461041c5780635a64ad95146104385780636352211e146104565780636817c76c1461048657806370a08231146104a457610253565b806342842e0e1461038c578063438a67e7146103a857806345c0f533146103d857806347ababf0146103f65780634f187ea91461041257610253565b80630f14b0d91161021b5780630f14b0d91461030e57806318160ddd1461032a57806323b872dd14610348578063242337fd1461036457806331d065c11461038257610253565b806301ffc9a71461025857806303f35fef1461028857806306fdde03146102a4578063081812fc146102c2578063095ea7b3146102f2575b600080fd5b610272600480360381019061026d9190613770565b6106fe565b60405161027f9190613c9a565b60405180910390f35b6102a2600480360381019061029d91906136ef565b610790565b005b6102ac610ab4565b6040516102b99190613d07565b60405180910390f35b6102dc60048036038101906102d79190613803565b610b46565b6040516102e99190613c33565b60405180910390f35b61030c600480360381019061030791906136b3565b610bc2565b005b61032860048036038101906103239190613747565b610d69565b005b610332610e32565b60405161033f9190613f69565b60405180910390f35b610362600480360381019061035d91906135ad565b610e49565b005b61036c610e59565b6040516103799190613c9a565b60405180910390f35b61038a610e70565b005b6103a660048036038101906103a191906135ad565b610fb5565b005b6103c260048036038101906103bd9190613548565b610fd5565b6040516103cf9190613f69565b60405180910390f35b6103e0610fe7565b6040516103ed9190613f69565b60405180910390f35b610410600480360381019061040b91906136ef565b61100b565b005b61041a61132f565b005b610436600480360381019061043191906137c2565b611474565b005b61044061150a565b60405161044d9190613f69565b60405180910390f35b610470600480360381019061046b9190613803565b611532565b60405161047d9190613c33565b60405180910390f35b61048e611544565b60405161049b9190613f69565b60405180910390f35b6104be60048036038101906104b99190613548565b611568565b6040516104cb9190613f69565b60405180910390f35b6104dc611621565b005b6104e66116a9565b6040516104f39190613f69565b60405180910390f35b6105046116d1565b6040516105119190613c33565b60405180910390f35b6105226116fb565b60405161052f9190613c9a565b60405180910390f35b610540611729565b60405161054d9190613d07565b60405180910390f35b61055e6117bb565b60405161056b9190613f69565b60405180910390f35b61057c6117df565b6040516105899190613c9a565b60405180910390f35b6105ac60048036038101906105a79190613677565b6117f6565b005b6105c860048036038101906105c391906135fc565b61196e565b005b6105e460048036038101906105df9190613747565b6119e1565b005b6105ee611aaa565b005b61060a60048036038101906106059190613803565b611bf0565b6040516106179190613d07565b60405180910390f35b610628611d12565b005b610632611e58565b005b61063c611f9d565b005b6106466120e3565b6040516106539190613c9a565b60405180910390f35b610676600480360381019061067191906136ef565b6120fa565b005b61068061231b565b60405161068d9190613d07565b60405180910390f35b6106b060048036038101906106ab9190613571565b61233b565b6040516106bd9190613c9a565b60405180910390f35b6106e060048036038101906106db9190613548565b6123cf565b005b6106fc60048036038101906106f79190613747565b6124c7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107895750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146107fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f590613ea9565b60405180910390fd5b600e60009054906101000a900460ff1661084d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084490613d49565b60405180910390fd5b60017f000000000000000000000000000000000000000000000000000000000000029a61087a919061404e565b8167ffffffffffffffff1661088d610e32565b610897919061404e565b106108d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ce90613f49565b60405180910390fd5b60017f0000000000000000000000000000000000000000000000000000000000000002610904919061404e565b8167ffffffffffffffff161061094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094690613ec9565b60405180910390fd5b6109ca838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5461099f612590565b6040516020016109af9190613bde565b60405160208183030381529060405280519060200120612598565b610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0090613de9565b60405180910390fd5b60017f0000000000000000000000000000000000000000000000000000000000000002610a36919061404e565b8167ffffffffffffffff16610a4a33610fd5565b610a54919061404e565b10610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90613d69565b60405180910390fd5b610aaf610a9f612590565b8267ffffffffffffffff166125af565b505050565b606060028054610ac3906141dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610aef906141dd565b8015610b3c5780601f10610b1157610100808354040283529160200191610b3c565b820191906000526020600020905b815481529060010190602001808311610b1f57829003601f168201915b5050505050905090565b6000610b51826125cd565b610b87576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bcd8261262c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c35576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c546126fa565b73ffffffffffffffffffffffffffffffffffffffff1614610cb757610c8081610c7b6126fa565b61233b565b610cb6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d71612590565b73ffffffffffffffffffffffffffffffffffffffff16610d8f6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90613f09565b60405180910390fd5b6000600d54905081600d819055507f0292b07ed9bd38a0e7381e89b515d4c9898c41dba950d7f43f8691f355afc86981600d54604051610e26929190613cde565b60405180910390a15050565b6000610e3c612702565b6001546000540303905090565b610e5483838361270b565b505050565b6000600e60009054906101000a900460ff16905090565b610e78612590565b73ffffffffffffffffffffffffffffffffffffffff16610e966116d1565b73ffffffffffffffffffffffffffffffffffffffff1614610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390613f09565b60405180910390fd5b601060009054906101000a900460ff16610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290613dc9565b60405180910390fd5b6000601060009054906101000a900460ff1690506000601060006101000a81548160ff0219169083151502179055507f43e459d76e4724770c57f06163095b606fde96ff8672ef63a0cfaa2695446c3281601060009054906101000a900460ff16604051610faa929190613cb5565b60405180910390a150565b610fd08383836040518060200160405280600081525061196e565b505050565b6000610fe082612ab5565b9050919050565b7f000000000000000000000000000000000000000000000000000000000000029a81565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090613ea9565b60405180910390fd5b600c60009054906101000a900460ff166110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf90613e09565b60405180910390fd5b60017f000000000000000000000000000000000000000000000000000000000000029a6110f5919061404e565b8167ffffffffffffffff16611108610e32565b611112919061404e565b10611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990613f49565b60405180910390fd5b60017f000000000000000000000000000000000000000000000000000000000000000261117f919061404e565b8167ffffffffffffffff16106111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190613ec9565b60405180910390fd5b611245838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5461121a612590565b60405160200161122a9190613bde565b60405160208183030381529060405280519060200120612598565b611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90613e89565b60405180910390fd5b60017f00000000000000000000000000000000000000000000000000000000000000026112b1919061404e565b8167ffffffffffffffff166112c533610fd5565b6112cf919061404e565b1061130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690613d69565b60405180910390fd5b61132a61131a612590565b8267ffffffffffffffff166125af565b505050565b611337612590565b73ffffffffffffffffffffffffffffffffffffffff166113556116d1565b73ffffffffffffffffffffffffffffffffffffffff16146113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613f09565b60405180910390fd5b600c60009054906101000a900460ff166113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190613e69565b60405180910390fd5b6000600c60009054906101000a900460ff1690506000600c60006101000a81548160ff0219169083151502179055507fcce5e6e5e8d8d23bc8c307cd4c4a64cd4dbd0e853fc894ea9ba3accfb291a07381600c60009054906101000a900460ff16604051611469929190613cb5565b60405180910390a150565b61147c612590565b73ffffffffffffffffffffffffffffffffffffffff1661149a6116d1565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790613f09565b60405180910390fd5b80600a90805190602001906115069291906132f8565b5050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600061153d8261262c565b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611629612590565b73ffffffffffffffffffffffffffffffffffffffff166116476116d1565b73ffffffffffffffffffffffffffffffffffffffff161461169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169490613f09565b60405180910390fd5b6116a76000612b0c565b565b60007f000000000000000000000000000000000000000000000000000000000000029a905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600c60009054906101000a900460ff16806117245750600e60009054906101000a900460ff165b905090565b606060038054611738906141dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611764906141dd565b80156117b15780601f10611786576101008083540402835291602001916117b1565b820191906000526020600020905b81548152906001019060200180831161179457829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000281565b6000601060009054906101000a900460ff16905090565b6117fe6126fa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611863576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118706126fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661191d6126fa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119629190613c9a565b60405180910390a35050565b61197984848461270b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119db576119a484848484612bd2565b6119da576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6119e9612590565b73ffffffffffffffffffffffffffffffffffffffff16611a076116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490613f09565b60405180910390fd5b60006011549050816011819055507f0292b07ed9bd38a0e7381e89b515d4c9898c41dba950d7f43f8691f355afc86981601154604051611a9e929190613cde565b60405180910390a15050565b611ab2612590565b73ffffffffffffffffffffffffffffffffffffffff16611ad06116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613f09565b60405180910390fd5b600e60009054906101000a900460ff1615611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90613e49565b60405180910390fd5b6000600e60009054906101000a900460ff1690506001600e60006101000a81548160ff0219169083151502179055507fcce5e6e5e8d8d23bc8c307cd4c4a64cd4dbd0e853fc894ea9ba3accfb291a07381600e60009054906101000a900460ff16604051611be5929190613cb5565b60405180910390a150565b6060611bfb826125cd565b611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190613d29565b60405180910390fd5b6000611c44612d32565b90506000815111611cdf57600b8054611c5c906141dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611c88906141dd565b8015611cd55780601f10611caa57610100808354040283529160200191611cd5565b820191906000526020600020905b815481529060010190602001808311611cb857829003601f168201915b5050505050611d0a565b80611ce984612dc4565b604051602001611cfa929190613bf9565b6040516020818303038152906040525b915050919050565b611d1a612590565b73ffffffffffffffffffffffffffffffffffffffff16611d386116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8590613f09565b60405180910390fd5b601060009054906101000a900460ff1615611dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd590613ee9565b60405180910390fd5b6000601060009054906101000a900460ff1690506001601060006101000a81548160ff0219169083151502179055507f43e459d76e4724770c57f06163095b606fde96ff8672ef63a0cfaa2695446c3281601060009054906101000a900460ff16604051611e4d929190613cb5565b60405180910390a150565b611e60612590565b73ffffffffffffffffffffffffffffffffffffffff16611e7e6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecb90613f09565b60405180910390fd5b600e60009054906101000a900460ff16611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90613f29565b60405180910390fd5b6000600e60009054906101000a900460ff1690506000600e60006101000a81548160ff0219169083151502179055507ffdb473908b488896b1205b07b4dc9bda8dbaa0b0977f506ea8beb3e5513988e481600e60009054906101000a900460ff16604051611f92929190613cb5565b60405180910390a150565b611fa5612590565b73ffffffffffffffffffffffffffffffffffffffff16611fc36116d1565b73ffffffffffffffffffffffffffffffffffffffff1614612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090613f09565b60405180910390fd5b600c60009054906101000a900460ff1615612069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206090613e29565b60405180910390fd5b6000600c60009054906101000a900460ff1690506001600c60006101000a81548160ff0219169083151502179055507fcce5e6e5e8d8d23bc8c307cd4c4a64cd4dbd0e853fc894ea9ba3accfb291a07381600c60009054906101000a900460ff166040516120d8929190613cb5565b60405180910390a150565b6000600c60009054906101000a900460ff16905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f90613ea9565b60405180910390fd5b601060009054906101000a900460ff166121b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ae90613dc9565b60405180910390fd5b60017f000000000000000000000000000000000000000000000000000000000000029a6121e4919061404e565b8167ffffffffffffffff166121f7610e32565b612201919061404e565b10612241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223890613f49565b60405180910390fd5b6122bc838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601154612291612590565b6040516020016122a19190613bde565b60405160208183030381529060405280519060200120612598565b6122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f290613da9565b60405180910390fd5b612316612306612590565b8267ffffffffffffffff166125af565b505050565b606060405180606001604052806035815260200161479d60359139905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123d7612590565b73ffffffffffffffffffffffffffffffffffffffff166123f56116d1565b73ffffffffffffffffffffffffffffffffffffffff161461244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290613f09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b290613d89565b60405180910390fd5b6124c481612b0c565b50565b6124cf612590565b73ffffffffffffffffffffffffffffffffffffffff166124ed6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614612543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253a90613f09565b60405180910390fd5b6000600f54905081600f819055507fbb72925e3cb741e20be9bfbbf0ba38553c576fb58e31a76d01aa2001a424229581600f54604051612584929190613cde565b60405180910390a15050565b600033905090565b6000826125a58584612f71565b1490509392505050565b6125c982826040518060200160405280600081525061300c565b5050565b6000816125d8612702565b111580156125e7575060005482105b8015612625575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061263b612702565b116126c3576000548110156126c25760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156126c0575b60008114156126b657600460008360019003935083815260200190815260200160002054905061268b565b80925050506126f5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b60006127168261262c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461277d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661279e6126fa565b73ffffffffffffffffffffffffffffffffffffffff1614806127cd57506127cc856127c76126fa565b61233b565b5b8061281257506127db6126fa565b73ffffffffffffffffffffffffffffffffffffffff166127fa84610b46565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061284b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128b2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128bf85858560016132c1565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6129bc866132c7565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612a46576000600184019050600060046000838152602001908152602001600020541415612a44576000548114612a43578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612aae85858560016132d1565b5050505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bf86126fa565b8786866040518563ffffffff1660e01b8152600401612c1a9493929190613c4e565b602060405180830381600087803b158015612c3457600080fd5b505af1925050508015612c6557506040513d601f19601f82011682018060405250810190612c629190613799565b60015b612cdf573d8060008114612c95576040519150601f19603f3d011682016040523d82523d6000602084013e612c9a565b606091505b50600081511415612cd7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612d41906141dd565b80601f0160208091040260200160405190810160405280929190818152602001828054612d6d906141dd565b8015612dba5780601f10612d8f57610100808354040283529160200191612dba565b820191906000526020600020905b815481529060010190602001808311612d9d57829003601f168201915b5050505050905090565b60606000821415612e0c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f6c565b600082905060005b60008214612e3e578080612e2790614240565b915050600a82612e3791906140a4565b9150612e14565b60008167ffffffffffffffff811115612e80577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612eb25781602001600182028036833780820191505090505b5090505b60008514612f6557600182612ecb91906140d5565b9150600a85612eda91906142ad565b6030612ee6919061404e565b60f81b818381518110612f22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f5e91906140a4565b9450612eb6565b8093505050505b919050565b60008082905060005b8451811015613001576000858281518110612fbe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612fe057612fd983826132d7565b9250612fed565b612fea81846132d7565b92505b508080612ff990614240565b915050612f7a565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613079576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156130b4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130c160008583866132c1565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1613126600185146132ee565b901b60a042901b613136866132c7565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461323a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131ea6000878480600101955087612bd2565b613220576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061317b57826000541461323557600080fd5b6132a5565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061323b575b8160008190555050506132bb60008583866132d1565b50505050565b50505050565b6000819050919050565b50505050565b600082600052816020526040600020905092915050565b6000819050919050565b828054613304906141dd565b90600052602060002090601f016020900481019282613326576000855561336d565b82601f1061333f57805160ff191683800117855561336d565b8280016001018555821561336d579182015b8281111561336c578251825591602001919060010190613351565b5b50905061337a919061337e565b5090565b5b8082111561339757600081600090555060010161337f565b5090565b60006133ae6133a984613fa9565b613f84565b9050828152602081018484840111156133c657600080fd5b6133d184828561419b565b509392505050565b60006133ec6133e784613fda565b613f84565b90508281526020810184848401111561340457600080fd5b61340f84828561419b565b509392505050565b60008135905061342681614712565b92915050565b60008083601f84011261343e57600080fd5b8235905067ffffffffffffffff81111561345757600080fd5b60208301915083602082028301111561346f57600080fd5b9250929050565b60008135905061348581614729565b92915050565b60008135905061349a81614740565b92915050565b6000813590506134af81614757565b92915050565b6000815190506134c481614757565b92915050565b600082601f8301126134db57600080fd5b81356134eb84826020860161339b565b91505092915050565b600082601f83011261350557600080fd5b81356135158482602086016133d9565b91505092915050565b60008135905061352d8161476e565b92915050565b60008135905061354281614785565b92915050565b60006020828403121561355a57600080fd5b600061356884828501613417565b91505092915050565b6000806040838503121561358457600080fd5b600061359285828601613417565b92505060206135a385828601613417565b9150509250929050565b6000806000606084860312156135c257600080fd5b60006135d086828701613417565b93505060206135e186828701613417565b92505060406135f28682870161351e565b9150509250925092565b6000806000806080858703121561361257600080fd5b600061362087828801613417565b945050602061363187828801613417565b93505060406136428782880161351e565b925050606085013567ffffffffffffffff81111561365f57600080fd5b61366b878288016134ca565b91505092959194509250565b6000806040838503121561368a57600080fd5b600061369885828601613417565b92505060206136a985828601613476565b9150509250929050565b600080604083850312156136c657600080fd5b60006136d485828601613417565b92505060206136e58582860161351e565b9150509250929050565b60008060006040848603121561370457600080fd5b600084013567ffffffffffffffff81111561371e57600080fd5b61372a8682870161342c565b9350935050602061373d86828701613533565b9150509250925092565b60006020828403121561375957600080fd5b60006137678482850161348b565b91505092915050565b60006020828403121561378257600080fd5b6000613790848285016134a0565b91505092915050565b6000602082840312156137ab57600080fd5b60006137b9848285016134b5565b91505092915050565b6000602082840312156137d457600080fd5b600082013567ffffffffffffffff8111156137ee57600080fd5b6137fa848285016134f4565b91505092915050565b60006020828403121561381557600080fd5b60006138238482850161351e565b91505092915050565b61383581614109565b82525050565b61384c61384782614109565b614289565b82525050565b61385b8161411b565b82525050565b61386a81614127565b82525050565b600061387b8261400b565b6138858185614021565b93506138958185602086016141aa565b61389e8161439a565b840191505092915050565b60006138b482614016565b6138be8185614032565b93506138ce8185602086016141aa565b6138d78161439a565b840191505092915050565b60006138ed82614016565b6138f78185614043565b93506139078185602086016141aa565b80840191505092915050565b6000613920601383614032565b915061392b826143b8565b602082019050919050565b6000613943601483614032565b915061394e826143e1565b602082019050919050565b6000613966601c83614032565b91506139718261440a565b602082019050919050565b6000613989602683614032565b915061399482614433565b604082019050919050565b60006139ac601883614032565b91506139b782614482565b602082019050919050565b60006139cf601483614032565b91506139da826144ab565b602082019050919050565b60006139f2601083614032565b91506139fd826144d4565b602082019050919050565b6000613a15601483614032565b9150613a20826144fd565b602082019050919050565b6000613a38601d83614032565b9150613a4382614526565b602082019050919050565b6000613a5b601d83614032565b9150613a668261454f565b602082019050919050565b6000613a7e601983614032565b9150613a8982614578565b602082019050919050565b6000613aa1601083614032565b9150613aac826145a1565b602082019050919050565b6000613ac4601e83614032565b9150613acf826145ca565b602082019050919050565b6000613ae7600e83614032565b9150613af2826145f3565b602082019050919050565b6000613b0a601883614032565b9150613b158261461c565b602082019050919050565b6000613b2d600583614043565b9150613b3882614645565b600582019050919050565b6000613b50602083614032565b9150613b5b8261466e565b602082019050919050565b6000613b73601983614032565b9150613b7e82614697565b602082019050919050565b6000613b96600e83614032565b9150613ba1826146c0565b602082019050919050565b6000613bb9600183614043565b9150613bc4826146e9565b600182019050919050565b613bd88161417d565b82525050565b6000613bea828461383b565b60148201915081905092915050565b6000613c0582856138e2565b9150613c1082613bac565b9150613c1c82846138e2565b9150613c2782613b20565b91508190509392505050565b6000602082019050613c48600083018461382c565b92915050565b6000608082019050613c63600083018761382c565b613c70602083018661382c565b613c7d6040830185613bcf565b8181036060830152613c8f8184613870565b905095945050505050565b6000602082019050613caf6000830184613852565b92915050565b6000604082019050613cca6000830185613852565b613cd76020830184613852565b9392505050565b6000604082019050613cf36000830185613861565b613d006020830184613861565b9392505050565b60006020820190508181036000830152613d2181846138a9565b905092915050565b60006020820190508181036000830152613d4281613913565b9050919050565b60006020820190508181036000830152613d6281613936565b9050919050565b60006020820190508181036000830152613d8281613959565b9050919050565b60006020820190508181036000830152613da28161397c565b9050919050565b60006020820190508181036000830152613dc28161399f565b9050919050565b60006020820190508181036000830152613de2816139c2565b9050919050565b60006020820190508181036000830152613e02816139e5565b9050919050565b60006020820190508181036000830152613e2281613a08565b9050919050565b60006020820190508181036000830152613e4281613a2b565b9050919050565b60006020820190508181036000830152613e6281613a4e565b9050919050565b60006020820190508181036000830152613e8281613a71565b9050919050565b60006020820190508181036000830152613ea281613a94565b9050919050565b60006020820190508181036000830152613ec281613ab7565b9050919050565b60006020820190508181036000830152613ee281613ada565b9050919050565b60006020820190508181036000830152613f0281613afd565b9050919050565b60006020820190508181036000830152613f2281613b43565b9050919050565b60006020820190508181036000830152613f4281613b66565b9050919050565b60006020820190508181036000830152613f6281613b89565b9050919050565b6000602082019050613f7e6000830184613bcf565b92915050565b6000613f8e613f9f565b9050613f9a828261420f565b919050565b6000604051905090565b600067ffffffffffffffff821115613fc457613fc361436b565b5b613fcd8261439a565b9050602081019050919050565b600067ffffffffffffffff821115613ff557613ff461436b565b5b613ffe8261439a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006140598261417d565b91506140648361417d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614099576140986142de565b5b828201905092915050565b60006140af8261417d565b91506140ba8361417d565b9250826140ca576140c961430d565b5b828204905092915050565b60006140e08261417d565b91506140eb8361417d565b9250828210156140fe576140fd6142de565b5b828203905092915050565b60006141148261415d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156141c85780820151818401526020810190506141ad565b838111156141d7576000848401525b50505050565b600060028204905060018216806141f557607f821691505b602082108114156142095761420861433c565b5b50919050565b6142188261439a565b810181811067ffffffffffffffff821117156142375761423661436b565b5b80604052505050565b600061424b8261417d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561427e5761427d6142de565b5b600182019050919050565b60006142948261429b565b9050919050565b60006142a6826143ab565b9050919050565b60006142b88261417d565b91506142c38361417d565b9250826142d3576142d261430d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546f6b656e20646f65736e277420657869737400000000000000000000000000600082015250565b7f416c6c6f776c697374206e6f7420616374697665000000000000000000000000600082015250565b7f43616e2774206d696e74206d6f7265207468616e203220746f74616c00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742070617274206f662074686520646576207465616d0000000000000000600082015250565b7f5465616d206d696e74206e6f7420616374697665000000000000000000000000600082015250565b7f4e6f74206f6e20616c6c6f776c69737400000000000000000000000000000000600082015250565b7f44656174686c697374206e6f7420616374697665000000000000000000000000600082015250565b7f44656174686c697374206d696e7420616c726561647920616374697665000000600082015250565b7f416c6c6f776c697374206d696e7420616c726561647920616374697665000000600082015250565b7f44656174686c697374206d696e74206e6f742061637469766500000000000000600082015250565b7f4e6f74206f6e2064656174686c69737400000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f546865206c696d69742069732032000000000000000000000000000000000000600082015250565b7f5465616d206d696e7420616c7265616479206163746976650000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416c6c6f776c697374206d696e74206e6f742061637469766500000000000000600082015250565b7f486974206d617820737570706c79000000000000000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61471b81614109565b811461472657600080fd5b50565b6147328161411b565b811461473d57600080fd5b50565b61474981614127565b811461475457600080fd5b50565b61476081614131565b811461476b57600080fd5b50565b6147778161417d565b811461478257600080fd5b50565b61478e81614187565b811461479957600080fd5b5056fe697066733a2f2f516d613635357850433248666672505570744361633967764c7a424e723659454d5a486e396b5175683752657544a2646970667358221220be1791d63b0977d4de0cc8f48404a4c0f5a1de4b8dd1c6d2a9009f718f34591c64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000080c85b2405808f8c4f21265423b0bd594d8d7d992bf8c63067471c40e35b229736e25ca0e1fcdfa9ebb17aac39bfce3b38e8755813e61a7f2333eaae0238bdb5903420a336d25c4f344cd20cfe4e2bde901e5b821ed6510b1cb4dfb6bb4f1272480000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d584d706a726d676a58734171786f566a52476739415554507a7061504a525651327a7346363859796b74736d0000000000000000000000
-----Decoded View---------------
Arg [0] : _placeholderURI (string): ipfs://QmXMpjrmgjXsAqxoVjRGg9AUTPzpaPJRVQ2zsF68Yyktsm
Arg [1] : _teamMerkleRoot (bytes32): 0xc85b2405808f8c4f21265423b0bd594d8d7d992bf8c63067471c40e35b229736
Arg [2] : _deathlistMerkleRoot (bytes32): 0xe25ca0e1fcdfa9ebb17aac39bfce3b38e8755813e61a7f2333eaae0238bdb590
Arg [3] : _allowlistMerkleRoot (bytes32): 0x3420a336d25c4f344cd20cfe4e2bde901e5b821ed6510b1cb4dfb6bb4f127248
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : c85b2405808f8c4f21265423b0bd594d8d7d992bf8c63067471c40e35b229736
Arg [2] : e25ca0e1fcdfa9ebb17aac39bfce3b38e8755813e61a7f2333eaae0238bdb590
Arg [3] : 3420a336d25c4f344cd20cfe4e2bde901e5b821ed6510b1cb4dfb6bb4f127248
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [5] : 697066733a2f2f516d584d706a726d676a58734171786f566a52476739415554
Arg [6] : 507a7061504a525651327a7346363859796b74736d0000000000000000000000
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.