ETH Price: $3,379.87 (+3.73%)
Gas: 6.85 Gwei

Token

AnimeGangSpecials (AGS)
 

Overview

Max Total Supply

52 AGS

Holders

52

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AGS
0x2Dfee65fED72b6205FD8e8599a21293aadA32448
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:
AnimeGangSpecial

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: openzeppelin-solidity/contracts/utils/Counters.sol
// SPDX-License-Identifier: MIT


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: openzeppelin-solidity/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: openzeppelin-solidity/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: openzeppelin-solidity/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-solidity/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: openzeppelin-solidity/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: openzeppelin-solidity/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

// File: openzeppelin-solidity/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

// File: openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/AnimeGangSpecial.sol




pragma solidity ^0.8.2;






contract AnimeGangSpecial is ERC721, Ownable, ERC721Enumerable {

    using SafeMath for uint256;
    using Counters for Counters.Counter;
    string public _baseTokenURI;

    Counters.Counter private supply;
    uint256 public AIRDROP_SUPPLY = 200;

    constructor(string memory name,
                string memory symbol,
                string memory baseTokenURI) ERC721(name, symbol)
    {
        _baseTokenURI = baseTokenURI;
    }

    function changeState(uint256 supplyOfAirDrop) external onlyOwner {
        require(AIRDROP_SUPPLY <= supplyOfAirDrop, "We are not allowed to reduce the collection");
        AIRDROP_SUPPLY = supplyOfAirDrop;
    }

    function mintAirdrop(address[] calldata winners) external onlyOwner {
        require(totalSupply() <= AIRDROP_SUPPLY, 'All tokens have been minted');
        require(supply.current() + winners.length <= AIRDROP_SUPPLY, 'Not enough tokens left to gift');

        for (uint256 i = 0; i < winners.length; i++) {
            supply.increment();
            _safeMint(winners[i], supply.current());
        }

    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AIRDROP_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"supplyOfAirDrop","type":"uint256"}],"name":"changeState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"winners","type":"address[]"}],"name":"mintAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

