ETH Price: $3,465.23 (-0.10%)
Gas: 10 Gwei

Token

Planet of Cyborgs (PoC)
 

Overview

Max Total Supply

3,022 PoC

Holders

466

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PoC
0x9c031cca3f47f8de11abb4268cc2cd94a5148046
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Planet of Cyborgs is a dystopia-inspired collection of 3022 junkyard cyborgs crafted from the remnants of human civilization on a desolate earth. Composed of a mixture of 3D and clipart traits, PoC gives a feeling of cyber-punk while employing a completely innovative plot.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PlanetOfCyborgs

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 3000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-31
*/

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    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;
    }

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

    /**
     * @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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

        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);
        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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // 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);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // 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();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        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 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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        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 {
            // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                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, 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 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: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/Poc.sol

//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity 0.8.12;



contract PlanetOfCyborgs is ERC721A, Ownable {

	uint public constant MAX_TOKENS = 3022;
	
	uint public CURR_MINT_COST_NORMAL = 0 ether;
	uint public CURR_MINT_COST_WHITELIST = 0 ether;
	
	//---- Round based supplies
	string private CURR_ROUND_NAME = "Presale";
	uint private CURR_ROUND_SUPPLY = 660;
	uint private CURR_ROUND_TIME = 1654287060000;
	
    uint private maxMintAmountNormal = 3;
	uint private maxMintAmountWhitelist = 2;


	uint private nftPerAddressLimitNormal = 3;
	uint private nftPerAddressLimitWhitelist = 5;


	bytes32 private verificationHash = 0x0e88b8702d8f875b115e215c5a4f84dc399e172e765e13b2197598cc84b0c1f6;
	
	bool public hasSaleStarted = false;
	bool public onlyWhitelisted = false;
	
	string public baseURI;
	
	constructor() ERC721A("Planet of Cyborgs", "PoC") {
		setBaseURI("http://api.planetofcyborgs.com/cyborg/");
	}


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

	function _startTokenId() internal view virtual override returns (uint256) {
		return 1;
	}

	function mintNFT(uint _mintAmount, bytes32[] memory proof) external payable {
		require(hasSaleStarted == true, "Sale hasn't started");
		require(_mintAmount > 0, "Need to mint at least 1 NFT");
		require(_mintAmount <= CURR_ROUND_SUPPLY, "We're at max supply!");

        if(proof.length > 0)
        {
   			bytes32 user = keccak256(abi.encodePacked(msg.sender));
			require(verify(user,proof), "User is not whitelisted");

            require(msg.value >= CURR_MINT_COST_WHITELIST * _mintAmount, "Insufficient funds");
            require(_mintAmount <= maxMintAmountWhitelist, "Max mint amount per transaction exceeded");
            require((_mintAmount  + balanceOf(msg.sender)) <= nftPerAddressLimitWhitelist, "Max NFT per address exceeded");
        }
        else{
            require(msg.value >= CURR_MINT_COST_NORMAL * _mintAmount, "Insufficient funds");
            require(_mintAmount <= maxMintAmountNormal, "Max mint amount per transaction exceeded");
            require((_mintAmount  + balanceOf(msg.sender)) <= nftPerAddressLimitNormal, "Max NFT per address exceeded");
        }

		CURR_ROUND_SUPPLY -= _mintAmount;
		_safeMint(msg.sender, _mintAmount);
		
	}

	
	function getInformations() external view returns (string memory, uint, uint, uint, uint,uint,uint,uint,uint,uint, bool)
	{
		return (CURR_ROUND_NAME,CURR_ROUND_SUPPLY,CURR_ROUND_TIME,CURR_MINT_COST_NORMAL, CURR_MINT_COST_WHITELIST, maxMintAmountNormal, maxMintAmountWhitelist, nftPerAddressLimitNormal, nftPerAddressLimitWhitelist, totalSupply(), hasSaleStarted);
	}

	function verify(bytes32 user, bytes32[] memory proof) internal view returns (bool)
	{
		bytes32 computedHash = user;

		for (uint256 i = 0; i < proof.length; i++) {
			bytes32 proofElement = proof[i];

			if (computedHash <= proofElement) {
				computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
			} else {
				computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
			}
		}
		return computedHash == verificationHash;
	}
	
	//only owner functions
	
	function setNewRound(uint _supply, uint costNormal, uint costWhitelist, string memory roundName, uint perTransactionLimitNormal, uint perTransactionLimitWhitelist, uint perAddressLimitNormal, uint perAddressLimitWhitelist, uint theTime, bool saleState) external onlyOwner {
		require(_supply <= (MAX_TOKENS - totalSupply()), "Exceeded supply");
		CURR_ROUND_SUPPLY = _supply;
		CURR_MINT_COST_NORMAL = costNormal;
		CURR_MINT_COST_WHITELIST = costWhitelist;
		CURR_ROUND_NAME = roundName;
		maxMintAmountNormal = perTransactionLimitNormal;
		maxMintAmountWhitelist = perTransactionLimitWhitelist;
		nftPerAddressLimitNormal = perAddressLimitNormal;
		nftPerAddressLimitWhitelist = perAddressLimitWhitelist;
		CURR_ROUND_TIME = theTime;
		hasSaleStarted = saleState;
	}

	
	function setVerificationHash(bytes32 hash) external onlyOwner
	{
		verificationHash = hash;
	}	
	
	function setBaseURI(string memory _newBaseURI) public onlyOwner {
		baseURI = _newBaseURI;
	}

	function Giveaways(uint numTokens, address recipient) public onlyOwner {
        require(numTokens <= CURR_ROUND_SUPPLY, "We're at max supply!");
        CURR_ROUND_SUPPLY -= numTokens;
		_safeMint(recipient, numTokens);
	}

	function withdraw(uint amount) public onlyOwner {
		require(payable(msg.sender).send(amount));
	}
	
	function setSaleStarted(bool _state) public onlyOwner {
		hasSaleStarted = _state;
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"inputs":[],"name":"CURR_MINT_COST_NORMAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CURR_MINT_COST_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"Giveaways","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_TOKENS","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"getInformations","outputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"costNormal","type":"uint256"},{"internalType":"uint256","name":"costWhitelist","type":"uint256"},{"internalType":"string","name":"roundName","type":"string"},{"internalType":"uint256","name":"perTransactionLimitNormal","type":"uint256"},{"internalType":"uint256","name":"perTransactionLimitWhitelist","type":"uint256"},{"internalType":"uint256","name":"perAddressLimitNormal","type":"uint256"},{"internalType":"uint256","name":"perAddressLimitWhitelist","type":"uint256"},{"internalType":"uint256","name":"theTime","type":"uint256"},{"internalType":"bool","name":"saleState","type":"bool"}],"name":"setNewRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"setVerificationHash","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":[],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60006009819055600a5560c0604052600760808190526650726573616c6560c81b60a09081526200003491600b919062000207565b50610294600c556501812b314c20600d556003600e8190556002600f5560105560056011557f0e88b8702d8f875b115e215c5a4f84dc399e172e765e13b2197598cc84b0c1f66012556013805461ffff191690553480156200009557600080fd5b506040805180820182526011815270506c616e6574206f66204379626f72677360781b602080830191825283518085019094526003845262506f4360e81b908401528151919291620000ea9160029162000207565b5080516200010090600390602084019062000207565b505060016000555062000113336200013d565b62000137604051806060016040528060268152602001620027cd602691396200018f565b620002ea565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001ee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200020390601490602084019062000207565b5050565b8280546200021590620002ad565b90600052602060002090601f01602090048101928262000239576000855562000284565b82601f106200025457805160ff191683800117855562000284565b8280016001018555821562000284579182015b828111156200028457825182559160200191906001019062000267565b506200029292915062000296565b5090565b5b8082111562000292576000815560010162000297565b600181811c90821680620002c257607f821691505b60208210811415620002e457634e487b7160e01b600052602260045260246000fd5b50919050565b6124d380620002fa6000396000f3fe6080604052600436106101d85760003560e01c80636f733b3c11610102578063a854ffba11610095578063d62fd29611610064578063d62fd29614610543578063e985e9c514610556578063f2fde38b1461059f578063f47c84c5146105bf57600080fd5b8063a854ffba146104c3578063b88d4fde146104e3578063c87b56dd14610503578063cc0b8d151461052357600080fd5b80638da5cb5b116100d15780638da5cb5b1461045157806395d89b411461046f5780639c70b51214610484578063a22cb465146104a357600080fd5b80636f733b3c146103e657806370a08231146103fc578063715018a61461041c57806373beda801461043157600080fd5b806323b872dd1161017a57806355f804b31161014957806355f804b3146103715780636352211e1461039157806366e7ca18146103b15780636c0360eb146103d157600080fd5b806323b872dd146102e55780632e1a7d4d146103055780633c5e310b1461032557806342842e0e1461035157600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e5780631c8b232d146102b557806320f1b588146102cf57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611e38565b6105d5565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276106ba565b6040516102099190611ead565b34801561024057600080fd5b5061025461024f366004611ec0565b61074c565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611ef5565b6107a9565b005b34801561029a57600080fd5b5060015460005403600019015b604051908152602001610209565b3480156102c157600080fd5b506013546101fd9060ff1681565b3480156102db57600080fd5b506102a7600a5481565b3480156102f157600080fd5b5061028c610300366004611f1f565b6108c6565b34801561031157600080fd5b5061028c610320366004611ec0565b6108d6565b34801561033157600080fd5b5061033a61095d565b6040516102099b9a99989796959493929190611f5b565b34801561035d57600080fd5b5061028c61036c366004611f1f565b610a54565b34801561037d57600080fd5b5061028c61038c36600461207f565b610a6f565b34801561039d57600080fd5b506102546103ac366004611ec0565b610ae0565b3480156103bd57600080fd5b5061028c6103cc366004611ec0565b610aeb565b3480156103dd57600080fd5b50610227610b4a565b3480156103f257600080fd5b506102a760095481565b34801561040857600080fd5b506102a76104173660046120b4565b610bd8565b34801561042857600080fd5b5061028c610c40565b34801561043d57600080fd5b5061028c61044c3660046120df565b610ca6565b34801561045d57600080fd5b506008546001600160a01b0316610254565b34801561047b57600080fd5b50610227610db8565b34801561049057600080fd5b506013546101fd90610100900460ff1681565b3480156104af57600080fd5b5061028c6104be36600461217c565b610dc7565b3480156104cf57600080fd5b5061028c6104de3660046121af565b610e76565b3480156104ef57600080fd5b5061028c6104fe3660046121ca565b610ee3565b34801561050f57600080fd5b5061022761051e366004611ec0565b610f46565b34801561052f57600080fd5b5061028c61053e366004612246565b610fe4565b61028c610551366004612269565b6110b2565b34801561056257600080fd5b506101fd61057136600461231b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105ab57600080fd5b5061028c6105ba3660046120b4565b6114ee565b3480156105cb57600080fd5b506102a7610bce81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061066857507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806106b457507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546106c990612345565b80601f01602080910402602001604051908101604052809291908181526020018280546106f590612345565b80156107425780601f1061071757610100808354040283529160200191610742565b820191906000526020600020905b81548152906001019060200180831161072557829003601f168201915b5050505050905090565b6000610757826115cd565b61078d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107b48261161b565b9050806001600160a01b0316836001600160a01b03161415610802576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146108525761081c8133610571565b610852576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108d18383836116b6565b505050565b6008546001600160a01b031633146109355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b604051339082156108fc029083906000818181858888f1935050505061095a57600080fd5b50565b6060600080600080600080600080600080600b600c54600d54600954600a54600e54600f5460105460115461099b6001546000546000199190030190565b6013548a5460ff909116908b906109b190612345565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd90612345565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b50505050509a509a509a509a509a509a509a509a509a509a509a509a50909192939495969798999a565b6108d183838360405180602001604052806000815250610ee3565b6008546001600160a01b03163314610ac95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b8051610adc906014906020840190611d71565b5050565b60006106b48261161b565b6008546001600160a01b03163314610b455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b601255565b60148054610b5790612345565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8390612345565b8015610bd05780601f10610ba557610100808354040283529160200191610bd0565b820191906000526020600020905b815481529060010190602001808311610bb357829003601f168201915b505050505081565b60006001600160a01b038216610c1a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c9a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b610ca460006118d6565b565b6008546001600160a01b03163314610d005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b6001546000540360001901610d1790610bce612396565b8a1115610d665760405162461bcd60e51b815260206004820152600f60248201527f457863656564656420737570706c790000000000000000000000000000000000604482015260640161092c565b600c8a90556009899055600a8890558651610d8890600b9060208a0190611d71565b50600e95909555600f93909355601091909155601155600d556013805460ff191691151591909117905550505050565b6060600380546106c990612345565b6001600160a01b038216331415610e0a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610ed05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b6013805460ff1916911515919091179055565b610eee8484846116b6565b6001600160a01b0383163b15610f4057610f0a84848484611940565b610f40576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610f51826115cd565b610f87576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f91611a8c565b9050805160001415610fb25760405180602001604052806000815250610fdd565b80610fbc84611a9b565b604051602001610fcd9291906123ad565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461103e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b600c548211156110905760405162461bcd60e51b815260206004820152601460248201527f5765277265206174206d617820737570706c7921000000000000000000000000604482015260640161092c565b81600c60008282546110a29190612396565b90915550610adc90508183611aea565b60135460ff1615156001146111095760405162461bcd60e51b815260206004820152601360248201527f53616c65206861736e2774207374617274656400000000000000000000000000604482015260640161092c565b600082116111595760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161092c565b600c548211156111ab5760405162461bcd60e51b815260206004820152601460248201527f5765277265206174206d617820737570706c7921000000000000000000000000604482015260640161092c565b805115611393576040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201526000906034016040516020818303038152906040528051906020012090506112088183611b04565b6112545760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161092c565b82600a5461126291906123dc565b3410156112b15760405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e742066756e64730000000000000000000000000000604482015260640161092c565b600f548311156113295760405162461bcd60e51b815260206004820152602860248201527f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060448201527f6578636565646564000000000000000000000000000000000000000000000000606482015260840161092c565b60115461133533610bd8565b61133f90856123fb565b111561138d5760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161092c565b506114cc565b816009546113a191906123dc565b3410156113f05760405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e742066756e64730000000000000000000000000000604482015260640161092c565b600e548211156114685760405162461bcd60e51b815260206004820152602860248201527f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060448201527f6578636565646564000000000000000000000000000000000000000000000000606482015260840161092c565b60105461147433610bd8565b61147e90846123fb565b11156114cc5760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161092c565b81600c60008282546114de9190612396565b90915550610adc90503383611aea565b6008546001600160a01b031633146115485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b6001600160a01b0381166115c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161092c565b61095a816118d6565b6000816001111580156115e1575060005482105b80156106b45750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6000818060011161168457600054811015611684576000818152600460205260409020547c01000000000000000000000000000000000000000000000000000000008116611682575b80610fdd575060001901600081815260046020526040902054611664565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116c18261161b565b9050836001600160a01b0316816001600160a01b03161461170e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061172c575061172c8533610571565b8061174757503361173c8461074c565b6001600160a01b0316145b905080611780576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166117c0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083815260066020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915290207c02000000000000000000000000000000000000000000000000000000004260a01b86178117909155821661188e576001830160008181526004602052604090205461188c57600054811461188c5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a029061198e903390899088908890600401612413565b6020604051808303816000875af19250505080156119c9575060408051601f3d908101601f191682019092526119c69181019061244f565b60015b611a3d573d8080156119f7576040519150601f19603f3d011682016040523d82523d6000602084013e6119fc565b606091505b508051611a35576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060601480546106c990612345565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611ad857600183039250600a81066030018353600a9004611aba565b50819003601f19909101908152919050565b610adc828260405180602001604052806000815250611bb4565b600082815b8351811015611ba8576000848281518110611b2657611b2661246c565b60200260200101519050808311611b68576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611b95565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611ba081612482565b915050611b09565b50601254149392505050565b6000546001600160a01b038416611bf7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82611c2e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611d1c575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ccc6000878480600101955087611940565b611d02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611c81578260005414611d1757600080fd5b611d61565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d1d575b506000908155610f409085838684565b828054611d7d90612345565b90600052602060002090601f016020900481019282611d9f5760008555611de5565b82601f10611db857805160ff1916838001178555611de5565b82800160010185558215611de5579182015b82811115611de5578251825591602001919060010190611dca565b50611df1929150611df5565b5090565b5b80821115611df15760008155600101611df6565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461095a57600080fd5b600060208284031215611e4a57600080fd5b8135610fdd81611e0a565b60005b83811015611e70578181015183820152602001611e58565b83811115610f405750506000910152565b60008151808452611e99816020860160208601611e55565b601f01601f19169290920160200192915050565b602081526000610fdd6020830184611e81565b600060208284031215611ed257600080fd5b5035919050565b80356001600160a01b0381168114611ef057600080fd5b919050565b60008060408385031215611f0857600080fd5b611f1183611ed9565b946020939093013593505050565b600080600060608486031215611f3457600080fd5b611f3d84611ed9565b9250611f4b60208501611ed9565b9150604084013590509250925092565b6000610160808352611f6f8184018f611e81565b602084019d909d52505060408101999099526060890197909752608088019590955260a087019390935260c086019190915260e0850152610100840152610120830152151561014090910152919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611fff57611fff611fc0565b604052919050565b600067ffffffffffffffff83111561202157612021611fc0565b6120346020601f19601f86011601611fd6565b905082815283838301111561204857600080fd5b828260208301376000602084830101529392505050565b600082601f83011261207057600080fd5b610fdd83833560208501612007565b60006020828403121561209157600080fd5b813567ffffffffffffffff8111156120a857600080fd5b611a848482850161205f565b6000602082840312156120c657600080fd5b610fdd82611ed9565b80358015158114611ef057600080fd5b6000806000806000806000806000806101408b8d0312156120ff57600080fd5b8a35995060208b0135985060408b0135975060608b013567ffffffffffffffff81111561212b57600080fd5b6121378d828e0161205f565b97505060808b0135955060a08b0135945060c08b0135935060e08b013592506101008b0135915061216b6101208c016120cf565b90509295989b9194979a5092959850565b6000806040838503121561218f57600080fd5b61219883611ed9565b91506121a6602084016120cf565b90509250929050565b6000602082840312156121c157600080fd5b610fdd826120cf565b600080600080608085870312156121e057600080fd5b6121e985611ed9565b93506121f760208601611ed9565b925060408501359150606085013567ffffffffffffffff81111561221a57600080fd5b8501601f8101871361222b57600080fd5b61223a87823560208401612007565b91505092959194509250565b6000806040838503121561225957600080fd5b823591506121a660208401611ed9565b6000806040838503121561227c57600080fd5b8235915060208084013567ffffffffffffffff8082111561229c57600080fd5b818601915086601f8301126122b057600080fd5b8135818111156122c2576122c2611fc0565b8060051b91506122d3848301611fd6565b81815291830184019184810190898411156122ed57600080fd5b938501935b8385101561230b578435825293850193908501906122f2565b8096505050505050509250929050565b6000806040838503121561232e57600080fd5b61233783611ed9565b91506121a660208401611ed9565b600181811c9082168061235957607f821691505b6020821081141561237a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156123a8576123a8612380565b500390565b600083516123bf818460208801611e55565b8351908301906123d3818360208801611e55565b01949350505050565b60008160001904831182151516156123f6576123f6612380565b500290565b6000821982111561240e5761240e612380565b500190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526124456080830184611e81565b9695505050505050565b60006020828403121561246157600080fd5b8151610fdd81611e0a565b634e487b7160e01b600052603260045260246000fd5b600060001982141561249657612496612380565b506001019056fea264697066735822122053f38c4aadc7fc974e5f9bc6536511abdd19880e82c3f3daccb454793cb53ee064736f6c634300080c0033687474703a2f2f6170692e706c616e65746f666379626f7267732e636f6d2f6379626f72672f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636f733b3c11610102578063a854ffba11610095578063d62fd29611610064578063d62fd29614610543578063e985e9c514610556578063f2fde38b1461059f578063f47c84c5146105bf57600080fd5b8063a854ffba146104c3578063b88d4fde146104e3578063c87b56dd14610503578063cc0b8d151461052357600080fd5b80638da5cb5b116100d15780638da5cb5b1461045157806395d89b411461046f5780639c70b51214610484578063a22cb465146104a357600080fd5b80636f733b3c146103e657806370a08231146103fc578063715018a61461041c57806373beda801461043157600080fd5b806323b872dd1161017a57806355f804b31161014957806355f804b3146103715780636352211e1461039157806366e7ca18146103b15780636c0360eb146103d157600080fd5b806323b872dd146102e55780632e1a7d4d146103055780633c5e310b1461032557806342842e0e1461035157600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e5780631c8b232d146102b557806320f1b588146102cf57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611e38565b6105d5565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276106ba565b6040516102099190611ead565b34801561024057600080fd5b5061025461024f366004611ec0565b61074c565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611ef5565b6107a9565b005b34801561029a57600080fd5b5060015460005403600019015b604051908152602001610209565b3480156102c157600080fd5b506013546101fd9060ff1681565b3480156102db57600080fd5b506102a7600a5481565b3480156102f157600080fd5b5061028c610300366004611f1f565b6108c6565b34801561031157600080fd5b5061028c610320366004611ec0565b6108d6565b34801561033157600080fd5b5061033a61095d565b6040516102099b9a99989796959493929190611f5b565b34801561035d57600080fd5b5061028c61036c366004611f1f565b610a54565b34801561037d57600080fd5b5061028c61038c36600461207f565b610a6f565b34801561039d57600080fd5b506102546103ac366004611ec0565b610ae0565b3480156103bd57600080fd5b5061028c6103cc366004611ec0565b610aeb565b3480156103dd57600080fd5b50610227610b4a565b3480156103f257600080fd5b506102a760095481565b34801561040857600080fd5b506102a76104173660046120b4565b610bd8565b34801561042857600080fd5b5061028c610c40565b34801561043d57600080fd5b5061028c61044c3660046120df565b610ca6565b34801561045d57600080fd5b506008546001600160a01b0316610254565b34801561047b57600080fd5b50610227610db8565b34801561049057600080fd5b506013546101fd90610100900460ff1681565b3480156104af57600080fd5b5061028c6104be36600461217c565b610dc7565b3480156104cf57600080fd5b5061028c6104de3660046121af565b610e76565b3480156104ef57600080fd5b5061028c6104fe3660046121ca565b610ee3565b34801561050f57600080fd5b5061022761051e366004611ec0565b610f46565b34801561052f57600080fd5b5061028c61053e366004612246565b610fe4565b61028c610551366004612269565b6110b2565b34801561056257600080fd5b506101fd61057136600461231b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105ab57600080fd5b5061028c6105ba3660046120b4565b6114ee565b3480156105cb57600080fd5b506102a7610bce81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061066857507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806106b457507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546106c990612345565b80601f01602080910402602001604051908101604052809291908181526020018280546106f590612345565b80156107425780601f1061071757610100808354040283529160200191610742565b820191906000526020600020905b81548152906001019060200180831161072557829003601f168201915b5050505050905090565b6000610757826115cd565b61078d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107b48261161b565b9050806001600160a01b0316836001600160a01b03161415610802576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146108525761081c8133610571565b610852576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108d18383836116b6565b505050565b6008546001600160a01b031633146109355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b604051339082156108fc029083906000818181858888f1935050505061095a57600080fd5b50565b6060600080600080600080600080600080600b600c54600d54600954600a54600e54600f5460105460115461099b6001546000546000199190030190565b6013548a5460ff909116908b906109b190612345565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd90612345565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b50505050509a509a509a509a509a509a509a509a509a509a509a509a50909192939495969798999a565b6108d183838360405180602001604052806000815250610ee3565b6008546001600160a01b03163314610ac95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b8051610adc906014906020840190611d71565b5050565b60006106b48261161b565b6008546001600160a01b03163314610b455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b601255565b60148054610b5790612345565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8390612345565b8015610bd05780601f10610ba557610100808354040283529160200191610bd0565b820191906000526020600020905b815481529060010190602001808311610bb357829003601f168201915b505050505081565b60006001600160a01b038216610c1a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c9a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b610ca460006118d6565b565b6008546001600160a01b03163314610d005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b6001546000540360001901610d1790610bce612396565b8a1115610d665760405162461bcd60e51b815260206004820152600f60248201527f457863656564656420737570706c790000000000000000000000000000000000604482015260640161092c565b600c8a90556009899055600a8890558651610d8890600b9060208a0190611d71565b50600e95909555600f93909355601091909155601155600d556013805460ff191691151591909117905550505050565b6060600380546106c990612345565b6001600160a01b038216331415610e0a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610ed05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b6013805460ff1916911515919091179055565b610eee8484846116b6565b6001600160a01b0383163b15610f4057610f0a84848484611940565b610f40576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610f51826115cd565b610f87576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f91611a8c565b9050805160001415610fb25760405180602001604052806000815250610fdd565b80610fbc84611a9b565b604051602001610fcd9291906123ad565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461103e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b600c548211156110905760405162461bcd60e51b815260206004820152601460248201527f5765277265206174206d617820737570706c7921000000000000000000000000604482015260640161092c565b81600c60008282546110a29190612396565b90915550610adc90508183611aea565b60135460ff1615156001146111095760405162461bcd60e51b815260206004820152601360248201527f53616c65206861736e2774207374617274656400000000000000000000000000604482015260640161092c565b600082116111595760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161092c565b600c548211156111ab5760405162461bcd60e51b815260206004820152601460248201527f5765277265206174206d617820737570706c7921000000000000000000000000604482015260640161092c565b805115611393576040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201526000906034016040516020818303038152906040528051906020012090506112088183611b04565b6112545760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161092c565b82600a5461126291906123dc565b3410156112b15760405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e742066756e64730000000000000000000000000000604482015260640161092c565b600f548311156113295760405162461bcd60e51b815260206004820152602860248201527f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060448201527f6578636565646564000000000000000000000000000000000000000000000000606482015260840161092c565b60115461133533610bd8565b61133f90856123fb565b111561138d5760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161092c565b506114cc565b816009546113a191906123dc565b3410156113f05760405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e742066756e64730000000000000000000000000000604482015260640161092c565b600e548211156114685760405162461bcd60e51b815260206004820152602860248201527f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060448201527f6578636565646564000000000000000000000000000000000000000000000000606482015260840161092c565b60105461147433610bd8565b61147e90846123fb565b11156114cc5760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161092c565b81600c60008282546114de9190612396565b90915550610adc90503383611aea565b6008546001600160a01b031633146115485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b6001600160a01b0381166115c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161092c565b61095a816118d6565b6000816001111580156115e1575060005482105b80156106b45750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6000818060011161168457600054811015611684576000818152600460205260409020547c01000000000000000000000000000000000000000000000000000000008116611682575b80610fdd575060001901600081815260046020526040902054611664565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116c18261161b565b9050836001600160a01b0316816001600160a01b03161461170e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061172c575061172c8533610571565b8061174757503361173c8461074c565b6001600160a01b0316145b905080611780576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166117c0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083815260066020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915290207c02000000000000000000000000000000000000000000000000000000004260a01b86178117909155821661188e576001830160008181526004602052604090205461188c57600054811461188c5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a029061198e903390899088908890600401612413565b6020604051808303816000875af19250505080156119c9575060408051601f3d908101601f191682019092526119c69181019061244f565b60015b611a3d573d8080156119f7576040519150601f19603f3d011682016040523d82523d6000602084013e6119fc565b606091505b508051611a35576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060601480546106c990612345565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611ad857600183039250600a81066030018353600a9004611aba565b50819003601f19909101908152919050565b610adc828260405180602001604052806000815250611bb4565b600082815b8351811015611ba8576000848281518110611b2657611b2661246c565b60200260200101519050808311611b68576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611b95565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611ba081612482565b915050611b09565b50601254149392505050565b6000546001600160a01b038416611bf7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82611c2e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611d1c575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ccc6000878480600101955087611940565b611d02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611c81578260005414611d1757600080fd5b611d61565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d1d575b506000908155610f409085838684565b828054611d7d90612345565b90600052602060002090601f016020900481019282611d9f5760008555611de5565b82601f10611db857805160ff1916838001178555611de5565b82800160010185558215611de5579182015b82811115611de5578251825591602001919060010190611dca565b50611df1929150611df5565b5090565b5b80821115611df15760008155600101611df6565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461095a57600080fd5b600060208284031215611e4a57600080fd5b8135610fdd81611e0a565b60005b83811015611e70578181015183820152602001611e58565b83811115610f405750506000910152565b60008151808452611e99816020860160208601611e55565b601f01601f19169290920160200192915050565b602081526000610fdd6020830184611e81565b600060208284031215611ed257600080fd5b5035919050565b80356001600160a01b0381168114611ef057600080fd5b919050565b60008060408385031215611f0857600080fd5b611f1183611ed9565b946020939093013593505050565b600080600060608486031215611f3457600080fd5b611f3d84611ed9565b9250611f4b60208501611ed9565b9150604084013590509250925092565b6000610160808352611f6f8184018f611e81565b602084019d909d52505060408101999099526060890197909752608088019590955260a087019390935260c086019190915260e0850152610100840152610120830152151561014090910152919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611fff57611fff611fc0565b604052919050565b600067ffffffffffffffff83111561202157612021611fc0565b6120346020601f19601f86011601611fd6565b905082815283838301111561204857600080fd5b828260208301376000602084830101529392505050565b600082601f83011261207057600080fd5b610fdd83833560208501612007565b60006020828403121561209157600080fd5b813567ffffffffffffffff8111156120a857600080fd5b611a848482850161205f565b6000602082840312156120c657600080fd5b610fdd82611ed9565b80358015158114611ef057600080fd5b6000806000806000806000806000806101408b8d0312156120ff57600080fd5b8a35995060208b0135985060408b0135975060608b013567ffffffffffffffff81111561212b57600080fd5b6121378d828e0161205f565b97505060808b0135955060a08b0135945060c08b0135935060e08b013592506101008b0135915061216b6101208c016120cf565b90509295989b9194979a5092959850565b6000806040838503121561218f57600080fd5b61219883611ed9565b91506121a6602084016120cf565b90509250929050565b6000602082840312156121c157600080fd5b610fdd826120cf565b600080600080608085870312156121e057600080fd5b6121e985611ed9565b93506121f760208601611ed9565b925060408501359150606085013567ffffffffffffffff81111561221a57600080fd5b8501601f8101871361222b57600080fd5b61223a87823560208401612007565b91505092959194509250565b6000806040838503121561225957600080fd5b823591506121a660208401611ed9565b6000806040838503121561227c57600080fd5b8235915060208084013567ffffffffffffffff8082111561229c57600080fd5b818601915086601f8301126122b057600080fd5b8135818111156122c2576122c2611fc0565b8060051b91506122d3848301611fd6565b81815291830184019184810190898411156122ed57600080fd5b938501935b8385101561230b578435825293850193908501906122f2565b8096505050505050509250929050565b6000806040838503121561232e57600080fd5b61233783611ed9565b91506121a660208401611ed9565b600181811c9082168061235957607f821691505b6020821081141561237a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156123a8576123a8612380565b500390565b600083516123bf818460208801611e55565b8351908301906123d3818360208801611e55565b01949350505050565b60008160001904831182151516156123f6576123f6612380565b500290565b6000821982111561240e5761240e612380565b500190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526124456080830184611e81565b9695505050505050565b60006020828403121561246157600080fd5b8151610fdd81611e0a565b634e487b7160e01b600052603260045260246000fd5b600060001982141561249657612496612380565b506001019056fea264697066735822122053f38c4aadc7fc974e5f9bc6536511abdd19880e82c3f3daccb454793cb53ee064736f6c634300080c0033

Deployed Bytecode Sourcemap

41959:4596:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13073:615;;;;;;;;;;-1:-1:-1;13073:615:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;13073:615:0;;;;;;;;18086:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20154:204::-;;;;;;;;;;-1:-1:-1;20154:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1797:55:1;;;1779:74;;1767:2;1752:18;20154:204:0;1633:226:1;19614:474:0;;;;;;;;;;-1:-1:-1;19614:474:0;;;;;:::i;:::-;;:::i;:::-;;12127:315;;;;;;;;;;-1:-1:-1;43034:1:0;12393:12;12180:7;12377:13;:28;-1:-1:-1;;12377:46:0;12127:315;;;2470:25:1;;;2458:2;2443:18;12127:315:0;2324:177:1;42617:34:0;;;;;;;;;;-1:-1:-1;42617:34:0;;;;;;;;42102:46;;;;;;;;;;;;;;;;21040:170;;;;;;;;;;-1:-1:-1;21040:170:0;;;;;:::i;:::-;;:::i;46360:99::-;;;;;;;;;;-1:-1:-1;46360:99:0;;;;;:::i;:::-;;:::i;44255:369::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:::i;21281:185::-;;;;;;;;;;-1:-1:-1;21281:185:0;;;;;:::i;:::-;;:::i;46028:95::-;;;;;;;;;;-1:-1:-1;46028:95:0;;;;;:::i;:::-;;:::i;17875:144::-;;;;;;;;;;-1:-1:-1;17875:144:0;;;;;:::i;:::-;;:::i;45924:97::-;;;;;;;;;;-1:-1:-1;45924:97:0;;;;;:::i;:::-;;:::i;42697:21::-;;;;;;;;;;;;;:::i;42055:43::-;;;;;;;;;;;;;;;;13752:224;;;;;;;;;;-1:-1:-1;13752:224:0;;;;;:::i;:::-;;:::i;40953:103::-;;;;;;;;;;;;;:::i;45136:780::-;;;;;;;;;;-1:-1:-1;45136:780:0;;;;;:::i;:::-;;:::i;40302:87::-;;;;;;;;;;-1:-1:-1;40375:6:0;;-1:-1:-1;;;;;40375:6:0;40302:87;;18255:104;;;;;;;;;;;;;:::i;42655:35::-;;;;;;;;;;-1:-1:-1;42655:35:0;;;;;;;;;;;20430:308;;;;;;;;;;-1:-1:-1;20430:308:0;;;;;:::i;:::-;;:::i;46465:87::-;;;;;;;;;;-1:-1:-1;46465:87:0;;;;;:::i;:::-;;:::i;21537:396::-;;;;;;;;;;-1:-1:-1;21537:396:0;;;;;:::i;:::-;;:::i;18430:318::-;;;;;;;;;;-1:-1:-1;18430:318:0;;;;;:::i;:::-;;:::i;46128:227::-;;;;;;;;;;-1:-1:-1;46128:227:0;;;;;:::i;:::-;;:::i;43045:1202::-;;;;;;:::i;:::-;;:::i;20809:164::-;;;;;;;;;;-1:-1:-1;20809:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;20930:25:0;;;20906:4;20930:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20809:164;41211:201;;;;;;;;;;-1:-1:-1;41211:201:0;;;;;:::i;:::-;;:::i;42010:38::-;;;;;;;;;;;;42044:4;42010:38;;13073:615;13158:4;13458:25;;;;;;:102;;-1:-1:-1;13535:25:0;;;;;13458:102;:179;;;-1:-1:-1;13612:25:0;;;;;13458:179;13438:199;13073:615;-1:-1:-1;;13073:615:0:o;18086:100::-;18140:13;18173:5;18166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18086:100;:::o;20154:204::-;20222:7;20247:16;20255:7;20247;:16::i;:::-;20242:64;;20272:34;;;;;;;;;;;;;;20242:64;-1:-1:-1;20326:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20326:24:0;;20154:204::o;19614:474::-;19687:13;19719:27;19738:7;19719:18;:27::i;:::-;19687:61;;19769:5;-1:-1:-1;;;;;19763:11:0;:2;-1:-1:-1;;;;;19763:11:0;;19759:48;;;19783:24;;;;;;;;;;;;;;19759:48;36257:10;-1:-1:-1;;;;;19824:28:0;;;19820:175;;19872:44;19889:5;36257:10;20809:164;:::i;19872:44::-;19867:128;;19944:35;;;;;;;;;;;;;;19867:128;20007:24;;;;:15;:24;;;;;;:29;;;;-1:-1:-1;;;;;20007:29:0;;;;;;;;;20052:28;;20007:24;;20052:28;;;;;;;19676:412;19614:474;;:::o;21040:170::-;21174:28;21184:4;21190:2;21194:7;21174:9;:28::i;:::-;21040:170;;;:::o;46360:99::-;40375:6;;-1:-1:-1;;;;;40375:6:0;36257:10;40522:23;40514:68;;;;-1:-1:-1;;;40514:68:0;;10158:2:1;40514:68:0;;;10140:21:1;;;10177:18;;;10170:30;10236:34;10216:18;;;10209:62;10288:18;;40514:68:0;;;;;;;;;46421:32:::1;::::0;46429:10:::1;::::0;46421:32;::::1;;;::::0;46446:6;;46421:32:::1;::::0;;;46446:6;46429:10;46421:32;::::1;;;;;;46413:41;;;::::0;::::1;;46360:99:::0;:::o;44255:369::-;44305:13;44320:4;44326;44332;44338;44343;44348;44353;44358;44363;44369;44390:15;44406:17;;44424:15;;44440:21;;44463:24;;44489:19;;44510:22;;44534:24;;44560:27;;44589:13;43034:1;12393:12;12180:7;12377:13;-1:-1:-1;;12377:28:0;;;:46;;12127:315;44589:13;44604:14;;44382:237;;44604:14;;;;;44382:237;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44255:369;;;;;;;;;;;:::o;21281:185::-;21419:39;21436:4;21442:2;21446:7;21419:39;;;;;;;;;;;;:16;:39::i;46028:95::-;40375:6;;-1:-1:-1;;;;;40375:6:0;36257:10;40522:23;40514:68;;;;-1:-1:-1;;;40514:68:0;;10158:2:1;40514:68:0;;;10140:21:1;;;10177:18;;;10170:30;10236:34;10216:18;;;10209:62;10288:18;;40514:68:0;9956:356:1;40514:68:0;46097:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46028:95:::0;:::o;17875:144::-;17939:7;17982:27;18001:7;17982:18;:27::i;45924:97::-;40375:6;;-1:-1:-1;;;;;40375:6:0;36257:10;40522:23;40514:68;;;;-1:-1:-1;;;40514:68:0;;10158:2:1;40514:68:0;;;10140:21:1;;;10177:18;;;10170:30;10236:34;10216:18;;;10209:62;10288:18;;40514:68:0;9956:356:1;40514:68:0;45993:16:::1;:23:::0;45924:97::o;42697:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13752:224::-;13816:7;-1:-1:-1;;;;;13840:19:0;;13836:60;;13868:28;;;;;;;;;;;;;;13836:60;-1:-1:-1;;;;;;13914:25:0;;;;;:18;:25;;;;;;9091:13;13914:54;;13752:224::o;40953:103::-;40375:6;;-1:-1:-1;;;;;40375:6:0;36257:10;40522:23;40514:68;;;;-1:-1:-1;;;40514:68:0;;10158:2:1;40514:68:0;;;10140:21:1;;;10177:18;;;10170:30;10236:34;10216:18;;;10209:62;10288:18;;40514:68:0;9956:356:1;40514:68:0;41018:30:::1;41045:1;41018:18;:30::i;:::-;40953:103::o:0;45136:780::-;40375:6;;-1:-1:-1;;;;;40375:6:0;36257:10;40522:23;40514:68;;;;-1:-1:-1;;;40514:68:0;;10158:2:1;40514:68:0;;;10140:21:1;;;10177:18;;;10170:30;10236:34;10216:18;;;10209:62;10288:18;;40514:68:0;9956:356:1;40514:68:0;43034:1;12393:12;12180:7;12377:13;:28;-1:-1:-1;;12377:46:0;45433:26:::1;::::0;42044:4:::1;45433:26;:::i;:::-;45421:7;:39;;45413:67;;;::::0;-1:-1:-1;;;45413:67:0;;10838:2:1;45413:67:0::1;::::0;::::1;10820:21:1::0;10877:2;10857:18;;;10850:30;10916:17;10896:18;;;10889:45;10951:18;;45413:67:0::1;10636:339:1::0;45413:67:0::1;45485:17;:27:::0;;;45517:21:::1;:34:::0;;;45556:24:::1;:40:::0;;;45601:27;;::::1;::::0;:15:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;45633:19:0::1;:47:::0;;;;45685:22:::1;:53:::0;;;;45743:24:::1;:48:::0;;;;45796:27:::1;:54:::0;45855:15:::1;:25:::0;45885:14:::1;:26:::0;;-1:-1:-1;;45885:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;;;;45136:780:0:o;18255:104::-;18311:13;18344:7;18337:14;;;;;:::i;20430:308::-;-1:-1:-1;;;;;20529:31:0;;36257:10;20529:31;20525:61;;;20569:17;;;;;;;;;;;;;;20525:61;36257:10;20599:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20599:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20599:60:0;;;;;;;;;;20675:55;;586:41:1;;;20599:49:0;;36257:10;20675:55;;559:18:1;20675:55:0;;;;;;;20430:308;;:::o;46465:87::-;40375:6;;-1:-1:-1;;;;;40375:6:0;36257:10;40522:23;40514:68;;;;-1:-1:-1;;;40514:68:0;;10158:2:1;40514:68:0;;;10140:21:1;;;10177:18;;;10170:30;10236:34;10216:18;;;10209:62;10288:18;;40514:68:0;9956:356:1;40514:68:0;46524:14:::1;:23:::0;;-1:-1:-1;;46524:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46465:87::o;21537:396::-;21704:28;21714:4;21720:2;21724:7;21704:9;:28::i;:::-;-1:-1:-1;;;;;21747:14:0;;;:19;21743:183;;21786:56;21817:4;21823:2;21827:7;21836:5;21786:30;:56::i;:::-;21781:145;;21870:40;;;;;;;;;;;;;;21781:145;21537:396;;;;:::o;18430:318::-;18503:13;18534:16;18542:7;18534;:16::i;:::-;18529:59;;18559:29;;;;;;;;;;;;;;18529:59;18601:21;18625:10;:8;:10::i;:::-;18601:34;;18659:7;18653:21;18678:1;18653:26;;:87;;;;;;;;;;;;;;;;;18706:7;18715:18;18725:7;18715:9;:18::i;:::-;18689:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18653:87;18646:94;18430:318;-1:-1:-1;;;18430:318:0:o;46128:227::-;40375:6;;-1:-1:-1;;;;;40375:6:0;36257:10;40522:23;40514:68;;;;-1:-1:-1;;;40514:68:0;;10158:2:1;40514:68:0;;;10140:21:1;;;10177:18;;;10170:30;10236:34;10216:18;;;10209:62;10288:18;;40514:68:0;9956:356:1;40514:68:0;46231:17:::1;;46218:9;:30;;46210:63;;;::::0;-1:-1:-1;;;46210:63:0;;11657:2:1;46210:63:0::1;::::0;::::1;11639:21:1::0;11696:2;11676:18;;;11669:30;11735:22;11715:18;;;11708:50;11775:18;;46210:63:0::1;11455:344:1::0;46210:63:0::1;46305:9;46284:17;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;46319:31:0::1;::::0;-1:-1:-1;46329:9:0;46340;46319::::1;:31::i;43045:1202::-:0;43134:14;;;;:22;;:14;:22;43126:54;;;;-1:-1:-1;;;43126:54:0;;12006:2:1;43126:54:0;;;11988:21:1;12045:2;12025:18;;;12018:30;12084:21;12064:18;;;12057:49;12123:18;;43126:54:0;11804:343:1;43126:54:0;43207:1;43193:11;:15;43185:55;;;;-1:-1:-1;;;43185:55:0;;12354:2:1;43185:55:0;;;12336:21:1;12393:2;12373:18;;;12366:30;12432:29;12412:18;;;12405:57;12479:18;;43185:55:0;12152:351:1;43185:55:0;43268:17;;43253:11;:32;;43245:65;;;;-1:-1:-1;;;43245:65:0;;11657:2:1;43245:65:0;;;11639:21:1;11696:2;11676:18;;;11669:30;11735:22;11715:18;;;11708:50;11775:18;;43245:65:0;11455:344:1;43245:65:0;43326:12;;:16;43323:838;;43387:28;;12670:66:1;43404:10:0;12657:2:1;12653:15;12649:88;43387:28:0;;;12637:101:1;43362:12:0;;12754::1;;43387:28:0;;;;;;;;;;;;43377:39;;;;;;43362:54;;43430:18;43437:4;43442:5;43430:6;:18::i;:::-;43422:54;;;;-1:-1:-1;;;43422:54:0;;12979:2:1;43422:54:0;;;12961:21:1;13018:2;12998:18;;;12991:30;13057:25;13037:18;;;13030:53;13100:18;;43422:54:0;12777:347:1;43422:54:0;43541:11;43514:24;;:38;;;;:::i;:::-;43501:9;:51;;43493:82;;;;-1:-1:-1;;;43493:82:0;;13564:2:1;43493:82:0;;;13546:21:1;13603:2;13583:18;;;13576:30;13642:20;13622:18;;;13615:48;13680:18;;43493:82:0;13362:342:1;43493:82:0;43613:22;;43598:11;:37;;43590:90;;;;-1:-1:-1;;;43590:90:0;;13911:2:1;43590:90:0;;;13893:21:1;13950:2;13930:18;;;13923:30;13989:34;13969:18;;;13962:62;14060:10;14040:18;;;14033:38;14088:19;;43590:90:0;13709:404:1;43590:90:0;43745:27;;43719:21;43729:10;43719:9;:21::i;:::-;43704:36;;:11;:36;:::i;:::-;43703:69;;43695:110;;;;-1:-1:-1;;;43695:110:0;;14453:2:1;43695:110:0;;;14435:21:1;14492:2;14472:18;;;14465:30;14531;14511:18;;;14504:58;14579:18;;43695:110:0;14251:352:1;43695:110:0;43353:464;43323:838;;;43891:11;43867:21;;:35;;;;:::i;:::-;43854:9;:48;;43846:79;;;;-1:-1:-1;;;43846:79:0;;13564:2:1;43846:79:0;;;13546:21:1;13603:2;13583:18;;;13576:30;13642:20;13622:18;;;13615:48;13680:18;;43846:79:0;13362:342:1;43846:79:0;43963:19;;43948:11;:34;;43940:87;;;;-1:-1:-1;;;43940:87:0;;13911:2:1;43940:87:0;;;13893:21:1;13950:2;13930:18;;;13923:30;13989:34;13969:18;;;13962:62;14060:10;14040:18;;;14033:38;14088:19;;43940:87:0;13709:404:1;43940:87:0;44092:24;;44066:21;44076:10;44066:9;:21::i;:::-;44051:36;;:11;:36;:::i;:::-;44050:66;;44042:107;;;;-1:-1:-1;;;44042:107:0;;14453:2:1;44042:107:0;;;14435:21:1;14492:2;14472:18;;;14465:30;14531;14511:18;;;14504:58;14579:18;;44042:107:0;14251:352:1;44042:107:0;44188:11;44167:17;;:32;;;;;;;:::i;:::-;;;;-1:-1:-1;44204:34:0;;-1:-1:-1;44214:10:0;44226:11;44204:9;:34::i;41211:201::-;40375:6;;-1:-1:-1;;;;;40375:6:0;36257:10;40522:23;40514:68;;;;-1:-1:-1;;;40514:68:0;;10158:2:1;40514:68:0;;;10140:21:1;;;10177:18;;;10170:30;10236:34;10216:18;;;10209:62;10288:18;;40514:68:0;9956:356:1;40514:68:0;-1:-1:-1;;;;;41300:22:0;::::1;41292:73;;;::::0;-1:-1:-1;;;41292:73:0;;14810:2:1;41292:73:0::1;::::0;::::1;14792:21:1::0;14849:2;14829:18;;;14822:30;14888:34;14868:18;;;14861:62;14959:8;14939:18;;;14932:36;14985:19;;41292:73:0::1;14608:402:1::0;41292:73:0::1;41376:28;41395:8;41376:18;:28::i;22188:273::-:0;22245:4;22301:7;43034:1;22282:26;;:66;;;;;22335:13;;22325:7;:23;22282:66;:152;;;;-1:-1:-1;;22386:26:0;;;;:17;:26;;;;;;9861:8;22386:43;:48;;22188:273::o;15390:1129::-;15457:7;15492;;43034:1;15541:23;15537:915;;15594:13;;15587:4;:20;15583:869;;;15632:14;15649:23;;;:17;:23;;;;;;9861:8;15738:23;;15734:699;;16257:113;16264:11;16257:113;;-1:-1:-1;;;16335:6:0;16317:25;;;;:17;:25;;;;;;16257:113;;15734:699;15609:843;15583:869;16480:31;;;;;;;;;;;;;;27427:2515;27542:27;27572;27591:7;27572:18;:27::i;:::-;27542:57;;27657:4;-1:-1:-1;;;;;27616:45:0;27632:19;-1:-1:-1;;;;;27616:45:0;;27612:86;;27670:28;;;;;;;;;;;;;;27612:86;27711:22;36257:10;-1:-1:-1;;;;;27737:27:0;;;;:87;;-1:-1:-1;27781:43:0;27798:4;36257:10;20809:164;:::i;27781:43::-;27737:147;;;-1:-1:-1;36257:10:0;27841:20;27853:7;27841:11;:20::i;:::-;-1:-1:-1;;;;;27841:43:0;;27737:147;27711:174;;27903:17;27898:66;;27929:35;;;;;;;;;;;;;;27898:66;-1:-1:-1;;;;;27979:16:0;;27975:52;;28004:23;;;;;;;;;;;;;;27975:52;28156:24;;;;:15;:24;;;;;;;;28149:31;;;;;;-1:-1:-1;;;;;28548:24:0;;;;;:18;:24;;;;;28546:26;;-1:-1:-1;;28546:26:0;;;28617:22;;;;;;;28615:24;;-1:-1:-1;28615:24:0;;;28910:26;;;:17;:26;;;;;10143:8;28998:15;9745:3;28998:41;28956:84;;:128;;28910:174;;;29204:46;;29200:626;;29308:1;29298:11;;29276:19;29431:30;;;:17;:30;;;;;;29427:384;;29569:13;;29554:11;:28;29550:242;;29716:30;;;;:17;:30;;;;;:52;;;29550:242;29257:569;29200:626;29873:7;29869:2;-1:-1:-1;;;;;29854:27:0;29863:4;-1:-1:-1;;;;;29854:27:0;;;;;;;;;;;27531:2411;;27427:2515;;;:::o;41572:191::-;41665:6;;;-1:-1:-1;;;;;41682:17:0;;;;;;;;;;;41715:40;;41665:6;;;41682:17;41665:6;;41715:40;;41646:16;;41715:40;41635:128;41572:191;:::o;33639:716::-;33823:88;;;;;33802:4;;-1:-1:-1;;;;;33823:45:0;;;;;:88;;36257:10;;33890:4;;33896:7;;33905:5;;33823:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33823:88:0;;;;;;;;-1:-1:-1;;33823:88:0;;;;;;;;;;;;:::i;:::-;;;33819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34106:13:0;;34102:235;;34152:40;;;;;;;;;;;;;;34102:235;34295:6;34289:13;34280:6;34276:2;34272:15;34265:38;33819:529;33982:64;;33992:54;33982:64;;-1:-1:-1;33819:529:0;33639:716;;;;;;:::o;42844:99::-;42904:13;42931:7;42924:14;;;;;:::i;36381:1959::-;36852:4;36846:11;;36859:3;36842:21;;36937:17;;;;37634:11;;;37513:5;37766:2;37780;37770:13;;37762:22;37634:11;37749:36;37821:2;37811:13;;37404:682;37840:4;37404:682;;;38015:1;38010:3;38006:11;37999:18;;38066:2;38060:4;38056:13;38052:2;38048:22;38043:3;38035:36;37936:2;37926:13;;37404:682;;;-1:-1:-1;38128:13:0;;;-1:-1:-1;;38243:12:0;;;38303:19;;;38243:12;36381:1959;-1:-1:-1;36381:1959:0:o;22545:104::-;22614:27;22624:2;22628:8;22614:27;;;;;;;;;;;;:9;:27::i;44629:473::-;44706:4;44742;44706;44753:301;44777:5;:12;44773:1;:16;44753:301;;;44802:20;44825:5;44831:1;44825:8;;;;;;;;:::i;:::-;;;;;;;44802:31;;44861:12;44845;:28;44841:208;;44907:44;;;;;;16132:19:1;;;16167:12;;;16160:28;;;16204:12;;44907:44:0;;;;;;;;;;;;44897:55;;;;;;44882:70;;44841:208;;;44997:44;;;;;;16132:19:1;;;16167:12;;;16160:28;;;16204:12;;44997:44:0;;;;;;;;;;;;44987:55;;;;;;44972:70;;44841:208;-1:-1:-1;44791:3:0;;;;:::i;:::-;;;;44753:301;;;-1:-1:-1;45081:16:0;;45065:32;;44629:473;-1:-1:-1;;;44629:473:0:o;23022:2236::-;23145:20;23168:13;-1:-1:-1;;;;;23196:16:0;;23192:48;;23221:19;;;;;;;;;;;;;;23192:48;23255:13;23251:44;;23277:18;;;;;;;;;;;;;;23251:44;-1:-1:-1;;;;;23844:22:0;;;;;;:18;:22;;;;9228:2;23844:22;;;:70;;23882:31;23870:44;;23844:70;;;24157:31;;;:17;:31;;;;;24250:15;9745:3;24250:41;24208:84;;-1:-1:-1;24328:13:0;;10008:3;24313:56;24208:162;24157:213;;:31;;24451:23;;;;24495:14;:19;24491:635;;24535:313;24566:38;;24591:12;;-1:-1:-1;;;;;24566:38:0;;;24583:1;;24566:38;;24583:1;;24566:38;24632:69;24671:1;24675:2;24679:14;;;;;;24695:5;24632:30;:69::i;:::-;24627:174;;24737:40;;;;;;;;;;;;;;24627:174;24843:3;24828:12;:18;24535:313;;24929:12;24912:13;;:29;24908:43;;24943:8;;;24908:43;24491:635;;;24992:119;25023:40;;25048:14;;;;;-1:-1:-1;;;;;25023:40:0;;;25040:1;;25023:40;;25040:1;;25023:40;25106:3;25091:12;:18;24992:119;;24491:635;-1:-1:-1;25140:13:0;:28;;;25190:60;;25223:2;25227:12;25241:8;25190:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;-1:-1:-1;;1116:88:1;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:1:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:1;;1448:180;-1:-1:-1;1448:180:1:o;1864:196::-;1932:20;;-1:-1:-1;;;;;1981:54:1;;1971:65;;1961:93;;2050:1;2047;2040:12;1961:93;1864:196;;;:::o;2065:254::-;2133:6;2141;2194:2;2182:9;2173:7;2169:23;2165:32;2162:52;;;2210:1;2207;2200:12;2162:52;2233:29;2252:9;2233:29;:::i;:::-;2223:39;2309:2;2294:18;;;;2281:32;;-1:-1:-1;;;2065:254:1:o;2506:328::-;2583:6;2591;2599;2652:2;2640:9;2631:7;2627:23;2623:32;2620:52;;;2668:1;2665;2658:12;2620:52;2691:29;2710:9;2691:29;:::i;:::-;2681:39;;2739:38;2773:2;2762:9;2758:18;2739:38;:::i;:::-;2729:48;;2824:2;2813:9;2809:18;2796:32;2786:42;;2506:328;;;;;:::o;2839:971::-;3226:4;3255:3;3285:2;3274:9;3267:21;3305:45;3346:2;3335:9;3331:18;3323:6;3305:45;:::i;:::-;3381:2;3366:18;;3359:34;;;;-1:-1:-1;;3424:2:1;3409:18;;3402:34;;;;3467:2;3452:18;;3445:34;;;;3510:3;3495:19;;3488:35;;;;3554:3;3539:19;;3532:35;;;;3598:3;3583:19;;3576:35;;;;3642:3;3627:19;;3620:35;3686:3;3671:19;;3664:35;3730:3;3715:19;;3708:35;3787:15;3780:23;3774:3;3759:19;;;3752:52;3297:53;2839:971;-1:-1:-1;2839:971:1:o;3815:184::-;-1:-1:-1;;;3864:1:1;3857:88;3964:4;3961:1;3954:15;3988:4;3985:1;3978:15;4004:334;4075:2;4069:9;4131:2;4121:13;;-1:-1:-1;;4117:86:1;4105:99;;4234:18;4219:34;;4255:22;;;4216:62;4213:88;;;4281:18;;:::i;:::-;4317:2;4310:22;4004:334;;-1:-1:-1;4004:334:1:o;4343:466::-;4408:5;4442:18;4434:6;4431:30;4428:56;;;4464:18;;:::i;:::-;4502:116;4612:4;-1:-1:-1;;4538:2:1;4530:6;4526:15;4522:88;4518:99;4502:116;:::i;:::-;4493:125;;4641:6;4634:5;4627:21;4681:3;4672:6;4667:3;4663:16;4660:25;4657:45;;;4698:1;4695;4688:12;4657:45;4747:6;4742:3;4735:4;4728:5;4724:16;4711:43;4801:1;4794:4;4785:6;4778:5;4774:18;4770:29;4763:40;4343:466;;;;;:::o;4814:222::-;4857:5;4910:3;4903:4;4895:6;4891:17;4887:27;4877:55;;4928:1;4925;4918:12;4877:55;4950:80;5026:3;5017:6;5004:20;4997:4;4989:6;4985:17;4950:80;:::i;5041:322::-;5110:6;5163:2;5151:9;5142:7;5138:23;5134:32;5131:52;;;5179:1;5176;5169:12;5131:52;5219:9;5206:23;5252:18;5244:6;5241:30;5238:50;;;5284:1;5281;5274:12;5238:50;5307;5349:7;5340:6;5329:9;5325:22;5307:50;:::i;5553:186::-;5612:6;5665:2;5653:9;5644:7;5640:23;5636:32;5633:52;;;5681:1;5678;5671:12;5633:52;5704:29;5723:9;5704:29;:::i;5744:160::-;5809:20;;5865:13;;5858:21;5848:32;;5838:60;;5894:1;5891;5884:12;5909:941;6056:6;6064;6072;6080;6088;6096;6104;6112;6120;6128;6181:3;6169:9;6160:7;6156:23;6152:33;6149:53;;;6198:1;6195;6188:12;6149:53;6234:9;6221:23;6211:33;;6291:2;6280:9;6276:18;6263:32;6253:42;;6342:2;6331:9;6327:18;6314:32;6304:42;;6397:2;6386:9;6382:18;6369:32;6424:18;6416:6;6413:30;6410:50;;;6456:1;6453;6446:12;6410:50;6479;6521:7;6512:6;6501:9;6497:22;6479:50;:::i;:::-;6469:60;;;6576:3;6565:9;6561:19;6548:33;6538:43;;6628:3;6617:9;6613:19;6600:33;6590:43;;6680:3;6669:9;6665:19;6652:33;6642:43;;6732:3;6721:9;6717:19;6704:33;6694:43;;6784:3;6773:9;6769:19;6756:33;6746:43;;6808:36;6839:3;6828:9;6824:19;6808:36;:::i;:::-;6798:46;;5909:941;;;;;;;;;;;;;:::o;6855:254::-;6920:6;6928;6981:2;6969:9;6960:7;6956:23;6952:32;6949:52;;;6997:1;6994;6987:12;6949:52;7020:29;7039:9;7020:29;:::i;:::-;7010:39;;7068:35;7099:2;7088:9;7084:18;7068:35;:::i;:::-;7058:45;;6855:254;;;;;:::o;7114:180::-;7170:6;7223:2;7211:9;7202:7;7198:23;7194:32;7191:52;;;7239:1;7236;7229:12;7191:52;7262:26;7278:9;7262:26;:::i;7299:667::-;7394:6;7402;7410;7418;7471:3;7459:9;7450:7;7446:23;7442:33;7439:53;;;7488:1;7485;7478:12;7439:53;7511:29;7530:9;7511:29;:::i;:::-;7501:39;;7559:38;7593:2;7582:9;7578:18;7559:38;:::i;:::-;7549:48;;7644:2;7633:9;7629:18;7616:32;7606:42;;7699:2;7688:9;7684:18;7671:32;7726:18;7718:6;7715:30;7712:50;;;7758:1;7755;7748:12;7712:50;7781:22;;7834:4;7826:13;;7822:27;-1:-1:-1;7812:55:1;;7863:1;7860;7853:12;7812:55;7886:74;7952:7;7947:2;7934:16;7929:2;7925;7921:11;7886:74;:::i;:::-;7876:84;;;7299:667;;;;;;;:::o;7971:254::-;8039:6;8047;8100:2;8088:9;8079:7;8075:23;8071:32;8068:52;;;8116:1;8113;8106:12;8068:52;8152:9;8139:23;8129:33;;8181:38;8215:2;8204:9;8200:18;8181:38;:::i;8230:1014::-;8323:6;8331;8384:2;8372:9;8363:7;8359:23;8355:32;8352:52;;;8400:1;8397;8390:12;8352:52;8436:9;8423:23;8413:33;;8465:2;8518;8507:9;8503:18;8490:32;8541:18;8582:2;8574:6;8571:14;8568:34;;;8598:1;8595;8588:12;8568:34;8636:6;8625:9;8621:22;8611:32;;8681:7;8674:4;8670:2;8666:13;8662:27;8652:55;;8703:1;8700;8693:12;8652:55;8739:2;8726:16;8761:2;8757;8754:10;8751:36;;;8767:18;;:::i;:::-;8813:2;8810:1;8806:10;8796:20;;8836:28;8860:2;8856;8852:11;8836:28;:::i;:::-;8898:15;;;8968:11;;;8964:20;;;8929:12;;;;8996:19;;;8993:39;;;9028:1;9025;9018:12;8993:39;9052:11;;;;9072:142;9088:6;9083:3;9080:15;9072:142;;;9154:17;;9142:30;;9105:12;;;;9192;;;;9072:142;;;9233:5;9223:15;;;;;;;;8230:1014;;;;;:::o;9249:260::-;9317:6;9325;9378:2;9366:9;9357:7;9353:23;9349:32;9346:52;;;9394:1;9391;9384:12;9346:52;9417:29;9436:9;9417:29;:::i;:::-;9407:39;;9465:38;9499:2;9488:9;9484:18;9465:38;:::i;9514:437::-;9593:1;9589:12;;;;9636;;;9657:61;;9711:4;9703:6;9699:17;9689:27;;9657:61;9764:2;9756:6;9753:14;9733:18;9730:38;9727:218;;;-1:-1:-1;;;9798:1:1;9791:88;9902:4;9899:1;9892:15;9930:4;9927:1;9920:15;9727:218;;9514:437;;;:::o;10317:184::-;-1:-1:-1;;;10366:1:1;10359:88;10466:4;10463:1;10456:15;10490:4;10487:1;10480:15;10506:125;10546:4;10574:1;10571;10568:8;10565:34;;;10579:18;;:::i;:::-;-1:-1:-1;10616:9:1;;10506:125::o;10980:470::-;11159:3;11197:6;11191:13;11213:53;11259:6;11254:3;11247:4;11239:6;11235:17;11213:53;:::i;:::-;11329:13;;11288:16;;;;11351:57;11329:13;11288:16;11385:4;11373:17;;11351:57;:::i;:::-;11424:20;;10980:470;-1:-1:-1;;;;10980:470:1:o;13129:228::-;13169:7;13295:1;-1:-1:-1;;13223:74:1;13220:1;13217:81;13212:1;13205:9;13198:17;13194:105;13191:131;;;13302:18;;:::i;:::-;-1:-1:-1;13342:9:1;;13129:228::o;14118:128::-;14158:3;14189:1;14185:6;14182:1;14179:13;14176:39;;;14195:18;;:::i;:::-;-1:-1:-1;14231:9:1;;14118:128::o;15015:512::-;15209:4;-1:-1:-1;;;;;15319:2:1;15311:6;15307:15;15296:9;15289:34;15371:2;15363:6;15359:15;15354:2;15343:9;15339:18;15332:43;;15411:6;15406:2;15395:9;15391:18;15384:34;15454:3;15449:2;15438:9;15434:18;15427:31;15475:46;15516:3;15505:9;15501:19;15493:6;15475:46;:::i;:::-;15467:54;15015:512;-1:-1:-1;;;;;;15015:512:1:o;15532:249::-;15601:6;15654:2;15642:9;15633:7;15629:23;15625:32;15622:52;;;15670:1;15667;15660:12;15622:52;15702:9;15696:16;15721:30;15745:5;15721:30;:::i;15786:184::-;-1:-1:-1;;;15835:1:1;15828:88;15935:4;15932:1;15925:15;15959:4;15956:1;15949:15;16227:195;16266:3;-1:-1:-1;;16290:5:1;16287:77;16284:103;;;16367:18;;:::i;:::-;-1:-1:-1;16414:1:1;16403:13;;16227:195::o

Swarm Source

ipfs://53f38c4aadc7fc974e5f9bc6536511abdd19880e82c3f3daccb454793cb53ee0
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.