ETH Price: $2,947.11 (-5.56%)
Gas: 8 Gwei

Token

Drama Llamas (DRAMA)
 

Overview

Max Total Supply

136 DRAMA

Holders

37

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
lateniteninja.eth
Balance
1 DRAMA
0xf116569b3f888d639372a5485685a6d8ee28a593
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DramaLlamas

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-22
*/

// 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: 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/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

// File: erc721a/contracts/extensions/IERC721ABurnable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721ABurnable.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}

// 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: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



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

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

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

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

// File: erc721a/contracts/extensions/ERC721ABurnable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721ABurnable.
 *
 * @dev ERC721A token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}

// File: contracts/DramaLlamas.sol



pragma solidity ^0.8.4;





contract DramaLlamas is ERC721A, ERC721AQueryable, ERC721ABurnable, Ownable {
  uint256 private mintPrice = 0.006 ether;
  uint256 private maxSupply = 9999;
  uint256 private maxTransaction = 10;

  string tokenBaseUri = "ipfs:/bafybeihctkxocpez3njczskzdsibiq5rjkvqpo23lj2o2lnj2mb7hicpq4/";

  bool public isPaused = true;

  mapping(address => uint256) private freeCount;

  constructor() ERC721A("Drama Llamas", "DRAMA") {}

  function mint(uint256 _quantity) external payable {
    unchecked {
      require(!isPaused, "Minting is paused");

      uint256 _totalSupply = totalSupply();

      require(_totalSupply + _quantity <= maxSupply, "Already max supply");
      require(_quantity <= maxTransaction, "Only 10 per transaction");

      uint256 payForCount = _quantity;
      uint256 freeMintCount = freeCount[msg.sender];

      if (freeMintCount < 1) {
        if (_quantity > 1) {
          payForCount = _quantity - 1;
        } else {
          payForCount = 0;
        }

        freeCount[msg.sender] = 1;
      }

      require(msg.value == payForCount * mintPrice, "ETH amount is incorrect");

      _mint(msg.sender, _quantity);
    }
  }

  function freeMintedCount(address owner) external view returns (uint256) {
    return freeCount[owner];
  }

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

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

  function setBaseURI(string calldata _newBaseUri) external onlyOwner {
    tokenBaseUri = _newBaseUri;
  }

  function start() external onlyOwner {
    isPaused = !isPaused;
  }

  function giveawayReserves() external onlyOwner {
    require(totalSupply() == 0, "Reserves already taken");

    _mint(msg.sender, 99);
  }

  function withdraw() external onlyOwner {
    require(
      payable(owner()).send(address(this).balance),
      "Error"
    );
  }
}

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":"InvalidQueryRange","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawayReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

