ETH Price: $3,263.65 (-0.57%)
 

Overview

TokenID

117

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
Osiris

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : osiris.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.17 <0.9.0;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";

contract Osiris is DefaultOperatorFilterer, ERC721A, ReentrancyGuard, Ownable {
    using Strings for uint256;

    mapping(address => uint256) public preMinted;
    mapping(address => uint256) public publicMinted;

    string public uriPrefix;
    string public uriSuffix = "";
    string public uriContract;

    uint256 public maxSupply = 10000;
    uint256 public preMintTxLimit = 1;
    uint256 public publicMintTxLimit = 1;
    uint256 public maxPreMintAmount = 1;
    uint256 public maxPublicMintAmount = 1;
    uint256 public maxInternalMintAmount = 13;

    bool public preMintPaused = false;
    bool public paused = false;

    constructor(address[] memory _internalAccounts, string memory _prefix, string memory _contractURI) ERC721A("Osiris Pass", "OSRS") {
        setUriPrefix(_prefix);
        setContractURI(_contractURI);
        for (uint256 i = 0; i < _internalAccounts.length; i++) {
            _safeMint(_internalAccounts[i], maxInternalMintAmount);
        }
    }

    modifier publicMintCompliance(uint256 _mintAmount) {
        uint256 requestedAmount = totalSupply() + _mintAmount;
        require(_mintAmount > 0 && _mintAmount <= publicMintTxLimit, "You have exceeded the limit of mints per transaction");
        require(publicMinted[msg.sender] + _mintAmount <= maxPublicMintAmount, "You have already minted your limit");
        require(requestedAmount <= maxSupply, "SOLD OUT");
        require(!paused, "Minting is not currently allowed!");
        _;
    }

    modifier preMintCompliance(uint256 _mintAmount) {
        uint256 requestedAmount = totalSupply() + _mintAmount;
        require(_mintAmount > 0 && _mintAmount <= preMintTxLimit, "You have exceeded the limit of mints per transaction");
        require(preMinted[msg.sender] + _mintAmount <= maxPreMintAmount, "You are not on the whitelist or have already used your whitelist mint");
        require(requestedAmount <= maxSupply, "SOLD OUT");
        require(!preMintPaused, "Minting is not currently allowed!");
        _;
    }

    modifier airDropCompliance(uint256 _mintAmount) {
        uint256 requestedAmount = totalSupply() + _mintAmount;
        require(requestedAmount <= maxSupply, "SOLD OUT");
        _;
    }

    function preMint(uint256  _mintAmount) public preMintCompliance(_mintAmount) nonReentrant {
        preMinted[msg.sender] += _mintAmount;
        _safeMint(msg.sender, _mintAmount);
    }

    function mint(uint256 _mintAmount) public publicMintCompliance(_mintAmount) nonReentrant {
        publicMinted[msg.sender] += _mintAmount;
        _safeMint(msg.sender, _mintAmount);
    }

    function airDrop(uint256 _mintAmount, address _receiver) public airDropCompliance(_mintAmount) onlyOwner nonReentrant {
        _safeMint(_receiver, _mintAmount);
    }

    function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, uriSuffix))
        : "";
    }

    function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 0;
        uint256 ownedTokenIndex = 0;
        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
            currentTokenId++;
        }
        return ownedTokenIds;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        require(_maxSupply <= 5000, "CAN NOT INCREASE SUPPLY");
        maxSupply = _maxSupply;
    }

    function setPreMintTxLimit(uint256 _preMintTxLimit) public onlyOwner {
        preMintTxLimit = _preMintTxLimit;
    }

    function setPublicMintTxLimit(uint256 _publicMintTxLimit) public onlyOwner {
        publicMintTxLimit = _publicMintTxLimit;
    }

    function setMaxPreMintAmount(uint256 _maxPreMintAmount) public onlyOwner {
        maxPreMintAmount = _maxPreMintAmount;
    }

    function setMaxPublicMintAmount(uint256 _maxPublicMintAmount) public onlyOwner {
        maxPublicMintAmount = _maxPublicMintAmount;
    }

    function setPreMintPaused(bool _state) public onlyOwner {
        preMintPaused = _state;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

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

    function contractURI() public view returns (string memory) {
        return uriContract;
    }

    function setContractURI(string memory _contractURI) public onlyOwner {
        uriContract = _contractURI;
    }

    function withdraw() public onlyOwner nonReentrant{
        (bool owner, ) = payable(owner()).call{value: address(this).balance}("");
        require(owner);
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
    public
    payable
    override
    onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

File 3 of 11 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

File 4 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// 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 5 of 11 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 6 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 7 of 11 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

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

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

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

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

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

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

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

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

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

File 8 of 11 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

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

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 9 of 11 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 10 of 11 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

File 11 of 11 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_internalAccounts","type":"address[]"},{"internalType":"string","name":"_prefix","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxInternalMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"preMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMintTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"payable","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":"payable","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":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPreMintAmount","type":"uint256"}],"name":"setMaxPreMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublicMintAmount","type":"uint256"}],"name":"setMaxPublicMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPreMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preMintTxLimit","type":"uint256"}],"name":"setPreMintTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMintTxLimit","type":"uint256"}],"name":"setPublicMintTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriContract","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600d908162000024919062000d04565b50612710600f556001601055600160115560016012556001601355600d6014556000601560006101000a81548160ff0219169083151502179055506000601560016101000a81548160ff0219169083151502179055503480156200008757600080fd5b5060405162005239380380620052398339818101604052810190620000ad91906200108f565b6040518060400160405280600b81526020017f4f736972697320506173730000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4f53525300000000000000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000325578015620001eb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001b192919062001159565b600060405180830381600087803b158015620001cc57600080fd5b505af1158015620001e1573d6000803e3d6000fd5b5050505062000324565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002a5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200026b92919062001159565b600060405180830381600087803b1580156200028657600080fd5b505af11580156200029b573d6000803e3d6000fd5b5050505062000323565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002ee919062001186565b600060405180830381600087803b1580156200030957600080fd5b505af11580156200031e573d6000803e3d6000fd5b505050505b5b5b5050816002908162000338919062000d04565b5080600390816200034a919062000d04565b506200035b6200040b60201b60201c565b600081905550505060016008819055506200038b6200037f6200041060201b60201c565b6200041860201b60201c565b6200039c82620004de60201b60201c565b620003ad816200050360201b60201c565b60005b83518110156200040157620003eb848281518110620003d457620003d3620011a3565b5b60200260200101516014546200052860201b60201c565b8080620003f89062001201565b915050620003b0565b5050505062001422565b600090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004ee6200054e60201b60201c565b80600c9081620004ff919062000d04565b5050565b620005136200054e60201b60201c565b80600e908162000524919062000d04565b5050565b6200054a828260405180602001604052806000815250620005df60201b60201c565b5050565b6200055e6200041060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005846200069060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d490620012af565b60405180910390fd5b565b620005f18383620006ba60201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200068b57600080549050600083820390505b6200063a6000868380600101945086620008a160201b60201c565b62000671576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106200061f5781600054146200068857600080fd5b50505b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008054905060008203620006fb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000710600084838562000a0260201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200079f8362000781600086600062000a0860201b60201c565b620007928562000a3860201b60201c565b1762000a4860201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200084257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000805565b50600082036200087e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506200089c600084838562000a7360201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620008cf62000a7960201b60201c565b8786866040518563ffffffff1660e01b8152600401620008f394939291906200133f565b6020604051808303816000875af19250505080156200093257506040513d601f19601f820116820180604052508101906200092f9190620013f0565b60015b620009af573d806000811462000965576040519150601f19603f3d011682016040523d82523d6000602084013e6200096a565b606091505b506000815103620009a7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e862000a2786868462000a8160201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b0c57607f821691505b60208210810362000b225762000b2162000ac4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b8c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b4d565b62000b98868362000b4d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000be562000bdf62000bd98462000bb0565b62000bba565b62000bb0565b9050919050565b6000819050919050565b62000c018362000bc4565b62000c1962000c108262000bec565b84845462000b5a565b825550505050565b600090565b62000c3062000c21565b62000c3d81848462000bf6565b505050565b5b8181101562000c655762000c5960008262000c26565b60018101905062000c43565b5050565b601f82111562000cb45762000c7e8162000b28565b62000c898462000b3d565b8101602085101562000c99578190505b62000cb162000ca88562000b3d565b83018262000c42565b50505b505050565b600082821c905092915050565b600062000cd96000198460080262000cb9565b1980831691505092915050565b600062000cf4838362000cc6565b9150826002028217905092915050565b62000d0f8262000a8a565b67ffffffffffffffff81111562000d2b5762000d2a62000a95565b5b62000d37825462000af3565b62000d4482828562000c69565b600060209050601f83116001811462000d7c576000841562000d67578287015190505b62000d73858262000ce6565b86555062000de3565b601f19841662000d8c8662000b28565b60005b8281101562000db65784890151825560018201915060208501945060208101905062000d8f565b8683101562000dd6578489015162000dd2601f89168262000cc6565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000e208262000e04565b810181811067ffffffffffffffff8211171562000e425762000e4162000a95565b5b80604052505050565b600062000e5762000deb565b905062000e65828262000e15565b919050565b600067ffffffffffffffff82111562000e885762000e8762000a95565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ecb8262000e9e565b9050919050565b62000edd8162000ebe565b811462000ee957600080fd5b50565b60008151905062000efd8162000ed2565b92915050565b600062000f1a62000f148462000e6a565b62000e4b565b9050808382526020820190506020840283018581111562000f405762000f3f62000e99565b5b835b8181101562000f6d578062000f58888262000eec565b84526020840193505060208101905062000f42565b5050509392505050565b600082601f83011262000f8f5762000f8e62000dff565b5b815162000fa184826020860162000f03565b91505092915050565b600080fd5b600067ffffffffffffffff82111562000fcd5762000fcc62000a95565b5b62000fd88262000e04565b9050602081019050919050565b60005b838110156200100557808201518184015260208101905062000fe8565b60008484015250505050565b600062001028620010228462000faf565b62000e4b565b90508281526020810184848401111562001047576200104662000faa565b5b6200105484828562000fe5565b509392505050565b600082601f83011262001074576200107362000dff565b5b81516200108684826020860162001011565b91505092915050565b600080600060608486031215620010ab57620010aa62000df5565b5b600084015167ffffffffffffffff811115620010cc57620010cb62000dfa565b5b620010da8682870162000f77565b935050602084015167ffffffffffffffff811115620010fe57620010fd62000dfa565b5b6200110c868287016200105c565b925050604084015167ffffffffffffffff81111562001130576200112f62000dfa565b5b6200113e868287016200105c565b9150509250925092565b620011538162000ebe565b82525050565b600060408201905062001170600083018562001148565b6200117f602083018462001148565b9392505050565b60006020820190506200119d600083018462001148565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200120e8262000bb0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620012435762001242620011d2565b5b600182019050919050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620012976020836200124e565b9150620012a4826200125f565b602082019050919050565b60006020820190508181036000830152620012ca8162001288565b9050919050565b620012dc8162000bb0565b82525050565b600081519050919050565b600082825260208201905092915050565b60006200130b82620012e2565b620013178185620012ed565b93506200132981856020860162000fe5565b620013348162000e04565b840191505092915050565b600060808201905062001356600083018762001148565b62001365602083018662001148565b620013746040830185620012d1565b8181036060830152620013888184620012fe565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620013ca8162001393565b8114620013d657600080fd5b50565b600081519050620013ea81620013bf565b92915050565b60006020828403121562001409576200140862000df5565b5b60006200141984828501620013d9565b91505092915050565b613e0780620014326000396000f3fe6080604052600436106102885760003560e01c80636f8b44b01161015a578063a22cb465116100c1578063d8bd5b091161007a578063d8bd5b0914610984578063e8a3d485146109ad578063e985e9c5146109d8578063ea457d0f14610a15578063f2fde38b14610a3e578063fe86deca14610a6757610288565b8063a22cb46514610883578063aed38015146108ac578063b47fbd17146108d5578063b88d4fde14610900578063c87b56dd1461091c578063d5abeb011461095957610288565b80638ad433ac116101135780638ad433ac146107755780638da5cb5b1461079e578063938e3d7b146107c957806395d89b41146107f2578063963c41771461081d578063a0712d681461085a57610288565b80636f8b44b01461067b57806370a08231146106a4578063715018a6146106e157806379fcb984146106f85780637ec4a659146107215780638aa372681461074a57610288565b806323b872dd116101fe5780634df3c52f116101b75780634df3c52f146105675780635503a0e8146105925780635c975abb146105bd57806362b99ad4146105e85780636352211e1461061357806368abfea91461065057610288565b806323b872dd146104875780633ccfd60b146104a35780633ee212f5146104ba57806341f43434146104e357806342842e0e1461050e578063438b63001461052a57610288565b80630bf91c53116102505780630bf91c53146103795780630e82b63d146103a45780631015805b146103cd57806316ba10e01461040a57806316c38b3c1461043357806318160ddd1461045c57610288565b806301ffc9a71461028d57806303d8acef146102ca57806306fdde03146102f5578063081812fc14610320578063095ea7b31461035d575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190612a6b565b610a92565b6040516102c19190612ab3565b60405180910390f35b3480156102d657600080fd5b506102df610b24565b6040516102ec9190612ae7565b60405180910390f35b34801561030157600080fd5b5061030a610b2a565b6040516103179190612b92565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612be0565b610bbc565b6040516103549190612c4e565b60405180910390f35b61037760048036038101906103729190612c95565b610c3b565b005b34801561038557600080fd5b5061038e610c54565b60405161039b9190612ae7565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190612be0565b610c5a565b005b3480156103d957600080fd5b506103f460048036038101906103ef9190612cd5565b610c6c565b6040516104019190612ae7565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190612e37565b610c84565b005b34801561043f57600080fd5b5061045a60048036038101906104559190612eac565b610c9f565b005b34801561046857600080fd5b50610471610cc4565b60405161047e9190612ae7565b60405180910390f35b6104a1600480360381019061049c9190612ed9565b610cdb565b005b3480156104af57600080fd5b506104b8610d2a565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190612be0565b610dc2565b005b3480156104ef57600080fd5b506104f8610dd4565b6040516105059190612f8b565b60405180910390f35b61052860048036038101906105239190612ed9565b610de6565b005b34801561053657600080fd5b50610551600480360381019061054c9190612cd5565b610e35565b60405161055e9190613064565b60405180910390f35b34801561057357600080fd5b5061057c610f3a565b6040516105899190612ae7565b60405180910390f35b34801561059e57600080fd5b506105a7610f40565b6040516105b49190612b92565b60405180910390f35b3480156105c957600080fd5b506105d2610fce565b6040516105df9190612ab3565b60405180910390f35b3480156105f457600080fd5b506105fd610fe1565b60405161060a9190612b92565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190612be0565b61106f565b6040516106479190612c4e565b60405180910390f35b34801561065c57600080fd5b50610665611081565b6040516106729190612ab3565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190612be0565b611094565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190612cd5565b6110eb565b6040516106d89190612ae7565b60405180910390f35b3480156106ed57600080fd5b506106f66111a3565b005b34801561070457600080fd5b5061071f600480360381019061071a9190612be0565b6111b7565b005b34801561072d57600080fd5b5061074860048036038101906107439190612e37565b6111c9565b005b34801561075657600080fd5b5061075f6111e4565b60405161076c9190612b92565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190612be0565b611272565b005b3480156107aa57600080fd5b506107b3611474565b6040516107c09190612c4e565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb9190612e37565b61149e565b005b3480156107fe57600080fd5b506108076114b9565b6040516108149190612b92565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190612cd5565b61154b565b6040516108519190612ae7565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c9190612be0565b611563565b005b34801561088f57600080fd5b506108aa60048036038101906108a59190613086565b611765565b005b3480156108b857600080fd5b506108d360048036038101906108ce91906130c6565b61177e565b005b3480156108e157600080fd5b506108ea611803565b6040516108f79190612ae7565b60405180910390f35b61091a600480360381019061091591906131a7565b611809565b005b34801561092857600080fd5b50610943600480360381019061093e9190612be0565b61185a565b6040516109509190612b92565b60405180910390f35b34801561096557600080fd5b5061096e6118fa565b60405161097b9190612ae7565b60405180910390f35b34801561099057600080fd5b506109ab60048036038101906109a69190612be0565b611900565b005b3480156109b957600080fd5b506109c2611912565b6040516109cf9190612b92565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa919061322a565b6119a4565b604051610a0c9190612ab3565b60405180910390f35b348015610a2157600080fd5b50610a3c6004803603810190610a379190612eac565b611a38565b005b348015610a4a57600080fd5b50610a656004803603810190610a609190612cd5565b611a5d565b005b348015610a7357600080fd5b50610a7c611ae0565b604051610a899190612ae7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aed57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60135481565b606060028054610b3990613299565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6590613299565b8015610bb25780601f10610b8757610100808354040283529160200191610bb2565b820191906000526020600020905b815481529060010190602001808311610b9557829003601f168201915b5050505050905090565b6000610bc782611ae6565b610bfd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c4581611b45565b610c4f8383611c42565b505050565b60145481565b610c62611d86565b8060118190555050565b600b6020528060005260406000206000915090505481565b610c8c611d86565b80600d9081610c9b919061346c565b5050565b610ca7611d86565b80601560016101000a81548160ff02191690831515021790555050565b6000610cce611e04565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d1957610d1833611b45565b5b610d24848484611e09565b50505050565b610d32611d86565b610d3a61212b565b6000610d44611474565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d679061356f565b60006040518083038185875af1925050503d8060008114610da4576040519150601f19603f3d011682016040523d82523d6000602084013e610da9565b606091505b5050905080610db757600080fd5b50610dc061217a565b565b610dca611d86565b8060108190555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e2457610e2333611b45565b5b610e2f848484612184565b50505050565b60606000610e42836110eb565b905060008167ffffffffffffffff811115610e6057610e5f612d0c565b5b604051908082528060200260200182016040528015610e8e5781602001602082028036833780820191505090505b5090506000805b8381108015610ea65750600f548211155b15610f2e576000610eb68361106f565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f1a5782848381518110610eff57610efe613584565b5b6020026020010181815250508180610f16906135e2565b9250505b8280610f25906135e2565b93505050610e95565b82945050505050919050565b60105481565b600d8054610f4d90613299565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7990613299565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b505050505081565b601560019054906101000a900460ff1681565b600c8054610fee90613299565b80601f016020809104026020016040519081016040528092919081815260200182805461101a90613299565b80156110675780601f1061103c57610100808354040283529160200191611067565b820191906000526020600020905b81548152906001019060200180831161104a57829003601f168201915b505050505081565b600061107a826121a4565b9050919050565b601560009054906101000a900460ff1681565b61109c611d86565b6113888111156110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d890613676565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611152576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111ab611d86565b6111b56000612270565b565b6111bf611d86565b8060138190555050565b6111d1611d86565b80600c90816111e0919061346c565b5050565b600e80546111f190613299565b80601f016020809104026020016040519081016040528092919081815260200182805461121d90613299565b801561126a5780601f1061123f5761010080835404028352916020019161126a565b820191906000526020600020905b81548152906001019060200180831161124d57829003601f168201915b505050505081565b8060008161127e610cc4565b6112889190613696565b905060008211801561129c57506010548211155b6112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d29061373c565b60405180910390fd5b60125482600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113299190613696565b111561136a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611361906137f4565b60405180910390fd5b600f548111156113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690613860565b60405180910390fd5b601560009054906101000a900460ff16156113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f6906138f2565b60405180910390fd5b61140761212b565b82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114569190613696565b925050819055506114673384612336565b61146f61217a565b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114a6611d86565b80600e90816114b5919061346c565b5050565b6060600380546114c890613299565b80601f01602080910402602001604051908101604052809291908181526020018280546114f490613299565b80156115415780601f1061151657610100808354040283529160200191611541565b820191906000526020600020905b81548152906001019060200180831161152457829003601f168201915b5050505050905090565b600a6020528060005260406000206000915090505481565b8060008161156f610cc4565b6115799190613696565b905060008211801561158d57506011548211155b6115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c39061373c565b60405180910390fd5b60135482600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461161a9190613696565b111561165b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165290613984565b60405180910390fd5b600f548111156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613860565b60405180910390fd5b601560019054906101000a900460ff16156116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e7906138f2565b60405180910390fd5b6116f861212b565b82600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117479190613696565b925050819055506117583384612336565b61176061217a565b505050565b8161176f81611b45565b6117798383612354565b505050565b8160008161178a610cc4565b6117949190613696565b9050600f548111156117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d290613860565b60405180910390fd5b6117e3611d86565b6117eb61212b565b6117f58385612336565b6117fd61217a565b50505050565b60125481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146118475761184633611b45565b5b6118538585858561245f565b5050505050565b606061186582611ae6565b6118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613a16565b60405180910390fd5b60006118ae6124d2565b905060008151116118ce57604051806020016040528060008152506118f2565b80600d6040516020016118e2929190613af5565b6040516020818303038152906040525b915050919050565b600f5481565b611908611d86565b8060128190555050565b6060600e805461192190613299565b80601f016020809104026020016040519081016040528092919081815260200182805461194d90613299565b801561199a5780601f1061196f5761010080835404028352916020019161199a565b820191906000526020600020905b81548152906001019060200180831161197d57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a40611d86565b80601560006101000a81548160ff02191690831515021790555050565b611a65611d86565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb90613b8b565b60405180910390fd5b611add81612270565b50565b60115481565b600081611af1611e04565b11158015611b00575060005482105b8015611b3e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611c3f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611bbc929190613bab565b602060405180830381865afa158015611bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfd9190613be9565b611c3e57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611c359190612c4e565b60405180910390fd5b5b50565b6000611c4d8261106f565b90508073ffffffffffffffffffffffffffffffffffffffff16611c6e612564565b73ffffffffffffffffffffffffffffffffffffffff1614611cd157611c9a81611c95612564565b6119a4565b611cd0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611d8e61256c565b73ffffffffffffffffffffffffffffffffffffffff16611dac611474565b73ffffffffffffffffffffffffffffffffffffffff1614611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df990613c62565b60405180910390fd5b565b600090565b6000611e14826121a4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e7b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611e8784612574565b91509150611e9d8187611e98612564565b61259b565b611ee957611eb286611ead612564565b6119a4565b611ee8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611f4f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f5c86868660016125df565b8015611f6757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612035856120118888876125e5565b7c02000000000000000000000000000000000000000000000000000000001761260d565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036120bb57600060018501905060006004600083815260200190815260200160002054036120b95760005481146120b8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121238686866001612638565b505050505050565b600260085403612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613cce565b60405180910390fd5b6002600881905550565b6001600881905550565b61219f83838360405180602001604052806000815250611809565b505050565b600080829050806121b3611e04565b11612239576000548110156122385760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612236575b6000810361222c576004600083600190039350838152602001908152602001600020549050612202565b809250505061226b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61235082826040518060200160405280600081525061263e565b5050565b8060076000612361612564565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661240e612564565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124539190612ab3565b60405180910390a35050565b61246a848484610cdb565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124cc57612495848484846126db565b6124cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600c80546124e190613299565b80601f016020809104026020016040519081016040528092919081815260200182805461250d90613299565b801561255a5780601f1061252f5761010080835404028352916020019161255a565b820191906000526020600020905b81548152906001019060200180831161253d57829003601f168201915b5050505050905090565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86125fc86868461282b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6126488383612834565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126d657600080549050600083820390505b61268860008683806001019450866126db565b6126be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126755781600054146126d357600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612701612564565b8786866040518563ffffffff1660e01b81526004016127239493929190613d43565b6020604051808303816000875af192505050801561275f57506040513d601f19601f8201168201806040525081019061275c9190613da4565b60015b6127d8573d806000811461278f576040519150601f19603f3d011682016040523d82523d6000602084013e612794565b606091505b5060008151036127d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612874576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61288160008483856125df565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128f8836128e960008660006125e5565b6128f2856129ef565b1761260d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461299957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061295e565b50600082036129d4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506129ea6000848385612638565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a4881612a13565b8114612a5357600080fd5b50565b600081359050612a6581612a3f565b92915050565b600060208284031215612a8157612a80612a09565b5b6000612a8f84828501612a56565b91505092915050565b60008115159050919050565b612aad81612a98565b82525050565b6000602082019050612ac86000830184612aa4565b92915050565b6000819050919050565b612ae181612ace565b82525050565b6000602082019050612afc6000830184612ad8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b3c578082015181840152602081019050612b21565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b6482612b02565b612b6e8185612b0d565b9350612b7e818560208601612b1e565b612b8781612b48565b840191505092915050565b60006020820190508181036000830152612bac8184612b59565b905092915050565b612bbd81612ace565b8114612bc857600080fd5b50565b600081359050612bda81612bb4565b92915050565b600060208284031215612bf657612bf5612a09565b5b6000612c0484828501612bcb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c3882612c0d565b9050919050565b612c4881612c2d565b82525050565b6000602082019050612c636000830184612c3f565b92915050565b612c7281612c2d565b8114612c7d57600080fd5b50565b600081359050612c8f81612c69565b92915050565b60008060408385031215612cac57612cab612a09565b5b6000612cba85828601612c80565b9250506020612ccb85828601612bcb565b9150509250929050565b600060208284031215612ceb57612cea612a09565b5b6000612cf984828501612c80565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d4482612b48565b810181811067ffffffffffffffff82111715612d6357612d62612d0c565b5b80604052505050565b6000612d766129ff565b9050612d828282612d3b565b919050565b600067ffffffffffffffff821115612da257612da1612d0c565b5b612dab82612b48565b9050602081019050919050565b82818337600083830152505050565b6000612dda612dd584612d87565b612d6c565b905082815260208101848484011115612df657612df5612d07565b5b612e01848285612db8565b509392505050565b600082601f830112612e1e57612e1d612d02565b5b8135612e2e848260208601612dc7565b91505092915050565b600060208284031215612e4d57612e4c612a09565b5b600082013567ffffffffffffffff811115612e6b57612e6a612a0e565b5b612e7784828501612e09565b91505092915050565b612e8981612a98565b8114612e9457600080fd5b50565b600081359050612ea681612e80565b92915050565b600060208284031215612ec257612ec1612a09565b5b6000612ed084828501612e97565b91505092915050565b600080600060608486031215612ef257612ef1612a09565b5b6000612f0086828701612c80565b9350506020612f1186828701612c80565b9250506040612f2286828701612bcb565b9150509250925092565b6000819050919050565b6000612f51612f4c612f4784612c0d565b612f2c565b612c0d565b9050919050565b6000612f6382612f36565b9050919050565b6000612f7582612f58565b9050919050565b612f8581612f6a565b82525050565b6000602082019050612fa06000830184612f7c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612fdb81612ace565b82525050565b6000612fed8383612fd2565b60208301905092915050565b6000602082019050919050565b600061301182612fa6565b61301b8185612fb1565b935061302683612fc2565b8060005b8381101561305757815161303e8882612fe1565b975061304983612ff9565b92505060018101905061302a565b5085935050505092915050565b6000602082019050818103600083015261307e8184613006565b905092915050565b6000806040838503121561309d5761309c612a09565b5b60006130ab85828601612c80565b92505060206130bc85828601612e97565b9150509250929050565b600080604083850312156130dd576130dc612a09565b5b60006130eb85828601612bcb565b92505060206130fc85828601612c80565b9150509250929050565b600067ffffffffffffffff82111561312157613120612d0c565b5b61312a82612b48565b9050602081019050919050565b600061314a61314584613106565b612d6c565b90508281526020810184848401111561316657613165612d07565b5b613171848285612db8565b509392505050565b600082601f83011261318e5761318d612d02565b5b813561319e848260208601613137565b91505092915050565b600080600080608085870312156131c1576131c0612a09565b5b60006131cf87828801612c80565b94505060206131e087828801612c80565b93505060406131f187828801612bcb565b925050606085013567ffffffffffffffff81111561321257613211612a0e565b5b61321e87828801613179565b91505092959194509250565b6000806040838503121561324157613240612a09565b5b600061324f85828601612c80565b925050602061326085828601612c80565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132b157607f821691505b6020821081036132c4576132c361326a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261332c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132ef565b61333686836132ef565b95508019841693508086168417925050509392505050565b600061336961336461335f84612ace565b612f2c565b612ace565b9050919050565b6000819050919050565b6133838361334e565b61339761338f82613370565b8484546132fc565b825550505050565b600090565b6133ac61339f565b6133b781848461337a565b505050565b5b818110156133db576133d06000826133a4565b6001810190506133bd565b5050565b601f821115613420576133f1816132ca565b6133fa846132df565b81016020851015613409578190505b61341d613415856132df565b8301826133bc565b50505b505050565b600082821c905092915050565b600061344360001984600802613425565b1980831691505092915050565b600061345c8383613432565b9150826002028217905092915050565b61347582612b02565b67ffffffffffffffff81111561348e5761348d612d0c565b5b6134988254613299565b6134a38282856133df565b600060209050601f8311600181146134d657600084156134c4578287015190505b6134ce8582613450565b865550613536565b601f1984166134e4866132ca565b60005b8281101561350c578489015182556001820191506020850194506020810190506134e7565b868310156135295784890151613525601f891682613432565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b600061355960008361353e565b915061356482613549565b600082019050919050565b600061357a8261354c565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135ed82612ace565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361361f5761361e6135b3565b5b600182019050919050565b7f43414e204e4f5420494e43524541534520535550504c59000000000000000000600082015250565b6000613660601783612b0d565b915061366b8261362a565b602082019050919050565b6000602082019050818103600083015261368f81613653565b9050919050565b60006136a182612ace565b91506136ac83612ace565b92508282019050808211156136c4576136c36135b3565b5b92915050565b7f596f75206861766520657863656564656420746865206c696d6974206f66206d60008201527f696e747320706572207472616e73616374696f6e000000000000000000000000602082015250565b6000613726603483612b0d565b9150613731826136ca565b604082019050919050565b6000602082019050818103600083015261375581613719565b9050919050565b7f596f7520617265206e6f74206f6e207468652077686974656c697374206f722060008201527f6861766520616c7265616479207573656420796f75722077686974656c69737460208201527f206d696e74000000000000000000000000000000000000000000000000000000604082015250565b60006137de604583612b0d565b91506137e98261375c565b606082019050919050565b6000602082019050818103600083015261380d816137d1565b9050919050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b600061384a600883612b0d565b915061385582613814565b602082019050919050565b600060208201905081810360008301526138798161383d565b9050919050565b7f4d696e74696e67206973206e6f742063757272656e746c7920616c6c6f77656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b60006138dc602183612b0d565b91506138e782613880565b604082019050919050565b6000602082019050818103600083015261390b816138cf565b9050919050565b7f596f75206861766520616c7265616479206d696e74656420796f7572206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b600061396e602283612b0d565b915061397982613912565b604082019050919050565b6000602082019050818103600083015261399d81613961565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a00602f83612b0d565b9150613a0b826139a4565b604082019050919050565b60006020820190508181036000830152613a2f816139f3565b9050919050565b600081905092915050565b6000613a4c82612b02565b613a568185613a36565b9350613a66818560208601612b1e565b80840191505092915050565b60008154613a7f81613299565b613a898186613a36565b94506001821660008114613aa45760018114613ab957613aec565b60ff1983168652811515820286019350613aec565b613ac2856132ca565b60005b83811015613ae457815481890152600182019150602081019050613ac5565b838801955050505b50505092915050565b6000613b018285613a41565b9150613b0d8284613a72565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b75602683612b0d565b9150613b8082613b19565b604082019050919050565b60006020820190508181036000830152613ba481613b68565b9050919050565b6000604082019050613bc06000830185612c3f565b613bcd6020830184612c3f565b9392505050565b600081519050613be381612e80565b92915050565b600060208284031215613bff57613bfe612a09565b5b6000613c0d84828501613bd4565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c4c602083612b0d565b9150613c5782613c16565b602082019050919050565b60006020820190508181036000830152613c7b81613c3f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613cb8601f83612b0d565b9150613cc382613c82565b602082019050919050565b60006020820190508181036000830152613ce781613cab565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613d1582613cee565b613d1f8185613cf9565b9350613d2f818560208601612b1e565b613d3881612b48565b840191505092915050565b6000608082019050613d586000830187612c3f565b613d656020830186612c3f565b613d726040830185612ad8565b8181036060830152613d848184613d0a565b905095945050505050565b600081519050613d9e81612a3f565b92915050565b600060208284031215613dba57613db9612a09565b5b6000613dc884828501613d8f565b9150509291505056fea26469706673582212200a89d56348a8a042354cac443ebe528f57d0ddb874d212e9ab61e048ecbc1fcc64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000d33a97429e032d1c6b8539481fa8f3b8eb12cd2f000000000000000000000000831fc358124d5899b731472ebe2a4bf1cd6c3e1e000000000000000000000000dc9eef462bd661d5a14146dfa05f5cdb6db5fecf000000000000000000000000272a1ba599cdb37c4cba4ab37d103db1b88674380000000000000000000000000555f6d50d0ba2f41a5136aa3f0ba141beeafdee0000000000000000000000003934a2d2358a302c18365d2d0d4c88f75e74f8030000000000000000000000001e2c490b5f94b2e7a79c7b6a3c6995dfc97009b70000000000000000000000001e6c7d7094f57f5922c1ce7642a0daccdaf484420000000000000000000000003e9cb1094243ca3199d1d7c9b087eb9ed804aa270000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5378486a4b536e7a7341366736346e70424a4c48797a7a696b39565967726e6a324b4d766532546d6b62627300000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d544a61384d6d4173393261724d546b694a3159675863546f36443232696f766b65725061775a6f5863314a340000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80636f8b44b01161015a578063a22cb465116100c1578063d8bd5b091161007a578063d8bd5b0914610984578063e8a3d485146109ad578063e985e9c5146109d8578063ea457d0f14610a15578063f2fde38b14610a3e578063fe86deca14610a6757610288565b8063a22cb46514610883578063aed38015146108ac578063b47fbd17146108d5578063b88d4fde14610900578063c87b56dd1461091c578063d5abeb011461095957610288565b80638ad433ac116101135780638ad433ac146107755780638da5cb5b1461079e578063938e3d7b146107c957806395d89b41146107f2578063963c41771461081d578063a0712d681461085a57610288565b80636f8b44b01461067b57806370a08231146106a4578063715018a6146106e157806379fcb984146106f85780637ec4a659146107215780638aa372681461074a57610288565b806323b872dd116101fe5780634df3c52f116101b75780634df3c52f146105675780635503a0e8146105925780635c975abb146105bd57806362b99ad4146105e85780636352211e1461061357806368abfea91461065057610288565b806323b872dd146104875780633ccfd60b146104a35780633ee212f5146104ba57806341f43434146104e357806342842e0e1461050e578063438b63001461052a57610288565b80630bf91c53116102505780630bf91c53146103795780630e82b63d146103a45780631015805b146103cd57806316ba10e01461040a57806316c38b3c1461043357806318160ddd1461045c57610288565b806301ffc9a71461028d57806303d8acef146102ca57806306fdde03146102f5578063081812fc14610320578063095ea7b31461035d575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190612a6b565b610a92565b6040516102c19190612ab3565b60405180910390f35b3480156102d657600080fd5b506102df610b24565b6040516102ec9190612ae7565b60405180910390f35b34801561030157600080fd5b5061030a610b2a565b6040516103179190612b92565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612be0565b610bbc565b6040516103549190612c4e565b60405180910390f35b61037760048036038101906103729190612c95565b610c3b565b005b34801561038557600080fd5b5061038e610c54565b60405161039b9190612ae7565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190612be0565b610c5a565b005b3480156103d957600080fd5b506103f460048036038101906103ef9190612cd5565b610c6c565b6040516104019190612ae7565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190612e37565b610c84565b005b34801561043f57600080fd5b5061045a60048036038101906104559190612eac565b610c9f565b005b34801561046857600080fd5b50610471610cc4565b60405161047e9190612ae7565b60405180910390f35b6104a1600480360381019061049c9190612ed9565b610cdb565b005b3480156104af57600080fd5b506104b8610d2a565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190612be0565b610dc2565b005b3480156104ef57600080fd5b506104f8610dd4565b6040516105059190612f8b565b60405180910390f35b61052860048036038101906105239190612ed9565b610de6565b005b34801561053657600080fd5b50610551600480360381019061054c9190612cd5565b610e35565b60405161055e9190613064565b60405180910390f35b34801561057357600080fd5b5061057c610f3a565b6040516105899190612ae7565b60405180910390f35b34801561059e57600080fd5b506105a7610f40565b6040516105b49190612b92565b60405180910390f35b3480156105c957600080fd5b506105d2610fce565b6040516105df9190612ab3565b60405180910390f35b3480156105f457600080fd5b506105fd610fe1565b60405161060a9190612b92565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190612be0565b61106f565b6040516106479190612c4e565b60405180910390f35b34801561065c57600080fd5b50610665611081565b6040516106729190612ab3565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190612be0565b611094565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190612cd5565b6110eb565b6040516106d89190612ae7565b60405180910390f35b3480156106ed57600080fd5b506106f66111a3565b005b34801561070457600080fd5b5061071f600480360381019061071a9190612be0565b6111b7565b005b34801561072d57600080fd5b5061074860048036038101906107439190612e37565b6111c9565b005b34801561075657600080fd5b5061075f6111e4565b60405161076c9190612b92565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190612be0565b611272565b005b3480156107aa57600080fd5b506107b3611474565b6040516107c09190612c4e565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb9190612e37565b61149e565b005b3480156107fe57600080fd5b506108076114b9565b6040516108149190612b92565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190612cd5565b61154b565b6040516108519190612ae7565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c9190612be0565b611563565b005b34801561088f57600080fd5b506108aa60048036038101906108a59190613086565b611765565b005b3480156108b857600080fd5b506108d360048036038101906108ce91906130c6565b61177e565b005b3480156108e157600080fd5b506108ea611803565b6040516108f79190612ae7565b60405180910390f35b61091a600480360381019061091591906131a7565b611809565b005b34801561092857600080fd5b50610943600480360381019061093e9190612be0565b61185a565b6040516109509190612b92565b60405180910390f35b34801561096557600080fd5b5061096e6118fa565b60405161097b9190612ae7565b60405180910390f35b34801561099057600080fd5b506109ab60048036038101906109a69190612be0565b611900565b005b3480156109b957600080fd5b506109c2611912565b6040516109cf9190612b92565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa919061322a565b6119a4565b604051610a0c9190612ab3565b60405180910390f35b348015610a2157600080fd5b50610a3c6004803603810190610a379190612eac565b611a38565b005b348015610a4a57600080fd5b50610a656004803603810190610a609190612cd5565b611a5d565b005b348015610a7357600080fd5b50610a7c611ae0565b604051610a899190612ae7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aed57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60135481565b606060028054610b3990613299565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6590613299565b8015610bb25780601f10610b8757610100808354040283529160200191610bb2565b820191906000526020600020905b815481529060010190602001808311610b9557829003601f168201915b5050505050905090565b6000610bc782611ae6565b610bfd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c4581611b45565b610c4f8383611c42565b505050565b60145481565b610c62611d86565b8060118190555050565b600b6020528060005260406000206000915090505481565b610c8c611d86565b80600d9081610c9b919061346c565b5050565b610ca7611d86565b80601560016101000a81548160ff02191690831515021790555050565b6000610cce611e04565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d1957610d1833611b45565b5b610d24848484611e09565b50505050565b610d32611d86565b610d3a61212b565b6000610d44611474565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d679061356f565b60006040518083038185875af1925050503d8060008114610da4576040519150601f19603f3d011682016040523d82523d6000602084013e610da9565b606091505b5050905080610db757600080fd5b50610dc061217a565b565b610dca611d86565b8060108190555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e2457610e2333611b45565b5b610e2f848484612184565b50505050565b60606000610e42836110eb565b905060008167ffffffffffffffff811115610e6057610e5f612d0c565b5b604051908082528060200260200182016040528015610e8e5781602001602082028036833780820191505090505b5090506000805b8381108015610ea65750600f548211155b15610f2e576000610eb68361106f565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f1a5782848381518110610eff57610efe613584565b5b6020026020010181815250508180610f16906135e2565b9250505b8280610f25906135e2565b93505050610e95565b82945050505050919050565b60105481565b600d8054610f4d90613299565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7990613299565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b505050505081565b601560019054906101000a900460ff1681565b600c8054610fee90613299565b80601f016020809104026020016040519081016040528092919081815260200182805461101a90613299565b80156110675780601f1061103c57610100808354040283529160200191611067565b820191906000526020600020905b81548152906001019060200180831161104a57829003601f168201915b505050505081565b600061107a826121a4565b9050919050565b601560009054906101000a900460ff1681565b61109c611d86565b6113888111156110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d890613676565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611152576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111ab611d86565b6111b56000612270565b565b6111bf611d86565b8060138190555050565b6111d1611d86565b80600c90816111e0919061346c565b5050565b600e80546111f190613299565b80601f016020809104026020016040519081016040528092919081815260200182805461121d90613299565b801561126a5780601f1061123f5761010080835404028352916020019161126a565b820191906000526020600020905b81548152906001019060200180831161124d57829003601f168201915b505050505081565b8060008161127e610cc4565b6112889190613696565b905060008211801561129c57506010548211155b6112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d29061373c565b60405180910390fd5b60125482600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113299190613696565b111561136a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611361906137f4565b60405180910390fd5b600f548111156113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690613860565b60405180910390fd5b601560009054906101000a900460ff16156113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f6906138f2565b60405180910390fd5b61140761212b565b82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114569190613696565b925050819055506114673384612336565b61146f61217a565b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114a6611d86565b80600e90816114b5919061346c565b5050565b6060600380546114c890613299565b80601f01602080910402602001604051908101604052809291908181526020018280546114f490613299565b80156115415780601f1061151657610100808354040283529160200191611541565b820191906000526020600020905b81548152906001019060200180831161152457829003601f168201915b5050505050905090565b600a6020528060005260406000206000915090505481565b8060008161156f610cc4565b6115799190613696565b905060008211801561158d57506011548211155b6115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c39061373c565b60405180910390fd5b60135482600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461161a9190613696565b111561165b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165290613984565b60405180910390fd5b600f548111156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613860565b60405180910390fd5b601560019054906101000a900460ff16156116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e7906138f2565b60405180910390fd5b6116f861212b565b82600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117479190613696565b925050819055506117583384612336565b61176061217a565b505050565b8161176f81611b45565b6117798383612354565b505050565b8160008161178a610cc4565b6117949190613696565b9050600f548111156117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d290613860565b60405180910390fd5b6117e3611d86565b6117eb61212b565b6117f58385612336565b6117fd61217a565b50505050565b60125481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146118475761184633611b45565b5b6118538585858561245f565b5050505050565b606061186582611ae6565b6118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613a16565b60405180910390fd5b60006118ae6124d2565b905060008151116118ce57604051806020016040528060008152506118f2565b80600d6040516020016118e2929190613af5565b6040516020818303038152906040525b915050919050565b600f5481565b611908611d86565b8060128190555050565b6060600e805461192190613299565b80601f016020809104026020016040519081016040528092919081815260200182805461194d90613299565b801561199a5780601f1061196f5761010080835404028352916020019161199a565b820191906000526020600020905b81548152906001019060200180831161197d57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a40611d86565b80601560006101000a81548160ff02191690831515021790555050565b611a65611d86565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb90613b8b565b60405180910390fd5b611add81612270565b50565b60115481565b600081611af1611e04565b11158015611b00575060005482105b8015611b3e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611c3f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611bbc929190613bab565b602060405180830381865afa158015611bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfd9190613be9565b611c3e57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611c359190612c4e565b60405180910390fd5b5b50565b6000611c4d8261106f565b90508073ffffffffffffffffffffffffffffffffffffffff16611c6e612564565b73ffffffffffffffffffffffffffffffffffffffff1614611cd157611c9a81611c95612564565b6119a4565b611cd0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611d8e61256c565b73ffffffffffffffffffffffffffffffffffffffff16611dac611474565b73ffffffffffffffffffffffffffffffffffffffff1614611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df990613c62565b60405180910390fd5b565b600090565b6000611e14826121a4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e7b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611e8784612574565b91509150611e9d8187611e98612564565b61259b565b611ee957611eb286611ead612564565b6119a4565b611ee8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611f4f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f5c86868660016125df565b8015611f6757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612035856120118888876125e5565b7c02000000000000000000000000000000000000000000000000000000001761260d565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036120bb57600060018501905060006004600083815260200190815260200160002054036120b95760005481146120b8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121238686866001612638565b505050505050565b600260085403612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613cce565b60405180910390fd5b6002600881905550565b6001600881905550565b61219f83838360405180602001604052806000815250611809565b505050565b600080829050806121b3611e04565b11612239576000548110156122385760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612236575b6000810361222c576004600083600190039350838152602001908152602001600020549050612202565b809250505061226b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61235082826040518060200160405280600081525061263e565b5050565b8060076000612361612564565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661240e612564565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124539190612ab3565b60405180910390a35050565b61246a848484610cdb565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124cc57612495848484846126db565b6124cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600c80546124e190613299565b80601f016020809104026020016040519081016040528092919081815260200182805461250d90613299565b801561255a5780601f1061252f5761010080835404028352916020019161255a565b820191906000526020600020905b81548152906001019060200180831161253d57829003601f168201915b5050505050905090565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86125fc86868461282b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6126488383612834565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126d657600080549050600083820390505b61268860008683806001019450866126db565b6126be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126755781600054146126d357600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612701612564565b8786866040518563ffffffff1660e01b81526004016127239493929190613d43565b6020604051808303816000875af192505050801561275f57506040513d601f19601f8201168201806040525081019061275c9190613da4565b60015b6127d8573d806000811461278f576040519150601f19603f3d011682016040523d82523d6000602084013e612794565b606091505b5060008151036127d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612874576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61288160008483856125df565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128f8836128e960008660006125e5565b6128f2856129ef565b1761260d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461299957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061295e565b50600082036129d4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506129ea6000848385612638565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a4881612a13565b8114612a5357600080fd5b50565b600081359050612a6581612a3f565b92915050565b600060208284031215612a8157612a80612a09565b5b6000612a8f84828501612a56565b91505092915050565b60008115159050919050565b612aad81612a98565b82525050565b6000602082019050612ac86000830184612aa4565b92915050565b6000819050919050565b612ae181612ace565b82525050565b6000602082019050612afc6000830184612ad8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b3c578082015181840152602081019050612b21565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b6482612b02565b612b6e8185612b0d565b9350612b7e818560208601612b1e565b612b8781612b48565b840191505092915050565b60006020820190508181036000830152612bac8184612b59565b905092915050565b612bbd81612ace565b8114612bc857600080fd5b50565b600081359050612bda81612bb4565b92915050565b600060208284031215612bf657612bf5612a09565b5b6000612c0484828501612bcb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c3882612c0d565b9050919050565b612c4881612c2d565b82525050565b6000602082019050612c636000830184612c3f565b92915050565b612c7281612c2d565b8114612c7d57600080fd5b50565b600081359050612c8f81612c69565b92915050565b60008060408385031215612cac57612cab612a09565b5b6000612cba85828601612c80565b9250506020612ccb85828601612bcb565b9150509250929050565b600060208284031215612ceb57612cea612a09565b5b6000612cf984828501612c80565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d4482612b48565b810181811067ffffffffffffffff82111715612d6357612d62612d0c565b5b80604052505050565b6000612d766129ff565b9050612d828282612d3b565b919050565b600067ffffffffffffffff821115612da257612da1612d0c565b5b612dab82612b48565b9050602081019050919050565b82818337600083830152505050565b6000612dda612dd584612d87565b612d6c565b905082815260208101848484011115612df657612df5612d07565b5b612e01848285612db8565b509392505050565b600082601f830112612e1e57612e1d612d02565b5b8135612e2e848260208601612dc7565b91505092915050565b600060208284031215612e4d57612e4c612a09565b5b600082013567ffffffffffffffff811115612e6b57612e6a612a0e565b5b612e7784828501612e09565b91505092915050565b612e8981612a98565b8114612e9457600080fd5b50565b600081359050612ea681612e80565b92915050565b600060208284031215612ec257612ec1612a09565b5b6000612ed084828501612e97565b91505092915050565b600080600060608486031215612ef257612ef1612a09565b5b6000612f0086828701612c80565b9350506020612f1186828701612c80565b9250506040612f2286828701612bcb565b9150509250925092565b6000819050919050565b6000612f51612f4c612f4784612c0d565b612f2c565b612c0d565b9050919050565b6000612f6382612f36565b9050919050565b6000612f7582612f58565b9050919050565b612f8581612f6a565b82525050565b6000602082019050612fa06000830184612f7c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612fdb81612ace565b82525050565b6000612fed8383612fd2565b60208301905092915050565b6000602082019050919050565b600061301182612fa6565b61301b8185612fb1565b935061302683612fc2565b8060005b8381101561305757815161303e8882612fe1565b975061304983612ff9565b92505060018101905061302a565b5085935050505092915050565b6000602082019050818103600083015261307e8184613006565b905092915050565b6000806040838503121561309d5761309c612a09565b5b60006130ab85828601612c80565b92505060206130bc85828601612e97565b9150509250929050565b600080604083850312156130dd576130dc612a09565b5b60006130eb85828601612bcb565b92505060206130fc85828601612c80565b9150509250929050565b600067ffffffffffffffff82111561312157613120612d0c565b5b61312a82612b48565b9050602081019050919050565b600061314a61314584613106565b612d6c565b90508281526020810184848401111561316657613165612d07565b5b613171848285612db8565b509392505050565b600082601f83011261318e5761318d612d02565b5b813561319e848260208601613137565b91505092915050565b600080600080608085870312156131c1576131c0612a09565b5b60006131cf87828801612c80565b94505060206131e087828801612c80565b93505060406131f187828801612bcb565b925050606085013567ffffffffffffffff81111561321257613211612a0e565b5b61321e87828801613179565b91505092959194509250565b6000806040838503121561324157613240612a09565b5b600061324f85828601612c80565b925050602061326085828601612c80565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132b157607f821691505b6020821081036132c4576132c361326a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261332c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132ef565b61333686836132ef565b95508019841693508086168417925050509392505050565b600061336961336461335f84612ace565b612f2c565b612ace565b9050919050565b6000819050919050565b6133838361334e565b61339761338f82613370565b8484546132fc565b825550505050565b600090565b6133ac61339f565b6133b781848461337a565b505050565b5b818110156133db576133d06000826133a4565b6001810190506133bd565b5050565b601f821115613420576133f1816132ca565b6133fa846132df565b81016020851015613409578190505b61341d613415856132df565b8301826133bc565b50505b505050565b600082821c905092915050565b600061344360001984600802613425565b1980831691505092915050565b600061345c8383613432565b9150826002028217905092915050565b61347582612b02565b67ffffffffffffffff81111561348e5761348d612d0c565b5b6134988254613299565b6134a38282856133df565b600060209050601f8311600181146134d657600084156134c4578287015190505b6134ce8582613450565b865550613536565b601f1984166134e4866132ca565b60005b8281101561350c578489015182556001820191506020850194506020810190506134e7565b868310156135295784890151613525601f891682613432565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b600061355960008361353e565b915061356482613549565b600082019050919050565b600061357a8261354c565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135ed82612ace565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361361f5761361e6135b3565b5b600182019050919050565b7f43414e204e4f5420494e43524541534520535550504c59000000000000000000600082015250565b6000613660601783612b0d565b915061366b8261362a565b602082019050919050565b6000602082019050818103600083015261368f81613653565b9050919050565b60006136a182612ace565b91506136ac83612ace565b92508282019050808211156136c4576136c36135b3565b5b92915050565b7f596f75206861766520657863656564656420746865206c696d6974206f66206d60008201527f696e747320706572207472616e73616374696f6e000000000000000000000000602082015250565b6000613726603483612b0d565b9150613731826136ca565b604082019050919050565b6000602082019050818103600083015261375581613719565b9050919050565b7f596f7520617265206e6f74206f6e207468652077686974656c697374206f722060008201527f6861766520616c7265616479207573656420796f75722077686974656c69737460208201527f206d696e74000000000000000000000000000000000000000000000000000000604082015250565b60006137de604583612b0d565b91506137e98261375c565b606082019050919050565b6000602082019050818103600083015261380d816137d1565b9050919050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b600061384a600883612b0d565b915061385582613814565b602082019050919050565b600060208201905081810360008301526138798161383d565b9050919050565b7f4d696e74696e67206973206e6f742063757272656e746c7920616c6c6f77656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b60006138dc602183612b0d565b91506138e782613880565b604082019050919050565b6000602082019050818103600083015261390b816138cf565b9050919050565b7f596f75206861766520616c7265616479206d696e74656420796f7572206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b600061396e602283612b0d565b915061397982613912565b604082019050919050565b6000602082019050818103600083015261399d81613961565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a00602f83612b0d565b9150613a0b826139a4565b604082019050919050565b60006020820190508181036000830152613a2f816139f3565b9050919050565b600081905092915050565b6000613a4c82612b02565b613a568185613a36565b9350613a66818560208601612b1e565b80840191505092915050565b60008154613a7f81613299565b613a898186613a36565b94506001821660008114613aa45760018114613ab957613aec565b60ff1983168652811515820286019350613aec565b613ac2856132ca565b60005b83811015613ae457815481890152600182019150602081019050613ac5565b838801955050505b50505092915050565b6000613b018285613a41565b9150613b0d8284613a72565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b75602683612b0d565b9150613b8082613b19565b604082019050919050565b60006020820190508181036000830152613ba481613b68565b9050919050565b6000604082019050613bc06000830185612c3f565b613bcd6020830184612c3f565b9392505050565b600081519050613be381612e80565b92915050565b600060208284031215613bff57613bfe612a09565b5b6000613c0d84828501613bd4565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c4c602083612b0d565b9150613c5782613c16565b602082019050919050565b60006020820190508181036000830152613c7b81613c3f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613cb8601f83612b0d565b9150613cc382613c82565b602082019050919050565b60006020820190508181036000830152613ce781613cab565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613d1582613cee565b613d1f8185613cf9565b9350613d2f818560208601612b1e565b613d3881612b48565b840191505092915050565b6000608082019050613d586000830187612c3f565b613d656020830186612c3f565b613d726040830185612ad8565b8181036060830152613d848184613d0a565b905095945050505050565b600081519050613d9e81612a3f565b92915050565b600060208284031215613dba57613db9612a09565b5b6000613dc884828501613d8f565b9150509291505056fea26469706673582212200a89d56348a8a042354cac443ebe528f57d0ddb874d212e9ab61e048ecbc1fcc64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000d33a97429e032d1c6b8539481fa8f3b8eb12cd2f000000000000000000000000831fc358124d5899b731472ebe2a4bf1cd6c3e1e000000000000000000000000dc9eef462bd661d5a14146dfa05f5cdb6db5fecf000000000000000000000000272a1ba599cdb37c4cba4ab37d103db1b88674380000000000000000000000000555f6d50d0ba2f41a5136aa3f0ba141beeafdee0000000000000000000000003934a2d2358a302c18365d2d0d4c88f75e74f8030000000000000000000000001e2c490b5f94b2e7a79c7b6a3c6995dfc97009b70000000000000000000000001e6c7d7094f57f5922c1ce7642a0daccdaf484420000000000000000000000003e9cb1094243ca3199d1d7c9b087eb9ed804aa270000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5378486a4b536e7a7341366736346e70424a4c48797a7a696b39565967726e6a324b4d766532546d6b62627300000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d544a61384d6d4173393261724d546b694a3159675863546f36443232696f766b65725061775a6f5863314a340000000000000000000000

