ETH Price: $3,164.34 (+1.16%)
Gas: 2 Gwei

Token

Elephants (ELENFT)
 

Overview

Max Total Supply

7,778 ELENFT

Holders

1,759

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ELENFT
0x6722394A31d6b7487F9920ED469445Cc4Dc6e71C
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

3L3Phants NFT is a collection of 7,777 Elephants stampeding on the Ethereum blockchain. From the mind of Ic3cream and designed by World Renowned Artist Tornado Toad.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Elephants

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion
File 1 of 8 : Elephants.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;

import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract Elephants is ERC721AQueryable, Ownable {
    // ============ State Variables ============

    string public _baseTokenURI;
    uint256 public maxTokenIds = 7777;
    bool public _paused;
    uint256 public maxPerWallet = 3;
    string public hiddenMetadataUri;
    bool public revealed;
    uint256 public price = 0.03 ether;
    bytes32 public root;
    string private _name;
    string private _symbol;
    string public uriSuffix;
    uint256 public presaleStartTime = 1657814400;
    uint256 public presaleEndTime   = 1657836000;

    // ============ Modifiers ============

    modifier onlyWhenNotPaused() {
        require(!_paused, "Contract currently paused");
        _;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    // ============ Constructor ============

    constructor(string memory __name, string memory __symbol, string memory _hiddenMetadataUri, bytes32 __root, address treasury) ERC721A(__name, __symbol) {
        _name = __name;
        _symbol = __symbol;
        hiddenMetadataUri = _hiddenMetadataUri;
        root = __root;
        _mint(treasury, 50);
    }

    // ============ Core functions ============

    function whitelistmint(uint256 quantity, bytes32[] memory proof) external payable onlyWhenNotPaused callerIsUser {
        require(block.timestamp > presaleStartTime && block.timestamp < presaleEndTime, "Not whitelisting period");
        require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Address not in whitelist");
        require(_nextTokenId() + quantity - 1 <= maxTokenIds, "Not enough supply");
        require(balanceOf(msg.sender) + quantity <= maxPerWallet, "Exceeding max per wallet limit");
        require(msg.value >= price * quantity, "More ETH required");
        _mint(msg.sender, quantity);
    }

    function mint(uint256 quantity) external payable onlyWhenNotPaused callerIsUser {
        require(block.timestamp > presaleEndTime, "Not public sale period");
        require(_nextTokenId() + quantity - 1 <= maxTokenIds, "Not enough supply");
        require(balanceOf(msg.sender) + quantity <= maxPerWallet, "Exceeding max per wallet limit");
        require(msg.value >= price * quantity, "More ETH required");
        _mint(msg.sender, quantity);
    }

    function mintMany(address[] calldata _to, uint256[] calldata _amount) external payable onlyOwner {
        for (uint256 i; i < _to.length; ) {
             require(_nextTokenId() + _amount[i] - 1 <= maxTokenIds, "Not enough supply");
            _mint(_to[i], _amount[i]);

            unchecked {
                i++;
            }
        }
    }

    function mintForAddress(address _to, uint256 _quantity) external payable onlyOwner {
        require(_nextTokenId() + _quantity - 1 <= maxTokenIds, "Not enough supply");
        _mint(_to, _quantity);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override(IERC721A, ERC721A) returns (string memory) {
        require(_exists(tokenId), "ERC721AMetadata: URI query for nonexistent token");

        if (revealed == false) {
            return hiddenMetadataUri;
        }

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), uriSuffix)) : hiddenMetadataUri;
    }

    function withdraw() external onlyOwner {
        address _owner = owner();
        uint256 amount = address(this).balance;
        (bool sent, ) =  _owner.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }

    function name() public view virtual override(IERC721A, ERC721A) returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override(IERC721A, ERC721A) returns (string memory) {
        return _symbol;
    }

    // ============ Setters (OnlyOwner) ============

    function setPaused(bool val) public onlyOwner {
        _paused = val;
    }

    function setURISuffix(string memory _uriSuffix) external onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setBaseURI(string memory baseTokenURI) external onlyOwner {
        _baseTokenURI = baseTokenURI;
    }

    function setRevealed(bool _state) external onlyOwner {
        revealed = _state;
    }

    function setNameAndSymbol(string memory __name, string memory __symbol) external onlyOwner {
        _name = __name;
        _symbol = __symbol;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) external onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setMaxPerWallet(uint256 quantity) external onlyOwner {
        maxPerWallet = quantity;
    }

    function setRoot(bytes32 _root) external onlyOwner {
        root = _root;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setSaleTimings(uint256 _whitelistStart, uint256 _whitelistEnd) external onlyOwner {
        presaleStartTime = _whitelistStart;
        presaleEndTime = _whitelistEnd;
    }

    // ============ Cryptographic functions ============

    function isValid(bytes32[] memory proof, bytes32 leaf) internal view returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    receive() external payable {}

    fallback() external payable {}
}