661550f7dca7000060095561270f600a908155600b556101006040526042608081815290620027e260a039600c90620000399082620001c8565b50600d805460ff191660011790553480156200005457600080fd5b506040518060400160405280600c81526020016b4472616d61204c6c616d617360a01b815250604051806040016040528060058152602001644452414d4160d81b8152508160029081620000a99190620001c8565b506003620000b88282620001c8565b5050600160005550620000cb33620000d1565b62000294565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200014e57607f821691505b6020821081036200016f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001c357600081815260208120601f850160051c810160208610156200019e5750805b601f850160051c820191505b81811015620001bf57828155600101620001aa565b5050505b505050565b81516001600160401b03811115620001e457620001e462000123565b620001fc81620001f5845462000139565b8462000175565b602080601f8311600181146200023457600084156200021b5750858301515b600019600386901b1c1916600185901b178555620001bf565b600085815260208120601f198616915b82811015620002655788860151825594840194600190910190840162000244565b5085821015620002845787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61253e80620002a46000396000f3fe6080604052600436106101c25760003560e01c80638462151c116100f7578063b187bd2611610095578063c87b56dd11610064578063c87b56dd1461051b578063e5f898df1461053b578063e985e9c514610550578063f2fde38b1461059957600080fd5b8063b187bd261461049f578063b88d4fde146104b9578063be9a6555146104d9578063c23dc68f146104ee57600080fd5b806398133235116100d1578063981332351461041657806399a2557a1461044c578063a0712d681461046c578063a22cb4651461047f57600080fd5b80638462151c146103b65780638da5cb5b146103e357806395d89b411461040157600080fd5b806342842e0e116101645780635bbb21771161013e5780635bbb2177146103345780636352211e1461036157806370a0823114610381578063715018a6146103a157600080fd5b806342842e0e146102d457806342966c68146102f457806355f804b31461031457600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029f5780633ccfd60b146102bf57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611e07565b6105b9565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161069e565b6040516101f39190611e74565b34801561022a57600080fd5b5061023e610239366004611e87565b610730565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611ebc565b61078d565b005b34801561028457600080fd5b5060015460005403600019015b6040519081526020016101f3565b3480156102ab57600080fd5b506102766102ba366004611ee6565b6108c6565b3480156102cb57600080fd5b506102766108d6565b3480156102e057600080fd5b506102766102ef366004611ee6565b6109ab565b34801561030057600080fd5b5061027661030f366004611e87565b6109c6565b34801561032057600080fd5b5061027661032f366004611f22565b6109d4565b34801561034057600080fd5b5061035461034f366004611ff4565b610a3b565b6040516101f3919061209a565b34801561036d57600080fd5b5061023e61037c366004611e87565b610b02565b34801561038d57600080fd5b5061029161039c366004612105565b610b0d565b3480156103ad57600080fd5b50610276610b75565b3480156103c257600080fd5b506103d66103d1366004612105565b610bd9565b6040516101f39190612120565b3480156103ef57600080fd5b506008546001600160a01b031661023e565b34801561040d57600080fd5b50610211610cd6565b34801561042257600080fd5b50610291610431366004612105565b6001600160a01b03166000908152600e602052604090205490565b34801561045857600080fd5b506103d6610467366004612158565b610ce5565b61027661047a366004611e87565b610e86565b34801561048b57600080fd5b5061027661049a36600461218b565b611041565b3480156104ab57600080fd5b50600d546101e79060ff1681565b3480156104c557600080fd5b506102766104d43660046121c7565b61110d565b3480156104e557600080fd5b5061027661116a565b3480156104fa57600080fd5b5061050e610509366004611e87565b6111f6565b6040516101f39190612287565b34801561052757600080fd5b50610211610536366004611e87565b61126b565b34801561054757600080fd5b50610276611307565b34801561055c57600080fd5b506101e761056b3660046122bd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a557600080fd5b506102766105b4366004612105565b6113c4565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061064c57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061069857507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546106ad906122f0565b80601f01602080910402602001604051908101604052809291908181526020018280546106d9906122f0565b80156107265780601f106106fb57610100808354040283529160200191610726565b820191906000526020600020905b81548152906001019060200180831161070957829003601f168201915b5050505050905090565b600061073b826114a3565b610771576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610798826114f1565b9050806001600160a01b0316836001600160a01b0316036107e5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614610852576001600160a01b038116600090815260076020908152604080832033845290915290205460ff16610852576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108d1838383611592565b505050565b6008546001600160a01b031633146109355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050506109a95760405162461bcd60e51b815260206004820152600560248201527f4572726f72000000000000000000000000000000000000000000000000000000604482015260640161092c565b565b6108d18383836040518060200160405280600081525061110d565b6109d18160016117d5565b50565b6008546001600160a01b03163314610a2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b600c6108d1828483612391565b805160609060008167ffffffffffffffff811115610a5b57610a5b611f94565b604051908082528060200260200182016040528015610aa657816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610a795790505b50905060005b828114610afa57610ad5858281518110610ac857610ac8612451565b60200260200101516111f6565b828281518110610ae757610ae7612451565b6020908102919091010152600101610aac565b509392505050565b6000610698826114f1565b60006001600160a01b038216610b4f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610bcf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b6109a960006119ae565b60606000806000610be985610b0d565b905060008167ffffffffffffffff811115610c0657610c06611f94565b604051908082528060200260200182016040528015610c2f578160200160208202803683370190505b50604080516060810182526000808252602082018190529181019190915290915060015b838614610cca57610c6381611a18565b91508160400151610cc25781516001600160a01b031615610c8357815194505b876001600160a01b0316856001600160a01b031603610cc25780838780600101985081518110610cb557610cb5612451565b6020026020010181815250505b600101610c53565b50909695505050505050565b6060600380546106ad906122f0565b6060818310610d20576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d2c60005490565b90506001851015610d3c57600194505b80841115610d48578093505b6000610d5387610b0d565b905084861015610d725785850381811015610d6c578091505b50610d76565b5060005b60008167ffffffffffffffff811115610d9157610d91611f94565b604051908082528060200260200182016040528015610dba578160200160208202803683370190505b50905081600003610dd0579350610e7f92505050565b6000610ddb886111f6565b905060008160400151610dec575080515b885b888114158015610dfe5750848714155b15610e7357610e0c81611a18565b92508260400151610e6b5782516001600160a01b031615610e2c57825191505b8a6001600160a01b0316826001600160a01b031603610e6b5780848880600101995081518110610e5e57610e5e612451565b6020026020010181815250505b600101610dee565b50505092835250909150505b9392505050565b600d5460ff1615610ed95760405162461bcd60e51b815260206004820152601160248201527f4d696e74696e6720697320706175736564000000000000000000000000000000604482015260640161092c565b6000610eee6001546000546000199190030190565b9050600a548282011115610f445760405162461bcd60e51b815260206004820152601260248201527f416c7265616479206d617820737570706c790000000000000000000000000000604482015260640161092c565b600b54821115610f965760405162461bcd60e51b815260206004820152601760248201527f4f6e6c7920313020706572207472616e73616374696f6e000000000000000000604482015260640161092c565b336000908152600e602052604090205482906001811015610fde576001841115610fc557600184039150610fca565b600091505b336000908152600e60205260409020600190555b600954820234146110315760405162461bcd60e51b815260206004820152601760248201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604482015260640161092c565b61103b3385611a9c565b50505050565b336001600160a01b03831603611083576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611118848484611592565b6001600160a01b0383163b1561103b5761113484848484611bb0565b61103b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008546001600160a01b031633146111c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281019290925290600183108061123c57506000548310155b156112475792915050565b61125083611a18565b90508060400151156112625792915050565b610e7f83611cfe565b6060611276826114a3565b6112ac576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112b6611d7b565b905080516000036112d65760405180602001604052806000815250610e7f565b806112e084611d8a565b6040516020016112f1929190612480565b6040516020818303038152906040529392505050565b6008546001600160a01b031633146113615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b6001546000540360001901156113b95760405162461bcd60e51b815260206004820152601660248201527f526573657276657320616c72656164792074616b656e00000000000000000000604482015260640161092c565b6109a9336063611a9c565b6008546001600160a01b0316331461141e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b6001600160a01b03811661149a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161092c565b6109d1816119ae565b6000816001111580156114b7575060005482105b80156106985750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b600081806001116115605760005481101561156057600081815260046020526040812054907c01000000000000000000000000000000000000000000000000000000008216900361155e575b80600003610e7f57506000190160008181526004602052604090205461153d565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061159d826114f1565b9050836001600160a01b0316816001600160a01b0316146115ea576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061162657506001600160a01b038516600090815260076020908152604080832033845290915290205460ff165b8061164157503361163684610730565b6001600160a01b0316145b90508061167a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166116ba576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083815260066020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915281207c02000000000000000000000000000000000000000000000000000000004260a01b871781179091558316900361178c5760018301600081815260046020526040812054900361178a57600054811461178a5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006117e0836114f1565b905080821561187b576000336001600160a01b038316148061182557506001600160a01b038216600090815260076020908152604080832033845290915290205460ff165b8061184057503361183586610730565b6001600160a01b0316145b905080611879576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600084815260066020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556001600160a01b03841683526005825280832080546fffffffffffffffffffffffffffffffff019055868352600490915281207c03000000000000000000000000000000000000000000000000000000004260a01b84171790557c020000000000000000000000000000000000000000000000000000000083169003611968576001840160008181526004602052604081205490036119665760005481146119665760008181526004602052604090208390555b505b60405184906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516060810182526000808252602082018190529181019190915260008281526004602052604090205461069890604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff1660208201527c010000000000000000000000000000000000000000000000000000000090921615159082015290565b6000546001600160a01b038316611adf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600003611b19576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b645750600055505050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290611bfe9033908990889088906004016124af565b6020604051808303816000875af1925050508015611c39575060408051601f3d908101601f19168201909252611c36918101906124eb565b60015b611cb0573d808015611c67576040519150601f19603f3d011682016040523d82523d6000602084013e611c6c565b606091505b508051600003611ca8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b6040805160608101825260008082526020820181905291810191909152610698611d27836114f1565b604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff1660208201527c010000000000000000000000000000000000000000000000000000000090921615159082015290565b6060600c80546106ad906122f0565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611dc757600183039250600a81066030018353600a9004611da9565b50819003601f19909101908152919050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146109d157600080fd5b600060208284031215611e1957600080fd5b8135610e7f81611dd9565b60005b83811015611e3f578181015183820152602001611e27565b50506000910152565b60008151808452611e60816020860160208601611e24565b601f01601f19169290920160200192915050565b602081526000610e7f6020830184611e48565b600060208284031215611e9957600080fd5b5035919050565b80356001600160a01b0381168114611eb757600080fd5b919050565b60008060408385031215611ecf57600080fd5b611ed883611ea0565b946020939093013593505050565b600080600060608486031215611efb57600080fd5b611f0484611ea0565b9250611f1260208501611ea0565b9150604084013590509250925092565b60008060208385031215611f3557600080fd5b823567ffffffffffffffff80821115611f4d57600080fd5b818501915085601f830112611f6157600080fd5b813581811115611f7057600080fd5b866020828501011115611f8257600080fd5b60209290920196919550909350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611fec57611fec611f94565b604052919050565b6000602080838503121561200757600080fd5b823567ffffffffffffffff8082111561201f57600080fd5b818501915085601f83011261203357600080fd5b81358181111561204557612045611f94565b8060051b9150612056848301611fc3565b818152918301840191848101908884111561207057600080fd5b938501935b8385101561208e57843582529385019390850190612075565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610cca576120f283855180516001600160a01b0316825260208082015167ffffffffffffffff16908301526040908101511515910152565b92840192606092909201916001016120b6565b60006020828403121561211757600080fd5b610e7f82611ea0565b6020808252825182820181905260009190848201906040850190845b81811015610cca5783518352928401929184019160010161213c565b60008060006060848603121561216d57600080fd5b61217684611ea0565b95602085013595506040909401359392505050565b6000806040838503121561219e57600080fd5b6121a783611ea0565b9150602083013580151581146121bc57600080fd5b809150509250929050565b600080600080608085870312156121dd57600080fd5b6121e685611ea0565b935060206121f5818701611ea0565b935060408601359250606086013567ffffffffffffffff8082111561221957600080fd5b818801915088601f83011261222d57600080fd5b81358181111561223f5761223f611f94565b61225184601f19601f84011601611fc3565b9150808252898482850101111561226757600080fd5b808484018584013760008482840101525080935050505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608101610698565b600080604083850312156122d057600080fd5b6122d983611ea0565b91506122e760208401611ea0565b90509250929050565b600181811c9082168061230457607f821691505b60208210810361233d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f8211156108d157600081815260208120601f850160051c8101602086101561236a5750805b601f850160051c820191505b8181101561238957828155600101612376565b505050505050565b67ffffffffffffffff8311156123a9576123a9611f94565b6123bd836123b783546122f0565b83612343565b6000601f8411600181146123f157600085156123d95750838201355b600019600387901b1c1916600186901b1783556117ce565b600083815260209020601f19861690835b828110156124225786850135825560209485019460019092019101612402565b508682101561243f5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008351612492818460208801611e24565b8351908301906124a6818360208801611e24565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526124e16080830184611e48565b9695505050505050565b6000602082840312156124fd57600080fd5b8151610e7f81611dd956fea2646970667358221220d7d93ec2e908065cc665f64bdbfdd28f3b3b77e40f471204891eaf0ee671381364736f6c63430008100033697066733a2f626166796265696863746b786f6370657a336e6a637a736b7a64736962697135726a6b7671706f32336c6a326f326c6e6a326d62376869637071342f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80638462151c116100f7578063b187bd2611610095578063c87b56dd11610064578063c87b56dd1461051b578063e5f898df1461053b578063e985e9c514610550578063f2fde38b1461059957600080fd5b8063b187bd261461049f578063b88d4fde146104b9578063be9a6555146104d9578063c23dc68f146104ee57600080fd5b806398133235116100d1578063981332351461041657806399a2557a1461044c578063a0712d681461046c578063a22cb4651461047f57600080fd5b80638462151c146103b65780638da5cb5b146103e357806395d89b411461040157600080fd5b806342842e0e116101645780635bbb21771161013e5780635bbb2177146103345780636352211e1461036157806370a0823114610381578063715018a6146103a157600080fd5b806342842e0e146102d457806342966c68146102f457806355f804b31461031457600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029f5780633ccfd60b146102bf57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611e07565b6105b9565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161069e565b6040516101f39190611e74565b34801561022a57600080fd5b5061023e610239366004611e87565b610730565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611ebc565b61078d565b005b34801561028457600080fd5b5060015460005403600019015b6040519081526020016101f3565b3480156102ab57600080fd5b506102766102ba366004611ee6565b6108c6565b3480156102cb57600080fd5b506102766108d6565b3480156102e057600080fd5b506102766102ef366004611ee6565b6109ab565b34801561030057600080fd5b5061027661030f366004611e87565b6109c6565b34801561032057600080fd5b5061027661032f366004611f22565b6109d4565b34801561034057600080fd5b5061035461034f366004611ff4565b610a3b565b6040516101f3919061209a565b34801561036d57600080fd5b5061023e61037c366004611e87565b610b02565b34801561038d57600080fd5b5061029161039c366004612105565b610b0d565b3480156103ad57600080fd5b50610276610b75565b3480156103c257600080fd5b506103d66103d1366004612105565b610bd9565b6040516101f39190612120565b3480156103ef57600080fd5b506008546001600160a01b031661023e565b34801561040d57600080fd5b50610211610cd6565b34801561042257600080fd5b50610291610431366004612105565b6001600160a01b03166000908152600e602052604090205490565b34801561045857600080fd5b506103d6610467366004612158565b610ce5565b61027661047a366004611e87565b610e86565b34801561048b57600080fd5b5061027661049a36600461218b565b611041565b3480156104ab57600080fd5b50600d546101e79060ff1681565b3480156104c557600080fd5b506102766104d43660046121c7565b61110d565b3480156104e557600080fd5b5061027661116a565b3480156104fa57600080fd5b5061050e610509366004611e87565b6111f6565b6040516101f39190612287565b34801561052757600080fd5b50610211610536366004611e87565b61126b565b34801561054757600080fd5b50610276611307565b34801561055c57600080fd5b506101e761056b3660046122bd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a557600080fd5b506102766105b4366004612105565b6113c4565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061064c57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061069857507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546106ad906122f0565b80601f01602080910402602001604051908101604052809291908181526020018280546106d9906122f0565b80156107265780601f106106fb57610100808354040283529160200191610726565b820191906000526020600020905b81548152906001019060200180831161070957829003601f168201915b5050505050905090565b600061073b826114a3565b610771576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610798826114f1565b9050806001600160a01b0316836001600160a01b0316036107e5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614610852576001600160a01b038116600090815260076020908152604080832033845290915290205460ff16610852576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108d1838383611592565b505050565b6008546001600160a01b031633146109355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050506109a95760405162461bcd60e51b815260206004820152600560248201527f4572726f72000000000000000000000000000000000000000000000000000000604482015260640161092c565b565b6108d18383836040518060200160405280600081525061110d565b6109d18160016117d5565b50565b6008546001600160a01b03163314610a2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b600c6108d1828483612391565b805160609060008167ffffffffffffffff811115610a5b57610a5b611f94565b604051908082528060200260200182016040528015610aa657816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610a795790505b50905060005b828114610afa57610ad5858281518110610ac857610ac8612451565b60200260200101516111f6565b828281518110610ae757610ae7612451565b6020908102919091010152600101610aac565b509392505050565b6000610698826114f1565b60006001600160a01b038216610b4f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610bcf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b6109a960006119ae565b60606000806000610be985610b0d565b905060008167ffffffffffffffff811115610c0657610c06611f94565b604051908082528060200260200182016040528015610c2f578160200160208202803683370190505b50604080516060810182526000808252602082018190529181019190915290915060015b838614610cca57610c6381611a18565b91508160400151610cc25781516001600160a01b031615610c8357815194505b876001600160a01b0316856001600160a01b031603610cc25780838780600101985081518110610cb557610cb5612451565b6020026020010181815250505b600101610c53565b50909695505050505050565b6060600380546106ad906122f0565b6060818310610d20576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d2c60005490565b90506001851015610d3c57600194505b80841115610d48578093505b6000610d5387610b0d565b905084861015610d725785850381811015610d6c578091505b50610d76565b5060005b60008167ffffffffffffffff811115610d9157610d91611f94565b604051908082528060200260200182016040528015610dba578160200160208202803683370190505b50905081600003610dd0579350610e7f92505050565b6000610ddb886111f6565b905060008160400151610dec575080515b885b888114158015610dfe5750848714155b15610e7357610e0c81611a18565b92508260400151610e6b5782516001600160a01b031615610e2c57825191505b8a6001600160a01b0316826001600160a01b031603610e6b5780848880600101995081518110610e5e57610e5e612451565b6020026020010181815250505b600101610dee565b50505092835250909150505b9392505050565b600d5460ff1615610ed95760405162461bcd60e51b815260206004820152601160248201527f4d696e74696e6720697320706175736564000000000000000000000000000000604482015260640161092c565b6000610eee6001546000546000199190030190565b9050600a548282011115610f445760405162461bcd60e51b815260206004820152601260248201527f416c7265616479206d617820737570706c790000000000000000000000000000604482015260640161092c565b600b54821115610f965760405162461bcd60e51b815260206004820152601760248201527f4f6e6c7920313020706572207472616e73616374696f6e000000000000000000604482015260640161092c565b336000908152600e602052604090205482906001811015610fde576001841115610fc557600184039150610fca565b600091505b336000908152600e60205260409020600190555b600954820234146110315760405162461bcd60e51b815260206004820152601760248201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604482015260640161092c565b61103b3385611a9c565b50505050565b336001600160a01b03831603611083576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611118848484611592565b6001600160a01b0383163b1561103b5761113484848484611bb0565b61103b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008546001600160a01b031633146111c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281019290925290600183108061123c57506000548310155b156112475792915050565b61125083611a18565b90508060400151156112625792915050565b610e7f83611cfe565b6060611276826114a3565b6112ac576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112b6611d7b565b905080516000036112d65760405180602001604052806000815250610e7f565b806112e084611d8a565b6040516020016112f1929190612480565b6040516020818303038152906040529392505050565b6008546001600160a01b031633146113615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b6001546000540360001901156113b95760405162461bcd60e51b815260206004820152601660248201527f526573657276657320616c72656164792074616b656e00000000000000000000604482015260640161092c565b6109a9336063611a9c565b6008546001600160a01b0316331461141e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092c565b6001600160a01b03811661149a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161092c565b6109d1816119ae565b6000816001111580156114b7575060005482105b80156106985750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b600081806001116115605760005481101561156057600081815260046020526040812054907c01000000000000000000000000000000000000000000000000000000008216900361155e575b80600003610e7f57506000190160008181526004602052604090205461153d565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061159d826114f1565b9050836001600160a01b0316816001600160a01b0316146115ea576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061162657506001600160a01b038516600090815260076020908152604080832033845290915290205460ff165b8061164157503361163684610730565b6001600160a01b0316145b90508061167a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166116ba576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083815260066020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915281207c02000000000000000000000000000000000000000000000000000000004260a01b871781179091558316900361178c5760018301600081815260046020526040812054900361178a57600054811461178a5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006117e0836114f1565b905080821561187b576000336001600160a01b038316148061182557506001600160a01b038216600090815260076020908152604080832033845290915290205460ff165b8061184057503361183586610730565b6001600160a01b0316145b905080611879576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600084815260066020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556001600160a01b03841683526005825280832080546fffffffffffffffffffffffffffffffff019055868352600490915281207c03000000000000000000000000000000000000000000000000000000004260a01b84171790557c020000000000000000000000000000000000000000000000000000000083169003611968576001840160008181526004602052604081205490036119665760005481146119665760008181526004602052604090208390555b505b60405184906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516060810182526000808252602082018190529181019190915260008281526004602052604090205461069890604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff1660208201527c010000000000000000000000000000000000000000000000000000000090921615159082015290565b6000546001600160a01b038316611adf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600003611b19576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b645750600055505050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290611bfe9033908990889088906004016124af565b6020604051808303816000875af1925050508015611c39575060408051601f3d908101601f19168201909252611c36918101906124eb565b60015b611cb0573d808015611c67576040519150601f19603f3d011682016040523d82523d6000602084013e611c6c565b606091505b508051600003611ca8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b6040805160608101825260008082526020820181905291810191909152610698611d27836114f1565b604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff1660208201527c010000000000000000000000000000000000000000000000000000000090921615159082015290565b6060600c80546106ad906122f0565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611dc757600183039250600a81066030018353600a9004611da9565b50819003601f19909101908152919050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146109d157600080fd5b600060208284031215611e1957600080fd5b8135610e7f81611dd9565b60005b83811015611e3f578181015183820152602001611e27565b50506000910152565b60008151808452611e60816020860160208601611e24565b601f01601f19169290920160200192915050565b602081526000610e7f6020830184611e48565b600060208284031215611e9957600080fd5b5035919050565b80356001600160a01b0381168114611eb757600080fd5b919050565b60008060408385031215611ecf57600080fd5b611ed883611ea0565b946020939093013593505050565b600080600060608486031215611efb57600080fd5b611f0484611ea0565b9250611f1260208501611ea0565b9150604084013590509250925092565b60008060208385031215611f3557600080fd5b823567ffffffffffffffff80821115611f4d57600080fd5b818501915085601f830112611f6157600080fd5b813581811115611f7057600080fd5b866020828501011115611f8257600080fd5b60209290920196919550909350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611fec57611fec611f94565b604052919050565b6000602080838503121561200757600080fd5b823567ffffffffffffffff8082111561201f57600080fd5b818501915085601f83011261203357600080fd5b81358181111561204557612045611f94565b8060051b9150612056848301611fc3565b818152918301840191848101908884111561207057600080fd5b938501935b8385101561208e57843582529385019390850190612075565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610cca576120f283855180516001600160a01b0316825260208082015167ffffffffffffffff16908301526040908101511515910152565b92840192606092909201916001016120b6565b60006020828403121561211757600080fd5b610e7f82611ea0565b6020808252825182820181905260009190848201906040850190845b81811015610cca5783518352928401929184019160010161213c565b60008060006060848603121561216d57600080fd5b61217684611ea0565b95602085013595506040909401359392505050565b6000806040838503121561219e57600080fd5b6121a783611ea0565b9150602083013580151581146121bc57600080fd5b809150509250929050565b600080600080608085870312156121dd57600080fd5b6121e685611ea0565b935060206121f5818701611ea0565b935060408601359250606086013567ffffffffffffffff8082111561221957600080fd5b818801915088601f83011261222d57600080fd5b81358181111561223f5761223f611f94565b61225184601f19601f84011601611fc3565b9150808252898482850101111561226757600080fd5b808484018584013760008482840101525080935050505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608101610698565b600080604083850312156122d057600080fd5b6122d983611ea0565b91506122e760208401611ea0565b90509250929050565b600181811c9082168061230457607f821691505b60208210810361233d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f8211156108d157600081815260208120601f850160051c8101602086101561236a5750805b601f850160051c820191505b8181101561238957828155600101612376565b505050505050565b67ffffffffffffffff8311156123a9576123a9611f94565b6123bd836123b783546122f0565b83612343565b6000601f8411600181146123f157600085156123d95750838201355b600019600387901b1c1916600186901b1783556117ce565b600083815260209020601f19861690835b828110156124225786850135825560209485019460019092019101612402565b508682101561243f5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008351612492818460208801611e24565b8351908301906124a6818360208801611e24565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526124e16080830184611e48565b9695505050505050565b6000602082840312156124fd57600080fd5b8151610e7f81611dd956fea2646970667358221220d7d93ec2e908065cc665f64bdbfdd28f3b3b77e40f471204891eaf0ee671381364736f6c63430008100033

