Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0.009025 ETH
Eth Value
$19.59 (@ $2,170.99/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 151 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Specific Mint | 15439213 | 1293 days ago | IN | 0.00001 ETH | 0.00113858 | ||||
| Specific Mint | 15439163 | 1293 days ago | IN | 0.00001 ETH | 0.00082323 | ||||
| Specific Mint | 15439150 | 1293 days ago | IN | 0.00001 ETH | 0.00078323 | ||||
| Specific Mint | 15439101 | 1293 days ago | IN | 0.00005 ETH | 0.0010251 | ||||
| Specific Mint | 15439040 | 1293 days ago | IN | 0.00005 ETH | 0.00182412 | ||||
| Specific Mint | 15439011 | 1293 days ago | IN | 0.0005 ETH | 0.00139915 | ||||
| Specific Mint | 15439003 | 1293 days ago | IN | 0.00001 ETH | 0.00068189 | ||||
| Specific Mint | 15438957 | 1293 days ago | IN | 0.00001 ETH | 0.00065264 | ||||
| Specific Mint | 15438933 | 1293 days ago | IN | 0.00001 ETH | 0.0007393 | ||||
| Specific Mint | 15438912 | 1293 days ago | IN | 0.00001 ETH | 0.00074463 | ||||
| Specific Mint | 15438908 | 1293 days ago | IN | 0.0005 ETH | 0.00147292 | ||||
| Specific Mint | 15438875 | 1293 days ago | IN | 0.0005 ETH | 0.00177068 | ||||
| Specific Mint | 15438869 | 1293 days ago | IN | 0.0005 ETH | 0.0018459 | ||||
| Specific Mint | 15438867 | 1293 days ago | IN | 0.0005 ETH | 0.00168641 | ||||
| Specific Mint | 15438866 | 1293 days ago | IN | 0.0005 ETH | 0.00143876 | ||||
| Specific Mint | 15438854 | 1293 days ago | IN | 0.00005 ETH | 0.00082069 | ||||
| Specific Mint | 15438854 | 1293 days ago | IN | 0.00005 ETH | 0.00082069 | ||||
| Specific Mint | 15438854 | 1293 days ago | IN | 0.00005 ETH | 0.00082069 | ||||
| Specific Mint | 15438853 | 1293 days ago | IN | 0.00005 ETH | 0.00082402 | ||||
| Specific Mint | 15438853 | 1293 days ago | IN | 0.00005 ETH | 0.00082402 | ||||
| Specific Mint | 15438853 | 1293 days ago | IN | 0.00005 ETH | 0.00082402 | ||||
| Specific Mint | 15438852 | 1293 days ago | IN | 0.00005 ETH | 0.00083672 | ||||
| Specific Mint | 15438852 | 1293 days ago | IN | 0.00005 ETH | 0.00083672 | ||||
| Specific Mint | 15438851 | 1293 days ago | IN | 0.00005 ETH | 0.0008141 | ||||
| Specific Mint | 15438851 | 1293 days ago | IN | 0.00005 ETH | 0.0008141 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 15361229 | 1306 days ago | 0.0053 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CLIFF721
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.4;
import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract CLIFF721 is ERC721A, Ownable {
uint public constant NUM_TEAMS = 32;
uint public PRICE;
uint public TEAM_MAX;
uint public SALE_MAX;
uint public SELLING_AMOUNT;
string public BASE_URI;
string public CONTRACT_URI = "https://presalemetadata.mythical.market/contractmetadata";
// array of teams currently on sale
uint8[] private _teamsOnSale;
// from teamId to index of teamsOnSale array
mapping(uint8 => uint8) private _teamIdIndex;
struct TeamData {
// if team has been sold previously
bool sold;
// if team is currently for sale
bool isSelling;
// team current supply
uint supply;
}
mapping(uint8 => TeamData) private _teamData;
event MintSupplyRemaining(uint8 teamId, uint remainingSupply);
event CreateSale(uint8[] teams, uint withHoldAmount);
event SaleEnd(uint8 teamId);
constructor(uint teamMax, uint _price, string memory __baseURI) ERC721A("CLIFF", "CLF") {
TEAM_MAX = teamMax;
PRICE = _price;
BASE_URI = __baseURI;
}
function renounceOwnership() public view override onlyOwner {
revert('can only transfer ownership');
}
function _startTokenId() internal pure override returns (uint256) {
return 1;
}
function getTeamsOnSale() external view returns (uint8[] memory) {
return _teamsOnSale;
}
function getRemainingSupply(uint8 teamId) external view returns (uint) {
require(_teamData[teamId].isSelling == true, "team not on sale");
return SELLING_AMOUNT - _teamData[teamId].supply;
}
function teamOf(uint256 tokenId) external view returns (uint8) {
return _ownershipOf(tokenId).teamId;
}
function setBaseURI(string memory baseURI) external onlyOwner {
BASE_URI = baseURI;
}
function setPrice(uint _price) public onlyOwner {
PRICE = _price;
}
function _baseURI() internal view override returns (string memory) {
return BASE_URI;
}
function contractURI() public view returns (string memory) {
return CONTRACT_URI;
}
function setContractURI(string memory _contractURI) external onlyOwner {
CONTRACT_URI = _contractURI;
}
function withdraw() public payable onlyOwner {
(bool success, ) = payable(owner()).call{value: address(this).balance}("");
require(success);
}
function createSale(uint8[] memory teams, uint withHoldAmount) external onlyOwner {
require(_teamsOnSale.length == 0, "must end sale first");
require(withHoldAmount < TEAM_MAX, "can't withhold more than selling");
SELLING_AMOUNT = TEAM_MAX - withHoldAmount;
SALE_MAX = _totalMinted() + SELLING_AMOUNT * teams.length;
for (uint8 i = 0; i < teams.length; i++) {
require(_teamData[teams[i]].sold == false, "team in sale");
require(_teamData[teams[i]].isSelling == false, "no duplicates allowed");
require(teams[i] > 0 && teams[i] <= NUM_TEAMS, "only 32 teams");
_teamData[teams[i]].isSelling = true;
_teamIdIndex[teams[i]] = i;
}
_teamsOnSale = teams;
emit CreateSale(teams, withHoldAmount);
}
function endSale() external onlyOwner {
require(_teamsOnSale.length > 0, "can only end active sales");
for (uint8 i = 0; i < _teamsOnSale.length; i++) {
_teamData[_teamsOnSale[i]].sold = true;
_teamData[_teamsOnSale[i]].isSelling = false;
delete _teamIdIndex[i];
emit SaleEnd(_teamsOnSale[i]);
}
delete _teamsOnSale;
}
function adminMint(uint quantity, uint8 teamId) external onlyOwner {
require(_teamsOnSale.length < 1, "cannot admin mint during sale");
require(_teamData[teamId].sold == true, "sale must have ended");
require(_teamData[teamId].isSelling == false, "sale must have ended");
require(_teamData[teamId].supply + quantity <= TEAM_MAX, "exceeds team supply");
_teamData[teamId].supply += quantity;
_safeMint(msg.sender, quantity, teamId);
}
function specificMint(uint quantity, uint8 teamId) external payable {
require(quantity < 51, "limit of 50 per transaction");
require(_teamData[teamId].isSelling == true, "team not on sale");
require(_teamData[teamId].supply + quantity <= SELLING_AMOUNT, "purchase exceeds allotted team supply");
require(msg.value >= PRICE * quantity, "incorrect eth sent");
// update team supply
_teamData[teamId].supply += quantity;
emit MintSupplyRemaining(teamId, SELLING_AMOUNT - _teamData[teamId].supply);
if (_teamData[teamId].supply == SELLING_AMOUNT) {
_removeTeamFromSale(teamId);
}
_safeMint(msg.sender, quantity, teamId);
}
function mint(uint quantity, uint8 teamId, address recipient) external payable {
require(quantity < 51, "limit of 50 per transaction");
require(_teamData[teamId].isSelling == true, "team not on sale");
require(_teamData[teamId].supply + quantity <= SELLING_AMOUNT, "purchase exceeds allotted team supply");
require(msg.value >= PRICE * quantity, "incorrect eth sent");
// update team supply
_teamData[teamId].supply += quantity;
emit MintSupplyRemaining(teamId, SELLING_AMOUNT - _teamData[teamId].supply);
if (_teamData[teamId].supply == SELLING_AMOUNT) {
_removeTeamFromSale(teamId);
}
_safeMint(recipient, quantity, teamId);
}
function _removeTeamFromSale(uint8 teamId) internal {
require(_teamData[teamId].isSelling == true, "team not on sale");
uint lastTeamIndex = _teamsOnSale.length - 1;
uint8 index = _teamIdIndex[teamId];
// if last element in array, no need to swap before pop
if (index != lastTeamIndex) {
uint8 lastTeamId = _teamsOnSale[lastTeamIndex];
_teamsOnSale[index] = lastTeamId;
_teamIdIndex[lastTeamId] = index;
}
_teamsOnSale.pop();
delete _teamIdIndex[teamId];
_teamData[teamId].sold = true;
_teamData[teamId].isSelling = false;
emit SaleEnd(teamId);
}
}// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs
// modified from commit:
// https://github.com/chiru-labs/ERC721A/commit/df74e023f8ce6b552482378085ba5944c775ef47
pragma solidity ^0.8.4;
import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
/**
* @dev Interface of an ERC721A compliant contract.
*/
interface IERC721A is IERC721, IERC721Metadata {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* The caller cannot approve to their own address.
*/
error ApproveToCaller();
/**
* The caller cannot approve to the current owner.
*/
error ApprovalToCurrentOwner();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
* Cannot mint to the zero address.
*/
error MintToZeroAddress();
/**
* The quantity of tokens minted must be more than zero.
*/
error MintZeroQuantity();
/**
* The token does not exist.
*/
error OwnerQueryForNonexistentToken();
/**
* The caller must own the token or be an approved operator.
*/
error TransferCallerNotOwnerNorApproved();
/**
* The token must be owned by `from`.
*/
error TransferFromIncorrectOwner();
/**
* Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
*/
error TransferToNonERC721ReceiverImplementer();
/**
* Cannot transfer to the zero address.
*/
error TransferToZeroAddress();
/**
* The token does not exist.
*/
error URIQueryForNonexistentToken();
// Compiler will pack this into a single 256bit word.
struct TokenOwnership {
// The address of the owner.
address addr;
// Keeps track of the start time of ownership with minimal overhead for tokenomics.
uint8 teamId;
// Whether the token has been burned.
bool burned;
}
// Compiler will pack this into a single 256bit word.
struct AddressData {
// Realistically, 2**64-1 is more than enough.
uint64 balance;
// Keeps track of mint count with minimal overhead for tokenomics.
uint64 numberMinted;
// Keeps track of burn count with minimal overhead for tokenomics.
uint64 numberBurned;
// For miscellaneous variable(s) pertaining to the address
// (e.g. number of whitelist mint slots used).
// If there are multiple variables, please pack them into a uint64.
uint64 aux;
}
/**
* @dev Returns the total amount of tokens stored by the contract.
*
* Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
*/
function totalSupply() external view returns (uint256);
}// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs
// modified from commit:
// https://github.com/chiru-labs/ERC721A/commit/df74e023f8ce6b552482378085ba5944c775ef47
pragma solidity ^0.8.4;
import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
*
* Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
*
* Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is Context, ERC165, IERC721A {
using Address for address;
using Strings for uint256;
// The tokenId of the next token to be minted.
uint256 internal _currentIndex;
// The number of tokens burned.
uint256 internal _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) internal _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
/**
* To change the starting tokenId, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
*/
function totalSupply() public view override returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than _currentIndex - _startTokenId() times
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
// Counter underflow is impossible as _currentIndex does not decrement,
// and it is initialized to _startTokenId()
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return uint256(_addressData[owner].balance);
}
/**
* Returns the number of tokens minted by `owner`.
*/
//function _numberMinted(address owner) internal view returns (uint256) {
//return uint256(_addressData[owner].numberMinted);
//}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
//function _numberBurned(address owner) internal view returns (uint256) {
//return uint256(_addressData[owner].numberBurned);
//}
/**
* Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
*/
//function _getAux(address owner) internal view returns (uint64) {
//return _addressData[owner].aux;
//}
/**
* Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
//function _setAux(address owner, uint64 aux) internal {
//_addressData[owner].aux = aux;
//}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr && curr < _currentIndex) {
TokenOwnership memory ownership = _ownerships[curr];
if (!ownership.burned) {
if (ownership.addr != address(0)) {
return ownership;
}
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
while (true) {
curr--;
ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return _ownershipOf(tokenId).addr;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
string memory baseURI = _baseURI();
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = ERC721A.ownerOf(tokenId);
if (to == owner) revert ApprovalToCurrentOwner();
if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
if (operator == _msgSender()) revert ApproveToCaller();
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
_transfer(from, to, tokenId);
if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
function _safeMint(address to, uint256 quantity, uint8 teamId) internal {
_safeMint(to, quantity, teamId, '');
}
/**
* @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,
uint8 teamId,
bytes memory _data
) internal {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint64(quantity);
_addressData[to].numberMinted += uint64(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].teamId = teamId;
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
if (to.isContract()) {
do {
emit Transfer(address(0), to, updatedIndex);
if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (updatedIndex < end);
// Reentrancy protection
if (_currentIndex != startTokenId) revert();
} else {
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex < end);
}
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
//function _mint(address to, uint256 quantity, uint8 teamId) internal {
//uint256 startTokenId = _currentIndex;
//if (to == address(0)) revert MintToZeroAddress();
//if (quantity == 0) revert MintZeroQuantity();
//_beforeTokenTransfers(address(0), to, startTokenId, quantity);
//// Overflows are incredibly unrealistic.
//// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
//// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
//unchecked {
//_addressData[to].balance += uint64(quantity);
//_addressData[to].numberMinted += uint64(quantity);
//_ownerships[startTokenId].addr = to;
//_ownerships[startTokenId].teamId = teamId;
//uint256 updatedIndex = startTokenId;
//uint256 end = updatedIndex + quantity;
//do {
//emit Transfer(address(0), to, updatedIndex++);
//} while (updatedIndex < end);
//_currentIndex = updatedIndex;
//}
//_afterTokenTransfers(address(0), to, startTokenId, quantity);
//}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) private {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = to;
currSlot.teamId = prevOwnership.teamId;
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.teamId = prevOwnership.teamId;
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Equivalent to `_burn(tokenId, false)`.
*/
//function _burn(uint256 tokenId) internal virtual {
//_burn(tokenId, false);
//}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
//function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
//TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
//address from = prevOwnership.addr;
//if (approvalCheck) {
//bool isApprovedOrOwner = (_msgSender() == from ||
//isApprovedForAll(from, _msgSender()) ||
//getApproved(tokenId) == _msgSender());
//if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
//}
//_beforeTokenTransfers(from, address(0), tokenId, 1);
//// Clear approvals from the previous owner
//_approve(address(0), tokenId, from);
//// Underflow of the sender's balance is impossible because we check for
//// ownership above and the recipient's balance can't realistically overflow.
//// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
//unchecked {
//AddressData storage addressData = _addressData[from];
//addressData.balance -= 1;
//addressData.numberBurned += 1;
//// Keep track of who burned the token, and the timestamp of burning.
//TokenOwnership storage currSlot = _ownerships[tokenId];
//currSlot.addr = from;
//currSlot.teamId = prevOwnership.teamId;
//currSlot.burned = true;
//// If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
//// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
//uint256 nextTokenId = tokenId + 1;
//TokenOwnership storage nextSlot = _ownerships[nextTokenId];
//if (nextSlot.addr == address(0)) {
//// This will suffice for checking _exists(nextTokenId),
//// as a burned slot cannot contain the zero address.
//if (nextTokenId != _currentIndex) {
//nextSlot.addr = from;
//nextSlot.teamId = prevOwnership.teamId;
//}
//}
//}
//emit Transfer(from, address(0), tokenId);
//_afterTokenTransfers(from, address(0), tokenId, 1);
//// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
//unchecked {
//_burnCounter++;
//}
//}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
* And also called before burning one token.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
* And also called after one token has been burned.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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);
}
}{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "london",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"teamMax","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"string","name":"__baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8[]","name":"teams","type":"uint8[]"},{"indexed":false,"internalType":"uint256","name":"withHoldAmount","type":"uint256"}],"name":"CreateSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"teamId","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"remainingSupply","type":"uint256"}],"name":"MintSupplyRemaining","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":false,"internalType":"uint8","name":"teamId","type":"uint8"}],"name":"SaleEnd","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_TEAMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SELLING_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint8","name":"teamId","type":"uint8"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8[]","name":"teams","type":"uint8[]"},{"internalType":"uint256","name":"withHoldAmount","type":"uint256"}],"name":"createSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"teamId","type":"uint8"}],"name":"getRemainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTeamsOnSale","outputs":[{"internalType":"uint8[]","name":"","type":"uint8[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint8","name":"teamId","type":"uint8"},{"internalType":"address","name":"recipient","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint8","name":"teamId","type":"uint8"}],"name":"specificMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"teamOf","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
60e0604052603860808181529062002eba60a03980516200002991600e9160209091019062000146565b503480156200003757600080fd5b5060405162002ef238038062002ef28339810160408190526200005a9162000202565b604080518082018252600581526421a624a32360d91b60208083019182528351808501909452600384526221a62360e91b908401528151919291620000a29160029162000146565b508051620000b890600390602084019062000146565b5050600160005550620000cb33620000f4565b600a83905560098290558051620000ea90600d90602084019062000146565b5050505062000332565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015490620002f5565b90600052602060002090601f016020900481019282620001785760008555620001c3565b82601f106200019357805160ff1916838001178555620001c3565b82800160010185558215620001c3579182015b82811115620001c3578251825591602001919060010190620001a6565b50620001d1929150620001d5565b5090565b5b80821115620001d15760008155600101620001d6565b634e487b7160e01b600052604160045260246000fd5b6000806000606084860312156200021857600080fd5b835160208086015160408701519295509350906001600160401b03808211156200024157600080fd5b818701915087601f8301126200025657600080fd5b8151818111156200026b576200026b620001ec565b604051601f8201601f19908116603f01168101908382118183101715620002965762000296620001ec565b816040528281528a86848701011115620002af57600080fd5b600093505b82841015620002d35784840186015181850187015292850192620002b4565b82841115620002e55760008684830101525b8096505050505050509250925092565b600181811c908216806200030a57607f821691505b602082108114156200032c57634e487b7160e01b600052602260045260246000fd5b50919050565b612b7880620003426000396000f3fe60806040526004361061021a5760003560e01c80638033491c11610123578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c5146105b0578063f2fde38b146105f9578063f7c8ae5914610619578063fa3f33a614610639578063fbc3a0971461065957600080fd5b8063c87b56dd14610530578063d07c49df14610550578063dbddb26a14610566578063df80e68d1461057b578063e8a3d4851461059b57600080fd5b8063938e3d7b116100f2578063938e3d7b146104a557806395d89b41146104c5578063a22cb465146104da578063a31317a1146104fa578063b88d4fde1461051057600080fd5b80638033491c1461043e5780638d859f3e146104515780638da5cb5b1461046757806391b7f5ed1461048557600080fd5b80633ccfd60b116101a65780636352211e116101755780636352211e146103b157806370a08231146103d1578063715018a6146103f15780637319f47c1461040657806375296b861461042857600080fd5b80633ccfd60b1461035457806342842e0e1461035c57806355f804b31461037c57806356b4f6731461039c57600080fd5b806318160ddd116101ed57806318160ddd146102d0578063234a74e4146102f757806323b872dd1461030a57806330a8b2c91461032a578063380d831b1461033f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461240f565b61068b565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106dd565b60405161024b9190612484565b34801561028257600080fd5b50610296610291366004612497565b61076f565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c93660046124cc565b6107b3565b005b3480156102dc57600080fd5b5060015460005403600019015b60405190815260200161024b565b6102ce610305366004612507565b610841565b34801561031657600080fd5b506102ce610325366004612533565b610a29565b34801561033657600080fd5b506102e9602081565b34801561034b57600080fd5b506102ce610a34565b6102ce610c10565b34801561036857600080fd5b506102ce610377366004612533565b610cae565b34801561038857600080fd5b506102ce61039736600461260e565b610cc9565b3480156103a857600080fd5b50610269610d06565b3480156103bd57600080fd5b506102966103cc366004612497565b610d94565b3480156103dd57600080fd5b506102e96103ec366004612657565b610da6565b3480156103fd57600080fd5b506102ce610df5565b34801561041257600080fd5b5061041b610e67565b60405161024b91906126b0565b34801561043457600080fd5b506102e9600a5481565b6102ce61044c3660046126c3565b610edc565b34801561045d57600080fd5b506102e960095481565b34801561047357600080fd5b506008546001600160a01b0316610296565b34801561049157600080fd5b506102ce6104a0366004612497565b6110bb565b3480156104b157600080fd5b506102ce6104c036600461260e565b6110ea565b3480156104d157600080fd5b50610269611127565b3480156104e657600080fd5b506102ce6104f53660046126ff565b611136565b34801561050657600080fd5b506102e9600b5481565b34801561051c57600080fd5b506102ce61052b36600461273b565b6111cc565b34801561053c57600080fd5b5061026961054b366004612497565b61121d565b34801561055c57600080fd5b506102e9600c5481565b34801561057257600080fd5b506102696112a2565b34801561058757600080fd5b506102ce6105963660046127b7565b6112af565b3480156105a757600080fd5b5061026961163c565b3480156105bc57600080fd5b5061023f6105cb36600461286a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060557600080fd5b506102ce610614366004612657565b61164b565b34801561062557600080fd5b506102ce610634366004612507565b6116e3565b34801561064557600080fd5b506102e9610654366004612894565b6118b8565b34801561066557600080fd5b50610679610674366004612497565b611919565b60405160ff909116815260200161024b565b60006001600160e01b031982166380ac58cd60e01b14806106bc57506001600160e01b03198216635b5e139f60e01b145b806106d757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106ec906128af565b80601f0160208091040260200160405190810160405280929190818152602001828054610718906128af565b80156107655780601f1061073a57610100808354040283529160200191610765565b820191906000526020600020905b81548152906001019060200180831161074857829003601f168201915b5050505050905090565b600061077a8261192e565b610797576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107be82610d94565b9050806001600160a01b0316836001600160a01b031614156107f35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610813575061081181336105cb565b155b15610831576040516367d9dca160e11b815260040160405180910390fd5b61083c838383611967565b505050565b603382106108965760405162461bcd60e51b815260206004820152601b60248201527f6c696d6974206f6620353020706572207472616e73616374696f6e000000000060448201526064015b60405180910390fd5b60ff80821660009081526011602052604090205461010090041615156001146108d15760405162461bcd60e51b815260040161088d906128ea565b600c5460ff82166000908152601160205260409020600101546108f590849061292a565b11156109135760405162461bcd60e51b815260040161088d90612942565b816009546109219190612987565b3410156109655760405162461bcd60e51b81526020600482015260126024820152711a5b98dbdc9c9958dd08195d1a081cd95b9d60721b604482015260640161088d565b60ff81166000908152601160205260408120600101805484929061098a90849061292a565b909155505060ff8116600090815260116020526040902060010154600c547fdeaa5406f600211d6a310db5df35cc1bde1b04daf0e7b84eccab0ce835807d119183916109d691906129a6565b6040805160ff909316835260208301919091520160405180910390a1600c5460ff82166000908152601160205260409020600101541415610a1a57610a1a816119c3565b610a25338383611b69565b5050565b61083c838383611b84565b6008546001600160a01b03163314610a5e5760405162461bcd60e51b815260040161088d906129bd565b600f54610aad5760405162461bcd60e51b815260206004820152601960248201527f63616e206f6e6c7920656e64206163746976652073616c657300000000000000604482015260640161088d565b60005b600f5460ff82161015610c0157600160116000600f8460ff1681548110610ad957610ad96129f2565b60009182526020808320818304015460ff601f9093166101000a90048216845283019390935260409091018120805493151560ff1990941693909317909255600f8054601192849291908616908110610b3457610b346129f2565b600091825260208083208183040154601f90921661010090810a90920460ff90811685528482019590955260409384018320805461ff00191696151590920295909517905591841680835260109093529020805460ff19169055600f80547fc900b3f69b8283f8dc337265bb40426aab80634dfcba5b77b743b0ecb0b99d8a92908110610bc357610bc36129f2565b60009182526020918290208282040154604051601f9092166101000a900460ff1681520160405180910390a180610bf981612a08565b915050610ab0565b50610c0e600f600061229e565b565b6008546001600160a01b03163314610c3a5760405162461bcd60e51b815260040161088d906129bd565b6000610c4e6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c98576040519150601f19603f3d011682016040523d82523d6000602084013e610c9d565b606091505b5050905080610cab57600080fd5b50565b61083c838383604051806020016040528060008152506111cc565b6008546001600160a01b03163314610cf35760405162461bcd60e51b815260040161088d906129bd565b8051610a2590600d9060208401906122c3565b600e8054610d13906128af565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3f906128af565b8015610d8c5780601f10610d6157610100808354040283529160200191610d8c565b820191906000526020600020905b815481529060010190602001808311610d6f57829003601f168201915b505050505081565b6000610d9f82611d75565b5192915050565b60006001600160a01b038216610dcf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e1f5760405162461bcd60e51b815260040161088d906129bd565b60405162461bcd60e51b815260206004820152601b60248201527f63616e206f6e6c79207472616e73666572206f776e6572736869700000000000604482015260640161088d565b6060600f80548060200260200160405190810160405280929190818152602001828054801561076557602002820191906000526020600020906000905b825461010083900a900460ff16815260206001928301818104948501949093039092029101808411610ea45790505050505050905090565b60338310610f2c5760405162461bcd60e51b815260206004820152601b60248201527f6c696d6974206f6620353020706572207472616e73616374696f6e0000000000604482015260640161088d565b60ff8083166000908152601160205260409020546101009004161515600114610f675760405162461bcd60e51b815260040161088d906128ea565b600c5460ff8316600090815260116020526040902060010154610f8b90859061292a565b1115610fa95760405162461bcd60e51b815260040161088d90612942565b82600954610fb79190612987565b341015610ffb5760405162461bcd60e51b81526020600482015260126024820152711a5b98dbdc9c9958dd08195d1a081cd95b9d60721b604482015260640161088d565b60ff82166000908152601160205260408120600101805485929061102090849061292a565b909155505060ff8216600090815260116020526040902060010154600c547fdeaa5406f600211d6a310db5df35cc1bde1b04daf0e7b84eccab0ce835807d1191849161106c91906129a6565b6040805160ff909316835260208301919091520160405180910390a1600c5460ff831660009081526011602052604090206001015414156110b0576110b0826119c3565b61083c818484611b69565b6008546001600160a01b031633146110e55760405162461bcd60e51b815260040161088d906129bd565b600955565b6008546001600160a01b031633146111145760405162461bcd60e51b815260040161088d906129bd565b8051610a2590600e9060208401906122c3565b6060600380546106ec906128af565b6001600160a01b0382163314156111605760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111d7848484611b84565b6001600160a01b0383163b151580156111f957506111f784848484611e92565b155b15611217576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606112288261192e565b61124557604051630a14c4b560e41b815260040160405180910390fd5b600061124f611f8a565b9050805160001415611270576040518060200160405280600081525061129b565b8061127a84611f99565b60405160200161128b929190612a28565b6040516020818303038152906040525b9392505050565b600d8054610d13906128af565b6008546001600160a01b031633146112d95760405162461bcd60e51b815260040161088d906129bd565b600f541561131f5760405162461bcd60e51b81526020600482015260136024820152721b5d5cdd08195b99081cd85b1948199a5c9cdd606a1b604482015260640161088d565b600a5481106113705760405162461bcd60e51b815260206004820181905260248201527f63616e27742077697468686f6c64206d6f7265207468616e2073656c6c696e67604482015260640161088d565b80600a5461137e91906129a6565b600c819055825161138e91612987565b6000546000190161139f919061292a565b600b5560005b82518160ff1610156115ea5760116000848360ff16815181106113ca576113ca6129f2565b60209081029190910181015160ff9081168352908201929092526040016000205416156114285760405162461bcd60e51b815260206004820152600c60248201526b7465616d20696e2073616c6560a01b604482015260640161088d565b60116000848360ff1681518110611441576114416129f2565b60209081029190910181015160ff90811683529082019290925260400160002054610100900416156114ad5760405162461bcd60e51b81526020600482015260156024820152741b9bc8191d5c1b1a58d85d195cc8185b1b1bddd959605a1b604482015260640161088d565b6000838260ff16815181106114c4576114c46129f2565b602002602001015160ff161180156114fc57506020838260ff16815181106114ee576114ee6129f2565b602002602001015160ff1611155b6115385760405162461bcd60e51b815260206004820152600d60248201526c6f6e6c79203332207465616d7360981b604482015260640161088d565b600160116000858460ff1681518110611553576115536129f2565b602002602001015160ff1660ff16815260200190815260200160002060000160016101000a81548160ff0219169083151502179055508060106000858460ff16815181106115a3576115a36129f2565b602002602001015160ff1660ff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806115e290612a08565b9150506113a5565b5081516115fe90600f906020850190612347565b507ff96e6694724470ce401385b06dbc196ab222e4499b94fad765e3895a4f33dbcc8282604051611630929190612a57565b60405180910390a15050565b6060600e80546106ec906128af565b6008546001600160a01b031633146116755760405162461bcd60e51b815260040161088d906129bd565b6001600160a01b0381166116da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088d565b610cab81612097565b6008546001600160a01b0316331461170d5760405162461bcd60e51b815260040161088d906129bd565b600f5460011161175f5760405162461bcd60e51b815260206004820152601d60248201527f63616e6e6f742061646d696e206d696e7420647572696e672073616c65000000604482015260640161088d565b60ff8082166000908152601160205260409020541615156001146117bc5760405162461bcd60e51b81526020600482015260146024820152731cd85b19481b5d5cdd081a185d9948195b99195960621b604482015260640161088d565b60ff8082166000908152601160205260409020546101009004161561181a5760405162461bcd60e51b81526020600482015260146024820152731cd85b19481b5d5cdd081a185d9948195b99195960621b604482015260640161088d565b600a5460ff821660009081526011602052604090206001015461183e90849061292a565b11156118825760405162461bcd60e51b815260206004820152601360248201527265786365656473207465616d20737570706c7960681b604482015260640161088d565b60ff8116600090815260116020526040812060010180548492906118a790849061292a565b90915550610a259050338383611b69565b60ff80821660009081526011602052604081205490916101009091041615156001146118f65760405162461bcd60e51b815260040161088d906128ea565b60ff8216600090815260116020526040902060010154600c546106d791906129a6565b600061192482611d75565b6020015192915050565b600081600111158015611942575060005482105b80156106d7575050600090815260046020526040902054600160a81b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60ff80821660009081526011602052604090205461010090041615156001146119fe5760405162461bcd60e51b815260040161088d906128ea565b600f54600090611a10906001906129a6565b60ff80841660009081526010602052604090205491925016808214611ac8576000600f8381548110611a4457611a446129f2565b90600052602060002090602091828204019190069054906101000a900460ff16905080600f8360ff1681548110611a7d57611a7d6129f2565b60009182526020808320818304018054601f9093166101000a60ff8181021990941695841602949094179093559283168152601090915260409020805460ff19169183169190911790555b600f805480611ad957611ad9612a79565b6000828152602080822060001993909301818104909301805460ff601f86166101000a81021990911690915592909355908516808252601083526040808320805460ff191690556011845291829020805461ffff1916600117905590519081527fc900b3f69b8283f8dc337265bb40426aab80634dfcba5b77b743b0ecb0b99d8a910160405180910390a1505050565b61083c838383604051806020016040528060008152506120e9565b6000611b8f82611d75565b9050836001600160a01b031681600001516001600160a01b031614611bc65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611be45750611be485336105cb565b80611bff575033611bf48461076f565b6001600160a01b0316145b905080611c1f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611c4657604051633a954ecd60e21b815260040160405180910390fd5b611c5260008487611967565b6001600160a01b038086166000908152600560209081526040808320805460001967ffffffffffffffff80831691909101811667ffffffffffffffff1992831617909255898616808652838620805480851660019081019095169316929092179091558885526004845282852080549489015160ff16600160a01b026001600160a81b03199095169091179390931783558701808452922080549193909116611d29576000548214611d29578054602086015160ff16600160a01b026001600160a81b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611da5575060005481105b15611e7957600081815260046020908152604091829020825160608101845290546001600160a01b038116825260ff600160a01b8204811693830193909352600160a81b9004909116151591810182905290611e775780516001600160a01b031615611e12579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b03811680835260ff600160a01b8304811694840194909452600160a81b90910490921615159281019290925215611e72579392505050565b611e12565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ec7903390899088908890600401612a8f565b602060405180830381600087803b158015611ee157600080fd5b505af1925050508015611f11575060408051601f3d908101601f19168201909252611f0e91810190612acc565b60015b611f6c573d808015611f3f576040519150601f19603f3d011682016040523d82523d6000602084013e611f44565b606091505b508051611f64576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600d80546106ec906128af565b606081611fbd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fe75780611fd181612ae9565b9150611fe09050600a83612b1a565b9150611fc1565b60008167ffffffffffffffff8111156120025761200261256f565b6040519080825280601f01601f19166020018201604052801561202c576020820181803683370190505b5090505b8415611f82576120416001836129a6565b915061204e600a86612b2e565b61205990603061292a565b60f81b81838151811061206e5761206e6129f2565b60200101906001600160f81b031916908160001a905350612090600a86612b1a565b9450612030565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b03851661211257604051622e076360e81b815260040160405180910390fd5b836121305760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01169091021790558483526004909152902080546001600160a81b0319168217600160a01b60ff8716021790558190818601903b15612250575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122196000888480600101955087611e92565b612236576040516368d2bf6b60e11b815260040160405180910390fd5b8082106121ce57826000541461224b57600080fd5b612295565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612251575b50600055611d6e565b50805460008255601f016020900490600052602060002090810190610cab91906123e4565b8280546122cf906128af565b90600052602060002090601f0160209004810192826122f15760008555612337565b82601f1061230a57805160ff1916838001178555612337565b82800160010185558215612337579182015b8281111561233757825182559160200191906001019061231c565b506123439291506123e4565b5090565b82805482825590600052602060002090601f016020900481019282156123375791602002820160005b838211156123ae57835183826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302612370565b80156123db5782816101000a81549060ff02191690556001016020816000010492830192600103026123ae565b50506123439291505b5b8082111561234357600081556001016123e5565b6001600160e01b031981168114610cab57600080fd5b60006020828403121561242157600080fd5b813561129b816123f9565b60005b8381101561244757818101518382015260200161242f565b838111156112175750506000910152565b6000815180845261247081602086016020860161242c565b601f01601f19169290920160200192915050565b60208152600061129b6020830184612458565b6000602082840312156124a957600080fd5b5035919050565b80356001600160a01b03811681146124c757600080fd5b919050565b600080604083850312156124df57600080fd5b6124e8836124b0565b946020939093013593505050565b803560ff811681146124c757600080fd5b6000806040838503121561251a57600080fd5b8235915061252a602084016124f6565b90509250929050565b60008060006060848603121561254857600080fd5b612551846124b0565b925061255f602085016124b0565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156125ae576125ae61256f565b604052919050565b600067ffffffffffffffff8311156125d0576125d061256f565b6125e3601f8401601f1916602001612585565b90508281528383830111156125f757600080fd5b828260208301376000602084830101529392505050565b60006020828403121561262057600080fd5b813567ffffffffffffffff81111561263757600080fd5b8201601f8101841361264857600080fd5b611f82848235602084016125b6565b60006020828403121561266957600080fd5b61129b826124b0565b600081518084526020808501945080840160005b838110156126a557815160ff1687529582019590820190600101612686565b509495945050505050565b60208152600061129b6020830184612672565b6000806000606084860312156126d857600080fd5b833592506126e8602085016124f6565b91506126f6604085016124b0565b90509250925092565b6000806040838503121561271257600080fd5b61271b836124b0565b91506020830135801515811461273057600080fd5b809150509250929050565b6000806000806080858703121561275157600080fd5b61275a856124b0565b9350612768602086016124b0565b925060408501359150606085013567ffffffffffffffff81111561278b57600080fd5b8501601f8101871361279c57600080fd5b6127ab878235602084016125b6565b91505092959194509250565b600080604083850312156127ca57600080fd5b823567ffffffffffffffff808211156127e257600080fd5b818501915085601f8301126127f657600080fd5b813560208282111561280a5761280a61256f565b8160051b925061281b818401612585565b828152928401810192818101908985111561283557600080fd5b948201945b8486101561285a5761284b866124f6565b8252948201949082019061283a565b9997909101359750505050505050565b6000806040838503121561287d57600080fd5b612886836124b0565b915061252a602084016124b0565b6000602082840312156128a657600080fd5b61129b826124f6565b600181811c908216806128c357607f821691505b602082108114156128e457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526010908201526f7465616d206e6f74206f6e2073616c6560801b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561293d5761293d612914565b500190565b60208082526025908201527f7075726368617365206578636565647320616c6c6f74746564207465616d20736040820152647570706c7960d81b606082015260800190565b60008160001904831182151516156129a1576129a1612914565b500290565b6000828210156129b8576129b8612914565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060ff821660ff811415612a1f57612a1f612914565b60010192915050565b60008351612a3a81846020880161242c565b835190830190612a4e81836020880161242c565b01949350505050565b604081526000612a6a6040830185612672565b90508260208301529392505050565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ac290830184612458565b9695505050505050565b600060208284031215612ade57600080fd5b815161129b816123f9565b6000600019821415612afd57612afd612914565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612b2957612b29612b04565b500490565b600082612b3d57612b3d612b04565b50069056fea26469706673582212204b440f1df09d08996d87f8b8e8c1bb6ee6eccc94b95b1f7ccb62a87eb16888ae64736f6c6343000809003368747470733a2f2f70726573616c656d657461646174612e6d7974686963616c2e6d61726b65742f636f6e74726163746d6574616461746100000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000000000000000000000000000000009184e72a0000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f70726573616c656d657461646174612e6d7974686963616c2e6d61726b65742f000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80638033491c11610123578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c5146105b0578063f2fde38b146105f9578063f7c8ae5914610619578063fa3f33a614610639578063fbc3a0971461065957600080fd5b8063c87b56dd14610530578063d07c49df14610550578063dbddb26a14610566578063df80e68d1461057b578063e8a3d4851461059b57600080fd5b8063938e3d7b116100f2578063938e3d7b146104a557806395d89b41146104c5578063a22cb465146104da578063a31317a1146104fa578063b88d4fde1461051057600080fd5b80638033491c1461043e5780638d859f3e146104515780638da5cb5b1461046757806391b7f5ed1461048557600080fd5b80633ccfd60b116101a65780636352211e116101755780636352211e146103b157806370a08231146103d1578063715018a6146103f15780637319f47c1461040657806375296b861461042857600080fd5b80633ccfd60b1461035457806342842e0e1461035c57806355f804b31461037c57806356b4f6731461039c57600080fd5b806318160ddd116101ed57806318160ddd146102d0578063234a74e4146102f757806323b872dd1461030a57806330a8b2c91461032a578063380d831b1461033f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461240f565b61068b565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106dd565b60405161024b9190612484565b34801561028257600080fd5b50610296610291366004612497565b61076f565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c93660046124cc565b6107b3565b005b3480156102dc57600080fd5b5060015460005403600019015b60405190815260200161024b565b6102ce610305366004612507565b610841565b34801561031657600080fd5b506102ce610325366004612533565b610a29565b34801561033657600080fd5b506102e9602081565b34801561034b57600080fd5b506102ce610a34565b6102ce610c10565b34801561036857600080fd5b506102ce610377366004612533565b610cae565b34801561038857600080fd5b506102ce61039736600461260e565b610cc9565b3480156103a857600080fd5b50610269610d06565b3480156103bd57600080fd5b506102966103cc366004612497565b610d94565b3480156103dd57600080fd5b506102e96103ec366004612657565b610da6565b3480156103fd57600080fd5b506102ce610df5565b34801561041257600080fd5b5061041b610e67565b60405161024b91906126b0565b34801561043457600080fd5b506102e9600a5481565b6102ce61044c3660046126c3565b610edc565b34801561045d57600080fd5b506102e960095481565b34801561047357600080fd5b506008546001600160a01b0316610296565b34801561049157600080fd5b506102ce6104a0366004612497565b6110bb565b3480156104b157600080fd5b506102ce6104c036600461260e565b6110ea565b3480156104d157600080fd5b50610269611127565b3480156104e657600080fd5b506102ce6104f53660046126ff565b611136565b34801561050657600080fd5b506102e9600b5481565b34801561051c57600080fd5b506102ce61052b36600461273b565b6111cc565b34801561053c57600080fd5b5061026961054b366004612497565b61121d565b34801561055c57600080fd5b506102e9600c5481565b34801561057257600080fd5b506102696112a2565b34801561058757600080fd5b506102ce6105963660046127b7565b6112af565b3480156105a757600080fd5b5061026961163c565b3480156105bc57600080fd5b5061023f6105cb36600461286a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060557600080fd5b506102ce610614366004612657565b61164b565b34801561062557600080fd5b506102ce610634366004612507565b6116e3565b34801561064557600080fd5b506102e9610654366004612894565b6118b8565b34801561066557600080fd5b50610679610674366004612497565b611919565b60405160ff909116815260200161024b565b60006001600160e01b031982166380ac58cd60e01b14806106bc57506001600160e01b03198216635b5e139f60e01b145b806106d757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106ec906128af565b80601f0160208091040260200160405190810160405280929190818152602001828054610718906128af565b80156107655780601f1061073a57610100808354040283529160200191610765565b820191906000526020600020905b81548152906001019060200180831161074857829003601f168201915b5050505050905090565b600061077a8261192e565b610797576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107be82610d94565b9050806001600160a01b0316836001600160a01b031614156107f35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610813575061081181336105cb565b155b15610831576040516367d9dca160e11b815260040160405180910390fd5b61083c838383611967565b505050565b603382106108965760405162461bcd60e51b815260206004820152601b60248201527f6c696d6974206f6620353020706572207472616e73616374696f6e000000000060448201526064015b60405180910390fd5b60ff80821660009081526011602052604090205461010090041615156001146108d15760405162461bcd60e51b815260040161088d906128ea565b600c5460ff82166000908152601160205260409020600101546108f590849061292a565b11156109135760405162461bcd60e51b815260040161088d90612942565b816009546109219190612987565b3410156109655760405162461bcd60e51b81526020600482015260126024820152711a5b98dbdc9c9958dd08195d1a081cd95b9d60721b604482015260640161088d565b60ff81166000908152601160205260408120600101805484929061098a90849061292a565b909155505060ff8116600090815260116020526040902060010154600c547fdeaa5406f600211d6a310db5df35cc1bde1b04daf0e7b84eccab0ce835807d119183916109d691906129a6565b6040805160ff909316835260208301919091520160405180910390a1600c5460ff82166000908152601160205260409020600101541415610a1a57610a1a816119c3565b610a25338383611b69565b5050565b61083c838383611b84565b6008546001600160a01b03163314610a5e5760405162461bcd60e51b815260040161088d906129bd565b600f54610aad5760405162461bcd60e51b815260206004820152601960248201527f63616e206f6e6c7920656e64206163746976652073616c657300000000000000604482015260640161088d565b60005b600f5460ff82161015610c0157600160116000600f8460ff1681548110610ad957610ad96129f2565b60009182526020808320818304015460ff601f9093166101000a90048216845283019390935260409091018120805493151560ff1990941693909317909255600f8054601192849291908616908110610b3457610b346129f2565b600091825260208083208183040154601f90921661010090810a90920460ff90811685528482019590955260409384018320805461ff00191696151590920295909517905591841680835260109093529020805460ff19169055600f80547fc900b3f69b8283f8dc337265bb40426aab80634dfcba5b77b743b0ecb0b99d8a92908110610bc357610bc36129f2565b60009182526020918290208282040154604051601f9092166101000a900460ff1681520160405180910390a180610bf981612a08565b915050610ab0565b50610c0e600f600061229e565b565b6008546001600160a01b03163314610c3a5760405162461bcd60e51b815260040161088d906129bd565b6000610c4e6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c98576040519150601f19603f3d011682016040523d82523d6000602084013e610c9d565b606091505b5050905080610cab57600080fd5b50565b61083c838383604051806020016040528060008152506111cc565b6008546001600160a01b03163314610cf35760405162461bcd60e51b815260040161088d906129bd565b8051610a2590600d9060208401906122c3565b600e8054610d13906128af565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3f906128af565b8015610d8c5780601f10610d6157610100808354040283529160200191610d8c565b820191906000526020600020905b815481529060010190602001808311610d6f57829003601f168201915b505050505081565b6000610d9f82611d75565b5192915050565b60006001600160a01b038216610dcf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e1f5760405162461bcd60e51b815260040161088d906129bd565b60405162461bcd60e51b815260206004820152601b60248201527f63616e206f6e6c79207472616e73666572206f776e6572736869700000000000604482015260640161088d565b6060600f80548060200260200160405190810160405280929190818152602001828054801561076557602002820191906000526020600020906000905b825461010083900a900460ff16815260206001928301818104948501949093039092029101808411610ea45790505050505050905090565b60338310610f2c5760405162461bcd60e51b815260206004820152601b60248201527f6c696d6974206f6620353020706572207472616e73616374696f6e0000000000604482015260640161088d565b60ff8083166000908152601160205260409020546101009004161515600114610f675760405162461bcd60e51b815260040161088d906128ea565b600c5460ff8316600090815260116020526040902060010154610f8b90859061292a565b1115610fa95760405162461bcd60e51b815260040161088d90612942565b82600954610fb79190612987565b341015610ffb5760405162461bcd60e51b81526020600482015260126024820152711a5b98dbdc9c9958dd08195d1a081cd95b9d60721b604482015260640161088d565b60ff82166000908152601160205260408120600101805485929061102090849061292a565b909155505060ff8216600090815260116020526040902060010154600c547fdeaa5406f600211d6a310db5df35cc1bde1b04daf0e7b84eccab0ce835807d1191849161106c91906129a6565b6040805160ff909316835260208301919091520160405180910390a1600c5460ff831660009081526011602052604090206001015414156110b0576110b0826119c3565b61083c818484611b69565b6008546001600160a01b031633146110e55760405162461bcd60e51b815260040161088d906129bd565b600955565b6008546001600160a01b031633146111145760405162461bcd60e51b815260040161088d906129bd565b8051610a2590600e9060208401906122c3565b6060600380546106ec906128af565b6001600160a01b0382163314156111605760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111d7848484611b84565b6001600160a01b0383163b151580156111f957506111f784848484611e92565b155b15611217576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606112288261192e565b61124557604051630a14c4b560e41b815260040160405180910390fd5b600061124f611f8a565b9050805160001415611270576040518060200160405280600081525061129b565b8061127a84611f99565b60405160200161128b929190612a28565b6040516020818303038152906040525b9392505050565b600d8054610d13906128af565b6008546001600160a01b031633146112d95760405162461bcd60e51b815260040161088d906129bd565b600f541561131f5760405162461bcd60e51b81526020600482015260136024820152721b5d5cdd08195b99081cd85b1948199a5c9cdd606a1b604482015260640161088d565b600a5481106113705760405162461bcd60e51b815260206004820181905260248201527f63616e27742077697468686f6c64206d6f7265207468616e2073656c6c696e67604482015260640161088d565b80600a5461137e91906129a6565b600c819055825161138e91612987565b6000546000190161139f919061292a565b600b5560005b82518160ff1610156115ea5760116000848360ff16815181106113ca576113ca6129f2565b60209081029190910181015160ff9081168352908201929092526040016000205416156114285760405162461bcd60e51b815260206004820152600c60248201526b7465616d20696e2073616c6560a01b604482015260640161088d565b60116000848360ff1681518110611441576114416129f2565b60209081029190910181015160ff90811683529082019290925260400160002054610100900416156114ad5760405162461bcd60e51b81526020600482015260156024820152741b9bc8191d5c1b1a58d85d195cc8185b1b1bddd959605a1b604482015260640161088d565b6000838260ff16815181106114c4576114c46129f2565b602002602001015160ff161180156114fc57506020838260ff16815181106114ee576114ee6129f2565b602002602001015160ff1611155b6115385760405162461bcd60e51b815260206004820152600d60248201526c6f6e6c79203332207465616d7360981b604482015260640161088d565b600160116000858460ff1681518110611553576115536129f2565b602002602001015160ff1660ff16815260200190815260200160002060000160016101000a81548160ff0219169083151502179055508060106000858460ff16815181106115a3576115a36129f2565b602002602001015160ff1660ff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806115e290612a08565b9150506113a5565b5081516115fe90600f906020850190612347565b507ff96e6694724470ce401385b06dbc196ab222e4499b94fad765e3895a4f33dbcc8282604051611630929190612a57565b60405180910390a15050565b6060600e80546106ec906128af565b6008546001600160a01b031633146116755760405162461bcd60e51b815260040161088d906129bd565b6001600160a01b0381166116da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088d565b610cab81612097565b6008546001600160a01b0316331461170d5760405162461bcd60e51b815260040161088d906129bd565b600f5460011161175f5760405162461bcd60e51b815260206004820152601d60248201527f63616e6e6f742061646d696e206d696e7420647572696e672073616c65000000604482015260640161088d565b60ff8082166000908152601160205260409020541615156001146117bc5760405162461bcd60e51b81526020600482015260146024820152731cd85b19481b5d5cdd081a185d9948195b99195960621b604482015260640161088d565b60ff8082166000908152601160205260409020546101009004161561181a5760405162461bcd60e51b81526020600482015260146024820152731cd85b19481b5d5cdd081a185d9948195b99195960621b604482015260640161088d565b600a5460ff821660009081526011602052604090206001015461183e90849061292a565b11156118825760405162461bcd60e51b815260206004820152601360248201527265786365656473207465616d20737570706c7960681b604482015260640161088d565b60ff8116600090815260116020526040812060010180548492906118a790849061292a565b90915550610a259050338383611b69565b60ff80821660009081526011602052604081205490916101009091041615156001146118f65760405162461bcd60e51b815260040161088d906128ea565b60ff8216600090815260116020526040902060010154600c546106d791906129a6565b600061192482611d75565b6020015192915050565b600081600111158015611942575060005482105b80156106d7575050600090815260046020526040902054600160a81b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60ff80821660009081526011602052604090205461010090041615156001146119fe5760405162461bcd60e51b815260040161088d906128ea565b600f54600090611a10906001906129a6565b60ff80841660009081526010602052604090205491925016808214611ac8576000600f8381548110611a4457611a446129f2565b90600052602060002090602091828204019190069054906101000a900460ff16905080600f8360ff1681548110611a7d57611a7d6129f2565b60009182526020808320818304018054601f9093166101000a60ff8181021990941695841602949094179093559283168152601090915260409020805460ff19169183169190911790555b600f805480611ad957611ad9612a79565b6000828152602080822060001993909301818104909301805460ff601f86166101000a81021990911690915592909355908516808252601083526040808320805460ff191690556011845291829020805461ffff1916600117905590519081527fc900b3f69b8283f8dc337265bb40426aab80634dfcba5b77b743b0ecb0b99d8a910160405180910390a1505050565b61083c838383604051806020016040528060008152506120e9565b6000611b8f82611d75565b9050836001600160a01b031681600001516001600160a01b031614611bc65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611be45750611be485336105cb565b80611bff575033611bf48461076f565b6001600160a01b0316145b905080611c1f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611c4657604051633a954ecd60e21b815260040160405180910390fd5b611c5260008487611967565b6001600160a01b038086166000908152600560209081526040808320805460001967ffffffffffffffff80831691909101811667ffffffffffffffff1992831617909255898616808652838620805480851660019081019095169316929092179091558885526004845282852080549489015160ff16600160a01b026001600160a81b03199095169091179390931783558701808452922080549193909116611d29576000548214611d29578054602086015160ff16600160a01b026001600160a81b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611da5575060005481105b15611e7957600081815260046020908152604091829020825160608101845290546001600160a01b038116825260ff600160a01b8204811693830193909352600160a81b9004909116151591810182905290611e775780516001600160a01b031615611e12579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b03811680835260ff600160a01b8304811694840194909452600160a81b90910490921615159281019290925215611e72579392505050565b611e12565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ec7903390899088908890600401612a8f565b602060405180830381600087803b158015611ee157600080fd5b505af1925050508015611f11575060408051601f3d908101601f19168201909252611f0e91810190612acc565b60015b611f6c573d808015611f3f576040519150601f19603f3d011682016040523d82523d6000602084013e611f44565b606091505b508051611f64576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600d80546106ec906128af565b606081611fbd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fe75780611fd181612ae9565b9150611fe09050600a83612b1a565b9150611fc1565b60008167ffffffffffffffff8111156120025761200261256f565b6040519080825280601f01601f19166020018201604052801561202c576020820181803683370190505b5090505b8415611f82576120416001836129a6565b915061204e600a86612b2e565b61205990603061292a565b60f81b81838151811061206e5761206e6129f2565b60200101906001600160f81b031916908160001a905350612090600a86612b1a565b9450612030565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b03851661211257604051622e076360e81b815260040160405180910390fd5b836121305760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01169091021790558483526004909152902080546001600160a81b0319168217600160a01b60ff8716021790558190818601903b15612250575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122196000888480600101955087611e92565b612236576040516368d2bf6b60e11b815260040160405180910390fd5b8082106121ce57826000541461224b57600080fd5b612295565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612251575b50600055611d6e565b50805460008255601f016020900490600052602060002090810190610cab91906123e4565b8280546122cf906128af565b90600052602060002090601f0160209004810192826122f15760008555612337565b82601f1061230a57805160ff1916838001178555612337565b82800160010185558215612337579182015b8281111561233757825182559160200191906001019061231c565b506123439291506123e4565b5090565b82805482825590600052602060002090601f016020900481019282156123375791602002820160005b838211156123ae57835183826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302612370565b80156123db5782816101000a81549060ff02191690556001016020816000010492830192600103026123ae565b50506123439291505b5b8082111561234357600081556001016123e5565b6001600160e01b031981168114610cab57600080fd5b60006020828403121561242157600080fd5b813561129b816123f9565b60005b8381101561244757818101518382015260200161242f565b838111156112175750506000910152565b6000815180845261247081602086016020860161242c565b601f01601f19169290920160200192915050565b60208152600061129b6020830184612458565b6000602082840312156124a957600080fd5b5035919050565b80356001600160a01b03811681146124c757600080fd5b919050565b600080604083850312156124df57600080fd5b6124e8836124b0565b946020939093013593505050565b803560ff811681146124c757600080fd5b6000806040838503121561251a57600080fd5b8235915061252a602084016124f6565b90509250929050565b60008060006060848603121561254857600080fd5b612551846124b0565b925061255f602085016124b0565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156125ae576125ae61256f565b604052919050565b600067ffffffffffffffff8311156125d0576125d061256f565b6125e3601f8401601f1916602001612585565b90508281528383830111156125f757600080fd5b828260208301376000602084830101529392505050565b60006020828403121561262057600080fd5b813567ffffffffffffffff81111561263757600080fd5b8201601f8101841361264857600080fd5b611f82848235602084016125b6565b60006020828403121561266957600080fd5b61129b826124b0565b600081518084526020808501945080840160005b838110156126a557815160ff1687529582019590820190600101612686565b509495945050505050565b60208152600061129b6020830184612672565b6000806000606084860312156126d857600080fd5b833592506126e8602085016124f6565b91506126f6604085016124b0565b90509250925092565b6000806040838503121561271257600080fd5b61271b836124b0565b91506020830135801515811461273057600080fd5b809150509250929050565b6000806000806080858703121561275157600080fd5b61275a856124b0565b9350612768602086016124b0565b925060408501359150606085013567ffffffffffffffff81111561278b57600080fd5b8501601f8101871361279c57600080fd5b6127ab878235602084016125b6565b91505092959194509250565b600080604083850312156127ca57600080fd5b823567ffffffffffffffff808211156127e257600080fd5b818501915085601f8301126127f657600080fd5b813560208282111561280a5761280a61256f565b8160051b925061281b818401612585565b828152928401810192818101908985111561283557600080fd5b948201945b8486101561285a5761284b866124f6565b8252948201949082019061283a565b9997909101359750505050505050565b6000806040838503121561287d57600080fd5b612886836124b0565b915061252a602084016124b0565b6000602082840312156128a657600080fd5b61129b826124f6565b600181811c908216806128c357607f821691505b602082108114156128e457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526010908201526f7465616d206e6f74206f6e2073616c6560801b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561293d5761293d612914565b500190565b60208082526025908201527f7075726368617365206578636565647320616c6c6f74746564207465616d20736040820152647570706c7960d81b606082015260800190565b60008160001904831182151516156129a1576129a1612914565b500290565b6000828210156129b8576129b8612914565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060ff821660ff811415612a1f57612a1f612914565b60010192915050565b60008351612a3a81846020880161242c565b835190830190612a4e81836020880161242c565b01949350505050565b604081526000612a6a6040830185612672565b90508260208301529392505050565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ac290830184612458565b9695505050505050565b600060208284031215612ade57600080fd5b815161129b816123f9565b6000600019821415612afd57612afd612914565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612b2957612b29612b04565b500490565b600082612b3d57612b3d612b04565b50069056fea26469706673582212204b440f1df09d08996d87f8b8e8c1bb6ee6eccc94b95b1f7ccb62a87eb16888ae64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000000000000000000000000000000009184e72a0000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f70726573616c656d657461646174612e6d7974686963616c2e6d61726b65742f000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : teamMax (uint256): 2500
Arg [1] : _price (uint256): 10000000000000
Arg [2] : __baseURI (string): https://presalemetadata.mythical.market/
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [1] : 000000000000000000000000000000000000000000000000000009184e72a000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [4] : 68747470733a2f2f70726573616c656d657461646174612e6d7974686963616c
Arg [5] : 2e6d61726b65742f000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$19.59
Net Worth in ETH
0.009025
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,170.99 | 0.009025 | $19.59 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.