ETH Price: $3,245.37 (+2.53%)
Gas: 2 Gwei

Contract

0x4f4431b6477F197888FB00aD8E3da4b39551bb47
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...161959962022-12-16 8:14:47588 days ago1671178487IN
0x4f4431b6...39551bb47
0 ETH0.0005932912.87523549
Withdraw155440072022-09-16 5:06:23679 days ago1663304783IN
0x4f4431b6...39551bb47
0 ETH0.000194986.42696948
Set Approval For...154654892022-09-03 12:53:23692 days ago1662209603IN
0x4f4431b6...39551bb47
0 ETH0.000241725.24575463
Set Approval For...154652742022-09-03 12:03:16692 days ago1662206596IN
0x4f4431b6...39551bb47
0 ETH0.000290766.31003711
Free Mint154651762022-09-03 11:42:07692 days ago1662205327IN
0x4f4431b6...39551bb47
0 ETH0.000203157.88986903
Set Approval For...154651282022-09-03 11:29:11692 days ago1662204551IN
0x4f4431b6...39551bb47
0 ETH0.000243355.28105807
Set Approval For...154650912022-09-03 11:20:10692 days ago1662204010IN
0x4f4431b6...39551bb47
0 ETH0.000252985.48010709
Set Approval For...154650902022-09-03 11:19:35692 days ago1662203975IN
0x4f4431b6...39551bb47
0 ETH0.000255195.53811854
Set Approval For...154650862022-09-03 11:19:09692 days ago1662203949IN
0x4f4431b6...39551bb47
0 ETH0.000219584.76520574
Mint154650722022-09-03 11:16:29692 days ago1662203789IN
0x4f4431b6...39551bb47
0.01 ETH0.000491785.74022681
Set Approval For...154650622022-09-03 11:14:38692 days ago1662203678IN
0x4f4431b6...39551bb47
0 ETH0.000250415.43438668
Mint154650602022-09-03 11:14:22692 days ago1662203662IN
0x4f4431b6...39551bb47
0.002 ETH0.000447765.7531307
Mint154650552022-09-03 11:13:39692 days ago1662203619IN
0x4f4431b6...39551bb47
0.01 ETH0.000480115.60402481
Mint154650492022-09-03 11:12:04692 days ago1662203524IN
0x4f4431b6...39551bb47
0.002 ETH0.000489266.28637818
Set Approval For...154650342022-09-03 11:09:37692 days ago1662203377IN
0x4f4431b6...39551bb47
0 ETH0.000250715.44077228
Set Approval For...154650262022-09-03 11:08:06692 days ago1662203286IN
0x4f4431b6...39551bb47
0 ETH0.000273515.9355987
Set Approval For...154650262022-09-03 11:08:06692 days ago1662203286IN
0x4f4431b6...39551bb47
0 ETH0.000273515.9355987
Set Approval For...154650222022-09-03 11:07:02692 days ago1662203222IN
0x4f4431b6...39551bb47
0 ETH0.000261735.68005693
Set Approval For...154650212022-09-03 11:06:42692 days ago1662203202IN
0x4f4431b6...39551bb47
0 ETH0.000267445.80381994
Set Approval For...154650212022-09-03 11:06:42692 days ago1662203202IN
0x4f4431b6...39551bb47
0 ETH0.000267445.80381994
Set Approval For...154650212022-09-03 11:06:42692 days ago1662203202IN
0x4f4431b6...39551bb47
0 ETH0.000267445.80381994
Mint154649982022-09-03 11:01:42692 days ago1662202902IN
0x4f4431b6...39551bb47
0.002 ETH0.000443125.69356165
Mint154649972022-09-03 11:01:11692 days ago1662202871IN
0x4f4431b6...39551bb47
0.01 ETH0.000490715.72774966
Mint154649922022-09-03 11:00:27692 days ago1662202827IN
0x4f4431b6...39551bb47
0.02 ETH0.00054075.66307283
Set Approval For...154649912022-09-03 11:00:06692 days ago1662202806IN
0x4f4431b6...39551bb47
0 ETH0.000263815.72524132
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
155440072022-09-16 5:06:23679 days ago1663304783
0x4f4431b6...39551bb47
0.132 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Freak

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-03
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.16;


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

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

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

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

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

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

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

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