-----Decoded View---------------
Arg [0] : _internalAccounts (address[]): 0xd33A97429e032D1c6B8539481FA8F3B8Eb12Cd2f,0x831Fc358124D5899B731472Ebe2a4BF1cD6C3e1e,0xDC9eeF462bD661D5a14146dFA05f5cdB6Db5Fecf,0x272A1bA599cdB37C4cba4ab37D103Db1B8867438,0x0555f6d50d0BA2f41a5136Aa3f0ba141beEaFDEe,0x3934A2d2358a302C18365d2d0d4c88f75e74f803,0x1e2c490B5F94b2e7a79C7b6a3C6995dfc97009B7,0x1E6C7d7094f57f5922c1ce7642A0DaccDaF48442,0x3e9cB1094243CA3199D1d7C9B087Eb9ED804aa27
Arg [1] : _prefix (string): ipfs://QmSxHjKSnzsA6g64npBJLHyzzik9VYgrnj2KMve2Tmkbbs
Arg [2] : _contractURI (string): ipfs://QmTJa8MmAs92arMTkiJ1YgXcTo6D22iovkerPawZoXc1J4

-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 000000000000000000000000d33a97429e032d1c6b8539481fa8f3b8eb12cd2f
Arg [5] : 000000000000000000000000831fc358124d5899b731472ebe2a4bf1cd6c3e1e
Arg [6] : 000000000000000000000000dc9eef462bd661d5a14146dfa05f5cdb6db5fecf
Arg [7] : 000000000000000000000000272a1ba599cdb37c4cba4ab37d103db1b8867438
Arg [8] : 0000000000000000000000000555f6d50d0ba2f41a5136aa3f0ba141beeafdee
Arg [9] : 0000000000000000000000003934a2d2358a302c18365d2d0d4c88f75e74f803
Arg [10] : 0000000000000000000000001e2c490b5f94b2e7a79c7b6a3c6995dfc97009b7
Arg [11] : 0000000000000000000000001e6c7d7094f57f5922c1ce7642a0daccdaf48442
Arg [12] : 0000000000000000000000003e9cb1094243ca3199d1d7c9b087eb9ed804aa27
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [14] : 697066733a2f2f516d5378486a4b536e7a7341366736346e70424a4c48797a7a
Arg [15] : 696b39565967726e6a324b4d766532546d6b6262730000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [17] : 697066733a2f2f516d544a61384d6d4173393261724d546b694a315967586354
Arg [18] : 6f36443232696f766b65725061775a6f5863314a340000000000000000000000


Loading...
Loading
Loading...
Loading
[ 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.