ETH Price: $3,381.71 (-1.81%)
Gas: 2 Gwei

Token

ABE KILLER (ABE)
 

Overview

Max Total Supply

2,725 ABE

Holders

928

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tlieberman22.eth
Balance
3 ABE
0x729cfa0f61946c8a558da84103f332d310a9d26a
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:
ABEKILLER

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 14: ABEKILLER.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "./Ownable.sol";
import "./ERC2981.sol";
import "./Address.sol";
import "./Strings.sol";
import "./ERC721AQueryable.sol";

contract ABEKILLER is ERC2981, ERC721AQueryable, Ownable {
    using Address for address payable;
    using Strings for uint256;

    event LuckyBoy(address minter, uint32 amount);

    bytes32 public immutable _lotterySalt;
    uint256 public immutable _price;
    uint32 public immutable _maxSupply;
    uint32 public immutable _teamSupply;
    uint32 public immutable _instantFreeSupply;
    uint32 public immutable _randomFreeSupply;
    uint32 public immutable _instantFreeWalletLimit;
    uint32 public immutable _walletLimit;

    uint32 public _teamMinted;
    uint32 public _randomFreeMinted;
    uint32 public _instantFreeMinted;
    uint32 public _maxMintAmount;
    bool public _started;
    string public _metadataURI = "https://gateway.pinata.cloud/ipfs/Qme7b3NyZsqoxevtcAoH5dYGQ3WkD4YtdoUoRYbUDM2q3K/";
    struct Status {
        // config
        uint256 price;
        uint32 maxSupply;
        uint32 publicSupply;
        uint32 instantFreeSupply;
        uint32 randomFreeSupply;
        uint32 instantFreeWalletLimit;
        uint32 walletLimit;

        // state
        uint32 publicMinted;
        uint32 instantFreeMintLeft;
        uint32 randomFreeMintLeft;
        uint32 userMinted;
        bool soldout;
        bool started;
    }

    constructor(
        uint256 price, 
        uint32 maxSupply, 
        uint32 teamSupply, 
        uint32 instantFreeSupply, 
        uint32 randomFreeSupply, 
        uint32 instantFreeWalletLimit, 
        uint32 maxMintAmount, 
        uint32 walletLimit 
    ) ERC721A("ABE KILLER", "ABE") {
        require(maxSupply >= teamSupply + instantFreeSupply);
        require(maxSupply - teamSupply - instantFreeSupply >= randomFreeSupply);

        _lotterySalt = keccak256(abi.encodePacked(address(this), block.timestamp));
        _price = price;
        _maxSupply = maxSupply;
        _teamSupply = teamSupply;
        _instantFreeSupply = instantFreeSupply;
        _instantFreeWalletLimit = instantFreeWalletLimit;
        _randomFreeSupply = randomFreeSupply;
        _walletLimit = walletLimit;
        _maxMintAmount = maxMintAmount;

        setFeeNumerator(750);
    }

    function mint(uint32 amount) external payable {
        require(_started, "ABE : Sale is not started");
        require(_maxMintAmount >= amount, "ABE : Mint Number too large");

        uint32 publicMinted = _publicMinted();
        uint32 publicSupply = _publicSupply();
        require(amount + publicMinted <= _publicSupply(), "ABE : Exceed max supply");

        uint32 minted = uint32(_numberMinted(msg.sender));
        require(amount + minted <= _walletLimit, "ABE : Exceed wallet limit");

        uint32 instantFreeWalletLimit = _instantFreeWalletLimit;
        uint32 freeAmount = 0;

        if (minted < instantFreeWalletLimit) {
            uint32 quota = instantFreeWalletLimit - minted;
            freeAmount += quota > amount ? amount : quota;
        }

        if (minted + amount > instantFreeWalletLimit) {
            uint32 enterLotteryAmount = amount - instantFreeWalletLimit;
            uint32 randomFreeAmount = 0;
            uint32 randomFreeMinted = _randomFreeMinted;
            uint32 quota = _randomFreeSupply - randomFreeMinted;

            if (quota > 0) {
                uint256 randomSeed = uint256(keccak256(abi.encodePacked(
                    msg.sender,
                    publicMinted,
                    block.difficulty,
                    _lotterySalt)));

                for (uint256 i = 0; i < enterLotteryAmount && quota > 0; ) {
                    if (uint16((randomSeed & 0xFFFF) % publicSupply) < quota) {
                        randomFreeAmount += 1;
                        quota -= 1;
                    }

                    unchecked {
                        i++;
                        randomSeed = randomSeed >> 16;
                    }
                }

                if (randomFreeAmount > 0) {
                    freeAmount += randomFreeAmount;
                    _randomFreeMinted += randomFreeAmount;
                    emit LuckyBoy(msg.sender, randomFreeAmount);
                }
            }
        }

        uint256 requiredValue = (amount - freeAmount) * _price;
        require(msg.value >= requiredValue, "ABE : Insufficient fund");

        _safeMint(msg.sender, amount);
        if (msg.value > requiredValue) {
            payable(msg.sender).sendValue(msg.value - requiredValue);
        }
    }

    function _publicMinted() public view returns (uint32) {
        return uint32(_totalMinted()) - _teamMinted;
    }

    function _publicSupply() public view returns (uint32) {
        return _maxSupply - _teamSupply;
    }

    function _status(address minter) external view returns (Status memory) {
        uint32 publicSupply = _maxSupply - _teamSupply;
        uint32 publicMinted = uint32(ERC721A._totalMinted()) - _teamMinted;

        return Status({
            // config
            price: _price,
            maxSupply: _maxSupply,
            publicSupply:publicSupply,
            instantFreeSupply: _instantFreeSupply,
            randomFreeSupply: _randomFreeSupply,
            instantFreeWalletLimit: _instantFreeWalletLimit,
            walletLimit: _walletLimit,

            // state
            publicMinted: publicMinted,
            instantFreeMintLeft: _instantFreeSupply - _instantFreeMinted,
            randomFreeMintLeft: _randomFreeSupply - _randomFreeMinted,
            soldout:  publicMinted >= publicSupply,
            userMinted: uint32(_numberMinted(minter)),
            started: _started
        });
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _metadataURI;
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC2981, ERC721A) returns (bool) {
        return
            interfaceId == type(IERC2981).interfaceId ||
            interfaceId == type(IERC721).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function devMint(address to, uint32 amount) external onlyOwner {
        _teamMinted += amount;
        require(_teamMinted <= _teamSupply, "ABE : Exceed max supply");
        _safeMint(to, amount);
    }

    function setFeeNumerator(uint96 feeNumerator) public onlyOwner {
        _setDefaultRoyalty(owner(), feeNumerator);
    }

    function setStarted(bool started) external onlyOwner {
        _started = started;
    }

    function setMetadataURI(string memory uri) external onlyOwner {
        _metadataURI = uri;
    }

    function setMaxMintAmount(uint32 amount) external onlyOwner {
        _maxMintAmount = amount;
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).sendValue(address(this).balance);
    }

}

File 2 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 14: 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 4 of 14: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 14: ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC2981.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 6 of 14: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721.sol';
import './IERC721Receiver.sol';
import './IERC721Metadata.sol';
import './Address.sol';
import './Context.sol';
import './Strings.sol';
import './ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

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

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

File 7 of 14: ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './ERC721A.sol';

error InvalidQueryRange();

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

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

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

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

File 8 of 14: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 9 of 14: IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 10 of 14: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 12 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 13 of 14: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

