ERC-721
NFT
Overview
Max Total Supply
5,001 HEXGO NFT
Holders
1,513
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 HEXGO NFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HEXGO
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-27 */ // Sources flattened with hardhat v2.9.6 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // : 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; } } // File @openzeppelin/contracts/access/[email protected] // : MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/security/[email protected] // : MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/security/[email protected] // : MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File erc721a/contracts/[email protected] // : MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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(); /** * 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 payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @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 payable; /** * @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 ); } // File erc721a/contracts/[email protected] // : MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // 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) 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: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or( owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags) ) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); ( uint256 approvedAddressSlot, address approvedAddress ) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if ( !_isSenderApprovedOrOwner( approvedAddress, from, _msgSenderERC721A() ) ) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received( _msgSenderERC721A(), from, tokenId, _data ) returns (bytes4 retval) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer( startTokenId, startTokenId + quantity - 1, address(0), to ); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if ( !_checkContractOnERC721Received( address(0), to, index++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ""); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); ( uint256 approvedAddressSlot, address approvedAddress ) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if ( !_isSenderApprovedOrOwner( approvedAddress, from, _msgSenderERC721A() ) ) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // : MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File contracts/HexgoCard.sol /* __ __ ______ _ __ ______ ____ / / / / / ____/ | |/ / / ____/ / __ \ / /_/ / / __/ | / / / __ / / / / / __ / / /___ / | / /_/ / / /_/ / /_/ /_/ /_____/ /_/|_| \____/ \____/ */ // : BSD-1-Clause pragma solidity ^0.8.4; /** * @title HEXGO */ contract HEXGO is ERC721A, Ownable, Pausable, ReentrancyGuard { /** ===================== PUBLIC INFO / VARIABLES ===================== */ string baseTokenURI; // string public placeholderTokenURI; bool public checkPublicSaleMint; bool public checkWhitelistMint; uint256 public maxSupply; uint256 public maxWhitelistSupply; uint256 public mintLimit; uint256 public mintPrice; mapping(address => uint256) whitelistMintCount; mapping(address => uint256) mintCount; bytes32 public whitelistMerkleRoot; function isWhitelisted(address addr, bytes32[] calldata merkleProof_) public view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(addr)); return MerkleProof.verify(merkleProof_, whitelistMerkleRoot, leaf); } /// @notice Checks if the given address can currently mint /// @dev Returns true if not paused, supply not reached and public sale or whitelisted whitelist /// @param addr to check for minting permission /// @param merkleProof_ should be only provided in order to check the whitelist function canMint(address addr, bytes32[] calldata merkleProof_) external view returns (bool) { bool isWhitelist = (checkWhitelistMint && isWhitelisted(addr, merkleProof_)); bool supplyNotReached = isWhitelist ? maxWhitelistSupply == 0 || totalSupply() <= maxWhitelistSupply : maxSupply + maxWhitelistSupply == 0 || totalSupply() <= maxSupply + maxWhitelistSupply; return !paused() && supplyNotReached && (checkPublicSaleMint || isWhitelist); } /** ===================== CONTRACT INITIALIZATION ===================== */ constructor( string memory name, string memory symbol, string memory baseTokenURI_, uint256 maxSupply_, uint256 maxWhitelistSupply_, uint256 mintLimit_, uint256 mintPrice_, bytes32 merkleRoot_ ) ERC721A(name, symbol) { baseTokenURI = baseTokenURI_; maxSupply = maxSupply_; maxWhitelistSupply = maxWhitelistSupply_; mintLimit = mintLimit_; mintPrice = mintPrice_; whitelistMerkleRoot = merkleRoot_; } /** ===================== OPERATIONAL FUNCTIONS ===================== */ /// @notice Mints new NFTs /// @param many how many NFTs to mint /// @param merkleProof_ needs to be provided during the whitelist function mint(uint256 many, bytes32[] calldata merkleProof_) public payable whenNotPaused nonReentrant { // Check if we reached max supply uint256 supply = totalSupply(); address sender = _msgSender(); bool isWhitelist = (checkWhitelistMint && isWhitelisted(sender, merkleProof_)); bool supplyNotReached = isWhitelist ? maxWhitelistSupply == 0 || supply + many <= maxWhitelistSupply : maxSupply + maxWhitelistSupply == 0 || supply + many <= maxSupply + maxWhitelistSupply; require(supplyNotReached, "Max supply reached"); uint256 totalPrice = 0; /** NOTE: when public sale is activated, all minting goes through the public route */ require(checkPublicSaleMint || checkWhitelistMint, "Minting closed"); if (checkWhitelistMint && !checkPublicSaleMint) { // Check if address in the whitelist/whitelisted require(isWhitelist, "Invalid proof"); } totalPrice = many * mintPrice; require(msg.value >= totalPrice, "Not enough funds transferred"); // Check if mint per address is reached // If public sale is active, we use the public counter // Only when the whitelist sale is active and public is off, the // whitelist counter is used. uint256 count = isWhitelist && !checkPublicSaleMint ? whitelistMintCount[sender] : mintCount[sender]; require(count + many <= mintLimit, "Personal limit reached"); // Increment counter, // Similar gas usage here as before, the whitelist counter is the same, // it just gets "reset" when public mint starts (isWhitelist && !checkPublicSaleMint ? whitelistMintCount : mintCount)[ sender ] = count + many; // Mint all _mint(sender, many); // Return funds if transferred too much uint256 rest = msg.value - totalPrice; if (rest > 0) { (bool success, ) = sender.call{value: rest}(""); require(success); } } /** ===================== ADMINISTRATIVE FUNCTIONS ===================== */ /// @notice Withdraws all ether from the contract /// @param to where withdraw the amount. Can be another contract address. function withdrawAll(address to) external onlyOwner { withdraw(to, address(this).balance); } /// @notice Withdraw the amount of ether from the contract /// @param to where withdraw the amount. Can be another contract address. /// @param amount to withdraw. function withdraw(address to, uint256 amount) public onlyOwner { uint256 balance = address(this).balance; require(amount <= balance); (bool success, ) = to.call{value: amount}(""); require(success); } /// @notice Toggles public sale flag function toggleWhitelistState() external onlyOwner { checkWhitelistMint = !checkWhitelistMint; } /// @notice Toggles public sale flag function togglePublicSaleState() external onlyOwner { checkPublicSaleMint = !checkPublicSaleMint; } /// @notice Sets max supply /// @param maxSupply_ that can be minted. function setMaxSupply(uint256 maxSupply_) external onlyOwner { maxSupply = maxSupply_; } /// @notice Sets max supply for whitelist /// @param maxWhitelistSupply_ that can be minted. function setWhitelistMaxSupply(uint256 maxWhitelistSupply_) external onlyOwner { maxWhitelistSupply = maxWhitelistSupply_; } /// @notice Sets public mint cost /// @param mintPrice_ for each minted item function setMintPrice(uint256 mintPrice_) external onlyOwner { mintPrice = mintPrice_; } /// @notice Sets public mint limit for each address /// @param mintLimit_ of mints for each address function setMintLimit(uint256 mintLimit_) external onlyOwner { mintLimit = mintLimit_; } /// @notice Sets the merkleRoot /// @param merkleRoot_ that should be set function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner { whitelistMerkleRoot = merkleRoot_; } /// @notice Sets base URI /// @param uri of the new base function setBaseURI(string memory uri) external onlyOwner { baseTokenURI = uri; } /// @notice Pauses the contract function pause() external onlyOwner { _pause(); } /// @notice Unpauses the contract function unpause() external onlyOwner { _unpause(); } /** ===================== PRIVATE HELPER FUNCTIONS ===================== */ function _baseURI() internal view override returns (string memory) { return baseTokenURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI_","type":"string"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"},{"internalType":"uint256","name":"maxWhitelistSupply_","type":"uint256"},{"internalType":"uint256","name":"mintLimit_","type":"uint256"},{"internalType":"uint256","name":"mintPrice_","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes32[]","name":"merkleProof_","type":"bytes32[]"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkPublicSaleMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkWhitelistMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"addr","type":"address"},{"internalType":"bytes32[]","name":"merkleProof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"many","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof_","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintLimit_","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice_","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWhitelistSupply_","type":"uint256"}],"name":"setWhitelistMaxSupply","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":[],"name":"togglePublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistState","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200274038038062002740833981016040819052620000349162000267565b8751889088906200004d9060029060208501906200010e565b508051620000639060039060208401906200010e565b505060008055506200007533620000bc565b6008805460ff60a01b19169055600160095585516200009c90600a9060208901906200010e565b50600c94909455600d92909255600e55600f556012555062000378915050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011c9062000325565b90600052602060002090601f0160209004810192826200014057600085556200018b565b82601f106200015b57805160ff19168380011785556200018b565b828001600101855582156200018b579182015b828111156200018b5782518255916020019190600101906200016e565b50620001999291506200019d565b5090565b5b808211156200019957600081556001016200019e565b600082601f830112620001c5578081fd5b81516001600160401b0380821115620001e257620001e262000362565b604051601f8301601f19908116603f011681019082821181831017156200020d576200020d62000362565b8160405283815260209250868385880101111562000229578485fd5b8491505b838210156200024c57858201830151818301840152908201906200022d565b838211156200025d57848385830101525b9695505050505050565b600080600080600080600080610100898b03121562000284578384fd5b88516001600160401b03808211156200029b578586fd5b620002a98c838d01620001b4565b995060208b0151915080821115620002bf578586fd5b620002cd8c838d01620001b4565b985060408b0151915080821115620002e3578586fd5b50620002f28b828c01620001b4565b965050606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b600181811c908216806200033a57607f821691505b602082108114156200035c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6123b880620003886000396000f3fe6080604052600436106102bb5760003560e01c80638da5cb5b1161016e578063ba41b0c6116100cb578063e985e9c51161007f578063f3fef3a311610064578063f3fef3a3146106fe578063f4a0a5281461071e578063fa09e6301461073e57600080fd5b8063e985e9c514610695578063f2fde38b146106de57600080fd5b8063cbd0fffe116100b0578063cbd0fffe1461064a578063d5abeb011461066a578063e62a7ae21461068057600080fd5b8063ba41b0c614610617578063c87b56dd1461062a57600080fd5b8063a22cb46511610122578063acde7f7011610107578063acde7f70146105cf578063b677dd0b146105e4578063b88d4fde1461060457600080fd5b8063a22cb46514610599578063aa98e0c6146105b957600080fd5b806395d89b411161015357806395d89b411461054e578063996517cf146105635780639e6a1d7d1461057957600080fd5b80638da5cb5b1461051a578063953f049d1461053857600080fd5b806355f804b31161021c5780636f8b44b0116101d0578063715018a6116101b5578063715018a6146104d05780637cb64759146104e55780638456cb591461050557600080fd5b80636f8b44b01461049057806370a08231146104b057600080fd5b80635c975abb116102015780635c975abb1461043b5780636352211e1461045a5780636817c76c1461047a57600080fd5b806355f804b3146103fb5780635a23dd991461041b57600080fd5b806323b872dd11610273578063353b0a4e11610258578063353b0a4e146103b95780633f4ba83a146103d357806342842e0e146103e857600080fd5b806323b872dd1461038757806332de404c1461039a57600080fd5b8063081812fc116102a4578063081812fc14610317578063095ea7b31461034f57806318160ddd1461036457600080fd5b806301ffc9a7146102c057806306fdde03146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db366004612101565b61075e565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b5061030a6107fb565b6040516102ec919061223d565b34801561032357600080fd5b506103376103323660046120e9565b61088d565b6040516001600160a01b0390911681526020016102ec565b61036261035d3660046120c0565b6108ea565b005b34801561037057600080fd5b50600154600054035b6040519081526020016102ec565b610362610395366004611f81565b6109b0565b3480156103a657600080fd5b50600b546102e090610100900460ff1681565b3480156103c557600080fd5b50600b546102e09060ff1681565b3480156103df57600080fd5b50610362610b8d565b6103626103f6366004611f81565b610be4565b34801561040757600080fd5b50610362610416366004612139565b610c04565b34801561042757600080fd5b506102e0610436366004612035565b610c63565b34801561044757600080fd5b50600854600160a01b900460ff166102e0565b34801561046657600080fd5b506103376104753660046120e9565b610ce9565b34801561048657600080fd5b50610379600f5481565b34801561049c57600080fd5b506103626104ab3660046120e9565b610cf4565b3480156104bc57600080fd5b506103796104cb366004611f35565b610d41565b3480156104dc57600080fd5b50610362610da9565b3480156104f157600080fd5b506103626105003660046120e9565b610dfb565b34801561051157600080fd5b50610362610e48565b34801561052657600080fd5b506008546001600160a01b0316610337565b34801561054457600080fd5b50610379600d5481565b34801561055a57600080fd5b5061030a610e98565b34801561056f57600080fd5b50610379600e5481565b34801561058557600080fd5b506103626105943660046120e9565b610ea7565b3480156105a557600080fd5b506103626105b4366004612086565b610ef4565b3480156105c557600080fd5b5061037960125481565b3480156105db57600080fd5b50610362610f60565b3480156105f057600080fd5b506103626105ff3660046120e9565b610fbc565b610362610612366004611fbc565b611009565b61036261062536600461217f565b611053565b34801561063657600080fd5b5061030a6106453660046120e9565b611495565b34801561065657600080fd5b506102e0610665366004612035565b611533565b34801561067657600080fd5b50610379600c5481565b34801561068c57600080fd5b506103626115e4565b3480156106a157600080fd5b506102e06106b0366004611f4f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106ea57600080fd5b506103626106f9366004611f35565b611649565b34801561070a57600080fd5b506103626107193660046120c0565b611719565b34801561072a57600080fd5b506103626107393660046120e9565b6117cf565b34801561074a57600080fd5b50610362610759366004611f35565b61181c565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614806107c157507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b806107f557507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606002805461080a906122ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610836906122ca565b80156108835780601f1061085857610100808354040283529160200191610883565b820191906000526020600020905b81548152906001019060200180831161086657829003601f168201915b5050505050905090565b60006108988261186e565b6108ce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108f582610ce9565b9050336001600160a01b038216146109475761091181336106b0565b610947576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006109bb82611895565b9050836001600160a01b0316816001600160a01b031614610a08576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a6e57610a3886336106b0565b610a6e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516610aae576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610ab957600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610b445760018401600081815260046020526040902054610b42576000548114610b425760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b03163314610bda5760405162461bcd60e51b8152602060048201819052602482015260008051602061236383398151915260448201526064015b60405180910390fd5b610be261190f565b565b610bff83838360405180602001604052806000815250611009565b505050565b6008546001600160a01b03163314610c4c5760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b8051610c5f90600a906020840190611dc0565b5050565b6040516bffffffffffffffffffffffff19606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050610ce08484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060125491508490506119b5565b95945050505050565b60006107f582611895565b6008546001600160a01b03163314610d3c5760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b600c55565b60006001600160a01b038216610d83576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610df15760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b610be260006119cb565b6008546001600160a01b03163314610e435760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b601255565b6008546001600160a01b03163314610e905760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b610be2611a2a565b60606003805461080a906122ca565b6008546001600160a01b03163314610eef5760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b600e55565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610fa85760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b600b805460ff19811660ff90911615179055565b6008546001600160a01b031633146110045760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b600d55565b6110148484846109b0565b6001600160a01b0383163b1561104d5761103084848484611abf565b61104d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600854600160a01b900460ff16156110ad5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610bd1565b600260095414156111005760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bd1565b600260095560006111146001546000540390565b600b549091503390600090610100900460ff1680156111395750611139828686610c63565b905060008161117b57600d54600c546111529190612250565b15806111765750600d54600c546111699190612250565b6111738886612250565b11155b611195565b600d5415806111955750600d546111928886612250565b11155b9050806111e45760405162461bcd60e51b815260206004820152601260248201527f4d617820737570706c79207265616368656400000000000000000000000000006044820152606401610bd1565b600b5460009060ff16806111ff5750600b54610100900460ff165b61124b5760405162461bcd60e51b815260206004820152600e60248201527f4d696e74696e6720636c6f7365640000000000000000000000000000000000006044820152606401610bd1565b600b54610100900460ff1680156112655750600b5460ff16155b156112b757826112b75760405162461bcd60e51b815260206004820152600d60248201527f496e76616c69642070726f6f66000000000000000000000000000000000000006044820152606401610bd1565b600f546112c49089612268565b9050803410156113165760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682066756e6473207472616e73666572726564000000006044820152606401610bd1565b60008380156113285750600b5460ff16155b61134a576001600160a01b038516600090815260116020526040902054611364565b6001600160a01b0385166000908152601060205260409020545b600e549091506113748a83612250565b11156113c25760405162461bcd60e51b815260206004820152601660248201527f506572736f6e616c206c696d69742072656163686564000000000000000000006044820152606401610bd1565b6113cc8982612250565b8480156113dc5750600b5460ff16155b6113e75760116113ea565b60105b6001600160a01b0387166000908152602091909152604090205561140e858a611bb7565b600061141a8334612287565b90508015611484576000866001600160a01b03168260405160006040518083038185875af1925050503d806000811461146f576040519150601f19603f3d011682016040523d82523d6000602084013e611474565b606091505b505090508061148257600080fd5b505b505060016009555050505050505050565b60606114a08261186e565b6114d6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114e0611ce1565b9050805160001415611501576040518060200160405280600081525061152c565b8061150b84611cf0565b60405160200161151c9291906121dc565b6040516020818303038152906040525b9392505050565b600b546000908190610100900460ff1680156115555750611555858585610c63565b905060008161159457600d54600c5461156e9190612250565b158061158f5750600d54600c546115859190612250565b6001546000540311155b6115ab565b600d5415806115ab5750600d546001546000540311155b600854909150600160a01b900460ff161580156115c55750805b80156115da5750600b5460ff16806115da5750815b9695505050505050565b6008546001600160a01b0316331461162c5760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b600b805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146116915760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b6001600160a01b03811661170d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bd1565b611716816119cb565b50565b6008546001600160a01b031633146117615760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b478082111561176f57600080fd5b6000836001600160a01b03168360405160006040518083038185875af1925050503d80600081146117bc576040519150601f19603f3d011682016040523d82523d6000602084013e6117c1565b606091505b505090508061104d57600080fd5b6008546001600160a01b031633146118175760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b600f55565b6008546001600160a01b031633146118645760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b6117168147611719565b60008054821080156107f5575050600090815260046020526040902054600160e01b161590565b6000816000548110156118dd57600081815260046020526040902054600160e01b81166118db575b8061152c5750600019016000818152600460205260409020546118bd565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600854600160a01b900460ff166119685760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610bd1565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000826119c28584611d3e565b14949350505050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff1615611a845760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610bd1565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119983390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611af490339089908890889060040161220b565b602060405180830381600087803b158015611b0e57600080fd5b505af1925050508015611b3e575060408051601f3d908101601f19168201909252611b3b9181019061211d565b60015b611b99573d808015611b6c576040519150601f19603f3d011682016040523d82523d6000602084013e611b71565b606091505b508051611b91576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60005481611bf1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611ca057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611c68565b5081611cd8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b6060600a805461080a906122ca565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611d2757611d2c565b611d0a565b50819003601f19909101908152919050565b600081815b8451811015611db8576000858281518110611d6e57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611d945760008381526020829052604090209250611da5565b600081815260208490526040902092505b5080611db081612305565b915050611d43565b509392505050565b828054611dcc906122ca565b90600052602060002090601f016020900481019282611dee5760008555611e34565b82601f10611e0757805160ff1916838001178555611e34565b82800160010185558215611e34579182015b82811115611e34578251825591602001919060010190611e19565b50611e40929150611e44565b5090565b5b80821115611e405760008155600101611e45565b600067ffffffffffffffff80841115611e7457611e74612336565b604051601f8501601f19908116603f01168101908282118183101715611e9c57611e9c612336565b81604052809350858152868686011115611eb557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ee657600080fd5b919050565b60008083601f840112611efc578081fd5b50813567ffffffffffffffff811115611f13578182fd5b6020830191508360208260051b8501011115611f2e57600080fd5b9250929050565b600060208284031215611f46578081fd5b61152c82611ecf565b60008060408385031215611f61578081fd5b611f6a83611ecf565b9150611f7860208401611ecf565b90509250929050565b600080600060608486031215611f95578081fd5b611f9e84611ecf565b9250611fac60208501611ecf565b9150604084013590509250925092565b60008060008060808587031215611fd1578081fd5b611fda85611ecf565b9350611fe860208601611ecf565b925060408501359150606085013567ffffffffffffffff81111561200a578182fd5b8501601f8101871361201a578182fd5b61202987823560208401611e59565b91505092959194509250565b600080600060408486031215612049578283fd5b61205284611ecf565b9250602084013567ffffffffffffffff81111561206d578283fd5b61207986828701611eeb565b9497909650939450505050565b60008060408385031215612098578182fd5b6120a183611ecf565b9150602083013580151581146120b5578182fd5b809150509250929050565b600080604083850312156120d2578182fd5b6120db83611ecf565b946020939093013593505050565b6000602082840312156120fa578081fd5b5035919050565b600060208284031215612112578081fd5b813561152c8161234c565b60006020828403121561212e578081fd5b815161152c8161234c565b60006020828403121561214a578081fd5b813567ffffffffffffffff811115612160578182fd5b8201601f81018413612170578182fd5b611baf84823560208401611e59565b600080600060408486031215612193578283fd5b83359250602084013567ffffffffffffffff81111561206d578283fd5b600081518084526121c881602086016020860161229e565b601f01601f19169290920160200192915050565b600083516121ee81846020880161229e565b83519083019061220281836020880161229e565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526115da60808301846121b0565b60208152600061152c60208301846121b0565b6000821982111561226357612263612320565b500190565b600081600019048311821515161561228257612282612320565b500290565b60008282101561229957612299612320565b500390565b60005b838110156122b95781810151838201526020016122a1565b8381111561104d5750506000910152565b600181811c908216806122de57607f821691505b602082108114156122ff57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561231957612319612320565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461171657600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122075e401ee3a94f33b375b594a0d57f2cfabf481fc9fbd1cb95130157401f849e764736f6c6343000804003300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000002386f26fc10000d9f40c7dc862e8dea7dc43bf98ca9b70f24ca9bfb5737f41e5c2fa25b51b71ba0000000000000000000000000000000000000000000000000000000000000009484558474f204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009484558474f204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6d696e742e686578676f2e636f6d2f6170692f746f6b656e2f00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102bb5760003560e01c80638da5cb5b1161016e578063ba41b0c6116100cb578063e985e9c51161007f578063f3fef3a311610064578063f3fef3a3146106fe578063f4a0a5281461071e578063fa09e6301461073e57600080fd5b8063e985e9c514610695578063f2fde38b146106de57600080fd5b8063cbd0fffe116100b0578063cbd0fffe1461064a578063d5abeb011461066a578063e62a7ae21461068057600080fd5b8063ba41b0c614610617578063c87b56dd1461062a57600080fd5b8063a22cb46511610122578063acde7f7011610107578063acde7f70146105cf578063b677dd0b146105e4578063b88d4fde1461060457600080fd5b8063a22cb46514610599578063aa98e0c6146105b957600080fd5b806395d89b411161015357806395d89b411461054e578063996517cf146105635780639e6a1d7d1461057957600080fd5b80638da5cb5b1461051a578063953f049d1461053857600080fd5b806355f804b31161021c5780636f8b44b0116101d0578063715018a6116101b5578063715018a6146104d05780637cb64759146104e55780638456cb591461050557600080fd5b80636f8b44b01461049057806370a08231146104b057600080fd5b80635c975abb116102015780635c975abb1461043b5780636352211e1461045a5780636817c76c1461047a57600080fd5b806355f804b3146103fb5780635a23dd991461041b57600080fd5b806323b872dd11610273578063353b0a4e11610258578063353b0a4e146103b95780633f4ba83a146103d357806342842e0e146103e857600080fd5b806323b872dd1461038757806332de404c1461039a57600080fd5b8063081812fc116102a4578063081812fc14610317578063095ea7b31461034f57806318160ddd1461036457600080fd5b806301ffc9a7146102c057806306fdde03146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db366004612101565b61075e565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b5061030a6107fb565b6040516102ec919061223d565b34801561032357600080fd5b506103376103323660046120e9565b61088d565b6040516001600160a01b0390911681526020016102ec565b61036261035d3660046120c0565b6108ea565b005b34801561037057600080fd5b50600154600054035b6040519081526020016102ec565b610362610395366004611f81565b6109b0565b3480156103a657600080fd5b50600b546102e090610100900460ff1681565b3480156103c557600080fd5b50600b546102e09060ff1681565b3480156103df57600080fd5b50610362610b8d565b6103626103f6366004611f81565b610be4565b34801561040757600080fd5b50610362610416366004612139565b610c04565b34801561042757600080fd5b506102e0610436366004612035565b610c63565b34801561044757600080fd5b50600854600160a01b900460ff166102e0565b34801561046657600080fd5b506103376104753660046120e9565b610ce9565b34801561048657600080fd5b50610379600f5481565b34801561049c57600080fd5b506103626104ab3660046120e9565b610cf4565b3480156104bc57600080fd5b506103796104cb366004611f35565b610d41565b3480156104dc57600080fd5b50610362610da9565b3480156104f157600080fd5b506103626105003660046120e9565b610dfb565b34801561051157600080fd5b50610362610e48565b34801561052657600080fd5b506008546001600160a01b0316610337565b34801561054457600080fd5b50610379600d5481565b34801561055a57600080fd5b5061030a610e98565b34801561056f57600080fd5b50610379600e5481565b34801561058557600080fd5b506103626105943660046120e9565b610ea7565b3480156105a557600080fd5b506103626105b4366004612086565b610ef4565b3480156105c557600080fd5b5061037960125481565b3480156105db57600080fd5b50610362610f60565b3480156105f057600080fd5b506103626105ff3660046120e9565b610fbc565b610362610612366004611fbc565b611009565b61036261062536600461217f565b611053565b34801561063657600080fd5b5061030a6106453660046120e9565b611495565b34801561065657600080fd5b506102e0610665366004612035565b611533565b34801561067657600080fd5b50610379600c5481565b34801561068c57600080fd5b506103626115e4565b3480156106a157600080fd5b506102e06106b0366004611f4f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106ea57600080fd5b506103626106f9366004611f35565b611649565b34801561070a57600080fd5b506103626107193660046120c0565b611719565b34801561072a57600080fd5b506103626107393660046120e9565b6117cf565b34801561074a57600080fd5b50610362610759366004611f35565b61181c565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614806107c157507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b806107f557507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606002805461080a906122ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610836906122ca565b80156108835780601f1061085857610100808354040283529160200191610883565b820191906000526020600020905b81548152906001019060200180831161086657829003601f168201915b5050505050905090565b60006108988261186e565b6108ce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108f582610ce9565b9050336001600160a01b038216146109475761091181336106b0565b610947576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006109bb82611895565b9050836001600160a01b0316816001600160a01b031614610a08576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a6e57610a3886336106b0565b610a6e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516610aae576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610ab957600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610b445760018401600081815260046020526040902054610b42576000548114610b425760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b03163314610bda5760405162461bcd60e51b8152602060048201819052602482015260008051602061236383398151915260448201526064015b60405180910390fd5b610be261190f565b565b610bff83838360405180602001604052806000815250611009565b505050565b6008546001600160a01b03163314610c4c5760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b8051610c5f90600a906020840190611dc0565b5050565b6040516bffffffffffffffffffffffff19606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050610ce08484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060125491508490506119b5565b95945050505050565b60006107f582611895565b6008546001600160a01b03163314610d3c5760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b600c55565b60006001600160a01b038216610d83576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610df15760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b610be260006119cb565b6008546001600160a01b03163314610e435760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b601255565b6008546001600160a01b03163314610e905760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b610be2611a2a565b60606003805461080a906122ca565b6008546001600160a01b03163314610eef5760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b600e55565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610fa85760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b600b805460ff19811660ff90911615179055565b6008546001600160a01b031633146110045760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b600d55565b6110148484846109b0565b6001600160a01b0383163b1561104d5761103084848484611abf565b61104d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600854600160a01b900460ff16156110ad5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610bd1565b600260095414156111005760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bd1565b600260095560006111146001546000540390565b600b549091503390600090610100900460ff1680156111395750611139828686610c63565b905060008161117b57600d54600c546111529190612250565b15806111765750600d54600c546111699190612250565b6111738886612250565b11155b611195565b600d5415806111955750600d546111928886612250565b11155b9050806111e45760405162461bcd60e51b815260206004820152601260248201527f4d617820737570706c79207265616368656400000000000000000000000000006044820152606401610bd1565b600b5460009060ff16806111ff5750600b54610100900460ff165b61124b5760405162461bcd60e51b815260206004820152600e60248201527f4d696e74696e6720636c6f7365640000000000000000000000000000000000006044820152606401610bd1565b600b54610100900460ff1680156112655750600b5460ff16155b156112b757826112b75760405162461bcd60e51b815260206004820152600d60248201527f496e76616c69642070726f6f66000000000000000000000000000000000000006044820152606401610bd1565b600f546112c49089612268565b9050803410156113165760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682066756e6473207472616e73666572726564000000006044820152606401610bd1565b60008380156113285750600b5460ff16155b61134a576001600160a01b038516600090815260116020526040902054611364565b6001600160a01b0385166000908152601060205260409020545b600e549091506113748a83612250565b11156113c25760405162461bcd60e51b815260206004820152601660248201527f506572736f6e616c206c696d69742072656163686564000000000000000000006044820152606401610bd1565b6113cc8982612250565b8480156113dc5750600b5460ff16155b6113e75760116113ea565b60105b6001600160a01b0387166000908152602091909152604090205561140e858a611bb7565b600061141a8334612287565b90508015611484576000866001600160a01b03168260405160006040518083038185875af1925050503d806000811461146f576040519150601f19603f3d011682016040523d82523d6000602084013e611474565b606091505b505090508061148257600080fd5b505b505060016009555050505050505050565b60606114a08261186e565b6114d6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114e0611ce1565b9050805160001415611501576040518060200160405280600081525061152c565b8061150b84611cf0565b60405160200161151c9291906121dc565b6040516020818303038152906040525b9392505050565b600b546000908190610100900460ff1680156115555750611555858585610c63565b905060008161159457600d54600c5461156e9190612250565b158061158f5750600d54600c546115859190612250565b6001546000540311155b6115ab565b600d5415806115ab5750600d546001546000540311155b600854909150600160a01b900460ff161580156115c55750805b80156115da5750600b5460ff16806115da5750815b9695505050505050565b6008546001600160a01b0316331461162c5760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b600b805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146116915760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b6001600160a01b03811661170d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bd1565b611716816119cb565b50565b6008546001600160a01b031633146117615760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b478082111561176f57600080fd5b6000836001600160a01b03168360405160006040518083038185875af1925050503d80600081146117bc576040519150601f19603f3d011682016040523d82523d6000602084013e6117c1565b606091505b505090508061104d57600080fd5b6008546001600160a01b031633146118175760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b600f55565b6008546001600160a01b031633146118645760405162461bcd60e51b815260206004820181905260248201526000805160206123638339815191526044820152606401610bd1565b6117168147611719565b60008054821080156107f5575050600090815260046020526040902054600160e01b161590565b6000816000548110156118dd57600081815260046020526040902054600160e01b81166118db575b8061152c5750600019016000818152600460205260409020546118bd565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600854600160a01b900460ff166119685760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610bd1565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000826119c28584611d3e565b14949350505050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff1615611a845760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610bd1565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119983390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611af490339089908890889060040161220b565b602060405180830381600087803b158015611b0e57600080fd5b505af1925050508015611b3e575060408051601f3d908101601f19168201909252611b3b9181019061211d565b60015b611b99573d808015611b6c576040519150601f19603f3d011682016040523d82523d6000602084013e611b71565b606091505b508051611b91576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60005481611bf1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611ca057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611c68565b5081611cd8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b6060600a805461080a906122ca565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611d2757611d2c565b611d0a565b50819003601f19909101908152919050565b600081815b8451811015611db8576000858281518110611d6e57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611d945760008381526020829052604090209250611da5565b600081815260208490526040902092505b5080611db081612305565b915050611d43565b509392505050565b828054611dcc906122ca565b90600052602060002090601f016020900481019282611dee5760008555611e34565b82601f10611e0757805160ff1916838001178555611e34565b82800160010185558215611e34579182015b82811115611e34578251825591602001919060010190611e19565b50611e40929150611e44565b5090565b5b80821115611e405760008155600101611e45565b600067ffffffffffffffff80841115611e7457611e74612336565b604051601f8501601f19908116603f01168101908282118183101715611e9c57611e9c612336565b81604052809350858152868686011115611eb557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ee657600080fd5b919050565b60008083601f840112611efc578081fd5b50813567ffffffffffffffff811115611f13578182fd5b6020830191508360208260051b8501011115611f2e57600080fd5b9250929050565b600060208284031215611f46578081fd5b61152c82611ecf565b60008060408385031215611f61578081fd5b611f6a83611ecf565b9150611f7860208401611ecf565b90509250929050565b600080600060608486031215611f95578081fd5b611f9e84611ecf565b9250611fac60208501611ecf565b9150604084013590509250925092565b60008060008060808587031215611fd1578081fd5b611fda85611ecf565b9350611fe860208601611ecf565b925060408501359150606085013567ffffffffffffffff81111561200a578182fd5b8501601f8101871361201a578182fd5b61202987823560208401611e59565b91505092959194509250565b600080600060408486031215612049578283fd5b61205284611ecf565b9250602084013567ffffffffffffffff81111561206d578283fd5b61207986828701611eeb565b9497909650939450505050565b60008060408385031215612098578182fd5b6120a183611ecf565b9150602083013580151581146120b5578182fd5b809150509250929050565b600080604083850312156120d2578182fd5b6120db83611ecf565b946020939093013593505050565b6000602082840312156120fa578081fd5b5035919050565b600060208284031215612112578081fd5b813561152c8161234c565b60006020828403121561212e578081fd5b815161152c8161234c565b60006020828403121561214a578081fd5b813567ffffffffffffffff811115612160578182fd5b8201601f81018413612170578182fd5b611baf84823560208401611e59565b600080600060408486031215612193578283fd5b83359250602084013567ffffffffffffffff81111561206d578283fd5b600081518084526121c881602086016020860161229e565b601f01601f19169290920160200192915050565b600083516121ee81846020880161229e565b83519083019061220281836020880161229e565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526115da60808301846121b0565b60208152600061152c60208301846121b0565b6000821982111561226357612263612320565b500190565b600081600019048311821515161561228257612282612320565b500290565b60008282101561229957612299612320565b500390565b60005b838110156122b95781810151838201526020016122a1565b8381111561104d5750506000910152565b600181811c908216806122de57607f821691505b602082108114156122ff57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561231957612319612320565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461171657600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122075e401ee3a94f33b375b594a0d57f2cfabf481fc9fbd1cb95130157401f849e764736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000002386f26fc10000d9f40c7dc862e8dea7dc43bf98ca9b70f24ca9bfb5737f41e5c2fa25b51b71ba0000000000000000000000000000000000000000000000000000000000000009484558474f204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009484558474f204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6d696e742e686578676f2e636f6d2f6170692f746f6b656e2f00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): HEXGO NFT
Arg [1] : symbol (string): HEXGO NFT
Arg [2] : baseTokenURI_ (string): https://mint.hexgo.com/api/token/
Arg [3] : maxSupply_ (uint256): 5000
Arg [4] : maxWhitelistSupply_ (uint256): 5000
Arg [5] : mintLimit_ (uint256): 10
Arg [6] : mintPrice_ (uint256): 10000000000000000
Arg [7] : merkleRoot_ (bytes32): 0xd9f40c7dc862e8dea7dc43bf98ca9b70f24ca9bfb5737f41e5c2fa25b51b71ba
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [4] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [7] : d9f40c7dc862e8dea7dc43bf98ca9b70f24ca9bfb5737f41e5c2fa25b51b71ba
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [9] : 484558474f204e46540000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [11] : 484558474f204e46540000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [13] : 68747470733a2f2f6d696e742e686578676f2e636f6d2f6170692f746f6b656e
Arg [14] : 2f00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
65159:7605:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27435:689;;;;;;;;;;-1:-1:-1;27435:689:0;;;;;:::i;:::-;;:::i;:::-;;;7966:14:1;;7959:22;7941:41;;7929:2;7914:18;27435:689:0;;;;;;;;28387:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35325:268::-;;;;;;;;;;-1:-1:-1;35325:268:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7218:55:1;;;7200:74;;7188:2;7173:18;35325:268:0;7155:125:1;34717:449:0;;;;;;:::i;:::-;;:::i;:::-;;23960:323;;;;;;;;;;-1:-1:-1;24234:12:0;;24021:7;24218:13;:28;23960:323;;;8139:25:1;;;8127:2;8112:18;23960:323:0;8094:76:1;39096:3003:0;;;;;;:::i;:::-;;:::i;65417:30::-;;;;;;;;;;-1:-1:-1;65417:30:0;;;;;;;;;;;65379:31;;;;;;;;;;-1:-1:-1;65379:31:0;;;;;;;;72498:67;;;;;;;;;;;;;:::i;42195:193::-;;;;;;:::i;:::-;;:::i;72248:95::-;;;;;;;;;;-1:-1:-1;72248:95:0;;;;;:::i;:::-;;:::i;65727:273::-;;;;;;;;;;-1:-1:-1;65727:273:0;;;;;:::i;:::-;;:::i;4719:86::-;;;;;;;;;;-1:-1:-1;4790:7:0;;-1:-1:-1;;;4790:7:0;;;;4719:86;;29877:202;;;;;;;;;;-1:-1:-1;29877:202:0;;;;;:::i;:::-;;:::i;65556:24::-;;;;;;;;;;;;;;;;71175:102;;;;;;;;;;-1:-1:-1;71175:102:0;;;;;:::i;:::-;;:::i;25144:283::-;;;;;;;;;;-1:-1:-1;25144:283:0;;;;;:::i;:::-;;:::i;2721:103::-;;;;;;;;;;;;;:::i;72058:115::-;;;;;;;;;;-1:-1:-1;72058:115:0;;;;;:::i;:::-;;:::i;72388:63::-;;;;;;;;;;;;;:::i;2070:87::-;;;;;;;;;;-1:-1:-1;2143:6:0;;-1:-1:-1;;;;;2143:6:0;2070:87;;65485:33;;;;;;;;;;;;;;;;28563:104;;;;;;;;;;;;;:::i;65525:24::-;;;;;;;;;;;;;;;;71864:102;;;;;;;;;;-1:-1:-1;71864:102:0;;;;;:::i;:::-;;:::i;35933:266::-;;;;;;;;;;-1:-1:-1;35933:266:0;;;;;:::i;:::-;;:::i;65684:34::-;;;;;;;;;;;;;;;;70974:113;;;;;;;;;;;;;:::i;71388:161::-;;;;;;;;;;-1:-1:-1;71388:161:0;;;;;:::i;:::-;;:::i;42986:407::-;;;;;;:::i;:::-;;:::i;67773:2232::-;;;;;;:::i;:::-;;:::i;28773:415::-;;;;;;;;;;-1:-1:-1;28773:415:0;;;;;:::i;:::-;;:::i;66312:602::-;;;;;;;;;;-1:-1:-1;66312:602:0;;;;;:::i;:::-;;:::i;65454:24::-;;;;;;;;;;;;;;;;70814:110;;;;;;;;;;;;;:::i;36356:214::-;;;;;;;;;;-1:-1:-1;36356:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;36527:25:0;;;36498:4;36527:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36356:214;2979:238;;;;;;;;;;-1:-1:-1;2979:238:0;;;;;:::i;:::-;;:::i;70523:241::-;;;;;;;;;;-1:-1:-1;70523:241:0;;;;;:::i;:::-;;:::i;71644:102::-;;;;;;;;;;-1:-1:-1;71644:102:0;;;;;:::i;:::-;;:::i;70230:106::-;;;;;;;;;;-1:-1:-1;70230:106:0;;;;;:::i;:::-;;:::i;27435:689::-;27565:4;27894:25;-1:-1:-1;;;;;;27894:25:0;;;;:102;;-1:-1:-1;27971:25:0;-1:-1:-1;;;;;;27971:25:0;;;27894:102;:179;;;-1:-1:-1;28048:25:0;-1:-1:-1;;;;;;28048:25:0;;;27894:179;27874:199;27435:689;-1:-1:-1;;27435:689:0:o;28387:100::-;28441:13;28474:5;28467:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28387:100;:::o;35325:268::-;35446:7;35476:16;35484:7;35476;:16::i;:::-;35471:64;;35501:34;;;;;;;;;;;;;;35471:64;-1:-1:-1;35555:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;35555:30:0;;35325:268::o;34717:449::-;34847:13;34863:16;34871:7;34863;:16::i;:::-;34847:32;-1:-1:-1;60132:10:0;-1:-1:-1;;;;;34896:28:0;;;34892:175;;34944:44;34961:5;60132:10;36356:214;:::i;34944:44::-;34939:128;;35016:35;;;;;;;;;;;;;;34939:128;35079:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;35079:35:0;-1:-1:-1;;;;;35079:35:0;;;;;;;;;35130:28;;35079:24;;35130:28;;;;;;;34717:449;;;:::o;39096:3003::-;39238:27;39268;39287:7;39268:18;:27::i;:::-;39238:57;;39353:4;-1:-1:-1;;;;;39312:45:0;39328:19;-1:-1:-1;;;;;39312:45:0;;39308:99;;39379:28;;;;;;;;;;;;;;39308:99;39435:27;38204:24;;;:15;:24;;;;;38432:26;;60132:10;37829:30;;;-1:-1:-1;;;;;37522:28:0;;37807:20;;;37804:56;39644:287;;39827:43;39844:4;60132:10;36356:214;:::i;39827:43::-;39822:109;;39896:35;;;;;;;;;;;;;;39822:109;-1:-1:-1;;;;;39948:16:0;;39944:52;;39973:23;;;;;;;;;;;;;;39944:52;40145:15;40142:2;;;40285:1;40264:19;40257:30;40142:2;-1:-1:-1;;;;;40682:24:0;;;;;;;:18;:24;;;;;;40680:26;;-1:-1:-1;;40680:26:0;;;40751:22;;;;;;;;;40749:24;;-1:-1:-1;40749:24:0;;;33529:11;33504:23;33500:41;33452:112;-1:-1:-1;;;33452:112:0;41044:26;;;;:17;:26;;;;;:196;-1:-1:-1;;;41360:47:0;;41356:627;;41465:1;41455:11;;41433:19;41588:30;;;:17;:30;;;;;;41584:384;;41726:13;;41711:11;:28;41707:242;;41873:30;;;;:17;:30;;;;;:52;;;41707:242;41356:627;;42030:7;42026:2;-1:-1:-1;;;;;42011:27:0;42020:4;-1:-1:-1;;;;;42011:27:0;;;;;;;;;;;39096:3003;;;;;;:::o;72498:67::-;2143:6;;-1:-1:-1;;;;;2143:6:0;60132:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;10396:2:1;2282:68:0;;;10378:21:1;;;10415:18;;;10408:30;-1:-1:-1;;;;;;;;;;;10454:18:1;;;10447:62;10526:18;;2282:68:0;;;;;;;;;72547:10:::1;:8;:10::i;:::-;72498:67::o:0;42195:193::-;42341:39;42358:4;42364:2;42368:7;42341:39;;;;;;;;;;;;:16;:39::i;:::-;42195:193;;;:::o;72248:95::-;2143:6;;-1:-1:-1;;;;;2143:6:0;60132:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;10396:2:1;2282:68:0;;;10378:21:1;;;10415:18;;;10408:30;-1:-1:-1;;;;;;;;;;;10454:18:1;;;10447:62;10526:18;;2282:68:0;10368:182:1;2282:68:0;72317:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;72248:95:::0;:::o;65727:273::-;65892:22;;-1:-1:-1;;6284:2:1;6280:15;;;6276:53;65892:22:0;;;6264:66:1;65845:4:0;;;;6346:12:1;;65892:22:0;;;;;;;;;;;;65882:33;;;;;;65867:48;;65933:59;65952:12;;65933:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;65966:19:0;;;-1:-1:-1;65987:4:0;;-1:-1:-1;65933:18:0;:59::i;:::-;65926:66;65727:273;-1:-1:-1;;;;;65727:273:0:o;29877:202::-;29994:7;30042:27;30061:7;30042:18;:27::i;71175:102::-;2143:6;;-1:-1:-1;;;;;2143:6:0;60132:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;10396:2:1;2282:68:0;;;10378:21:1;;;10415:18;;;10408:30;-1:-1:-1;;;;;;;;;;;10454:18:1;;;10447:62;10526:18;;2282:68:0;10368:182:1;2282:68:0;71247:9:::1;:22:::0;71175:102::o;25144:283::-;25261:7;-1:-1:-1;;;;;25290:19:0;;25286:60;;25318:28;;;;;;;;;;;;;;25286:60;-1:-1:-1;;;;;;25364:25:0;;;;;:18;:25;;;;;;19303:13;25364:55;;25144:283::o;2721:103::-;2143:6;;-1:-1:-1;;;;;2143:6:0;60132:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;10396:2:1;2282:68:0;;;10378:21:1;;;10415:18;;;10408:30;-1:-1:-1;;;;;;;;;;;10454:18:1;;;10447:62;10526:18;;2282:68:0;10368:182:1;2282:68:0;2786:30:::1;2813:1;2786:18;:30::i;72058:115::-:0;2143:6;;-1:-1:-1;;;;;2143:6:0;60132:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;10396:2:1;2282:68:0;;;10378:21:1;;;10415:18;;;10408:30;-1:-1:-1;;;;;;;;;;;10454:18:1;;;10447:62;10526:18;;2282:68:0;10368:182:1;2282:68:0;72132:19:::1;:33:::0;72058:115::o;72388:63::-;2143:6;;-1:-1:-1;;;;;2143:6:0;60132:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;10396:2:1;2282:68:0;;;10378:21:1;;;10415:18;;;10408:30;-1:-1:-1;;;;;;;;;;;10454:18:1;;;10447:62;10526:18;;2282:68:0;10368:182:1;2282:68:0;72435:8:::1;:6;:8::i;28563:104::-:0;28619:13;28652:7;28645:14;;;;;:::i;71864:102::-;2143:6;;-1:-1:-1;;;;;2143:6:0;60132:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;10396:2:1;2282:68:0;;;10378:21:1;;;10415:18;;;10408:30;-1:-1:-1;;;;;;;;;;;10454:18:1;;;10447:62;10526:18;;2282:68:0;10368:182:1;2282:68:0;71936:9:::1;:22:::0;71864:102::o;35933:266::-;60132:10;36060:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;36060:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;36060:60:0;;;;;;;;;;36136:55;;7941:41:1;;;36060:49:0;;60132:10;36136:55;;7914:18:1;36136:55:0;;;;;;;35933:266;;:::o;70974:113::-;2143:6;;-1:-1:-1;;;;;2143:6:0;60132:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;10396:2:1;2282:68:0;;;10378:21:1;;;10415:18;;;10408:30;-1:-1:-1;;;;;;;;;;;10454:18:1;;;10447:62;10526:18;;2282:68:0;10368:182:1;2282:68:0;71060:19:::1;::::0;;-1:-1:-1;;71037:42:0;::::1;71060:19;::::0;;::::1;71059:20;71037:42;::::0;;70974:113::o;71388:161::-;2143:6;;-1:-1:-1;;;;;2143:6:0;60132:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;10396:2:1;2282:68:0;;;10378:21:1;;;10415:18;;;10408:30;-1:-1:-1;;;;;;;;;;;10454:18:1;;;10447:62;10526:18;;2282:68:0;10368:182:1;2282:68:0;71501:18:::1;:40:::0;71388:161::o;42986:407::-;43161:31;43174:4;43180:2;43184:7;43161:12;:31::i;:::-;-1:-1:-1;;;;;43207:14:0;;;:19;43203:183;;43246:56;43277:4;43283:2;43287:7;43296:5;43246:30;:56::i;:::-;43241:145;;43330:40;;-1:-1:-1;;;43330:40:0;;;;;;;;;;;43241:145;42986:407;;;;:::o;67773:2232::-;4790:7;;-1:-1:-1;;;4790:7:0;;;;5044:9;5036:38;;;;-1:-1:-1;;;5036:38:0;;10051:2:1;5036:38:0;;;10033:21:1;10090:2;10070:18;;;10063:30;10129:18;10109;;;10102:46;10165:18;;5036:38:0;10023:166:1;5036:38:0;7731:1:::1;8329:7;;:19;;8321:63;;;::::0;-1:-1:-1;;;8321:63:0;;11803:2:1;8321:63:0::1;::::0;::::1;11785:21:1::0;11842:2;11822:18;;;11815:30;11881:33;11861:18;;;11854:61;11932:18;;8321:63:0::1;11775:181:1::0;8321:63:0::1;7731:1;8462:7;:18:::0;67971:14:::2;67988:13;24234:12:::0;;24021:7;24218:13;:28;;23960:323;67988:13:::2;68074:18;::::0;67971:30;;-1:-1:-1;60132:10:0;;68012:14:::2;::::0;68074:18:::2;::::0;::::2;;;:70:::0;::::2;;;;68109:35;68123:6;68131:12;;68109:13;:35::i;:::-;68054:91;;68158:21;68182:11;:208;;68299:18;;68287:9;;:30;;;;:::i;:::-;:35:::0;;:103:::2;;;68372:18;;68360:9;;:30;;;;:::i;:::-;68343:13;68352:4:::0;68343:6;:13:::2;:::i;:::-;:47;;68287:103;68182:208;;;68209:18;::::0;:23;;:62:::2;;-1:-1:-1::0;68253:18:0::2;::::0;68236:13:::2;68245:4:::0;68236:6;:13:::2;:::i;:::-;:35;;68209:62;68158:232;;68411:16;68403:47;;;::::0;-1:-1:-1;;;68403:47:0;;10757:2:1;68403:47:0::2;::::0;::::2;10739:21:1::0;10796:2;10776:18;;;10769:30;10835:20;10815:18;;;10808:48;10873:18;;68403:47:0::2;10729:168:1::0;68403:47:0::2;68620:19;::::0;68461:18:::2;::::0;68620:19:::2;;::::0;:41:::2;;-1:-1:-1::0;68643:18:0::2;::::0;::::2;::::0;::::2;;;68620:41;68612:68;;;::::0;-1:-1:-1;;;68612:68:0;;8950:2:1;68612:68:0::2;::::0;::::2;8932:21:1::0;8989:2;8969:18;;;8962:30;9028:16;9008:18;;;9001:44;9062:18;;68612:68:0::2;8922:164:1::0;68612:68:0::2;68695:18;::::0;::::2;::::0;::::2;;;:42:::0;::::2;;;-1:-1:-1::0;68718:19:0::2;::::0;::::2;;68717:20;68695:42;68691:174;;;68824:11;68816:37;;;::::0;-1:-1:-1;;;68816:37:0;;11461:2:1;68816:37:0::2;::::0;::::2;11443:21:1::0;11500:2;11480:18;;;11473:30;11539:15;11519:18;;;11512:43;11572:18;;68816:37:0::2;11433:163:1::0;68816:37:0::2;68897:9;::::0;68890:16:::2;::::0;:4;:16:::2;:::i;:::-;68877:29;;68938:10;68925:9;:23;;68917:64;;;::::0;-1:-1:-1;;;68917:64:0;;11104:2:1;68917:64:0::2;::::0;::::2;11086:21:1::0;11143:2;11123:18;;;11116:30;11182;11162:18;;;11155:58;11230:18;;68917:64:0::2;11076:178:1::0;68917:64:0::2;69220:13;69236:11;:35;;;;-1:-1:-1::0;69252:19:0::2;::::0;::::2;;69251:20;69236:35;:110;;-1:-1:-1::0;;;;;69329:17:0;::::2;;::::0;;;:9:::2;:17;::::0;;;;;69236:110:::2;;;-1:-1:-1::0;;;;;69287:26:0;::::2;;::::0;;;:18:::2;:26;::::0;;;;;69236:110:::2;69381:9;::::0;69220:126;;-1:-1:-1;69365:12:0::2;69373:4:::0;69220:126;69365:12:::2;:::i;:::-;:25;;69357:60;;;::::0;-1:-1:-1;;;69357:60:0;;9700:2:1;69357:60:0::2;::::0;::::2;9682:21:1::0;9739:2;9719:18;;;9712:30;9778:24;9758:18;;;9751:52;9820:18;;69357:60:0::2;9672:172:1::0;69357:60:0::2;69704:12;69712:4:::0;69704:5;:12:::2;:::i;:::-;69600:11;:35;;;;-1:-1:-1::0;69616:19:0::2;::::0;::::2;;69615:20;69600:35;:68;;69659:9;69600:68;;;69638:18;69600:68;-1:-1:-1::0;;;;;69599:102:0;::::2;;::::0;;;::::2;::::0;;;;;;;:117;69750:19:::2;69684:6:::0;69764:4;69750:5:::2;:19::i;:::-;69831:12;69846:22;69858:10:::0;69846:9:::2;:22;:::i;:::-;69831:37:::0;-1:-1:-1;69883:8:0;;69879:119:::2;;69909:12;69927:6;-1:-1:-1::0;;;;;69927:11:0::2;69946:4;69927:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69908:47;;;69978:7;69970:16;;;::::0;::::2;;69879:119;;-1:-1:-1::0;;7687:1:0::1;8641:7;:22:::0;-1:-1:-1;;;;;;;;67773:2232:0:o;28773:415::-;28891:13;28927:16;28935:7;28927;:16::i;:::-;28922:59;;28952:29;;;;;;;;;;;;;;28922:59;28994:21;29018:10;:8;:10::i;:::-;28994:34;;29065:7;29059:21;29084:1;29059:26;;:121;;;;;;;;;;;;;;;;;29129:7;29138:18;29148:7;29138:9;:18::i;:::-;29112:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29059:121;29039:141;28773:415;-1:-1:-1;;;28773:415:0:o;66312:602::-;66468:18;;66426:4;;;;66468:18;;;;;:68;;;;;66503:33;66517:4;66523:12;;66503:13;:33::i;:::-;66448:89;;66548:21;66572:11;:208;;66689:18;;66677:9;;:30;;;;:::i;:::-;:35;;:103;;;66762:18;;66750:9;;:30;;;;:::i;:::-;24234:12;;24021:7;24218:13;:28;66733:47;;66677:103;66572:208;;;66599:18;;:23;;:62;;-1:-1:-1;66643:18:0;;24234:12;;24021:7;24218:13;:28;66626:35;;66599:62;4790:7;;66548:232;;-1:-1:-1;;;;4790:7:0;;;;66811:9;:42;;;;;66837:16;66811:42;:95;;;;-1:-1:-1;66871:19:0;;;;;:34;;;66894:11;66871:34;66791:115;66312:602;-1:-1:-1;;;;;;66312:602:0:o;70814:110::-;2143:6;;-1:-1:-1;;;;;2143:6:0;60132:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;10396:2:1;2282:68:0;;;10378:21:1;;;10415:18;;;10408:30;-1:-1:-1;;;;;;;;;;;10454:18:1;;;10447:62;10526:18;;2282:68:0;10368:182:1;2282:68:0;70898:18:::1;::::0;;-1:-1:-1;;70876:40:0;::::1;70898:18;::::0;;;::::1;;;70897:19;70876:40:::0;;::::1;;::::0;;70814:110::o;2979:238::-;2143:6;;-1:-1:-1;;;;;2143:6:0;60132:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;10396:2:1;2282:68:0;;;10378:21:1;;;10415:18;;;10408:30;-1:-1:-1;;;;;;;;;;;10454:18:1;;;10447:62;10526:18;;2282:68:0;10368:182:1;2282:68:0;-1:-1:-1;;;;;3082:22:0;::::1;3060:110;;;::::0;-1:-1:-1;;;3060:110:0;;9293:2:1;3060:110:0::1;::::0;::::1;9275:21:1::0;9332:2;9312:18;;;9305:30;9371:34;9351:18;;;9344:62;9442:8;9422:18;;;9415:36;9468:19;;3060:110:0::1;9265:228:1::0;3060:110:0::1;3181:28;3200:8;3181:18;:28::i;:::-;2979:238:::0;:::o;70523:241::-;2143:6;;-1:-1:-1;;;;;2143:6:0;60132:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;10396:2:1;2282:68:0;;;10378:21:1;;;10415:18;;;10408:30;-1:-1:-1;;;;;;;;;;;10454:18:1;;;10447:62;10526:18;;2282:68:0;10368:182:1;2282:68:0;70615:21:::1;70655:17:::0;;::::1;;70647:26;;;::::0;::::1;;70685:12;70703:2;-1:-1:-1::0;;;;;70703:7:0::1;70718:6;70703:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70684:45;;;70748:7;70740:16;;;::::0;::::1;71644:102:::0;2143:6;;-1:-1:-1;;;;;2143:6:0;60132:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;10396:2:1;2282:68:0;;;10378:21:1;;;10415:18;;;10408:30;-1:-1:-1;;;;;;;;;;;10454:18:1;;;10447:62;10526:18;;2282:68:0;10368:182:1;2282:68:0;71716:9:::1;:22:::0;71644:102::o;70230:106::-;2143:6;;-1:-1:-1;;;;;2143:6:0;60132:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;10396:2:1;2282:68:0;;;10378:21:1;;;10415:18;;;10408:30;-1:-1:-1;;;;;;;;;;;10454:18:1;;;10447:62;10526:18;;2282:68:0;10368:182:1;2282:68:0;70293:35:::1;70302:2;70306:21;70293:8;:35::i;36828:282::-:0;36893:4;36983:13;;36973:7;:23;36930:153;;;;-1:-1:-1;;37034:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;37034:44:0;:49;;36828:282::o;31164:1307::-;31258:7;31298;31400:13;;31393:4;:20;31389:1015;;;31438:14;31455:23;;;:17;:23;;;;;;-1:-1:-1;;;31544:24:0;;31540:845;;32209:113;32216:11;32209:113;;-1:-1:-1;;;32287:6:0;32269:25;;;;:17;:25;;;;;;32209:113;;31540:845;31389:1015;;32432:31;;;;;;;;;;;;;;5778:120;4790:7;;-1:-1:-1;;;4790:7:0;;;;5314:41;;;;-1:-1:-1;;;5314:41:0;;8601:2:1;5314:41:0;;;8583:21:1;8640:2;8620:18;;;8613:30;8679:22;8659:18;;;8652:50;8719:18;;5314:41:0;8573:170:1;5314:41:0;5837:7:::1;:15:::0;;-1:-1:-1;;;;5837:15:0::1;::::0;;5868:22:::1;60132:10:::0;5877:12:::1;5868:22;::::0;-1:-1:-1;;;;;7218:55:1;;;7200:74;;7188:2;7173:18;5868:22:0::1;;;;;;;5778:120::o:0;63279:190::-;63404:4;63457;63428:25;63441:5;63448:4;63428:12;:25::i;:::-;:33;;63279:190;-1:-1:-1;;;;63279:190:0:o;3377:191::-;3470:6;;;-1:-1:-1;;;;;3487:17:0;;;-1:-1:-1;;3487:17:0;;;;;;;3520:40;;3470:6;;;3487:17;3470:6;;3520:40;;3451:16;;3520:40;3377:191;;:::o;5519:118::-;4790:7;;-1:-1:-1;;;4790:7:0;;;;5044:9;5036:38;;;;-1:-1:-1;;;5036:38:0;;10051:2:1;5036:38:0;;;10033:21:1;10090:2;10070:18;;;10063:30;10129:18;10109;;;10102:46;10165:18;;5036:38:0;10023:166:1;5036:38:0;5579:7:::1;:14:::0;;-1:-1:-1;;;;5579:14:0::1;-1:-1:-1::0;;;5579:14:0::1;::::0;;5609:20:::1;5616:12;60132:10:::0;;60045:105;45477:831;45674:171;;-1:-1:-1;;;45674:171:0;;45640:4;;-1:-1:-1;;;;;45674:45:0;;;;;:171;;60132:10;;45776:4;;45799:7;;45825:5;;45674:171;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45674:171:0;;;;;;;;-1:-1:-1;;45674:171:0;;;;;;;;;;;;:::i;:::-;;;45657:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46059:13:0;;46055:235;;46105:40;;-1:-1:-1;;;46105:40:0;;;;;;;;;;;46055:235;46248:6;46242:13;46233:6;46229:2;46225:15;46218:38;45657:644;-1:-1:-1;;;;;;45918:81:0;-1:-1:-1;;;45918:81:0;;-1:-1:-1;45657:644:0;45477:831;;;;;;:::o;46770:3021::-;46843:20;46866:13;46894;46890:44;;46916:18;;;;;;;;;;;;;;46890:44;-1:-1:-1;;;;;47422:22:0;;;;;;:18;:22;;;;19441:2;47422:22;;;:105;;47494:32;47465:62;;47422:105;;;47770:31;;;:17;:31;;;;;-1:-1:-1;34006:15:0;;33980:24;33976:46;33529:11;33504:23;33500:41;33497:52;33452:112;;47770:194;;48026:23;;;;47770:31;;47422:22;;48791:25;47422:22;;48644:335;49305:1;49291:12;49287:20;49245:346;49346:3;49337:7;49334:16;49245:346;;49564:7;49554:8;49551:1;49524:25;49521:1;49518;49513:59;49399:1;49386:15;49245:346;;;-1:-1:-1;49624:13:0;49620:45;;49646:19;;;;;;;;;;;;;;49620:45;49682:13;:19;-1:-1:-1;42195:193:0;;;:::o;72656:105::-;72708:13;72741:12;72734:19;;;;;:::i;60252:1786::-;60353:17;60792:4;60785;60779:11;60775:22;60884:1;60878:4;60871:15;60959:4;60956:1;60952:12;60945:19;;;61041:1;61036:3;61029:14;61145:3;61384:5;61366:428;61432:1;61427:3;61423:11;61416:18;;61603:2;61597:4;61593:13;61589:2;61585:22;61580:3;61572:36;61697:2;61687:13;;;61754:2;;61772:5;;61754:2;61366:428;;;-1:-1:-1;61824:13:0;;;-1:-1:-1;;61939:14:0;;;62001:19;;;61939:14;60397:1634;-1:-1:-1;60397:1634:0:o;63830:707::-;63940:7;63988:4;63940:7;64003:497;64027:5;:12;64023:1;:16;64003:497;;;64061:20;64084:5;64090:1;64084:8;;;;;;-1:-1:-1;;;64084:8:0;;;;;;;;;;;;;;;64061:31;;64127:12;64111;:28;64107:382;;64640:13;64695:15;;;64731:4;64724:15;;;64778:4;64762:21;;64239:57;;64107:382;;;64640:13;64695:15;;;64731:4;64724:15;;;64778:4;64762:21;;64416:57;;64107:382;-1:-1:-1;64041:3:0;;;;:::i;:::-;;;;64003:497;;;-1:-1:-1;64517:12:0;63830:707;-1:-1:-1;;;63830:707:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:2;;836:1;833;826:12;747:2;699:147;;;:::o;851:391::-;914:8;924:6;978:3;971:4;963:6;959:17;955:27;945:2;;1001:6;993;986:22;945:2;-1:-1:-1;1029:20:1;;1072:18;1061:30;;1058:2;;;1111:8;1101;1094:26;1058:2;1155:4;1147:6;1143:17;1131:29;;1215:3;1208:4;1198:6;1195:1;1191:14;1183:6;1179:27;1175:38;1172:47;1169:2;;;1232:1;1229;1222:12;1169:2;935:307;;;;;:::o;1247:196::-;1306:6;1359:2;1347:9;1338:7;1334:23;1330:32;1327:2;;;1380:6;1372;1365:22;1327:2;1408:29;1427:9;1408:29;:::i;1448:270::-;1516:6;1524;1577:2;1565:9;1556:7;1552:23;1548:32;1545:2;;;1598:6;1590;1583:22;1545:2;1626:29;1645:9;1626:29;:::i;:::-;1616:39;;1674:38;1708:2;1697:9;1693:18;1674:38;:::i;:::-;1664:48;;1535:183;;;;;:::o;1723:338::-;1800:6;1808;1816;1869:2;1857:9;1848:7;1844:23;1840:32;1837:2;;;1890:6;1882;1875:22;1837:2;1918:29;1937:9;1918:29;:::i;:::-;1908:39;;1966:38;2000:2;1989:9;1985:18;1966:38;:::i;:::-;1956:48;;2051:2;2040:9;2036:18;2023:32;2013:42;;1827:234;;;;;:::o;2066:696::-;2161:6;2169;2177;2185;2238:3;2226:9;2217:7;2213:23;2209:33;2206:2;;;2260:6;2252;2245:22;2206:2;2288:29;2307:9;2288:29;:::i;:::-;2278:39;;2336:38;2370:2;2359:9;2355:18;2336:38;:::i;:::-;2326:48;;2421:2;2410:9;2406:18;2393:32;2383:42;;2476:2;2465:9;2461:18;2448:32;2503:18;2495:6;2492:30;2489:2;;;2540:6;2532;2525:22;2489:2;2568:22;;2621:4;2613:13;;2609:27;-1:-1:-1;2599:2:1;;2655:6;2647;2640:22;2599:2;2683:73;2748:7;2743:2;2730:16;2725:2;2721;2717:11;2683:73;:::i;:::-;2673:83;;;2196:566;;;;;;;:::o;2767:531::-;2862:6;2870;2878;2931:2;2919:9;2910:7;2906:23;2902:32;2899:2;;;2952:6;2944;2937:22;2899:2;2980:29;2999:9;2980:29;:::i;:::-;2970:39;;3060:2;3049:9;3045:18;3032:32;3087:18;3079:6;3076:30;3073:2;;;3124:6;3116;3109:22;3073:2;3168:70;3230:7;3221:6;3210:9;3206:22;3168:70;:::i;:::-;2889:409;;3257:8;;-1:-1:-1;3142:96:1;;-1:-1:-1;;;;2889:409:1:o;3303:367::-;3368:6;3376;3429:2;3417:9;3408:7;3404:23;3400:32;3397:2;;;3450:6;3442;3435:22;3397:2;3478:29;3497:9;3478:29;:::i;:::-;3468:39;;3557:2;3546:9;3542:18;3529:32;3604:5;3597:13;3590:21;3583:5;3580:32;3570:2;;3631:6;3623;3616:22;3570:2;3659:5;3649:15;;;3387:283;;;;;:::o;3675:264::-;3743:6;3751;3804:2;3792:9;3783:7;3779:23;3775:32;3772:2;;;3825:6;3817;3810:22;3772:2;3853:29;3872:9;3853:29;:::i;:::-;3843:39;3929:2;3914:18;;;;3901:32;;-1:-1:-1;;;3762:177:1:o;3944:190::-;4003:6;4056:2;4044:9;4035:7;4031:23;4027:32;4024:2;;;4077:6;4069;4062:22;4024:2;-1:-1:-1;4105:23:1;;4014:120;-1:-1:-1;4014:120:1:o;4139:255::-;4197:6;4250:2;4238:9;4229:7;4225:23;4221:32;4218:2;;;4271:6;4263;4256:22;4218:2;4315:9;4302:23;4334:30;4358:5;4334:30;:::i;4399:259::-;4468:6;4521:2;4509:9;4500:7;4496:23;4492:32;4489:2;;;4542:6;4534;4527:22;4489:2;4579:9;4573:16;4598:30;4622:5;4598:30;:::i;4663:480::-;4732:6;4785:2;4773:9;4764:7;4760:23;4756:32;4753:2;;;4806:6;4798;4791:22;4753:2;4851:9;4838:23;4884:18;4876:6;4873:30;4870:2;;;4921:6;4913;4906:22;4870:2;4949:22;;5002:4;4994:13;;4990:27;-1:-1:-1;4980:2:1;;5036:6;5028;5021:22;4980:2;5064:73;5129:7;5124:2;5111:16;5106:2;5102;5098:11;5064:73;:::i;5343:525::-;5438:6;5446;5454;5507:2;5495:9;5486:7;5482:23;5478:32;5475:2;;;5528:6;5520;5513:22;5475:2;5569:9;5556:23;5546:33;;5630:2;5619:9;5615:18;5602:32;5657:18;5649:6;5646:30;5643:2;;;5694:6;5686;5679:22;5873:257;5914:3;5952:5;5946:12;5979:6;5974:3;5967:19;5995:63;6051:6;6044:4;6039:3;6035:14;6028:4;6021:5;6017:16;5995:63;:::i;:::-;6112:2;6091:15;-1:-1:-1;;6087:29:1;6078:39;;;;6119:4;6074:50;;5922:208;-1:-1:-1;;5922:208:1:o;6369:470::-;6548:3;6586:6;6580:13;6602:53;6648:6;6643:3;6636:4;6628:6;6624:17;6602:53;:::i;:::-;6718:13;;6677:16;;;;6740:57;6718:13;6677:16;6774:4;6762:17;;6740:57;:::i;:::-;6813:20;;6556:283;-1:-1:-1;;;;6556:283:1:o;7285:511::-;7479:4;-1:-1:-1;;;;;7589:2:1;7581:6;7577:15;7566:9;7559:34;7641:2;7633:6;7629:15;7624:2;7613:9;7609:18;7602:43;;7681:6;7676:2;7665:9;7661:18;7654:34;7724:3;7719:2;7708:9;7704:18;7697:31;7745:45;7785:3;7774:9;7770:19;7762:6;7745:45;:::i;8175:219::-;8324:2;8313:9;8306:21;8287:4;8344:44;8384:2;8373:9;8369:18;8361:6;8344:44;:::i;12143:128::-;12183:3;12214:1;12210:6;12207:1;12204:13;12201:2;;;12220:18;;:::i;:::-;-1:-1:-1;12256:9:1;;12191:80::o;12276:168::-;12316:7;12382:1;12378;12374:6;12370:14;12367:1;12364:21;12359:1;12352:9;12345:17;12341:45;12338:2;;;12389:18;;:::i;:::-;-1:-1:-1;12429:9:1;;12328:116::o;12449:125::-;12489:4;12517:1;12514;12511:8;12508:2;;;12522:18;;:::i;:::-;-1:-1:-1;12559:9:1;;12498:76::o;12579:258::-;12651:1;12661:113;12675:6;12672:1;12669:13;12661:113;;;12751:11;;;12745:18;12732:11;;;12725:39;12697:2;12690:10;12661:113;;;12792:6;12789:1;12786:13;12783:2;;;-1:-1:-1;;12827:1:1;12809:16;;12802:27;12632:205::o;12842:437::-;12921:1;12917:12;;;;12964;;;12985:2;;13039:4;13031:6;13027:17;13017:27;;12985:2;13092;13084:6;13081:14;13061:18;13058:38;13055:2;;;-1:-1:-1;;;13126:1:1;13119:88;13230:4;13227:1;13220:15;13258:4;13255:1;13248:15;13055:2;;12897:382;;;:::o;13284:135::-;13323:3;-1:-1:-1;;13344:17:1;;13341:2;;;13364:18;;:::i;:::-;-1:-1:-1;13411:1:1;13400:13;;13331:88::o;13424:184::-;-1:-1:-1;;;13473:1:1;13466:88;13573:4;13570:1;13563:15;13597:4;13594:1;13587:15;13613:184;-1:-1:-1;;;13662:1:1;13655:88;13762:4;13759:1;13752:15;13786:4;13783:1;13776:15;13802:177;-1:-1:-1;;;;;;13880:5:1;13876:78;13869:5;13866:89;13856:2;;13969:1;13966;13959:12
Swarm Source
ipfs://75e401ee3a94f33b375b594a0d57f2cfabf481fc9fbd1cb95130157401f849e7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.