Overview
APE Balance
APE Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Multichain Info
Latest 25 from a total of 221 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 29169978 | 59 days ago | IN | 0 APE | 0.0011712 | ||||
| Set Approval For... | 25193539 | 98 days ago | IN | 0 APE | 0.00117334 | ||||
| Set Approval For... | 17160562 | 235 days ago | IN | 0 APE | 0.0011712 | ||||
| Withdraw | 16305157 | 241 days ago | IN | 0 APE | 0.00077294 | ||||
| Set Approval For... | 16093306 | 246 days ago | IN | 0 APE | 0.00117334 | ||||
| Set Approval For... | 16092309 | 246 days ago | IN | 0 APE | 0.0011712 | ||||
| Set Approval For... | 15151288 | 265 days ago | IN | 0 APE | 0.00117334 | ||||
| Set Approval For... | 15120006 | 265 days ago | IN | 0 APE | 0.0011712 | ||||
| Set Approval For... | 12809339 | 293 days ago | IN | 0 APE | 0.00061632 | ||||
| Set Approval For... | 12809267 | 293 days ago | IN | 0 APE | 0.00061418 | ||||
| Set Approval For... | 12808969 | 293 days ago | IN | 0 APE | 0.0011712 | ||||
| Set Approval For... | 12297399 | 305 days ago | IN | 0 APE | 0.00061635 | ||||
| Set Approval For... | 12215235 | 307 days ago | IN | 0 APE | 0.0011712 | ||||
| Set Approval For... | 11432978 | 319 days ago | IN | 0 APE | 0.00061418 | ||||
| Set Approval For... | 11432623 | 319 days ago | IN | 0 APE | 0.0011712 | ||||
| Set Approval For... | 11243138 | 322 days ago | IN | 0 APE | 0.00117123 | ||||
| Set Approval For... | 10745976 | 330 days ago | IN | 0 APE | 0.00117334 | ||||
| Set Approval For... | 10526917 | 334 days ago | IN | 0 APE | 0.00117336 | ||||
| Set Approval For... | 10476193 | 335 days ago | IN | 0 APE | 0.00117336 | ||||
| Set Approval For... | 10385750 | 337 days ago | IN | 0 APE | 0.00117123 | ||||
| Set Approval For... | 10121100 | 342 days ago | IN | 0 APE | 0.0011712 | ||||
| Set Approval For... | 10114099 | 343 days ago | IN | 0 APE | 0.00117336 | ||||
| Set Approval For... | 10099989 | 343 days ago | IN | 0 APE | 0.0011712 | ||||
| Set Approval For... | 9964518 | 344 days ago | IN | 0 APE | 0.00117334 | ||||
| Set Approval For... | 9690033 | 347 days ago | IN | 0 APE | 0.00061632 |
Latest 1 internal transaction
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 16305157 | 241 days ago | 433.63 APE |
Cross-Chain Transactions
Contract Source Code (Solidity)
/**
*Submitted for verification at apescan.io on 2025-02-05
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.28;
/**
* @dev Interface of ERC721A.
*/
interface IERC721A {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* The caller cannot approve to their own address.
*/
error ApproveToCaller();
/**
* 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();
/**
* The `quantity` minted with ERC2309 exceeds the safety limit.
*/
error MintERC2309QuantityExceedsLimit();
/**
* The `extraData` cannot be set on an unintialized ownership slot.
*/
error OwnershipNotInitializedForExtraData();
// =============================================================
// STRUCTS
// =============================================================
struct TokenOwnership {
// The address of the owner.
address addr;
// Stores the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
// Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
uint24 extraData;
}
// =============================================================
// TOKEN COUNTERS
// =============================================================
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() external view returns (uint256);
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
// =============================================================
// IERC721
// =============================================================
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables
* (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`,
* 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,
bytes calldata data
) external;
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom}
* whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the
* zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
// =============================================================
// IERC2309
// =============================================================
/**
* @dev Emitted when tokens in `fromTokenId` to `toTokenId`
* (inclusive) is transferred from `from` to `to`, as defined in the
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
*
* See {_mintERC2309} for more details.
*/
event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
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);
}
interface IERC2981 is IERC165 {
/// ERC165 bytes to add to interface array - set in parent contract
/// implementing this standard
///
/// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
/// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
/// _registerInterface(_INTERFACE_ID_ERC2981);
/// @notice Called with the sale price to determine how much royalty
// is owed and to whom.
/// @param _tokenId - the NFT asset queried for royalty information
/// @param _salePrice - the sale price of the NFT asset specified by _tokenId
/// @return receiver - address of who should be sent the royalty payment
/// @return royaltyAmount - the royalty payment amount for _salePrice
function royaltyInfo(
uint256 _tokenId,
uint256 _salePrice
) external view returns (
address receiver,
uint256 royaltyAmount
);
}
contract Goablins is IERC721A {
using SafeMath for uint256;
address private _owner;
function owner() public view returns(address){
return _owner;
}
mapping(address=>uint256) minted;
uint256 public constant MAX_SUPPLY = 1111;
uint256 public constant MAX_PER_WALLET = 11;
uint256 public constant COST = 0.42 ether;
string private constant _name = "Goablins";
string private constant _symbol = "Goablins";
string private _baseURI = "QmP2au4mkKtj8nHYa3s2G3XsFyuxw5bFu9czPw9UUhoJMQ";
constructor() {
_owner = msg.sender;
_mint(msg.sender, 222);
}
function mint(uint256 amount) external payable{
address _caller = _msgSenderERC721A();
require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
require(amount*COST <= msg.value, "Value to Low");
_mint(_caller, amount);
}
// Mask of an entry in packed address data.
uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
uint256 private constant BITPOS_NUMBER_MINTED = 64;
uint256 private constant BITPOS_NUMBER_BURNED = 128;
uint256 private constant BITPOS_AUX = 192;
uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
uint256 private constant BITPOS_START_TIMESTAMP = 160;
uint256 private constant BITMASK_BURNED = 1 << 224;
uint256 private constant BITPOS_NEXT_INITIALIZED = 225;
uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;
uint256 private _currentIndex = 0;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned.
// See `_packedOwnershipOf` implementation for details.
//
// Bits Layout:
// - [0..159] `addr`
// - [160..223] `startTimestamp`
// - [224] `burned`
// - [225] `nextInitialized`
mapping(uint256 => uint256) private _packedOwnerships;
// Mapping owner address to address data.
//
// Bits Layout:
// - [0..63] `balance`
// - [64..127] `numberMinted`
// - [128..191] `numberBurned`
// - [192..255] `aux`
mapping(address => uint256) private _packedAddressData;
// Mapping from token ID to approved address.
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
function royaltyInfo(uint256, uint256 salePrice)
external
view
returns (address receiver, uint256 royaltyAmount)
{
receiver = _owner;
royaltyAmount = (salePrice * 500) / 10000; // Calculate royalty based on sale price
}
function setData(string memory _base) external onlyOwner{
_baseURI = _base;
}
/**
* @dev Returns the starting token ID.
* To change the starting token ID, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Returns the next token ID to be minted.
*/
function _nextTokenId() internal view returns (uint256) {
return _currentIndex;
}
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see `_totalMinted`.
*/
function totalSupply() public view override returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than `_currentIndex - _startTokenId()` times.
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
// Counter underflow is impossible as _currentIndex does not decrement,
// and it is initialized to `_startTokenId()`
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
// The interface IDs are constants representing the first 4 bytes of the XOR of
// all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
// e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
return
interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
interfaceId == 0x2a55205a || // ERC Royalties
interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress();
return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return uint64(_packedAddressData[owner] >> BITPOS_AUX);
}
/**
* Returns the packed ownership data of `tokenId`.
*/
function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr)
if (curr < _currentIndex) {
uint256 packed = _packedOwnerships[curr];
// If not burned.
if (packed & BITMASK_BURNED == 0) {
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
//
// We can directly compare the packed value.
// If the address is zero, packed is zero.
while (packed == 0) {
packed = _packedOwnerships[--curr];
}
return packed;
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* Returns the unpacked `TokenOwnership` struct from `packed`.
*/
function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
ownership.addr = address(uint160(packed));
ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
ownership.burned = packed & BITMASK_BURNED != 0;
}
/**
* Returns the unpacked `TokenOwnership` struct at `index`.
*/
function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnerships[index]);
}
/**
* @dev Initializes the ownership slot minted at `index` for efficiency purposes.
*/
function _initializeOwnershipAt(uint256 index) internal {
if (_packedOwnerships[index] == 0) {
_packedOwnerships[index] = _packedOwnershipOf(index);
}
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnershipOf(tokenId));
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return address(uint160(_packedOwnershipOf(tokenId)));
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
}
/**
* @dev Casts the address to uint256 without masking.
*/
function _addressToUint256(address value) private pure returns (uint256 result) {
assembly {
result := value
}
}
/**
* @dev Casts the boolean to uint256 without branching.
*/
function _boolToUint256(bool value) private pure returns (uint256 result) {
assembly {
result := value
}
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = address(uint160(_packedOwnershipOf(tokenId)));
if (to == owner) revert();
if (_msgSenderERC721A() != owner)
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
if (operator == _msgSenderERC721A()) revert ApproveToCaller();
_operatorApprovals[_msgSenderERC721A()][operator] = approved;
emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
_transfer(from, to, tokenId);
}
/**
* @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;
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 quantity) internal {
uint256 startTokenId = _currentIndex;
//if (_addressToUint256(to) == 0) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the balance and number minted.
_packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] =
_addressToUint256(to) |
(block.timestamp << BITPOS_START_TIMESTAMP) |
(_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex < end);
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) private {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
address approvedAddress = _tokenApprovals[tokenId];
bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
isApprovedForAll(from, _msgSenderERC721A()) ||
approvedAddress == _msgSenderERC721A());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
// Clear approvals from the previous owner.
if (_addressToUint256(approvedAddress) != 0) {
delete _tokenApprovals[tokenId];
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
// We can directly increment and decrement the balances.
--_packedAddressData[from]; // Updates: `balance -= 1`.
++_packedAddressData[to]; // Updates: `balance += 1`.
// Updates:
// - `address` to the next owner.
// - `startTimestamp` to the timestamp of transfering.
// - `burned` to `false`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] =
_addressToUint256(to) |
(block.timestamp << BITPOS_START_TIMESTAMP) |
BITMASK_NEXT_INITIALIZED;
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
* And also called after one token has been burned.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {
}
/**
* @dev Returns the message sender (defaults to `msg.sender`).
*
* If you are writing GSN compatible contracts, you need to override this function.
*/
function _msgSenderERC721A() internal view virtual returns (address) {
return msg.sender;
}
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function _toString(uint256 value) internal pure returns (string memory ptr) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit),
// but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
// We will need 1 32-byte word to store the length,
// and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
ptr := add(mload(0x40), 128)
// Update the free memory pointer to allocate.
mstore(0x40, ptr)
// Cache the end of the memory to calculate the length later.
let end := ptr
// We write the string from the rightmost digit to the leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// Costs a bit more than early returning for the zero case,
// but cheaper in terms of deployment and overall runtime costs.
for {
// Initialize and perform the first pass without check.
let temp := value
// Move the pointer 1 byte leftwards to point to an empty character slot.
ptr := sub(ptr, 1)
// Write the character to the pointer. 48 is the ASCII index of '0'.
mstore8(ptr, add(48, mod(temp, 10)))
temp := div(temp, 10)
} temp {
// Keep dividing `temp` until zero.
temp := div(temp, 10)
} {
// Body of the for loop.
ptr := sub(ptr, 1)
mstore8(ptr, add(48, mod(temp, 10)))
}
let length := sub(end, ptr)
// Move the pointer 32 bytes leftwards to make room for the length.
ptr := sub(ptr, 32)
// Store the length.
mstore(ptr, length)
}
}
function teamMint(uint256 amount) external onlyOwner{
require(totalSupply() + amount < MAX_SUPPLY, "Must be below Max Supply");
_mint(msg.sender, amount);
}
modifier onlyOwner() {
require(_owner==msg.sender, "not Owner");
_;
}
modifier nob() {
require(tx.origin==msg.sender, "no Script");
_;
}
function withdraw() external onlyOwner {
uint256 balance = address(this).balance;
address payable recipient = payable(msg.sender);
recipient.call{value:balance, gas:30000}("");
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60e0604052602e60808181529061149860a03960029061001f90826101a5565b505f60035534801561002f575f5ffd5b505f80546001600160a01b0319163390811790915561004f9060de610054565b61025f565b6003545f8290036100785760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f9081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106100c257506003555b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061013657607f821691505b60208210810361015457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561010957805f5260205f20601f840160051c8101602085101561017f5750805b601f840160051c820191505b8181101561019e575f815560010161018b565b5050505050565b81516001600160401b038111156101be576101be61010e565b6101d2816101cc8454610122565b8461015a565b6020601f821160018114610204575f83156101ed5750848201515b5f19600385901b1c1916600184901b17845561019e565b5f84815260208120601f198516915b828110156102335787850151825560209485019460019092019101610213565b508482101561025057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b61122c8061026c5f395ff3fe60806040526004361061013c575f3560e01c806342842e0e116100b3578063a0712d681161006d578063a0712d6814610378578063a22cb4651461038b578063b88d4fde146103aa578063bf8fbbd2146103c9578063c87b56dd146103e4578063e985e9c514610403575f5ffd5b806342842e0e146102e057806347064d6a146102ff5780636352211e1461031e57806370a082311461033d5780638da5cb5b1461035c57806395d89b4114610174575f5ffd5b806318160ddd1161010457806318160ddd1461022757806323b872dd1461023b5780632a55205a1461025a5780632fbba1151461029857806332cb6b0c146102b75780633ccfd60b146102cc575f5ffd5b806301ffc9a71461014057806306fdde0314610174578063081812fc146101ad578063095ea7b3146101e45780630f2cdd6c14610205575b5f5ffd5b34801561014b575f5ffd5b5061015f61015a366004610d09565b610422565b60405190151581526020015b60405180910390f35b34801561017f575f5ffd5b50604080518082019091526008815267476f61626c696e7360c01b60208201525b60405161016b9190610d30565b3480156101b8575f5ffd5b506101cc6101c7366004610d65565b61048e565b6040516001600160a01b03909116815260200161016b565b3480156101ef575f5ffd5b506102036101fe366004610d97565b6104d2565b005b348015610210575f5ffd5b50610219600b81565b60405190815260200161016b565b348015610232575f5ffd5b50600354610219565b348015610246575f5ffd5b50610203610255366004610dbf565b61058d565b348015610265575f5ffd5b50610279610274366004610df9565b61059d565b604080516001600160a01b03909316835260208301919091520161016b565b3480156102a3575f5ffd5b506102036102b2366004610d65565b6105cc565b3480156102c2575f5ffd5b5061021961045781565b3480156102d7575f5ffd5b5061020361066f565b3480156102eb575f5ffd5b506102036102fa366004610dbf565b6106ea565b34801561030a575f5ffd5b50610203610319366004610ea4565b610704565b348015610329575f5ffd5b506101cc610338366004610d65565b61073d565b348015610348575f5ffd5b50610219610357366004610ef1565b610747565b348015610367575f5ffd5b505f546001600160a01b03166101cc565b610203610386366004610d65565b61078d565b348015610396575f5ffd5b506102036103a5366004610f0a565b610838565b3480156103b5575f5ffd5b506102036103c4366004610f43565b6108cc565b3480156103d4575f5ffd5b506102196705d423c655aa000081565b3480156103ef575f5ffd5b506101a06103fe366004610d65565b6108dd565b34801561040e575f5ffd5b5061015f61041d366004610fba565b6109e1565b5f6301ffc9a760e01b6001600160e01b03198316148061045257506380ac58cd60e01b6001600160e01b03198316145b8061046d575063152a902d60e11b6001600160e01b03198316145b806104885750635b5e139f60e01b6001600160e01b03198316145b92915050565b5f61049a826003541190565b6104b7576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f6104dc82610a0e565b9050806001600160a01b0316836001600160a01b0316036104fb575f5ffd5b336001600160a01b038216146105325761051581336109e1565b610532576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610598838383610a70565b505050565b5f80546001600160a01b0316906127106105b9846101f4610ff6565b6105c3919061100d565b90509250929050565b5f546001600160a01b031633146105fe5760405162461bcd60e51b81526004016105f59061102c565b60405180910390fd5b6104578161060b60035490565b610615919061104f565b106106625760405162461bcd60e51b815260206004820152601860248201527f4d7573742062652062656c6f77204d617820537570706c79000000000000000060448201526064016105f5565b61066c3382610c01565b50565b5f546001600160a01b031633146106985760405162461bcd60e51b81526004016105f59061102c565b6040514790339081906175309084905f818181858888f193505050503d805f81146106de576040519150601f19603f3d011682016040523d82523d5f602084013e6106e3565b606091505b5050505050565b61059883838360405180602001604052805f8152506108cc565b5f546001600160a01b0316331461072d5760405162461bcd60e51b81526004016105f59061102c565b600261073982826110de565b5050565b5f61048882610a0e565b5f815f03610768576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b336104578261079b60035490565b6107a5919061104f565b11156107de5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016105f5565b346107f16705d423c655aa000084610ff6565b111561082e5760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b60448201526064016105f5565b6107398183610c01565b336001600160a01b038316036108615760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108d7848484610a70565b50505050565b60606108ea826003541190565b61090757604051630a14c4b560e41b815260040160405180910390fd5b5f6002805461091590611062565b80601f016020809104026020016040519081016040528092919081815260200182805461094190611062565b801561098c5780601f106109635761010080835404028352916020019161098c565b820191905f5260205f20905b81548152906001019060200180831161096f57829003601f168201915b5050505050905080515f036109af5760405180602001604052805f8152506109da565b806109b984610cba565b6040516020016109ca9291906111b0565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b5f81600354811015610a57575f8181526004602052604081205490600160e01b82169003610a55575b805f036109da57505f19015f81815260046020526040902054610a37565b505b604051636f96cda160e11b815260040160405180910390fd5b5f610a7a82610a0e565b9050836001600160a01b0316816001600160a01b031614610aad5760405162a1148160e81b815260040160405180910390fd5b5f828152600660205260408120546001600160a01b0390811691908616331480610adc5750610adc86336109e1565b80610aef57506001600160a01b03821633145b905080610b0f57604051632ce44b5f60e11b815260040160405180910390fd5b8115610b31575f84815260066020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260056020908152604080832080545f1901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610bb857600184015f818152600460205260408120549003610bb6576003548114610bb6575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6003545f829003610c255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f9081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610c6f5750600355505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610cf757600183039250600a81066030018353600a9004610cd9565b50819003601f19909101908152919050565b5f60208284031215610d19575f5ffd5b81356001600160e01b0319811681146109da575f5ffd5b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610d75575f5ffd5b5035919050565b80356001600160a01b0381168114610d92575f5ffd5b919050565b5f5f60408385031215610da8575f5ffd5b610db183610d7c565b946020939093013593505050565b5f5f5f60608486031215610dd1575f5ffd5b610dda84610d7c565b9250610de860208501610d7c565b929592945050506040919091013590565b5f5f60408385031215610e0a575f5ffd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b5f5f67ffffffffffffffff841115610e4757610e47610e19565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff82111715610e7657610e76610e19565b604052838152905080828401851015610e8d575f5ffd5b838360208301375f60208583010152509392505050565b5f60208284031215610eb4575f5ffd5b813567ffffffffffffffff811115610eca575f5ffd5b8201601f81018413610eda575f5ffd5b610ee984823560208401610e2d565b949350505050565b5f60208284031215610f01575f5ffd5b6109da82610d7c565b5f5f60408385031215610f1b575f5ffd5b610f2483610d7c565b915060208301358015158114610f38575f5ffd5b809150509250929050565b5f5f5f5f60808587031215610f56575f5ffd5b610f5f85610d7c565b9350610f6d60208601610d7c565b925060408501359150606085013567ffffffffffffffff811115610f8f575f5ffd5b8501601f81018713610f9f575f5ffd5b610fae87823560208401610e2d565b91505092959194509250565b5f5f60408385031215610fcb575f5ffd5b610fd483610d7c565b91506105c360208401610d7c565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761048857610488610fe2565b5f8261102757634e487b7160e01b5f52601260045260245ffd5b500490565b6020808252600990820152683737ba1027bbb732b960b91b604082015260600190565b8082018082111561048857610488610fe2565b600181811c9082168061107657607f821691505b60208210810361109457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561059857805f5260205f20601f840160051c810160208510156110bf5750805b601f840160051c820191505b818110156106e3575f81556001016110cb565b815167ffffffffffffffff8111156110f8576110f8610e19565b61110c816111068454611062565b8461109a565b6020601f82116001811461113e575f83156111275750848201515b5f19600385901b1c1916600184901b1784556106e3565b5f84815260208120601f198516915b8281101561116d578785015182556020948501946001909201910161114d565b508482101561118a57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f81518060208401855e5f93019283525090919050565b66697066733a2f2f60c81b81525f6111cb6007830185611199565b602f60f81b81526111df6001820185611199565b64173539b7b760d91b81526005019594505050505056fea26469706673582212207e2ce9ca8e0e9e81b3d487ca6481203a9c4267203fee19f0e98f2c51b6b3b4e764736f6c634300081c0033516d50326175346d6b4b746a386e4859613373324733587346797578773562467539637a5077395555686f4a4d51
Deployed Bytecode
0x60806040526004361061013c575f3560e01c806342842e0e116100b3578063a0712d681161006d578063a0712d6814610378578063a22cb4651461038b578063b88d4fde146103aa578063bf8fbbd2146103c9578063c87b56dd146103e4578063e985e9c514610403575f5ffd5b806342842e0e146102e057806347064d6a146102ff5780636352211e1461031e57806370a082311461033d5780638da5cb5b1461035c57806395d89b4114610174575f5ffd5b806318160ddd1161010457806318160ddd1461022757806323b872dd1461023b5780632a55205a1461025a5780632fbba1151461029857806332cb6b0c146102b75780633ccfd60b146102cc575f5ffd5b806301ffc9a71461014057806306fdde0314610174578063081812fc146101ad578063095ea7b3146101e45780630f2cdd6c14610205575b5f5ffd5b34801561014b575f5ffd5b5061015f61015a366004610d09565b610422565b60405190151581526020015b60405180910390f35b34801561017f575f5ffd5b50604080518082019091526008815267476f61626c696e7360c01b60208201525b60405161016b9190610d30565b3480156101b8575f5ffd5b506101cc6101c7366004610d65565b61048e565b6040516001600160a01b03909116815260200161016b565b3480156101ef575f5ffd5b506102036101fe366004610d97565b6104d2565b005b348015610210575f5ffd5b50610219600b81565b60405190815260200161016b565b348015610232575f5ffd5b50600354610219565b348015610246575f5ffd5b50610203610255366004610dbf565b61058d565b348015610265575f5ffd5b50610279610274366004610df9565b61059d565b604080516001600160a01b03909316835260208301919091520161016b565b3480156102a3575f5ffd5b506102036102b2366004610d65565b6105cc565b3480156102c2575f5ffd5b5061021961045781565b3480156102d7575f5ffd5b5061020361066f565b3480156102eb575f5ffd5b506102036102fa366004610dbf565b6106ea565b34801561030a575f5ffd5b50610203610319366004610ea4565b610704565b348015610329575f5ffd5b506101cc610338366004610d65565b61073d565b348015610348575f5ffd5b50610219610357366004610ef1565b610747565b348015610367575f5ffd5b505f546001600160a01b03166101cc565b610203610386366004610d65565b61078d565b348015610396575f5ffd5b506102036103a5366004610f0a565b610838565b3480156103b5575f5ffd5b506102036103c4366004610f43565b6108cc565b3480156103d4575f5ffd5b506102196705d423c655aa000081565b3480156103ef575f5ffd5b506101a06103fe366004610d65565b6108dd565b34801561040e575f5ffd5b5061015f61041d366004610fba565b6109e1565b5f6301ffc9a760e01b6001600160e01b03198316148061045257506380ac58cd60e01b6001600160e01b03198316145b8061046d575063152a902d60e11b6001600160e01b03198316145b806104885750635b5e139f60e01b6001600160e01b03198316145b92915050565b5f61049a826003541190565b6104b7576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f6104dc82610a0e565b9050806001600160a01b0316836001600160a01b0316036104fb575f5ffd5b336001600160a01b038216146105325761051581336109e1565b610532576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610598838383610a70565b505050565b5f80546001600160a01b0316906127106105b9846101f4610ff6565b6105c3919061100d565b90509250929050565b5f546001600160a01b031633146105fe5760405162461bcd60e51b81526004016105f59061102c565b60405180910390fd5b6104578161060b60035490565b610615919061104f565b106106625760405162461bcd60e51b815260206004820152601860248201527f4d7573742062652062656c6f77204d617820537570706c79000000000000000060448201526064016105f5565b61066c3382610c01565b50565b5f546001600160a01b031633146106985760405162461bcd60e51b81526004016105f59061102c565b6040514790339081906175309084905f818181858888f193505050503d805f81146106de576040519150601f19603f3d011682016040523d82523d5f602084013e6106e3565b606091505b5050505050565b61059883838360405180602001604052805f8152506108cc565b5f546001600160a01b0316331461072d5760405162461bcd60e51b81526004016105f59061102c565b600261073982826110de565b5050565b5f61048882610a0e565b5f815f03610768576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b336104578261079b60035490565b6107a5919061104f565b11156107de5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016105f5565b346107f16705d423c655aa000084610ff6565b111561082e5760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b60448201526064016105f5565b6107398183610c01565b336001600160a01b038316036108615760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108d7848484610a70565b50505050565b60606108ea826003541190565b61090757604051630a14c4b560e41b815260040160405180910390fd5b5f6002805461091590611062565b80601f016020809104026020016040519081016040528092919081815260200182805461094190611062565b801561098c5780601f106109635761010080835404028352916020019161098c565b820191905f5260205f20905b81548152906001019060200180831161096f57829003601f168201915b5050505050905080515f036109af5760405180602001604052805f8152506109da565b806109b984610cba565b6040516020016109ca9291906111b0565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b5f81600354811015610a57575f8181526004602052604081205490600160e01b82169003610a55575b805f036109da57505f19015f81815260046020526040902054610a37565b505b604051636f96cda160e11b815260040160405180910390fd5b5f610a7a82610a0e565b9050836001600160a01b0316816001600160a01b031614610aad5760405162a1148160e81b815260040160405180910390fd5b5f828152600660205260408120546001600160a01b0390811691908616331480610adc5750610adc86336109e1565b80610aef57506001600160a01b03821633145b905080610b0f57604051632ce44b5f60e11b815260040160405180910390fd5b8115610b31575f84815260066020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260056020908152604080832080545f1901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610bb857600184015f818152600460205260408120549003610bb6576003548114610bb6575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6003545f829003610c255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f9081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610c6f5750600355505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610cf757600183039250600a81066030018353600a9004610cd9565b50819003601f19909101908152919050565b5f60208284031215610d19575f5ffd5b81356001600160e01b0319811681146109da575f5ffd5b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610d75575f5ffd5b5035919050565b80356001600160a01b0381168114610d92575f5ffd5b919050565b5f5f60408385031215610da8575f5ffd5b610db183610d7c565b946020939093013593505050565b5f5f5f60608486031215610dd1575f5ffd5b610dda84610d7c565b9250610de860208501610d7c565b929592945050506040919091013590565b5f5f60408385031215610e0a575f5ffd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b5f5f67ffffffffffffffff841115610e4757610e47610e19565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff82111715610e7657610e76610e19565b604052838152905080828401851015610e8d575f5ffd5b838360208301375f60208583010152509392505050565b5f60208284031215610eb4575f5ffd5b813567ffffffffffffffff811115610eca575f5ffd5b8201601f81018413610eda575f5ffd5b610ee984823560208401610e2d565b949350505050565b5f60208284031215610f01575f5ffd5b6109da82610d7c565b5f5f60408385031215610f1b575f5ffd5b610f2483610d7c565b915060208301358015158114610f38575f5ffd5b809150509250929050565b5f5f5f5f60808587031215610f56575f5ffd5b610f5f85610d7c565b9350610f6d60208601610d7c565b925060408501359150606085013567ffffffffffffffff811115610f8f575f5ffd5b8501601f81018713610f9f575f5ffd5b610fae87823560208401610e2d565b91505092959194509250565b5f5f60408385031215610fcb575f5ffd5b610fd483610d7c565b91506105c360208401610d7c565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761048857610488610fe2565b5f8261102757634e487b7160e01b5f52601260045260245ffd5b500490565b6020808252600990820152683737ba1027bbb732b960b91b604082015260600190565b8082018082111561048857610488610fe2565b600181811c9082168061107657607f821691505b60208210810361109457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561059857805f5260205f20601f840160051c810160208510156110bf5750805b601f840160051c820191505b818110156106e3575f81556001016110cb565b815167ffffffffffffffff8111156110f8576110f8610e19565b61110c816111068454611062565b8461109a565b6020601f82116001811461113e575f83156111275750848201515b5f19600385901b1c1916600184901b1784556106e3565b5f84815260208120601f198516915b8281101561116d578785015182556020948501946001909201910161114d565b508482101561118a57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f81518060208401855e5f93019283525090919050565b66697066733a2f2f60c81b81525f6111cb6007830185611199565b602f60f81b81526111df6001820185611199565b64173539b7b760d91b81526005019594505050505056fea26469706673582212207e2ce9ca8e0e9e81b3d487ca6481203a9c4267203fee19f0e98f2c51b6b3b4e764736f6c634300081c0033
Deployed Bytecode Sourcemap
16946:20693:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21178:674;;;;;;;;;;-1:-1:-1;21178:674:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;21178:674:0;;;;;;;;25440:100;;;;;;;;;;-1:-1:-1;25527:5:0;;;;;;;;;;;;-1:-1:-1;;;25527:5:0;;;;25440:100;;;;;;;:::i;27105:204::-;;;;;;;;;;-1:-1:-1;27105:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1315:32:1;;;1297:51;;1285:2;1270:18;27105:204:0;1151:203:1;26588:451:0;;;;;;;;;;-1:-1:-1;26588:451:0;;;;;:::i;:::-;;:::i;:::-;;17220:43;;;;;;;;;;;;17261:2;17220:43;;;;;1988:25:1;;;1976:2;1961:18;17220:43:0;1842:177:1;20421:300:0;;;;;;;;;;-1:-1:-1;20671:13:0;;20421:300;;27991:190;;;;;;;;;;-1:-1:-1;27991:190:0;;;;;:::i;:::-;;:::i;19426:274::-;;;;;;;;;;-1:-1:-1;19426:274:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;2946:32:1;;;2928:51;;3010:2;2995:18;;2988:34;;;;2901:18;19426:274:0;2754::1;37040:179:0;;;;;;;;;;-1:-1:-1;37040:179:0;;;;;:::i;:::-;;:::i;17172:41::-;;;;;;;;;;;;17209:4;17172:41;;37426:210;;;;;;;;;;;;;:::i;28252:205::-;;;;;;;;;;-1:-1:-1;28252:205:0;;;;;:::i;:::-;;:::i;19708:91::-;;;;;;;;;;-1:-1:-1;19708:91:0;;;;;:::i;:::-;;:::i;25229:144::-;;;;;;;;;;-1:-1:-1;25229:144:0;;;;;:::i;:::-;;:::i;21916:234::-;;;;;;;;;;-1:-1:-1;21916:234:0;;;;;:::i;:::-;;:::i;17048:77::-;;;;;;;;;;-1:-1:-1;17085:7:0;17111:6;-1:-1:-1;;;;;17111:6:0;17048:77;;17596:267;;;;;;:::i;:::-;;:::i;27381:308::-;;;;;;;;;;-1:-1:-1;27381:308:0;;;;;:::i;:::-;;:::i;28528:227::-;;;;;;;;;;-1:-1:-1;28528:227:0;;;;;:::i;:::-;;:::i;17270:41::-;;;;;;;;;;;;17301:10;17270:41;;25725:339;;;;;;;;;;-1:-1:-1;25725:339:0;;;;;:::i;:::-;;:::i;27760:164::-;;;;;;;;;;-1:-1:-1;27760:164:0;;;;;:::i;:::-;;:::i;21178:674::-;21263:4;-1:-1:-1;;;;;;;;;21563:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21640:25:0;;;21563:102;:179;;;-1:-1:-1;;;;;;;;;;21717:25:0;;;21563:179;:238;;;-1:-1:-1;;;;;;;;;;21776:25:0;;;21563:238;21543:258;21178:674;-1:-1:-1;;21178:674:0:o;27105:204::-;27173:7;27198:16;27206:7;29157:13;;-1:-1:-1;29147:23:0;29010:168;27198:16;27193:64;;27223:34;;-1:-1:-1;;;27223:34:0;;;;;;;;;;;27193:64;-1:-1:-1;27277:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27277:24:0;;27105:204::o;26588:451::-;26661:13;26693:27;26712:7;26693:18;:27::i;:::-;26661:61;;26743:5;-1:-1:-1;;;;;26737:11:0;:2;-1:-1:-1;;;;;26737:11:0;;26733:25;;26750:8;;;26733:25;35026:10;-1:-1:-1;;;;;26775:28:0;;;26771:175;;26823:44;26840:5;35026:10;27760:164;:::i;26823:44::-;26818:128;;26895:35;;-1:-1:-1;;;26895:35:0;;;;;;;;;;;26818:128;26958:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;26958:29:0;-1:-1:-1;;;;;26958:29:0;;;;;;;;;27003:28;;26958:24;;27003:28;;;;;;;26650:389;26588:451;;:::o;27991:190::-;28145:28;28155:4;28161:2;28165:7;28145:9;:28::i;:::-;27991:190;;;:::o;19426:274::-;19525:16;19593:6;;-1:-1:-1;;;;;19593:6:0;;19646:5;19627:15;:9;19639:3;19627:15;:::i;:::-;19626:25;;;;:::i;:::-;19610:41;;19426:274;;;;;:::o;37040:179::-;37268:6;;-1:-1:-1;;;;;37268:6:0;37276:10;37268:18;37260:40;;;;-1:-1:-1;;;37260:40:0;;;;;;;:::i;:::-;;;;;;;;;17209:4:::1;37127:6;37111:13;20671::::0;;;20421:300;37111:13:::1;:22;;;;:::i;:::-;:35;37103:72;;;::::0;-1:-1:-1;;;37103:72:0;;7064:2:1;37103:72:0::1;::::0;::::1;7046:21:1::0;7103:2;7083:18;;;7076:30;7142:26;7122:18;;;7115:54;7186:18;;37103:72:0::1;6862:348:1::0;37103:72:0::1;37186:25;37192:10;37204:6;37186:5;:25::i;:::-;37040:179:::0;:::o;37426:210::-;37268:6;;-1:-1:-1;;;;;37268:6:0;37276:10;37268:18;37260:40;;;;-1:-1:-1;;;37260:40:0;;;;;;;:::i;:::-;37584:44:::1;::::0;37494:21:::1;::::0;37562:10:::1;::::0;;;37618:5:::1;::::0;37494:21;;37584:44:::1;::::0;;;37494:21;37562:10;37618:5;37584:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37465:171;;37426:210::o:0;28252:205::-;28410:39;28427:4;28433:2;28437:7;28410:39;;;;;;;;;;;;:16;:39::i;19708:91::-;37268:6;;-1:-1:-1;;;;;37268:6:0;37276:10;37268:18;37260:40;;;;-1:-1:-1;;;37260:40:0;;;;;;;:::i;:::-;19775:8:::1;:16;19786:5:::0;19775:8;:16:::1;:::i;:::-;;19708:91:::0;:::o;25229:144::-;25293:7;25336:27;25355:7;25336:18;:27::i;21916:234::-;21980:7;22022:5;22032:1;22004:29;22000:70;;22042:28;;-1:-1:-1;;;22042:28:0;;;;;;;;;;;22000:70;-1:-1:-1;;;;;;22088:25:0;;;;;:18;:25;;;;;;17974:13;22088:54;;21916:234::o;17596:267::-;35026:10;17209:4;17727:6;17711:13;20671;;;20421:300;17711:13;:22;;;;:::i;:::-;:36;;17703:57;;;;-1:-1:-1;;;17703:57:0;;10136:2:1;17703:57:0;;;10118:21:1;10175:1;10155:18;;;10148:29;-1:-1:-1;;;10193:18:1;;;10186:38;10241:18;;17703:57:0;9934:331:1;17703:57:0;17794:9;17779:11;17301:10;17779:6;:11;:::i;:::-;:24;;17771:49;;;;-1:-1:-1;;;17771:49:0;;10472:2:1;17771:49:0;;;10454:21:1;10511:2;10491:18;;;10484:30;-1:-1:-1;;;10530:18:1;;;10523:42;10582:18;;17771:49:0;10270:336:1;17771:49:0;17833:22;17839:7;17848:6;17833:5;:22::i;27381:308::-;35026:10;-1:-1:-1;;;;;27480:31:0;;;27476:61;;27520:17;;-1:-1:-1;;;27520:17:0;;;;;;;;;;;27476:61;35026:10;27550:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;27550:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;27550:60:0;;;;;;;;;;27626:55;;445:41:1;;;27550:49:0;;35026:10;27626:55;;418:18:1;27626:55:0;;;;;;;27381:308;;:::o;28528:227::-;28719:28;28729:4;28735:2;28739:7;28719:9;:28::i;:::-;28528:227;;;;:::o;25725:339::-;25798:13;25829:16;25837:7;29157:13;;-1:-1:-1;29147:23:0;29010:168;25829:16;25824:59;;25854:29;;-1:-1:-1;;;25854:29:0;;;;;;;;;;;25824:59;25894:21;25918:8;25894:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25950:7;25944:21;25969:1;25944:26;:112;;;;;;;;;;;;;;;;;26008:7;26022:18;26032:7;26022:9;:18::i;:::-;25980:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25944:112;25937:119;25725:339;-1:-1:-1;;;25725:339:0:o;27760:164::-;-1:-1:-1;;;;;27881:25:0;;;27857:4;27881:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27760:164::o;22744:1129::-;22811:7;22846;22948:13;;22941:4;:20;22937:869;;;22986:14;23003:23;;;:17;:23;;;;;;;-1:-1:-1;;;23092:23:0;;:28;;23088:699;;23611:113;23618:6;23628:1;23618:11;23611:113;;-1:-1:-1;;;23689:6:0;23671:25;;;;:17;:25;;;;;;23611:113;;23088:699;22963:843;22937:869;23834:31;;-1:-1:-1;;;23834:31:0;;;;;;;;;;;31295:2561;31436:27;31466;31485:7;31466:18;:27::i;:::-;31436:57;;31551:4;-1:-1:-1;;;;;31510:45:0;31526:19;-1:-1:-1;;;;;31510:45:0;;31506:86;;31564:28;;-1:-1:-1;;;31564:28:0;;;;;;;;;;;31506:86;31605:23;31631:24;;;:15;:24;;;;;;-1:-1:-1;;;;;31631:24:0;;;;31605:23;31694:27;;35026:10;31694:27;;:91;;-1:-1:-1;31742:43:0;31759:4;35026:10;27760:164;:::i;31742:43::-;31694:150;;;-1:-1:-1;;;;;;31806:38:0;;35026:10;31806:38;31694:150;31668:177;;31863:17;31858:66;;31889:35;;-1:-1:-1;;;31889:35:0;;;;;;;;;;;31858:66;32014:15;31996:39;31992:103;;32059:24;;;;:15;:24;;;;;32052:31;;-1:-1:-1;;;;;;32052:31:0;;;31992:103;-1:-1:-1;;;;;32462:24:0;;;;;;;:18;:24;;;;;;;;32460:26;;-1:-1:-1;;32460:26:0;;;32531:22;;;;;;;;32529:24;;-1:-1:-1;32529:24:0;;;32824:26;;;:17;:26;;;;;-1:-1:-1;;;32912:15:0;18278:3;32912:41;32870:84;;:128;;32824:174;;;33118:46;;:51;;33114:626;;33222:1;33212:11;;33190:19;33345:30;;;:17;:30;;;;;;:35;;33341:384;;33483:13;;33468:11;:28;33464:242;;33630:30;;;;:17;:30;;;;;:52;;;33464:242;33171:569;33114:626;33787:7;33783:2;-1:-1:-1;;;;;33768:27:0;33777:4;-1:-1:-1;;;;;33768:27:0;;;;;;;;;;;31419:2437;;;31295:2561;;;:::o;29443:1596::-;29531:13;;29508:20;29630:13;;;29626:44;;29652:18;;-1:-1:-1;;;29652:18:0;;;;;;;;;;;29626:44;-1:-1:-1;;;;;30147:22:0;;;;;;:18;:22;;;;18042:2;30147:22;;;:70;;30185:31;30173:44;;30147:70;;;30460:31;;;:17;:31;;;;;30553:15;18278:3;30553:41;30511:84;;-1:-1:-1;30631:13:0;;18396:3;30616:56;30511:162;30460:213;;:31;30754:23;;;30794:111;30821:40;;30846:14;;;;;-1:-1:-1;;;;;30821:40:0;;;30838:1;;30821:40;;30838:1;;30821:40;30900:3;30885:12;:18;30794:111;;-1:-1:-1;30921:13:0;:28;27991:190;;;:::o;35150:1882::-;35621:4;35615:11;;35628:3;35611:21;;35702:17;;;;36374:11;;;36251:5;36508:2;36522;36512:13;;36504:22;36374:11;36491:36;36564:2;36554:13;;36148:661;36580:4;36148:661;;;36748:1;36743:3;36739:11;36732:18;;36792:2;36786:4;36782:13;36778:2;36774:22;36769:3;36761:36;36665:2;36655:13;;36148:661;;;-1:-1:-1;36832:13:0;;;-1:-1:-1;;36941:12:0;;;36995:19;;;36941:12;35150:1882;-1:-1:-1;35150:1882:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:418;646:2;635:9;628:21;609:4;678:6;672:13;721:6;716:2;705:9;701:18;694:34;780:6;775:2;767:6;763:15;758:2;747:9;743:18;737:50;836:1;831:2;822:6;811:9;807:22;803:31;796:42;906:2;899;895:7;890:2;882:6;878:15;874:29;863:9;859:45;855:54;847:62;;;497:418;;;;:::o;920:226::-;979:6;1032:2;1020:9;1011:7;1007:23;1003:32;1000:52;;;1048:1;1045;1038:12;1000:52;-1:-1:-1;1093:23:1;;920:226;-1:-1:-1;920:226:1:o;1359:173::-;1427:20;;-1:-1:-1;;;;;1476:31:1;;1466:42;;1456:70;;1522:1;1519;1512:12;1456:70;1359:173;;;:::o;1537:300::-;1605:6;1613;1666:2;1654:9;1645:7;1641:23;1637:32;1634:52;;;1682:1;1679;1672:12;1634:52;1705:29;1724:9;1705:29;:::i;:::-;1695:39;1803:2;1788:18;;;;1775:32;;-1:-1:-1;;;1537:300:1:o;2024:374::-;2101:6;2109;2117;2170:2;2158:9;2149:7;2145:23;2141:32;2138:52;;;2186:1;2183;2176:12;2138:52;2209:29;2228:9;2209:29;:::i;:::-;2199:39;;2257:38;2291:2;2280:9;2276:18;2257:38;:::i;:::-;2024:374;;2247:48;;-1:-1:-1;;;2364:2:1;2349:18;;;;2336:32;;2024:374::o;2403:346::-;2471:6;2479;2532:2;2520:9;2511:7;2507:23;2503:32;2500:52;;;2548:1;2545;2538:12;2500:52;-1:-1:-1;;2593:23:1;;;2713:2;2698:18;;;2685:32;;-1:-1:-1;2403:346:1:o;3033:127::-;3094:10;3089:3;3085:20;3082:1;3075:31;3125:4;3122:1;3115:15;3149:4;3146:1;3139:15;3165:716;3230:5;3262:1;3286:18;3278:6;3275:30;3272:56;;;3308:18;;:::i;:::-;-1:-1:-1;3463:2:1;3457:9;-1:-1:-1;;3376:2:1;3355:15;;3351:29;;3521:2;3509:15;3505:29;3493:42;;3586:22;;;3565:18;3550:34;;3547:62;3544:88;;;3612:18;;:::i;:::-;3648:2;3641:22;3696;;;3681:6;-1:-1:-1;3681:6:1;3733:16;;;3730:25;-1:-1:-1;3727:45:1;;;3768:1;3765;3758:12;3727:45;3818:6;3813:3;3806:4;3798:6;3794:17;3781:44;3873:1;3866:4;3857:6;3849;3845:19;3841:30;3834:41;;3165:716;;;;;:::o;3886:451::-;3955:6;4008:2;3996:9;3987:7;3983:23;3979:32;3976:52;;;4024:1;4021;4014:12;3976:52;4064:9;4051:23;4097:18;4089:6;4086:30;4083:50;;;4129:1;4126;4119:12;4083:50;4152:22;;4205:4;4197:13;;4193:27;-1:-1:-1;4183:55:1;;4234:1;4231;4224:12;4183:55;4257:74;4323:7;4318:2;4305:16;4300:2;4296;4292:11;4257:74;:::i;:::-;4247:84;3886:451;-1:-1:-1;;;;3886:451:1:o;4342:186::-;4401:6;4454:2;4442:9;4433:7;4429:23;4425:32;4422:52;;;4470:1;4467;4460:12;4422:52;4493:29;4512:9;4493:29;:::i;4533:347::-;4598:6;4606;4659:2;4647:9;4638:7;4634:23;4630:32;4627:52;;;4675:1;4672;4665:12;4627:52;4698:29;4717:9;4698:29;:::i;:::-;4688:39;;4777:2;4766:9;4762:18;4749:32;4824:5;4817:13;4810:21;4803:5;4800:32;4790:60;;4846:1;4843;4836:12;4790:60;4869:5;4859:15;;;4533:347;;;;;:::o;4885:713::-;4980:6;4988;4996;5004;5057:3;5045:9;5036:7;5032:23;5028:33;5025:53;;;5074:1;5071;5064:12;5025:53;5097:29;5116:9;5097:29;:::i;:::-;5087:39;;5145:38;5179:2;5168:9;5164:18;5145:38;:::i;:::-;5135:48;-1:-1:-1;5252:2:1;5237:18;;5224:32;;-1:-1:-1;5331:2:1;5316:18;;5303:32;5358:18;5347:30;;5344:50;;;5390:1;5387;5380:12;5344:50;5413:22;;5466:4;5458:13;;5454:27;-1:-1:-1;5444:55:1;;5495:1;5492;5485:12;5444:55;5518:74;5584:7;5579:2;5566:16;5561:2;5557;5553:11;5518:74;:::i;:::-;5508:84;;;4885:713;;;;;;;:::o;5603:260::-;5671:6;5679;5732:2;5720:9;5711:7;5707:23;5703:32;5700:52;;;5748:1;5745;5738:12;5700:52;5771:29;5790:9;5771:29;:::i;:::-;5761:39;;5819:38;5853:2;5842:9;5838:18;5819:38;:::i;5868:127::-;5929:10;5924:3;5920:20;5917:1;5910:31;5960:4;5957:1;5950:15;5984:4;5981:1;5974:15;6000:168;6073:9;;;6104;;6121:15;;;6115:22;;6101:37;6091:71;;6142:18;;:::i;6173:217::-;6213:1;6239;6229:132;;6283:10;6278:3;6274:20;6271:1;6264:31;6318:4;6315:1;6308:15;6346:4;6343:1;6336:15;6229:132;-1:-1:-1;6375:9:1;;6173:217::o;6395:332::-;6597:2;6579:21;;;6636:1;6616:18;;;6609:29;-1:-1:-1;;;6669:2:1;6654:18;;6647:39;6718:2;6703:18;;6395:332::o;6732:125::-;6797:9;;;6818:10;;;6815:36;;;6831:18;;:::i;7425:380::-;7504:1;7500:12;;;;7547;;;7568:61;;7622:4;7614:6;7610:17;7600:27;;7568:61;7675:2;7667:6;7664:14;7644:18;7641:38;7638:161;;7721:10;7716:3;7712:20;7709:1;7702:31;7756:4;7753:1;7746:15;7784:4;7781:1;7774:15;7638:161;;7425:380;;;:::o;7936:518::-;8038:2;8033:3;8030:11;8027:421;;;8074:5;8071:1;8064:16;8118:4;8115:1;8105:18;8188:2;8176:10;8172:19;8169:1;8165:27;8159:4;8155:38;8224:4;8212:10;8209:20;8206:47;;;-1:-1:-1;8247:4:1;8206:47;8302:2;8297:3;8293:12;8290:1;8286:20;8280:4;8276:31;8266:41;;8357:81;8375:2;8368:5;8365:13;8357:81;;;8434:1;8420:16;;8401:1;8390:13;8357:81;;8630:1299;8756:3;8750:10;8783:18;8775:6;8772:30;8769:56;;;8805:18;;:::i;:::-;8834:97;8924:6;8884:38;8916:4;8910:11;8884:38;:::i;:::-;8878:4;8834:97;:::i;:::-;8980:4;9011:2;9000:14;;9028:1;9023:649;;;;9716:1;9733:6;9730:89;;;-1:-1:-1;9785:19:1;;;9779:26;9730:89;-1:-1:-1;;8587:1:1;8583:11;;;8579:24;8575:29;8565:40;8611:1;8607:11;;;8562:57;9832:81;;8993:930;;9023:649;7883:1;7876:14;;;7920:4;7907:18;;-1:-1:-1;;9059:20:1;;;9177:222;9191:7;9188:1;9185:14;9177:222;;;9273:19;;;9267:26;9252:42;;9380:4;9365:20;;;;9333:1;9321:14;;;;9207:12;9177:222;;;9181:3;9427:6;9418:7;9415:19;9412:201;;;9488:19;;;9482:26;-1:-1:-1;;9571:1:1;9567:14;;;9583:3;9563:24;9559:37;9555:42;9540:58;9525:74;;9412:201;-1:-1:-1;;;;9659:1:1;9643:14;;;9639:22;9626:36;;-1:-1:-1;8630:1299:1:o;10611:212::-;10653:3;10691:5;10685:12;10735:6;10728:4;10721:5;10717:16;10712:3;10706:36;10797:1;10761:16;;10786:13;;;-1:-1:-1;10761:16:1;;10611:212;-1:-1:-1;10611:212:1:o;10828:719::-;-1:-1:-1;;;11335:3:1;11328:22;11310:3;11369:38;11404:1;11399:3;11395:11;11387:6;11369:38;:::i;:::-;-1:-1:-1;;;11423:2:1;11416:15;11450:37;11484:1;11480:2;11476:10;11468:6;11450:37;:::i;:::-;-1:-1:-1;;;11496:19:1;;11539:1;11531:10;;10828:719;-1:-1:-1;;;;;10828:719:1:o
Swarm Source
ipfs://7e2ce9ca8e0e9e81b3d487ca6481203a9c4267203fee19f0e98f2c51b6b3b4e7
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.