ETH Price: $3,458.76 (-0.70%)
Gas: 3 Gwei

Token

Abes 3777 ways to die (AbeDieNFT)
 

Overview

Max Total Supply

1,439 AbeDieNFT

Holders

277

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 AbeDieNFT
0x22d11f427ff1ae9c32d11588cca20a34fe6dda48
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:
ABEDieNFT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: ABEDieNFT.sol


pragma solidity ^0.8.9;




interface IABECoin {
	function claimCoins(address _holder, uint256 _amount) external;
}

contract ABEDieNFT is ERC721A, Ownable, ReentrancyGuard {
	bool public start = false;
	bool public revealed = false;
	string public baseURI = "";
	IABECoin public immutable ABECoin;
	mapping(address => uint256) public mintsPerWallet;

	constructor(address _abecoin)
		ERC721A("Abes 3777 ways to die", "AbeDieNFT")
	{
		ABECoin = IABECoin(_abecoin);
	}

	//mint
	function mint(uint256 _amount) public {
		require(msg.sender == tx.origin);
		require(start);
		require(_amount > 0);
		require(_amount + totalSupply() <= 3777);
		require(_amount + mintsPerWallet[msg.sender] <= 5);

		mintsPerWallet[msg.sender] += _amount;
		_safeMint(msg.sender, _amount);
		ABECoin.claimCoins(msg.sender, _amount * 1000000000 * (10**18));
	}

	//OWNER Functions
	function reserve(uint256 _amount) public onlyOwner {
		_safeMint(msg.sender, _amount);
		ABECoin.claimCoins(msg.sender, _amount * 1000000000 * (10**18));
	}

	function setStart(bool _start) public onlyOwner {
		start = _start;
	}

	function setReveal(string memory _baseURI, bool _revealed)
		public
		onlyOwner
	{
		baseURI = _baseURI;
		revealed = _revealed;
	}

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

	function tokenURI(uint256 _tokenId)
		public
		view
		virtual
		override
		returns (string memory)
	{
		require(_exists(_tokenId), "nonexistent tokenId");
		if (revealed == false) {
			return baseURI;
		}
		return string(abi.encodePacked(baseURI, _toString(_tokenId), ".json"));
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_abecoin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"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":[],"name":"ABECoin","outputs":[{"internalType":"contract IABECoin","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reserve","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":"_baseURI","type":"string"},{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"}]

60a06040526000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff02191690831515021790555060405180602001604052806000815250600b90805190602001906200006192919062000285565b503480156200006f57600080fd5b5060405162002e4c38038062002e4c83398181016040528101906200009591906200039f565b6040518060400160405280601581526020017f416265732033373737207761797320746f2064696500000000000000000000008152506040518060400160405280600981526020017f4162654469654e4654000000000000000000000000000000000000000000000081525081600290805190602001906200011992919062000285565b5080600390805190602001906200013292919062000285565b5062000143620001ae60201b60201c565b60008190555050506200016b6200015f620001b760201b60201c565b620001bf60201b60201c565b60016009819055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505062000436565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002939062000400565b90600052602060002090601f016020900481019282620002b7576000855562000303565b82601f10620002d257805160ff191683800117855562000303565b8280016001018555821562000303579182015b8281111562000302578251825591602001919060010190620002e5565b5b50905062000312919062000316565b5090565b5b808211156200033157600081600090555060010162000317565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000367826200033a565b9050919050565b62000379816200035a565b81146200038557600080fd5b50565b60008151905062000399816200036e565b92915050565b600060208284031215620003b857620003b762000335565b5b6000620003c88482850162000388565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200041957607f821691505b6020821081141562000430576200042f620003d1565b5b50919050565b6080516129ec6200046060003960008181610cdd01528181610d27015261100901526129ec6000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806371181b7c116100de578063a0712d6811610097578063be9a655511610071578063be9a65551461045b578063c87b56dd14610479578063e985e9c5146104a9578063f2fde38b146104d95761018e565b8063a0712d6814610407578063a22cb46514610423578063b88d4fde1461043f5761018e565b806371181b7c1461036b578063715018a614610389578063819b25ba146103935780638da5cb5b146103af57806395d89b41146103cd5780639b3b2995146103eb5761018e565b806342842e0e1161014b5780636352211e116101255780636352211e146102d157806368e24327146103015780636c0360eb1461031d57806370a082311461033b5761018e565b806342842e0e146102675780634d0df5fc1461028357806351830227146102b35761018e565b806301ffc9a71461019357806306fdde03146101c3578063081812fc146101e1578063095ea7b31461021157806318160ddd1461022d57806323b872dd1461024b575b600080fd5b6101ad60048036038101906101a89190611dba565b6104f5565b6040516101ba9190611e02565b60405180910390f35b6101cb610587565b6040516101d89190611eb6565b60405180910390f35b6101fb60048036038101906101f69190611f0e565b610619565b6040516102089190611f7c565b60405180910390f35b61022b60048036038101906102269190611fc3565b610695565b005b6102356107d6565b6040516102429190612012565b60405180910390f35b6102656004803603810190610260919061202d565b6107ed565b005b610281600480360381019061027c919061202d565b610b12565b005b61029d60048036038101906102989190612080565b610b32565b6040516102aa9190612012565b60405180910390f35b6102bb610b4a565b6040516102c89190611e02565b60405180910390f35b6102eb60048036038101906102e69190611f0e565b610b5d565b6040516102f89190611f7c565b60405180910390f35b61031b600480360381019061031691906120d9565b610b6f565b005b610325610b94565b6040516103329190611eb6565b60405180910390f35b61035560048036038101906103509190612080565b610c22565b6040516103629190612012565b60405180910390f35b610373610cdb565b6040516103809190612165565b60405180910390f35b610391610cff565b005b6103ad60048036038101906103a89190611f0e565b610d13565b005b6103b7610dd7565b6040516103c49190611f7c565b60405180910390f35b6103d5610e01565b6040516103e29190611eb6565b60405180910390f35b610405600480360381019061040091906122b5565b610e93565b005b610421600480360381019061041c9190611f0e565b610ed0565b005b61043d60048036038101906104389190612311565b6110b9565b005b610459600480360381019061045491906123f2565b611231565b005b6104636112a4565b6040516104709190611e02565b60405180910390f35b610493600480360381019061048e9190611f0e565b6112b7565b6040516104a09190611eb6565b60405180910390f35b6104c360048036038101906104be9190612475565b6113e2565b6040516104d09190611e02565b60405180910390f35b6104f360048036038101906104ee9190612080565b611476565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105805750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610596906124e4565b80601f01602080910402602001604051908101604052809291908181526020018280546105c2906124e4565b801561060f5780601f106105e45761010080835404028352916020019161060f565b820191906000526020600020905b8154815290600101906020018083116105f257829003601f168201915b5050505050905090565b6000610624826114fa565b61065a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a082610b5d565b90508073ffffffffffffffffffffffffffffffffffffffff166106c1611559565b73ffffffffffffffffffffffffffffffffffffffff1614610724576106ed816106e8611559565b6113e2565b610723576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006107e0611561565b6001546000540303905090565b60006107f88261156a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461085f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061086b84611638565b91509150610881818761087c611559565b61165a565b6108cd5761089686610891611559565b6113e2565b6108cc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610934576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610941868686600161169e565b801561094c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a1a856109f68888876116a4565b7c0200000000000000000000000000000000000000000000000000000000176116cc565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610aa2576000600185019050600060046000838152602001908152602001600020541415610aa0576000548114610a9f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b0a86868660016116f7565b505050505050565b610b2d83838360405180602001604052806000815250611231565b505050565b600c6020528060005260406000206000915090505481565b600a60019054906101000a900460ff1681565b6000610b688261156a565b9050919050565b610b776116fd565b80600a60006101000a81548160ff02191690831515021790555050565b600b8054610ba1906124e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcd906124e4565b8015610c1a5780601f10610bef57610100808354040283529160200191610c1a565b820191906000526020600020905b815481529060010190602001808311610bfd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c8a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610d076116fd565b610d11600061177b565b565b610d1b6116fd565b610d253382611841565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663852d826533670de0b6b3a7640000633b9aca0085610d7b9190612545565b610d859190612545565b6040518363ffffffff1660e01b8152600401610da292919061259f565b600060405180830381600087803b158015610dbc57600080fd5b505af1158015610dd0573d6000803e3d6000fd5b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e10906124e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3c906124e4565b8015610e895780601f10610e5e57610100808354040283529160200191610e89565b820191906000526020600020905b815481529060010190602001808311610e6c57829003601f168201915b5050505050905090565b610e9b6116fd565b81600b9080519060200190610eb1929190611cab565b5080600a60016101000a81548160ff0219169083151502179055505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f0857600080fd5b600a60009054906101000a900460ff16610f2157600080fd5b60008111610f2e57600080fd5b610ec1610f396107d6565b82610f4491906125c8565b1115610f4f57600080fd5b6005600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482610f9c91906125c8565b1115610fa757600080fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff691906125c8565b925050819055506110073382611841565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663852d826533670de0b6b3a7640000633b9aca008561105d9190612545565b6110679190612545565b6040518363ffffffff1660e01b815260040161108492919061259f565b600060405180830381600087803b15801561109e57600080fd5b505af11580156110b2573d6000803e3d6000fd5b5050505050565b6110c1611559565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611126576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611133611559565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111e0611559565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112259190611e02565b60405180910390a35050565b61123c8484846107ed565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461129e576112678484848461185f565b61129d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a60009054906101000a900460ff1681565b60606112c2826114fa565b611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f89061266a565b60405180910390fd5b60001515600a60019054906101000a900460ff16151514156113af57600b805461132a906124e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611356906124e4565b80156113a35780601f10611378576101008083540402835291602001916113a3565b820191906000526020600020905b81548152906001019060200180831161138657829003601f168201915b505050505090506113dd565b600b6113ba836119bf565b6040516020016113cb9291906127a6565b60405160208183030381529060405290505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61147e6116fd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590612847565b60405180910390fd5b6114f78161177b565b50565b600081611505611561565b11158015611514575060005482105b8015611552575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611579611561565b11611601576000548110156116005760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156115fe575b60008114156115f45760046000836001900393508381526020019081526020016000205490506115c9565b8092505050611633565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86116bb868684611a19565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611705611a22565b73ffffffffffffffffffffffffffffffffffffffff16611723610dd7565b73ffffffffffffffffffffffffffffffffffffffff1614611779576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611770906128b3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61185b828260405180602001604052806000815250611a2a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611885611559565b8786866040518563ffffffff1660e01b81526004016118a79493929190612928565b602060405180830381600087803b1580156118c157600080fd5b505af19250505080156118f257506040513d601f19601f820116820180604052508101906118ef9190612989565b60015b61196c573d8060008114611922576040519150601f19603f3d011682016040523d82523d6000602084013e611927565b606091505b50600081511415611964576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611a0557600183039250600a81066030018353600a810490506119e5565b508181036020830392508083525050919050565b60009392505050565b600033905090565b611a348383611ac7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ac257600080549050600083820390505b611a74600086838060010194508661185f565b611aaa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611a61578160005414611abf57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b34576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611b6f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b7c600084838561169e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611bf383611be460008660006116a4565b611bed85611c9b565b176116cc565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611c1757806000819055505050611c9660008483856116f7565b505050565b60006001821460e11b9050919050565b828054611cb7906124e4565b90600052602060002090601f016020900481019282611cd95760008555611d20565b82601f10611cf257805160ff1916838001178555611d20565b82800160010185558215611d20579182015b82811115611d1f578251825591602001919060010190611d04565b5b509050611d2d9190611d31565b5090565b5b80821115611d4a576000816000905550600101611d32565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d9781611d62565b8114611da257600080fd5b50565b600081359050611db481611d8e565b92915050565b600060208284031215611dd057611dcf611d58565b5b6000611dde84828501611da5565b91505092915050565b60008115159050919050565b611dfc81611de7565b82525050565b6000602082019050611e176000830184611df3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e57578082015181840152602081019050611e3c565b83811115611e66576000848401525b50505050565b6000601f19601f8301169050919050565b6000611e8882611e1d565b611e928185611e28565b9350611ea2818560208601611e39565b611eab81611e6c565b840191505092915050565b60006020820190508181036000830152611ed08184611e7d565b905092915050565b6000819050919050565b611eeb81611ed8565b8114611ef657600080fd5b50565b600081359050611f0881611ee2565b92915050565b600060208284031215611f2457611f23611d58565b5b6000611f3284828501611ef9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f6682611f3b565b9050919050565b611f7681611f5b565b82525050565b6000602082019050611f916000830184611f6d565b92915050565b611fa081611f5b565b8114611fab57600080fd5b50565b600081359050611fbd81611f97565b92915050565b60008060408385031215611fda57611fd9611d58565b5b6000611fe885828601611fae565b9250506020611ff985828601611ef9565b9150509250929050565b61200c81611ed8565b82525050565b60006020820190506120276000830184612003565b92915050565b60008060006060848603121561204657612045611d58565b5b600061205486828701611fae565b935050602061206586828701611fae565b925050604061207686828701611ef9565b9150509250925092565b60006020828403121561209657612095611d58565b5b60006120a484828501611fae565b91505092915050565b6120b681611de7565b81146120c157600080fd5b50565b6000813590506120d3816120ad565b92915050565b6000602082840312156120ef576120ee611d58565b5b60006120fd848285016120c4565b91505092915050565b6000819050919050565b600061212b61212661212184611f3b565b612106565b611f3b565b9050919050565b600061213d82612110565b9050919050565b600061214f82612132565b9050919050565b61215f81612144565b82525050565b600060208201905061217a6000830184612156565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6121c282611e6c565b810181811067ffffffffffffffff821117156121e1576121e061218a565b5b80604052505050565b60006121f4611d4e565b905061220082826121b9565b919050565b600067ffffffffffffffff8211156122205761221f61218a565b5b61222982611e6c565b9050602081019050919050565b82818337600083830152505050565b600061225861225384612205565b6121ea565b90508281526020810184848401111561227457612273612185565b5b61227f848285612236565b509392505050565b600082601f83011261229c5761229b612180565b5b81356122ac848260208601612245565b91505092915050565b600080604083850312156122cc576122cb611d58565b5b600083013567ffffffffffffffff8111156122ea576122e9611d5d565b5b6122f685828601612287565b9250506020612307858286016120c4565b9150509250929050565b6000806040838503121561232857612327611d58565b5b600061233685828601611fae565b9250506020612347858286016120c4565b9150509250929050565b600067ffffffffffffffff82111561236c5761236b61218a565b5b61237582611e6c565b9050602081019050919050565b600061239561239084612351565b6121ea565b9050828152602081018484840111156123b1576123b0612185565b5b6123bc848285612236565b509392505050565b600082601f8301126123d9576123d8612180565b5b81356123e9848260208601612382565b91505092915050565b6000806000806080858703121561240c5761240b611d58565b5b600061241a87828801611fae565b945050602061242b87828801611fae565b935050604061243c87828801611ef9565b925050606085013567ffffffffffffffff81111561245d5761245c611d5d565b5b612469878288016123c4565b91505092959194509250565b6000806040838503121561248c5761248b611d58565b5b600061249a85828601611fae565b92505060206124ab85828601611fae565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124fc57607f821691505b602082108114156125105761250f6124b5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061255082611ed8565b915061255b83611ed8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561259457612593612516565b5b828202905092915050565b60006040820190506125b46000830185611f6d565b6125c16020830184612003565b9392505050565b60006125d382611ed8565b91506125de83611ed8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561261357612612612516565b5b828201905092915050565b7f6e6f6e6578697374656e7420746f6b656e496400000000000000000000000000600082015250565b6000612654601383611e28565b915061265f8261261e565b602082019050919050565b6000602082019050818103600083015261268381612647565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546126b7816124e4565b6126c1818661268a565b945060018216600081146126dc57600181146126ed57612720565b60ff19831686528186019350612720565b6126f685612695565b60005b83811015612718578154818901526001820191506020810190506126f9565b838801955050505b50505092915050565b600061273482611e1d565b61273e818561268a565b935061274e818560208601611e39565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061279060058361268a565b915061279b8261275a565b600582019050919050565b60006127b282856126aa565b91506127be8284612729565b91506127c982612783565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612831602683611e28565b915061283c826127d5565b604082019050919050565b6000602082019050818103600083015261286081612824565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061289d602083611e28565b91506128a882612867565b602082019050919050565b600060208201905081810360008301526128cc81612890565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006128fa826128d3565b61290481856128de565b9350612914818560208601611e39565b61291d81611e6c565b840191505092915050565b600060808201905061293d6000830187611f6d565b61294a6020830186611f6d565b6129576040830185612003565b818103606083015261296981846128ef565b905095945050505050565b60008151905061298381611d8e565b92915050565b60006020828403121561299f5761299e611d58565b5b60006129ad84828501612974565b9150509291505056fea26469706673582212208dae7b6d6fadc73165852e20e76ca0a62453dc6afb5807af7eaaec90cdb4a07d64736f6c63430008090033000000000000000000000000f0a7f3abb86e028a0910894a6a8b9a738e13bedc

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806371181b7c116100de578063a0712d6811610097578063be9a655511610071578063be9a65551461045b578063c87b56dd14610479578063e985e9c5146104a9578063f2fde38b146104d95761018e565b8063a0712d6814610407578063a22cb46514610423578063b88d4fde1461043f5761018e565b806371181b7c1461036b578063715018a614610389578063819b25ba146103935780638da5cb5b146103af57806395d89b41146103cd5780639b3b2995146103eb5761018e565b806342842e0e1161014b5780636352211e116101255780636352211e146102d157806368e24327146103015780636c0360eb1461031d57806370a082311461033b5761018e565b806342842e0e146102675780634d0df5fc1461028357806351830227146102b35761018e565b806301ffc9a71461019357806306fdde03146101c3578063081812fc146101e1578063095ea7b31461021157806318160ddd1461022d57806323b872dd1461024b575b600080fd5b6101ad60048036038101906101a89190611dba565b6104f5565b6040516101ba9190611e02565b60405180910390f35b6101cb610587565b6040516101d89190611eb6565b60405180910390f35b6101fb60048036038101906101f69190611f0e565b610619565b6040516102089190611f7c565b60405180910390f35b61022b60048036038101906102269190611fc3565b610695565b005b6102356107d6565b6040516102429190612012565b60405180910390f35b6102656004803603810190610260919061202d565b6107ed565b005b610281600480360381019061027c919061202d565b610b12565b005b61029d60048036038101906102989190612080565b610b32565b6040516102aa9190612012565b60405180910390f35b6102bb610b4a565b6040516102c89190611e02565b60405180910390f35b6102eb60048036038101906102e69190611f0e565b610b5d565b6040516102f89190611f7c565b60405180910390f35b61031b600480360381019061031691906120d9565b610b6f565b005b610325610b94565b6040516103329190611eb6565b60405180910390f35b61035560048036038101906103509190612080565b610c22565b6040516103629190612012565b60405180910390f35b610373610cdb565b6040516103809190612165565b60405180910390f35b610391610cff565b005b6103ad60048036038101906103a89190611f0e565b610d13565b005b6103b7610dd7565b6040516103c49190611f7c565b60405180910390f35b6103d5610e01565b6040516103e29190611eb6565b60405180910390f35b610405600480360381019061040091906122b5565b610e93565b005b610421600480360381019061041c9190611f0e565b610ed0565b005b61043d60048036038101906104389190612311565b6110b9565b005b610459600480360381019061045491906123f2565b611231565b005b6104636112a4565b6040516104709190611e02565b60405180910390f35b610493600480360381019061048e9190611f0e565b6112b7565b6040516104a09190611eb6565b60405180910390f35b6104c360048036038101906104be9190612475565b6113e2565b6040516104d09190611e02565b60405180910390f35b6104f360048036038101906104ee9190612080565b611476565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105805750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610596906124e4565b80601f01602080910402602001604051908101604052809291908181526020018280546105c2906124e4565b801561060f5780601f106105e45761010080835404028352916020019161060f565b820191906000526020600020905b8154815290600101906020018083116105f257829003601f168201915b5050505050905090565b6000610624826114fa565b61065a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a082610b5d565b90508073ffffffffffffffffffffffffffffffffffffffff166106c1611559565b73ffffffffffffffffffffffffffffffffffffffff1614610724576106ed816106e8611559565b6113e2565b610723576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006107e0611561565b6001546000540303905090565b60006107f88261156a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461085f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061086b84611638565b91509150610881818761087c611559565b61165a565b6108cd5761089686610891611559565b6113e2565b6108cc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610934576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610941868686600161169e565b801561094c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a1a856109f68888876116a4565b7c0200000000000000000000000000000000000000000000000000000000176116cc565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610aa2576000600185019050600060046000838152602001908152602001600020541415610aa0576000548114610a9f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b0a86868660016116f7565b505050505050565b610b2d83838360405180602001604052806000815250611231565b505050565b600c6020528060005260406000206000915090505481565b600a60019054906101000a900460ff1681565b6000610b688261156a565b9050919050565b610b776116fd565b80600a60006101000a81548160ff02191690831515021790555050565b600b8054610ba1906124e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcd906124e4565b8015610c1a5780601f10610bef57610100808354040283529160200191610c1a565b820191906000526020600020905b815481529060010190602001808311610bfd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c8a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b7f000000000000000000000000f0a7f3abb86e028a0910894a6a8b9a738e13bedc81565b610d076116fd565b610d11600061177b565b565b610d1b6116fd565b610d253382611841565b7f000000000000000000000000f0a7f3abb86e028a0910894a6a8b9a738e13bedc73ffffffffffffffffffffffffffffffffffffffff1663852d826533670de0b6b3a7640000633b9aca0085610d7b9190612545565b610d859190612545565b6040518363ffffffff1660e01b8152600401610da292919061259f565b600060405180830381600087803b158015610dbc57600080fd5b505af1158015610dd0573d6000803e3d6000fd5b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e10906124e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3c906124e4565b8015610e895780601f10610e5e57610100808354040283529160200191610e89565b820191906000526020600020905b815481529060010190602001808311610e6c57829003601f168201915b5050505050905090565b610e9b6116fd565b81600b9080519060200190610eb1929190611cab565b5080600a60016101000a81548160ff0219169083151502179055505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f0857600080fd5b600a60009054906101000a900460ff16610f2157600080fd5b60008111610f2e57600080fd5b610ec1610f396107d6565b82610f4491906125c8565b1115610f4f57600080fd5b6005600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482610f9c91906125c8565b1115610fa757600080fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff691906125c8565b925050819055506110073382611841565b7f000000000000000000000000f0a7f3abb86e028a0910894a6a8b9a738e13bedc73ffffffffffffffffffffffffffffffffffffffff1663852d826533670de0b6b3a7640000633b9aca008561105d9190612545565b6110679190612545565b6040518363ffffffff1660e01b815260040161108492919061259f565b600060405180830381600087803b15801561109e57600080fd5b505af11580156110b2573d6000803e3d6000fd5b5050505050565b6110c1611559565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611126576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611133611559565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111e0611559565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112259190611e02565b60405180910390a35050565b61123c8484846107ed565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461129e576112678484848461185f565b61129d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a60009054906101000a900460ff1681565b60606112c2826114fa565b611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f89061266a565b60405180910390fd5b60001515600a60019054906101000a900460ff16151514156113af57600b805461132a906124e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611356906124e4565b80156113a35780601f10611378576101008083540402835291602001916113a3565b820191906000526020600020905b81548152906001019060200180831161138657829003601f168201915b505050505090506113dd565b600b6113ba836119bf565b6040516020016113cb9291906127a6565b60405160208183030381529060405290505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61147e6116fd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590612847565b60405180910390fd5b6114f78161177b565b50565b600081611505611561565b11158015611514575060005482105b8015611552575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611579611561565b11611601576000548110156116005760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156115fe575b60008114156115f45760046000836001900393508381526020019081526020016000205490506115c9565b8092505050611633565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86116bb868684611a19565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611705611a22565b73ffffffffffffffffffffffffffffffffffffffff16611723610dd7565b73ffffffffffffffffffffffffffffffffffffffff1614611779576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611770906128b3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61185b828260405180602001604052806000815250611a2a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611885611559565b8786866040518563ffffffff1660e01b81526004016118a79493929190612928565b602060405180830381600087803b1580156118c157600080fd5b505af19250505080156118f257506040513d601f19601f820116820180604052508101906118ef9190612989565b60015b61196c573d8060008114611922576040519150601f19603f3d011682016040523d82523d6000602084013e611927565b606091505b50600081511415611964576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611a0557600183039250600a81066030018353600a810490506119e5565b508181036020830392508083525050919050565b60009392505050565b600033905090565b611a348383611ac7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ac257600080549050600083820390505b611a74600086838060010194508661185f565b611aaa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611a61578160005414611abf57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b34576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611b6f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b7c600084838561169e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611bf383611be460008660006116a4565b611bed85611c9b565b176116cc565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611c1757806000819055505050611c9660008483856116f7565b505050565b60006001821460e11b9050919050565b828054611cb7906124e4565b90600052602060002090601f016020900481019282611cd95760008555611d20565b82601f10611cf257805160ff1916838001178555611d20565b82800160010185558215611d20579182015b82811115611d1f578251825591602001919060010190611d04565b5b509050611d2d9190611d31565b5090565b5b80821115611d4a576000816000905550600101611d32565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d9781611d62565b8114611da257600080fd5b50565b600081359050611db481611d8e565b92915050565b600060208284031215611dd057611dcf611d58565b5b6000611dde84828501611da5565b91505092915050565b60008115159050919050565b611dfc81611de7565b82525050565b6000602082019050611e176000830184611df3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e57578082015181840152602081019050611e3c565b83811115611e66576000848401525b50505050565b6000601f19601f8301169050919050565b6000611e8882611e1d565b611e928185611e28565b9350611ea2818560208601611e39565b611eab81611e6c565b840191505092915050565b60006020820190508181036000830152611ed08184611e7d565b905092915050565b6000819050919050565b611eeb81611ed8565b8114611ef657600080fd5b50565b600081359050611f0881611ee2565b92915050565b600060208284031215611f2457611f23611d58565b5b6000611f3284828501611ef9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f6682611f3b565b9050919050565b611f7681611f5b565b82525050565b6000602082019050611f916000830184611f6d565b92915050565b611fa081611f5b565b8114611fab57600080fd5b50565b600081359050611fbd81611f97565b92915050565b60008060408385031215611fda57611fd9611d58565b5b6000611fe885828601611fae565b9250506020611ff985828601611ef9565b9150509250929050565b61200c81611ed8565b82525050565b60006020820190506120276000830184612003565b92915050565b60008060006060848603121561204657612045611d58565b5b600061205486828701611fae565b935050602061206586828701611fae565b925050604061207686828701611ef9565b9150509250925092565b60006020828403121561209657612095611d58565b5b60006120a484828501611fae565b91505092915050565b6120b681611de7565b81146120c157600080fd5b50565b6000813590506120d3816120ad565b92915050565b6000602082840312156120ef576120ee611d58565b5b60006120fd848285016120c4565b91505092915050565b6000819050919050565b600061212b61212661212184611f3b565b612106565b611f3b565b9050919050565b600061213d82612110565b9050919050565b600061214f82612132565b9050919050565b61215f81612144565b82525050565b600060208201905061217a6000830184612156565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6121c282611e6c565b810181811067ffffffffffffffff821117156121e1576121e061218a565b5b80604052505050565b60006121f4611d4e565b905061220082826121b9565b919050565b600067ffffffffffffffff8211156122205761221f61218a565b5b61222982611e6c565b9050602081019050919050565b82818337600083830152505050565b600061225861225384612205565b6121ea565b90508281526020810184848401111561227457612273612185565b5b61227f848285612236565b509392505050565b600082601f83011261229c5761229b612180565b5b81356122ac848260208601612245565b91505092915050565b600080604083850312156122cc576122cb611d58565b5b600083013567ffffffffffffffff8111156122ea576122e9611d5d565b5b6122f685828601612287565b9250506020612307858286016120c4565b9150509250929050565b6000806040838503121561232857612327611d58565b5b600061233685828601611fae565b9250506020612347858286016120c4565b9150509250929050565b600067ffffffffffffffff82111561236c5761236b61218a565b5b61237582611e6c565b9050602081019050919050565b600061239561239084612351565b6121ea565b9050828152602081018484840111156123b1576123b0612185565b5b6123bc848285612236565b509392505050565b600082601f8301126123d9576123d8612180565b5b81356123e9848260208601612382565b91505092915050565b6000806000806080858703121561240c5761240b611d58565b5b600061241a87828801611fae565b945050602061242b87828801611fae565b935050604061243c87828801611ef9565b925050606085013567ffffffffffffffff81111561245d5761245c611d5d565b5b612469878288016123c4565b91505092959194509250565b6000806040838503121561248c5761248b611d58565b5b600061249a85828601611fae565b92505060206124ab85828601611fae565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124fc57607f821691505b602082108114156125105761250f6124b5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061255082611ed8565b915061255b83611ed8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561259457612593612516565b5b828202905092915050565b60006040820190506125b46000830185611f6d565b6125c16020830184612003565b9392505050565b60006125d382611ed8565b91506125de83611ed8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561261357612612612516565b5b828201905092915050565b7f6e6f6e6578697374656e7420746f6b656e496400000000000000000000000000600082015250565b6000612654601383611e28565b915061265f8261261e565b602082019050919050565b6000602082019050818103600083015261268381612647565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546126b7816124e4565b6126c1818661268a565b945060018216600081146126dc57600181146126ed57612720565b60ff19831686528186019350612720565b6126f685612695565b60005b83811015612718578154818901526001820191506020810190506126f9565b838801955050505b50505092915050565b600061273482611e1d565b61273e818561268a565b935061274e818560208601611e39565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061279060058361268a565b915061279b8261275a565b600582019050919050565b60006127b282856126aa565b91506127be8284612729565b91506127c982612783565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612831602683611e28565b915061283c826127d5565b604082019050919050565b6000602082019050818103600083015261286081612824565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061289d602083611e28565b91506128a882612867565b602082019050919050565b600060208201905081810360008301526128cc81612890565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006128fa826128d3565b61290481856128de565b9350612914818560208601611e39565b61291d81611e6c565b840191505092915050565b600060808201905061293d6000830187611f6d565b61294a6020830186611f6d565b6129576040830185612003565b818103606083015261296981846128ef565b905095945050505050565b60008151905061298381611d8e565b92915050565b60006020828403121561299f5761299e611d58565b5b60006129ad84828501612974565b9150509291505056fea26469706673582212208dae7b6d6fadc73165852e20e76ca0a62453dc6afb5807af7eaaec90cdb4a07d64736f6c63430008090033

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

000000000000000000000000f0a7f3abb86e028a0910894a6a8b9a738e13bedc

-----Decoded View---------------
Arg [0] : _abecoin (address): 0xF0a7f3abb86E028A0910894A6a8b9a738E13beDc

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f0a7f3abb86e028a0910894a6a8b9a738e13bedc


Deployed Bytecode Sourcemap

51230:1572:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17351:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22998:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24944:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24492:386;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16405:315;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34209:2800;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25834:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51418:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51319:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22787:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52166:72;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51351:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18030:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51381:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50259:103;;;:::i;:::-;;52002:159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49611:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23167:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52243:137;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51606:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25220:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26090:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51290:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52506:293;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25599:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50517:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17351:615;17436:4;17751:10;17736:25;;:11;:25;;;;:102;;;;17828:10;17813:25;;:11;:25;;;;17736:102;:179;;;;17905:10;17890:25;;:11;:25;;;;17736:179;17716:199;;17351:615;;;:::o;22998:100::-;23052:13;23085:5;23078:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22998:100;:::o;24944:204::-;25012:7;25037:16;25045:7;25037;:16::i;:::-;25032:64;;25062:34;;;;;;;;;;;;;;25032:64;25116:15;:24;25132:7;25116:24;;;;;;;;;;;;;;;;;;;;;25109:31;;24944:204;;;:::o;24492:386::-;24565:13;24581:16;24589:7;24581;:16::i;:::-;24565:32;;24637:5;24614:28;;:19;:17;:19::i;:::-;:28;;;24610:175;;24662:44;24679:5;24686:19;:17;:19::i;:::-;24662:16;:44::i;:::-;24657:128;;24734:35;;;;;;;;;;;;;;24657:128;24610:175;24824:2;24797:15;:24;24813:7;24797:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;24862:7;24858:2;24842:28;;24851:5;24842:28;;;;;;;;;;;;24554:324;24492:386;;:::o;16405:315::-;16458:7;16686:15;:13;:15::i;:::-;16671:12;;16655:13;;:28;:46;16648:53;;16405:315;:::o;34209:2800::-;34343:27;34373;34392:7;34373:18;:27::i;:::-;34343:57;;34458:4;34417:45;;34433:19;34417:45;;;34413:86;;34471:28;;;;;;;;;;;;;;34413:86;34513:27;34542:23;34569:28;34589:7;34569:19;:28::i;:::-;34512:85;;;;34697:62;34716:15;34733:4;34739:19;:17;:19::i;:::-;34697:18;:62::i;:::-;34692:174;;34779:43;34796:4;34802:19;:17;:19::i;:::-;34779:16;:43::i;:::-;34774:92;;34831:35;;;;;;;;;;;;;;34774:92;34692:174;34897:1;34883:16;;:2;:16;;;34879:52;;;34908:23;;;;;;;;;;;;;;34879:52;34944:43;34966:4;34972:2;34976:7;34985:1;34944:21;:43::i;:::-;35080:15;35077:160;;;35220:1;35199:19;35192:30;35077:160;35615:18;:24;35634:4;35615:24;;;;;;;;;;;;;;;;35613:26;;;;;;;;;;;;35684:18;:22;35703:2;35684:22;;;;;;;;;;;;;;;;35682:24;;;;;;;;;;;36006:145;36043:2;36091:45;36106:4;36112:2;36116:19;36091:14;:45::i;:::-;13633:8;36064:72;36006:18;:145::i;:::-;35977:17;:26;35995:7;35977:26;;;;;;;;;;;:174;;;;36321:1;13633:8;36271:19;:46;:51;36267:626;;;36343:19;36375:1;36365:7;:11;36343:33;;36532:1;36498:17;:30;36516:11;36498:30;;;;;;;;;;;;:35;36494:384;;;36636:13;;36621:11;:28;36617:242;;36816:19;36783:17;:30;36801:11;36783:30;;;;;;;;;;;:52;;;;36617:242;36494:384;36324:569;36267:626;36940:7;36936:2;36921:27;;36930:4;36921:27;;;;;;;;;;;;36959:42;36980:4;36986:2;36990:7;36999:1;36959:20;:42::i;:::-;34332:2677;;;34209:2800;;;:::o;25834:185::-;25972:39;25989:4;25995:2;25999:7;25972:39;;;;;;;;;;;;:16;:39::i;:::-;25834:185;;;:::o;51418:49::-;;;;;;;;;;;;;;;;;:::o;51319:28::-;;;;;;;;;;;;;:::o;22787:144::-;22851:7;22894:27;22913:7;22894:18;:27::i;:::-;22871:52;;22787:144;;;:::o;52166:72::-;49497:13;:11;:13::i;:::-;52227:6:::1;52219:5;;:14;;;;;;;;;;;;;;;;;;52166:72:::0;:::o;51351:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18030:224::-;18094:7;18135:1;18118:19;;:5;:19;;;18114:60;;;18146:28;;;;;;;;;;;;;;18114:60;12585:13;18192:18;:25;18211:5;18192:25;;;;;;;;;;;;;;;;:54;18185:61;;18030:224;;;:::o;51381:33::-;;;:::o;50259:103::-;49497:13;:11;:13::i;:::-;50324:30:::1;50351:1;50324:18;:30::i;:::-;50259:103::o:0;52002:159::-;49497:13;:11;:13::i;:::-;52058:30:::1;52068:10;52080:7;52058:9;:30::i;:::-;52093:7;:18;;;52112:10;52148:6;52134:10;52124:7;:20;;;;:::i;:::-;:31;;;;:::i;:::-;52093:63;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52002:159:::0;:::o;49611:87::-;49657:7;49684:6;;;;;;;;;;;49677:13;;49611:87;:::o;23167:104::-;23223:13;23256:7;23249:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23167:104;:::o;52243:137::-;49497:13;:11;:13::i;:::-;52342:8:::1;52332:7;:18;;;;;;;;;;;;:::i;:::-;;52366:9;52355:8;;:20;;;;;;;;;;;;;;;;;;52243:137:::0;;:::o;51606:371::-;51671:9;51657:23;;:10;:23;;;51649:32;;;;;;51694:5;;;;;;;;;;;51686:14;;;;;;51723:1;51713:7;:11;51705:20;;;;;;51765:4;51748:13;:11;:13::i;:::-;51738:7;:23;;;;:::i;:::-;:31;;51730:40;;;;;;51823:1;51793:14;:26;51808:10;51793:26;;;;;;;;;;;;;;;;51783:7;:36;;;;:::i;:::-;:41;;51775:50;;;;;;51862:7;51832:14;:26;51847:10;51832:26;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;51874:30;51884:10;51896:7;51874:9;:30::i;:::-;51909:7;:18;;;51928:10;51964:6;51950:10;51940:7;:20;;;;:::i;:::-;:31;;;;:::i;:::-;51909:63;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51606:371;:::o;25220:308::-;25331:19;:17;:19::i;:::-;25319:31;;:8;:31;;;25315:61;;;25359:17;;;;;;;;;;;;;;25315:61;25441:8;25389:18;:39;25408:19;:17;:19::i;:::-;25389:39;;;;;;;;;;;;;;;:49;25429:8;25389:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;25501:8;25465:55;;25480:19;:17;:19::i;:::-;25465:55;;;25511:8;25465:55;;;;;;:::i;:::-;;;;;;;;25220:308;;:::o;26090:399::-;26257:31;26270:4;26276:2;26280:7;26257:12;:31::i;:::-;26321:1;26303:2;:14;;;:19;26299:183;;26342:56;26373:4;26379:2;26383:7;26392:5;26342:30;:56::i;:::-;26337:145;;26426:40;;;;;;;;;;;;;;26337:145;26299:183;26090:399;;;;:::o;51290:25::-;;;;;;;;;;;;;:::o;52506:293::-;52595:13;52625:17;52633:8;52625:7;:17::i;:::-;52617:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;52687:5;52675:17;;:8;;;;;;;;;;;:17;;;52671:49;;;52707:7;52700:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52671:49;52755:7;52764:19;52774:8;52764:9;:19::i;:::-;52738:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52724:70;;52506:293;;;;:::o;25599:164::-;25696:4;25720:18;:25;25739:5;25720:25;;;;;;;;;;;;;;;:35;25746:8;25720:35;;;;;;;;;;;;;;;;;;;;;;;;;25713:42;;25599:164;;;;:::o;50517:201::-;49497:13;:11;:13::i;:::-;50626:1:::1;50606:22;;:8;:22;;;;50598:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50682:28;50701:8;50682:18;:28::i;:::-;50517:201:::0;:::o;26744:273::-;26801:4;26857:7;26838:15;:13;:15::i;:::-;:26;;:66;;;;;26891:13;;26881:7;:23;26838:66;:152;;;;;26989:1;13355:8;26942:17;:26;26960:7;26942:26;;;;;;;;;;;;:43;:48;26838:152;26818:172;;26744:273;;;:::o;45305:105::-;45365:7;45392:10;45385:17;;45305:105;:::o;52409:92::-;52474:7;52495:1;52488:8;;52409:92;:::o;19704:1129::-;19771:7;19791:12;19806:7;19791:22;;19874:4;19855:15;:13;:15::i;:::-;:23;19851:915;;19908:13;;19901:4;:20;19897:869;;;19946:14;19963:17;:23;19981:4;19963:23;;;;;;;;;;;;19946:40;;20079:1;13355:8;20052:6;:23;:28;20048:699;;;20571:113;20588:1;20578:6;:11;20571:113;;;20631:17;:25;20649:6;;;;;;;20631:25;;;;;;;;;;;;20622:34;;20571:113;;;20717:6;20710:13;;;;;;20048:699;19923:843;19897:869;19851:915;20794:31;;;;;;;;;;;;;;19704:1129;;;;:::o;32545:652::-;32640:27;32669:23;32710:53;32766:15;32710:71;;32952:7;32946:4;32939:21;32987:22;32981:4;32974:36;33063:4;33057;33047:21;33024:44;;33159:19;33153:26;33134:45;;32890:300;32545:652;;;:::o;33310:645::-;33452:11;33614:15;33608:4;33604:26;33596:34;;33773:15;33762:9;33758:31;33745:44;;33920:15;33909:9;33906:30;33899:4;33888:9;33885:19;33882:55;33872:65;;33310:645;;;;;:::o;44138:159::-;;;;;:::o;42450:309::-;42585:7;42605:16;13756:3;42631:19;:40;;42605:67;;13756:3;42698:31;42709:4;42715:2;42719:9;42698:10;:31::i;:::-;42690:40;;:61;;42683:68;;;42450:309;;;;;:::o;22278:447::-;22358:14;22526:15;22519:5;22515:27;22506:36;;22700:5;22686:11;22662:22;22658:40;22655:51;22648:5;22645:62;22635:72;;22278:447;;;;:::o;44956:158::-;;;;;:::o;49776:132::-;49851:12;:10;:12::i;:::-;49840:23;;:7;:5;:7::i;:::-;:23;;;49832:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49776:132::o;50878:191::-;50952:16;50971:6;;;;;;;;;;;50952:25;;50997:8;50988:6;;:17;;;;;;;;;;;;;;;;;;51052:8;51021:40;;51042:8;51021:40;;;;;;;;;;;;50941:128;50878:191;:::o;27101:104::-;27170:27;27180:2;27184:8;27170:27;;;;;;;;;;;;:9;:27::i;:::-;27101:104;;:::o;40960:716::-;41123:4;41169:2;41144:45;;;41190:19;:17;:19::i;:::-;41211:4;41217:7;41226:5;41144:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41140:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41444:1;41427:6;:13;:18;41423:235;;;41473:40;;;;;;;;;;;;;;41423:235;41616:6;41610:13;41601:6;41597:2;41593:15;41586:38;41140:529;41313:54;;;41303:64;;;:6;:64;;;;41296:71;;;40960:716;;;;;;:::o;45516:1960::-;45573:17;45992:3;45985:4;45979:11;45975:21;45968:28;;46083:3;46077:4;46070:17;46189:3;46645:5;46775:1;46770:3;46766:11;46759:18;;46912:2;46906:4;46902:13;46898:2;46894:22;46889:3;46881:36;46953:2;46947:4;46943:13;46935:21;;46537:697;46972:4;46537:697;;;47163:1;47158:3;47154:11;47147:18;;47214:2;47208:4;47204:13;47200:2;47196:22;47191:3;47183:36;47067:2;47061:4;47057:13;47049:21;;46537:697;;;46541:430;47273:3;47268;47264:13;47388:2;47383:3;47379:12;47372:19;;47451:6;47446:3;47439:19;45612:1857;;45516:1960;;;:::o;43335:147::-;43472:6;43335:147;;;;;:::o;48162:98::-;48215:7;48242:10;48235:17;;48162:98;:::o;27621:681::-;27744:19;27750:2;27754:8;27744:5;:19::i;:::-;27823:1;27805:2;:14;;;:19;27801:483;;27845:11;27859:13;;27845:27;;27891:13;27913:8;27907:3;:14;27891:30;;27940:233;27971:62;28010:1;28014:2;28018:7;;;;;;28027:5;27971:30;:62::i;:::-;27966:167;;28069:40;;;;;;;;;;;;;;27966:167;28168:3;28160:5;:11;27940:233;;28255:3;28238:13;;:20;28234:34;;28260:8;;;28234:34;27826:458;;27801:483;27621:681;;;:::o;28575:1529::-;28640:20;28663:13;;28640:36;;28705:1;28691:16;;:2;:16;;;28687:48;;;28716:19;;;;;;;;;;;;;;28687:48;28762:1;28750:8;:13;28746:44;;;28772:18;;;;;;;;;;;;;;28746:44;28803:61;28833:1;28837:2;28841:12;28855:8;28803:21;:61::i;:::-;29346:1;12722:2;29317:1;:25;;29316:31;29304:8;:44;29278:18;:22;29297:2;29278:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;29625:139;29662:2;29716:33;29739:1;29743:2;29747:1;29716:14;:33::i;:::-;29683:30;29704:8;29683:20;:30::i;:::-;:66;29625:18;:139::i;:::-;29591:17;:31;29609:12;29591:31;;;;;;;;;;;:173;;;;29781:15;29799:12;29781:30;;29826:11;29855:8;29840:12;:23;29826:37;;29878:101;29930:9;;;;;;29926:2;29905:35;;29922:1;29905:35;;;;;;;;;;;;29974:3;29964:7;:13;29878:101;;30011:3;29995:13;:19;;;;29052:974;;30036:60;30065:1;30069:2;30073:12;30087:8;30036:20;:60::i;:::-;28629:1475;28575:1529;;:::o;24108:322::-;24178:14;24409:1;24399:8;24396:15;24371:23;24367:45;24357:55;;24108:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:323::-;6567:6;6616:2;6604:9;6595:7;6591:23;6587:32;6584:119;;;6622:79;;:::i;:::-;6584:119;6742:1;6767:50;6809:7;6800:6;6789:9;6785:22;6767:50;:::i;:::-;6757:60;;6713:114;6511:323;;;;:::o;6840:60::-;6868:3;6889:5;6882:12;;6840:60;;;:::o;6906:142::-;6956:9;6989:53;7007:34;7016:24;7034:5;7016:24;:::i;:::-;7007:34;:::i;:::-;6989:53;:::i;:::-;6976:66;;6906:142;;;:::o;7054:126::-;7104:9;7137:37;7168:5;7137:37;:::i;:::-;7124:50;;7054:126;;;:::o;7186:143::-;7253:9;7286:37;7317:5;7286:37;:::i;:::-;7273:50;;7186:143;;;:::o;7335:165::-;7439:54;7487:5;7439:54;:::i;:::-;7434:3;7427:67;7335:165;;:::o;7506:256::-;7616:4;7654:2;7643:9;7639:18;7631:26;;7667:88;7752:1;7741:9;7737:17;7728:6;7667:88;:::i;:::-;7506:256;;;;:::o;7768:117::-;7877:1;7874;7867:12;7891:117;8000:1;7997;7990:12;8014:180;8062:77;8059:1;8052:88;8159:4;8156:1;8149:15;8183:4;8180:1;8173:15;8200:281;8283:27;8305:4;8283:27;:::i;:::-;8275:6;8271:40;8413:6;8401:10;8398:22;8377:18;8365:10;8362:34;8359:62;8356:88;;;8424:18;;:::i;:::-;8356:88;8464:10;8460:2;8453:22;8243:238;8200:281;;:::o;8487:129::-;8521:6;8548:20;;:::i;:::-;8538:30;;8577:33;8605:4;8597:6;8577:33;:::i;:::-;8487:129;;;:::o;8622:308::-;8684:4;8774:18;8766:6;8763:30;8760:56;;;8796:18;;:::i;:::-;8760:56;8834:29;8856:6;8834:29;:::i;:::-;8826:37;;8918:4;8912;8908:15;8900:23;;8622:308;;;:::o;8936:154::-;9020:6;9015:3;9010;8997:30;9082:1;9073:6;9068:3;9064:16;9057:27;8936:154;;;:::o;9096:412::-;9174:5;9199:66;9215:49;9257:6;9215:49;:::i;:::-;9199:66;:::i;:::-;9190:75;;9288:6;9281:5;9274:21;9326:4;9319:5;9315:16;9364:3;9355:6;9350:3;9346:16;9343:25;9340:112;;;9371:79;;:::i;:::-;9340:112;9461:41;9495:6;9490:3;9485;9461:41;:::i;:::-;9180:328;9096:412;;;;;:::o;9528:340::-;9584:5;9633:3;9626:4;9618:6;9614:17;9610:27;9600:122;;9641:79;;:::i;:::-;9600:122;9758:6;9745:20;9783:79;9858:3;9850:6;9843:4;9835:6;9831:17;9783:79;:::i;:::-;9774:88;;9590:278;9528:340;;;;:::o;9874:648::-;9949:6;9957;10006:2;9994:9;9985:7;9981:23;9977:32;9974:119;;;10012:79;;:::i;:::-;9974:119;10160:1;10149:9;10145:17;10132:31;10190:18;10182:6;10179:30;10176:117;;;10212:79;;:::i;:::-;10176:117;10317:63;10372:7;10363:6;10352:9;10348:22;10317:63;:::i;:::-;10307:73;;10103:287;10429:2;10455:50;10497:7;10488:6;10477:9;10473:22;10455:50;:::i;:::-;10445:60;;10400:115;9874:648;;;;;:::o;10528:468::-;10593:6;10601;10650:2;10638:9;10629:7;10625:23;10621:32;10618:119;;;10656:79;;:::i;:::-;10618:119;10776:1;10801:53;10846:7;10837:6;10826:9;10822:22;10801:53;:::i;:::-;10791:63;;10747:117;10903:2;10929:50;10971:7;10962:6;10951:9;10947:22;10929:50;:::i;:::-;10919:60;;10874:115;10528:468;;;;;:::o;11002:307::-;11063:4;11153:18;11145:6;11142:30;11139:56;;;11175:18;;:::i;:::-;11139:56;11213:29;11235:6;11213:29;:::i;:::-;11205:37;;11297:4;11291;11287:15;11279:23;;11002:307;;;:::o;11315:410::-;11392:5;11417:65;11433:48;11474:6;11433:48;:::i;:::-;11417:65;:::i;:::-;11408:74;;11505:6;11498:5;11491:21;11543:4;11536:5;11532:16;11581:3;11572:6;11567:3;11563:16;11560:25;11557:112;;;11588:79;;:::i;:::-;11557:112;11678:41;11712:6;11707:3;11702;11678:41;:::i;:::-;11398:327;11315:410;;;;;:::o;11744:338::-;11799:5;11848:3;11841:4;11833:6;11829:17;11825:27;11815:122;;11856:79;;:::i;:::-;11815:122;11973:6;11960:20;11998:78;12072:3;12064:6;12057:4;12049:6;12045:17;11998:78;:::i;:::-;11989:87;;11805:277;11744:338;;;;:::o;12088:943::-;12183:6;12191;12199;12207;12256:3;12244:9;12235:7;12231:23;12227:33;12224:120;;;12263:79;;:::i;:::-;12224:120;12383:1;12408:53;12453:7;12444:6;12433:9;12429:22;12408:53;:::i;:::-;12398:63;;12354:117;12510:2;12536:53;12581:7;12572:6;12561:9;12557:22;12536:53;:::i;:::-;12526:63;;12481:118;12638:2;12664:53;12709:7;12700:6;12689:9;12685:22;12664:53;:::i;:::-;12654:63;;12609:118;12794:2;12783:9;12779:18;12766:32;12825:18;12817:6;12814:30;12811:117;;;12847:79;;:::i;:::-;12811:117;12952:62;13006:7;12997:6;12986:9;12982:22;12952:62;:::i;:::-;12942:72;;12737:287;12088:943;;;;;;;:::o;13037:474::-;13105:6;13113;13162:2;13150:9;13141:7;13137:23;13133:32;13130:119;;;13168:79;;:::i;:::-;13130:119;13288:1;13313:53;13358:7;13349:6;13338:9;13334:22;13313:53;:::i;:::-;13303:63;;13259:117;13415:2;13441:53;13486:7;13477:6;13466:9;13462:22;13441:53;:::i;:::-;13431:63;;13386:118;13037:474;;;;;:::o;13517:180::-;13565:77;13562:1;13555:88;13662:4;13659:1;13652:15;13686:4;13683:1;13676:15;13703:320;13747:6;13784:1;13778:4;13774:12;13764:22;;13831:1;13825:4;13821:12;13852:18;13842:81;;13908:4;13900:6;13896:17;13886:27;;13842:81;13970:2;13962:6;13959:14;13939:18;13936:38;13933:84;;;13989:18;;:::i;:::-;13933:84;13754:269;13703:320;;;:::o;14029:180::-;14077:77;14074:1;14067:88;14174:4;14171:1;14164:15;14198:4;14195:1;14188:15;14215:348;14255:7;14278:20;14296:1;14278:20;:::i;:::-;14273:25;;14312:20;14330:1;14312:20;:::i;:::-;14307:25;;14500:1;14432:66;14428:74;14425:1;14422:81;14417:1;14410:9;14403:17;14399:105;14396:131;;;14507:18;;:::i;:::-;14396:131;14555:1;14552;14548:9;14537:20;;14215:348;;;;:::o;14569:332::-;14690:4;14728:2;14717:9;14713:18;14705:26;;14741:71;14809:1;14798:9;14794:17;14785:6;14741:71;:::i;:::-;14822:72;14890:2;14879:9;14875:18;14866:6;14822:72;:::i;:::-;14569:332;;;;;:::o;14907:305::-;14947:3;14966:20;14984:1;14966:20;:::i;:::-;14961:25;;15000:20;15018:1;15000:20;:::i;:::-;14995:25;;15154:1;15086:66;15082:74;15079:1;15076:81;15073:107;;;15160:18;;:::i;:::-;15073:107;15204:1;15201;15197:9;15190:16;;14907:305;;;;:::o;15218:169::-;15358:21;15354:1;15346:6;15342:14;15335:45;15218:169;:::o;15393:366::-;15535:3;15556:67;15620:2;15615:3;15556:67;:::i;:::-;15549:74;;15632:93;15721:3;15632:93;:::i;:::-;15750:2;15745:3;15741:12;15734:19;;15393:366;;;:::o;15765:419::-;15931:4;15969:2;15958:9;15954:18;15946:26;;16018:9;16012:4;16008:20;16004:1;15993:9;15989:17;15982:47;16046:131;16172:4;16046:131;:::i;:::-;16038:139;;15765:419;;;:::o;16190:148::-;16292:11;16329:3;16314:18;;16190:148;;;;:::o;16344:141::-;16393:4;16416:3;16408:11;;16439:3;16436:1;16429:14;16473:4;16470:1;16460:18;16452:26;;16344:141;;;:::o;16515:845::-;16618:3;16655:5;16649:12;16684:36;16710:9;16684:36;:::i;:::-;16736:89;16818:6;16813:3;16736:89;:::i;:::-;16729:96;;16856:1;16845:9;16841:17;16872:1;16867:137;;;;17018:1;17013:341;;;;16834:520;;16867:137;16951:4;16947:9;16936;16932:25;16927:3;16920:38;16987:6;16982:3;16978:16;16971:23;;16867:137;;17013:341;17080:38;17112:5;17080:38;:::i;:::-;17140:1;17154:154;17168:6;17165:1;17162:13;17154:154;;;17242:7;17236:14;17232:1;17227:3;17223:11;17216:35;17292:1;17283:7;17279:15;17268:26;;17190:4;17187:1;17183:12;17178:17;;17154:154;;;17337:6;17332:3;17328:16;17321:23;;17020:334;;16834:520;;16622:738;;16515:845;;;;:::o;17366:377::-;17472:3;17500:39;17533:5;17500:39;:::i;:::-;17555:89;17637:6;17632:3;17555:89;:::i;:::-;17548:96;;17653:52;17698:6;17693:3;17686:4;17679:5;17675:16;17653:52;:::i;:::-;17730:6;17725:3;17721:16;17714:23;;17476:267;17366:377;;;;:::o;17749:155::-;17889:7;17885:1;17877:6;17873:14;17866:31;17749:155;:::o;17910:400::-;18070:3;18091:84;18173:1;18168:3;18091:84;:::i;:::-;18084:91;;18184:93;18273:3;18184:93;:::i;:::-;18302:1;18297:3;18293:11;18286:18;;17910:400;;;:::o;18316:695::-;18594:3;18616:92;18704:3;18695:6;18616:92;:::i;:::-;18609:99;;18725:95;18816:3;18807:6;18725:95;:::i;:::-;18718:102;;18837:148;18981:3;18837:148;:::i;:::-;18830:155;;19002:3;18995:10;;18316:695;;;;;:::o;19017:225::-;19157:34;19153:1;19145:6;19141:14;19134:58;19226:8;19221:2;19213:6;19209:15;19202:33;19017:225;:::o;19248:366::-;19390:3;19411:67;19475:2;19470:3;19411:67;:::i;:::-;19404:74;;19487:93;19576:3;19487:93;:::i;:::-;19605:2;19600:3;19596:12;19589:19;;19248:366;;;:::o;19620:419::-;19786:4;19824:2;19813:9;19809:18;19801:26;;19873:9;19867:4;19863:20;19859:1;19848:9;19844:17;19837:47;19901:131;20027:4;19901:131;:::i;:::-;19893:139;;19620:419;;;:::o;20045:182::-;20185:34;20181:1;20173:6;20169:14;20162:58;20045:182;:::o;20233:366::-;20375:3;20396:67;20460:2;20455:3;20396:67;:::i;:::-;20389:74;;20472:93;20561:3;20472:93;:::i;:::-;20590:2;20585:3;20581:12;20574:19;;20233:366;;;:::o;20605:419::-;20771:4;20809:2;20798:9;20794:18;20786:26;;20858:9;20852:4;20848:20;20844:1;20833:9;20829:17;20822:47;20886:131;21012:4;20886:131;:::i;:::-;20878:139;;20605:419;;;:::o;21030:98::-;21081:6;21115:5;21109:12;21099:22;;21030:98;;;:::o;21134:168::-;21217:11;21251:6;21246:3;21239:19;21291:4;21286:3;21282:14;21267:29;;21134:168;;;;:::o;21308:360::-;21394:3;21422:38;21454:5;21422:38;:::i;:::-;21476:70;21539:6;21534:3;21476:70;:::i;:::-;21469:77;;21555:52;21600:6;21595:3;21588:4;21581:5;21577:16;21555:52;:::i;:::-;21632:29;21654:6;21632:29;:::i;:::-;21627:3;21623:39;21616:46;;21398:270;21308:360;;;;:::o;21674:640::-;21869:4;21907:3;21896:9;21892:19;21884:27;;21921:71;21989:1;21978:9;21974:17;21965:6;21921:71;:::i;:::-;22002:72;22070:2;22059:9;22055:18;22046:6;22002:72;:::i;:::-;22084;22152:2;22141:9;22137:18;22128:6;22084:72;:::i;:::-;22203:9;22197:4;22193:20;22188:2;22177:9;22173:18;22166:48;22231:76;22302:4;22293:6;22231:76;:::i;:::-;22223:84;;21674:640;;;;;;;:::o;22320:141::-;22376:5;22407:6;22401:13;22392:22;;22423:32;22449:5;22423:32;:::i;:::-;22320:141;;;;:::o;22467:349::-;22536:6;22585:2;22573:9;22564:7;22560:23;22556:32;22553:119;;;22591:79;;:::i;:::-;22553:119;22711:1;22736:63;22791:7;22782:6;22771:9;22767:22;22736:63;:::i;:::-;22726:73;;22682:127;22467:349;;;;:::o

Swarm Source

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