Deployed Bytecode Sourcemap

51566:1987:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19377:615;;;;;;;;;;-1:-1:-1;19377:615:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;19377:615:0;;;;;;;;24390:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26458:204::-;;;;;;;;;;-1:-1:-1;26458:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1802:55:1;;;1784:74;;1772:2;1757:18;26458:204:0;1638:226:1;25918:474:0;;;;;;;;;;-1:-1:-1;25918:474:0;;;;;:::i;:::-;;:::i;:::-;;18431:315;;;;;;;;;;-1:-1:-1;52960:1:0;18697:12;18484:7;18681:13;:28;-1:-1:-1;;18681:46:0;18431:315;;;2475:25:1;;;2463:2;2448:18;18431:315:0;2329:177:1;27344:170:0;;;;;;;;;;-1:-1:-1;27344:170:0;;;;;:::i;:::-;;:::i;53415:135::-;;;;;;;;;;;;;:::i;27585:185::-;;;;;;;;;;-1:-1:-1;27585:185:0;;;;;:::i;:::-;;:::i;51388:94::-;;;;;;;;;;-1:-1:-1;51388:94:0;;;;;:::i;:::-;;:::i;53078:107::-;;;;;;;;;;-1:-1:-1;53078:107:0;;;;;:::i;:::-;;:::i;46173:468::-;;;;;;;;;;-1:-1:-1;46173:468:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;24179:144::-;;;;;;;;;;-1:-1:-1;24179:144:0;;;;;:::i;:::-;;:::i;20056:224::-;;;;;;;;;;-1:-1:-1;20056:224:0;;;;;:::i;:::-;;:::i;2606:103::-;;;;;;;;;;;;;:::i;49985:892::-;;;;;;;;;;-1:-1:-1;49985:892:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1955:87::-;;;;;;;;;;-1:-1:-1;2028:6:0;;-1:-1:-1;;;;;2028:6:0;1955:87;;24559:104;;;;;;;;;;;;;:::i;52766:108::-;;;;;;;;;;-1:-1:-1;52766:108:0;;;;;:::i;:::-;-1:-1:-1;;;;;52852:16:0;52829:7;52852:16;;;:9;:16;;;;;;;52766:108;47031:2505;;;;;;;;;;-1:-1:-1;47031:2505:0;;;;;:::i;:::-;;:::i;52008:752::-;;;;;;:::i;:::-;;:::i;26734:308::-;;;;;;;;;;-1:-1:-1;26734:308:0;;;;;:::i;:::-;;:::i;51867:27::-;;;;;;;;;;-1:-1:-1;51867:27:0;;;;;;;;27841:396;;;;;;;;;;-1:-1:-1;27841:396:0;;;;;:::i;:::-;;:::i;53191:69::-;;;;;;;;;;;;;:::i;45594:420::-;;;;;;;;;;-1:-1:-1;45594:420:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;24734:318::-;;;;;;;;;;-1:-1:-1;24734:318:0;;;;;:::i;:::-;;:::i;53266:143::-;;;;;;;;;;;;;:::i;27113:164::-;;;;;;;;;;-1:-1:-1;27113:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27234:25:0;;;27210:4;27234:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27113:164;2864:201;;;;;;;;;;-1:-1:-1;2864:201:0;;;;;:::i;:::-;;:::i;19377:615::-;19462:4;19762:25;;;;;;:102;;-1:-1:-1;19839:25:0;;;;;19762:102;:179;;;-1:-1:-1;19916:25:0;;;;;19762:179;19742:199;19377:615;-1:-1:-1;;19377:615:0:o;24390:100::-;24444:13;24477:5;24470:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24390:100;:::o;26458:204::-;26526:7;26551:16;26559:7;26551;:16::i;:::-;26546:64;;26576:34;;;;;;;;;;;;;;26546:64;-1:-1:-1;26630:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26630:24:0;;26458:204::o;25918:474::-;25991:13;26023:27;26042:7;26023:18;:27::i;:::-;25991:61;;26073:5;-1:-1:-1;;;;;26067:11:0;:2;-1:-1:-1;;;;;26067:11:0;;26063:48;;26087:24;;;;;;;;;;;;;;26063:48;42561:10;-1:-1:-1;;;;;26128:28:0;;;26124:175;;-1:-1:-1;;;;;27234:25:0;;27210:4;27234:25;;;:18;:25;;;;;;;;42561:10;27234:35;;;;;;;;;;26171:128;;26248:35;;;;;;;;;;;;;;26171:128;26311:24;;;;:15;:24;;;;;;:29;;;;-1:-1:-1;;;;;26311:29:0;;;;;;;;;26356:28;;26311:24;;26356:28;;;;;;;25980:412;25918:474;;:::o;27344:170::-;27478:28;27488:4;27494:2;27498:7;27478:9;:28::i;:::-;27344:170;;;:::o;53415:135::-;2028:6;;-1:-1:-1;;;;;2028:6:0;42561:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;9683:2:1;2167:68:0;;;9665:21:1;;;9702:18;;;9695:30;9761:34;9741:18;;;9734:62;9813:18;;2167:68:0;;;;;;;;;2028:6;;53477:44:::1;::::0;-1:-1:-1;;;;;2028:6:0;;;;53499:21:::1;53477:44:::0;::::1;;;::::0;::::1;::::0;;;53499:21;2028:6;53477:44;::::1;;;;;;53461:83;;;::::0;-1:-1:-1;;;53461:83:0;;10044:2:1;53461:83:0::1;::::0;::::1;10026:21:1::0;10083:1;10063:18;;;10056:29;10121:7;10101:18;;;10094:35;10146:18;;53461:83:0::1;9842:328:1::0;53461:83:0::1;53415:135::o:0;27585:185::-;27723:39;27740:4;27746:2;27750:7;27723:39;;;;;;;;;;;;:16;:39::i;51388:94::-;51454:20;51460:7;51469:4;51454:5;:20::i;:::-;51388:94;:::o;53078:107::-;2028:6;;-1:-1:-1;;;;;2028:6:0;42561:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;9683:2:1;2167:68:0;;;9665:21:1;;;9702:18;;;9695:30;9761:34;9741:18;;;9734:62;9813:18;;2167:68:0;9481:356:1;2167:68:0;53153:12:::1;:26;53168:11:::0;;53153:12;:26:::1;:::i;46173:468::-:0;46348:15;;46262:23;;46323:22;46348:15;46415:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;46415:36:0;;-1:-1:-1;;46415:36:0;;;;;;;;;;;;46378:73;;46471:9;46466:125;46487:14;46482:1;:19;46466:125;;46543:32;46563:8;46572:1;46563:11;;;;;;;;:::i;:::-;;;;;;;46543:19;:32::i;:::-;46527:10;46538:1;46527:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;46503:3;;46466:125;;;-1:-1:-1;46612:10:0;46173:468;-1:-1:-1;;;46173:468:0:o;24179:144::-;24243:7;24286:27;24305:7;24286:18;:27::i;20056:224::-;20120:7;-1:-1:-1;;;;;20144:19:0;;20140:60;;20172:28;;;;;;;;;;;;;;20140:60;-1:-1:-1;;;;;;20218:25:0;;;;;:18;:25;;;;;;15395:13;20218:54;;20056:224::o;2606:103::-;2028:6;;-1:-1:-1;;;;;2028:6:0;42561:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;9683:2:1;2167:68:0;;;9665:21:1;;;9702:18;;;9695:30;9761:34;9741:18;;;9734:62;9813:18;;2167:68:0;9481:356:1;2167:68:0;2671:30:::1;2698:1;2671:18;:30::i;49985:892::-:0;50055:16;50109:19;50143:25;50183:22;50208:16;50218:5;50208:9;:16::i;:::-;50183:41;;50239:25;50281:14;50267:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50267:29:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;50239:57:0;;-1:-1:-1;52960:1:0;50357:472;50406:14;50391:11;:29;50357:472;;50458:15;50471:1;50458:12;:15::i;:::-;50446:27;;50496:9;:16;;;50537:8;50492:73;50587:14;;-1:-1:-1;;;;;50587:28:0;;50583:111;;50660:14;;;-1:-1:-1;50583:111:0;50737:5;-1:-1:-1;;;;;50716:26:0;:17;-1:-1:-1;;;;;50716:26:0;;50712:102;;50793:1;50767:8;50776:13;;;;;;50767:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;50712:102;50422:3;;50357:472;;;-1:-1:-1;50850:8:0;;49985:892;-1:-1:-1;;;;;;49985:892:0:o;24559:104::-;24615:13;24648:7;24641:14;;;;;:::i;47031:2505::-;47166:16;47233:4;47224:5;:13;47220:45;;47246:19;;;;;;;;;;;;;;47220:45;47280:19;47314:17;47334:14;18172:7;18199:13;;18125:95;47334:14;47314:34;-1:-1:-1;52960:1:0;47426:5;:23;47422:87;;;52960:1;47470:23;;47422:87;47585:9;47578:4;:16;47574:73;;;47622:9;47615:16;;47574:73;47661:25;47689:16;47699:5;47689:9;:16::i;:::-;47661:44;;47883:4;47875:5;:12;47871:278;;;47930:12;;;47965:31;;;47961:111;;;48041:11;48021:31;;47961:111;47889:198;47871:278;;;-1:-1:-1;48132:1:0;47871:278;48163:25;48205:17;48191:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48191:32:0;;48163:60;;48242:17;48263:1;48242:22;48238:78;;48292:8;-1:-1:-1;48285:15:0;;-1:-1:-1;;;48285:15:0;48238:78;48460:31;48494:26;48514:5;48494:19;:26::i;:::-;48460:60;;48535:25;48780:9;:16;;;48775:92;;-1:-1:-1;48837:14:0;;48775:92;48898:5;48881:478;48910:4;48905:1;:9;;:45;;;;;48933:17;48918:11;:32;;48905:45;48881:478;;;48988:15;49001:1;48988:12;:15::i;:::-;48976:27;;49026:9;:16;;;49067:8;49022:73;49117:14;;-1:-1:-1;;;;;49117:28:0;;49113:111;;49190:14;;;-1:-1:-1;49113:111:0;49267:5;-1:-1:-1;;;;;49246:26:0;:17;-1:-1:-1;;;;;49246:26:0;;49242:102;;49323:1;49297:8;49306:13;;;;;;49297:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;49242:102;48952:3;;48881:478;;;-1:-1:-1;;;49444:29:0;;;-1:-1:-1;49451:8:0;;-1:-1:-1;;47031:2505:0;;;;;;:::o;52008:752::-;52093:8;;;;52092:9;52084:39;;;;-1:-1:-1;;;52084:39:0;;12803:2:1;52084:39:0;;;12785:21:1;12842:2;12822:18;;;12815:30;12881:19;12861:18;;;12854:47;12918:18;;52084:39:0;12601:341:1;52084:39:0;52134:20;52157:13;52960:1;18697:12;18484:7;18681:13;-1:-1:-1;;18681:28:0;;;:46;;18431:315;52157:13;52134:36;;52217:9;;52204;52189:12;:24;:37;;52181:68;;;;-1:-1:-1;;;52181:68:0;;13149:2:1;52181:68:0;;;13131:21:1;13188:2;13168:18;;;13161:30;13227:20;13207:18;;;13200:48;13265:18;;52181:68:0;12947:342:1;52181:68:0;52279:14;;52266:9;:27;;52258:63;;;;-1:-1:-1;;;52258:63:0;;13496:2:1;52258:63:0;;;13478:21:1;13535:2;13515:18;;;13508:30;13574:25;13554:18;;;13547:53;13617:18;;52258:63:0;13294:347:1;52258:63:0;52406:10;52332:19;52396:21;;;:9;:21;;;;;;52354:9;;52448:1;52432:17;;52428:198;;;52478:1;52466:9;:13;52462:117;;;52520:1;52508:9;:13;52494:27;;52462:117;;;52566:1;52552:15;;52462:117;52601:10;52591:21;;;;:9;:21;;;;;52615:1;52591:25;;52428:198;52671:9;;52657:11;:23;52644:9;:36;52636:72;;;;-1:-1:-1;;;52636:72:0;;13848:2:1;52636:72:0;;;13830:21:1;13887:2;13867:18;;;13860:30;13926:25;13906:18;;;13899:53;13969:18;;52636:72:0;13646:347:1;52636:72:0;52719:28;52725:10;52737:9;52719:5;:28::i;:::-;52065:690;;;52008:752;:::o;26734:308::-;42561:10;-1:-1:-1;;;;;26833:31:0;;;26829:61;;26873:17;;;;;;;;;;;;;;26829:61;42561:10;26903:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26903:49:0;;;;;;;;;;;;:60;;;;;;;;;;;;;26979:55;;586:41:1;;;26903:49:0;;42561:10;26979:55;;559:18:1;26979:55:0;;;;;;;26734:308;;:::o;27841:396::-;28008:28;28018:4;28024:2;28028:7;28008:9;:28::i;:::-;-1:-1:-1;;;;;28051:14:0;;;:19;28047:183;;28090:56;28121:4;28127:2;28131:7;28140:5;28090:30;:56::i;:::-;28085:145;;28174:40;;;;;;;;;;;;;;53191:69;2028:6;;-1:-1:-1;;;;;2028:6:0;42561:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;9683:2:1;2167:68:0;;;9665:21:1;;;9702:18;;;9695:30;9761:34;9741:18;;;9734:62;9813:18;;2167:68:0;9481:356:1;2167:68:0;53246:8:::1;::::0;;53234:20;;::::1;53246:8;::::0;;::::1;53245:9;53234:20;::::0;;53191:69::o;45594:420::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52960:1:0;45750:7;:25;:54;;;-1:-1:-1;18172:7:0;18199:13;45779:7;:25;;45750:54;45746:103;;;45828:9;45594:420;-1:-1:-1;;45594:420:0:o;45746:103::-;45871:21;45884:7;45871:12;:21::i;:::-;45859:33;;45907:9;:16;;;45903:65;;;45947:9;45594:420;-1:-1:-1;;45594:420:0:o;45903:65::-;45985:21;45998:7;45985:12;:21::i;24734:318::-;24807:13;24838:16;24846:7;24838;:16::i;:::-;24833:59;;24863:29;;;;;;;;;;;;;;24833:59;24905:21;24929:10;:8;:10::i;:::-;24905:34;;24963:7;24957:21;24982:1;24957:26;:87;;;;;;;;;;;;;;;;;25010:7;25019:18;25029:7;25019:9;:18::i;:::-;24993:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24950:94;24734:318;-1:-1:-1;;;24734:318:0:o;53266:143::-;2028:6;;-1:-1:-1;;;;;2028:6:0;42561:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;9683:2:1;2167:68:0;;;9665:21:1;;;9702:18;;;9695:30;9761:34;9741:18;;;9734:62;9813:18;;2167:68:0;9481:356:1;2167:68:0;52960:1;18697:12;18484:7;18681:13;:28;-1:-1:-1;;18681:46:0;53328:18;53320:53:::1;;;::::0;-1:-1:-1;;;53320:53:0;;14701:2:1;53320:53:0::1;::::0;::::1;14683:21:1::0;14740:2;14720:18;;;14713:30;14779:24;14759:18;;;14752:52;14821:18;;53320:53:0::1;14499:346:1::0;53320:53:0::1;53382:21;53388:10;53400:2;53382:5;:21::i;2864:201::-:0;2028:6;;-1:-1:-1;;;;;2028:6:0;42561:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;9683:2:1;2167:68:0;;;9665:21:1;;;9702:18;;;9695:30;9761:34;9741:18;;;9734:62;9813:18;;2167:68:0;9481:356:1;2167:68:0;-1:-1:-1;;;;;2953:22:0;::::1;2945:73;;;::::0;-1:-1:-1;;;2945:73:0;;15052:2:1;2945:73:0::1;::::0;::::1;15034:21:1::0;15091:2;15071:18;;;15064:30;15130:34;15110:18;;;15103:62;15201:8;15181:18;;;15174:36;15227:19;;2945:73:0::1;14850:402:1::0;2945:73:0::1;3029:28;3048:8;3029:18;:28::i;28492:273::-:0;28549:4;28605:7;52960:1;28586:26;;:66;;;;;28639:13;;28629:7;:23;28586:66;:152;;;;-1:-1:-1;;28690:26:0;;;;:17;:26;;;;;;16165:8;28690:43;:48;;28492:273::o;21694:1129::-;21761:7;21796;;52960:1;21845:23;21841:915;;21898:13;;21891:4;:20;21887:869;;;21936:14;21953:23;;;:17;:23;;;;;;;16165:8;22042:23;;:28;;22038:699;;22561:113;22568:6;22578:1;22568:11;22561:113;;-1:-1:-1;;;22639:6:0;22621:25;;;;:17;:25;;;;;;22561:113;;22038:699;21913:843;21887:869;22784:31;;;;;;;;;;;;;;33731:2515;33846:27;33876;33895:7;33876:18;:27::i;:::-;33846:57;;33961:4;-1:-1:-1;;;;;33920:45:0;33936:19;-1:-1:-1;;;;;33920:45:0;;33916:86;;33974:28;;;;;;;;;;;;;;33916:86;34015:22;42561:10;-1:-1:-1;;;;;34041:27:0;;;;:87;;-1:-1:-1;;;;;;27234:25:0;;27210:4;27234:25;;;:18;:25;;;;;;;;42561:10;27234:35;;;;;;;;;;34085:43;34041:147;;;-1:-1:-1;42561:10:0;34145:20;34157:7;34145:11;:20::i;:::-;-1:-1:-1;;;;;34145:43:0;;34041:147;34015:174;;34207:17;34202:66;;34233:35;;;;;;;;;;;;;;34202:66;-1:-1:-1;;;;;34283:16:0;;34279:52;;34308:23;;;;;;;;;;;;;;34279:52;34460:24;;;;:15;:24;;;;;;;;34453:31;;;;;;-1:-1:-1;;;;;34852:24:0;;;;;:18;:24;;;;;34850:26;;-1:-1:-1;;34850:26:0;;;34921:22;;;;;;;34919:24;;-1:-1:-1;34919:24:0;;;35214:26;;;:17;:26;;;;;16447:8;35302:15;16049:3;35302:41;35260:84;;:128;;35214:174;;;35508:46;;:51;;35504:626;;35612:1;35602:11;;35580:19;35735:30;;;:17;:30;;;;;;:35;;35731:384;;35873:13;;35858:11;:28;35854:242;;36020:30;;;;:17;:30;;;;;:52;;;35854:242;35561:569;35504:626;36177:7;36173:2;-1:-1:-1;;;;;36158:27:0;36167:4;-1:-1:-1;;;;;36158:27:0;;;;;;;;;;;36196:42;33835:2411;;33731:2515;;;:::o;36642:2809::-;36722:27;36752;36771:7;36752:18;:27::i;:::-;36722:57;-1:-1:-1;36722:57:0;36857:311;;;;36891:22;42561:10;-1:-1:-1;;;;;36917:27:0;;;;:91;;-1:-1:-1;;;;;;27234:25:0;;27210:4;27234:25;;;:18;:25;;;;;;;;42561:10;27234:35;;;;;;;;;;36965:43;36917:155;;;-1:-1:-1;42561:10:0;37029:20;37041:7;37029:11;:20::i;:::-;-1:-1:-1;;;;;37029:43:0;;36917:155;36891:182;;37095:17;37090:66;;37121:35;;;;;;;;;;;;;;37090:66;36876:292;36857:311;37304:24;;;;:15;:24;;;;;;;;37297:31;;;;;;-1:-1:-1;;;;;37917:24:0;;;;:18;:24;;;;;:59;;37945:31;37917:59;;;38214:26;;;:17;:26;;;;;38260:165;38304:15;16049:3;38304:41;38260:86;;:165;38214:211;;16447:8;38545:46;;:51;;38541:626;;38649:1;38639:11;;38617:19;38772:30;;;:17;:30;;;;;;:35;;38768:384;;38910:13;;38895:11;:28;38891:242;;39057:30;;;;:17;:30;;;;;:52;;;38891:242;38598:569;38541:626;39195:35;;39222:7;;39218:1;;-1:-1:-1;;;;;39195:35:0;;;;;39218:1;;39195:35;-1:-1:-1;;39418:12:0;:14;;;;;;-1:-1:-1;;36642:2809:0:o;3225:191::-;3318:6;;;-1:-1:-1;;;;;3335:17:0;;;;;;;;;;;3368:40;;3318:6;;;3335:17;3318:6;;3368:40;;3299:16;;3368:40;3288:128;3225:191;:::o;23303:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;23423:24:0;;;;:17;:24;;;;;;23404:44;;-1:-1:-1;;;;;;;;;;;;;23027:41:0;;;;16049:3;23113:32;;;23079:67;;-1:-1:-1;;;23079:67:0;16165:8;23176:23;;;:28;;-1:-1:-1;;;23157:47:0;-1:-1:-1;22917:295:0;31821:1656;31886:20;31909:13;-1:-1:-1;;;;;31937:16:0;;31933:48;;31962:19;;;;;;;;;;;;;;31933:48;31996:8;32008:1;31996:13;31992:44;;32018:18;;;;;;;;;;;;;;31992:44;-1:-1:-1;;;;;32585:22:0;;;;;;:18;:22;;;;15532:2;32585:22;;;:70;;32623:31;32611:44;;32585:70;;;32898:31;;;:17;:31;;;;;32991:15;16049:3;32991:41;32949:84;;-1:-1:-1;33069:13:0;;16312:3;33054:56;32949:162;32898:213;;:31;33192:23;;;33232:111;33259:40;;33284:14;;;;;-1:-1:-1;;;;;33259:40:0;;;33276:1;;33259:40;;33276:1;;33259:40;33338:3;33323:12;:18;33232:111;;-1:-1:-1;33359:13:0;:28;27344:170;;;:::o;39943:716::-;40127:88;;;;;40106:4;;-1:-1:-1;;;;;40127:45:0;;;;;:88;;42561:10;;40194:4;;40200:7;;40209:5;;40127:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40127:88:0;;;;;;;;-1:-1:-1;;40127:88:0;;;;;;;;;;;;:::i;:::-;;;40123:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40410:6;:13;40427:1;40410:18;40406:235;;40456:40;;;;;;;;;;;;;;40406:235;40599:6;40593:13;40584:6;40580:2;40576:15;40569:38;40123:529;40286:64;;40296:54;40286:64;;-1:-1:-1;39943:716:0;;;;;;:::o;23959:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;24062:47:0;24081:27;24100:7;24081:18;:27::i;:::-;-1:-1:-1;;;;;;;;;;;;;23027:41:0;;;;16049:3;23113:32;;;23079:67;;-1:-1:-1;;;23079:67:0;16165:8;23176:23;;;:28;;-1:-1:-1;;;23157:47:0;-1:-1:-1;22917:295:0;52973:99;53025:13;53054:12;53047:19;;;;;:::i;42685:1959::-;43156:4;43150:11;;43163:3;43146:21;;43241:17;;;;43938:11;;;43817:5;44070:2;44084;44074:13;;44066:22;43938:11;44053:36;44125:2;44115:13;;43708:682;44144:4;43708:682;;;44319:1;44314:3;44310:11;44303:18;;44370:2;44364:4;44360:13;44356:2;44352:22;44347:3;44339:36;44240:2;44230:13;;43708:682;;;-1:-1:-1;44432:13:0;;;-1:-1:-1;;44547:12:0;;;44607:19;;;44547:12;42685:1959;-1:-1:-1;42685:1959:0: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:250::-;723:1;733:113;747:6;744:1;741:13;733:113;;;823:11;;;817:18;804:11;;;797:39;769:2;762:10;733:113;;;-1:-1:-1;;880:1:1;862:16;;855:27;638:250::o;893:330::-;935:3;973:5;967:12;1000:6;995:3;988:19;1016:76;1085:6;1078:4;1073:3;1069:14;1062:4;1055:5;1051:16;1016:76;:::i;:::-;1137:2;1125:15;-1:-1:-1;;1121:88:1;1112:98;;;;1212:4;1108:109;;893:330;-1:-1:-1;;893:330:1:o;1228:220::-;1377:2;1366:9;1359:21;1340:4;1397:45;1438:2;1427:9;1423:18;1415:6;1397:45;:::i;1453:180::-;1512:6;1565:2;1553:9;1544:7;1540:23;1536:32;1533:52;;;1581:1;1578;1571:12;1533:52;-1:-1:-1;1604:23:1;;1453:180;-1:-1:-1;1453:180:1:o;1869:196::-;1937:20;;-1:-1:-1;;;;;1986:54:1;;1976:65;;1966:93;;2055:1;2052;2045:12;1966:93;1869:196;;;:::o;2070:254::-;2138:6;2146;2199:2;2187:9;2178:7;2174:23;2170:32;2167:52;;;2215:1;2212;2205:12;2167:52;2238:29;2257:9;2238:29;:::i;:::-;2228:39;2314:2;2299:18;;;;2286:32;;-1:-1:-1;;;2070:254:1:o;2511:328::-;2588:6;2596;2604;2657:2;2645:9;2636:7;2632:23;2628:32;2625:52;;;2673:1;2670;2663:12;2625:52;2696:29;2715:9;2696:29;:::i;:::-;2686:39;;2744:38;2778:2;2767:9;2763:18;2744:38;:::i;:::-;2734:48;;2829:2;2818:9;2814:18;2801:32;2791:42;;2511:328;;;;;:::o;2844:592::-;2915:6;2923;2976:2;2964:9;2955:7;2951:23;2947:32;2944:52;;;2992:1;2989;2982:12;2944:52;3032:9;3019:23;3061:18;3102:2;3094:6;3091:14;3088:34;;;3118:1;3115;3108:12;3088:34;3156:6;3145:9;3141:22;3131:32;;3201:7;3194:4;3190:2;3186:13;3182:27;3172:55;;3223:1;3220;3213:12;3172:55;3263:2;3250:16;3289:2;3281:6;3278:14;3275:34;;;3305:1;3302;3295:12;3275:34;3350:7;3345:2;3336:6;3332:2;3328:15;3324:24;3321:37;3318:57;;;3371:1;3368;3361:12;3318:57;3402:2;3394:11;;;;;3424:6;;-1:-1:-1;2844:592:1;;-1:-1:-1;;;;2844:592:1:o;3441:184::-;3493:77;3490:1;3483:88;3590:4;3587:1;3580:15;3614:4;3611:1;3604:15;3630:334;3701:2;3695:9;3757:2;3747:13;;-1:-1:-1;;3743:86:1;3731:99;;3860:18;3845:34;;3881:22;;;3842:62;3839:88;;;3907:18;;:::i;:::-;3943:2;3936:22;3630:334;;-1:-1:-1;3630:334:1:o;3969:946::-;4053:6;4084:2;4127;4115:9;4106:7;4102:23;4098:32;4095:52;;;4143:1;4140;4133:12;4095:52;4183:9;4170:23;4212:18;4253:2;4245:6;4242:14;4239:34;;;4269:1;4266;4259:12;4239:34;4307:6;4296:9;4292:22;4282:32;;4352:7;4345:4;4341:2;4337:13;4333:27;4323:55;;4374:1;4371;4364:12;4323:55;4410:2;4397:16;4432:2;4428;4425:10;4422:36;;;4438:18;;:::i;:::-;4484:2;4481:1;4477:10;4467:20;;4507:28;4531:2;4527;4523:11;4507:28;:::i;:::-;4569:15;;;4639:11;;;4635:20;;;4600:12;;;;4667:19;;;4664:39;;;4699:1;4696;4689:12;4664:39;4723:11;;;;4743:142;4759:6;4754:3;4751:15;4743:142;;;4825:17;;4813:30;;4776:12;;;;4863;;;;4743:142;;;4904:5;3969:946;-1:-1:-1;;;;;;;;3969:946:1:o;5226:722::-;5459:2;5511:21;;;5581:13;;5484:18;;;5603:22;;;5430:4;;5459:2;5682:15;;;;5656:2;5641:18;;;5430:4;5725:197;5739:6;5736:1;5733:13;5725:197;;;5788:52;5836:3;5827:6;5821:13;5004:12;;-1:-1:-1;;;;;5000:61:1;4988:74;;5115:4;5104:16;;;5098:23;5123:18;5094:48;5078:14;;;5071:72;5206:4;5195:16;;;5189:23;5182:31;5175:39;5159:14;;5152:63;4920:301;5788:52;5897:15;;;;5869:4;5860:14;;;;;5761:1;5754:9;5725:197;;5953:186;6012:6;6065:2;6053:9;6044:7;6040:23;6036:32;6033:52;;;6081:1;6078;6071:12;6033:52;6104:29;6123:9;6104:29;:::i;6144:632::-;6315:2;6367:21;;;6437:13;;6340:18;;;6459:22;;;6286:4;;6315:2;6538:15;;;;6512:2;6497:18;;;6286:4;6581:169;6595:6;6592:1;6589:13;6581:169;;;6656:13;;6644:26;;6725:15;;;;6690:12;;;;6617:1;6610:9;6581:169;;6781:322;6858:6;6866;6874;6927:2;6915:9;6906:7;6902:23;6898:32;6895:52;;;6943:1;6940;6933:12;6895:52;6966:29;6985:9;6966:29;:::i;:::-;6956:39;7042:2;7027:18;;7014:32;;-1:-1:-1;7093:2:1;7078:18;;;7065:32;;6781:322;-1:-1:-1;;;6781:322:1:o;7108:347::-;7173:6;7181;7234:2;7222:9;7213:7;7209:23;7205:32;7202:52;;;7250:1;7247;7240:12;7202:52;7273:29;7292:9;7273:29;:::i;:::-;7263:39;;7352:2;7341:9;7337:18;7324:32;7399:5;7392:13;7385:21;7378:5;7375:32;7365:60;;7421:1;7418;7411:12;7365:60;7444:5;7434:15;;;7108:347;;;;;:::o;7460:1039::-;7555:6;7563;7571;7579;7632:3;7620:9;7611:7;7607:23;7603:33;7600:53;;;7649:1;7646;7639:12;7600:53;7672:29;7691:9;7672:29;:::i;:::-;7662:39;;7720:2;7741:38;7775:2;7764:9;7760:18;7741:38;:::i;:::-;7731:48;;7826:2;7815:9;7811:18;7798:32;7788:42;;7881:2;7870:9;7866:18;7853:32;7904:18;7945:2;7937:6;7934:14;7931:34;;;7961:1;7958;7951:12;7931:34;7999:6;7988:9;7984:22;7974:32;;8044:7;8037:4;8033:2;8029:13;8025:27;8015:55;;8066:1;8063;8056:12;8015:55;8102:2;8089:16;8124:2;8120;8117:10;8114:36;;;8130:18;;:::i;:::-;8172:112;8280:2;-1:-1:-1;;8204:4:1;8200:2;8196:13;8192:86;8188:95;8172:112;:::i;:::-;8159:125;;8307:2;8300:5;8293:17;8347:7;8342:2;8337;8333;8329:11;8325:20;8322:33;8319:53;;;8368:1;8365;8358:12;8319:53;8423:2;8418;8414;8410:11;8405:2;8398:5;8394:14;8381:45;8467:1;8462:2;8457;8450:5;8446:14;8442:23;8435:34;;8488:5;8478:15;;;;;7460:1039;;;;;;;:::o;8504:265::-;5004:12;;-1:-1:-1;;;;;5000:61:1;4988:74;;5115:4;5104:16;;;5098:23;5123:18;5094:48;5078:14;;;5071:72;5206:4;5195:16;;;5189:23;5182:31;5175:39;5159:14;;;5152:63;8700:2;8685:18;;8712:51;4920:301;8774:260;8842:6;8850;8903:2;8891:9;8882:7;8878:23;8874:32;8871:52;;;8919:1;8916;8909:12;8871:52;8942:29;8961:9;8942:29;:::i;:::-;8932:39;;8990:38;9024:2;9013:9;9009:18;8990:38;:::i;:::-;8980:48;;8774:260;;;;;:::o;9039:437::-;9118:1;9114:12;;;;9161;;;9182:61;;9236:4;9228:6;9224:17;9214:27;;9182:61;9289:2;9281:6;9278:14;9258:18;9255:38;9252:218;;9326:77;9323:1;9316:88;9427:4;9424:1;9417:15;9455:4;9452:1;9445:15;9252:218;;9039:437;;;:::o;10301:545::-;10403:2;10398:3;10395:11;10392:448;;;10439:1;10464:5;10460:2;10453:17;10509:4;10505:2;10495:19;10579:2;10567:10;10563:19;10560:1;10556:27;10550:4;10546:38;10615:4;10603:10;10600:20;10597:47;;;-1:-1:-1;10638:4:1;10597:47;10693:2;10688:3;10684:12;10681:1;10677:20;10671:4;10667:31;10657:41;;10748:82;10766:2;10759:5;10756:13;10748:82;;;10811:17;;;10792:1;10781:13;10748:82;;;10752:3;;;10301:545;;;:::o;11082:1325::-;11206:18;11201:3;11198:27;11195:53;;;11228:18;;:::i;:::-;11257:94;11347:3;11307:38;11339:4;11333:11;11307:38;:::i;:::-;11301:4;11257:94;:::i;:::-;11377:1;11402:2;11397:3;11394:11;11419:1;11414:735;;;;12193:1;12210:3;12207:93;;;-1:-1:-1;12266:19:1;;;12253:33;12207:93;-1:-1:-1;;10979:1:1;10975:11;;;10971:84;10967:89;10957:100;11063:1;11059:11;;;10954:117;12313:78;;11387:1014;;11414:735;10248:1;10241:14;;;10285:4;10272:18;;-1:-1:-1;;11450:76:1;;;11610:9;11632:229;11646:7;11643:1;11640:14;11632:229;;;11735:19;;;11722:33;11707:49;;11842:4;11827:20;;;;11795:1;11783:14;;;;11662:12;11632:229;;;11636:3;11889;11880:7;11877:16;11874:219;;;-1:-1:-1;;12003:3:1;11997;11994:1;11990:11;11986:21;11982:94;11978:99;11965:9;11960:3;11956:19;11943:33;11939:139;11931:6;11924:155;11874:219;;;12136:1;12130:3;12127:1;12123:11;12119:19;12113:4;12106:33;11387:1014;;11082:1325;;;:::o;12412:184::-;12464:77;12461:1;12454:88;12561:4;12558:1;12551:15;12585:4;12582:1;12575:15;13998:496;14177:3;14215:6;14209:13;14231:66;14290:6;14285:3;14278:4;14270:6;14266:17;14231:66;:::i;:::-;14360:13;;14319:16;;;;14382:70;14360:13;14319:16;14429:4;14417:17;;14382:70;:::i;:::-;14468:20;;13998:496;-1:-1:-1;;;;13998:496:1:o;15257:512::-;15451:4;-1:-1:-1;;;;;15561:2:1;15553:6;15549:15;15538:9;15531:34;15613:2;15605:6;15601:15;15596:2;15585:9;15581:18;15574:43;;15653:6;15648:2;15637:9;15633:18;15626:34;15696:3;15691:2;15680:9;15676:18;15669:31;15717:46;15758:3;15747:9;15743:19;15735:6;15717:46;:::i;:::-;15709:54;15257:512;-1:-1:-1;;;;;;15257:512:1:o;15774:249::-;15843:6;15896:2;15884:9;15875:7;15871:23;15867:32;15864:52;;;15912:1;15909;15902:12;15864:52;15944:9;15938:16;15963:30;15987:5;15963:30;:::i

Swarm Source

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