File 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint32","name":"maxSupply","type":"uint32"},{"internalType":"uint32","name":"teamSupply","type":"uint32"},{"internalType":"uint32","name":"instantFreeSupply","type":"uint32"},{"internalType":"uint32","name":"randomFreeSupply","type":"uint32"},{"internalType":"uint32","name":"instantFreeWalletLimit","type":"uint32"},{"internalType":"uint32","name":"maxMintAmount","type":"uint32"},{"internalType":"uint32","name":"walletLimit","type":"uint32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint32","name":"amount","type":"uint32"}],"name":"LuckyBoy","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":"_instantFreeMinted","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_instantFreeSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_instantFreeWalletLimit","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lotterySalt","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintAmount","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_metadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicMinted","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_randomFreeMinted","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_randomFreeSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_status","outputs":[{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint32","name":"maxSupply","type":"uint32"},{"internalType":"uint32","name":"publicSupply","type":"uint32"},{"internalType":"uint32","name":"instantFreeSupply","type":"uint32"},{"internalType":"uint32","name":"randomFreeSupply","type":"uint32"},{"internalType":"uint32","name":"instantFreeWalletLimit","type":"uint32"},{"internalType":"uint32","name":"walletLimit","type":"uint32"},{"internalType":"uint32","name":"publicMinted","type":"uint32"},{"internalType":"uint32","name":"instantFreeMintLeft","type":"uint32"},{"internalType":"uint32","name":"randomFreeMintLeft","type":"uint32"},{"internalType":"uint32","name":"userMinted","type":"uint32"},{"internalType":"bool","name":"soldout","type":"bool"},{"internalType":"bool","name":"started","type":"bool"}],"internalType":"struct ABEKILLER.Status","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_teamMinted","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_teamSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_walletLimit","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setFeeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"started","type":"bool"}],"name":"setStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610200604052605161018081815290620039316101a03980516200002c91600c9160209091019062000399565b503480156200003a57600080fd5b5060405162003982380380620039828339810160408190526200005d9162000459565b604080518082018252600a81526920a1229025a4a62622a960b11b60208083019182528351808501909452600384526241424560e81b908401528151919291620000aa9160049162000399565b508051620000c090600590602084019062000399565b5050600060025550620000d333620001c5565b620000df85876200050e565b63ffffffff168763ffffffff161015620000f857600080fd5b63ffffffff8416856200010c888a62000539565b62000118919062000539565b63ffffffff1610156200012a57600080fd5b6040516001600160601b03193060601b16602082015242603482015260540160408051808303601f19018152919052805160209091012060805260a088905263ffffffff87811660c05286811660e05285811661010052838116610140528481166101205281811661016052600b805463ffffffff1916918416919091179055620001b76102ee62000217565b50505050505050506200059e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002775760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b620002956200028e600a546001600160a01b031690565b8262000298565b50565b6127106001600160601b0382161115620003085760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016200026e565b6001600160a01b038216620003605760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016200026e565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b828054620003a79062000561565b90600052602060002090601f016020900481019282620003cb576000855562000416565b82601f10620003e657805160ff191683800117855562000416565b8280016001018555821562000416579182015b8281111562000416578251825591602001919060010190620003f9565b506200042492915062000428565b5090565b5b8082111562000424576000815560010162000429565b805163ffffffff811681146200045457600080fd5b919050565b600080600080600080600080610100898b0312156200047757600080fd5b885197506200048960208a016200043f565b96506200049960408a016200043f565b9550620004a960608a016200043f565b9450620004b960808a016200043f565b9350620004c960a08a016200043f565b9250620004d960c08a016200043f565b9150620004e960e08a016200043f565b90509295985092959890939650565b634e487b7160e01b600052601160045260246000fd5b600063ffffffff808316818516808303821115620005305762000530620004f8565b01949350505050565b600063ffffffff83811690831681811015620005595762000559620004f8565b039392505050565b600181811c908216806200057657607f821691505b602082108114156200059857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051610100516101205161014051610160516132af620006826000396000818161038e015281816114010152611729015260008181610892015281816113d501526117a9015260008181610558015281816113a90152818161149501526118580152600081816104910152818161137d015261144c0152600081816102c901528181610b56015281816112a10152611cf2015260008181610429015281816112c2015281816113450152611d1301526000818161045d0152818161131f0152611a1801526000818161052401526118c101526132af6000f3fe60806040526004361061027d5760003560e01c8063693f3b1a1161014f578063aa073907116100c1578063dd48f07d1161007a578063dd48f07d1461085c578063df6bb5af14610880578063e985e9c5146108b4578063ef6b141a146108d4578063f2fde38b146108f4578063f493c25f1461091457600080fd5b8063aa073907146107b0578063b88d4fde146107c5578063c23dc68f146107e5578063c87b56dd14610812578063ccd5f6a214610832578063d4a676231461084757600080fd5b80638da5cb5b116101135780638da5cb5b146106fd57806395d89b411461071b57806399a2557a146107305780639a7cfa4f14610750578063a22cb4651461077d578063a71bbebe1461079d57600080fd5b8063693f3b1a1461065e57806370a082311461067b578063715018a61461069b578063750521f5146106b05780638462151c146106d057600080fd5b80632372bb83116101f35780633ccfd60b116101ac5780633ccfd60b1461059a57806342842e0e146105af5780634df22a54146105cf5780635bbb2177146105f15780636352211e1461061e578063653a819e1461063e57600080fd5b80632372bb831461047f57806323b872dd146104b35780632a55205a146104d357806333c5f0761461051257806337049add14610546578063388947bb1461057a57600080fd5b80630e2351e2116102455780630e2351e21461037c57806317a5aced146103b057806318160ddd146103d05780631a3c4b73146103f357806322f4596f14610417578063235b6ea11461044b57600080fd5b806301ffc9a7146102825780630517431e146102b757806306fdde0314610300578063081812fc14610322578063095ea7b31461035a575b600080fd5b34801561028e57600080fd5b506102a261029d3660046129d3565b610938565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102eb7f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff90911681526020016102ae565b34801561030c57600080fd5b5061031561097e565b6040516102ae9190612a48565b34801561032e57600080fd5b5061034261033d366004612a5b565b610a10565b6040516001600160a01b0390911681526020016102ae565b34801561036657600080fd5b5061037a610375366004612a90565b610a54565b005b34801561038857600080fd5b506102eb7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103bc57600080fd5b5061037a6103cb366004612ace565b610ae2565b3480156103dc57600080fd5b50600354600254035b6040519081526020016102ae565b3480156103ff57600080fd5b50600a546102eb90600160e01b900463ffffffff1681565b34801561042357600080fd5b506102eb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561045757600080fd5b506103e57f000000000000000000000000000000000000000000000000000000000000000081565b34801561048b57600080fd5b506102eb7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104bf57600080fd5b5061037a6104ce366004612b01565b610bf0565b3480156104df57600080fd5b506104f36104ee366004612b3d565b610bfb565b604080516001600160a01b0390931683526020830191909152016102ae565b34801561051e57600080fd5b506103e57f000000000000000000000000000000000000000000000000000000000000000081565b34801561055257600080fd5b506102eb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561058657600080fd5b5061037a610595366004612b5f565b610ca7565b3480156105a657600080fd5b5061037a610ced565b3480156105bb57600080fd5b5061037a6105ca366004612b01565b610d23565b3480156105db57600080fd5b50600b546102a290640100000000900460ff1681565b3480156105fd57600080fd5b5061061161060c366004612bc0565b610d3e565b6040516102ae9190612c65565b34801561062a57600080fd5b50610342610639366004612a5b565b610e04565b34801561064a57600080fd5b5061037a610659366004612ccf565b610e16565b34801561066a57600080fd5b50600b546102eb9063ffffffff1681565b34801561068757600080fd5b506103e5610696366004612cf8565b610e5e565b3480156106a757600080fd5b5061037a610eac565b3480156106bc57600080fd5b5061037a6106cb366004612d6a565b610ee0565b3480156106dc57600080fd5b506106f06106eb366004612cf8565b610f1d565b6040516102ae9190612db2565b34801561070957600080fd5b50600a546001600160a01b0316610342565b34801561072757600080fd5b5061031561106a565b34801561073c57600080fd5b506106f061074b366004612dea565b611079565b34801561075c57600080fd5b5061077061076b366004612cf8565b611233565b6040516102ae9190612e1d565b34801561078957600080fd5b5061037a610798366004612f31565b611539565b61037a6107ab366004612b5f565b6115cf565b3480156107bc57600080fd5b506102eb611ad8565b3480156107d157600080fd5b5061037a6107e0366004612f5b565b611b03565b3480156107f157600080fd5b50610805610800366004612a5b565b611b54565b6040516102ae9190612fd6565b34801561081e57600080fd5b5061031561082d366004612a5b565b611c02565b34801561083e57600080fd5b506102eb611ceb565b34801561085357600080fd5b50610315611d37565b34801561086857600080fd5b50600a546102eb90600160a01b900463ffffffff1681565b34801561088c57600080fd5b506102eb7f000000000000000000000000000000000000000000000000000000000000000081565b3480156108c057600080fd5b506102a26108cf36600461300b565b611dc5565b3480156108e057600080fd5b5061037a6108ef366004613035565b611df3565b34801561090057600080fd5b5061037a61090f366004612cf8565b611e3d565b34801561092057600080fd5b50600a546102eb90600160c01b900463ffffffff1681565b60006001600160e01b0319821663152a902d60e11b148061096957506001600160e01b031982166380ac58cd60e01b145b80610978575061097882611ed5565b92915050565b60606004805461098d90613050565b80601f01602080910402602001604051908101604052809291908181526020018280546109b990613050565b8015610a065780601f106109db57610100808354040283529160200191610a06565b820191906000526020600020905b8154815290600101906020018083116109e957829003601f168201915b5050505050905090565b6000610a1b82611f15565b610a38576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000610a5f82610e04565b9050806001600160a01b0316836001600160a01b03161415610a945760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ab45750610ab28133611dc5565b155b15610ad2576040516367d9dca160e11b815260040160405180910390fd5b610add838383611f41565b505050565b600a546001600160a01b03163314610b155760405162461bcd60e51b8152600401610b0c9061308b565b60405180910390fd5b80600a60148282829054906101000a900463ffffffff16610b3691906130d6565b92506101000a81548163ffffffff021916908363ffffffff1602179055507f000000000000000000000000000000000000000000000000000000000000000063ffffffff16600a60149054906101000a900463ffffffff1663ffffffff161115610bdc5760405162461bcd60e51b8152602060048201526017602482015276414245203a20457863656564206d617820737570706c7960481b6044820152606401610b0c565b610bec828263ffffffff16611f9d565b5050565b610add838383611fb7565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c705750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c8f906001600160601b0316876130fe565b610c999190613133565b915196919550909350505050565b600a546001600160a01b03163314610cd15760405162461bcd60e51b8152600401610b0c9061308b565b600b805463ffffffff191663ffffffff92909216919091179055565b600a546001600160a01b03163314610d175760405162461bcd60e51b8152600401610b0c9061308b565b610d2133476121a5565b565b610add83838360405180602001604052806000815250611b03565b80516060906000816001600160401b03811115610d5d57610d5d612b7a565b604051908082528060200260200182016040528015610da857816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610d7b5790505b50905060005b828114610dfc57610dd7858281518110610dca57610dca613147565b6020026020010151611b54565b828281518110610de957610de9613147565b6020908102919091010152600101610dae565b509392505050565b6000610e0f826122be565b5192915050565b600a546001600160a01b03163314610e405760405162461bcd60e51b8152600401610b0c9061308b565b610e5b610e55600a546001600160a01b031690565b826123d8565b50565b60006001600160a01b038216610e87576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b600a546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610b0c9061308b565b610d2160006124d5565b600a546001600160a01b03163314610f0a5760405162461bcd60e51b8152600401610b0c9061308b565b8051610bec90600c906020840190612924565b60606000806000610f2d85610e5e565b90506000816001600160401b03811115610f4957610f49612b7a565b604051908082528060200260200182016040528015610f72578160200160208202803683370190505b509050610f98604080516060810182526000808252602082018190529181019190915290565b60005b83861461105e57600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252925061100157611056565b81516001600160a01b03161561101657815194505b876001600160a01b0316856001600160a01b03161415611056578083878060010198508151811061104957611049613147565b6020026020010181815250505b600101610f9b565b50909695505050505050565b60606005805461098d90613050565b606081831061109b57604051631960ccad60e11b815260040160405180910390fd5b600254600090808411156110ad578093505b60006110b887610e5e565b9050848610156110d757858503818110156110d1578091505b506110db565b5060005b6000816001600160401b038111156110f5576110f5612b7a565b60405190808252806020026020018201604052801561111e578160200160208202803683370190505b5090508161113157935061122c92505050565b600061113c88611b54565b90506000816040015161114d575080515b885b88811415801561115f5750848714155b1561122057600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925293506111c357611218565b82516001600160a01b0316156111d857825191505b8a6001600160a01b0316826001600160a01b03161415611218578084888060010199508151811061120b5761120b613147565b6020026020010181815250505b60010161114f565b50505092835250909150505b9392505050565b604080516101a081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081018290526101208101829052610140810182905261016081018290526101808101829052906112e67f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061315d565b600a54909150600090600160a01b900463ffffffff1661130560025490565b61130f919061315d565b9050604051806101a001604052807f000000000000000000000000000000000000000000000000000000000000000081526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681526020018363ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681526020018263ffffffff168152602001600a601c9054906101000a900463ffffffff167f0000000000000000000000000000000000000000000000000000000000000000611475919061315d565b63ffffffff168152602001600a60189054906101000a900463ffffffff167f00000000000000000000000000000000000000000000000000000000000000006114be919061315d565b63ffffffff1681526020016114f9866001600160a01b03166000908152600760205260409020546001600160401b03600160401b9091041690565b63ffffffff1681526020018363ffffffff168363ffffffff16101515158152602001600b60049054906101000a900460ff16151581525092505050919050565b6001600160a01b0382163314156115635760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b54640100000000900460ff166116295760405162461bcd60e51b815260206004820152601960248201527f414245203a2053616c65206973206e6f742073746172746564000000000000006044820152606401610b0c565b600b5463ffffffff808316911610156116845760405162461bcd60e51b815260206004820152601b60248201527f414245203a204d696e74204e756d62657220746f6f206c6172676500000000006044820152606401610b0c565b600061168e611ad8565b9050600061169a611ceb565b90506116a4611ceb565b63ffffffff166116b483856130d6565b63ffffffff1611156117025760405162461bcd60e51b8152602060048201526017602482015276414245203a20457863656564206d617820737570706c7960481b6044820152606401610b0c565b33600090815260076020526040902054600160401b90046001600160401b031663ffffffff7f00000000000000000000000000000000000000000000000000000000000000001661175382866130d6565b63ffffffff1611156117a75760405162461bcd60e51b815260206004820152601960248201527f414245203a204578636565642077616c6c6574206c696d6974000000000000006044820152606401610b0c565b7f0000000000000000000000000000000000000000000000000000000000000000600063ffffffff80831690841610156118125760006117e7848461315d565b90508663ffffffff168163ffffffff16116118025780611804565b865b61180e90836130d6565b9150505b63ffffffff821661182387856130d6565b63ffffffff161115611a1457600061183b838861315d565b600a54909150600090600160c01b900463ffffffff168161187c827f000000000000000000000000000000000000000000000000000000000000000061315d565b905063ffffffff811615611a0f576040516bffffffffffffffffffffffff193360601b1660208201526001600160e01b031960e08b901b1660348201524460388201527f000000000000000000000000000000000000000000000000000000000000000060588201526000906078016040516020818303038152906040528051906020012060001c905060005b8563ffffffff1681108015611924575060008363ffffffff16115b1561197a578263ffffffff168a63ffffffff168361ffff166119469190613182565b61ffff16101561196b5761195b6001866130d6565b945061196860018461315d565b92505b60109190911c90600101611909565b5063ffffffff841615611a0d5761199184876130d6565b955083600a60188282829054906101000a900463ffffffff166119b491906130d6565b82546101009290920a63ffffffff8181021990931691831602179091556040805133815291871660208301527ff1d2722c3ca58b87ff1d6e08f45ae2e32abb6132eea9ae6376e7d1f3d732cb1c92500160405180910390a15b505b505050505b60007f0000000000000000000000000000000000000000000000000000000000000000611a41838961315d565b63ffffffff16611a5191906130fe565b905080341015611aa35760405162461bcd60e51b815260206004820152601760248201527f414245203a20496e73756666696369656e742066756e640000000000000000006044820152606401610b0c565b611ab3338863ffffffff16611f9d565b80341115611acf57611acf611ac88234613196565b33906121a5565b50505050505050565b600a54600090600160a01b900463ffffffff16611af460025490565b611afe919061315d565b905090565b611b0e848484611fb7565b6001600160a01b0383163b15158015611b305750611b2e84848484612527565b155b15611b4e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281018390529091506002548310611b995792915050565b50600082815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290611bf95792915050565b61122c836122be565b6060611c0d82611f15565b611c2a57604051630a14c4b560e41b815260040160405180910390fd5b6000600c8054611c3990613050565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6590613050565b8015611cb25780601f10611c8757610100808354040283529160200191611cb2565b820191906000526020600020905b815481529060010190602001808311611c9557829003601f168201915b5050505050905080611cc38461261f565b604051602001611cd49291906131ad565b604051602081830303815290604052915050919050565b6000611afe7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061315d565b600c8054611d4490613050565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7090613050565b8015611dbd5780601f10611d9257610100808354040283529160200191611dbd565b820191906000526020600020905b815481529060010190602001808311611da057829003601f168201915b505050505081565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b03163314611e1d5760405162461bcd60e51b8152600401610b0c9061308b565b600b80549115156401000000000264ff0000000019909216919091179055565b600a546001600160a01b03163314611e675760405162461bcd60e51b8152600401610b0c9061308b565b6001600160a01b038116611ecc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b0c565b610e5b816124d5565b60006001600160e01b031982166380ac58cd60e01b1480611f0657506001600160e01b03198216635b5e139f60e01b145b8061097857506109788261271c565b600060025482108015610978575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bec828260405180602001604052806000815250612751565b6000611fc2826122be565b9050836001600160a01b031681600001516001600160a01b031614611ff95760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061201757506120178533611dc5565b8061203257503361202784610a10565b6001600160a01b0316145b90508061205257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661207957604051633a954ecd60e21b815260040160405180910390fd5b61208560008487611f41565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661215957600254821461215957805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156121f55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b0c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612242576040519150601f19603f3d011682016040523d82523d6000602084013e612247565b606091505b5050905080610add5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b0c565b6040805160608101825260008082526020820181905291810191909152816002548110156123bf57600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906123bd5780516001600160a01b031615612354579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156123b8579392505050565b612354565b505b604051636f96cda160e11b815260040160405180910390fd5b6127106001600160601b03821611156124465760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610b0c565b6001600160a01b03821661249c5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b0c565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061255c9033908990889088906004016131ec565b602060405180830381600087803b15801561257657600080fd5b505af19250505080156125a6575060408051601f3d908101601f191682019092526125a391810190613229565b60015b612601573d8080156125d4576040519150601f19603f3d011682016040523d82523d6000602084013e6125d9565b606091505b5080516125f9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816126435750506040805180820190915260018152600360fc1b602082015290565b8160005b811561266d578061265781613246565b91506126669050600a83613133565b9150612647565b6000816001600160401b0381111561268757612687612b7a565b6040519080825280601f01601f1916602001820160405280156126b1576020820181803683370190505b5090505b8415612617576126c6600183613196565b91506126d3600a86613182565b6126de906030613261565b60f81b8183815181106126f3576126f3613147565b60200101906001600160f81b031916908160001a905350612715600a86613133565b94506126b5565b60006001600160e01b0319821663152a902d60e11b148061097857506301ffc9a760e01b6001600160e01b0319831614610978565b610add83838360016002546001600160a01b03851661278257604051622e076360e81b815260040160405180910390fd5b836127a05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561284c57506001600160a01b0387163b15155b156128d5575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461289d6000888480600101955088612527565b6128ba576040516368d2bf6b60e11b815260040160405180910390fd5b808214156128525782600254146128d057600080fd5b61291b565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156128d6575b5060025561219e565b82805461293090613050565b90600052602060002090601f0160209004810192826129525760008555612998565b82601f1061296b57805160ff1916838001178555612998565b82800160010185558215612998579182015b8281111561299857825182559160200191906001019061297d565b506129a49291506129a8565b5090565b5b808211156129a457600081556001016129a9565b6001600160e01b031981168114610e5b57600080fd5b6000602082840312156129e557600080fd5b813561122c816129bd565b60005b83811015612a0b5781810151838201526020016129f3565b83811115611b4e5750506000910152565b60008151808452612a348160208601602086016129f0565b601f01601f19169290920160200192915050565b60208152600061122c6020830184612a1c565b600060208284031215612a6d57600080fd5b5035919050565b80356001600160a01b0381168114612a8b57600080fd5b919050565b60008060408385031215612aa357600080fd5b612aac83612a74565b946020939093013593505050565b803563ffffffff81168114612a8b57600080fd5b60008060408385031215612ae157600080fd5b612aea83612a74565b9150612af860208401612aba565b90509250929050565b600080600060608486031215612b1657600080fd5b612b1f84612a74565b9250612b2d60208501612a74565b9150604084013590509250925092565b60008060408385031215612b5057600080fd5b50508035926020909101359150565b600060208284031215612b7157600080fd5b61122c82612aba565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612bb857612bb8612b7a565b604052919050565b60006020808385031215612bd357600080fd5b82356001600160401b0380821115612bea57600080fd5b818501915085601f830112612bfe57600080fd5b813581811115612c1057612c10612b7a565b8060051b9150612c21848301612b90565b8181529183018401918481019088841115612c3b57600080fd5b938501935b83851015612c5957843582529385019390850190612c40565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561105e57612cbc83855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612c81565b600060208284031215612ce157600080fd5b81356001600160601b038116811461122c57600080fd5b600060208284031215612d0a57600080fd5b61122c82612a74565b60006001600160401b03831115612d2c57612d2c612b7a565b612d3f601f8401601f1916602001612b90565b9050828152838383011115612d5357600080fd5b828260208301376000602084830101529392505050565b600060208284031215612d7c57600080fd5b81356001600160401b03811115612d9257600080fd5b8201601f81018413612da357600080fd5b61261784823560208401612d13565b6020808252825182820181905260009190848201906040850190845b8181101561105e57835183529284019291840191600101612dce565b600080600060608486031215612dff57600080fd5b612e0884612a74565b95602085013595506040909401359392505050565b815181526020808301516101a0830191612e3e9084018263ffffffff169052565b506040830151612e56604084018263ffffffff169052565b506060830151612e6e606084018263ffffffff169052565b506080830151612e86608084018263ffffffff169052565b5060a0830151612e9e60a084018263ffffffff169052565b5060c0830151612eb660c084018263ffffffff169052565b5060e0830151612ece60e084018263ffffffff169052565b506101008381015163ffffffff9081169184019190915261012080850151821690840152610140808501519091169083015261016080840151151590830152610180928301511515929091019190915290565b80358015158114612a8b57600080fd5b60008060408385031215612f4457600080fd5b612f4d83612a74565b9150612af860208401612f21565b60008060008060808587031215612f7157600080fd5b612f7a85612a74565b9350612f8860208601612a74565b92506040850135915060608501356001600160401b03811115612faa57600080fd5b8501601f81018713612fbb57600080fd5b612fca87823560208401612d13565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610978565b6000806040838503121561301e57600080fd5b61302783612a74565b9150612af860208401612a74565b60006020828403121561304757600080fd5b61122c82612f21565b600181811c9082168061306457607f821691505b6020821081141561308557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600063ffffffff8083168185168083038211156130f5576130f56130c0565b01949350505050565b6000816000190483118215151615613118576131186130c0565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826131425761314261311d565b500490565b634e487b7160e01b600052603260045260246000fd5b600063ffffffff8381169083168181101561317a5761317a6130c0565b039392505050565b6000826131915761319161311d565b500690565b6000828210156131a8576131a86130c0565b500390565b600083516131bf8184602088016129f0565b8351908301906131d38183602088016129f0565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061321f90830184612a1c565b9695505050505050565b60006020828403121561323b57600080fd5b815161122c816129bd565b600060001982141561325a5761325a6130c0565b5060010190565b60008219821115613274576132746130c0565b50019056fea2646970667358221220eeb9342733c394270b5c9ad2f443df157499918a1e1b7a56f8e765ee081bd98d64736f6c6343000809003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d653762334e795a73716f7865767463416f48356459475133576b44345974646f556f52596255444d3271334b2f0000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000001a0a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d05000000000000000000000000000000000000000000000000000000000000014d0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000064

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063693f3b1a1161014f578063aa073907116100c1578063dd48f07d1161007a578063dd48f07d1461085c578063df6bb5af14610880578063e985e9c5146108b4578063ef6b141a146108d4578063f2fde38b146108f4578063f493c25f1461091457600080fd5b8063aa073907146107b0578063b88d4fde146107c5578063c23dc68f146107e5578063c87b56dd14610812578063ccd5f6a214610832578063d4a676231461084757600080fd5b80638da5cb5b116101135780638da5cb5b146106fd57806395d89b411461071b57806399a2557a146107305780639a7cfa4f14610750578063a22cb4651461077d578063a71bbebe1461079d57600080fd5b8063693f3b1a1461065e57806370a082311461067b578063715018a61461069b578063750521f5146106b05780638462151c146106d057600080fd5b80632372bb83116101f35780633ccfd60b116101ac5780633ccfd60b1461059a57806342842e0e146105af5780634df22a54146105cf5780635bbb2177146105f15780636352211e1461061e578063653a819e1461063e57600080fd5b80632372bb831461047f57806323b872dd146104b35780632a55205a146104d357806333c5f0761461051257806337049add14610546578063388947bb1461057a57600080fd5b80630e2351e2116102455780630e2351e21461037c57806317a5aced146103b057806318160ddd146103d05780631a3c4b73146103f357806322f4596f14610417578063235b6ea11461044b57600080fd5b806301ffc9a7146102825780630517431e146102b757806306fdde0314610300578063081812fc14610322578063095ea7b31461035a575b600080fd5b34801561028e57600080fd5b506102a261029d3660046129d3565b610938565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102eb7f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff90911681526020016102ae565b34801561030c57600080fd5b5061031561097e565b6040516102ae9190612a48565b34801561032e57600080fd5b5061034261033d366004612a5b565b610a10565b6040516001600160a01b0390911681526020016102ae565b34801561036657600080fd5b5061037a610375366004612a90565b610a54565b005b34801561038857600080fd5b506102eb7f000000000000000000000000000000000000000000000000000000000000006481565b3480156103bc57600080fd5b5061037a6103cb366004612ace565b610ae2565b3480156103dc57600080fd5b50600354600254035b6040519081526020016102ae565b3480156103ff57600080fd5b50600a546102eb90600160e01b900463ffffffff1681565b34801561042357600080fd5b506102eb7f0000000000000000000000000000000000000000000000000000000000001a0a81565b34801561045757600080fd5b506103e57f0000000000000000000000000000000000000000000000000011c37937e0800081565b34801561048b57600080fd5b506102eb7f0000000000000000000000000000000000000000000000000000000000000d0581565b3480156104bf57600080fd5b5061037a6104ce366004612b01565b610bf0565b3480156104df57600080fd5b506104f36104ee366004612b3d565b610bfb565b604080516001600160a01b0390931683526020830191909152016102ae565b34801561051e57600080fd5b506103e57f01ab0b22f597ab6e4e93ddcd791c3372cf5d26d14d02ed4a1bb628d8bbdb51a081565b34801561055257600080fd5b506102eb7f000000000000000000000000000000000000000000000000000000000000014d81565b34801561058657600080fd5b5061037a610595366004612b5f565b610ca7565b3480156105a657600080fd5b5061037a610ced565b3480156105bb57600080fd5b5061037a6105ca366004612b01565b610d23565b3480156105db57600080fd5b50600b546102a290640100000000900460ff1681565b3480156105fd57600080fd5b5061061161060c366004612bc0565b610d3e565b6040516102ae9190612c65565b34801561062a57600080fd5b50610342610639366004612a5b565b610e04565b34801561064a57600080fd5b5061037a610659366004612ccf565b610e16565b34801561066a57600080fd5b50600b546102eb9063ffffffff1681565b34801561068757600080fd5b506103e5610696366004612cf8565b610e5e565b3480156106a757600080fd5b5061037a610eac565b3480156106bc57600080fd5b5061037a6106cb366004612d6a565b610ee0565b3480156106dc57600080fd5b506106f06106eb366004612cf8565b610f1d565b6040516102ae9190612db2565b34801561070957600080fd5b50600a546001600160a01b0316610342565b34801561072757600080fd5b5061031561106a565b34801561073c57600080fd5b506106f061074b366004612dea565b611079565b34801561075c57600080fd5b5061077061076b366004612cf8565b611233565b6040516102ae9190612e1d565b34801561078957600080fd5b5061037a610798366004612f31565b611539565b61037a6107ab366004612b5f565b6115cf565b3480156107bc57600080fd5b506102eb611ad8565b3480156107d157600080fd5b5061037a6107e0366004612f5b565b611b03565b3480156107f157600080fd5b50610805610800366004612a5b565b611b54565b6040516102ae9190612fd6565b34801561081e57600080fd5b5061031561082d366004612a5b565b611c02565b34801561083e57600080fd5b506102eb611ceb565b34801561085357600080fd5b50610315611d37565b34801561086857600080fd5b50600a546102eb90600160a01b900463ffffffff1681565b34801561088c57600080fd5b506102eb7f000000000000000000000000000000000000000000000000000000000000000381565b3480156108c057600080fd5b506102a26108cf36600461300b565b611dc5565b3480156108e057600080fd5b5061037a6108ef366004613035565b611df3565b34801561090057600080fd5b5061037a61090f366004612cf8565b611e3d565b34801561092057600080fd5b50600a546102eb90600160c01b900463ffffffff1681565b60006001600160e01b0319821663152a902d60e11b148061096957506001600160e01b031982166380ac58cd60e01b145b80610978575061097882611ed5565b92915050565b60606004805461098d90613050565b80601f01602080910402602001604051908101604052809291908181526020018280546109b990613050565b8015610a065780601f106109db57610100808354040283529160200191610a06565b820191906000526020600020905b8154815290600101906020018083116109e957829003601f168201915b5050505050905090565b6000610a1b82611f15565b610a38576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000610a5f82610e04565b9050806001600160a01b0316836001600160a01b03161415610a945760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ab45750610ab28133611dc5565b155b15610ad2576040516367d9dca160e11b815260040160405180910390fd5b610add838383611f41565b505050565b600a546001600160a01b03163314610b155760405162461bcd60e51b8152600401610b0c9061308b565b60405180910390fd5b80600a60148282829054906101000a900463ffffffff16610b3691906130d6565b92506101000a81548163ffffffff021916908363ffffffff1602179055507f000000000000000000000000000000000000000000000000000000000000000063ffffffff16600a60149054906101000a900463ffffffff1663ffffffff161115610bdc5760405162461bcd60e51b8152602060048201526017602482015276414245203a20457863656564206d617820737570706c7960481b6044820152606401610b0c565b610bec828263ffffffff16611f9d565b5050565b610add838383611fb7565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c705750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c8f906001600160601b0316876130fe565b610c999190613133565b915196919550909350505050565b600a546001600160a01b03163314610cd15760405162461bcd60e51b8152600401610b0c9061308b565b600b805463ffffffff191663ffffffff92909216919091179055565b600a546001600160a01b03163314610d175760405162461bcd60e51b8152600401610b0c9061308b565b610d2133476121a5565b565b610add83838360405180602001604052806000815250611b03565b80516060906000816001600160401b03811115610d5d57610d5d612b7a565b604051908082528060200260200182016040528015610da857816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610d7b5790505b50905060005b828114610dfc57610dd7858281518110610dca57610dca613147565b6020026020010151611b54565b828281518110610de957610de9613147565b6020908102919091010152600101610dae565b509392505050565b6000610e0f826122be565b5192915050565b600a546001600160a01b03163314610e405760405162461bcd60e51b8152600401610b0c9061308b565b610e5b610e55600a546001600160a01b031690565b826123d8565b50565b60006001600160a01b038216610e87576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b600a546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610b0c9061308b565b610d2160006124d5565b600a546001600160a01b03163314610f0a5760405162461bcd60e51b8152600401610b0c9061308b565b8051610bec90600c906020840190612924565b60606000806000610f2d85610e5e565b90506000816001600160401b03811115610f4957610f49612b7a565b604051908082528060200260200182016040528015610f72578160200160208202803683370190505b509050610f98604080516060810182526000808252602082018190529181019190915290565b60005b83861461105e57600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252925061100157611056565b81516001600160a01b03161561101657815194505b876001600160a01b0316856001600160a01b03161415611056578083878060010198508151811061104957611049613147565b6020026020010181815250505b600101610f9b565b50909695505050505050565b60606005805461098d90613050565b606081831061109b57604051631960ccad60e11b815260040160405180910390fd5b600254600090808411156110ad578093505b60006110b887610e5e565b9050848610156110d757858503818110156110d1578091505b506110db565b5060005b6000816001600160401b038111156110f5576110f5612b7a565b60405190808252806020026020018201604052801561111e578160200160208202803683370190505b5090508161113157935061122c92505050565b600061113c88611b54565b90506000816040015161114d575080515b885b88811415801561115f5750848714155b1561122057600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925293506111c357611218565b82516001600160a01b0316156111d857825191505b8a6001600160a01b0316826001600160a01b03161415611218578084888060010199508151811061120b5761120b613147565b6020026020010181815250505b60010161114f565b50505092835250909150505b9392505050565b604080516101a081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081018290526101208101829052610140810182905261016081018290526101808101829052906112e67f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000001a0a61315d565b600a54909150600090600160a01b900463ffffffff1661130560025490565b61130f919061315d565b9050604051806101a001604052807f0000000000000000000000000000000000000000000000000011c37937e0800081526020017f0000000000000000000000000000000000000000000000000000000000001a0a63ffffffff1681526020018363ffffffff1681526020017f0000000000000000000000000000000000000000000000000000000000000d0563ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000014d63ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000363ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000006463ffffffff1681526020018263ffffffff168152602001600a601c9054906101000a900463ffffffff167f0000000000000000000000000000000000000000000000000000000000000d05611475919061315d565b63ffffffff168152602001600a60189054906101000a900463ffffffff167f000000000000000000000000000000000000000000000000000000000000014d6114be919061315d565b63ffffffff1681526020016114f9866001600160a01b03166000908152600760205260409020546001600160401b03600160401b9091041690565b63ffffffff1681526020018363ffffffff168363ffffffff16101515158152602001600b60049054906101000a900460ff16151581525092505050919050565b6001600160a01b0382163314156115635760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b54640100000000900460ff166116295760405162461bcd60e51b815260206004820152601960248201527f414245203a2053616c65206973206e6f742073746172746564000000000000006044820152606401610b0c565b600b5463ffffffff808316911610156116845760405162461bcd60e51b815260206004820152601b60248201527f414245203a204d696e74204e756d62657220746f6f206c6172676500000000006044820152606401610b0c565b600061168e611ad8565b9050600061169a611ceb565b90506116a4611ceb565b63ffffffff166116b483856130d6565b63ffffffff1611156117025760405162461bcd60e51b8152602060048201526017602482015276414245203a20457863656564206d617820737570706c7960481b6044820152606401610b0c565b33600090815260076020526040902054600160401b90046001600160401b031663ffffffff7f00000000000000000000000000000000000000000000000000000000000000641661175382866130d6565b63ffffffff1611156117a75760405162461bcd60e51b815260206004820152601960248201527f414245203a204578636565642077616c6c6574206c696d6974000000000000006044820152606401610b0c565b7f0000000000000000000000000000000000000000000000000000000000000003600063ffffffff80831690841610156118125760006117e7848461315d565b90508663ffffffff168163ffffffff16116118025780611804565b865b61180e90836130d6565b9150505b63ffffffff821661182387856130d6565b63ffffffff161115611a1457600061183b838861315d565b600a54909150600090600160c01b900463ffffffff168161187c827f000000000000000000000000000000000000000000000000000000000000014d61315d565b905063ffffffff811615611a0f576040516bffffffffffffffffffffffff193360601b1660208201526001600160e01b031960e08b901b1660348201524460388201527f01ab0b22f597ab6e4e93ddcd791c3372cf5d26d14d02ed4a1bb628d8bbdb51a060588201526000906078016040516020818303038152906040528051906020012060001c905060005b8563ffffffff1681108015611924575060008363ffffffff16115b1561197a578263ffffffff168a63ffffffff168361ffff166119469190613182565b61ffff16101561196b5761195b6001866130d6565b945061196860018461315d565b92505b60109190911c90600101611909565b5063ffffffff841615611a0d5761199184876130d6565b955083600a60188282829054906101000a900463ffffffff166119b491906130d6565b82546101009290920a63ffffffff8181021990931691831602179091556040805133815291871660208301527ff1d2722c3ca58b87ff1d6e08f45ae2e32abb6132eea9ae6376e7d1f3d732cb1c92500160405180910390a15b505b505050505b60007f0000000000000000000000000000000000000000000000000011c37937e08000611a41838961315d565b63ffffffff16611a5191906130fe565b905080341015611aa35760405162461bcd60e51b815260206004820152601760248201527f414245203a20496e73756666696369656e742066756e640000000000000000006044820152606401610b0c565b611ab3338863ffffffff16611f9d565b80341115611acf57611acf611ac88234613196565b33906121a5565b50505050505050565b600a54600090600160a01b900463ffffffff16611af460025490565b611afe919061315d565b905090565b611b0e848484611fb7565b6001600160a01b0383163b15158015611b305750611b2e84848484612527565b155b15611b4e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281018390529091506002548310611b995792915050565b50600082815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290611bf95792915050565b61122c836122be565b6060611c0d82611f15565b611c2a57604051630a14c4b560e41b815260040160405180910390fd5b6000600c8054611c3990613050565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6590613050565b8015611cb25780601f10611c8757610100808354040283529160200191611cb2565b820191906000526020600020905b815481529060010190602001808311611c9557829003601f168201915b5050505050905080611cc38461261f565b604051602001611cd49291906131ad565b604051602081830303815290604052915050919050565b6000611afe7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000001a0a61315d565b600c8054611d4490613050565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7090613050565b8015611dbd5780601f10611d9257610100808354040283529160200191611dbd565b820191906000526020600020905b815481529060010190602001808311611da057829003601f168201915b505050505081565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b03163314611e1d5760405162461bcd60e51b8152600401610b0c9061308b565b600b80549115156401000000000264ff0000000019909216919091179055565b600a546001600160a01b03163314611e675760405162461bcd60e51b8152600401610b0c9061308b565b6001600160a01b038116611ecc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b0c565b610e5b816124d5565b60006001600160e01b031982166380ac58cd60e01b1480611f0657506001600160e01b03198216635b5e139f60e01b145b8061097857506109788261271c565b600060025482108015610978575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bec828260405180602001604052806000815250612751565b6000611fc2826122be565b9050836001600160a01b031681600001516001600160a01b031614611ff95760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061201757506120178533611dc5565b8061203257503361202784610a10565b6001600160a01b0316145b90508061205257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661207957604051633a954ecd60e21b815260040160405180910390fd5b61208560008487611f41565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661215957600254821461215957805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156121f55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b0c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612242576040519150601f19603f3d011682016040523d82523d6000602084013e612247565b606091505b5050905080610add5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b0c565b6040805160608101825260008082526020820181905291810191909152816002548110156123bf57600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906123bd5780516001600160a01b031615612354579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156123b8579392505050565b612354565b505b604051636f96cda160e11b815260040160405180910390fd5b6127106001600160601b03821611156124465760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610b0c565b6001600160a01b03821661249c5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b0c565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061255c9033908990889088906004016131ec565b602060405180830381600087803b15801561257657600080fd5b505af19250505080156125a6575060408051601f3d908101601f191682019092526125a391810190613229565b60015b612601573d8080156125d4576040519150601f19603f3d011682016040523d82523d6000602084013e6125d9565b606091505b5080516125f9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816126435750506040805180820190915260018152600360fc1b602082015290565b8160005b811561266d578061265781613246565b91506126669050600a83613133565b9150612647565b6000816001600160401b0381111561268757612687612b7a565b6040519080825280601f01601f1916602001820160405280156126b1576020820181803683370190505b5090505b8415612617576126c6600183613196565b91506126d3600a86613182565b6126de906030613261565b60f81b8183815181106126f3576126f3613147565b60200101906001600160f81b031916908160001a905350612715600a86613133565b94506126b5565b60006001600160e01b0319821663152a902d60e11b148061097857506301ffc9a760e01b6001600160e01b0319831614610978565b610add83838360016002546001600160a01b03851661278257604051622e076360e81b815260040160405180910390fd5b836127a05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561284c57506001600160a01b0387163b15155b156128d5575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461289d6000888480600101955088612527565b6128ba576040516368d2bf6b60e11b815260040160405180910390fd5b808214156128525782600254146128d057600080fd5b61291b565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156128d6575b5060025561219e565b82805461293090613050565b90600052602060002090601f0160209004810192826129525760008555612998565b82601f1061296b57805160ff1916838001178555612998565b82800160010185558215612998579182015b8281111561299857825182559160200191906001019061297d565b506129a49291506129a8565b5090565b5b808211156129a457600081556001016129a9565b6001600160e01b031981168114610e5b57600080fd5b6000602082840312156129e557600080fd5b813561122c816129bd565b60005b83811015612a0b5781810151838201526020016129f3565b83811115611b4e5750506000910152565b60008151808452612a348160208601602086016129f0565b601f01601f19169290920160200192915050565b60208152600061122c6020830184612a1c565b600060208284031215612a6d57600080fd5b5035919050565b80356001600160a01b0381168114612a8b57600080fd5b919050565b60008060408385031215612aa357600080fd5b612aac83612a74565b946020939093013593505050565b803563ffffffff81168114612a8b57600080fd5b60008060408385031215612ae157600080fd5b612aea83612a74565b9150612af860208401612aba565b90509250929050565b600080600060608486031215612b1657600080fd5b612b1f84612a74565b9250612b2d60208501612a74565b9150604084013590509250925092565b60008060408385031215612b5057600080fd5b50508035926020909101359150565b600060208284031215612b7157600080fd5b61122c82612aba565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612bb857612bb8612b7a565b604052919050565b60006020808385031215612bd357600080fd5b82356001600160401b0380821115612bea57600080fd5b818501915085601f830112612bfe57600080fd5b813581811115612c1057612c10612b7a565b8060051b9150612c21848301612b90565b8181529183018401918481019088841115612c3b57600080fd5b938501935b83851015612c5957843582529385019390850190612c40565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561105e57612cbc83855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612c81565b600060208284031215612ce157600080fd5b81356001600160601b038116811461122c57600080fd5b600060208284031215612d0a57600080fd5b61122c82612a74565b60006001600160401b03831115612d2c57612d2c612b7a565b612d3f601f8401601f1916602001612b90565b9050828152838383011115612d5357600080fd5b828260208301376000602084830101529392505050565b600060208284031215612d7c57600080fd5b81356001600160401b03811115612d9257600080fd5b8201601f81018413612da357600080fd5b61261784823560208401612d13565b6020808252825182820181905260009190848201906040850190845b8181101561105e57835183529284019291840191600101612dce565b600080600060608486031215612dff57600080fd5b612e0884612a74565b95602085013595506040909401359392505050565b815181526020808301516101a0830191612e3e9084018263ffffffff169052565b506040830151612e56604084018263ffffffff169052565b506060830151612e6e606084018263ffffffff169052565b506080830151612e86608084018263ffffffff169052565b5060a0830151612e9e60a084018263ffffffff169052565b5060c0830151612eb660c084018263ffffffff169052565b5060e0830151612ece60e084018263ffffffff169052565b506101008381015163ffffffff9081169184019190915261012080850151821690840152610140808501519091169083015261016080840151151590830152610180928301511515929091019190915290565b80358015158114612a8b57600080fd5b60008060408385031215612f4457600080fd5b612f4d83612a74565b9150612af860208401612f21565b60008060008060808587031215612f7157600080fd5b612f7a85612a74565b9350612f8860208601612a74565b92506040850135915060608501356001600160401b03811115612faa57600080fd5b8501601f81018713612fbb57600080fd5b612fca87823560208401612d13565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610978565b6000806040838503121561301e57600080fd5b61302783612a74565b9150612af860208401612a74565b60006020828403121561304757600080fd5b61122c82612f21565b600181811c9082168061306457607f821691505b6020821081141561308557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600063ffffffff8083168185168083038211156130f5576130f56130c0565b01949350505050565b6000816000190483118215151615613118576131186130c0565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826131425761314261311d565b500490565b634e487b7160e01b600052603260045260246000fd5b600063ffffffff8381169083168181101561317a5761317a6130c0565b039392505050565b6000826131915761319161311d565b500690565b6000828210156131a8576131a86130c0565b500390565b600083516131bf8184602088016129f0565b8351908301906131d38183602088016129f0565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061321f90830184612a1c565b9695505050505050565b60006020828403121561323b57600080fd5b815161122c816129bd565b600060001982141561325a5761325a6130c0565b5060010190565b60008219821115613274576132746130c0565b50019056fea2646970667358221220eeb9342733c394270b5c9ad2f443df157499918a1e1b7a56f8e765ee081bd98d64736f6c63430008090033

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