608060405260c8600d553480156200001657600080fd5b506040516200219938038062002199833981016040819052620000399162000257565b82518390839062000052906000906020850190620000fa565b50805162000068906001906020840190620000fa565b505050620000856200007f620000a460201b60201c565b620000a8565b80516200009a90600b906020840190620000fa565b505050506200033b565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010890620002e8565b90600052602060002090601f0160209004810192826200012c576000855562000177565b82601f106200014757805160ff191683800117855562000177565b8280016001018555821562000177579182015b82811115620001775782518255916020019190600101906200015a565b506200018592915062000189565b5090565b5b808211156200018557600081556001016200018a565b600082601f830112620001b257600080fd5b81516001600160401b0380821115620001cf57620001cf62000325565b604051601f8301601f19908116603f01168101908282118183101715620001fa57620001fa62000325565b816040528381526020925086838588010111156200021757600080fd5b600091505b838210156200023b57858201830151818301840152908201906200021c565b838211156200024d5760008385830101525b9695505050505050565b6000806000606084860312156200026d57600080fd5b83516001600160401b03808211156200028557600080fd5b6200029387838801620001a0565b94506020860151915080821115620002aa57600080fd5b620002b887838801620001a0565b93506040860151915080821115620002cf57600080fd5b50620002de86828701620001a0565b9150509250925092565b600181811c90821680620002fd57607f821691505b602082108114156200031f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611e4e806200034b6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063b88d4fde1161007c578063b88d4fde146102c1578063c5953170146102d4578063c87b56dd146102e7578063cfc86f7b146102fa578063e985e9c514610302578063f2fde38b1461033e57600080fd5b8063715018a6146102715780638a857bc1146102795780638da5cb5b1461028257806395d89b4114610293578063a22cb4651461029b578063b00741cb146102ae57600080fd5b80632f745c59116101155780632f745c59146101ff57806342842e0e146102125780634f6ccce71461022557806355f804b3146102385780636352211e1461024b57806370a082311461025e57600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c557806318160ddd146101da57806323b872dd146101ec575b600080fd5b61017061016b366004611a85565b610351565b60405190151581526020015b60405180910390f35b61018d610362565b60405161017c9190611bd0565b6101ad6101a8366004611b1f565b6103f4565b6040516001600160a01b03909116815260200161017c565b6101d86101d33660046119e6565b61048e565b005b6009545b60405190815260200161017c565b6101d86101fa366004611892565b6105a4565b6101de61020d3660046119e6565b6105d5565b6101d8610220366004611892565b61066b565b6101de610233366004611b1f565b610686565b6101d8610246366004611abf565b610719565b6101ad610259366004611b1f565b61074f565b6101de61026c366004611844565b6107c6565b6101d861084d565b6101de600d5481565b6006546001600160a01b03166101ad565b61018d610883565b6101d86102a93660046119aa565b610892565b6101d86102bc366004611b1f565b6108a1565b6101d86102cf3660046118ce565b610936565b6101d86102e2366004611a10565b61096e565b61018d6102f5366004611b1f565b610aae565b61018d610b89565b61017061031036600461185f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101d861034c366004611844565b610c17565b600061035c82610cb2565b92915050565b60606000805461037190611d2a565b80601f016020809104026020016040519081016040528092919081815260200182805461039d90611d2a565b80156103ea5780601f106103bf576101008083540402835291602001916103ea565b820191906000526020600020905b8154815290600101906020018083116103cd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104998261074f565b9050806001600160a01b0316836001600160a01b031614156105075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610469565b336001600160a01b038216148061052357506105238133610310565b6105955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610469565b61059f8383610cd7565b505050565b6105ae3382610d45565b6105ca5760405162461bcd60e51b815260040161046990611c6a565b61059f838383610e3c565b60006105e0836107c6565b82106106425760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610469565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b61059f83838360405180602001604052806000815250610936565b600061069160095490565b82106106f45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610469565b6009828154811061070757610707611dd6565b90600052602060002001549050919050565b6006546001600160a01b031633146107435760405162461bcd60e51b815260040161046990611c35565b61059f600b838361178f565b6000818152600260205260408120546001600160a01b03168061035c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610469565b60006001600160a01b0382166108315760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610469565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108775760405162461bcd60e51b815260040161046990611c35565b6108816000610fe3565b565b60606001805461037190611d2a565b61089d338383611035565b5050565b6006546001600160a01b031633146108cb5760405162461bcd60e51b815260040161046990611c35565b80600d5411156109315760405162461bcd60e51b815260206004820152602b60248201527f576520617265206e6f7420616c6c6f77656420746f207265647563652074686560448201526a1031b7b63632b1ba34b7b760a91b6064820152608401610469565b600d55565b6109403383610d45565b61095c5760405162461bcd60e51b815260040161046990611c6a565b61096884848484611104565b50505050565b6006546001600160a01b031633146109985760405162461bcd60e51b815260040161046990611c35565b600d5460095411156109ec5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610469565b600d54816109f9600c5490565b610a039190611cbb565b1115610a515760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f206769667400006044820152606401610469565b60005b8181101561059f57610a6a600c80546001019055565b610a9c838383818110610a7f57610a7f611dd6565b9050602002016020810190610a949190611844565b600c54611137565b80610aa681611d65565b915050610a54565b6000818152600260205260409020546060906001600160a01b0316610b2d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610469565b6000610b37611151565b90506000815111610b575760405180602001604052806000815250610b82565b80610b6184611160565b604051602001610b72929190611b64565b6040516020818303038152906040525b9392505050565b600b8054610b9690611d2a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc290611d2a565b8015610c0f5780601f10610be457610100808354040283529160200191610c0f565b820191906000526020600020905b815481529060010190602001808311610bf257829003601f168201915b505050505081565b6006546001600160a01b03163314610c415760405162461bcd60e51b815260040161046990611c35565b6001600160a01b038116610ca65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610469565b610caf81610fe3565b50565b60006001600160e01b0319821663780e9d6360e01b148061035c575061035c8261125e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d0c8261074f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610dbe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610469565b6000610dc98361074f565b9050806001600160a01b0316846001600160a01b03161480610e045750836001600160a01b0316610df9846103f4565b6001600160a01b0316145b80610e3457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e4f8261074f565b6001600160a01b031614610eb35760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610469565b6001600160a01b038216610f155760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610469565b610f208383836112ae565b610f2b600082610cd7565b6001600160a01b0383166000908152600360205260408120805460019290610f54908490611ce7565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f82908490611cbb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156110975760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610469565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61110f848484610e3c565b61111b848484846112b9565b6109685760405162461bcd60e51b815260040161046990611be3565b61089d8282604051806020016040528060008152506113c6565b6060600b805461037190611d2a565b6060816111845750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111ae578061119881611d65565b91506111a79050600a83611cd3565b9150611188565b60008167ffffffffffffffff8111156111c9576111c9611dec565b6040519080825280601f01601f1916602001820160405280156111f3576020820181803683370190505b5090505b8415610e3457611208600183611ce7565b9150611215600a86611d80565b611220906030611cbb565b60f81b81838151811061123557611235611dd6565b60200101906001600160f81b031916908160001a905350611257600a86611cd3565b94506111f7565b60006001600160e01b031982166380ac58cd60e01b148061128f57506001600160e01b03198216635b5e139f60e01b145b8061035c57506301ffc9a760e01b6001600160e01b031983161461035c565b61059f8383836113f9565b60006001600160a01b0384163b156113bb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906112fd903390899088908890600401611b93565b602060405180830381600087803b15801561131757600080fd5b505af1925050508015611347575060408051601f3d908101601f1916820190925261134491810190611aa2565b60015b6113a1573d808015611375576040519150601f19603f3d011682016040523d82523d6000602084013e61137a565b606091505b5080516113995760405162461bcd60e51b815260040161046990611be3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e34565b506001949350505050565b6113d083836114b1565b6113dd60008484846112b9565b61059f5760405162461bcd60e51b815260040161046990611be3565b6001600160a01b0383166114545761144f81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611477565b816001600160a01b0316836001600160a01b0316146114775761147783826115ff565b6001600160a01b03821661148e5761059f8161169c565b826001600160a01b0316826001600160a01b03161461059f5761059f828261174b565b6001600160a01b0382166115075760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610469565b6000818152600260205260409020546001600160a01b03161561156c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610469565b611578600083836112ae565b6001600160a01b03821660009081526003602052604081208054600192906115a1908490611cbb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161160c846107c6565b6116169190611ce7565b600083815260086020526040902054909150808214611669576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906116ae90600190611ce7565b6000838152600a6020526040812054600980549394509092849081106116d6576116d6611dd6565b9060005260206000200154905080600983815481106116f7576116f7611dd6565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061172f5761172f611dc0565b6001900381819060005260206000200160009055905550505050565b6000611756836107c6565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461179b90611d2a565b90600052602060002090601f0160209004810192826117bd5760008555611803565b82601f106117d65782800160ff19823516178555611803565b82800160010185558215611803579182015b828111156118035782358255916020019190600101906117e8565b5061180f929150611813565b5090565b5b8082111561180f5760008155600101611814565b80356001600160a01b038116811461183f57600080fd5b919050565b60006020828403121561185657600080fd5b610b8282611828565b6000806040838503121561187257600080fd5b61187b83611828565b915061188960208401611828565b90509250929050565b6000806000606084860312156118a757600080fd5b6118b084611828565b92506118be60208501611828565b9150604084013590509250925092565b600080600080608085870312156118e457600080fd5b6118ed85611828565b93506118fb60208601611828565b925060408501359150606085013567ffffffffffffffff8082111561191f57600080fd5b818701915087601f83011261193357600080fd5b81358181111561194557611945611dec565b604051601f8201601f19908116603f0116810190838211818310171561196d5761196d611dec565b816040528281528a602084870101111561198657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156119bd57600080fd5b6119c683611828565b9150602083013580151581146119db57600080fd5b809150509250929050565b600080604083850312156119f957600080fd5b611a0283611828565b946020939093013593505050565b60008060208385031215611a2357600080fd5b823567ffffffffffffffff80821115611a3b57600080fd5b818501915085601f830112611a4f57600080fd5b813581811115611a5e57600080fd5b8660208260051b8501011115611a7357600080fd5b60209290920196919550909350505050565b600060208284031215611a9757600080fd5b8135610b8281611e02565b600060208284031215611ab457600080fd5b8151610b8281611e02565b60008060208385031215611ad257600080fd5b823567ffffffffffffffff80821115611aea57600080fd5b818501915085601f830112611afe57600080fd5b813581811115611b0d57600080fd5b866020828501011115611a7357600080fd5b600060208284031215611b3157600080fd5b5035919050565b60008151808452611b50816020860160208601611cfe565b601f01601f19169290920160200192915050565b60008351611b76818460208801611cfe565b835190830190611b8a818360208801611cfe565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bc690830184611b38565b9695505050505050565b602081526000610b826020830184611b38565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611cce57611cce611d94565b500190565b600082611ce257611ce2611daa565b500490565b600082821015611cf957611cf9611d94565b500390565b60005b83811015611d19578181015183820152602001611d01565b838111156109685750506000910152565b600181811c90821680611d3e57607f821691505b60208210811415611d5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d7957611d79611d94565b5060010190565b600082611d8f57611d8f611daa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610caf57600080fdfea2646970667358221220d693cb8ebcd5ba88a41bdb1cb492b6c1b440b28f01c91d3f2e431fe110fb007364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000011416e696d6547616e675370656369616c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000341475300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59676545557a546a4a6576733779576244765846586669683562757239576177346d5339775879366955434c2f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063b88d4fde1161007c578063b88d4fde146102c1578063c5953170146102d4578063c87b56dd146102e7578063cfc86f7b146102fa578063e985e9c514610302578063f2fde38b1461033e57600080fd5b8063715018a6146102715780638a857bc1146102795780638da5cb5b1461028257806395d89b4114610293578063a22cb4651461029b578063b00741cb146102ae57600080fd5b80632f745c59116101155780632f745c59146101ff57806342842e0e146102125780634f6ccce71461022557806355f804b3146102385780636352211e1461024b57806370a082311461025e57600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c557806318160ddd146101da57806323b872dd146101ec575b600080fd5b61017061016b366004611a85565b610351565b60405190151581526020015b60405180910390f35b61018d610362565b60405161017c9190611bd0565b6101ad6101a8366004611b1f565b6103f4565b6040516001600160a01b03909116815260200161017c565b6101d86101d33660046119e6565b61048e565b005b6009545b60405190815260200161017c565b6101d86101fa366004611892565b6105a4565b6101de61020d3660046119e6565b6105d5565b6101d8610220366004611892565b61066b565b6101de610233366004611b1f565b610686565b6101d8610246366004611abf565b610719565b6101ad610259366004611b1f565b61074f565b6101de61026c366004611844565b6107c6565b6101d861084d565b6101de600d5481565b6006546001600160a01b03166101ad565b61018d610883565b6101d86102a93660046119aa565b610892565b6101d86102bc366004611b1f565b6108a1565b6101d86102cf3660046118ce565b610936565b6101d86102e2366004611a10565b61096e565b61018d6102f5366004611b1f565b610aae565b61018d610b89565b61017061031036600461185f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101d861034c366004611844565b610c17565b600061035c82610cb2565b92915050565b60606000805461037190611d2a565b80601f016020809104026020016040519081016040528092919081815260200182805461039d90611d2a565b80156103ea5780601f106103bf576101008083540402835291602001916103ea565b820191906000526020600020905b8154815290600101906020018083116103cd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104998261074f565b9050806001600160a01b0316836001600160a01b031614156105075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610469565b336001600160a01b038216148061052357506105238133610310565b6105955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610469565b61059f8383610cd7565b505050565b6105ae3382610d45565b6105ca5760405162461bcd60e51b815260040161046990611c6a565b61059f838383610e3c565b60006105e0836107c6565b82106106425760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610469565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b61059f83838360405180602001604052806000815250610936565b600061069160095490565b82106106f45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610469565b6009828154811061070757610707611dd6565b90600052602060002001549050919050565b6006546001600160a01b031633146107435760405162461bcd60e51b815260040161046990611c35565b61059f600b838361178f565b6000818152600260205260408120546001600160a01b03168061035c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610469565b60006001600160a01b0382166108315760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610469565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108775760405162461bcd60e51b815260040161046990611c35565b6108816000610fe3565b565b60606001805461037190611d2a565b61089d338383611035565b5050565b6006546001600160a01b031633146108cb5760405162461bcd60e51b815260040161046990611c35565b80600d5411156109315760405162461bcd60e51b815260206004820152602b60248201527f576520617265206e6f7420616c6c6f77656420746f207265647563652074686560448201526a1031b7b63632b1ba34b7b760a91b6064820152608401610469565b600d55565b6109403383610d45565b61095c5760405162461bcd60e51b815260040161046990611c6a565b61096884848484611104565b50505050565b6006546001600160a01b031633146109985760405162461bcd60e51b815260040161046990611c35565b600d5460095411156109ec5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610469565b600d54816109f9600c5490565b610a039190611cbb565b1115610a515760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f206769667400006044820152606401610469565b60005b8181101561059f57610a6a600c80546001019055565b610a9c838383818110610a7f57610a7f611dd6565b9050602002016020810190610a949190611844565b600c54611137565b80610aa681611d65565b915050610a54565b6000818152600260205260409020546060906001600160a01b0316610b2d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610469565b6000610b37611151565b90506000815111610b575760405180602001604052806000815250610b82565b80610b6184611160565b604051602001610b72929190611b64565b6040516020818303038152906040525b9392505050565b600b8054610b9690611d2a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc290611d2a565b8015610c0f5780601f10610be457610100808354040283529160200191610c0f565b820191906000526020600020905b815481529060010190602001808311610bf257829003601f168201915b505050505081565b6006546001600160a01b03163314610c415760405162461bcd60e51b815260040161046990611c35565b6001600160a01b038116610ca65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610469565b610caf81610fe3565b50565b60006001600160e01b0319821663780e9d6360e01b148061035c575061035c8261125e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d0c8261074f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610dbe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610469565b6000610dc98361074f565b9050806001600160a01b0316846001600160a01b03161480610e045750836001600160a01b0316610df9846103f4565b6001600160a01b0316145b80610e3457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e4f8261074f565b6001600160a01b031614610eb35760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610469565b6001600160a01b038216610f155760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610469565b610f208383836112ae565b610f2b600082610cd7565b6001600160a01b0383166000908152600360205260408120805460019290610f54908490611ce7565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f82908490611cbb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156110975760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610469565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61110f848484610e3c565b61111b848484846112b9565b6109685760405162461bcd60e51b815260040161046990611be3565b61089d8282604051806020016040528060008152506113c6565b6060600b805461037190611d2a565b6060816111845750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111ae578061119881611d65565b91506111a79050600a83611cd3565b9150611188565b60008167ffffffffffffffff8111156111c9576111c9611dec565b6040519080825280601f01601f1916602001820160405280156111f3576020820181803683370190505b5090505b8415610e3457611208600183611ce7565b9150611215600a86611d80565b611220906030611cbb565b60f81b81838151811061123557611235611dd6565b60200101906001600160f81b031916908160001a905350611257600a86611cd3565b94506111f7565b60006001600160e01b031982166380ac58cd60e01b148061128f57506001600160e01b03198216635b5e139f60e01b145b8061035c57506301ffc9a760e01b6001600160e01b031983161461035c565b61059f8383836113f9565b60006001600160a01b0384163b156113bb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906112fd903390899088908890600401611b93565b602060405180830381600087803b15801561131757600080fd5b505af1925050508015611347575060408051601f3d908101601f1916820190925261134491810190611aa2565b60015b6113a1573d808015611375576040519150601f19603f3d011682016040523d82523d6000602084013e61137a565b606091505b5080516113995760405162461bcd60e51b815260040161046990611be3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e34565b506001949350505050565b6113d083836114b1565b6113dd60008484846112b9565b61059f5760405162461bcd60e51b815260040161046990611be3565b6001600160a01b0383166114545761144f81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611477565b816001600160a01b0316836001600160a01b0316146114775761147783826115ff565b6001600160a01b03821661148e5761059f8161169c565b826001600160a01b0316826001600160a01b03161461059f5761059f828261174b565b6001600160a01b0382166115075760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610469565b6000818152600260205260409020546001600160a01b03161561156c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610469565b611578600083836112ae565b6001600160a01b03821660009081526003602052604081208054600192906115a1908490611cbb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161160c846107c6565b6116169190611ce7565b600083815260086020526040902054909150808214611669576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906116ae90600190611ce7565b6000838152600a6020526040812054600980549394509092849081106116d6576116d6611dd6565b9060005260206000200154905080600983815481106116f7576116f7611dd6565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061172f5761172f611dc0565b6001900381819060005260206000200160009055905550505050565b6000611756836107c6565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461179b90611d2a565b90600052602060002090601f0160209004810192826117bd5760008555611803565b82601f106117d65782800160ff19823516178555611803565b82800160010185558215611803579182015b828111156118035782358255916020019190600101906117e8565b5061180f929150611813565b5090565b5b8082111561180f5760008155600101611814565b80356001600160a01b038116811461183f57600080fd5b919050565b60006020828403121561185657600080fd5b610b8282611828565b6000806040838503121561187257600080fd5b61187b83611828565b915061188960208401611828565b90509250929050565b6000806000606084860312156118a757600080fd5b6118b084611828565b92506118be60208501611828565b9150604084013590509250925092565b600080600080608085870312156118e457600080fd5b6118ed85611828565b93506118fb60208601611828565b925060408501359150606085013567ffffffffffffffff8082111561191f57600080fd5b818701915087601f83011261193357600080fd5b81358181111561194557611945611dec565b604051601f8201601f19908116603f0116810190838211818310171561196d5761196d611dec565b816040528281528a602084870101111561198657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156119bd57600080fd5b6119c683611828565b9150602083013580151581146119db57600080fd5b809150509250929050565b600080604083850312156119f957600080fd5b611a0283611828565b946020939093013593505050565b60008060208385031215611a2357600080fd5b823567ffffffffffffffff80821115611a3b57600080fd5b818501915085601f830112611a4f57600080fd5b813581811115611a5e57600080fd5b8660208260051b8501011115611a7357600080fd5b60209290920196919550909350505050565b600060208284031215611a9757600080fd5b8135610b8281611e02565b600060208284031215611ab457600080fd5b8151610b8281611e02565b60008060208385031215611ad257600080fd5b823567ffffffffffffffff80821115611aea57600080fd5b818501915085601f830112611afe57600080fd5b813581811115611b0d57600080fd5b866020828501011115611a7357600080fd5b600060208284031215611b3157600080fd5b5035919050565b60008151808452611b50816020860160208601611cfe565b601f01601f19169290920160200192915050565b60008351611b76818460208801611cfe565b835190830190611b8a818360208801611cfe565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bc690830184611b38565b9695505050505050565b602081526000610b826020830184611b38565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611cce57611cce611d94565b500190565b600082611ce257611ce2611daa565b500490565b600082821015611cf957611cf9611d94565b500390565b60005b83811015611d19578181015183820152602001611d01565b838111156109685750506000910152565b600181811c90821680611d3e57607f821691505b60208210811415611d5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d7957611d79611d94565b5060010190565b600082611d8f57611d8f611daa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610caf57600080fdfea2646970667358221220d693cb8ebcd5ba88a41bdb1cb492b6c1b440b28f01c91d3f2e431fe110fb007364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000011416e696d6547616e675370656369616c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000341475300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59676545557a546a4a6576733779576244765846586669683562757239576177346d5339775879366955434c2f00000000000000000000