File 2 of 8 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *   - `extraData` = `0`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *   - `extraData` = `<Extra data when token was burned>`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     *   - `extraData` = `<Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 3 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 8 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 5 of 8 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 6 of 8 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The 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 tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [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 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the 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 {
        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;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev 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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @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))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` 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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 Hook that is called before a set of serially-ordered token ids are about to be transferred.
     * This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred.
     * This includes minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 7 of 8 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * 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();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 8 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 500
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"__name","type":"string"},{"internalType":"string","name":"__symbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"},{"internalType":"bytes32","name":"__root","type":"bytes32"},{"internalType":"address","name":"treasury","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","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":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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintForAddress","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__name","type":"string"},{"internalType":"string","name":"__symbol","type":"string"}],"name":"setNameAndSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistStart","type":"uint256"},{"internalType":"uint256","name":"_whitelistEnd","type":"uint256"}],"name":"setSaleTimings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setURISuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052611e61600a556003600c55666a94d74f430000600f556362d03d806014556362d091e06015553480156200003757600080fd5b506040516200334c3803806200334c8339810160408190526200005a91620003a2565b845185908590620000739060029060208501906200022f565b508051620000899060039060208401906200022f565b505060008055506200009b33620000fa565b8451620000b09060119060208801906200022f565b508351620000c69060129060208701906200022f565b508251620000dc90600d9060208601906200022f565b506010829055620000ef8160326200014c565b50505050506200049d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b0383166200017657604051622e076360e81b815260040160405180910390fd5b81600003620001985760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620001e25760005550505050565b8280546200023d9062000461565b90600052602060002090601f016020900481019282620002615760008555620002ac565b82601f106200027c57805160ff1916838001178555620002ac565b82800160010185558215620002ac579182015b82811115620002ac5782518255916020019190600101906200028f565b50620002ba929150620002be565b5090565b5b80821115620002ba5760008155600101620002bf565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002fd57600080fd5b81516001600160401b03808211156200031a576200031a620002d5565b604051601f8301601f19908116603f01168101908282118183101715620003455762000345620002d5565b816040528381526020925086838588010111156200036257600080fd5b600091505b8382101562000386578582018301518183018401529082019062000367565b83821115620003985760008385830101525b9695505050505050565b600080600080600060a08688031215620003bb57600080fd5b85516001600160401b0380821115620003d357600080fd5b620003e189838a01620002eb565b96506020880151915080821115620003f857600080fd5b6200040689838a01620002eb565b955060408801519150808211156200041d57600080fd5b506200042c88828901620002eb565b60608801516080890151919550935090506001600160a01b03811681146200045357600080fd5b809150509295509295909350565b600181811c908216806200047657607f821691505b6020821081036200049757634e487b7160e01b600052602260045260246000fd5b50919050565b612e9f80620004ad6000396000f3fe6080604052600436106102cf5760003560e01c806381b3e57511610182578063b88d4fde116100d5578063e268e4d311610084578063f254933d11610061578063f254933d14610834578063f2fde38b14610847578063f7019ffd1461086757005b8063e268e4d3146107b5578063e985e9c5146107d5578063ebf0c7171461081e57005b8063cfc86f7b116100b2578063cfc86f7b14610760578063dab5f34014610775578063e0a808531461079557005b8063b88d4fde146106f3578063c23dc68f14610713578063c87b56dd1461074057005b8063a035b1fe11610131578063a45ba8e71161010e578063a45ba8e7146106a8578063a82524b2146106bd578063acc23b90146106d357005b8063a035b1fe1461065f578063a0712d6814610675578063a22cb4651461068857005b806391b7f5ed1161015f57806391b7f5ed1461060a57806395d89b411461062a57806399a2557a1461063f57005b806381b3e5751461059f5780638462151c146105bf5780638da5cb5b146105ec57005b806342842e0e1161023a5780635a446215116101e95780636352211e116101c65780636352211e1461054a57806370a082311461056a578063715018a61461058a57005b80635a446215146104e75780635bbb2177146105075780635f7696211461053457005b8063518302271161021757806351830227146104985780635503a0e8146104b257806355f804b3146104c757005b806342842e0e14610442578063453c2310146104625780634fdd43cb1461047857005b806316c61ccc11610296578063249b7c1911610273578063249b7c19146104045780633ccfd60b1461041a5780634029a3ce1461042f57005b806316c61ccc146103a757806318160ddd146103c157806323b872dd146103e457005b806301ffc9a7146102d857806306fdde031461030d578063081812fc1461032f578063095ea7b31461036757806316c38b3c1461038757005b366102d657005b005b3480156102e457600080fd5b506102f86102f3366004612568565b61087a565b60405190151581526020015b60405180910390f35b34801561031957600080fd5b506103226108cc565b60405161030491906125dd565b34801561033b57600080fd5b5061034f61034a3660046125f0565b61095e565b6040516001600160a01b039091168152602001610304565b34801561037357600080fd5b506102d6610382366004612625565b6109a2565b34801561039357600080fd5b506102d66103a236600461265f565b610a6c565b3480156103b357600080fd5b50600b546102f89060ff1681565b3480156103cd57600080fd5b50600154600054035b604051908152602001610304565b3480156103f057600080fd5b506102d66103ff36600461267a565b610acc565b34801561041057600080fd5b506103d660155481565b34801561042657600080fd5b506102d6610c81565b6102d661043d366004612702565b610d88565b34801561044e57600080fd5b506102d661045d36600461267a565b610eaf565b34801561046e57600080fd5b506103d6600c5481565b34801561048457600080fd5b506102d661049336600461282d565b610eca565b3480156104a457600080fd5b50600e546102f89060ff1681565b3480156104be57600080fd5b50610322610f29565b3480156104d357600080fd5b506102d66104e236600461282d565b610fb7565b3480156104f357600080fd5b506102d6610502366004612862565b611012565b34801561051357600080fd5b506105276105223660046128ea565b611081565b6040516103049190612980565b34801561054057600080fd5b506103d6600a5481565b34801561055657600080fd5b5061034f6105653660046125f0565b61114f565b34801561057657600080fd5b506103d66105853660046129fd565b61115a565b34801561059657600080fd5b506102d66111a9565b3480156105ab57600080fd5b506102d66105ba36600461282d565b6111fd565b3480156105cb57600080fd5b506105df6105da3660046129fd565b611258565b6040516103049190612a18565b3480156105f857600080fd5b506008546001600160a01b031661034f565b34801561061657600080fd5b506102d66106253660046125f0565b611361565b34801561063657600080fd5b506103226113ae565b34801561064b57600080fd5b506105df61065a366004612a50565b6113bd565b34801561066b57600080fd5b506103d6600f5481565b6102d66106833660046125f0565b611537565b34801561069457600080fd5b506102d66106a3366004612a83565b611752565b3480156106b457600080fd5b506103226117e7565b3480156106c957600080fd5b506103d660145481565b3480156106df57600080fd5b506102d66106ee366004612ab6565b6117f4565b3480156106ff57600080fd5b506102d661070e366004612ad8565b611847565b34801561071f57600080fd5b5061073361072e3660046125f0565b611891565b6040516103049190612b54565b34801561074c57600080fd5b5061032261075b3660046125f0565b611909565b34801561076c57600080fd5b50610322611b00565b34801561078157600080fd5b506102d66107903660046125f0565b611b0d565b3480156107a157600080fd5b506102d66107b036600461265f565b611b5a565b3480156107c157600080fd5b506102d66107d03660046125f0565b611bb5565b3480156107e157600080fd5b506102f86107f0366004612b99565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561082a57600080fd5b506103d660105481565b6102d6610842366004612625565b611c02565b34801561085357600080fd5b506102d66108623660046129fd565b611cb9565b6102d6610875366004612bc3565b611d6f565b60006301ffc9a760e01b6001600160e01b0319831614806108ab57506380ac58cd60e01b6001600160e01b03198316145b806108c65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060601180546108db90612c60565b80601f016020809104026020016040519081016040528092919081815260200182805461090790612c60565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b5050505050905090565b60006109698261201f565b610986576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109ad8261114f565b9050336001600160a01b03821614610a03576001600160a01b038116600090815260076020908152604080832033845290915290205460ff16610a03576040516367d9dca160e11b815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610ab95760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a83398151915260448201526064015b60405180910390fd5b600b805460ff1916911515919091179055565b6000610ad782612046565b9050836001600160a01b0316816001600160a01b031614610b0a5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610b74576001600160a01b038616600090815260076020908152604080832033845290915290205460ff16610b7457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b9b57604051633a954ecd60e21b815260040160405180910390fd5b8015610ba657600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610c3857600184016000818152600460205260408120549003610c36576000548114610c365760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b03163314610cc95760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b6000610cdd6008546001600160a01b031690565b60405190915047906000906001600160a01b0384169083908381818185875af1925050503d8060008114610d2d576040519150601f19603f3d011682016040523d82523d6000602084013e610d32565b606091505b5050905080610d835760405162461bcd60e51b815260206004820152601460248201527f4661696c656420746f2073656e642045746865720000000000000000000000006044820152606401610ab0565b505050565b6008546001600160a01b03163314610dd05760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b60005b83811015610ea857600a546001848484818110610df257610df2612c9a565b90506020020135610e0260005490565b610e0c9190612cc6565b610e169190612cde565b1115610e585760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b6044820152606401610ab0565b610ea0858583818110610e6d57610e6d612c9a565b9050602002016020810190610e8291906129fd565b848484818110610e9457610e94612c9a565b905060200201356120ad565b600101610dd3565b5050505050565b610d8383838360405180602001604052806000815250611847565b6008546001600160a01b03163314610f125760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b8051610f2590600d9060208401906124b9565b5050565b60138054610f3690612c60565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6290612c60565b8015610faf5780601f10610f8457610100808354040283529160200191610faf565b820191906000526020600020905b815481529060010190602001808311610f9257829003601f168201915b505050505081565b6008546001600160a01b03163314610fff5760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b8051610f259060099060208401906124b9565b6008546001600160a01b0316331461105a5760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b815161106d9060119060208501906124b9565b508051610d839060129060208401906124b9565b805160609060008167ffffffffffffffff8111156110a1576110a161276e565b6040519080825280602002602001820160405280156110f357816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816110bf5790505b50905060005b8281146111475761112285828151811061111557611115612c9a565b6020026020010151611891565b82828151811061113457611134612c9a565b60209081029190910101526001016110f9565b509392505050565b60006108c682612046565b60006001600160a01b038216611183576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146111f15760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b6111fb600061218d565b565b6008546001600160a01b031633146112455760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b8051610f259060139060208401906124b9565b606060008060006112688561115a565b905060008167ffffffffffffffff8111156112855761128561276e565b6040519080825280602002602001820160405280156112ae578160200160208202803683370190505b5090506112db60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b838614611355576112ee816121ec565b9150816040015161134d5781516001600160a01b03161561130e57815194505b876001600160a01b0316856001600160a01b03160361134d578083878060010198508151811061134057611340612c9a565b6020026020010181815250505b6001016112de565b50909695505050505050565b6008546001600160a01b031633146113a95760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b600f55565b6060601280546108db90612c60565b60608183106113df57604051631960ccad60e11b815260040160405180910390fd5b6000806113eb60005490565b9050808411156113f9578093505b60006114048761115a565b905084861015611423578585038181101561141d578091505b50611427565b5060005b60008167ffffffffffffffff8111156114425761144261276e565b60405190808252806020026020018201604052801561146b578160200160208202803683370190505b5090508160000361148157935061153092505050565b600061148c88611891565b90506000816040015161149d575080515b885b8881141580156114af5750848714155b15611524576114bd816121ec565b9250826040015161151c5782516001600160a01b0316156114dd57825191505b8a6001600160a01b0316826001600160a01b03160361151c578084888060010199508151811061150f5761150f612c9a565b6020026020010181815250505b60010161149f565b50505092835250909150505b9392505050565b600b5460ff161561158a5760405162461bcd60e51b815260206004820152601960248201527f436f6e74726163742063757272656e746c7920706175736564000000000000006044820152606401610ab0565b3233146115d95760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610ab0565b601554421161162a5760405162461bcd60e51b815260206004820152601660248201527f4e6f74207075626c69632073616c6520706572696f64000000000000000000006044820152606401610ab0565b600a5460018261163960005490565b6116439190612cc6565b61164d9190612cde565b111561168f5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b6044820152606401610ab0565b600c548161169c3361115a565b6116a69190612cc6565b11156116f45760405162461bcd60e51b815260206004820152601e60248201527f457863656564696e67206d6178207065722077616c6c6574206c696d697400006044820152606401610ab0565b80600f546117029190612cf5565b3410156117455760405162461bcd60e51b8152602060048201526011602482015270135bdc9948115512081c995c5d5a5c9959607a1b6044820152606401610ab0565b61174f33826120ad565b50565b336001600160a01b0383160361177b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d8054610f3690612c60565b6008546001600160a01b0316331461183c5760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b601491909155601555565b611852848484610acc565b6001600160a01b0383163b1561188b5761186e8484848461226b565b61188b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051608080820183526000808352602080840182905283850182905260608085018390528551938401865282845290830182905293820181905292810183905290915060005483106118e55792915050565b6118ee836121ec565b90508060400151156119005792915050565b61153083612357565b60606119148261201f565b6119865760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201527f6f6e6578697374656e7420746f6b656e000000000000000000000000000000006064820152608401610ab0565b600e5460ff161515600003611a2757600d80546119a290612c60565b80601f01602080910402602001604051908101604052809291908181526020018280546119ce90612c60565b8015611a1b5780601f106119f057610100808354040283529160200191611a1b565b820191906000526020600020905b8154815290600101906020018083116119fe57829003601f168201915b50505050509050919050565b6000611a316123cf565b90506000815111611acc57600d8054611a4990612c60565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7590612c60565b8015611ac25780601f10611a9757610100808354040283529160200191611ac2565b820191906000526020600020905b815481529060010190602001808311611aa557829003601f168201915b5050505050611530565b80611ad6846123de565b6013604051602001611aea93929190612d14565b6040516020818303038152906040529392505050565b60098054610f3690612c60565b6008546001600160a01b03163314611b555760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b601055565b6008546001600160a01b03163314611ba25760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b600e805460ff1916911515919091179055565b6008546001600160a01b03163314611bfd5760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b600c55565b6008546001600160a01b03163314611c4a5760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b600a54600182611c5960005490565b611c639190612cc6565b611c6d9190612cde565b1115611caf5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b6044820152606401610ab0565b610f2582826120ad565b6008546001600160a01b03163314611d015760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b6001600160a01b038116611d665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ab0565b61174f8161218d565b600b5460ff1615611dc25760405162461bcd60e51b815260206004820152601960248201527f436f6e74726163742063757272656e746c7920706175736564000000000000006044820152606401610ab0565b323314611e115760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610ab0565b60145442118015611e23575060155442105b611e6f5760405162461bcd60e51b815260206004820152601760248201527f4e6f742077686974656c697374696e6720706572696f640000000000000000006044820152606401610ab0565b6040516bffffffffffffffffffffffff193360601b166020820152611eae9082906034016040516020818303038152906040528051906020012061242d565b611efa5760405162461bcd60e51b815260206004820152601860248201527f41646472657373206e6f7420696e2077686974656c69737400000000000000006044820152606401610ab0565b600a54600183611f0960005490565b611f139190612cc6565b611f1d9190612cde565b1115611f5f5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b6044820152606401610ab0565b600c5482611f6c3361115a565b611f769190612cc6565b1115611fc45760405162461bcd60e51b815260206004820152601e60248201527f457863656564696e67206d6178207065722077616c6c6574206c696d697400006044820152606401610ab0565b81600f54611fd29190612cf5565b3410156120155760405162461bcd60e51b8152602060048201526011602482015270135bdc9948115512081c995c5d5a5c9959607a1b6044820152606401610ab0565b610f2533836120ad565b60008054821080156108c6575050600090815260046020526040902054600160e01b161590565b6000816000548110156120945760008181526004602052604081205490600160e01b82169003612092575b80600003611530575060001901600081815260046020526040902054612071565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b0383166120d657604051622e076360e81b815260040160405180910390fd5b816000036120f75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106121415760005550505050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600460205260409020546108c690604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906122a0903390899088908890600401612dd7565b6020604051808303816000875af19250505080156122db575060408051601f3d908101601f191682019092526122d891810190612e13565b60015b612339573d808015612309576040519150601f19603f3d011682016040523d82523d6000602084013e61230e565b606091505b508051600003612331576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6040805160808101825260008082526020820181905291810182905260608101919091526108c661238783612046565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6060600980546108db90612c60565b604080516080810191829052607f0190826030600a8206018353600a90045b801561241b57600183039250600a81066030018353600a90046123fd565b50819003601f19909101908152919050565b60006115308360105484600082612444858461244d565b14949350505050565b600081815b845181101561114757600085828151811061246f5761246f612c9a565b6020026020010151905080831161249557600083815260208290526040902092506124a6565b600081815260208490526040902092505b50806124b181612e30565b915050612452565b8280546124c590612c60565b90600052602060002090601f0160209004810192826124e7576000855561252d565b82601f1061250057805160ff191683800117855561252d565b8280016001018555821561252d579182015b8281111561252d578251825591602001919060010190612512565b5061253992915061253d565b5090565b5b80821115612539576000815560010161253e565b6001600160e01b03198116811461174f57600080fd5b60006020828403121561257a57600080fd5b813561153081612552565b60005b838110156125a0578181015183820152602001612588565b8381111561188b5750506000910152565b600081518084526125c9816020860160208601612585565b601f01601f19169290920160200192915050565b60208152600061153060208301846125b1565b60006020828403121561260257600080fd5b5035919050565b80356001600160a01b038116811461262057600080fd5b919050565b6000806040838503121561263857600080fd5b61264183612609565b946020939093013593505050565b8035801515811461262057600080fd5b60006020828403121561267157600080fd5b6115308261264f565b60008060006060848603121561268f57600080fd5b61269884612609565b92506126a660208501612609565b9150604084013590509250925092565b60008083601f8401126126c857600080fd5b50813567ffffffffffffffff8111156126e057600080fd5b6020830191508360208260051b85010111156126fb57600080fd5b9250929050565b6000806000806040858703121561271857600080fd5b843567ffffffffffffffff8082111561273057600080fd5b61273c888389016126b6565b9096509450602087013591508082111561275557600080fd5b50612762878288016126b6565b95989497509550505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156127ad576127ad61276e565b604052919050565b600067ffffffffffffffff8311156127cf576127cf61276e565b6127e2601f8401601f1916602001612784565b90508281528383830111156127f657600080fd5b828260208301376000602084830101529392505050565b600082601f83011261281e57600080fd5b611530838335602085016127b5565b60006020828403121561283f57600080fd5b813567ffffffffffffffff81111561285657600080fd5b61234f8482850161280d565b6000806040838503121561287557600080fd5b823567ffffffffffffffff8082111561288d57600080fd5b6128998683870161280d565b935060208501359150808211156128af57600080fd5b506128bc8582860161280d565b9150509250929050565b600067ffffffffffffffff8211156128e0576128e061276e565b5060051b60200190565b600060208083850312156128fd57600080fd5b823567ffffffffffffffff81111561291457600080fd5b8301601f8101851361292557600080fd5b8035612938612933826128c6565b612784565b81815260059190911b8201830190838101908783111561295757600080fd5b928401925b828410156129755783358252928401929084019061295c565b979650505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611355576129ea8385516001600160a01b03815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b928401926080929092019160010161299c565b600060208284031215612a0f57600080fd5b61153082612609565b6020808252825182820181905260009190848201906040850190845b8181101561135557835183529284019291840191600101612a34565b600080600060608486031215612a6557600080fd5b612a6e84612609565b95602085013595506040909401359392505050565b60008060408385031215612a9657600080fd5b612a9f83612609565b9150612aad6020840161264f565b90509250929050565b60008060408385031215612ac957600080fd5b50508035926020909101359150565b60008060008060808587031215612aee57600080fd5b612af785612609565b9350612b0560208601612609565b925060408501359150606085013567ffffffffffffffff811115612b2857600080fd5b8501601f81018713612b3957600080fd5b612b48878235602084016127b5565b91505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff1690820152608081016108c6565b60008060408385031215612bac57600080fd5b612bb583612609565b9150612aad60208401612609565b60008060408385031215612bd657600080fd5b8235915060208084013567ffffffffffffffff811115612bf557600080fd5b8401601f81018613612c0657600080fd5b8035612c14612933826128c6565b81815260059190911b82018301908381019088831115612c3357600080fd5b928401925b82841015612c5157833582529284019290840190612c38565b80955050505050509250929050565b600181811c90821680612c7457607f821691505b602082108103612c9457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115612cd957612cd9612cb0565b500190565b600082821015612cf057612cf0612cb0565b500390565b6000816000190483118215151615612d0f57612d0f612cb0565b500290565b600084516020612d278285838a01612585565b855191840191612d3a8184848a01612585565b8554920191600090600181811c9080831680612d5757607f831692505b8583108103612d7457634e487b7160e01b85526022600452602485fd5b808015612d885760018114612d9957612dc6565b60ff19851688528388019550612dc6565b60008b81526020902060005b85811015612dbe5781548a820152908401908801612da5565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612e0960808301846125b1565b9695505050505050565b600060208284031215612e2557600080fd5b815161153081612552565b600060018201612e4257612e42612cb0565b506001019056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220c4ac7f7a166301cc3a5aa87920598ebb6d41df73e1185db72fa70a360f99113064736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120e0cc5af99c78bbb7fa9c8ad3ceb1799a683eeb767d3e739aa57ef9b78092f797000000000000000000000000fd279644adb28043ee10111f2971b3e4fb655e860000000000000000000000000000000000000000000000000000000000000009456c657068616e747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006454c454e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5578364555734b6d5a684a65506b3851326a4c415574466b51446241626e62554759797961376a74515978340000000000000000000000

Deployed Bytecode

0x6080604052600436106102cf5760003560e01c806381b3e57511610182578063b88d4fde116100d5578063e268e4d311610084578063f254933d11610061578063f254933d14610834578063f2fde38b14610847578063f7019ffd1461086757005b8063e268e4d3146107b5578063e985e9c5146107d5578063ebf0c7171461081e57005b8063cfc86f7b116100b2578063cfc86f7b14610760578063dab5f34014610775578063e0a808531461079557005b8063b88d4fde146106f3578063c23dc68f14610713578063c87b56dd1461074057005b8063a035b1fe11610131578063a45ba8e71161010e578063a45ba8e7146106a8578063a82524b2146106bd578063acc23b90146106d357005b8063a035b1fe1461065f578063a0712d6814610675578063a22cb4651461068857005b806391b7f5ed1161015f57806391b7f5ed1461060a57806395d89b411461062a57806399a2557a1461063f57005b806381b3e5751461059f5780638462151c146105bf5780638da5cb5b146105ec57005b806342842e0e1161023a5780635a446215116101e95780636352211e116101c65780636352211e1461054a57806370a082311461056a578063715018a61461058a57005b80635a446215146104e75780635bbb2177146105075780635f7696211461053457005b8063518302271161021757806351830227146104985780635503a0e8146104b257806355f804b3146104c757005b806342842e0e14610442578063453c2310146104625780634fdd43cb1461047857005b806316c61ccc11610296578063249b7c1911610273578063249b7c19146104045780633ccfd60b1461041a5780634029a3ce1461042f57005b806316c61ccc146103a757806318160ddd146103c157806323b872dd146103e457005b806301ffc9a7146102d857806306fdde031461030d578063081812fc1461032f578063095ea7b31461036757806316c38b3c1461038757005b366102d657005b005b3480156102e457600080fd5b506102f86102f3366004612568565b61087a565b60405190151581526020015b60405180910390f35b34801561031957600080fd5b506103226108cc565b60405161030491906125dd565b34801561033b57600080fd5b5061034f61034a3660046125f0565b61095e565b6040516001600160a01b039091168152602001610304565b34801561037357600080fd5b506102d6610382366004612625565b6109a2565b34801561039357600080fd5b506102d66103a236600461265f565b610a6c565b3480156103b357600080fd5b50600b546102f89060ff1681565b3480156103cd57600080fd5b50600154600054035b604051908152602001610304565b3480156103f057600080fd5b506102d66103ff36600461267a565b610acc565b34801561041057600080fd5b506103d660155481565b34801561042657600080fd5b506102d6610c81565b6102d661043d366004612702565b610d88565b34801561044e57600080fd5b506102d661045d36600461267a565b610eaf565b34801561046e57600080fd5b506103d6600c5481565b34801561048457600080fd5b506102d661049336600461282d565b610eca565b3480156104a457600080fd5b50600e546102f89060ff1681565b3480156104be57600080fd5b50610322610f29565b3480156104d357600080fd5b506102d66104e236600461282d565b610fb7565b3480156104f357600080fd5b506102d6610502366004612862565b611012565b34801561051357600080fd5b506105276105223660046128ea565b611081565b6040516103049190612980565b34801561054057600080fd5b506103d6600a5481565b34801561055657600080fd5b5061034f6105653660046125f0565b61114f565b34801561057657600080fd5b506103d66105853660046129fd565b61115a565b34801561059657600080fd5b506102d66111a9565b3480156105ab57600080fd5b506102d66105ba36600461282d565b6111fd565b3480156105cb57600080fd5b506105df6105da3660046129fd565b611258565b6040516103049190612a18565b3480156105f857600080fd5b506008546001600160a01b031661034f565b34801561061657600080fd5b506102d66106253660046125f0565b611361565b34801561063657600080fd5b506103226113ae565b34801561064b57600080fd5b506105df61065a366004612a50565b6113bd565b34801561066b57600080fd5b506103d6600f5481565b6102d66106833660046125f0565b611537565b34801561069457600080fd5b506102d66106a3366004612a83565b611752565b3480156106b457600080fd5b506103226117e7565b3480156106c957600080fd5b506103d660145481565b3480156106df57600080fd5b506102d66106ee366004612ab6565b6117f4565b3480156106ff57600080fd5b506102d661070e366004612ad8565b611847565b34801561071f57600080fd5b5061073361072e3660046125f0565b611891565b6040516103049190612b54565b34801561074c57600080fd5b5061032261075b3660046125f0565b611909565b34801561076c57600080fd5b50610322611b00565b34801561078157600080fd5b506102d66107903660046125f0565b611b0d565b3480156107a157600080fd5b506102d66107b036600461265f565b611b5a565b3480156107c157600080fd5b506102d66107d03660046125f0565b611bb5565b3480156107e157600080fd5b506102f86107f0366004612b99565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561082a57600080fd5b506103d660105481565b6102d6610842366004612625565b611c02565b34801561085357600080fd5b506102d66108623660046129fd565b611cb9565b6102d6610875366004612bc3565b611d6f565b60006301ffc9a760e01b6001600160e01b0319831614806108ab57506380ac58cd60e01b6001600160e01b03198316145b806108c65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060601180546108db90612c60565b80601f016020809104026020016040519081016040528092919081815260200182805461090790612c60565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b5050505050905090565b60006109698261201f565b610986576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109ad8261114f565b9050336001600160a01b03821614610a03576001600160a01b038116600090815260076020908152604080832033845290915290205460ff16610a03576040516367d9dca160e11b815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610ab95760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a83398151915260448201526064015b60405180910390fd5b600b805460ff1916911515919091179055565b6000610ad782612046565b9050836001600160a01b0316816001600160a01b031614610b0a5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610b74576001600160a01b038616600090815260076020908152604080832033845290915290205460ff16610b7457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b9b57604051633a954ecd60e21b815260040160405180910390fd5b8015610ba657600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610c3857600184016000818152600460205260408120549003610c36576000548114610c365760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b03163314610cc95760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b6000610cdd6008546001600160a01b031690565b60405190915047906000906001600160a01b0384169083908381818185875af1925050503d8060008114610d2d576040519150601f19603f3d011682016040523d82523d6000602084013e610d32565b606091505b5050905080610d835760405162461bcd60e51b815260206004820152601460248201527f4661696c656420746f2073656e642045746865720000000000000000000000006044820152606401610ab0565b505050565b6008546001600160a01b03163314610dd05760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b60005b83811015610ea857600a546001848484818110610df257610df2612c9a565b90506020020135610e0260005490565b610e0c9190612cc6565b610e169190612cde565b1115610e585760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b6044820152606401610ab0565b610ea0858583818110610e6d57610e6d612c9a565b9050602002016020810190610e8291906129fd565b848484818110610e9457610e94612c9a565b905060200201356120ad565b600101610dd3565b5050505050565b610d8383838360405180602001604052806000815250611847565b6008546001600160a01b03163314610f125760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b8051610f2590600d9060208401906124b9565b5050565b60138054610f3690612c60565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6290612c60565b8015610faf5780601f10610f8457610100808354040283529160200191610faf565b820191906000526020600020905b815481529060010190602001808311610f9257829003601f168201915b505050505081565b6008546001600160a01b03163314610fff5760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b8051610f259060099060208401906124b9565b6008546001600160a01b0316331461105a5760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b815161106d9060119060208501906124b9565b508051610d839060129060208401906124b9565b805160609060008167ffffffffffffffff8111156110a1576110a161276e565b6040519080825280602002602001820160405280156110f357816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816110bf5790505b50905060005b8281146111475761112285828151811061111557611115612c9a565b6020026020010151611891565b82828151811061113457611134612c9a565b60209081029190910101526001016110f9565b509392505050565b60006108c682612046565b60006001600160a01b038216611183576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146111f15760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b6111fb600061218d565b565b6008546001600160a01b031633146112455760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b8051610f259060139060208401906124b9565b606060008060006112688561115a565b905060008167ffffffffffffffff8111156112855761128561276e565b6040519080825280602002602001820160405280156112ae578160200160208202803683370190505b5090506112db60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b838614611355576112ee816121ec565b9150816040015161134d5781516001600160a01b03161561130e57815194505b876001600160a01b0316856001600160a01b03160361134d578083878060010198508151811061134057611340612c9a565b6020026020010181815250505b6001016112de565b50909695505050505050565b6008546001600160a01b031633146113a95760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b600f55565b6060601280546108db90612c60565b60608183106113df57604051631960ccad60e11b815260040160405180910390fd5b6000806113eb60005490565b9050808411156113f9578093505b60006114048761115a565b905084861015611423578585038181101561141d578091505b50611427565b5060005b60008167ffffffffffffffff8111156114425761144261276e565b60405190808252806020026020018201604052801561146b578160200160208202803683370190505b5090508160000361148157935061153092505050565b600061148c88611891565b90506000816040015161149d575080515b885b8881141580156114af5750848714155b15611524576114bd816121ec565b9250826040015161151c5782516001600160a01b0316156114dd57825191505b8a6001600160a01b0316826001600160a01b03160361151c578084888060010199508151811061150f5761150f612c9a565b6020026020010181815250505b60010161149f565b50505092835250909150505b9392505050565b600b5460ff161561158a5760405162461bcd60e51b815260206004820152601960248201527f436f6e74726163742063757272656e746c7920706175736564000000000000006044820152606401610ab0565b3233146115d95760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610ab0565b601554421161162a5760405162461bcd60e51b815260206004820152601660248201527f4e6f74207075626c69632073616c6520706572696f64000000000000000000006044820152606401610ab0565b600a5460018261163960005490565b6116439190612cc6565b61164d9190612cde565b111561168f5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b6044820152606401610ab0565b600c548161169c3361115a565b6116a69190612cc6565b11156116f45760405162461bcd60e51b815260206004820152601e60248201527f457863656564696e67206d6178207065722077616c6c6574206c696d697400006044820152606401610ab0565b80600f546117029190612cf5565b3410156117455760405162461bcd60e51b8152602060048201526011602482015270135bdc9948115512081c995c5d5a5c9959607a1b6044820152606401610ab0565b61174f33826120ad565b50565b336001600160a01b0383160361177b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d8054610f3690612c60565b6008546001600160a01b0316331461183c5760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b601491909155601555565b611852848484610acc565b6001600160a01b0383163b1561188b5761186e8484848461226b565b61188b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051608080820183526000808352602080840182905283850182905260608085018390528551938401865282845290830182905293820181905292810183905290915060005483106118e55792915050565b6118ee836121ec565b90508060400151156119005792915050565b61153083612357565b60606119148261201f565b6119865760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201527f6f6e6578697374656e7420746f6b656e000000000000000000000000000000006064820152608401610ab0565b600e5460ff161515600003611a2757600d80546119a290612c60565b80601f01602080910402602001604051908101604052809291908181526020018280546119ce90612c60565b8015611a1b5780601f106119f057610100808354040283529160200191611a1b565b820191906000526020600020905b8154815290600101906020018083116119fe57829003601f168201915b50505050509050919050565b6000611a316123cf565b90506000815111611acc57600d8054611a4990612c60565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7590612c60565b8015611ac25780601f10611a9757610100808354040283529160200191611ac2565b820191906000526020600020905b815481529060010190602001808311611aa557829003601f168201915b5050505050611530565b80611ad6846123de565b6013604051602001611aea93929190612d14565b6040516020818303038152906040529392505050565b60098054610f3690612c60565b6008546001600160a01b03163314611b555760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b601055565b6008546001600160a01b03163314611ba25760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b600e805460ff1916911515919091179055565b6008546001600160a01b03163314611bfd5760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b600c55565b6008546001600160a01b03163314611c4a5760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b600a54600182611c5960005490565b611c639190612cc6565b611c6d9190612cde565b1115611caf5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b6044820152606401610ab0565b610f2582826120ad565b6008546001600160a01b03163314611d015760405162461bcd60e51b81526020600482018190526024820152600080516020612e4a8339815191526044820152606401610ab0565b6001600160a01b038116611d665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ab0565b61174f8161218d565b600b5460ff1615611dc25760405162461bcd60e51b815260206004820152601960248201527f436f6e74726163742063757272656e746c7920706175736564000000000000006044820152606401610ab0565b323314611e115760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610ab0565b60145442118015611e23575060155442105b611e6f5760405162461bcd60e51b815260206004820152601760248201527f4e6f742077686974656c697374696e6720706572696f640000000000000000006044820152606401610ab0565b6040516bffffffffffffffffffffffff193360601b166020820152611eae9082906034016040516020818303038152906040528051906020012061242d565b611efa5760405162461bcd60e51b815260206004820152601860248201527f41646472657373206e6f7420696e2077686974656c69737400000000000000006044820152606401610ab0565b600a54600183611f0960005490565b611f139190612cc6565b611f1d9190612cde565b1115611f5f5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b6044820152606401610ab0565b600c5482611f6c3361115a565b611f769190612cc6565b1115611fc45760405162461bcd60e51b815260206004820152601e60248201527f457863656564696e67206d6178207065722077616c6c6574206c696d697400006044820152606401610ab0565b81600f54611fd29190612cf5565b3410156120155760405162461bcd60e51b8152602060048201526011602482015270135bdc9948115512081c995c5d5a5c9959607a1b6044820152606401610ab0565b610f2533836120ad565b60008054821080156108c6575050600090815260046020526040902054600160e01b161590565b6000816000548110156120945760008181526004602052604081205490600160e01b82169003612092575b80600003611530575060001901600081815260046020526040902054612071565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b0383166120d657604051622e076360e81b815260040160405180910390fd5b816000036120f75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106121415760005550505050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600460205260409020546108c690604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906122a0903390899088908890600401612dd7565b6020604051808303816000875af19250505080156122db575060408051601f3d908101601f191682019092526122d891810190612e13565b60015b612339573d808015612309576040519150601f19603f3d011682016040523d82523d6000602084013e61230e565b606091505b508051600003612331576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6040805160808101825260008082526020820181905291810182905260608101919091526108c661238783612046565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6060600980546108db90612c60565b604080516080810191829052607f0190826030600a8206018353600a90045b801561241b57600183039250600a81066030018353600a90046123fd565b50819003601f19909101908152919050565b60006115308360105484600082612444858461244d565b14949350505050565b600081815b845181101561114757600085828151811061246f5761246f612c9a565b6020026020010151905080831161249557600083815260208290526040902092506124a6565b600081815260208490526040902092505b50806124b181612e30565b915050612452565b8280546124c590612c60565b90600052602060002090601f0160209004810192826124e7576000855561252d565b82601f1061250057805160ff191683800117855561252d565b8280016001018555821561252d579182015b8281111561252d578251825591602001919060010190612512565b5061253992915061253d565b5090565b5b80821115612539576000815560010161253e565b6001600160e01b03198116811461174f57600080fd5b60006020828403121561257a57600080fd5b813561153081612552565b60005b838110156125a0578181015183820152602001612588565b8381111561188b5750506000910152565b600081518084526125c9816020860160208601612585565b601f01601f19169290920160200192915050565b60208152600061153060208301846125b1565b60006020828403121561260257600080fd5b5035919050565b80356001600160a01b038116811461262057600080fd5b919050565b6000806040838503121561263857600080fd5b61264183612609565b946020939093013593505050565b8035801515811461262057600080fd5b60006020828403121561267157600080fd5b6115308261264f565b60008060006060848603121561268f57600080fd5b61269884612609565b92506126a660208501612609565b9150604084013590509250925092565b60008083601f8401126126c857600080fd5b50813567ffffffffffffffff8111156126e057600080fd5b6020830191508360208260051b85010111156126fb57600080fd5b9250929050565b6000806000806040858703121561271857600080fd5b843567ffffffffffffffff8082111561273057600080fd5b61273c888389016126b6565b9096509450602087013591508082111561275557600080fd5b50612762878288016126b6565b95989497509550505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156127ad576127ad61276e565b604052919050565b600067ffffffffffffffff8311156127cf576127cf61276e565b6127e2601f8401601f1916602001612784565b90508281528383830111156127f657600080fd5b828260208301376000602084830101529392505050565b600082601f83011261281e57600080fd5b611530838335602085016127b5565b60006020828403121561283f57600080fd5b813567ffffffffffffffff81111561285657600080fd5b61234f8482850161280d565b6000806040838503121561287557600080fd5b823567ffffffffffffffff8082111561288d57600080fd5b6128998683870161280d565b935060208501359150808211156128af57600080fd5b506128bc8582860161280d565b9150509250929050565b600067ffffffffffffffff8211156128e0576128e061276e565b5060051b60200190565b600060208083850312156128fd57600080fd5b823567ffffffffffffffff81111561291457600080fd5b8301601f8101851361292557600080fd5b8035612938612933826128c6565b612784565b81815260059190911b8201830190838101908783111561295757600080fd5b928401925b828410156129755783358252928401929084019061295c565b979650505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611355576129ea8385516001600160a01b03815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b928401926080929092019160010161299c565b600060208284031215612a0f57600080fd5b61153082612609565b6020808252825182820181905260009190848201906040850190845b8181101561135557835183529284019291840191600101612a34565b600080600060608486031215612a6557600080fd5b612a6e84612609565b95602085013595506040909401359392505050565b60008060408385031215612a9657600080fd5b612a9f83612609565b9150612aad6020840161264f565b90509250929050565b60008060408385031215612ac957600080fd5b50508035926020909101359150565b60008060008060808587031215612aee57600080fd5b612af785612609565b9350612b0560208601612609565b925060408501359150606085013567ffffffffffffffff811115612b2857600080fd5b8501601f81018713612b3957600080fd5b612b48878235602084016127b5565b91505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff1690820152608081016108c6565b60008060408385031215612bac57600080fd5b612bb583612609565b9150612aad60208401612609565b60008060408385031215612bd657600080fd5b8235915060208084013567ffffffffffffffff811115612bf557600080fd5b8401601f81018613612c0657600080fd5b8035612c14612933826128c6565b81815260059190911b82018301908381019088831115612c3357600080fd5b928401925b82841015612c5157833582529284019290840190612c38565b80955050505050509250929050565b600181811c90821680612c7457607f821691505b602082108103612c9457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115612cd957612cd9612cb0565b500190565b600082821015612cf057612cf0612cb0565b500390565b6000816000190483118215151615612d0f57612d0f612cb0565b500290565b600084516020612d278285838a01612585565b855191840191612d3a8184848a01612585565b8554920191600090600181811c9080831680612d5757607f831692505b8583108103612d7457634e487b7160e01b85526022600452602485fd5b808015612d885760018114612d9957612dc6565b60ff19851688528388019550612dc6565b60008b81526020902060005b85811015612dbe5781548a820152908401908801612da5565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612e0960808301846125b1565b9695505050505050565b600060208284031215612e2557600080fd5b815161153081612552565b600060018201612e4257612e42612cb0565b506001019056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220c4ac7f7a166301cc3a5aa87920598ebb6d41df73e1185db72fa70a360f99113064736f6c634300080d0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120e0cc5af99c78bbb7fa9c8ad3ceb1799a683eeb767d3e739aa57ef9b78092f797000000000000000000000000fd279644adb28043ee10111f2971b3e4fb655e860000000000000000000000000000000000000000000000000000000000000009456c657068616e747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006454c454e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5578364555734b6d5a684a65506b3851326a4c415574466b51446241626e62554759797961376a74515978340000000000000000000000

-----Decoded View---------------
Arg [0] : __name (string): Elephants
Arg [1] : __symbol (string): ELENFT
Arg [2] : _hiddenMetadataUri (string): ipfs://QmUx6EUsKmZhJePk8Q2jLAUtFkQDbAbnbUGYyya7jtQYx4
Arg [3] : __root (bytes32): 0xe0cc5af99c78bbb7fa9c8ad3ceb1799a683eeb767d3e739aa57ef9b78092f797
Arg [4] : treasury (address): 0xFD279644adB28043ee10111f2971b3e4Fb655e86

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : e0cc5af99c78bbb7fa9c8ad3ceb1799a683eeb767d3e739aa57ef9b78092f797
Arg [4] : 000000000000000000000000fd279644adb28043ee10111f2971b3e4fb655e86
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 456c657068616e74730000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 454c454e46540000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [10] : 697066733a2f2f516d5578364555734b6d5a684a65506b3851326a4c41557446
Arg [11] : 6b51446241626e62554759797961376a74515978340000000000000000000000


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.