ETH Price: $2,903.62 (+2.90%)
 

Overview

Max Total Supply

2,500 AAA

Holders

235

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
roconft.eth
Balance
10 AAA
0xc563fd70b64f6e3d05c2248a6caaabd6b34b8f27
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:
AlienArmyApes_NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: MIT

// File: contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: contracts/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: contracts/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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

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

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

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

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

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

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

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

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

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

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

pragma solidity ^0.8.7;
contract AlienArmyApes_NFT is ERC721A, Ownable {
    using Strings for uint256;

    string private baseURI;
    string public unrevURI;
    string public baseExtension = ".json";
    uint256 public cost = 100000000000000000;
    uint256 public presaleCost = 50000000000000000;
    uint256 public maxSupply = 2500;
    bool public public_paused = false;
    bool public pre_paused = false;
    bool public revealed = false;

    constructor(string memory _initBaseURI, string memory _initUnrevURI)
        ERC721A("Alien Army Apes", "AAA")
        {
            setBaseURI(_initBaseURI);
            setUnrevURI(_initUnrevURI);
        }

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

    // public

    function mint(uint _amount) public payable {
        uint256 supply = totalSupply();
        require(!public_paused, "Sale has not started yet");
        require(supply + _amount <= maxSupply);
        require(msg.value >= cost * _amount);       

        _mint(msg.sender, _amount);
    }

    function preMint(uint _amount) public payable {
        uint256 supply = totalSupply();
        require(!pre_paused, "Sale has not started yet");
        require(supply + _amount <= 200);
        require(msg.value >= presaleCost * _amount);       

        _mint(msg.sender, _amount);
    }

    function ownerMint(address _to, uint _amount) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply + _amount <= maxSupply);
        _mint(_to, _amount);
    }

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

        if(!revealed) {
            return unrevURI;
        }

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }

    //only owner


    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

      function setPresaleCost(uint256 _newCost) public onlyOwner {
        presaleCost = _newCost;
    }
    
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setUnrevURI(string memory _newUnrevURI) public onlyOwner {
        unrevURI = _newUnrevURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function startPublicSale() public onlyOwner {
        public_paused = false;
    }
    
    function stopPublicSale() public onlyOwner {
        public_paused = true;
    }

    function startPreSale() public onlyOwner {
        pre_paused = false;
    }

    function stopPreSale() public onlyOwner {
        pre_paused = true;
    }

    function revealNFT() public onlyOwner {
        revealed = true;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initUnrevURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[{"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pre_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUnrevURI","type":"string"}],"name":"setUnrevURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200044a565b5067016345785d8a0000600c5566b1a2bc2ec50000600d556109c4600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506000600f60026101000a81548160ff021916908315150217905550348015620000cd57600080fd5b5060405162003d5e38038062003d5e8339818101604052810190620000f3919062000578565b6040518060400160405280600f81526020017f416c69656e2041726d79204170657300000000000000000000000000000000008152506040518060400160405280600381526020017f41414100000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001779291906200044a565b508060039080519060200190620001909291906200044a565b50620001a1620001f360201b60201c565b6000819055505050620001c9620001bd620001fc60201b60201c565b6200020460201b60201c565b620001da82620002ca60201b60201c565b620001eb816200037560201b60201c565b505062000804565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002da620001fc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003006200042060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003509062000624565b60405180910390fd5b8060099080519060200190620003719291906200044a565b5050565b62000385620001fc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003ab6200042060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000404576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003fb9062000624565b60405180910390fd5b80600a90805190602001906200041c9291906200044a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200045890620006ec565b90600052602060002090601f0160209004810192826200047c5760008555620004c8565b82601f106200049757805160ff1916838001178555620004c8565b82800160010185558215620004c8579182015b82811115620004c7578251825591602001919060010190620004aa565b5b509050620004d79190620004db565b5090565b5b80821115620004f6576000816000905550600101620004dc565b5090565b6000620005116200050b846200066f565b62000646565b90508281526020810184848401111562000530576200052f620007bb565b5b6200053d848285620006b6565b509392505050565b600082601f8301126200055d576200055c620007b6565b5b81516200056f848260208601620004fa565b91505092915050565b60008060408385031215620005925762000591620007c5565b5b600083015167ffffffffffffffff811115620005b357620005b2620007c0565b5b620005c18582860162000545565b925050602083015167ffffffffffffffff811115620005e557620005e4620007c0565b5b620005f38582860162000545565b9150509250929050565b60006200060c602083620006a5565b91506200061982620007db565b602082019050919050565b600060208201905081810360008301526200063f81620005fd565b9050919050565b60006200065262000665565b905062000660828262000722565b919050565b6000604051905090565b600067ffffffffffffffff8211156200068d576200068c62000787565b5b6200069882620007ca565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006d6578082015181840152602081019050620006b9565b83811115620006e6576000848401525b50505050565b600060028204905060018216806200070557607f821691505b602082108114156200071c576200071b62000758565b5b50919050565b6200072d82620007ca565b810181811067ffffffffffffffff821117156200074f576200074e62000787565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61354a80620008146000396000f3fe6080604052600436106102305760003560e01c80636352211e1161012e578063b88d4fde116100ab578063da1b91c31161006f578063da1b91c3146107a2578063da3ef23f146107b9578063e985e9c5146107e2578063f2fde38b1461081f578063f8fb33661461084857610230565b8063b88d4fde146106bb578063c6682862146106e4578063c87b56dd1461070f578063ccde53051461074c578063d5abeb011461077757610230565b80638da5cb5b116100f25780638da5cb5b146105f75780638fdcf9421461062257806395d89b411461064b578063a0712d6814610676578063a22cb4651461069257610230565b80636352211e1461052157806370a082311461055e578063715018a61461059b578063841bfb27146105b25780638ad433ac146105db57610230565b80632a23d07d116101bc5780635183022711610180578063518302271461046057806355dd574c1461048b57806355f804b3146104a2578063580b1c8d146104cb5780635c6331bd146104f657610230565b80632a23d07d146103b05780633ccfd60b146103db57806342842e0e146103e557806344a0d68a1461040e578063484b973c1461043757610230565b8063095ea7b311610203578063095ea7b3146102f15780630c1c972a1461031a57806313faede61461033157806318160ddd1461035c57806323b872dd1461038757610230565b806301ffc9a71461023557806304b4bba91461027257806306fdde0314610289578063081812fc146102b4575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612b16565b61085f565b6040516102699190612e59565b60405180910390f35b34801561027e57600080fd5b506102876108f1565b005b34801561029557600080fd5b5061029e61098a565b6040516102ab9190612e74565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190612bb9565b610a1c565b6040516102e89190612df2565b60405180910390f35b3480156102fd57600080fd5b5061031860048036038101906103139190612ad6565b610a98565b005b34801561032657600080fd5b5061032f610bd9565b005b34801561033d57600080fd5b50610346610c72565b6040516103539190612f16565b60405180910390f35b34801561036857600080fd5b50610371610c78565b60405161037e9190612f16565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a991906129c0565b610c8f565b005b3480156103bc57600080fd5b506103c5610fb4565b6040516103d29190612f16565b60405180910390f35b6103e3610fba565b005b3480156103f157600080fd5b5061040c600480360381019061040791906129c0565b61107f565b005b34801561041a57600080fd5b5061043560048036038101906104309190612bb9565b61109f565b005b34801561044357600080fd5b5061045e60048036038101906104599190612ad6565b611125565b005b34801561046c57600080fd5b506104756111d6565b6040516104829190612e59565b60405180910390f35b34801561049757600080fd5b506104a06111e9565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190612b70565b611282565b005b3480156104d757600080fd5b506104e0611318565b6040516104ed9190612e74565b60405180910390f35b34801561050257600080fd5b5061050b6113a6565b6040516105189190612e59565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612bb9565b6113b9565b6040516105559190612df2565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190612953565b6113cb565b6040516105929190612f16565b60405180910390f35b3480156105a757600080fd5b506105b0611484565b005b3480156105be57600080fd5b506105d960048036038101906105d49190612b70565b61150c565b005b6105f560048036038101906105f09190612bb9565b6115a2565b005b34801561060357600080fd5b5061060c61163f565b6040516106199190612df2565b60405180910390f35b34801561062e57600080fd5b5061064960048036038101906106449190612bb9565b611669565b005b34801561065757600080fd5b506106606116ef565b60405161066d9190612e74565b60405180910390f35b610690600480360381019061068b9190612bb9565b611781565b005b34801561069e57600080fd5b506106b960048036038101906106b49190612a96565b61181f565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190612a13565b611997565b005b3480156106f057600080fd5b506106f9611a0a565b6040516107069190612e74565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190612bb9565b611a98565b6040516107439190612e74565b60405180910390f35b34801561075857600080fd5b50610761611be9565b60405161076e9190612e59565b60405180910390f35b34801561078357600080fd5b5061078c611bfc565b6040516107999190612f16565b60405180910390f35b3480156107ae57600080fd5b506107b7611c02565b005b3480156107c557600080fd5b506107e060048036038101906107db9190612b70565b611c9b565b005b3480156107ee57600080fd5b5061080960048036038101906108049190612980565b611d31565b6040516108169190612e59565b60405180910390f35b34801561082b57600080fd5b5061084660048036038101906108419190612953565b611dc5565b005b34801561085457600080fd5b5061085d611ebd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ea5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108f9611f56565b73ffffffffffffffffffffffffffffffffffffffff1661091761163f565b73ffffffffffffffffffffffffffffffffffffffff161461096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490612ed6565b60405180910390fd5b6001600f60026101000a81548160ff021916908315150217905550565b606060028054610999906131db565b80601f01602080910402602001604051908101604052809291908181526020018280546109c5906131db565b8015610a125780601f106109e757610100808354040283529160200191610a12565b820191906000526020600020905b8154815290600101906020018083116109f557829003601f168201915b5050505050905090565b6000610a2782611f5e565b610a5d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa3826113b9565b90508073ffffffffffffffffffffffffffffffffffffffff16610ac4611fbd565b73ffffffffffffffffffffffffffffffffffffffff1614610b2757610af081610aeb611fbd565b611d31565b610b26576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610be1611f56565b73ffffffffffffffffffffffffffffffffffffffff16610bff61163f565b73ffffffffffffffffffffffffffffffffffffffff1614610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90612ed6565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550565b600c5481565b6000610c82611fc5565b6001546000540303905090565b6000610c9a82611fce565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d01576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d0d8461209c565b91509150610d238187610d1e611fbd565b6120be565b610d6f57610d3886610d33611fbd565b611d31565b610d6e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610dd6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610de38686866001612102565b8015610dee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ebc85610e98888887612108565b7c020000000000000000000000000000000000000000000000000000000017612130565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f44576000600185019050600060046000838152602001908152602001600020541415610f42576000548114610f41578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fac868686600161215b565b505050505050565b600d5481565b610fc2611f56565b73ffffffffffffffffffffffffffffffffffffffff16610fe061163f565b73ffffffffffffffffffffffffffffffffffffffff1614611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d90612ed6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561107c573d6000803e3d6000fd5b50565b61109a83838360405180602001604052806000815250611997565b505050565b6110a7611f56565b73ffffffffffffffffffffffffffffffffffffffff166110c561163f565b73ffffffffffffffffffffffffffffffffffffffff161461111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290612ed6565b60405180910390fd5b80600c8190555050565b61112d611f56565b73ffffffffffffffffffffffffffffffffffffffff1661114b61163f565b73ffffffffffffffffffffffffffffffffffffffff16146111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890612ed6565b60405180910390fd5b60006111ab610c78565b9050600e5482826111bc9190613010565b11156111c757600080fd5b6111d18383612161565b505050565b600f60029054906101000a900460ff1681565b6111f1611f56565b73ffffffffffffffffffffffffffffffffffffffff1661120f61163f565b73ffffffffffffffffffffffffffffffffffffffff1614611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c90612ed6565b60405180910390fd5b6000600f60016101000a81548160ff021916908315150217905550565b61128a611f56565b73ffffffffffffffffffffffffffffffffffffffff166112a861163f565b73ffffffffffffffffffffffffffffffffffffffff16146112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f590612ed6565b60405180910390fd5b8060099080519060200190611314929190612767565b5050565b600a8054611325906131db565b80601f0160208091040260200160405190810160405280929190818152602001828054611351906131db565b801561139e5780601f106113735761010080835404028352916020019161139e565b820191906000526020600020905b81548152906001019060200180831161138157829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b60006113c482611fce565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611433576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61148c611f56565b73ffffffffffffffffffffffffffffffffffffffff166114aa61163f565b73ffffffffffffffffffffffffffffffffffffffff1614611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f790612ed6565b60405180910390fd5b61150a6000612335565b565b611514611f56565b73ffffffffffffffffffffffffffffffffffffffff1661153261163f565b73ffffffffffffffffffffffffffffffffffffffff1614611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90612ed6565b60405180910390fd5b80600a908051906020019061159e929190612767565b5050565b60006115ac610c78565b9050600f60019054906101000a900460ff16156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590612e96565b60405180910390fd5b60c8828261160c9190613010565b111561161757600080fd5b81600d546116259190613097565b34101561163157600080fd5b61163b3383612161565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611671611f56565b73ffffffffffffffffffffffffffffffffffffffff1661168f61163f565b73ffffffffffffffffffffffffffffffffffffffff16146116e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dc90612ed6565b60405180910390fd5b80600d8190555050565b6060600380546116fe906131db565b80601f016020809104026020016040519081016040528092919081815260200182805461172a906131db565b80156117775780601f1061174c57610100808354040283529160200191611777565b820191906000526020600020905b81548152906001019060200180831161175a57829003601f168201915b5050505050905090565b600061178b610c78565b9050600f60009054906101000a900460ff16156117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490612e96565b60405180910390fd5b600e5482826117ec9190613010565b11156117f757600080fd5b81600c546118059190613097565b34101561181157600080fd5b61181b3383612161565b5050565b611827611fbd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561188c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611899611fbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611946611fbd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161198b9190612e59565b60405180910390a35050565b6119a2848484610c8f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a04576119cd848484846123fb565b611a03576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b8054611a17906131db565b80601f0160208091040260200160405190810160405280929190818152602001828054611a43906131db565b8015611a905780601f10611a6557610100808354040283529160200191611a90565b820191906000526020600020905b815481529060010190602001808311611a7357829003601f168201915b505050505081565b6060611aa382611f5e565b611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad990612ef6565b60405180910390fd5b600f60029054906101000a900460ff16611b8857600a8054611b03906131db565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2f906131db565b8015611b7c5780601f10611b5157610100808354040283529160200191611b7c565b820191906000526020600020905b815481529060010190602001808311611b5f57829003601f168201915b50505050509050611be4565b6000611b9261255b565b90506000815111611bb25760405180602001604052806000815250611be0565b80611bbc846125ed565b600b604051602001611bd093929190612dc1565b6040516020818303038152906040525b9150505b919050565b600f60019054906101000a900460ff1681565b600e5481565b611c0a611f56565b73ffffffffffffffffffffffffffffffffffffffff16611c2861163f565b73ffffffffffffffffffffffffffffffffffffffff1614611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7590612ed6565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b611ca3611f56565b73ffffffffffffffffffffffffffffffffffffffff16611cc161163f565b73ffffffffffffffffffffffffffffffffffffffff1614611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e90612ed6565b60405180910390fd5b80600b9080519060200190611d2d929190612767565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dcd611f56565b73ffffffffffffffffffffffffffffffffffffffff16611deb61163f565b73ffffffffffffffffffffffffffffffffffffffff1614611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890612ed6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea890612eb6565b60405180910390fd5b611eba81612335565b50565b611ec5611f56565b73ffffffffffffffffffffffffffffffffffffffff16611ee361163f565b73ffffffffffffffffffffffffffffffffffffffff1614611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090612ed6565b60405180910390fd5b6001600f60016101000a81548160ff021916908315150217905550565b600033905090565b600081611f69611fc5565b11158015611f78575060005482105b8015611fb6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611fdd611fc5565b11612065576000548110156120645760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612062575b600081141561205857600460008360019003935083815260200190815260200160002054905061202d565b8092505050612097565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861211f86868461274e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121ce576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612209576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122166000848385612102565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061228d8361227e6000866000612108565b61228785612757565b17612130565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106122b157806000819055505050612330600084838561215b565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612421611fbd565b8786866040518563ffffffff1660e01b81526004016124439493929190612e0d565b602060405180830381600087803b15801561245d57600080fd5b505af192505050801561248e57506040513d601f19601f8201168201806040525081019061248b9190612b43565b60015b612508573d80600081146124be576040519150601f19603f3d011682016040523d82523d6000602084013e6124c3565b606091505b50600081511415612500576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461256a906131db565b80601f0160208091040260200160405190810160405280929190818152602001828054612596906131db565b80156125e35780601f106125b8576101008083540402835291602001916125e3565b820191906000526020600020905b8154815290600101906020018083116125c657829003601f168201915b5050505050905090565b60606000821415612635576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612749565b600082905060005b600082146126675780806126509061323e565b915050600a826126609190613066565b915061263d565b60008167ffffffffffffffff81111561268357612682613374565b5b6040519080825280601f01601f1916602001820160405280156126b55781602001600182028036833780820191505090505b5090505b60008514612742576001826126ce91906130f1565b9150600a856126dd9190613287565b60306126e99190613010565b60f81b8183815181106126ff576126fe613345565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561273b9190613066565b94506126b9565b8093505050505b919050565b60009392505050565b60006001821460e11b9050919050565b828054612773906131db565b90600052602060002090601f01602090048101928261279557600085556127dc565b82601f106127ae57805160ff19168380011785556127dc565b828001600101855582156127dc579182015b828111156127db5782518255916020019190600101906127c0565b5b5090506127e991906127ed565b5090565b5b808211156128065760008160009055506001016127ee565b5090565b600061281d61281884612f56565b612f31565b905082815260208101848484011115612839576128386133a8565b5b612844848285613199565b509392505050565b600061285f61285a84612f87565b612f31565b90508281526020810184848401111561287b5761287a6133a8565b5b612886848285613199565b509392505050565b60008135905061289d816134b8565b92915050565b6000813590506128b2816134cf565b92915050565b6000813590506128c7816134e6565b92915050565b6000815190506128dc816134e6565b92915050565b600082601f8301126128f7576128f66133a3565b5b813561290784826020860161280a565b91505092915050565b600082601f830112612925576129246133a3565b5b813561293584826020860161284c565b91505092915050565b60008135905061294d816134fd565b92915050565b600060208284031215612969576129686133b2565b5b60006129778482850161288e565b91505092915050565b60008060408385031215612997576129966133b2565b5b60006129a58582860161288e565b92505060206129b68582860161288e565b9150509250929050565b6000806000606084860312156129d9576129d86133b2565b5b60006129e78682870161288e565b93505060206129f88682870161288e565b9250506040612a098682870161293e565b9150509250925092565b60008060008060808587031215612a2d57612a2c6133b2565b5b6000612a3b8782880161288e565b9450506020612a4c8782880161288e565b9350506040612a5d8782880161293e565b925050606085013567ffffffffffffffff811115612a7e57612a7d6133ad565b5b612a8a878288016128e2565b91505092959194509250565b60008060408385031215612aad57612aac6133b2565b5b6000612abb8582860161288e565b9250506020612acc858286016128a3565b9150509250929050565b60008060408385031215612aed57612aec6133b2565b5b6000612afb8582860161288e565b9250506020612b0c8582860161293e565b9150509250929050565b600060208284031215612b2c57612b2b6133b2565b5b6000612b3a848285016128b8565b91505092915050565b600060208284031215612b5957612b586133b2565b5b6000612b67848285016128cd565b91505092915050565b600060208284031215612b8657612b856133b2565b5b600082013567ffffffffffffffff811115612ba457612ba36133ad565b5b612bb084828501612910565b91505092915050565b600060208284031215612bcf57612bce6133b2565b5b6000612bdd8482850161293e565b91505092915050565b612bef81613125565b82525050565b612bfe81613137565b82525050565b6000612c0f82612fcd565b612c198185612fe3565b9350612c298185602086016131a8565b612c32816133b7565b840191505092915050565b6000612c4882612fd8565b612c528185612ff4565b9350612c628185602086016131a8565b612c6b816133b7565b840191505092915050565b6000612c8182612fd8565b612c8b8185613005565b9350612c9b8185602086016131a8565b80840191505092915050565b60008154612cb4816131db565b612cbe8186613005565b94506001821660008114612cd95760018114612cea57612d1d565b60ff19831686528186019350612d1d565b612cf385612fb8565b60005b83811015612d1557815481890152600182019150602081019050612cf6565b838801955050505b50505092915050565b6000612d33601883612ff4565b9150612d3e826133c8565b602082019050919050565b6000612d56602683612ff4565b9150612d61826133f1565b604082019050919050565b6000612d79602083612ff4565b9150612d8482613440565b602082019050919050565b6000612d9c602f83612ff4565b9150612da782613469565b604082019050919050565b612dbb8161318f565b82525050565b6000612dcd8286612c76565b9150612dd98285612c76565b9150612de58284612ca7565b9150819050949350505050565b6000602082019050612e076000830184612be6565b92915050565b6000608082019050612e226000830187612be6565b612e2f6020830186612be6565b612e3c6040830185612db2565b8181036060830152612e4e8184612c04565b905095945050505050565b6000602082019050612e6e6000830184612bf5565b92915050565b60006020820190508181036000830152612e8e8184612c3d565b905092915050565b60006020820190508181036000830152612eaf81612d26565b9050919050565b60006020820190508181036000830152612ecf81612d49565b9050919050565b60006020820190508181036000830152612eef81612d6c565b9050919050565b60006020820190508181036000830152612f0f81612d8f565b9050919050565b6000602082019050612f2b6000830184612db2565b92915050565b6000612f3b612f4c565b9050612f47828261320d565b919050565b6000604051905090565b600067ffffffffffffffff821115612f7157612f70613374565b5b612f7a826133b7565b9050602081019050919050565b600067ffffffffffffffff821115612fa257612fa1613374565b5b612fab826133b7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061301b8261318f565b91506130268361318f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561305b5761305a6132b8565b5b828201905092915050565b60006130718261318f565b915061307c8361318f565b92508261308c5761308b6132e7565b5b828204905092915050565b60006130a28261318f565b91506130ad8361318f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130e6576130e56132b8565b5b828202905092915050565b60006130fc8261318f565b91506131078361318f565b92508282101561311a576131196132b8565b5b828203905092915050565b60006131308261316f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131c65780820151818401526020810190506131ab565b838111156131d5576000848401525b50505050565b600060028204905060018216806131f357607f821691505b6020821081141561320757613206613316565b5b50919050565b613216826133b7565b810181811067ffffffffffffffff8211171561323557613234613374565b5b80604052505050565b60006132498261318f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561327c5761327b6132b8565b5b600182019050919050565b60006132928261318f565b915061329d8361318f565b9250826132ad576132ac6132e7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6134c181613125565b81146134cc57600080fd5b50565b6134d881613137565b81146134e357600080fd5b50565b6134ef81613143565b81146134fa57600080fd5b50565b6135068161318f565b811461351157600080fd5b5056fea264697066735822122042fd48fec4c2f52e7d43c24b609c7fc3d8edb39cf779daed005aaa02c570e6e664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d534c59376e4c4e6b364544623334353166426f677769474d59387a63774866527133693241353953755672762f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f20516d547032584332655166354b454a556a726a7666745153654b4b474e4571534c414c5451476e3965553339723700000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636352211e1161012e578063b88d4fde116100ab578063da1b91c31161006f578063da1b91c3146107a2578063da3ef23f146107b9578063e985e9c5146107e2578063f2fde38b1461081f578063f8fb33661461084857610230565b8063b88d4fde146106bb578063c6682862146106e4578063c87b56dd1461070f578063ccde53051461074c578063d5abeb011461077757610230565b80638da5cb5b116100f25780638da5cb5b146105f75780638fdcf9421461062257806395d89b411461064b578063a0712d6814610676578063a22cb4651461069257610230565b80636352211e1461052157806370a082311461055e578063715018a61461059b578063841bfb27146105b25780638ad433ac146105db57610230565b80632a23d07d116101bc5780635183022711610180578063518302271461046057806355dd574c1461048b57806355f804b3146104a2578063580b1c8d146104cb5780635c6331bd146104f657610230565b80632a23d07d146103b05780633ccfd60b146103db57806342842e0e146103e557806344a0d68a1461040e578063484b973c1461043757610230565b8063095ea7b311610203578063095ea7b3146102f15780630c1c972a1461031a57806313faede61461033157806318160ddd1461035c57806323b872dd1461038757610230565b806301ffc9a71461023557806304b4bba91461027257806306fdde0314610289578063081812fc146102b4575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612b16565b61085f565b6040516102699190612e59565b60405180910390f35b34801561027e57600080fd5b506102876108f1565b005b34801561029557600080fd5b5061029e61098a565b6040516102ab9190612e74565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190612bb9565b610a1c565b6040516102e89190612df2565b60405180910390f35b3480156102fd57600080fd5b5061031860048036038101906103139190612ad6565b610a98565b005b34801561032657600080fd5b5061032f610bd9565b005b34801561033d57600080fd5b50610346610c72565b6040516103539190612f16565b60405180910390f35b34801561036857600080fd5b50610371610c78565b60405161037e9190612f16565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a991906129c0565b610c8f565b005b3480156103bc57600080fd5b506103c5610fb4565b6040516103d29190612f16565b60405180910390f35b6103e3610fba565b005b3480156103f157600080fd5b5061040c600480360381019061040791906129c0565b61107f565b005b34801561041a57600080fd5b5061043560048036038101906104309190612bb9565b61109f565b005b34801561044357600080fd5b5061045e60048036038101906104599190612ad6565b611125565b005b34801561046c57600080fd5b506104756111d6565b6040516104829190612e59565b60405180910390f35b34801561049757600080fd5b506104a06111e9565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190612b70565b611282565b005b3480156104d757600080fd5b506104e0611318565b6040516104ed9190612e74565b60405180910390f35b34801561050257600080fd5b5061050b6113a6565b6040516105189190612e59565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612bb9565b6113b9565b6040516105559190612df2565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190612953565b6113cb565b6040516105929190612f16565b60405180910390f35b3480156105a757600080fd5b506105b0611484565b005b3480156105be57600080fd5b506105d960048036038101906105d49190612b70565b61150c565b005b6105f560048036038101906105f09190612bb9565b6115a2565b005b34801561060357600080fd5b5061060c61163f565b6040516106199190612df2565b60405180910390f35b34801561062e57600080fd5b5061064960048036038101906106449190612bb9565b611669565b005b34801561065757600080fd5b506106606116ef565b60405161066d9190612e74565b60405180910390f35b610690600480360381019061068b9190612bb9565b611781565b005b34801561069e57600080fd5b506106b960048036038101906106b49190612a96565b61181f565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190612a13565b611997565b005b3480156106f057600080fd5b506106f9611a0a565b6040516107069190612e74565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190612bb9565b611a98565b6040516107439190612e74565b60405180910390f35b34801561075857600080fd5b50610761611be9565b60405161076e9190612e59565b60405180910390f35b34801561078357600080fd5b5061078c611bfc565b6040516107999190612f16565b60405180910390f35b3480156107ae57600080fd5b506107b7611c02565b005b3480156107c557600080fd5b506107e060048036038101906107db9190612b70565b611c9b565b005b3480156107ee57600080fd5b5061080960048036038101906108049190612980565b611d31565b6040516108169190612e59565b60405180910390f35b34801561082b57600080fd5b5061084660048036038101906108419190612953565b611dc5565b005b34801561085457600080fd5b5061085d611ebd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ea5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108f9611f56565b73ffffffffffffffffffffffffffffffffffffffff1661091761163f565b73ffffffffffffffffffffffffffffffffffffffff161461096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490612ed6565b60405180910390fd5b6001600f60026101000a81548160ff021916908315150217905550565b606060028054610999906131db565b80601f01602080910402602001604051908101604052809291908181526020018280546109c5906131db565b8015610a125780601f106109e757610100808354040283529160200191610a12565b820191906000526020600020905b8154815290600101906020018083116109f557829003601f168201915b5050505050905090565b6000610a2782611f5e565b610a5d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa3826113b9565b90508073ffffffffffffffffffffffffffffffffffffffff16610ac4611fbd565b73ffffffffffffffffffffffffffffffffffffffff1614610b2757610af081610aeb611fbd565b611d31565b610b26576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610be1611f56565b73ffffffffffffffffffffffffffffffffffffffff16610bff61163f565b73ffffffffffffffffffffffffffffffffffffffff1614610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90612ed6565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550565b600c5481565b6000610c82611fc5565b6001546000540303905090565b6000610c9a82611fce565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d01576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d0d8461209c565b91509150610d238187610d1e611fbd565b6120be565b610d6f57610d3886610d33611fbd565b611d31565b610d6e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610dd6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610de38686866001612102565b8015610dee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ebc85610e98888887612108565b7c020000000000000000000000000000000000000000000000000000000017612130565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f44576000600185019050600060046000838152602001908152602001600020541415610f42576000548114610f41578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fac868686600161215b565b505050505050565b600d5481565b610fc2611f56565b73ffffffffffffffffffffffffffffffffffffffff16610fe061163f565b73ffffffffffffffffffffffffffffffffffffffff1614611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d90612ed6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561107c573d6000803e3d6000fd5b50565b61109a83838360405180602001604052806000815250611997565b505050565b6110a7611f56565b73ffffffffffffffffffffffffffffffffffffffff166110c561163f565b73ffffffffffffffffffffffffffffffffffffffff161461111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290612ed6565b60405180910390fd5b80600c8190555050565b61112d611f56565b73ffffffffffffffffffffffffffffffffffffffff1661114b61163f565b73ffffffffffffffffffffffffffffffffffffffff16146111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890612ed6565b60405180910390fd5b60006111ab610c78565b9050600e5482826111bc9190613010565b11156111c757600080fd5b6111d18383612161565b505050565b600f60029054906101000a900460ff1681565b6111f1611f56565b73ffffffffffffffffffffffffffffffffffffffff1661120f61163f565b73ffffffffffffffffffffffffffffffffffffffff1614611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c90612ed6565b60405180910390fd5b6000600f60016101000a81548160ff021916908315150217905550565b61128a611f56565b73ffffffffffffffffffffffffffffffffffffffff166112a861163f565b73ffffffffffffffffffffffffffffffffffffffff16146112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f590612ed6565b60405180910390fd5b8060099080519060200190611314929190612767565b5050565b600a8054611325906131db565b80601f0160208091040260200160405190810160405280929190818152602001828054611351906131db565b801561139e5780601f106113735761010080835404028352916020019161139e565b820191906000526020600020905b81548152906001019060200180831161138157829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b60006113c482611fce565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611433576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61148c611f56565b73ffffffffffffffffffffffffffffffffffffffff166114aa61163f565b73ffffffffffffffffffffffffffffffffffffffff1614611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f790612ed6565b60405180910390fd5b61150a6000612335565b565b611514611f56565b73ffffffffffffffffffffffffffffffffffffffff1661153261163f565b73ffffffffffffffffffffffffffffffffffffffff1614611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90612ed6565b60405180910390fd5b80600a908051906020019061159e929190612767565b5050565b60006115ac610c78565b9050600f60019054906101000a900460ff16156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590612e96565b60405180910390fd5b60c8828261160c9190613010565b111561161757600080fd5b81600d546116259190613097565b34101561163157600080fd5b61163b3383612161565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611671611f56565b73ffffffffffffffffffffffffffffffffffffffff1661168f61163f565b73ffffffffffffffffffffffffffffffffffffffff16146116e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dc90612ed6565b60405180910390fd5b80600d8190555050565b6060600380546116fe906131db565b80601f016020809104026020016040519081016040528092919081815260200182805461172a906131db565b80156117775780601f1061174c57610100808354040283529160200191611777565b820191906000526020600020905b81548152906001019060200180831161175a57829003601f168201915b5050505050905090565b600061178b610c78565b9050600f60009054906101000a900460ff16156117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490612e96565b60405180910390fd5b600e5482826117ec9190613010565b11156117f757600080fd5b81600c546118059190613097565b34101561181157600080fd5b61181b3383612161565b5050565b611827611fbd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561188c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611899611fbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611946611fbd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161198b9190612e59565b60405180910390a35050565b6119a2848484610c8f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a04576119cd848484846123fb565b611a03576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b8054611a17906131db565b80601f0160208091040260200160405190810160405280929190818152602001828054611a43906131db565b8015611a905780601f10611a6557610100808354040283529160200191611a90565b820191906000526020600020905b815481529060010190602001808311611a7357829003601f168201915b505050505081565b6060611aa382611f5e565b611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad990612ef6565b60405180910390fd5b600f60029054906101000a900460ff16611b8857600a8054611b03906131db565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2f906131db565b8015611b7c5780601f10611b5157610100808354040283529160200191611b7c565b820191906000526020600020905b815481529060010190602001808311611b5f57829003601f168201915b50505050509050611be4565b6000611b9261255b565b90506000815111611bb25760405180602001604052806000815250611be0565b80611bbc846125ed565b600b604051602001611bd093929190612dc1565b6040516020818303038152906040525b9150505b919050565b600f60019054906101000a900460ff1681565b600e5481565b611c0a611f56565b73ffffffffffffffffffffffffffffffffffffffff16611c2861163f565b73ffffffffffffffffffffffffffffffffffffffff1614611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7590612ed6565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b611ca3611f56565b73ffffffffffffffffffffffffffffffffffffffff16611cc161163f565b73ffffffffffffffffffffffffffffffffffffffff1614611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e90612ed6565b60405180910390fd5b80600b9080519060200190611d2d929190612767565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dcd611f56565b73ffffffffffffffffffffffffffffffffffffffff16611deb61163f565b73ffffffffffffffffffffffffffffffffffffffff1614611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890612ed6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea890612eb6565b60405180910390fd5b611eba81612335565b50565b611ec5611f56565b73ffffffffffffffffffffffffffffffffffffffff16611ee361163f565b73ffffffffffffffffffffffffffffffffffffffff1614611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090612ed6565b60405180910390fd5b6001600f60016101000a81548160ff021916908315150217905550565b600033905090565b600081611f69611fc5565b11158015611f78575060005482105b8015611fb6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611fdd611fc5565b11612065576000548110156120645760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612062575b600081141561205857600460008360019003935083815260200190815260200160002054905061202d565b8092505050612097565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861211f86868461274e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121ce576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612209576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122166000848385612102565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061228d8361227e6000866000612108565b61228785612757565b17612130565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106122b157806000819055505050612330600084838561215b565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612421611fbd565b8786866040518563ffffffff1660e01b81526004016124439493929190612e0d565b602060405180830381600087803b15801561245d57600080fd5b505af192505050801561248e57506040513d601f19601f8201168201806040525081019061248b9190612b43565b60015b612508573d80600081146124be576040519150601f19603f3d011682016040523d82523d6000602084013e6124c3565b606091505b50600081511415612500576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461256a906131db565b80601f0160208091040260200160405190810160405280929190818152602001828054612596906131db565b80156125e35780601f106125b8576101008083540402835291602001916125e3565b820191906000526020600020905b8154815290600101906020018083116125c657829003601f168201915b5050505050905090565b60606000821415612635576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612749565b600082905060005b600082146126675780806126509061323e565b915050600a826126609190613066565b915061263d565b60008167ffffffffffffffff81111561268357612682613374565b5b6040519080825280601f01601f1916602001820160405280156126b55781602001600182028036833780820191505090505b5090505b60008514612742576001826126ce91906130f1565b9150600a856126dd9190613287565b60306126e99190613010565b60f81b8183815181106126ff576126fe613345565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561273b9190613066565b94506126b9565b8093505050505b919050565b60009392505050565b60006001821460e11b9050919050565b828054612773906131db565b90600052602060002090601f01602090048101928261279557600085556127dc565b82601f106127ae57805160ff19168380011785556127dc565b828001600101855582156127dc579182015b828111156127db5782518255916020019190600101906127c0565b5b5090506127e991906127ed565b5090565b5b808211156128065760008160009055506001016127ee565b5090565b600061281d61281884612f56565b612f31565b905082815260208101848484011115612839576128386133a8565b5b612844848285613199565b509392505050565b600061285f61285a84612f87565b612f31565b90508281526020810184848401111561287b5761287a6133a8565b5b612886848285613199565b509392505050565b60008135905061289d816134b8565b92915050565b6000813590506128b2816134cf565b92915050565b6000813590506128c7816134e6565b92915050565b6000815190506128dc816134e6565b92915050565b600082601f8301126128f7576128f66133a3565b5b813561290784826020860161280a565b91505092915050565b600082601f830112612925576129246133a3565b5b813561293584826020860161284c565b91505092915050565b60008135905061294d816134fd565b92915050565b600060208284031215612969576129686133b2565b5b60006129778482850161288e565b91505092915050565b60008060408385031215612997576129966133b2565b5b60006129a58582860161288e565b92505060206129b68582860161288e565b9150509250929050565b6000806000606084860312156129d9576129d86133b2565b5b60006129e78682870161288e565b93505060206129f88682870161288e565b9250506040612a098682870161293e565b9150509250925092565b60008060008060808587031215612a2d57612a2c6133b2565b5b6000612a3b8782880161288e565b9450506020612a4c8782880161288e565b9350506040612a5d8782880161293e565b925050606085013567ffffffffffffffff811115612a7e57612a7d6133ad565b5b612a8a878288016128e2565b91505092959194509250565b60008060408385031215612aad57612aac6133b2565b5b6000612abb8582860161288e565b9250506020612acc858286016128a3565b9150509250929050565b60008060408385031215612aed57612aec6133b2565b5b6000612afb8582860161288e565b9250506020612b0c8582860161293e565b9150509250929050565b600060208284031215612b2c57612b2b6133b2565b5b6000612b3a848285016128b8565b91505092915050565b600060208284031215612b5957612b586133b2565b5b6000612b67848285016128cd565b91505092915050565b600060208284031215612b8657612b856133b2565b5b600082013567ffffffffffffffff811115612ba457612ba36133ad565b5b612bb084828501612910565b91505092915050565b600060208284031215612bcf57612bce6133b2565b5b6000612bdd8482850161293e565b91505092915050565b612bef81613125565b82525050565b612bfe81613137565b82525050565b6000612c0f82612fcd565b612c198185612fe3565b9350612c298185602086016131a8565b612c32816133b7565b840191505092915050565b6000612c4882612fd8565b612c528185612ff4565b9350612c628185602086016131a8565b612c6b816133b7565b840191505092915050565b6000612c8182612fd8565b612c8b8185613005565b9350612c9b8185602086016131a8565b80840191505092915050565b60008154612cb4816131db565b612cbe8186613005565b94506001821660008114612cd95760018114612cea57612d1d565b60ff19831686528186019350612d1d565b612cf385612fb8565b60005b83811015612d1557815481890152600182019150602081019050612cf6565b838801955050505b50505092915050565b6000612d33601883612ff4565b9150612d3e826133c8565b602082019050919050565b6000612d56602683612ff4565b9150612d61826133f1565b604082019050919050565b6000612d79602083612ff4565b9150612d8482613440565b602082019050919050565b6000612d9c602f83612ff4565b9150612da782613469565b604082019050919050565b612dbb8161318f565b82525050565b6000612dcd8286612c76565b9150612dd98285612c76565b9150612de58284612ca7565b9150819050949350505050565b6000602082019050612e076000830184612be6565b92915050565b6000608082019050612e226000830187612be6565b612e2f6020830186612be6565b612e3c6040830185612db2565b8181036060830152612e4e8184612c04565b905095945050505050565b6000602082019050612e6e6000830184612bf5565b92915050565b60006020820190508181036000830152612e8e8184612c3d565b905092915050565b60006020820190508181036000830152612eaf81612d26565b9050919050565b60006020820190508181036000830152612ecf81612d49565b9050919050565b60006020820190508181036000830152612eef81612d6c565b9050919050565b60006020820190508181036000830152612f0f81612d8f565b9050919050565b6000602082019050612f2b6000830184612db2565b92915050565b6000612f3b612f4c565b9050612f47828261320d565b919050565b6000604051905090565b600067ffffffffffffffff821115612f7157612f70613374565b5b612f7a826133b7565b9050602081019050919050565b600067ffffffffffffffff821115612fa257612fa1613374565b5b612fab826133b7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061301b8261318f565b91506130268361318f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561305b5761305a6132b8565b5b828201905092915050565b60006130718261318f565b915061307c8361318f565b92508261308c5761308b6132e7565b5b828204905092915050565b60006130a28261318f565b91506130ad8361318f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130e6576130e56132b8565b5b828202905092915050565b60006130fc8261318f565b91506131078361318f565b92508282101561311a576131196132b8565b5b828203905092915050565b60006131308261316f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131c65780820151818401526020810190506131ab565b838111156131d5576000848401525b50505050565b600060028204905060018216806131f357607f821691505b6020821081141561320757613206613316565b5b50919050565b613216826133b7565b810181811067ffffffffffffffff8211171561323557613234613374565b5b80604052505050565b60006132498261318f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561327c5761327b6132b8565b5b600182019050919050565b60006132928261318f565b915061329d8361318f565b9250826132ad576132ac6132e7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6134c181613125565b81146134cc57600080fd5b50565b6134d881613137565b81146134e357600080fd5b50565b6134ef81613143565b81146134fa57600080fd5b50565b6135068161318f565b811461351157600080fd5b5056fea264697066735822122042fd48fec4c2f52e7d43c24b609c7fc3d8edb39cf779daed005aaa02c570e6e664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d534c59376e4c4e6b364544623334353166426f677769474d59387a63774866527133693241353953755672762f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f20516d547032584332655166354b454a556a726a7666745153654b4b474e4571534c414c5451476e3965553339723700000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmSLY7nLNk6EDb3451fBogwiGMY8zcwHfRq3i2A59SuVrv/
Arg [1] : _initUnrevURI (string): ipfs:// QmTp2XC2eQf5KEJUjrjvftQSeKKGNEqSLALTQGn9eU39r7

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d534c59376e4c4e6b364544623334353166426f67776947
Arg [4] : 4d59387a63774866527133693241353953755672762f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f20516d547032584332655166354b454a556a726a7666745153
Arg [7] : 654b4b474e4571534c414c5451476e3965553339723700000000000000000000


Deployed Bytecode Sourcemap

49876:3492:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19719:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53170:72;;;;;;;;;;;;;:::i;:::-;;25366:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27312:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26860:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52814:84;;;;;;;;;;;;;:::i;:::-;;50066:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18773:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36577:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50113:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53250:115;;;:::i;:::-;;28202:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52242:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51298:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50281:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53000:78;;;;;;;;;;;;;:::i;:::-;;52450:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49993:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50204:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25155:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20398:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4607:94;;;;;;;;;;;;;:::i;:::-;;52562:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50993:297;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3956:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52338:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25535:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50689:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27588:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28458:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50022:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51502:710;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50244:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50166:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52910:82;;;;;;;;;;;;;:::i;:::-;;52678:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27967:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4856:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53086:76;;;;;;;;;;;;;:::i;:::-;;19719:615;19804:4;20119:10;20104:25;;:11;:25;;;;:102;;;;20196:10;20181:25;;:11;:25;;;;20104:102;:179;;;;20273:10;20258:25;;:11;:25;;;;20104:179;20084:199;;19719:615;;;:::o;53170:72::-;4187:12;:10;:12::i;:::-;4176:23;;:7;:5;:7::i;:::-;:23;;;4168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53230:4:::1;53219:8;;:15;;;;;;;;;;;;;;;;;;53170:72::o:0;25366:100::-;25420:13;25453:5;25446:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25366:100;:::o;27312:204::-;27380:7;27405:16;27413:7;27405;:16::i;:::-;27400:64;;27430:34;;;;;;;;;;;;;;27400:64;27484:15;:24;27500:7;27484:24;;;;;;;;;;;;;;;;;;;;;27477:31;;27312:204;;;:::o;26860:386::-;26933:13;26949:16;26957:7;26949;:16::i;:::-;26933:32;;27005:5;26982:28;;:19;:17;:19::i;:::-;:28;;;26978:175;;27030:44;27047:5;27054:19;:17;:19::i;:::-;27030:16;:44::i;:::-;27025:128;;27102:35;;;;;;;;;;;;;;27025:128;26978:175;27192:2;27165:15;:24;27181:7;27165:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;27230:7;27226:2;27210:28;;27219:5;27210:28;;;;;;;;;;;;26922:324;26860:386;;:::o;52814:84::-;4187:12;:10;:12::i;:::-;4176:23;;:7;:5;:7::i;:::-;:23;;;4168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52885:5:::1;52869:13;;:21;;;;;;;;;;;;;;;;;;52814:84::o:0;50066:40::-;;;;:::o;18773:315::-;18826:7;19054:15;:13;:15::i;:::-;19039:12;;19023:13;;:28;:46;19016:53;;18773:315;:::o;36577:2800::-;36711:27;36741;36760:7;36741:18;:27::i;:::-;36711:57;;36826:4;36785:45;;36801:19;36785:45;;;36781:86;;36839:28;;;;;;;;;;;;;;36781:86;36881:27;36910:23;36937:28;36957:7;36937:19;:28::i;:::-;36880:85;;;;37065:62;37084:15;37101:4;37107:19;:17;:19::i;:::-;37065:18;:62::i;:::-;37060:174;;37147:43;37164:4;37170:19;:17;:19::i;:::-;37147:16;:43::i;:::-;37142:92;;37199:35;;;;;;;;;;;;;;37142:92;37060:174;37265:1;37251:16;;:2;:16;;;37247:52;;;37276:23;;;;;;;;;;;;;;37247:52;37312:43;37334:4;37340:2;37344:7;37353:1;37312:21;:43::i;:::-;37448:15;37445:160;;;37588:1;37567:19;37560:30;37445:160;37983:18;:24;38002:4;37983:24;;;;;;;;;;;;;;;;37981:26;;;;;;;;;;;;38052:18;:22;38071:2;38052:22;;;;;;;;;;;;;;;;38050:24;;;;;;;;;;;38374:145;38411:2;38459:45;38474:4;38480:2;38484:19;38459:14;:45::i;:::-;16001:8;38432:72;38374:18;:145::i;:::-;38345:17;:26;38363:7;38345:26;;;;;;;;;;;:174;;;;38689:1;16001:8;38639:19;:46;:51;38635:626;;;38711:19;38743:1;38733:7;:11;38711:33;;38900:1;38866:17;:30;38884:11;38866:30;;;;;;;;;;;;:35;38862:384;;;39004:13;;38989:11;:28;38985:242;;39184:19;39151:17;:30;39169:11;39151:30;;;;;;;;;;;:52;;;;38985:242;38862:384;38692:569;38635:626;39308:7;39304:2;39289:27;;39298:4;39289:27;;;;;;;;;;;;39327:42;39348:4;39354:2;39358:7;39367:1;39327:20;:42::i;:::-;36700:2677;;;36577:2800;;;:::o;50113:46::-;;;;:::o;53250:115::-;4187:12;:10;:12::i;:::-;4176:23;;:7;:5;:7::i;:::-;:23;;;4168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53314:10:::1;53306:28;;:51;53335:21;53306:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;53250:115::o:0;28202:185::-;28340:39;28357:4;28363:2;28367:7;28340:39;;;;;;;;;;;;:16;:39::i;:::-;28202:185;;;:::o;52242:86::-;4187:12;:10;:12::i;:::-;4176:23;;:7;:5;:7::i;:::-;:23;;;4168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52312:8:::1;52305:4;:15;;;;52242:86:::0;:::o;51298:191::-;4187:12;:10;:12::i;:::-;4176:23;;:7;:5;:7::i;:::-;:23;;;4168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51372:14:::1;51389:13;:11;:13::i;:::-;51372:30;;51441:9;;51430:7;51421:6;:16;;;;:::i;:::-;:29;;51413:38;;;::::0;::::1;;51462:19;51468:3;51473:7;51462:5;:19::i;:::-;51361:128;51298:191:::0;;:::o;50281:28::-;;;;;;;;;;;;;:::o;53000:78::-;4187:12;:10;:12::i;:::-;4176:23;;:7;:5;:7::i;:::-;:23;;;4168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53065:5:::1;53052:10;;:18;;;;;;;;;;;;;;;;;;53000:78::o:0;52450:104::-;4187:12;:10;:12::i;:::-;4176:23;;:7;:5;:7::i;:::-;:23;;;4168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52535:11:::1;52525:7;:21;;;;;;;;;;;;:::i;:::-;;52450:104:::0;:::o;49993:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50204:33::-;;;;;;;;;;;;;:::o;25155:144::-;25219:7;25262:27;25281:7;25262:18;:27::i;:::-;25239:52;;25155:144;;;:::o;20398:224::-;20462:7;20503:1;20486:19;;:5;:19;;;20482:60;;;20514:28;;;;;;;;;;;;;;20482:60;14953:13;20560:18;:25;20579:5;20560:25;;;;;;;;;;;;;;;;:54;20553:61;;20398:224;;;:::o;4607:94::-;4187:12;:10;:12::i;:::-;4176:23;;:7;:5;:7::i;:::-;:23;;;4168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4672:21:::1;4690:1;4672:9;:21::i;:::-;4607:94::o:0;52562:108::-;4187:12;:10;:12::i;:::-;4176:23;;:7;:5;:7::i;:::-;:23;;;4168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52650:12:::1;52639:8;:23;;;;;;;;;;;;:::i;:::-;;52562:108:::0;:::o;50993:297::-;51050:14;51067:13;:11;:13::i;:::-;51050:30;;51100:10;;;;;;;;;;;51099:11;51091:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;51178:3;51167:7;51158:6;:16;;;;:::i;:::-;:23;;51150:32;;;;;;51228:7;51214:11;;:21;;;;:::i;:::-;51201:9;:34;;51193:43;;;;;;51256:26;51262:10;51274:7;51256:5;:26::i;:::-;51039:251;50993:297;:::o;3956:87::-;4002:7;4029:6;;;;;;;;;;;4022:13;;3956:87;:::o;52338:100::-;4187:12;:10;:12::i;:::-;4176:23;;:7;:5;:7::i;:::-;:23;;;4168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52422:8:::1;52408:11;:22;;;;52338:100:::0;:::o;25535:104::-;25591:13;25624:7;25617:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25535:104;:::o;50689:296::-;50743:14;50760:13;:11;:13::i;:::-;50743:30;;50793:13;;;;;;;;;;;50792:14;50784:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;50874:9;;50863:7;50854:6;:16;;;;:::i;:::-;:29;;50846:38;;;;;;50923:7;50916:4;;:14;;;;:::i;:::-;50903:9;:27;;50895:36;;;;;;50951:26;50957:10;50969:7;50951:5;:26::i;:::-;50732:253;50689:296;:::o;27588:308::-;27699:19;:17;:19::i;:::-;27687:31;;:8;:31;;;27683:61;;;27727:17;;;;;;;;;;;;;;27683:61;27809:8;27757:18;:39;27776:19;:17;:19::i;:::-;27757:39;;;;;;;;;;;;;;;:49;27797:8;27757:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27869:8;27833:55;;27848:19;:17;:19::i;:::-;27833:55;;;27879:8;27833:55;;;;;;:::i;:::-;;;;;;;;27588:308;;:::o;28458:399::-;28625:31;28638:4;28644:2;28648:7;28625:12;:31::i;:::-;28689:1;28671:2;:14;;;:19;28667:183;;28710:56;28741:4;28747:2;28751:7;28760:5;28710:30;:56::i;:::-;28705:145;;28794:40;;;;;;;;;;;;;;28705:145;28667:183;28458:399;;;;:::o;50022:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51502:710::-;51620:13;51673:16;51681:7;51673;:16::i;:::-;51651:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;51781:8;;;;;;;;;;;51777:56;;51813:8;51806:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51777:56;51845:28;51876:10;:8;:10::i;:::-;51845:41;;51948:1;51923:14;51917:28;:32;:287;;;;;;;;;;;;;;;;;52041:14;52082:18;:7;:16;:18::i;:::-;52127:13;51998:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51917:287;51897:307;;;51502:710;;;;:::o;50244:30::-;;;;;;;;;;;;;:::o;50166:31::-;;;;:::o;52910:82::-;4187:12;:10;:12::i;:::-;4176:23;;:7;:5;:7::i;:::-;:23;;;4168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52980:4:::1;52964:13;;:20;;;;;;;;;;;;;;;;;;52910:82::o:0;52678:128::-;4187:12;:10;:12::i;:::-;4176:23;;:7;:5;:7::i;:::-;:23;;;4168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52781:17:::1;52765:13;:33;;;;;;;;;;;;:::i;:::-;;52678:128:::0;:::o;27967:164::-;28064:4;28088:18;:25;28107:5;28088:25;;;;;;;;;;;;;;;:35;28114:8;28088:35;;;;;;;;;;;;;;;;;;;;;;;;;28081:42;;27967:164;;;;:::o;4856:229::-;4187:12;:10;:12::i;:::-;4176:23;;:7;:5;:7::i;:::-;:23;;;4168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4979:1:::1;4959:22;;:8;:22;;;;4937:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;5058:19;5068:8;5058:9;:19::i;:::-;4856:229:::0;:::o;53086:76::-;4187:12;:10;:12::i;:::-;4176:23;;:7;:5;:7::i;:::-;:23;;;4168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53150:4:::1;53137:10;;:17;;;;;;;;;;;;;;;;;;53086:76::o:0;2733:98::-;2786:7;2813:10;2806:17;;2733:98;:::o;29112:273::-;29169:4;29225:7;29206:15;:13;:15::i;:::-;:26;;:66;;;;;29259:13;;29249:7;:23;29206:66;:152;;;;;29357:1;15723:8;29310:17;:26;29328:7;29310:26;;;;;;;;;;;;:43;:48;29206:152;29186:172;;29112:273;;;:::o;47673:105::-;47733:7;47760:10;47753:17;;47673:105;:::o;18297:92::-;18353:7;18380:1;18373:8;;18297:92;:::o;22072:1129::-;22139:7;22159:12;22174:7;22159:22;;22242:4;22223:15;:13;:15::i;:::-;:23;22219:915;;22276:13;;22269:4;:20;22265:869;;;22314:14;22331:17;:23;22349:4;22331:23;;;;;;;;;;;;22314:40;;22447:1;15723:8;22420:6;:23;:28;22416:699;;;22939:113;22956:1;22946:6;:11;22939:113;;;22999:17;:25;23017:6;;;;;;;22999:25;;;;;;;;;;;;22990:34;;22939:113;;;23085:6;23078:13;;;;;;22416:699;22291:843;22265:869;22219:915;23162:31;;;;;;;;;;;;;;22072:1129;;;;:::o;34913:652::-;35008:27;35037:23;35078:53;35134:15;35078:71;;35320:7;35314:4;35307:21;35355:22;35349:4;35342:36;35431:4;35425;35415:21;35392:44;;35527:19;35521:26;35502:45;;35258:300;34913:652;;;:::o;35678:645::-;35820:11;35982:15;35976:4;35972:26;35964:34;;36141:15;36130:9;36126:31;36113:44;;36288:15;36277:9;36274:30;36267:4;36256:9;36253:19;36250:55;36240:65;;35678:645;;;;;:::o;46506:159::-;;;;;:::o;44818:309::-;44953:7;44973:16;16124:3;44999:19;:40;;44973:67;;16124:3;45066:31;45077:4;45083:2;45087:9;45066:10;:31::i;:::-;45058:40;;:61;;45051:68;;;44818:309;;;;;:::o;24646:447::-;24726:14;24894:15;24887:5;24883:27;24874:36;;25068:5;25054:11;25030:22;25026:40;25023:51;25016:5;25013:62;25003:72;;24646:447;;;;:::o;47324:158::-;;;;;:::o;30943:1529::-;31008:20;31031:13;;31008:36;;31073:1;31059:16;;:2;:16;;;31055:48;;;31084:19;;;;;;;;;;;;;;31055:48;31130:1;31118:8;:13;31114:44;;;31140:18;;;;;;;;;;;;;;31114:44;31171:61;31201:1;31205:2;31209:12;31223:8;31171:21;:61::i;:::-;31714:1;15090:2;31685:1;:25;;31684:31;31672:8;:44;31646:18;:22;31665:2;31646:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;31993:139;32030:2;32084:33;32107:1;32111:2;32115:1;32084:14;:33::i;:::-;32051:30;32072:8;32051:20;:30::i;:::-;:66;31993:18;:139::i;:::-;31959:17;:31;31977:12;31959:31;;;;;;;;;;;:173;;;;32149:15;32167:12;32149:30;;32194:11;32223:8;32208:12;:23;32194:37;;32246:101;32298:9;;;;;;32294:2;32273:35;;32290:1;32273:35;;;;;;;;;;;;32342:3;32332:7;:13;32246:101;;32379:3;32363:13;:19;;;;31420:974;;32404:60;32433:1;32437:2;32441:12;32455:8;32404:20;:60::i;:::-;30997:1475;30943:1529;;:::o;5093:173::-;5149:16;5168:6;;;;;;;;;;;5149:25;;5194:8;5185:6;;:17;;;;;;;;;;;;;;;;;;5249:8;5218:40;;5239:8;5218:40;;;;;;;;;;;;5138:128;5093:173;:::o;43328:716::-;43491:4;43537:2;43512:45;;;43558:19;:17;:19::i;:::-;43579:4;43585:7;43594:5;43512:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43508:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43812:1;43795:6;:13;:18;43791:235;;;43841:40;;;;;;;;;;;;;;43791:235;43984:6;43978:13;43969:6;43965:2;43961:15;43954:38;43508:529;43681:54;;;43671:64;;;:6;:64;;;;43664:71;;;43328:716;;;;;;:::o;50556:108::-;50616:13;50649:7;50642:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50556:108;:::o;331:723::-;387:13;617:1;608:5;:10;604:53;;;635:10;;;;;;;;;;;;;;;;;;;;;604:53;667:12;682:5;667:20;;698:14;723:78;738:1;730:4;:9;723:78;;756:8;;;;;:::i;:::-;;;;787:2;779:10;;;;;:::i;:::-;;;723:78;;;811:19;843:6;833:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;811:39;;861:154;877:1;868:5;:10;861:154;;905:1;895:11;;;;;:::i;:::-;;;972:2;964:5;:10;;;;:::i;:::-;951:2;:24;;;;:::i;:::-;938:39;;921:6;928;921:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1001:2;992:11;;;;;:::i;:::-;;;861:154;;;1039:6;1025:21;;;;;331:723;;;;:::o;45703:147::-;45840:6;45703:147;;;;;:::o;26476:322::-;26546:14;26777:1;26767:8;26764:15;26739:23;26735:45;26725:55;;26476:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:118::-;10966:24;10984:5;10966:24;:::i;:::-;10961:3;10954:37;10879:118;;:::o;11003:589::-;11228:3;11250:95;11341:3;11332:6;11250:95;:::i;:::-;11243:102;;11362:95;11453:3;11444:6;11362:95;:::i;:::-;11355:102;;11474:92;11562:3;11553:6;11474:92;:::i;:::-;11467:99;;11583:3;11576:10;;11003:589;;;;;;:::o;11598:222::-;11691:4;11729:2;11718:9;11714:18;11706:26;;11742:71;11810:1;11799:9;11795:17;11786:6;11742:71;:::i;:::-;11598:222;;;;:::o;11826:640::-;12021:4;12059:3;12048:9;12044:19;12036:27;;12073:71;12141:1;12130:9;12126:17;12117:6;12073:71;:::i;:::-;12154:72;12222:2;12211:9;12207:18;12198:6;12154:72;:::i;:::-;12236;12304:2;12293:9;12289:18;12280:6;12236:72;:::i;:::-;12355:9;12349:4;12345:20;12340:2;12329:9;12325:18;12318:48;12383:76;12454:4;12445:6;12383:76;:::i;:::-;12375:84;;11826:640;;;;;;;:::o;12472:210::-;12559:4;12597:2;12586:9;12582:18;12574:26;;12610:65;12672:1;12661:9;12657:17;12648:6;12610:65;:::i;:::-;12472:210;;;;:::o;12688:313::-;12801:4;12839:2;12828:9;12824:18;12816:26;;12888:9;12882:4;12878:20;12874:1;12863:9;12859:17;12852:47;12916:78;12989:4;12980:6;12916:78;:::i;:::-;12908:86;;12688:313;;;;:::o;13007:419::-;13173:4;13211:2;13200:9;13196:18;13188:26;;13260:9;13254:4;13250:20;13246:1;13235:9;13231:17;13224:47;13288:131;13414:4;13288:131;:::i;:::-;13280:139;;13007:419;;;:::o;13432:::-;13598:4;13636:2;13625:9;13621:18;13613:26;;13685:9;13679:4;13675:20;13671:1;13660:9;13656:17;13649:47;13713:131;13839:4;13713:131;:::i;:::-;13705:139;;13432:419;;;:::o;13857:::-;14023:4;14061:2;14050:9;14046:18;14038:26;;14110:9;14104:4;14100:20;14096:1;14085:9;14081:17;14074:47;14138:131;14264:4;14138:131;:::i;:::-;14130:139;;13857:419;;;:::o;14282:::-;14448:4;14486:2;14475:9;14471:18;14463:26;;14535:9;14529:4;14525:20;14521:1;14510:9;14506:17;14499:47;14563:131;14689:4;14563:131;:::i;:::-;14555:139;;14282:419;;;:::o;14707:222::-;14800:4;14838:2;14827:9;14823:18;14815:26;;14851:71;14919:1;14908:9;14904:17;14895:6;14851:71;:::i;:::-;14707:222;;;;:::o;14935:129::-;14969:6;14996:20;;:::i;:::-;14986:30;;15025:33;15053:4;15045:6;15025:33;:::i;:::-;14935:129;;;:::o;15070:75::-;15103:6;15136:2;15130:9;15120:19;;15070:75;:::o;15151:307::-;15212:4;15302:18;15294:6;15291:30;15288:56;;;15324:18;;:::i;:::-;15288:56;15362:29;15384:6;15362:29;:::i;:::-;15354:37;;15446:4;15440;15436:15;15428:23;;15151:307;;;:::o;15464:308::-;15526:4;15616:18;15608:6;15605:30;15602:56;;;15638:18;;:::i;:::-;15602:56;15676:29;15698:6;15676:29;:::i;:::-;15668:37;;15760:4;15754;15750:15;15742:23;;15464:308;;;:::o;15778:141::-;15827:4;15850:3;15842:11;;15873:3;15870:1;15863:14;15907:4;15904:1;15894:18;15886:26;;15778:141;;;:::o;15925:98::-;15976:6;16010:5;16004:12;15994:22;;15925:98;;;:::o;16029:99::-;16081:6;16115:5;16109:12;16099:22;;16029:99;;;:::o;16134:168::-;16217:11;16251:6;16246:3;16239:19;16291:4;16286:3;16282:14;16267:29;;16134:168;;;;:::o;16308:169::-;16392:11;16426:6;16421:3;16414:19;16466:4;16461:3;16457:14;16442:29;;16308:169;;;;:::o;16483:148::-;16585:11;16622:3;16607:18;;16483:148;;;;:::o;16637:305::-;16677:3;16696:20;16714:1;16696:20;:::i;:::-;16691:25;;16730:20;16748:1;16730:20;:::i;:::-;16725:25;;16884:1;16816:66;16812:74;16809:1;16806:81;16803:107;;;16890:18;;:::i;:::-;16803:107;16934:1;16931;16927:9;16920:16;;16637:305;;;;:::o;16948:185::-;16988:1;17005:20;17023:1;17005:20;:::i;:::-;17000:25;;17039:20;17057:1;17039:20;:::i;:::-;17034:25;;17078:1;17068:35;;17083:18;;:::i;:::-;17068:35;17125:1;17122;17118:9;17113:14;;16948:185;;;;:::o;17139:348::-;17179:7;17202:20;17220:1;17202:20;:::i;:::-;17197:25;;17236:20;17254:1;17236:20;:::i;:::-;17231:25;;17424:1;17356:66;17352:74;17349:1;17346:81;17341:1;17334:9;17327:17;17323:105;17320:131;;;17431:18;;:::i;:::-;17320:131;17479:1;17476;17472:9;17461:20;;17139:348;;;;:::o;17493:191::-;17533:4;17553:20;17571:1;17553:20;:::i;:::-;17548:25;;17587:20;17605:1;17587:20;:::i;:::-;17582:25;;17626:1;17623;17620:8;17617:34;;;17631:18;;:::i;:::-;17617:34;17676:1;17673;17669:9;17661:17;;17493:191;;;;:::o;17690:96::-;17727:7;17756:24;17774:5;17756:24;:::i;:::-;17745:35;;17690:96;;;:::o;17792:90::-;17826:7;17869:5;17862:13;17855:21;17844:32;;17792:90;;;:::o;17888:149::-;17924:7;17964:66;17957:5;17953:78;17942:89;;17888:149;;;:::o;18043:126::-;18080:7;18120:42;18113:5;18109:54;18098:65;;18043:126;;;:::o;18175:77::-;18212:7;18241:5;18230:16;;18175:77;;;:::o;18258:154::-;18342:6;18337:3;18332;18319:30;18404:1;18395:6;18390:3;18386:16;18379:27;18258:154;;;:::o;18418:307::-;18486:1;18496:113;18510:6;18507:1;18504:13;18496:113;;;18595:1;18590:3;18586:11;18580:18;18576:1;18571:3;18567:11;18560:39;18532:2;18529:1;18525:10;18520:15;;18496:113;;;18627:6;18624:1;18621:13;18618:101;;;18707:1;18698:6;18693:3;18689:16;18682:27;18618:101;18467:258;18418:307;;;:::o;18731:320::-;18775:6;18812:1;18806:4;18802:12;18792:22;;18859:1;18853:4;18849:12;18880:18;18870:81;;18936:4;18928:6;18924:17;18914:27;;18870:81;18998:2;18990:6;18987:14;18967:18;18964:38;18961:84;;;19017:18;;:::i;:::-;18961:84;18782:269;18731:320;;;:::o;19057:281::-;19140:27;19162:4;19140:27;:::i;:::-;19132:6;19128:40;19270:6;19258:10;19255:22;19234:18;19222:10;19219:34;19216:62;19213:88;;;19281:18;;:::i;:::-;19213:88;19321:10;19317:2;19310:22;19100:238;19057:281;;:::o;19344:233::-;19383:3;19406:24;19424:5;19406:24;:::i;:::-;19397:33;;19452:66;19445:5;19442:77;19439:103;;;19522:18;;:::i;:::-;19439:103;19569:1;19562:5;19558:13;19551:20;;19344:233;;;:::o;19583:176::-;19615:1;19632:20;19650:1;19632:20;:::i;:::-;19627:25;;19666:20;19684:1;19666:20;:::i;:::-;19661:25;;19705:1;19695:35;;19710:18;;:::i;:::-;19695:35;19751:1;19748;19744:9;19739:14;;19583:176;;;;:::o;19765:180::-;19813:77;19810:1;19803:88;19910:4;19907:1;19900:15;19934:4;19931:1;19924:15;19951:180;19999:77;19996:1;19989:88;20096:4;20093:1;20086:15;20120:4;20117:1;20110:15;20137:180;20185:77;20182:1;20175:88;20282:4;20279:1;20272:15;20306:4;20303:1;20296:15;20323:180;20371:77;20368:1;20361:88;20468:4;20465:1;20458:15;20492:4;20489:1;20482:15;20509:180;20557:77;20554:1;20547:88;20654:4;20651:1;20644:15;20678:4;20675:1;20668:15;20695:117;20804:1;20801;20794:12;20818:117;20927:1;20924;20917:12;20941:117;21050:1;21047;21040:12;21064:117;21173:1;21170;21163:12;21187:102;21228:6;21279:2;21275:7;21270:2;21263:5;21259:14;21255:28;21245:38;;21187:102;;;:::o;21295:174::-;21435:26;21431:1;21423:6;21419:14;21412:50;21295:174;:::o;21475:225::-;21615:34;21611:1;21603:6;21599:14;21592:58;21684:8;21679:2;21671:6;21667:15;21660:33;21475:225;:::o;21706:182::-;21846:34;21842:1;21834:6;21830:14;21823:58;21706:182;:::o;21894:234::-;22034:34;22030:1;22022:6;22018:14;22011:58;22103:17;22098:2;22090:6;22086:15;22079:42;21894:234;:::o;22134:122::-;22207:24;22225:5;22207:24;:::i;:::-;22200:5;22197:35;22187:63;;22246:1;22243;22236:12;22187:63;22134:122;:::o;22262:116::-;22332:21;22347:5;22332:21;:::i;:::-;22325:5;22322:32;22312:60;;22368:1;22365;22358:12;22312:60;22262:116;:::o;22384:120::-;22456:23;22473:5;22456:23;:::i;:::-;22449:5;22446:34;22436:62;;22494:1;22491;22484:12;22436:62;22384:120;:::o;22510:122::-;22583:24;22601:5;22583:24;:::i;:::-;22576:5;22573:35;22563:63;;22622:1;22619;22612:12;22563:63;22510:122;:::o

Swarm Source

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