-----Decoded View---------------
Arg [0] : name (string): AnimeGangSpecials
Arg [1] : symbol (string): AGS
Arg [2] : baseTokenURI (string): ipfs://QmYgeEUzTjJevs7yWbDvXFXfih5bur9Waw4mS9wXy6iUCL/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 416e696d6547616e675370656369616c73000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4147530000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d59676545557a546a4a6576733779576244765846586669
Arg [9] : 683562757239576177346d5339775879366955434c2f00000000000000000000


Deployed Bytecode Sourcemap

54185:1716:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55725:171;;;;;;:::i;:::-;;:::i;:::-;;;6244:14:1;;6237:22;6219:41;;6207:2;6192:18;55725:171:0;;;;;;;;34763:100;;;:::i;:::-;;;;;;;:::i;36322:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5542:32:1;;;5524:51;;5512:2;5497:18;36322:221:0;5378:203:1;35845:411:0;;;;;;:::i;:::-;;:::i;:::-;;48591:113;48679:10;:17;48591:113;;;14971:25:1;;;14959:2;14944:18;48591:113:0;14825:177:1;37072:339:0;;;;;;:::i;:::-;;:::i;48259:256::-;;;;;;:::i;:::-;;:::i;37482:185::-;;;;;;:::i;:::-;;:::i;48781:233::-;;;;;;:::i;:::-;;:::i;55300:106::-;;;;;;:::i;:::-;;:::i;34457:239::-;;;;;;:::i;:::-;;:::i;34187:208::-;;;;;;:::i;:::-;;:::i;13295:103::-;;;:::i;54406:35::-;;;;;;12644:87;12717:6;;-1:-1:-1;;;;;12717:6:0;12644:87;;34932:104;;;:::i;36615:155::-;;;;;;:::i;:::-;;:::i;54647:216::-;;;;;;:::i;:::-;;:::i;37738:328::-;;;;;;:::i;:::-;;:::i;54871:421::-;;;;;;:::i;:::-;;:::i;35107:334::-;;;;;;:::i;:::-;;:::i;54332:27::-;;;:::i;36841:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;36962:25:0;;;36938:4;36962:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36841:164;13553:201;;;;;;:::i;:::-;;:::i;55725:171::-;55828:4;55852:36;55876:11;55852:23;:36::i;:::-;55845:43;55725:171;-1:-1:-1;;55725:171:0:o;34763:100::-;34817:13;34850:5;34843:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34763:100;:::o;36322:221::-;36398:7;39665:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39665:16:0;36418:73;;;;-1:-1:-1;;;36418:73:0;;11477:2:1;36418:73:0;;;11459:21:1;11516:2;11496:18;;;11489:30;11555:34;11535:18;;;11528:62;-1:-1:-1;;;11606:18:1;;;11599:42;11658:19;;36418:73:0;;;;;;;;;-1:-1:-1;36511:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36511:24:0;;36322:221::o;35845:411::-;35926:13;35942:23;35957:7;35942:14;:23::i;:::-;35926:39;;35990:5;-1:-1:-1;;;;;35984:11:0;:2;-1:-1:-1;;;;;35984:11:0;;;35976:57;;;;-1:-1:-1;;;35976:57:0;;13026:2:1;35976:57:0;;;13008:21:1;13065:2;13045:18;;;13038:30;13104:34;13084:18;;;13077:62;-1:-1:-1;;;13155:18:1;;;13148:31;13196:19;;35976:57:0;12824:397:1;35976:57:0;11440:10;-1:-1:-1;;;;;36068:21:0;;;;:62;;-1:-1:-1;36093:37:0;36110:5;11440:10;36841:164;:::i;36093:37::-;36046:168;;;;-1:-1:-1;;;36046:168:0;;9870:2:1;36046:168:0;;;9852:21:1;9909:2;9889:18;;;9882:30;9948:34;9928:18;;;9921:62;10019:26;9999:18;;;9992:54;10063:19;;36046:168:0;9668:420:1;36046:168:0;36227:21;36236:2;36240:7;36227:8;:21::i;:::-;35915:341;35845:411;;:::o;37072:339::-;37267:41;11440:10;37300:7;37267:18;:41::i;:::-;37259:103;;;;-1:-1:-1;;;37259:103:0;;;;;;;:::i;:::-;37375:28;37385:4;37391:2;37395:7;37375:9;:28::i;48259:256::-;48356:7;48392:23;48409:5;48392:16;:23::i;:::-;48384:5;:31;48376:87;;;;-1:-1:-1;;;48376:87:0;;6697:2:1;48376:87:0;;;6679:21:1;6736:2;6716:18;;;6709:30;6775:34;6755:18;;;6748:62;-1:-1:-1;;;6826:18:1;;;6819:41;6877:19;;48376:87:0;6495:407:1;48376:87:0;-1:-1:-1;;;;;;48481:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;48259:256::o;37482:185::-;37620:39;37637:4;37643:2;37647:7;37620:39;;;;;;;;;;;;:16;:39::i;48781:233::-;48856:7;48892:30;48679:10;:17;;48591:113;48892:30;48884:5;:38;48876:95;;;;-1:-1:-1;;;48876:95:0;;14258:2:1;48876:95:0;;;14240:21:1;14297:2;14277:18;;;14270:30;14336:34;14316:18;;;14309:62;-1:-1:-1;;;14387:18:1;;;14380:42;14439:19;;48876:95:0;14056:408:1;48876:95:0;48989:10;49000:5;48989:17;;;;;;;;:::i;:::-;;;;;;;;;48982:24;;48781:233;;;:::o;55300:106::-;12717:6;;-1:-1:-1;;;;;12717:6:0;11440:10;12864:23;12856:68;;;;-1:-1:-1;;;12856:68:0;;;;;;;:::i;:::-;55375:23:::1;:13;55391:7:::0;;55375:23:::1;:::i;34457:239::-:0;34529:7;34565:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34565:16:0;34600:19;34592:73;;;;-1:-1:-1;;;34592:73:0;;10706:2:1;34592:73:0;;;10688:21:1;10745:2;10725:18;;;10718:30;10784:34;10764:18;;;10757:62;-1:-1:-1;;;10835:18:1;;;10828:39;10884:19;;34592:73:0;10504:405:1;34187:208:0;34259:7;-1:-1:-1;;;;;34287:19:0;;34279:74;;;;-1:-1:-1;;;34279:74:0;;10295:2:1;34279:74:0;;;10277:21:1;10334:2;10314:18;;;10307:30;10373:34;10353:18;;;10346:62;-1:-1:-1;;;10424:18:1;;;10417:40;10474:19;;34279:74:0;10093:406:1;34279:74:0;-1:-1:-1;;;;;;34371:16:0;;;;;:9;:16;;;;;;;34187:208::o;13295:103::-;12717:6;;-1:-1:-1;;;;;12717:6:0;11440:10;12864:23;12856:68;;;;-1:-1:-1;;;12856:68:0;;;;;;;:::i;:::-;13360:30:::1;13387:1;13360:18;:30::i;:::-;13295:103::o:0;34932:104::-;34988:13;35021:7;35014:14;;;;;:::i;36615:155::-;36710:52;11440:10;36743:8;36753;36710:18;:52::i;:::-;36615:155;;:::o;54647:216::-;12717:6;;-1:-1:-1;;;;;12717:6:0;11440:10;12864:23;12856:68;;;;-1:-1:-1;;;12856:68:0;;;;;;;:::i;:::-;54749:15:::1;54731:14;;:33;;54723:89;;;::::0;-1:-1:-1;;;54723:89:0;;13428:2:1;54723:89:0::1;::::0;::::1;13410:21:1::0;13467:2;13447:18;;;13440:30;13506:34;13486:18;;;13479:62;-1:-1:-1;;;13557:18:1;;;13550:41;13608:19;;54723:89:0::1;13226:407:1::0;54723:89:0::1;54823:14;:32:::0;54647:216::o;37738:328::-;37913:41;11440:10;37946:7;37913:18;:41::i;:::-;37905:103;;;;-1:-1:-1;;;37905:103:0;;;;;;;:::i;:::-;38019:39;38033:4;38039:2;38043:7;38052:5;38019:13;:39::i;:::-;37738:328;;;;:::o;54871:421::-;12717:6;;-1:-1:-1;;;;;12717:6:0;11440:10;12864:23;12856:68;;;;-1:-1:-1;;;12856:68:0;;;;;;;:::i;:::-;54975:14:::1;::::0;48679:10;:17;54958:31:::1;;54950:71;;;::::0;-1:-1:-1;;;54950:71:0;;14671:2:1;54950:71:0::1;::::0;::::1;14653:21:1::0;14710:2;14690:18;;;14683:30;14749:29;14729:18;;;14722:57;14796:18;;54950:71:0::1;14469:351:1::0;54950:71:0::1;55077:14;::::0;55059:7;55040:16:::1;:6;1005:14:::0;;913:114;55040:16:::1;:33;;;;:::i;:::-;:51;;55032:94;;;::::0;-1:-1:-1;;;55032:94:0;;12667:2:1;55032:94:0::1;::::0;::::1;12649:21:1::0;12706:2;12686:18;;;12679:30;12745:32;12725:18;;;12718:60;12795:18;;55032:94:0::1;12465:354:1::0;55032:94:0::1;55144:9;55139:144;55159:18:::0;;::::1;55139:144;;;55199:18;:6;1124:19:::0;;1142:1;1124:19;;;1035:127;55199:18:::1;55232:39;55242:7;;55250:1;55242:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;55254:6;1005:14:::0;55232:9:::1;:39::i;:::-;55179:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55139:144;;35107:334:::0;39641:4;39665:16;;;:7;:16;;;;;;35180:13;;-1:-1:-1;;;;;39665:16:0;35206:76;;;;-1:-1:-1;;;35206:76:0;;12251:2:1;35206:76:0;;;12233:21:1;12290:2;12270:18;;;12263:30;12329:34;12309:18;;;12302:62;-1:-1:-1;;;12380:18:1;;;12373:45;12435:19;;35206:76:0;12049:411:1;35206:76:0;35295:21;35319:10;:8;:10::i;:::-;35295:34;;35371:1;35353:7;35347:21;:25;:86;;;;;;;;;;;;;;;;;35399:7;35408:18;:7;:16;:18::i;:::-;35382:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35347:86;35340:93;35107:334;-1:-1:-1;;;35107:334:0:o;54332:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13553:201::-;12717:6;;-1:-1:-1;;;;;12717:6:0;11440:10;12864:23;12856:68;;;;-1:-1:-1;;;12856:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13642:22:0;::::1;13634:73;;;::::0;-1:-1:-1;;;13634:73:0;;7528:2:1;13634:73:0::1;::::0;::::1;7510:21:1::0;7567:2;7547:18;;;7540:30;7606:34;7586:18;;;7579:62;-1:-1:-1;;;7657:18:1;;;7650:36;7703:19;;13634:73:0::1;7326:402:1::0;13634:73:0::1;13718:28;13737:8;13718:18;:28::i;:::-;13553:201:::0;:::o;47951:224::-;48053:4;-1:-1:-1;;;;;;48077:50:0;;-1:-1:-1;;;48077:50:0;;:90;;;48131:36;48155:11;48131:23;:36::i;43722:174::-;43797:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;43797:29:0;-1:-1:-1;;;;;43797:29:0;;;;;;;;:24;;43851:23;43797:24;43851:14;:23::i;:::-;-1:-1:-1;;;;;43842:46:0;;;;;;;;;;;43722:174;;:::o;39870:348::-;39963:4;39665:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39665:16:0;39980:73;;;;-1:-1:-1;;;39980:73:0;;9457:2:1;39980:73:0;;;9439:21:1;9496:2;9476:18;;;9469:30;9535:34;9515:18;;;9508:62;-1:-1:-1;;;9586:18:1;;;9579:42;9638:19;;39980:73:0;9255:408:1;39980:73:0;40064:13;40080:23;40095:7;40080:14;:23::i;:::-;40064:39;;40133:5;-1:-1:-1;;;;;40122:16:0;:7;-1:-1:-1;;;;;40122:16:0;;:51;;;;40166:7;-1:-1:-1;;;;;40142:31:0;:20;40154:7;40142:11;:20::i;:::-;-1:-1:-1;;;;;40142:31:0;;40122:51;:87;;;-1:-1:-1;;;;;;36962:25:0;;;36938:4;36962:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40177:32;40114:96;39870:348;-1:-1:-1;;;;39870:348:0:o;42979:625::-;43138:4;-1:-1:-1;;;;;43111:31:0;:23;43126:7;43111:14;:23::i;:::-;-1:-1:-1;;;;;43111:31:0;;43103:81;;;;-1:-1:-1;;;43103:81:0;;7935:2:1;43103:81:0;;;7917:21:1;7974:2;7954:18;;;7947:30;8013:34;7993:18;;;7986:62;-1:-1:-1;;;8064:18:1;;;8057:35;8109:19;;43103:81:0;7733:401:1;43103:81:0;-1:-1:-1;;;;;43203:16:0;;43195:65;;;;-1:-1:-1;;;43195:65:0;;8698:2:1;43195:65:0;;;8680:21:1;8737:2;8717:18;;;8710:30;8776:34;8756:18;;;8749:62;-1:-1:-1;;;8827:18:1;;;8820:34;8871:19;;43195:65:0;8496:400:1;43195:65:0;43273:39;43294:4;43300:2;43304:7;43273:20;:39::i;:::-;43377:29;43394:1;43398:7;43377:8;:29::i;:::-;-1:-1:-1;;;;;43419:15:0;;;;;;:9;:15;;;;;:20;;43438:1;;43419:15;:20;;43438:1;;43419:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43450:13:0;;;;;;:9;:13;;;;;:18;;43467:1;;43450:13;:18;;43467:1;;43450:18;:::i;:::-;;;;-1:-1:-1;;43479:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43479:21:0;-1:-1:-1;;;;;43479:21:0;;;;;;;;;43518:27;;43479:16;;43518:27;;;;;;;35915:341;35845:411;;:::o;13914:191::-;14007:6;;;-1:-1:-1;;;;;14024:17:0;;;-1:-1:-1;;;;;;14024:17:0;;;;;;;14057:40;;14007:6;;;14024:17;14007:6;;14057:40;;13988:16;;14057:40;13977:128;13914:191;:::o;44038:315::-;44193:8;-1:-1:-1;;;;;44184:17:0;:5;-1:-1:-1;;;;;44184:17:0;;;44176:55;;;;-1:-1:-1;;;44176:55:0;;9103:2:1;44176:55:0;;;9085:21:1;9142:2;9122:18;;;9115:30;9181:27;9161:18;;;9154:55;9226:18;;44176:55:0;8901:349:1;44176:55:0;-1:-1:-1;;;;;44242:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;44242:46:0;;;;;;;;;;44304:41;;6219::1;;;44304::0;;6192:18:1;44304:41:0;;;;;;;44038:315;;;:::o;38948:::-;39105:28;39115:4;39121:2;39125:7;39105:9;:28::i;:::-;39152:48;39175:4;39181:2;39185:7;39194:5;39152:22;:48::i;:::-;39144:111;;;;-1:-1:-1;;;39144:111:0;;;;;;;:::i;40560:110::-;40636:26;40646:2;40650:7;40636:26;;;;;;;;;;;;:9;:26::i;55414:114::-;55474:13;55507;55500:20;;;;;:::i;8914:723::-;8970:13;9191:10;9187:53;;-1:-1:-1;;9218:10:0;;;;;;;;;;;;-1:-1:-1;;;9218:10:0;;;;;8914:723::o;9187:53::-;9265:5;9250:12;9306:78;9313:9;;9306:78;;9339:8;;;;:::i;:::-;;-1:-1:-1;9362:10:0;;-1:-1:-1;9370:2:0;9362:10;;:::i;:::-;;;9306:78;;;9394:19;9426:6;9416:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9416:17:0;;9394:39;;9444:154;9451:10;;9444:154;;9478:11;9488:1;9478:11;;:::i;:::-;;-1:-1:-1;9547:10:0;9555:2;9547:5;:10;:::i;:::-;9534:24;;:2;:24;:::i;:::-;9521:39;;9504:6;9511;9504:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9504:56:0;;;;;;;;-1:-1:-1;9575:11:0;9584:2;9575:11;;:::i;:::-;;;9444:154;;33818:305;33920:4;-1:-1:-1;;;;;;33957:40:0;;-1:-1:-1;;;33957:40:0;;:105;;-1:-1:-1;;;;;;;34014:48:0;;-1:-1:-1;;;34014:48:0;33957:105;:158;;;-1:-1:-1;;;;;;;;;;25569:40:0;;;34079:36;25460:157;55536:181;55664:45;55691:4;55697:2;55701:7;55664:26;:45::i;44918:799::-;45073:4;-1:-1:-1;;;;;45094:13:0;;15648:19;:23;45090:620;;45130:72;;-1:-1:-1;;;45130:72:0;;-1:-1:-1;;;;;45130:36:0;;;;;:72;;11440:10;;45181:4;;45187:7;;45196:5;;45130:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45130:72:0;;;;;;;;-1:-1:-1;;45130:72:0;;;;;;;;;;;;:::i;:::-;;;45126:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45372:13:0;;45368:272;;45415:60;;-1:-1:-1;;;45415:60:0;;;;;;;:::i;45368:272::-;45590:6;45584:13;45575:6;45571:2;45567:15;45560:38;45126:529;-1:-1:-1;;;;;;45253:51:0;-1:-1:-1;;;45253:51:0;;-1:-1:-1;45246:58:0;;45090:620;-1:-1:-1;45694:4:0;44918:799;;;;;;:::o;40897:321::-;41027:18;41033:2;41037:7;41027:5;:18::i;:::-;41078:54;41109:1;41113:2;41117:7;41126:5;41078:22;:54::i;:::-;41056:154;;;;-1:-1:-1;;;41056:154:0;;;;;;;:::i;49627:589::-;-1:-1:-1;;;;;49833:18:0;;49829:187;;49868:40;49900:7;51043:10;:17;;51016:24;;;;:15;:24;;;;;:44;;;51071:24;;;;;;;;;;;;50939:164;49868:40;49829:187;;;49938:2;-1:-1:-1;;;;;49930:10:0;:4;-1:-1:-1;;;;;49930:10:0;;49926:90;;49957:47;49990:4;49996:7;49957:32;:47::i;:::-;-1:-1:-1;;;;;50030:16:0;;50026:183;;50063:45;50100:7;50063:36;:45::i;50026:183::-;50136:4;-1:-1:-1;;;;;50130:10:0;:2;-1:-1:-1;;;;;50130:10:0;;50126:83;;50157:40;50185:2;50189:7;50157:27;:40::i;41554:439::-;-1:-1:-1;;;;;41634:16:0;;41626:61;;;;-1:-1:-1;;;41626:61:0;;11116:2:1;41626:61:0;;;11098:21:1;;;11135:18;;;11128:30;11194:34;11174:18;;;11167:62;11246:18;;41626:61:0;10914:356:1;41626:61:0;39641:4;39665:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39665:16:0;:30;41698:58;;;;-1:-1:-1;;;41698:58:0;;8341:2:1;41698:58:0;;;8323:21:1;8380:2;8360:18;;;8353:30;8419;8399:18;;;8392:58;8467:18;;41698:58:0;8139:352:1;41698:58:0;41769:45;41798:1;41802:2;41806:7;41769:20;:45::i;:::-;-1:-1:-1;;;;;41827:13:0;;;;;;:9;:13;;;;;:18;;41844:1;;41827:13;:18;;41844:1;;41827:18;:::i;:::-;;;;-1:-1:-1;;41856:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41856:21:0;-1:-1:-1;;;;;41856:21:0;;;;;;;;41895:33;;41856:16;;;41895:33;;41856:16;;41895:33;36615:155;;:::o;51730:988::-;51996:22;52046:1;52021:22;52038:4;52021:16;:22::i;:::-;:26;;;;:::i;:::-;52058:18;52079:26;;;:17;:26;;;;;;51996:51;;-1:-1:-1;52212:28:0;;;52208:328;;-1:-1:-1;;;;;52279:18:0;;52257:19;52279:18;;;:12;:18;;;;;;;;:34;;;;;;;;;52330:30;;;;;;:44;;;52447:30;;:17;:30;;;;;:43;;;52208:328;-1:-1:-1;52632:26:0;;;;:17;:26;;;;;;;;52625:33;;;-1:-1:-1;;;;;52676:18:0;;;;;:12;:18;;;;;:34;;;;;;;52669:41;51730:988::o;53013:1079::-;53291:10;:17;53266:22;;53291:21;;53311:1;;53291:21;:::i;:::-;53323:18;53344:24;;;:15;:24;;;;;;53717:10;:26;;53266:46;;-1:-1:-1;53344:24:0;;53266:46;;53717:26;;;;;;:::i;:::-;;;;;;;;;53695:48;;53781:11;53756:10;53767;53756:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;53861:28;;;:15;:28;;;;;;;:41;;;54033:24;;;;;54026:31;54068:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53084:1008;;;53013:1079;:::o;50517:221::-;50602:14;50619:20;50636:2;50619:16;:20::i;:::-;-1:-1:-1;;;;;50650:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;50695:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;50517:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:615::-;2821:6;2829;2882:2;2870:9;2861:7;2857:23;2853:32;2850:52;;;2898:1;2895;2888:12;2850:52;2938:9;2925:23;2967:18;3008:2;3000:6;2997:14;2994:34;;;3024:1;3021;3014:12;2994:34;3062:6;3051:9;3047:22;3037:32;;3107:7;3100:4;3096:2;3092:13;3088:27;3078:55;;3129:1;3126;3119:12;3078:55;3169:2;3156:16;3195:2;3187:6;3184:14;3181:34;;;3211:1;3208;3201:12;3181:34;3264:7;3259:2;3249:6;3246:1;3242:14;3238:2;3234:23;3230:32;3227:45;3224:65;;;3285:1;3282;3275:12;3224:65;3316:2;3308:11;;;;;3338:6;;-1:-1:-1;2735:615:1;;-1:-1:-1;;;;2735:615:1:o;3355:245::-;3413:6;3466:2;3454:9;3445:7;3441:23;3437:32;3434:52;;;3482:1;3479;3472:12;3434:52;3521:9;3508:23;3540:30;3564:5;3540:30;:::i;3605:249::-;3674:6;3727:2;3715:9;3706:7;3702:23;3698:32;3695:52;;;3743:1;3740;3733:12;3695:52;3775:9;3769:16;3794:30;3818:5;3794:30;:::i;3859:592::-;3930:6;3938;3991:2;3979:9;3970:7;3966:23;3962:32;3959:52;;;4007:1;4004;3997:12;3959:52;4047:9;4034:23;4076:18;4117:2;4109:6;4106:14;4103:34;;;4133:1;4130;4123:12;4103:34;4171:6;4160:9;4156:22;4146:32;;4216:7;4209:4;4205:2;4201:13;4197:27;4187:55;;4238:1;4235;4228:12;4187:55;4278:2;4265:16;4304:2;4296:6;4293:14;4290:34;;;4320:1;4317;4310:12;4290:34;4365:7;4360:2;4351:6;4347:2;4343:15;4339:24;4336:37;4333:57;;;4386:1;4383;4376:12;4456:180;4515:6;4568:2;4556:9;4547:7;4543:23;4539:32;4536:52;;;4584:1;4581;4574:12;4536:52;-1:-1:-1;4607:23:1;;4456:180;-1:-1:-1;4456:180:1:o;4641:257::-;4682:3;4720:5;4714:12;4747:6;4742:3;4735:19;4763:63;4819:6;4812:4;4807:3;4803:14;4796:4;4789:5;4785:16;4763:63;:::i;:::-;4880:2;4859:15;-1:-1:-1;;4855:29:1;4846:39;;;;4887:4;4842:50;;4641:257;-1:-1:-1;;4641:257:1:o;4903:470::-;5082:3;5120:6;5114:13;5136:53;5182:6;5177:3;5170:4;5162:6;5158:17;5136:53;:::i;:::-;5252:13;;5211:16;;;;5274:57;5252:13;5211:16;5308:4;5296:17;;5274:57;:::i;:::-;5347:20;;4903:470;-1:-1:-1;;;;4903:470:1:o;5586:488::-;-1:-1:-1;;;;;5855:15:1;;;5837:34;;5907:15;;5902:2;5887:18;;5880:43;5954:2;5939:18;;5932:34;;;6002:3;5997:2;5982:18;;5975:31;;;5780:4;;6023:45;;6048:19;;6040:6;6023:45;:::i;:::-;6015:53;5586:488;-1:-1:-1;;;;;;5586:488:1:o;6271:219::-;6420:2;6409:9;6402:21;6383:4;6440:44;6480:2;6469:9;6465:18;6457:6;6440:44;:::i;6907:414::-;7109:2;7091:21;;;7148:2;7128:18;;;7121:30;7187:34;7182:2;7167:18;;7160:62;-1:-1:-1;;;7253:2:1;7238:18;;7231:48;7311:3;7296:19;;6907:414::o;11688:356::-;11890:2;11872:21;;;11909:18;;;11902:30;11968:34;11963:2;11948:18;;11941:62;12035:2;12020:18;;11688:356::o;13638:413::-;13840:2;13822:21;;;13879:2;13859:18;;;13852:30;13918:34;13913:2;13898:18;;13891:62;-1:-1:-1;;;13984:2:1;13969:18;;13962:47;14041:3;14026:19;;13638:413::o;15007:128::-;15047:3;15078:1;15074:6;15071:1;15068:13;15065:39;;;15084:18;;:::i;:::-;-1:-1:-1;15120:9:1;;15007:128::o;15140:120::-;15180:1;15206;15196:35;;15211:18;;:::i;:::-;-1:-1:-1;15245:9:1;;15140:120::o;15265:125::-;15305:4;15333:1;15330;15327:8;15324:34;;;15338:18;;:::i;:::-;-1:-1:-1;15375:9:1;;15265:125::o;15395:258::-;15467:1;15477:113;15491:6;15488:1;15485:13;15477:113;;;15567:11;;;15561:18;15548:11;;;15541:39;15513:2;15506:10;15477:113;;;15608:6;15605:1;15602:13;15599:48;;;-1:-1:-1;;15643:1:1;15625:16;;15618:27;15395:258::o;15658:380::-;15737:1;15733:12;;;;15780;;;15801:61;;15855:4;15847:6;15843:17;15833:27;;15801:61;15908:2;15900:6;15897:14;15877:18;15874:38;15871:161;;;15954:10;15949:3;15945:20;15942:1;15935:31;15989:4;15986:1;15979:15;16017:4;16014:1;16007:15;15871:161;;15658:380;;;:::o;16043:135::-;16082:3;-1:-1:-1;;16103:17:1;;16100:43;;;16123:18;;:::i;:::-;-1:-1:-1;16170:1:1;16159:13;;16043:135::o;16183:112::-;16215:1;16241;16231:35;;16246:18;;:::i;:::-;-1:-1:-1;16280:9:1;;16183:112::o;16300:127::-;16361:10;16356:3;16352:20;16349:1;16342:31;16392:4;16389:1;16382:15;16416:4;16413:1;16406:15;16432:127;16493:10;16488:3;16484:20;16481:1;16474:31;16524:4;16521:1;16514:15;16548:4;16545:1;16538:15;16564:127;16625:10;16620:3;16616:20;16613:1;16606:31;16656:4;16653:1;16646:15;16680:4;16677:1;16670:15;16696:127;16757:10;16752:3;16748:20;16745:1;16738:31;16788:4;16785:1;16778:15;16812:4;16809:1;16802:15;16828:127;16889:10;16884:3;16880:20;16877:1;16870:31;16920:4;16917:1;16910:15;16944:4;16941:1;16934:15;16960:131;-1:-1:-1;;;;;;17034:32:1;;17024:43;;17014:71;;17081:1;17078;17071:12

Swarm Source

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