contract Freak is IERC721A { 

    address private _owner;
    modifier onlyOwner() { 
        require(_owner==msg.sender, "No!"); 
        _; 
    }

    uint256 public constant MAX_PER_WALLET = 10;
    uint256 public constant COST = 0.002 ether;
    uint256 public MAX_SUPPLY = 745;
    uint256 public MAX_FREE_PER_WALLET = 1;

    string private constant _name = "Freak";
    string private constant _symbol = "FREAK";
    string private _contractURI = "QmXrHsTuCRkDHhwuRfu1UT2M77r7ckRNTKatfYj4ZEnEyc";
    string private _baseURI = "QmNTcJwxmANDMYS2xfHKTjE2f9SfNmyx9wkmVst7QAYitw";

    constructor() {
        _owner = msg.sender;
    }

    function mint(uint256 amount) external payable{
        address _caller = _msgSenderERC721A();

        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount + _numberMinted(msg.sender) <= MAX_PER_WALLET+MAX_FREE_PER_WALLET, "AccLimit");
        require(msg.value >= COST*amount, "Price");

        _mint(_caller, amount);
    }

    function freeMint() external{
        uint256 amount = 1;
        address _caller = _msgSenderERC721A();
        require(totalSupply() + amount <= MAX_SUPPLY-66, "SoldOut");
        require(amount + _numberMinted(msg.sender) <= MAX_FREE_PER_WALLET, "AccLimit");

        _mint(_caller, amount);
    }


    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex = 0;

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


    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159] `addr`
    // - [160..223] `startTimestamp`
    // - [224] `burned`
    // - [225] `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63] `balance`
    // - [64..127] `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

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


    function setBaseURI(string memory _new) external onlyOwner{
        _baseURI = _new;
    }

    function setContractURI(string memory _new) external onlyOwner{
        _contractURI = _new;
    }
   

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

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

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

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


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

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

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



    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        string memory baseURI = _baseURI;
        return bytes(baseURI).length != 0 ? string(abi.encodePacked("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
    }

    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked("ipfs://", _contractURI));
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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


        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }
    */

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();


        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
            address from,
            address to,
            uint256 tokenId
            ) private {

        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        //X if (_addressToUint256(to) == 0) revert TransferToZeroAddress();


        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }




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

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

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

         // Update the free memory pointer to allocate.
         mstore(0x40, ptr)

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

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

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

    function teamMint(uint256 _amount) external onlyOwner{
        _mint(msg.sender, _amount);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"_new","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_new","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6102e9600190815560025560e0604052602e6080818152906200167e60a0396003906200002d908262000128565b506040518060600160405280602e815260200162001650602e913960049062000057908262000128565b5060006005553480156200006a57600080fd5b50600080546001600160a01b03191633179055620001f4565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000ae57607f821691505b602082108103620000cf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200012357600081815260208120601f850160051c81016020861015620000fe5750805b601f850160051c820191505b818110156200011f578281556001016200010a565b5050505b505050565b81516001600160401b0381111562000144576200014462000083565b6200015c8162000155845462000099565b84620000d5565b602080601f8311600181146200019457600084156200017b5750858301515b600019600386901b1c1916600185901b1785556200011f565b600085815260208120601f198616915b82811015620001c557888601518255948401946001909101908401620001a4565b5085821015620001e45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61144c80620002046000396000f3fe6080604052600436106101665760003560e01c80635b70ea9f116100d1578063a0712d681161008a578063bf8fbbd211610064578063bf8fbbd214610420578063c87b56dd1461043b578063e8a3d4851461045b578063e985e9c51461047057600080fd5b8063a0712d68146103cd578063a22cb465146103e0578063b88d4fde1461040057600080fd5b80635b70ea9f146103145780636352211e1461032957806370a0823114610349578063938e3d7b1461036957806395d89b411461038957806398710d1e146103b757600080fd5b806323b872dd1161012357806323b872dd146102695780632fbba1151461028957806332cb6b0c146102a95780633ccfd60b146102bf57806342842e0e146102d457806355f804b3146102f457600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101d7578063095ea7b31461020f5780630f2cdd6c1461023157806318160ddd14610254575b600080fd5b34801561017757600080fd5b5061018b610186366004610e6f565b610490565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b50604080518082019091526005815264467265616b60d81b60208201525b6040516101979190610ebd565b3480156101e357600080fd5b506101f76101f2366004610ef0565b6104e2565b6040516001600160a01b039091168152602001610197565b34801561021b57600080fd5b5061022f61022a366004610f25565b610528565b005b34801561023d57600080fd5b50610246600a81565b604051908152602001610197565b34801561026057600080fd5b50600554610246565b34801561027557600080fd5b5061022f610284366004610f4f565b6105e6565b34801561029557600080fd5b5061022f6102a4366004610ef0565b6105f6565b3480156102b557600080fd5b5061024660015481565b3480156102cb57600080fd5b5061022f610636565b3480156102e057600080fd5b5061022f6102ef366004610f4f565b610693565b34801561030057600080fd5b5061022f61030f366004611017565b6106ae565b34801561032057600080fd5b5061022f6106e4565b34801561033557600080fd5b506101f7610344366004610ef0565b6107af565b34801561035557600080fd5b50610246610364366004611068565b6107ba565b34801561037557600080fd5b5061022f610384366004611017565b610803565b34801561039557600080fd5b50604080518082019091526005815264465245414b60d81b60208201526101ca565b3480156103c357600080fd5b5061024660025481565b61022f6103db366004610ef0565b610839565b3480156103ec57600080fd5b5061022f6103fb366004611083565b610940565b34801561040c57600080fd5b5061022f61041b3660046110bf565b6109d5565b34801561042c57600080fd5b5061024666071afd498d000081565b34801561044757600080fd5b506101ca610456366004610ef0565b6109e6565b34801561046757600080fd5b506101ca610aef565b34801561047c57600080fd5b5061018b61048b36600461113b565b610b17565b60006301ffc9a760e01b6001600160e01b0319831614806104c157506380ac58cd60e01b6001600160e01b03198316145b806104dc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60006104ef826005541190565b61050c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061053382610b45565b9050806001600160a01b0316836001600160a01b03160361055357600080fd5b336001600160a01b0382161461058a5761056d8133610b17565b61058a576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6105f1838383610bac565b505050565b6000546001600160a01b031633146106295760405162461bcd60e51b81526004016106209061116e565b60405180910390fd5b6106333382610d45565b50565b6000546001600160a01b031633146106605760405162461bcd60e51b81526004016106209061116e565b6040514790339082156108fc029083906000818181858888f1935050505015801561068f573d6000803e3d6000fd5b5050565b6105f1838383604051806020016040528060008152506109d5565b6000546001600160a01b031633146106d85760405162461bcd60e51b81526004016106209061116e565b600461068f828261120b565b6001805433906106f6906042906112e1565b8261070060055490565b61070a91906112f4565b11156107425760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610620565b60025433600090815260076020526040908190205461076c911c67ffffffffffffffff16846112f4565b11156107a55760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610620565b61068f8183610d45565b60006104dc82610b45565b6000816000036107dd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461082d5760405162461bcd60e51b81526004016106209061116e565b600361068f828261120b565b60015433908261084860055490565b61085291906112f4565b111561088a5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610620565b60025461089890600a6112f4565b3360009081526007602052604090819020546108bf911c67ffffffffffffffff16846112f4565b11156108f85760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610620565b6109098266071afd498d0000611307565b3410156107a55760405162461bcd60e51b8152602060048201526005602482015264507269636560d81b6044820152606401610620565b336001600160a01b038316036109695760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109e0848484610bac565b50505050565b60606109f3826005541190565b610a1057604051630a14c4b560e41b815260040160405180910390fd5b600060048054610a1f9061118b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4b9061118b565b8015610a985780601f10610a6d57610100808354040283529160200191610a98565b820191906000526020600020905b815481529060010190602001808311610a7b57829003601f168201915b505050505090508051600003610abd5760405180602001604052806000815250610ae8565b80610ac784610e20565b604051602001610ad8929190611326565b6040516020818303038152906040525b9392505050565b60606003604051602001610b039190611387565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600081600554811015610b935760008181526006602052604081205490600160e01b82169003610b91575b80600003610ae8575060001901600081815260066020526040902054610b70565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610bb782610b45565b9050836001600160a01b0316816001600160a01b031614610bea5760405162a1148160e81b815260040160405180910390fd5b6000828152600860205260408120546001600160a01b0390811691908616331480610c1a5750610c1a8633610b17565b80610c2d57506001600160a01b03821633145b905080610c4d57604051632ce44b5f60e11b815260040160405180910390fd5b8115610c7057600084815260086020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600760209081526040808320805460001901905592881682528282208054600101905586825260069052908120600160e11b4260a01b8817811790915584169003610cfb57600184016000818152600660205260408120549003610cf9576005548114610cf95760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60055482600003610d6857604051622e076360e81b815260040160405180910390fd5b81600003610d895760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526007602090815260408083208054680100000000000000018702019055838352600690915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610dd45750600555505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610e5d57600183039250600a81066030018353600a9004610e3f565b50819003601f19909101908152919050565b600060208284031215610e8157600080fd5b81356001600160e01b031981168114610ae857600080fd5b60005b83811015610eb4578181015183820152602001610e9c565b50506000910152565b6020815260008251806020840152610edc816040850160208701610e99565b601f01601f19169190910160400192915050565b600060208284031215610f0257600080fd5b5035919050565b80356001600160a01b0381168114610f2057600080fd5b919050565b60008060408385031215610f3857600080fd5b610f4183610f09565b946020939093013593505050565b600080600060608486031215610f6457600080fd5b610f6d84610f09565b9250610f7b60208501610f09565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115610fbc57610fbc610f8b565b604051601f8501601f19908116603f01168101908282118183101715610fe457610fe4610f8b565b81604052809350858152868686011115610ffd57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561102957600080fd5b813567ffffffffffffffff81111561104057600080fd5b8201601f8101841361105157600080fd5b61106084823560208401610fa1565b949350505050565b60006020828403121561107a57600080fd5b610ae882610f09565b6000806040838503121561109657600080fd5b61109f83610f09565b9150602083013580151581146110b457600080fd5b809150509250929050565b600080600080608085870312156110d557600080fd5b6110de85610f09565b93506110ec60208601610f09565b925060408501359150606085013567ffffffffffffffff81111561110f57600080fd5b8501601f8101871361112057600080fd5b61112f87823560208401610fa1565b91505092959194509250565b6000806040838503121561114e57600080fd5b61115783610f09565b915061116560208401610f09565b90509250929050565b6020808252600390820152624e6f2160e81b604082015260600190565b600181811c9082168061119f57607f821691505b6020821081036111bf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105f157600081815260208120601f850160051c810160208610156111ec5750805b601f850160051c820191505b81811015610d3d578281556001016111f8565b815167ffffffffffffffff81111561122557611225610f8b565b61123981611233845461118b565b846111c5565b602080601f83116001811461126e57600084156112565750858301515b600019600386901b1c1916600185901b178555610d3d565b600085815260208120601f198616915b8281101561129d5788860151825594840194600190910190840161127e565b50858210156112bb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b818103818111156104dc576104dc6112cb565b808201808211156104dc576104dc6112cb565b6000816000190483118215151615611321576113216112cb565b500290565b66697066733a2f2f60c81b815260008351611348816007850160208801610e99565b602f60f81b6007918401918201528351611369816008840160208801610e99565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b815260006007600084546113a58161118b565b600182811680156113bd57600181146113d657611409565b60ff198416888701528215158302880186019450611409565b8860005260208060002060005b858110156113fe5781548b82018a01529084019082016113e3565b505050858389010194505b509297965050505050505056fea2646970667358221220e6acb15316858565219a8edea72ad60fa14baa43bcf290e553c698385acd8a5f64736f6c63430008100033516d4e54634a77786d414e444d5953327866484b546a4532663953664e6d797839776b6d56737437514159697477516d58724873547543526b4448687775526675315554324d37377237636b524e544b617466596a345a456e457963

Deployed Bytecode

0x6080604052600436106101665760003560e01c80635b70ea9f116100d1578063a0712d681161008a578063bf8fbbd211610064578063bf8fbbd214610420578063c87b56dd1461043b578063e8a3d4851461045b578063e985e9c51461047057600080fd5b8063a0712d68146103cd578063a22cb465146103e0578063b88d4fde1461040057600080fd5b80635b70ea9f146103145780636352211e1461032957806370a0823114610349578063938e3d7b1461036957806395d89b411461038957806398710d1e146103b757600080fd5b806323b872dd1161012357806323b872dd146102695780632fbba1151461028957806332cb6b0c146102a95780633ccfd60b146102bf57806342842e0e146102d457806355f804b3146102f457600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101d7578063095ea7b31461020f5780630f2cdd6c1461023157806318160ddd14610254575b600080fd5b34801561017757600080fd5b5061018b610186366004610e6f565b610490565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b50604080518082019091526005815264467265616b60d81b60208201525b6040516101979190610ebd565b3480156101e357600080fd5b506101f76101f2366004610ef0565b6104e2565b6040516001600160a01b039091168152602001610197565b34801561021b57600080fd5b5061022f61022a366004610f25565b610528565b005b34801561023d57600080fd5b50610246600a81565b604051908152602001610197565b34801561026057600080fd5b50600554610246565b34801561027557600080fd5b5061022f610284366004610f4f565b6105e6565b34801561029557600080fd5b5061022f6102a4366004610ef0565b6105f6565b3480156102b557600080fd5b5061024660015481565b3480156102cb57600080fd5b5061022f610636565b3480156102e057600080fd5b5061022f6102ef366004610f4f565b610693565b34801561030057600080fd5b5061022f61030f366004611017565b6106ae565b34801561032057600080fd5b5061022f6106e4565b34801561033557600080fd5b506101f7610344366004610ef0565b6107af565b34801561035557600080fd5b50610246610364366004611068565b6107ba565b34801561037557600080fd5b5061022f610384366004611017565b610803565b34801561039557600080fd5b50604080518082019091526005815264465245414b60d81b60208201526101ca565b3480156103c357600080fd5b5061024660025481565b61022f6103db366004610ef0565b610839565b3480156103ec57600080fd5b5061022f6103fb366004611083565b610940565b34801561040c57600080fd5b5061022f61041b3660046110bf565b6109d5565b34801561042c57600080fd5b5061024666071afd498d000081565b34801561044757600080fd5b506101ca610456366004610ef0565b6109e6565b34801561046757600080fd5b506101ca610aef565b34801561047c57600080fd5b5061018b61048b36600461113b565b610b17565b60006301ffc9a760e01b6001600160e01b0319831614806104c157506380ac58cd60e01b6001600160e01b03198316145b806104dc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60006104ef826005541190565b61050c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061053382610b45565b9050806001600160a01b0316836001600160a01b03160361055357600080fd5b336001600160a01b0382161461058a5761056d8133610b17565b61058a576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6105f1838383610bac565b505050565b6000546001600160a01b031633146106295760405162461bcd60e51b81526004016106209061116e565b60405180910390fd5b6106333382610d45565b50565b6000546001600160a01b031633146106605760405162461bcd60e51b81526004016106209061116e565b6040514790339082156108fc029083906000818181858888f1935050505015801561068f573d6000803e3d6000fd5b5050565b6105f1838383604051806020016040528060008152506109d5565b6000546001600160a01b031633146106d85760405162461bcd60e51b81526004016106209061116e565b600461068f828261120b565b6001805433906106f6906042906112e1565b8261070060055490565b61070a91906112f4565b11156107425760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610620565b60025433600090815260076020526040908190205461076c911c67ffffffffffffffff16846112f4565b11156107a55760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610620565b61068f8183610d45565b60006104dc82610b45565b6000816000036107dd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461082d5760405162461bcd60e51b81526004016106209061116e565b600361068f828261120b565b60015433908261084860055490565b61085291906112f4565b111561088a5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610620565b60025461089890600a6112f4565b3360009081526007602052604090819020546108bf911c67ffffffffffffffff16846112f4565b11156108f85760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610620565b6109098266071afd498d0000611307565b3410156107a55760405162461bcd60e51b8152602060048201526005602482015264507269636560d81b6044820152606401610620565b336001600160a01b038316036109695760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109e0848484610bac565b50505050565b60606109f3826005541190565b610a1057604051630a14c4b560e41b815260040160405180910390fd5b600060048054610a1f9061118b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4b9061118b565b8015610a985780601f10610a6d57610100808354040283529160200191610a98565b820191906000526020600020905b815481529060010190602001808311610a7b57829003601f168201915b505050505090508051600003610abd5760405180602001604052806000815250610ae8565b80610ac784610e20565b604051602001610ad8929190611326565b6040516020818303038152906040525b9392505050565b60606003604051602001610b039190611387565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600081600554811015610b935760008181526006602052604081205490600160e01b82169003610b91575b80600003610ae8575060001901600081815260066020526040902054610b70565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610bb782610b45565b9050836001600160a01b0316816001600160a01b031614610bea5760405162a1148160e81b815260040160405180910390fd5b6000828152600860205260408120546001600160a01b0390811691908616331480610c1a5750610c1a8633610b17565b80610c2d57506001600160a01b03821633145b905080610c4d57604051632ce44b5f60e11b815260040160405180910390fd5b8115610c7057600084815260086020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600760209081526040808320805460001901905592881682528282208054600101905586825260069052908120600160e11b4260a01b8817811790915584169003610cfb57600184016000818152600660205260408120549003610cf9576005548114610cf95760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60055482600003610d6857604051622e076360e81b815260040160405180910390fd5b81600003610d895760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526007602090815260408083208054680100000000000000018702019055838352600690915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610dd45750600555505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610e5d57600183039250600a81066030018353600a9004610e3f565b50819003601f19909101908152919050565b600060208284031215610e8157600080fd5b81356001600160e01b031981168114610ae857600080fd5b60005b83811015610eb4578181015183820152602001610e9c565b50506000910152565b6020815260008251806020840152610edc816040850160208701610e99565b601f01601f19169190910160400192915050565b600060208284031215610f0257600080fd5b5035919050565b80356001600160a01b0381168114610f2057600080fd5b919050565b60008060408385031215610f3857600080fd5b610f4183610f09565b946020939093013593505050565b600080600060608486031215610f6457600080fd5b610f6d84610f09565b9250610f7b60208501610f09565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115610fbc57610fbc610f8b565b604051601f8501601f19908116603f01168101908282118183101715610fe457610fe4610f8b565b81604052809350858152868686011115610ffd57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561102957600080fd5b813567ffffffffffffffff81111561104057600080fd5b8201601f8101841361105157600080fd5b61106084823560208401610fa1565b949350505050565b60006020828403121561107a57600080fd5b610ae882610f09565b6000806040838503121561109657600080fd5b61109f83610f09565b9150602083013580151581146110b457600080fd5b809150509250929050565b600080600080608085870312156110d557600080fd5b6110de85610f09565b93506110ec60208601610f09565b925060408501359150606085013567ffffffffffffffff81111561110f57600080fd5b8501601f8101871361112057600080fd5b61112f87823560208401610fa1565b91505092959194509250565b6000806040838503121561114e57600080fd5b61115783610f09565b915061116560208401610f09565b90509250929050565b6020808252600390820152624e6f2160e81b604082015260600190565b600181811c9082168061119f57607f821691505b6020821081036111bf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105f157600081815260208120601f850160051c810160208610156111ec5750805b601f850160051c820191505b81811015610d3d578281556001016111f8565b815167ffffffffffffffff81111561122557611225610f8b565b61123981611233845461118b565b846111c5565b602080601f83116001811461126e57600084156112565750858301515b600019600386901b1c1916600185901b178555610d3d565b600085815260208120601f198616915b8281101561129d5788860151825594840194600190910190840161127e565b50858210156112bb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b818103818111156104dc576104dc6112cb565b808201808211156104dc576104dc6112cb565b6000816000190483118215151615611321576113216112cb565b500290565b66697066733a2f2f60c81b815260008351611348816007850160208801610e99565b602f60f81b6007918401918201528351611369816008840160208801610e99565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b815260006007600084546113a58161118b565b600182811680156113bd57600181146113d657611409565b60ff198416888701528215158302880186019450611409565b8860005260208060002060005b858110156113fe5781548b82018a01529084019082016113e3565b505050858389010194505b509297965050505050505056fea2646970667358221220e6acb15316858565219a8edea72ad60fa14baa43bcf290e553c698385acd8a5f64736f6c63430008100033

Deployed Bytecode Sourcemap

9018:24549:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14209:615;;;;;;;;;;-1:-1:-1;14209:615:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;14209:615:0;;;;;;;;18962:100;;;;;;;;;;-1:-1:-1;19049:5:0;;;;;;;;;;;;-1:-1:-1;;;19049:5:0;;;;18962:100;;;;;;;:::i;20765:204::-;;;;;;;;;;-1:-1:-1;20765:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;20765:204:0;1338:203:1;20248:451:0;;;;;;;;;;-1:-1:-1;20248:451:0;;;;;:::i;:::-;;:::i;:::-;;9181:43;;;;;;;;;;;;9222:2;9181:43;;;;;2129:25:1;;;2117:2;2102:18;9181:43:0;1983:177:1;13452:300:0;;;;;;;;;;-1:-1:-1;13702:13:0;;13452:300;;21651:190;;;;;;;;;;-1:-1:-1;21651:190:0;;;;;:::i;:::-;;:::i;33313:98::-;;;;;;;;;;-1:-1:-1;33313:98:0;;;;;:::i;:::-;;:::i;9280:31::-;;;;;;;;;;;;;;;;33419:145;;;;;;;;;;;;;:::i;21912:205::-;;;;;;;;;;-1:-1:-1;21912:205:0;;;;;:::i;:::-;;:::i;12627:92::-;;;;;;;;;;-1:-1:-1;12627:92:0;;;;;:::i;:::-;;:::i;10058:307::-;;;;;;;;;;;;;:::i;18751:144::-;;;;;;;;;;-1:-1:-1;18751:144:0;;;;;:::i;:::-;;:::i;14888:234::-;;;;;;;;;;-1:-1:-1;14888:234:0;;;;;:::i;:::-;;:::i;12727:100::-;;;;;;;;;;-1:-1:-1;12727:100:0;;;;;:::i;:::-;;:::i;19131:104::-;;;;;;;;;;-1:-1:-1;19220:7:0;;;;;;;;;;;;-1:-1:-1;;;19220:7:0;;;;19131:104;;9318:38;;;;;;;;;;;;;;;;9687:363;;;;;;:::i;:::-;;:::i;21041:308::-;;;;;;;;;;-1:-1:-1;21041:308:0;;;;;:::i;:::-;;:::i;22188:227::-;;;;;;;;;;-1:-1:-1;22188:227:0;;;;;:::i;:::-;;:::i;9231:42::-;;;;;;;;;;;;9262:11;9231:42;;19243:339;;;;;;;;;;-1:-1:-1;19243:339:0;;;;;:::i;:::-;;:::i;19590:134::-;;;;;;;;;;;;;:::i;21420:164::-;;;;;;;;;;-1:-1:-1;21420:164:0;;;;;:::i;:::-;;:::i;14209:615::-;14294:4;-1:-1:-1;;;;;;;;;14594:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;14671:25:0;;;14594:102;:179;;;-1:-1:-1;;;;;;;;;;14748:25:0;;;14594:179;14574:199;14209:615;-1:-1:-1;;14209:615:0:o;20765:204::-;20833:7;20858:16;20866:7;22817:13;;-1:-1:-1;22807:23:0;22670:168;20858:16;20853:64;;20883:34;;-1:-1:-1;;;20883:34:0;;;;;;;;;;;20853:64;-1:-1:-1;20937:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20937:24:0;;20765:204::o;20248:451::-;20321:13;20353:27;20372:7;20353:18;:27::i;:::-;20321:61;;20403:5;-1:-1:-1;;;;;20397:11:0;:2;-1:-1:-1;;;;;20397:11:0;;20393:25;;20410:8;;;20393:25;31299:10;-1:-1:-1;;;;;20435:28:0;;;20431:175;;20483:44;20500:5;31299:10;21420:164;:::i;20483:44::-;20478:128;;20555:35;;-1:-1:-1;;;20555:35:0;;;;;;;;;;;20478:128;20618:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20618:29:0;-1:-1:-1;;;;;20618:29:0;;;;;;;;;20663:28;;20618:24;;20663:28;;;;;;;20310:389;20248:451;;:::o;21651:190::-;21805:28;21815:4;21821:2;21825:7;21805:9;:28::i;:::-;21651:190;;;:::o;33313:98::-;9125:6;;-1:-1:-1;;;;;9125:6:0;9133:10;9125:18;9117:34;;;;-1:-1:-1;;;9117:34:0;;;;;;;:::i;:::-;;;;;;;;;33377:26:::1;33383:10;33395:7;33377:5;:26::i;:::-;33313:98:::0;:::o;33419:145::-;9125:6;;-1:-1:-1;;;;;9125:6:0;9133:10;9125:18;9117:34;;;;-1:-1:-1;;;9117:34:0;;;;;;;:::i;:::-;33519:37:::1;::::0;33487:21:::1;::::0;33527:10:::1;::::0;33519:37;::::1;;;::::0;33487:21;;33469:15:::1;33519:37:::0;33469:15;33519:37;33487:21;33527:10;33519:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;33458:106;33419:145::o:0;21912:205::-;22070:39;22087:4;22093:2;22097:7;22070:39;;;;;;;;;;;;:16;:39::i;12627:92::-;9125:6;;-1:-1:-1;;;;;9125:6:0;9133:10;9125:18;9117:34;;;;-1:-1:-1;;;9117:34:0;;;;;;;:::i;:::-;12696:8:::1;:15;12707:4:::0;12696:8;:15:::1;:::i;10058:307::-:0;10114:1;10208:10;;31299;;10208:13;;10219:2;;10208:13;:::i;:::-;10198:6;10182:13;13702;;;13452:300;10182:13;:22;;;;:::i;:::-;:39;;10174:59;;;;-1:-1:-1;;;10174:59:0;;8720:2:1;10174:59:0;;;8702:21:1;8759:1;8739:18;;;8732:29;-1:-1:-1;;;8777:18:1;;;8770:37;8824:18;;10174:59:0;8518:330:1;10174:59:0;10290:19;;10275:10;15265:7;15293:25;;;:18;:25;;10615:2;15293:25;;;;;10252:34;;15293:49;10478:13;15292:80;10252:6;:34;:::i;:::-;:57;;10244:78;;;;-1:-1:-1;;;10244:78:0;;9055:2:1;10244:78:0;;;9037:21:1;9094:1;9074:18;;;9067:29;-1:-1:-1;;;9112:18:1;;;9105:38;9160:18;;10244:78:0;8853:331:1;10244:78:0;10335:22;10341:7;10350:6;10335:5;:22::i;18751:144::-;18815:7;18858:27;18877:7;18858:18;:27::i;14888:234::-;14952:7;14994:5;15004:1;14976:29;14972:70;;15014:28;;-1:-1:-1;;;15014:28:0;;;;;;;;;;;14972:70;-1:-1:-1;;;;;;15060:25:0;;;;;:18;:25;;;;;;10478:13;15060:54;;14888:234::o;12727:100::-;9125:6;;-1:-1:-1;;;;;9125:6:0;9133:10;9125:18;9117:34;;;;-1:-1:-1;;;9117:34:0;;;;;;;:::i;:::-;12800:12:::1;:19;12815:4:::0;12800:12;:19:::1;:::i;9687:363::-:0;9828:10;;31299;;9818:6;9802:13;13702;;;13452:300;9802:13;:22;;;;:::i;:::-;:36;;9794:56;;;;-1:-1:-1;;;9794:56:0;;8720:2:1;9794:56:0;;;8702:21:1;8759:1;8739:18;;;8732:29;-1:-1:-1;;;8777:18:1;;;8770:37;8824:18;;9794:56:0;8518:330:1;9794:56:0;9922:19;;9907:34;;9222:2;9907:34;:::i;:::-;9892:10;15265:7;15293:25;;;:18;:25;;10615:2;15293:25;;;;;9869:34;;15293:49;10478:13;15292:80;9869:6;:34;:::i;:::-;:72;;9861:93;;;;-1:-1:-1;;;9861:93:0;;9055:2:1;9861:93:0;;;9037:21:1;9094:1;9074:18;;;9067:29;-1:-1:-1;;;9112:18:1;;;9105:38;9160:18;;9861:93:0;8853:331:1;9861:93:0;9986:11;9991:6;9262:11;9986;:::i;:::-;9973:9;:24;;9965:42;;;;-1:-1:-1;;;9965:42:0;;9564:2:1;9965:42:0;;;9546:21:1;9603:1;9583:18;;;9576:29;-1:-1:-1;;;9621:18:1;;;9614:35;9666:18;;9965:42:0;9362:328:1;21041:308:0;31299:10;-1:-1:-1;;;;;21140:31:0;;;21136:61;;21180:17;;-1:-1:-1;;;21180:17:0;;;;;;;;;;;21136:61;31299:10;21210:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;21210:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;21210:60:0;;;;;;;;;;21286:55;;445:41:1;;;21210:49:0;;31299:10;21286:55;;418:18:1;21286:55:0;;;;;;;21041:308;;:::o;22188:227::-;22379:28;22389:4;22395:2;22399:7;22379:9;:28::i;:::-;22188:227;;;;:::o;19243:339::-;19316:13;19347:16;19355:7;22817:13;;-1:-1:-1;22807:23:0;22670:168;19347:16;19342:59;;19372:29;;-1:-1:-1;;;19372:29:0;;;;;;;;;;;19342:59;19412:21;19436:8;19412:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19468:7;19462:21;19487:1;19462:26;:112;;;;;;;;;;;;;;;;;19526:7;19540:18;19550:7;19540:9;:18::i;:::-;19498:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19462:112;19455:119;19243:339;-1:-1:-1;;;19243:339:0:o;19590:134::-;19634:13;19702:12;19674:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;19660:56;;19590:134;:::o;21420:164::-;-1:-1:-1;;;;;21541:25:0;;;21517:4;21541:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21420:164::o;16266:1129::-;16333:7;16368;16470:13;;16463:4;:20;16459:869;;;16508:14;16525:23;;;:17;:23;;;;;;;-1:-1:-1;;;16614:23:0;;:28;;16610:699;;17133:113;17140:6;17150:1;17140:11;17133:113;;-1:-1:-1;;;17211:6:0;17193:25;;;;:17;:25;;;;;;17133:113;;16610:699;16485:843;16459:869;17356:31;;-1:-1:-1;;;17356:31:0;;;;;;;;;;;27538:2636;27675:27;27705;27724:7;27705:18;:27::i;:::-;27675:57;;27790:4;-1:-1:-1;;;;;27749:45:0;27765:19;-1:-1:-1;;;;;27749:45:0;;27745:86;;27803:28;;-1:-1:-1;;;27803:28:0;;;;;;;;;;;27745:86;27844:23;27870:24;;;:15;:24;;;;;;-1:-1:-1;;;;;27870:24:0;;;;27844:23;27933:27;;31299:10;27933:27;;:91;;-1:-1:-1;27981:43:0;27998:4;31299:10;21420:164;:::i;27981:43::-;27933:150;;;-1:-1:-1;;;;;;28045:38:0;;31299:10;28045:38;27933:150;27907:177;;28102:17;28097:66;;28128:35;;-1:-1:-1;;;28128:35:0;;;;;;;;;;;28097:66;28332:15;28314:39;28310:103;;28377:24;;;;:15;:24;;;;;28370:31;;-1:-1:-1;;;;;;28370:31:0;;;28310:103;-1:-1:-1;;;;;28780:24:0;;;;;;;:18;:24;;;;;;;;28778:26;;-1:-1:-1;;28778:26:0;;;28849:22;;;;;;;;28847:24;;-1:-1:-1;28847:24:0;;;29142:26;;;:17;:26;;;;;-1:-1:-1;;;29230:15:0;11132:3;29230:41;29188:84;;:128;;29142:174;;;29436:46;;:51;;29432:626;;29540:1;29530:11;;29508:19;29663:30;;;:17;:30;;;;;;:35;;29659:384;;29801:13;;29786:11;:28;29782:242;;29948:30;;;;:17;:30;;;;;:52;;;29782:242;29489:569;29432:626;30105:7;30101:2;-1:-1:-1;;;;;30086:27:0;30095:4;-1:-1:-1;;;;;30086:27:0;;;;;;;;;;;30124:42;27662:2512;;;27538:2636;;;:::o;25690:1594::-;25778:13;;25824:2;25831:1;25806:26;25802:58;;25841:19;;-1:-1:-1;;;25841:19:0;;;;;;;;;;;25802:58;25875:8;25887:1;25875:13;25871:44;;25897:18;;-1:-1:-1;;;25897:18:0;;;;;;;;;;;25871:44;-1:-1:-1;;;;;26392:22:0;;;;;;:18;:22;;;;10615:2;26392:22;;;:70;;26430:31;26418:44;;26392:70;;;26705:31;;;:17;:31;;;;;26798:15;11132:3;26798:41;26756:84;;-1:-1:-1;26876:13:0;;11391:3;26861:56;26756:162;26705:213;;:31;26999:23;;;27039:111;27066:40;;27091:14;;;;;-1:-1:-1;;;;;27066:40:0;;;27083:1;;27066:40;;27083:1;;27066:40;27145:3;27130:12;:18;27039:111;;-1:-1:-1;27166:13:0;:28;21651:190;;;:::o;31423:1882::-;31894:4;31888:11;;31901:3;31884:21;;31975:17;;;;32647:11;;;32524:5;32781:2;32795;32785:13;;32777:22;32647:11;32764:36;32837:2;32827:13;;32421:661;32853:4;32421:661;;;33021:1;33016:3;33012:11;33005:18;;33065:2;33059:4;33055:13;33051:2;33047:22;33042:3;33034:36;32938:2;32928:13;;32421:661;;;-1:-1:-1;33105:13:0;;;-1:-1:-1;;33214:12:0;;;33268:19;;;33214:12;31423:1882;-1:-1:-1;31423:1882:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:180::-;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;-1:-1:-1;1304:23:1;;1153:180;-1:-1:-1;1153:180:1:o;1546:173::-;1614:20;;-1:-1:-1;;;;;1663:31:1;;1653:42;;1643:70;;1709:1;1706;1699:12;1643:70;1546:173;;;:::o;1724:254::-;1792:6;1800;1853:2;1841:9;1832:7;1828:23;1824:32;1821:52;;;1869:1;1866;1859:12;1821:52;1892:29;1911:9;1892:29;:::i;:::-;1882:39;1968:2;1953:18;;;;1940:32;;-1:-1:-1;;;1724:254:1:o;2165:328::-;2242:6;2250;2258;2311:2;2299:9;2290:7;2286:23;2282:32;2279:52;;;2327:1;2324;2317:12;2279:52;2350:29;2369:9;2350:29;:::i;:::-;2340:39;;2398:38;2432:2;2421:9;2417:18;2398:38;:::i;:::-;2388:48;;2483:2;2472:9;2468:18;2455:32;2445:42;;2165:328;;;;;:::o;2498:127::-;2559:10;2554:3;2550:20;2547:1;2540:31;2590:4;2587:1;2580:15;2614:4;2611:1;2604:15;2630:632;2695:5;2725:18;2766:2;2758:6;2755:14;2752:40;;;2772:18;;:::i;:::-;2847:2;2841:9;2815:2;2901:15;;-1:-1:-1;;2897:24:1;;;2923:2;2893:33;2889:42;2877:55;;;2947:18;;;2967:22;;;2944:46;2941:72;;;2993:18;;:::i;:::-;3033:10;3029:2;3022:22;3062:6;3053:15;;3092:6;3084;3077:22;3132:3;3123:6;3118:3;3114:16;3111:25;3108:45;;;3149:1;3146;3139:12;3108:45;3199:6;3194:3;3187:4;3179:6;3175:17;3162:44;3254:1;3247:4;3238:6;3230;3226:19;3222:30;3215:41;;;;2630:632;;;;;:::o;3267:451::-;3336:6;3389:2;3377:9;3368:7;3364:23;3360:32;3357:52;;;3405:1;3402;3395:12;3357:52;3445:9;3432:23;3478:18;3470:6;3467:30;3464:50;;;3510:1;3507;3500:12;3464:50;3533:22;;3586:4;3578:13;;3574:27;-1:-1:-1;3564:55:1;;3615:1;3612;3605:12;3564:55;3638:74;3704:7;3699:2;3686:16;3681:2;3677;3673:11;3638:74;:::i;:::-;3628:84;3267:451;-1:-1:-1;;;;3267:451:1:o;3723:186::-;3782:6;3835:2;3823:9;3814:7;3810:23;3806:32;3803:52;;;3851:1;3848;3841:12;3803:52;3874:29;3893:9;3874:29;:::i;3914:347::-;3979:6;3987;4040:2;4028:9;4019:7;4015:23;4011:32;4008:52;;;4056:1;4053;4046:12;4008:52;4079:29;4098:9;4079:29;:::i;:::-;4069:39;;4158:2;4147:9;4143:18;4130:32;4205:5;4198:13;4191:21;4184:5;4181:32;4171:60;;4227:1;4224;4217:12;4171:60;4250:5;4240:15;;;3914:347;;;;;:::o;4266:667::-;4361:6;4369;4377;4385;4438:3;4426:9;4417:7;4413:23;4409:33;4406:53;;;4455:1;4452;4445:12;4406:53;4478:29;4497:9;4478:29;:::i;:::-;4468:39;;4526:38;4560:2;4549:9;4545:18;4526:38;:::i;:::-;4516:48;;4611:2;4600:9;4596:18;4583:32;4573:42;;4666:2;4655:9;4651:18;4638:32;4693:18;4685:6;4682:30;4679:50;;;4725:1;4722;4715:12;4679:50;4748:22;;4801:4;4793:13;;4789:27;-1:-1:-1;4779:55:1;;4830:1;4827;4820:12;4779:55;4853:74;4919:7;4914:2;4901:16;4896:2;4892;4888:11;4853:74;:::i;:::-;4843:84;;;4266:667;;;;;;;:::o;4938:260::-;5006:6;5014;5067:2;5055:9;5046:7;5042:23;5038:32;5035:52;;;5083:1;5080;5073:12;5035:52;5106:29;5125:9;5106:29;:::i;:::-;5096:39;;5154:38;5188:2;5177:9;5173:18;5154:38;:::i;:::-;5144:48;;4938:260;;;;;:::o;5203:326::-;5405:2;5387:21;;;5444:1;5424:18;;;5417:29;-1:-1:-1;;;5477:2:1;5462:18;;5455:33;5520:2;5505:18;;5203:326::o;5534:380::-;5613:1;5609:12;;;;5656;;;5677:61;;5731:4;5723:6;5719:17;5709:27;;5677:61;5784:2;5776:6;5773:14;5753:18;5750:38;5747:161;;5830:10;5825:3;5821:20;5818:1;5811:31;5865:4;5862:1;5855:15;5893:4;5890:1;5883:15;5747:161;;5534:380;;;:::o;6045:545::-;6147:2;6142:3;6139:11;6136:448;;;6183:1;6208:5;6204:2;6197:17;6253:4;6249:2;6239:19;6323:2;6311:10;6307:19;6304:1;6300:27;6294:4;6290:38;6359:4;6347:10;6344:20;6341:47;;;-1:-1:-1;6382:4:1;6341:47;6437:2;6432:3;6428:12;6425:1;6421:20;6415:4;6411:31;6401:41;;6492:82;6510:2;6503:5;6500:13;6492:82;;;6555:17;;;6536:1;6525:13;6492:82;;6766:1352;6892:3;6886:10;6919:18;6911:6;6908:30;6905:56;;;6941:18;;:::i;:::-;6970:97;7060:6;7020:38;7052:4;7046:11;7020:38;:::i;:::-;7014:4;6970:97;:::i;:::-;7122:4;;7186:2;7175:14;;7203:1;7198:663;;;;7905:1;7922:6;7919:89;;;-1:-1:-1;7974:19:1;;;7968:26;7919:89;-1:-1:-1;;6723:1:1;6719:11;;;6715:24;6711:29;6701:40;6747:1;6743:11;;;6698:57;8021:81;;7168:944;;7198:663;5992:1;5985:14;;;6029:4;6016:18;;-1:-1:-1;;7234:20:1;;;7352:236;7366:7;7363:1;7360:14;7352:236;;;7455:19;;;7449:26;7434:42;;7547:27;;;;7515:1;7503:14;;;;7382:19;;7352:236;;;7356:3;7616:6;7607:7;7604:19;7601:201;;;7677:19;;;7671:26;-1:-1:-1;;7760:1:1;7756:14;;;7772:3;7752:24;7748:37;7744:42;7729:58;7714:74;;7601:201;-1:-1:-1;;;;;7848:1:1;7832:14;;;7828:22;7815:36;;-1:-1:-1;6766:1352:1:o;8123:127::-;8184:10;8179:3;8175:20;8172:1;8165:31;8215:4;8212:1;8205:15;8239:4;8236:1;8229:15;8255:128;8322:9;;;8343:11;;;8340:37;;;8357:18;;:::i;8388:125::-;8453:9;;;8474:10;;;8471:36;;;8487:18;;:::i;9189:168::-;9229:7;9295:1;9291;9287:6;9283:14;9280:1;9277:21;9272:1;9265:9;9258:17;9254:45;9251:71;;;9302:18;;:::i;:::-;-1:-1:-1;9342:9:1;;9189:168::o;9695:935::-;-1:-1:-1;;;10202:3:1;10195:22;10177:3;10246:6;10240:13;10262:74;10329:6;10325:1;10320:3;10316:11;10309:4;10301:6;10297:17;10262:74;:::i;:::-;-1:-1:-1;;;10395:1:1;10355:16;;;10387:10;;;10380:23;10428:13;;10450:75;10428:13;10512:1;10504:10;;10497:4;10485:17;;10450:75;:::i;:::-;-1:-1:-1;;;10585:1:1;10544:17;;;;10577:10;;;10570:27;10621:2;10613:11;;9695:935;-1:-1:-1;;;;9695:935:1:o;10635:1030::-;-1:-1:-1;;;10889:3:1;10882:22;10864:3;10923:1;10944;10977:6;10971:13;11007:36;11033:9;11007:36;:::i;:::-;11062:1;11079:18;;;11106:151;;;;11271:1;11266:374;;;;11072:568;;11106:151;-1:-1:-1;;11148:24:1;;11134:12;;;11127:46;11225:14;;11218:22;11206:35;;11197:45;;11193:54;;;-1:-1:-1;11106:151:1;;11266:374;11297:6;11294:1;11287:17;11327:4;11372:2;11369:1;11359:16;11397:1;11411:174;11425:6;11422:1;11419:13;11411:174;;;11512:14;;11494:11;;;11490:20;;11483:44;11555:16;;;;11440:10;;11411:174;;;11415:3;;;11627:2;11618:6;11613:3;11609:16;11605:25;11598:32;;11072:568;-1:-1:-1;11656:3:1;;10635:1030;-1:-1:-1;;;;;;;10635:1030:1:o

Swarm Source

ipfs://e6acb15316858565219a8edea72ad60fa14baa43bcf290e553c698385acd8a5f

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.