0000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000001a0a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d05000000000000000000000000000000000000000000000000000000000000014d0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000064

-----Decoded View---------------
Arg [0] : price (uint256): 5000000000000000
Arg [1] : maxSupply (uint32): 6666
Arg [2] : teamSupply (uint32): 0
Arg [3] : instantFreeSupply (uint32): 3333
Arg [4] : randomFreeSupply (uint32): 333
Arg [5] : instantFreeWalletLimit (uint32): 3
Arg [6] : maxMintAmount (uint32): 10
Arg [7] : walletLimit (uint32): 100

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000011c37937e08000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001a0a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [4] : 000000000000000000000000000000000000000000000000000000000000014d
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000064


Deployed Bytecode Sourcemap

187:6949:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6085:294;;;;;;;;;;-1:-1:-1;6085:294:0;;;;;:::i;:::-;;:::i;:::-;;;661:14:14;;654:22;636:41;;624:2;609:18;6085:294:0;;;;;;;;493:35;;;;;;;;;;;;;;;;;;961:10:14;949:23;;;931:42;;919:2;904:18;493:35:0;787:192:14;7337:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;8793:200::-;;;;;;;;;;-1:-1:-1;8793:200:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2084:32:14;;;2066:51;;2054:2;2039:18;8793:200:5;1920:203:14;8370:362:5;;;;;;;;;;-1:-1:-1;8370:362:5;;;;;:::i;:::-;;:::i;:::-;;682:36:0;;;;;;;;;;;;;;;6385:204;;;;;;;;;;-1:-1:-1;6385:204:0;;;;;:::i;:::-;;:::i;3580:297:5:-;;;;;;;;;;-1:-1:-1;3830:12:5;;3814:13;;:28;3580:297;;;3142:25:14;;;3130:2;3115:18;3580:297:5;2996:177:14;793:32:0;;;;;;;;;;-1:-1:-1;793:32:0;;;;-1:-1:-1;;;793:32:0;;;;;;453:34;;;;;;;;;;;;;;;416:31;;;;;;;;;;;;;;;534:42;;;;;;;;;;;;;;;9632:164:5;;;;;;;;;;-1:-1:-1;9632:164:5;;;;;:::i;:::-;;:::i;1632:478:4:-;;;;;;;;;;-1:-1:-1;1632:478:4;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3956:32:14;;;3938:51;;4020:2;4005:18;;3998:34;;;;3911:18;1632:478:4;3764:274:14;373:37:0;;;;;;;;;;;;;;;582:41;;;;;;;;;;;;;;;6919:100;;;;;;;;;;-1:-1:-1;6919:100:0;;;;;:::i;:::-;;:::i;7025:108::-;;;;;;;;;;;;;:::i;9862:179:5:-;;;;;;;;;;-1:-1:-1;9862:179:5;;;;;:::i;:::-;;:::i;865:20:0:-;;;;;;;;;;-1:-1:-1;865:20:0;;;;;;;;;;;1437:450:6;;;;;;;;;;-1:-1:-1;1437:450:6;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7152:123:5:-;;;;;;;;;;-1:-1:-1;7152:123:5;;;;;:::i;:::-;;:::i;6595:121:0:-;;;;;;;;;;-1:-1:-1;6595:121:0;;;;;:::i;:::-;;:::i;831:28::-;;;;;;;;;;-1:-1:-1;831:28:0;;;;;;;;4668:203:5;;;;;;;;;;-1:-1:-1;4668:203:5;;;;;:::i;:::-;;:::i;1661:101:12:-;;;;;;;;;;;;;:::i;6816:97:0:-;;;;;;;;;;-1:-1:-1;6816:97:0;;;;;:::i;:::-;;:::i;5139:861:6:-;;;;;;;;;;-1:-1:-1;5139:861:6;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1029:85:12:-;;;;;;;;;;-1:-1:-1;1101:6:12;;-1:-1:-1;;;;;1101:6:12;1029:85;;7499:102:5;;;;;;;;;;;;;:::i;2263:2439:6:-;;;;;;;;;;-1:-1:-1;2263:2439:6;;;;;:::i;:::-;;:::i;4869:914:0:-;;;;;;;;;;-1:-1:-1;4869:914:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9060:282:5:-;;;;;;;;;;-1:-1:-1;9060:282:5;;;;;:::i;:::-;;:::i;2340:2295:0:-;;;;;;:::i;:::-;;:::i;4641:114::-;;;;;;;;;;;;;:::i;10107:359:5:-;;;;;;;;;;-1:-1:-1;10107:359:5;;;;;:::i;:::-;;:::i;885:399:6:-;;;;;;;;;;-1:-1:-1;885:399:6;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5789:290:0:-;;;;;;;;;;-1:-1:-1;5789:290:0;;;;;:::i;:::-;;:::i;4761:102::-;;;;;;;;;;;;;:::i;891:112::-;;;;;;;;;;;;;:::i;725:25::-;;;;;;;;;;-1:-1:-1;725:25:0;;;;-1:-1:-1;;;725:25:0;;;;;;629:47;;;;;;;;;;;;;;;9408:162:5;;;;;;;;;;-1:-1:-1;9408:162:5;;;;;:::i;:::-;;:::i;6722:88:0:-;;;;;;;;;;-1:-1:-1;6722:88:0;;;;;:::i;:::-;;:::i;1911:198:12:-;;;;;;;;;;-1:-1:-1;1911:198:12;;;;;:::i;:::-;;:::i;756:31:0:-;;;;;;;;;;-1:-1:-1;756:31:0;;;;-1:-1:-1;;;756:31:0;;;;;;6085:294;6188:4;-1:-1:-1;;;;;;6223:41:0;;-1:-1:-1;;;6223:41:0;;:97;;-1:-1:-1;;;;;;;6280:40:0;;-1:-1:-1;;;6280:40:0;6223:97;:149;;;;6336:36;6360:11;6336:23;:36::i;:::-;6204:168;6085:294;-1:-1:-1;;6085:294:0:o;7337:98:5:-;7391:13;7423:5;7416:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7337:98;:::o;8793:200::-;8861:7;8885:16;8893:7;8885;:16::i;:::-;8880:64;;8910:34;;-1:-1:-1;;;8910:34:5;;;;;;;;;;;8880:64;-1:-1:-1;8962:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;8962:24:5;;8793:200::o;8370:362::-;8442:13;8458:24;8474:7;8458:15;:24::i;:::-;8442:40;;8502:5;-1:-1:-1;;;;;8496:11:5;:2;-1:-1:-1;;;;;8496:11:5;;8492:48;;;8516:24;;-1:-1:-1;;;8516:24:5;;;;;;;;;;;8492:48;719:10:2;-1:-1:-1;;;;;8555:21:5;;;;;;:63;;-1:-1:-1;8581:37:5;8598:5;719:10:2;9408:162:5;:::i;8581:37::-;8580:38;8555:63;8551:136;;;8641:35;;-1:-1:-1;;;8641:35:5;;;;;;;;;;;8551:136;8697:28;8706:2;8710:7;8719:5;8697:8;:28::i;:::-;8432:300;8370:362;;:::o;6385:204:0:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:2;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;;;;;;;;;6473:6:0::1;6458:11;;:21;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;6512:11;6497:26;;:11;;;;;;;;;;;:26;;;;6489:62;;;::::0;-1:-1:-1;;;6489:62:0;;14003:2:14;6489:62:0::1;::::0;::::1;13985:21:14::0;14042:2;14022:18;;;14015:30;-1:-1:-1;;;14061:18:14;;;14054:53;14124:18;;6489:62:0::1;13801:347:14::0;6489:62:0::1;6561:21;6571:2;6575:6;6561:21;;:9;:21::i;:::-;6385:204:::0;;:::o;9632:164:5:-;9761:28;9771:4;9777:2;9781:7;9761:9;:28::i;1632:478:4:-;1771:7;1832:27;;;:17;:27;;;;;;;;1803:56;;;;;;;;;-1:-1:-1;;;;;1803:56:4;;;;;-1:-1:-1;;;1803:56:4;;;-1:-1:-1;;;;;1803:56:4;;;;;;;;1771:7;;1870:90;;-1:-1:-1;1920:29:4;;;;;;;;;-1:-1:-1;1920:29:4;-1:-1:-1;;;;;1920:29:4;;;;-1:-1:-1;;;1920:29:4;;-1:-1:-1;;;;;1920:29:4;;;;;1870:90;2008:23;;;;1970:21;;2468:5;;1995:36;;-1:-1:-1;;;;;1995:36:4;:10;:36;:::i;:::-;1994:58;;;;:::i;:::-;2071:16;;;;;-1:-1:-1;1632:478:4;;-1:-1:-1;;;;1632:478:4:o;6919:100:0:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:2;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6989:14:0::1;:23:::0;;-1:-1:-1;;6989:23:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;6919:100::o;7025:108::-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:2;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;7074:52:0::1;7082:10;7104:21;7074:29;:52::i;:::-;7025:108::o:0;9862:179:5:-;9995:39;10012:4;10018:2;10022:7;9995:39;;;;;;;;;;;;:16;:39::i;1437:450:6:-;1601:15;;1517:23;;1576:22;1601:15;-1:-1:-1;;;;;1667:36:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;1667:36:6;;-1:-1:-1;;1667:36:6;;;;;;;;;;;;1630:73;;1722:9;1717:123;1738:14;1733:1;:19;1717:123;;1793:32;1813:8;1822:1;1813:11;;;;;;;;:::i;:::-;;;;;;;1793:19;:32::i;:::-;1777:10;1788:1;1777:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;1754:3;;1717:123;;;-1:-1:-1;1860:10:6;1437:450;-1:-1:-1;;;1437:450:6:o;7152:123:5:-;7216:7;7242:21;7255:7;7242:12;:21::i;:::-;:26;;7152:123;-1:-1:-1;;7152:123:5:o;6595:121:0:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:2;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6668:41:0::1;6687:7;1101:6:12::0;;-1:-1:-1;;;;;1101:6:12;;1029:85;6687:7:0::1;6696:12;6668:18;:41::i;:::-;6595:121:::0;:::o;4668:203:5:-;4732:7;-1:-1:-1;;;;;4755:19:5;;4751:60;;4783:28;;-1:-1:-1;;;4783:28:5;;;;;;;;;;;4751:60;-1:-1:-1;;;;;;4836:19:5;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4836:27:5;;4668:203::o;1661:101:12:-;1101:6;;-1:-1:-1;;;;;1101:6:12;719:10:2;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;6816:97:0:-:0;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:2;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6888:18:0;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;5139:861:6:-:0;5200:16;5252:19;5285:25;5324:22;5349:16;5359:5;5349:9;:16::i;:::-;5324:41;;5379:25;5421:14;-1:-1:-1;;;;;5407:29:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5407:29:6;;5379:57;;5450:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;5450:31:6;5500:9;5495:460;5544:14;5529:11;:29;5495:460;;5595:14;;;;:11;:14;;;;;;;;;5583:26;;;;;;;;;-1:-1:-1;;;;;5583:26:6;;;;-1:-1:-1;;;5583:26:6;;-1:-1:-1;;;;;5583:26:6;;;;;;;;-1:-1:-1;;;5583:26:6;;;;;;;;;;;;;;;;-1:-1:-1;5627:71:6;;5671:8;;5627:71;5719:14;;-1:-1:-1;;;;;5719:28:6;;5715:109;;5791:14;;;-1:-1:-1;5715:109:6;5866:5;-1:-1:-1;;;;;5845:26:6;:17;-1:-1:-1;;;;;5845:26:6;;5841:100;;;5921:1;5895:8;5904:13;;;;;;5895:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;5841:100;5560:3;;5495:460;;;-1:-1:-1;5975:8:6;;5139:861;-1:-1:-1;;;;;;5139:861:6:o;7499:102:5:-;7555:13;7587:7;7580:14;;;;;:::i;2263:2439:6:-;2385:16;2450:4;2441:5;:13;2437:45;;2463:19;;-1:-1:-1;;;2463:19:6;;;;;;;;;;;2437:45;2549:13;;2496:19;;2797:9;2790:4;:16;2786:71;;;2833:9;2826:16;;2786:71;2870:25;2898:16;2908:5;2898:9;:16::i;:::-;2870:44;;3089:4;3081:5;:12;3077:271;;;3135:12;;;3169:31;;;3165:109;;;3244:11;3224:31;;3165:109;3095:193;3077:271;;;-1:-1:-1;3332:1:6;3077:271;3361:25;3403:17;-1:-1:-1;;;;;3389:32:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3389:32:6;-1:-1:-1;3361:60:6;-1:-1:-1;3439:22:6;3435:76;;3488:8;-1:-1:-1;3481:15:6;;-1:-1:-1;;;3481:15:6;3435:76;3652:31;3686:26;3706:5;3686:19;:26::i;:::-;3652:60;;3726:25;3968:9;:16;;;3963:90;;-1:-1:-1;4024:14:6;;3963:90;4083:5;4066:466;4095:4;4090:1;:9;;:45;;;;;4118:17;4103:11;:32;;4090:45;4066:466;;;4172:14;;;;:11;:14;;;;;;;;;4160:26;;;;;;;;;-1:-1:-1;;;;;4160:26:6;;;;-1:-1:-1;;;4160:26:6;;-1:-1:-1;;;;;4160:26:6;;;;;;;;-1:-1:-1;;;4160:26:6;;;;;;;;;;;;;;;;-1:-1:-1;4204:71:6;;4248:8;;4204:71;4296:14;;-1:-1:-1;;;;;4296:28:6;;4292:109;;4368:14;;;-1:-1:-1;4292:109:6;4443:5;-1:-1:-1;;;;;4422:26:6;:17;-1:-1:-1;;;;;4422:26:6;;4418:100;;;4498:1;4472:8;4481:13;;;;;;4472:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;4418:100;4137:3;;4066:466;;;-1:-1:-1;;;4614:29:6;;;-1:-1:-1;4621:8:6;;-1:-1:-1;;2263:2439:6;;;;;;:::o;4869:914:0:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4972:24:0;4985:11;4972:10;:24;:::i;:::-;5061:11;;4950:46;;-1:-1:-1;5006:19:0;;-1:-1:-1;;;5061:11:0;;;;5035:22;4194:13:5;;;3965:277;5035:22:0;5028:44;;;;:::i;:::-;5006:66;;5090:686;;;;;;;;5140:6;5090:686;;;;5171:10;5090:686;;;;;;5208:12;5090:686;;;;;;5253:18;5090:686;;;;;;5303:17;5090:686;;;;;;5358:23;5090:686;;;;;;5408:12;5090:686;;;;;;5470:12;5090:686;;;;;;5538:18;;;;;;;;;;;5517;:39;;;;:::i;:::-;5090:686;;;;;;5610:17;;;;;;;;;;;5590;:37;;;;:::i;:::-;5090:686;;;;;;5712:21;5726:6;-1:-1:-1;;;;;5043:19:5;5009:7;5043:19;;;:12;:19;;;;;:32;-1:-1:-1;;;;;;;;5043:32:5;;;;;4948:135;5712:21:0;5090:686;;;;;;5667:12;5651:28;;:12;:28;;;;5090:686;;;;;;5757:8;;;;;;;;;;;5090:686;;;;;5083:693;;;;4869:914;;;:::o;9060:282:5:-;-1:-1:-1;;;;;9158:24:5;;719:10:2;9158:24:5;9154:54;;;9191:17;;-1:-1:-1;;;9191:17:5;;;;;;;;;;;9154:54;719:10:2;9219:32:5;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;9219:42:5;;;;;;;;;;;;:53;;-1:-1:-1;;9219:53:5;;;;;;;;;;9287:48;;636:41:14;;;9219:42:5;;719:10:2;9287:48:5;;609:18:14;9287:48:5;;;;;;;9060:282;;:::o;2340:2295:0:-;2404:8;;;;;;;2396:46;;;;-1:-1:-1;;;2396:46:0;;15143:2:14;2396:46:0;;;15125:21:14;15182:2;15162:18;;;15155:30;15221:27;15201:18;;;15194:55;15266:18;;2396:46:0;14941:349:14;2396:46:0;2460:14;;:24;;;;:14;;:24;;2452:64;;;;-1:-1:-1;;;2452:64:0;;15497:2:14;2452:64:0;;;15479:21:14;15536:2;15516:18;;;15509:30;15575:29;15555:18;;;15548:57;15622:18;;2452:64:0;15295:351:14;2452:64:0;2527:19;2549:15;:13;:15::i;:::-;2527:37;;2574:19;2596:15;:13;:15::i;:::-;2574:37;;2654:15;:13;:15::i;:::-;2629:40;;:21;2638:12;2629:6;:21;:::i;:::-;:40;;;;2621:76;;;;-1:-1:-1;;;2621:76:0;;14003:2:14;2621:76:0;;;13985:21:14;14042:2;14022:18;;;14015:30;-1:-1:-1;;;14061:18:14;;;14054:53;14124:18;;2621:76:0;13801:347:14;2621:76:0;2745:10;2708:13;5043:19:5;;;:12;:19;;;;;:32;-1:-1:-1;;;5043:32:5;;-1:-1:-1;;;;;5043:32:5;2775:31:0;2794:12;2775:31;:15;5043:32:5;2775:6:0;:15;:::i;:::-;:31;;;;2767:69;;;;-1:-1:-1;;;2767:69:0;;15853:2:14;2767:69:0;;;15835:21:14;15892:2;15872:18;;;15865:30;15931:27;15911:18;;;15904:55;15976:18;;2767:69:0;15651:349:14;2767:69:0;2879:23;2847:29;2948:31;;;;;;;;2944:167;;;2995:12;3010:31;3035:6;3010:22;:31;:::i;:::-;2995:46;;3077:6;3069:14;;:5;:14;;;:31;;3095:5;3069:31;;;3086:6;3069:31;3055:45;;;;:::i;:::-;;;2981:130;2944:167;3125:40;;;:15;3134:6;3125;:15;:::i;:::-;:40;;;3121:1210;;;3181:25;3209:31;3218:22;3209:6;:31;:::i;:::-;3321:17;;3181:59;;-1:-1:-1;3254:23:0;;-1:-1:-1;;;3321:17:0;;;;3254:23;3367:36;3321:17;3367;:36;:::i;:::-;3352:51;-1:-1:-1;3422:9:0;;;;3418:903;;3490:155;;-1:-1:-1;;3528:10:0;16236:2:14;16232:15;16228:53;3490:155:0;;;16216:66:14;-1:-1:-1;;;;;;16338:3:14;16316:16;;;16312:43;16298:12;;;16291:65;3594:16:0;16372:12:14;;;16365:28;3632:12:0;16409::14;;;16402:28;3451:18:0;;16446:12:14;;3490:155:0;;;;;;;;;;;;3480:166;;;;;;3472:175;;3451:196;;3671:9;3666:402;3690:18;3686:22;;:1;:22;:35;;;;;3720:1;3712:5;:9;;;3686:35;3666:402;;;3798:5;3751:52;;3782:12;3758:36;;3759:10;3772:6;3759:19;3758:36;;;;:::i;:::-;3751:52;;;3747:164;;;3831:21;3851:1;3831:21;;:::i;:::-;;-1:-1:-1;3878:10:0;3887:1;3878:10;;:::i;:::-;;;3747:164;4025:2;4011:16;;;;;3969:3;;3666:402;;;-1:-1:-1;4090:20:0;;;;4086:221;;4134:30;4148:16;4134:30;;:::i;:::-;;;4207:16;4186:17;;:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;4250:38;;;4259:10;16758:51:14;;16845:23;;;16840:2;16825:18;;16818:51;4250:38:0;;-1:-1:-1;16731:18:14;4250:38:0;;;;;;;4086:221;3433:888;3418:903;3167:1164;;;;3121:1210;4341:21;4389:6;4366:19;4375:10;4366:6;:19;:::i;:::-;4365:30;;;;;;:::i;:::-;4341:54;;4426:13;4413:9;:26;;4405:62;;;;-1:-1:-1;;;4405:62:0;;17082:2:14;4405:62:0;;;17064:21:14;17121:2;17101:18;;;17094:30;17160:25;17140:18;;;17133:53;17203:18;;4405:62:0;16880:347:14;4405:62:0;4478:29;4488:10;4500:6;4478:29;;:9;:29::i;:::-;4533:13;4521:9;:25;4517:112;;;4562:56;4592:25;4604:13;4592:9;:25;:::i;:::-;4570:10;;4562:29;:56::i;:::-;2386:2249;;;;;;2340:2295;:::o;4641:114::-;4737:11;;4687:6;;-1:-1:-1;;;4737:11:0;;;;4719:14;4194:13:5;;;3965:277;4719:14:0;4712:36;;;;:::i;:::-;4705:43;;4641:114;:::o;10107:359:5:-;10268:28;10278:4;10284:2;10288:7;10268:9;:28::i;:::-;-1:-1:-1;;;;;10310:13:5;;1465:19:1;:23;;10310:76:5;;;;;10330:56;10361:4;10367:2;10371:7;10380:5;10330:30;:56::i;:::-;10329:57;10310:76;10306:154;;;10409:40;;-1:-1:-1;;;10409:40:5;;;;;;;;;;;10306:154;10107:359;;;;:::o;885:399:6:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1030:53:6;1070:13;;1059:7;:24;1026:100;;1106:9;885:399;-1:-1:-1;;885:399:6:o;1026:100::-;-1:-1:-1;1147:20:6;;;;:11;:20;;;;;;;;;1135:32;;;;;;;;;-1:-1:-1;;;;;1135:32:6;;;;-1:-1:-1;;;1135:32:6;;-1:-1:-1;;;;;1135:32:6;;;;;;;;-1:-1:-1;;;1135:32:6;;;;;;;;;;;;;;;;1177:63;;1220:9;885:399;-1:-1:-1;;885:399:6:o;1177:63::-;1256:21;1269:7;1256:12;:21::i;5789:290:0:-;5862:13;5892:16;5900:7;5892;:16::i;:::-;5887:59;;5917:29;;-1:-1:-1;;;5917:29:0;;;;;;;;;;;5887:59;5957:21;5981:12;5957:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6034:7;6043:18;:7;:16;:18::i;:::-;6017:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6003:69;;;5789:290;;;:::o;4761:102::-;4807:6;4832:24;4845:11;4832:10;:24;:::i;891:112::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9408:162:5:-;-1:-1:-1;;;;;9528:25:5;;;9505:4;9528:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9408:162::o;6722:88:0:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:2;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6785:8:0::1;:18:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;6785:18:0;;::::1;::::0;;;::::1;::::0;;6722:88::o;1911:198:12:-;1101:6;;-1:-1:-1;;;;;1101:6:12;719:10:2;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:12;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:12;;18206:2:14;1991:73:12::1;::::0;::::1;18188:21:14::0;18245:2;18225:18;;;18218:30;18284:34;18264:18;;;18257:62;-1:-1:-1;;;18335:18:14;;;18328:36;18381:19;;1991:73:12::1;18004:402:14::0;1991:73:12::1;2074:28;2093:8;2074:18;:28::i;4309:300:5:-:0;4411:4;-1:-1:-1;;;;;;4446:40:5;;-1:-1:-1;;;4446:40:5;;:104;;-1:-1:-1;;;;;;;4502:48:5;;-1:-1:-1;;;4502:48:5;4446:104;:156;;;;4566:36;4590:11;4566:23;:36::i;10712:172::-;10769:4;10832:13;;10822:7;:23;10792:85;;;;-1:-1:-1;;10850:20:5;;;;:11;:20;;;;;:27;-1:-1:-1;;;10850:27:5;;;;10849:28;;10712:172::o;18652:189::-;18762:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;18762:29:5;-1:-1:-1;;;;;18762:29:5;;;;;;;;;18806:28;;18762:24;;18806:28;;;;;;;18652:189;;;:::o;10890:102::-;10958:27;10968:2;10972:8;10958:27;;;;;;;;;;;;:9;:27::i;13722:2082::-;13832:35;13870:21;13883:7;13870:12;:21::i;:::-;13832:59;;13928:4;-1:-1:-1;;;;;13906:26:5;:13;:18;;;-1:-1:-1;;;;;13906:26:5;;13902:67;;13941:28;;-1:-1:-1;;;13941:28:5;;;;;;;;;;;13902:67;13980:22;719:10:2;-1:-1:-1;;;;;14006:20:5;;;;:72;;-1:-1:-1;14042:36:5;14059:4;719:10:2;9408:162:5;:::i;14042:36::-;14006:124;;;-1:-1:-1;719:10:2;14094:20:5;14106:7;14094:11;:20::i;:::-;-1:-1:-1;;;;;14094:36:5;;14006:124;13980:151;;14147:17;14142:66;;14173:35;;-1:-1:-1;;;14173:35:5;;;;;;;;;;;14142:66;-1:-1:-1;;;;;14222:16:5;;14218:52;;14247:23;;-1:-1:-1;;;14247:23:5;;;;;;;;;;;14218:52;14386:35;14403:1;14407:7;14416:4;14386:8;:35::i;:::-;-1:-1:-1;;;;;14711:18:5;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;14711:31:5;;;-1:-1:-1;;;;;14711:31:5;;;-1:-1:-1;;14711:31:5;;;;;;;14756:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;14756:29:5;;;;;;;;;;;14834:20;;;:11;:20;;;;;;14868:18;;-1:-1:-1;;;;;;14900:49:5;;;;-1:-1:-1;;;14933:15:5;14900:49;;;;;;;;;;15219:11;;15278:24;;;;;15320:13;;14834:20;;15278:24;;15320:13;15316:377;;15527:13;;15512:11;:28;15508:171;;15564:20;;15632:28;;;;-1:-1:-1;;;;;15606:54:5;-1:-1:-1;;;15606:54:5;-1:-1:-1;;;;;;15606:54:5;;;-1:-1:-1;;;;;15564:20:5;;15606:54;;;;15508:171;14687:1016;;;15737:7;15733:2;-1:-1:-1;;;;;15718:27:5;15727:4;-1:-1:-1;;;;;15718:27:5;;;;;;;;;;;15755:42;13822:1982;;13722:2082;;;:::o;2412:312:1:-;2526:6;2501:21;:31;;2493:73;;;;-1:-1:-1;;;2493:73:1;;18613:2:14;2493:73:1;;;18595:21:14;18652:2;18632:18;;;18625:30;18691:31;18671:18;;;18664:59;18740:18;;2493:73:1;18411:353:14;2493:73:1;2578:12;2596:9;-1:-1:-1;;;;;2596:14:1;2618:6;2596:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577:52;;;2647:7;2639:78;;;;-1:-1:-1;;;2639:78:1;;19181:2:14;2639:78:1;;;19163:21:14;19220:2;19200:18;;;19193:30;19259:34;19239:18;;;19232:62;19330:28;19310:18;;;19303:56;19376:19;;2639:78:1;18979:422:14;6011:1084:5;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6121:7:5;6201:13;;6194:4;:20;6163:868;;;6234:31;6268:17;;;:11;:17;;;;;;;;;6234:51;;;;;;;;;-1:-1:-1;;;;;6234:51:5;;;;-1:-1:-1;;;6234:51:5;;-1:-1:-1;;;;;6234:51:5;;;;;;;;-1:-1:-1;;;6234:51:5;;;;;;;;;;;;;;6303:714;;6352:14;;-1:-1:-1;;;;;6352:28:5;;6348:99;;6415:9;6011:1084;-1:-1:-1;;;6011:1084:5:o;6348:99::-;-1:-1:-1;;;6783:6:5;6827:17;;;;:11;:17;;;;;;;;;6815:29;;;;;;;;;-1:-1:-1;;;;;6815:29:5;;;;;-1:-1:-1;;;6815:29:5;;-1:-1:-1;;;;;6815:29:5;;;;;;;;-1:-1:-1;;;6815:29:5;;;;;;;;;;;;;6874:28;6870:107;;6941:9;6011:1084;-1:-1:-1;;;6011:1084:5:o;6870:107::-;6744:255;;;6216:815;6163:868;7057:31;;-1:-1:-1;;;7057:31:5;;;;;;;;;;;2741:327:4;2468:5;-1:-1:-1;;;;;2843:33:4;;;;2835:88;;;;-1:-1:-1;;;2835:88:4;;19608:2:14;2835:88:4;;;19590:21:14;19647:2;19627:18;;;19620:30;19686:34;19666:18;;;19659:62;-1:-1:-1;;;19737:18:14;;;19730:40;19787:19;;2835:88:4;19406:406:14;2835:88:4;-1:-1:-1;;;;;2941:22:4;;2933:60;;;;-1:-1:-1;;;2933:60:4;;20019:2:14;2933:60:4;;;20001:21:14;20058:2;20038:18;;;20031:30;20097:27;20077:18;;;20070:55;20142:18;;2933:60:4;19817:349:14;2933:60:4;3026:35;;;;;;;;;-1:-1:-1;;;;;3026:35:4;;;;;;-1:-1:-1;;;;;3026:35:4;;;;;;;;;;-1:-1:-1;;;3004:57:4;;;;-1:-1:-1;3004:57:4;2741:327::o;2263:187:12:-;2355:6;;;-1:-1:-1;;;;;2371:17:12;;;-1:-1:-1;;;;;;2371:17:12;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;19322:650:5:-;19500:72;;-1:-1:-1;;;19500:72:5;;19480:4;;-1:-1:-1;;;;;19500:36:5;;;;;:72;;719:10:2;;19551:4:5;;19557:7;;19566:5;;19500:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19500:72:5;;;;;;;;-1:-1:-1;;19500:72:5;;;;;;;;;;;;:::i;:::-;;;19496:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19731:13:5;;19727:229;;19776:40;;-1:-1:-1;;;19776:40:5;;;;;;;;;;;19727:229;19916:6;19910:13;19901:6;19897:2;19893:15;19886:38;19496:470;-1:-1:-1;;;;;;19618:55:5;-1:-1:-1;;;19618:55:5;;-1:-1:-1;19496:470:5;19322:650;;;;;;:::o;328:703:13:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:13;;;;;;;;;;;;-1:-1:-1;;;627:10:13;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:13;;-1:-1:-1;773:2:13;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:13;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:13;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:13;;;;;;;;-1:-1:-1;972:11:13;981:2;972:11;;:::i;:::-;;;844:150;;1369:213:4;1471:4;-1:-1:-1;;;;;;1494:41:4;;-1:-1:-1;;;1494:41:4;;:81;;-1:-1:-1;;;;;;;;;;937:40:3;;;1539:36:4;829:155:3;11343:157:5;11461:32;11467:2;11471:8;11481:5;11488:4;11903:13;;-1:-1:-1;;;;;11930:16:5;;11926:48;;11955:19;;-1:-1:-1;;;11955:19:5;;;;;;;;;;;11926:48;11988:13;11984:44;;12010:18;;-1:-1:-1;;;12010:18:5;;;;;;;;;;;11984:44;-1:-1:-1;;;;;12371:16:5;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;12429:49:5;;-1:-1:-1;;;;;12371:44:5;;;;;;;12429:49;;;-1:-1:-1;;;;;12371:44:5;;;;;;12429:49;;;;;;;;;;;;;;;;12493:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;12542:66:5;;;;-1:-1:-1;;;12592:15:5;12542:66;;;;;;;;;;12493:25;12686:23;;;12728:4;:23;;;;-1:-1:-1;;;;;;12736:13:5;;1465:19:1;:23;;12736:15:5;12724:628;;;12771:309;12801:38;;12826:12;;-1:-1:-1;;;;;12801:38:5;;;12818:1;;12801:38;;12818:1;;12801:38;12866:69;12905:1;12909:2;12913:14;;;;;;12929:5;12866:30;:69::i;:::-;12861:172;;12970:40;;-1:-1:-1;;;12970:40:5;;;;;;;;;;;12861:172;13075:3;13059:12;:19;;12771:309;;13159:12;13142:13;;:29;13138:43;;13173:8;;;13138:43;12724:628;;;13220:118;13250:40;;13275:14;;;;;-1:-1:-1;;;;;13250:40:5;;;13267:1;;13250:40;;13267:1;;13250:40;13333:3;13317:12;:19;;13220:118;;12724:628;-1:-1:-1;13365:13:5;:28;13413:60;10107:359;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:14;-1:-1:-1;;;;;;88:32:14;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;984:258::-;1056:1;1066:113;1080:6;1077:1;1074:13;1066:113;;;1156:11;;;1150:18;1137:11;;;1130:39;1102:2;1095:10;1066:113;;;1197:6;1194:1;1191:13;1188:48;;;-1:-1:-1;;1232:1:14;1214:16;;1207:27;984:258::o;1247:::-;1289:3;1327:5;1321:12;1354:6;1349:3;1342:19;1370:63;1426:6;1419:4;1414:3;1410:14;1403:4;1396:5;1392:16;1370:63;:::i;:::-;1487:2;1466:15;-1:-1:-1;;1462:29:14;1453:39;;;;1494:4;1449:50;;1247:258;-1:-1:-1;;1247:258:14:o;1510:220::-;1659:2;1648:9;1641:21;1622:4;1679:45;1720:2;1709:9;1705:18;1697:6;1679:45;:::i;1735:180::-;1794:6;1847:2;1835:9;1826:7;1822:23;1818:32;1815:52;;;1863:1;1860;1853:12;1815:52;-1:-1:-1;1886:23:14;;1735:180;-1:-1:-1;1735:180:14:o;2128:173::-;2196:20;;-1:-1:-1;;;;;2245:31:14;;2235:42;;2225:70;;2291:1;2288;2281:12;2225:70;2128:173;;;:::o;2306:254::-;2374:6;2382;2435:2;2423:9;2414:7;2410:23;2406:32;2403:52;;;2451:1;2448;2441:12;2403:52;2474:29;2493:9;2474:29;:::i;:::-;2464:39;2550:2;2535:18;;;;2522:32;;-1:-1:-1;;;2306:254:14:o;2565:163::-;2632:20;;2692:10;2681:22;;2671:33;;2661:61;;2718:1;2715;2708:12;2733:258;2800:6;2808;2861:2;2849:9;2840:7;2836:23;2832:32;2829:52;;;2877:1;2874;2867:12;2829:52;2900:29;2919:9;2900:29;:::i;:::-;2890:39;;2948:37;2981:2;2970:9;2966:18;2948:37;:::i;:::-;2938:47;;2733:258;;;;;:::o;3178:328::-;3255:6;3263;3271;3324:2;3312:9;3303:7;3299:23;3295:32;3292:52;;;3340:1;3337;3330:12;3292:52;3363:29;3382:9;3363:29;:::i;:::-;3353:39;;3411:38;3445:2;3434:9;3430:18;3411:38;:::i;:::-;3401:48;;3496:2;3485:9;3481:18;3468:32;3458:42;;3178:328;;;;;:::o;3511:248::-;3579:6;3587;3640:2;3628:9;3619:7;3615:23;3611:32;3608:52;;;3656:1;3653;3646:12;3608:52;-1:-1:-1;;3679:23:14;;;3749:2;3734:18;;;3721:32;;-1:-1:-1;3511:248:14:o;4225:184::-;4283:6;4336:2;4324:9;4315:7;4311:23;4307:32;4304:52;;;4352:1;4349;4342:12;4304:52;4375:28;4393:9;4375:28;:::i;4414:127::-;4475:10;4470:3;4466:20;4463:1;4456:31;4506:4;4503:1;4496:15;4530:4;4527:1;4520:15;4546:275;4617:2;4611:9;4682:2;4663:13;;-1:-1:-1;;4659:27:14;4647:40;;-1:-1:-1;;;;;4702:34:14;;4738:22;;;4699:62;4696:88;;;4764:18;;:::i;:::-;4800:2;4793:22;4546:275;;-1:-1:-1;4546:275:14:o;4826:946::-;4910:6;4941:2;4984;4972:9;4963:7;4959:23;4955:32;4952:52;;;5000:1;4997;4990:12;4952:52;5040:9;5027:23;-1:-1:-1;;;;;5110:2:14;5102:6;5099:14;5096:34;;;5126:1;5123;5116:12;5096:34;5164:6;5153:9;5149:22;5139:32;;5209:7;5202:4;5198:2;5194:13;5190:27;5180:55;;5231:1;5228;5221:12;5180:55;5267:2;5254:16;5289:2;5285;5282:10;5279:36;;;5295:18;;:::i;:::-;5341:2;5338:1;5334:10;5324:20;;5364:28;5388:2;5384;5380:11;5364:28;:::i;:::-;5426:15;;;5496:11;;;5492:20;;;5457:12;;;;5524:19;;;5521:39;;;5556:1;5553;5546:12;5521:39;5580:11;;;;5600:142;5616:6;5611:3;5608:15;5600:142;;;5682:17;;5670:30;;5633:12;;;;5720;;;;5600:142;;;5761:5;4826:946;-1:-1:-1;;;;;;;;4826:946:14:o;6060:724::-;6295:2;6347:21;;;6417:13;;6320:18;;;6439:22;;;6266:4;;6295:2;6518:15;;;;6492:2;6477:18;;;6266:4;6561:197;6575:6;6572:1;6569:13;6561:197;;;6624:52;6672:3;6663:6;6657:13;5861:12;;-1:-1:-1;;;;;5857:38:14;5845:51;;5949:4;5938:16;;;5932:23;-1:-1:-1;;;;;5928:48:14;5912:14;;;5905:72;6040:4;6029:16;;;6023:23;6016:31;6009:39;5993:14;;5986:63;5777:278;6624:52;6733:15;;;;6705:4;6696:14;;;;;6597:1;6590:9;6561:197;;6789:292;6847:6;6900:2;6888:9;6879:7;6875:23;6871:32;6868:52;;;6916:1;6913;6906:12;6868:52;6955:9;6942:23;-1:-1:-1;;;;;6998:5:14;6994:38;6987:5;6984:49;6974:77;;7047:1;7044;7037:12;7086:186;7145:6;7198:2;7186:9;7177:7;7173:23;7169:32;7166:52;;;7214:1;7211;7204:12;7166:52;7237:29;7256:9;7237:29;:::i;7277:407::-;7342:5;-1:-1:-1;;;;;7368:6:14;7365:30;7362:56;;;7398:18;;:::i;:::-;7436:57;7481:2;7460:15;;-1:-1:-1;;7456:29:14;7487:4;7452:40;7436:57;:::i;:::-;7427:66;;7516:6;7509:5;7502:21;7556:3;7547:6;7542:3;7538:16;7535:25;7532:45;;;7573:1;7570;7563:12;7532:45;7622:6;7617:3;7610:4;7603:5;7599:16;7586:43;7676:1;7669:4;7660:6;7653:5;7649:18;7645:29;7638:40;7277:407;;;;;:::o;7689:451::-;7758:6;7811:2;7799:9;7790:7;7786:23;7782:32;7779:52;;;7827:1;7824;7817:12;7779:52;7867:9;7854:23;-1:-1:-1;;;;;7892:6:14;7889:30;7886:50;;;7932:1;7929;7922:12;7886:50;7955:22;;8008:4;8000:13;;7996:27;-1:-1:-1;7986:55:14;;8037:1;8034;8027:12;7986:55;8060:74;8126:7;8121:2;8108:16;8103:2;8099;8095:11;8060:74;:::i;8145:632::-;8316:2;8368:21;;;8438:13;;8341:18;;;8460:22;;;8287:4;;8316:2;8539:15;;;;8513:2;8498:18;;;8287:4;8582:169;8596:6;8593:1;8590:13;8582:169;;;8657:13;;8645:26;;8726:15;;;;8691:12;;;;8618:1;8611:9;8582:169;;8782:322;8859:6;8867;8875;8928:2;8916:9;8907:7;8903:23;8899:32;8896:52;;;8944:1;8941;8934:12;8896:52;8967:29;8986:9;8967:29;:::i;:::-;8957:39;9043:2;9028:18;;9015:32;;-1:-1:-1;9094:2:14;9079:18;;;9066:32;;8782:322;-1:-1:-1;;;8782:322:14:o;9109:1758::-;9318:13;;9300:32;;9379:4;9367:17;;;9361:24;9287:3;9272:19;;;9394:53;;9426:20;;9361:24;764:10;753:22;741:35;;688:94;9394:53;;9496:4;9488:6;9484:17;9478:24;9511:55;9560:4;9549:9;9545:20;9529:14;764:10;753:22;741:35;;688:94;9511:55;;9615:4;9607:6;9603:17;9597:24;9630:55;9679:4;9668:9;9664:20;9648:14;764:10;753:22;741:35;;688:94;9630:55;;9734:4;9726:6;9722:17;9716:24;9749:55;9798:4;9787:9;9783:20;9767:14;764:10;753:22;741:35;;688:94;9749:55;;9853:4;9845:6;9841:17;9835:24;9868:55;9917:4;9906:9;9902:20;9886:14;764:10;753:22;741:35;;688:94;9868:55;;9972:4;9964:6;9960:17;9954:24;9987:55;10036:4;10025:9;10021:20;10005:14;764:10;753:22;741:35;;688:94;9987:55;;10091:4;10083:6;10079:17;10073:24;10106:55;10155:4;10144:9;10140:20;10124:14;764:10;753:22;741:35;;688:94;10106:55;-1:-1:-1;10180:6:14;10223:15;;;10217:22;764:10;753:22;;;10282:18;;;741:35;;;;10320:6;10363:15;;;10357:22;753;;10422:18;;;741:35;10460:6;10503:15;;;10497:22;753;;;10562:18;;;741:35;10600:6;10644:15;;;10638:22;470:13;463:21;10702:18;;;451:34;10740:6;10784:15;;;10778:22;470:13;463:21;10842:18;;;;451:34;;;;9109:1758;:::o;10872:160::-;10937:20;;10993:13;;10986:21;10976:32;;10966:60;;11022:1;11019;11012:12;11037:254;11102:6;11110;11163:2;11151:9;11142:7;11138:23;11134:32;11131:52;;;11179:1;11176;11169:12;11131:52;11202:29;11221:9;11202:29;:::i;:::-;11192:39;;11250:35;11281:2;11270:9;11266:18;11250:35;:::i;11296:667::-;11391:6;11399;11407;11415;11468:3;11456:9;11447:7;11443:23;11439:33;11436:53;;;11485:1;11482;11475:12;11436:53;11508:29;11527:9;11508:29;:::i;:::-;11498:39;;11556:38;11590:2;11579:9;11575:18;11556:38;:::i;:::-;11546:48;;11641:2;11630:9;11626:18;11613:32;11603:42;;11696:2;11685:9;11681:18;11668:32;-1:-1:-1;;;;;11715:6:14;11712:30;11709:50;;;11755:1;11752;11745:12;11709:50;11778:22;;11831:4;11823:13;;11819:27;-1:-1:-1;11809:55:14;;11860:1;11857;11850:12;11809:55;11883:74;11949:7;11944:2;11931:16;11926:2;11922;11918:11;11883:74;:::i;:::-;11873:84;;;11296:667;;;;;;;:::o;11968:267::-;5861:12;;-1:-1:-1;;;;;5857:38:14;5845:51;;5949:4;5938:16;;;5932:23;-1:-1:-1;;;;;5928:48:14;5912:14;;;5905:72;6040:4;6029:16;;;6023:23;6016:31;6009:39;5993:14;;;5986:63;12166:2;12151:18;;12178:51;5777:278;12240:260;12308:6;12316;12369:2;12357:9;12348:7;12344:23;12340:32;12337:52;;;12385:1;12382;12375:12;12337:52;12408:29;12427:9;12408:29;:::i;:::-;12398:39;;12456:38;12490:2;12479:9;12475:18;12456:38;:::i;12505:180::-;12561:6;12614:2;12602:9;12593:7;12589:23;12585:32;12582:52;;;12630:1;12627;12620:12;12582:52;12653:26;12669:9;12653:26;:::i;12690:380::-;12769:1;12765:12;;;;12812;;;12833:61;;12887:4;12879:6;12875:17;12865:27;;12833:61;12940:2;12932:6;12929:14;12909:18;12906:38;12903:161;;;12986:10;12981:3;12977:20;12974:1;12967:31;13021:4;13018:1;13011:15;13049:4;13046:1;13039:15;12903:161;;12690:380;;;:::o;13075:356::-;13277:2;13259:21;;;13296:18;;;13289:30;13355:34;13350:2;13335:18;;13328:62;13422:2;13407:18;;13075:356::o;13436:127::-;13497:10;13492:3;13488:20;13485:1;13478:31;13528:4;13525:1;13518:15;13552:4;13549:1;13542:15;13568:228;13607:3;13635:10;13672:2;13669:1;13665:10;13702:2;13699:1;13695:10;13733:3;13729:2;13725:12;13720:3;13717:21;13714:47;;;13741:18;;:::i;:::-;13777:13;;13568:228;-1:-1:-1;;;;13568:228:14:o;14153:168::-;14193:7;14259:1;14255;14251:6;14247:14;14244:1;14241:21;14236:1;14229:9;14222:17;14218:45;14215:71;;;14266:18;;:::i;:::-;-1:-1:-1;14306:9:14;;14153:168::o;14326:127::-;14387:10;14382:3;14378:20;14375:1;14368:31;14418:4;14415:1;14408:15;14442:4;14439:1;14432:15;14458:120;14498:1;14524;14514:35;;14529:18;;:::i;:::-;-1:-1:-1;14563:9:14;;14458:120::o;14583:127::-;14644:10;14639:3;14635:20;14632:1;14625:31;14675:4;14672:1;14665:15;14699:4;14696:1;14689:15;14715:221;14754:4;14783:10;14843;;;;14813;;14865:12;;;14862:38;;;14880:18;;:::i;:::-;14917:13;;14715:221;-1:-1:-1;;;14715:221:14:o;16469:112::-;16501:1;16527;16517:35;;16532:18;;:::i;:::-;-1:-1:-1;16566:9:14;;16469:112::o;17232:125::-;17272:4;17300:1;17297;17294:8;17291:34;;;17305:18;;:::i;:::-;-1:-1:-1;17342:9:14;;17232:125::o;17362:637::-;17642:3;17680:6;17674:13;17696:53;17742:6;17737:3;17730:4;17722:6;17718:17;17696:53;:::i;:::-;17812:13;;17771:16;;;;17834:57;17812:13;17771:16;17868:4;17856:17;;17834:57;:::i;:::-;-1:-1:-1;;;17913:20:14;;17942:22;;;17991:1;17980:13;;17362:637;-1:-1:-1;;;;17362:637:14:o;20171:489::-;-1:-1:-1;;;;;20440:15:14;;;20422:34;;20492:15;;20487:2;20472:18;;20465:43;20539:2;20524:18;;20517:34;;;20587:3;20582:2;20567:18;;20560:31;;;20365:4;;20608:46;;20634:19;;20626:6;20608:46;:::i;:::-;20600:54;20171:489;-1:-1:-1;;;;;;20171:489:14:o;20665:249::-;20734:6;20787:2;20775:9;20766:7;20762:23;20758:32;20755:52;;;20803:1;20800;20793:12;20755:52;20835:9;20829:16;20854:30;20878:5;20854:30;:::i;20919:135::-;20958:3;-1:-1:-1;;20979:17:14;;20976:43;;;20999:18;;:::i;:::-;-1:-1:-1;21046:1:14;21035:13;;20919:135::o;21059:128::-;21099:3;21130:1;21126:6;21123:1;21120:13;21117:39;;;21136:18;;:::i;:::-;-1:-1:-1;21172:9:14;;21059:128::o

Swarm Source

ipfs://eeb9342733c394270b5c9ad2f443df157499918a1e1b7a56f8e765ee081bd98d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.