ETH Price: $3,271.23 (+0.31%)
Gas: 2 Gwei

Token

Auracles NFT (AURC)
 

Overview

Max Total Supply

1,777 AURC

Holders

697

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 AURC
0xddd6578aaa0010808bb13b95c9838c440f8b682e
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:
AuraclesNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol

//    ____ ____  _____ ____ ___ _____ ____         _   _   _ ____      _    ____ _     _____ ____    ____  _______     __  _____ _____    _    __  __ 
//  / ___|  _ \| ____|  _ \_ _|_   _/ ___|_      / \ | | | |  _ \    / \  / ___| |   | ____/ ___|  |  _ \| ____\ \   / / |_   _| ____|  / \  |  \/  |
// | |   | |_) |  _| | | | | |  | | \___ (_)    / _ \| | | | |_) |  / _ \| |   | |   |  _| \___ \  | | | |  _|  \ \ / /    | | |  _|   / _ \ | |\/| |
// | |___|  _ <| |___| |_| | |  | |  ___) |    / ___ \ |_| |  _ <  / ___ \ |___| |___| |___ ___) | | |_| | |___  \ V /     | | | |___ / ___ \| |  | |
//  \____|_| \_\_____|____/___| |_| |____(_)  /_/   \_\___/|_| \_\/_/   \_\____|_____|_____|____/  |____/|_____|  \_/      |_| |_____/_/   \_\_|  |_|

// Spaceboy & Helios

// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Renowned.sol



pragma solidity ^0.8.0;





contract AuraclesNFT is ERC721A, Ownable {

    using Strings for uint256;
    address public contractOwner;

    bool public paused = false;

    uint256 public mintPrice = 0.09 ether;
    uint256 public preMintPrice = 0.075 ether;

    uint256 public presaleMaxNFTPerWallet = 2;
    uint256 public publicSaleMaxNFTPerWallet = 5;

    uint256 constant public supply = 5555;
    uint256 constant public teamSupply = 222;

    bool teamMinted;

    bool public isRevealed;
    bool public isPublicSale;

    string private unRevealedURI = "ipfs://QmRJAL1HkkuZGFtoarvWo2CtjezNQ9LPJBpsfz7gpyyrdN/1.json";

    string private baseURI = "ipfs://QmShX3HGtHwX4LWfrZoogLFw4yofakfpecDr5e1bbMRNWd/";

    address public teamWallet = 0x402CcA4ed7d737d901A831849106d142C98FD68f;

    bytes32 public merkleRoot;

    constructor() ERC721A ("Auracles NFT", "AURC") {

        contractOwner = msg.sender;
        merkleRoot = 0x696250f4e2ce4e558cd6878a366ed4e12500ffaf404322ee10389baaa2cdf822;
    }

    function reveal() public onlyOwner { isRevealed = true; }

    function toggleReveal() external onlyOwner{

        isRevealed = !isRevealed;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {

        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        if(!isRevealed) {

            return unRevealedURI;
        }

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

    function teamMint() onlyOwner external {

        require(totalSupply() + teamSupply <= supply, "You can't mint more then the total supply");
        require(!teamMinted, "Team has already minted");

        teamMinted = true;

        _safeMint(teamWallet, teamSupply);
    }

    function preMint(uint256 quantity, bytes32[] memory proof) external payable {

        require(totalSupply() + quantity <= supply, "You can't mint more then the total supply");
        require(!isPublicSale, "You cannot mint after presale");
        require(tx.origin == msg.sender, "Caller should not be a contract");

        if(msg.sender != owner()) {

            require(!paused, "Contract paused");

            require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "You are not on the frenlist for this mint");
            require(quantity + balanceOf(msg.sender) <= presaleMaxNFTPerWallet, string(abi.encodePacked("You can only mint ", presaleMaxNFTPerWallet.toString(), " NFTs at Presale")));

            require(msg.value >= preMintPrice * quantity, "Insufficient funds");
        }
        
        _safeMint(msg.sender, quantity);
    }

    function mint(uint256 quantity) external payable {

        require(totalSupply() + quantity <= supply, "You can't mint more then the total supply");
        require(isPublicSale, "You cannot mint until public sale has started");
        require(tx.origin == msg.sender, "Caller should not be a contract");

        if(msg.sender != owner()) {

            require(!paused, "Contract paused");

            require(quantity + balanceOf(msg.sender) <= publicSaleMaxNFTPerWallet, string(abi.encodePacked("You can only mint ", publicSaleMaxNFTPerWallet.toString(), " NFTs at Public Sale")));
            require(msg.value >= mintPrice * quantity, "Insufficient funds");
        }
        
        _safeMint(msg.sender, quantity);
    }

    function getBaseURI() public onlyOwner view returns (string memory) { return baseURI; }

    function getMintPrice() public view returns (uint256) {

        if(!isPublicSale) {

            return preMintPrice;
        }

        return mintPrice;
    }

    function setNotRevealedUrl(string memory unRevealedURI_) external onlyOwner { unRevealedURI = unRevealedURI_; }

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

    function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; }

    function setMintPrice (uint256 _newPrice) external onlyOwner { mintPrice = _newPrice; }

    function setPublicMint() external onlyOwner { isPublicSale = true; }

    function setPaused (bool _pausedState) external onlyOwner { paused = _pausedState; }

    function setPublicSaleMaxNFTPerWallet(uint256 max_) external onlyOwner { publicSaleMaxNFTPerWallet = max_; }

    function getNotRevealedURL() external onlyOwner view returns (string memory) { return unRevealedURI; }

    function changeTreasury(address payable _newWallet) external onlyOwner { contractOwner = _newWallet; }

    function setTeamWallet(address teamWallet_) external onlyOwner { teamWallet = teamWallet_; }

    function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); }

    function totalMinted() public view returns (uint256) { return _totalMinted(); }

    function exists(uint256 tokenId) public view returns (bool) { return _exists(tokenId); }

    function setMerkleProof(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; }

    function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) { return MerkleProof.verify(proof, merkleRoot, leaf); }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newWallet","type":"address"}],"name":"changeTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNotRevealedURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxNFTPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleMaxNFTPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unRevealedURI_","type":"string"}],"name":"setNotRevealedUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pausedState","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max_","type":"uint256"}],"name":"setPublicSaleMaxNFTPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"teamWallet_","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","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":"payable","type":"function"}]

6009805460ff60a01b1916905567013fbe85edc90000600a5567010a741a46278000600b556002600c556005600d5560e0604052603c6080818152906200298560a03980516200005891600f91602090910190620001c4565b50604051806060016040528060368152602001620029c16036913980516200008991601091602090910190620001c4565b50601180546001600160a01b03191673402cca4ed7d737d901a831849106d142c98fd68f179055348015620000bd57600080fd5b50604080518082018252600c81526b105d5c9858db195cc813919560a21b6020808301918252835180850190945260048452634155524360e01b9084015281519192916200010e91600291620001c4565b50805162000124906003906020840190620001c4565b50506000805550620001363362000172565b600980546001600160a01b031916331790557f696250f4e2ce4e558cd6878a366ed4e12500ffaf404322ee10389baaa2cdf822601255620002a7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001d2906200026a565b90600052602060002090601f016020900481019282620001f6576000855562000241565b82601f106200021157805160ff191683800117855562000241565b8280016001018555821562000241579182015b828111156200024157825182559160200191906001019062000224565b506200024f92915062000253565b5090565b5b808211156200024f576000815560010162000254565b600181811c908216806200027f57607f821691505b60208210811415620002a157634e487b7160e01b600052602260045260246000fd5b50919050565b6126ce80620002b76000396000f3fe6080604052600436106102e45760003560e01c8063714c539811610190578063a5a865dc116100dc578063c87b56dd11610095578063e985e9c51161006f578063e985e9c514610822578063f2fde38b1461086b578063f4a0a5281461088b578063fb626afd146108ab57600080fd5b8063c87b56dd146107c2578063ce606ee0146107e2578063dc33e6811461080257600080fd5b8063a5a865dc14610718578063a7f93ebd14610738578063b14f2a391461074d578063b88d4fde1461076d578063b8a20ed01461078d578063ba7a86b8146107ad57600080fd5b806395d89b4111610149578063a187c89b11610123578063a187c89b146106b8578063a22cb465146106ce578063a2309ff8146106ee578063a475b5dd1461070357600080fd5b806395d89b41146106705780639c12e1bc14610685578063a0712d68146106a557600080fd5b8063714c5398146105d2578063715018a6146105e7578063779a3ed3146105fc57806386758912146106125780638da5cb5b14610632578063910148461461065057600080fd5b80633ccfd60b1161024f57806359927044116102085780635c975abb116101e25780635c975abb1461055b5780636352211e1461057c5780636817c76c1461059c57806370a08231146105b257600080fd5b806359927044146105135780635a546223146105335780635b8ad4291461054657600080fd5b80633ccfd60b1461047757806342842e0e1461047f5780634f558e791461049f57806353431ecf146104bf57806354214f69146104d457806355f804b3146104f357600080fd5b80631525ff7d116102a15780631525ff7d146103d357806316c38b3c146103f357806318160ddd1461041357806323b872dd1461042c5780632cfac6ec1461044c5780632eb4a7ab1461046157600080fd5b806301ffc9a7146102e957806302456aa21461031e578063047fc9aa1461033557806306fdde0314610359578063081812fc1461037b578063095ea7b3146103b3575b600080fd5b3480156102f557600080fd5b506103096103043660046121a5565b6108c1565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610913565b005b34801561034157600080fd5b5061034b6115b381565b604051908152602001610315565b34801561036557600080fd5b5061036e610959565b604051610315919061245b565b34801561038757600080fd5b5061039b61039636600461218c565b6109eb565b6040516001600160a01b039091168152602001610315565b3480156103bf57600080fd5b506103336103ce366004612100565b610a2f565b3480156103df57600080fd5b506103336103ee366004611fb4565b610acf565b3480156103ff57600080fd5b5061033361040e366004612171565b610b1b565b34801561041f57600080fd5b506001546000540361034b565b34801561043857600080fd5b5061033361044736600461200a565b610b63565b34801561045857600080fd5b5061034b60de81565b34801561046d57600080fd5b5061034b60125481565b610333610cf4565b34801561048b57600080fd5b5061033361049a36600461200a565b610d81565b3480156104ab57600080fd5b506103096104ba36600461218c565b610da1565b3480156104cb57600080fd5b5061036e610dac565b3480156104e057600080fd5b50600e5461030990610100900460ff1681565b3480156104ff57600080fd5b5061033361050e3660046121df565b610de6565b34801561051f57600080fd5b5060115461039b906001600160a01b031681565b610333610541366004612228565b610e27565b34801561055257600080fd5b506103336110c0565b34801561056757600080fd5b5060095461030990600160a01b900460ff1681565b34801561058857600080fd5b5061039b61059736600461218c565b611107565b3480156105a857600080fd5b5061034b600a5481565b3480156105be57600080fd5b5061034b6105cd366004611fb4565b611112565b3480156105de57600080fd5b5061036e611161565b3480156105f357600080fd5b5061033361119b565b34801561060857600080fd5b5061034b600d5481565b34801561061e57600080fd5b5061033361062d36600461218c565b6111d1565b34801561063e57600080fd5b506008546001600160a01b031661039b565b34801561065c57600080fd5b5061033361066b36600461218c565b611200565b34801561067c57600080fd5b5061036e61122f565b34801561069157600080fd5b506103336106a03660046121df565b61123e565b6103336106b336600461218c565b61127b565b3480156106c457600080fd5b5061034b600b5481565b3480156106da57600080fd5b506103336106e93660046120cb565b61148c565b3480156106fa57600080fd5b5060005461034b565b34801561070f57600080fd5b50610333611522565b34801561072457600080fd5b50600e546103099062010000900460ff1681565b34801561074457600080fd5b5061034b61155d565b34801561075957600080fd5b50610333610768366004611fb4565b61157e565b34801561077957600080fd5b5061033361078836600461204b565b6115ca565b34801561079957600080fd5b506103096107a836600461212c565b611614565b3480156107b957600080fd5b5061033361162a565b3480156107ce57600080fd5b5061036e6107dd36600461218c565b611705565b3480156107ee57600080fd5b5060095461039b906001600160a01b031681565b34801561080e57600080fd5b5061034b61081d366004611fb4565b611871565b34801561082e57600080fd5b5061030961083d366004611fd1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561087757600080fd5b50610333610886366004611fb4565b61189c565b34801561089757600080fd5b506103336108a636600461218c565b611934565b3480156108b757600080fd5b5061034b600c5481565b60006301ffc9a760e01b6001600160e01b0319831614806108f257506380ac58cd60e01b6001600160e01b03198316145b8061090d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109465760405162461bcd60e51b815260040161093d906124b7565b60405180910390fd5b600e805462ff0000191662010000179055565b606060028054610968906125ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610994906125ab565b80156109e15780601f106109b6576101008083540402835291602001916109e1565b820191906000526020600020905b8154815290600101906020018083116109c457829003601f168201915b5050505050905090565b60006109f682611963565b610a13576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a3a82611107565b9050336001600160a01b03821614610a7357610a56813361083d565b610a73576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610af95760405162461bcd60e51b815260040161093d906124b7565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610b455760405162461bcd60e51b815260040161093d906124b7565b60098054911515600160a01b0260ff60a01b19909216919091179055565b6000610b6e8261198a565b9050836001600160a01b0316816001600160a01b031614610ba15760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610bee57610bd1863361083d565b610bee57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610c1557604051633a954ecd60e21b815260040160405180910390fd5b8015610c2057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610cab5760018401600081815260046020526040902054610ca9576000548114610ca95760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b03163314610d1e5760405162461bcd60e51b815260040161093d906124b7565b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610d6b576040519150601f19603f3d011682016040523d82523d6000602084013e610d70565b606091505b5050905080610d7e57600080fd5b50565b610d9c838383604051806020016040528060008152506115ca565b505050565b600061090d82611963565b6008546060906001600160a01b03163314610dd95760405162461bcd60e51b815260040161093d906124b7565b600f8054610968906125ab565b6008546001600160a01b03163314610e105760405162461bcd60e51b815260040161093d906124b7565b8051610e23906010906020840190611e28565b5050565b6115b382610e386001546000540390565b610e42919061251d565b1115610e605760405162461bcd60e51b815260040161093d9061246e565b600e5462010000900460ff1615610eb95760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e6e6f74206d696e742061667465722070726573616c65000000604482015260640161093d565b323314610f085760405162461bcd60e51b815260206004820152601f60248201527f43616c6c65722073686f756c64206e6f74206265206120636f6e747261637400604482015260640161093d565b6008546001600160a01b031633146110b657600954600160a01b900460ff1615610f665760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd081c185d5cd959608a1b604482015260640161093d565b6040516bffffffffffffffffffffffff193360601b166020820152610fa590829060340160405160208183030381529060405280519060200120611614565b6110035760405162461bcd60e51b815260206004820152602960248201527f596f7520617265206e6f74206f6e20746865206672656e6c69737420666f72206044820152681d1a1a5cc81b5a5b9d60ba1b606482015260840161093d565b600c5461100f33611112565b611019908461251d565b1115611026600c546119eb565b6040516020016110369190612372565b604051602081830303815290604052906110635760405162461bcd60e51b815260040161093d919061245b565b5081600b546110729190612549565b3410156110b65760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161093d565b610e233383611af1565b6008546001600160a01b031633146110ea5760405162461bcd60e51b815260040161093d906124b7565b600e805461ff001981166101009182900460ff1615909102179055565b600061090d8261198a565b60006001600160a01b03821661113b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546060906001600160a01b0316331461118e5760405162461bcd60e51b815260040161093d906124b7565b60108054610968906125ab565b6008546001600160a01b031633146111c55760405162461bcd60e51b815260040161093d906124b7565b6111cf6000611b0b565b565b6008546001600160a01b031633146111fb5760405162461bcd60e51b815260040161093d906124b7565b601255565b6008546001600160a01b0316331461122a5760405162461bcd60e51b815260040161093d906124b7565b600d55565b606060038054610968906125ab565b6008546001600160a01b031633146112685760405162461bcd60e51b815260040161093d906124b7565b8051610e2390600f906020840190611e28565b6115b38161128c6001546000540390565b611296919061251d565b11156112b45760405162461bcd60e51b815260040161093d9061246e565b600e5462010000900460ff166113225760405162461bcd60e51b815260206004820152602d60248201527f596f752063616e6e6f74206d696e7420756e74696c207075626c69632073616c60448201526c19481a185cc81cdd185c9d1959609a1b606482015260840161093d565b3233146113715760405162461bcd60e51b815260206004820152601f60248201527f43616c6c65722073686f756c64206e6f74206265206120636f6e747261637400604482015260640161093d565b6008546001600160a01b0316331461148257600954600160a01b900460ff16156113cf5760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd081c185d5cd959608a1b604482015260640161093d565b600d546113db33611112565b6113e5908361251d565b11156113f2600d546119eb565b60405160200161140291906123c6565b6040516020818303038152906040529061142f5760405162461bcd60e51b815260040161093d919061245b565b5080600a5461143e9190612549565b3410156114825760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161093d565b610d7e3382611af1565b6001600160a01b0382163314156114b65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461154c5760405162461bcd60e51b815260040161093d906124b7565b600e805461ff001916610100179055565b600e5460009062010000900460ff166115775750600b5490565b50600a5490565b6008546001600160a01b031633146115a85760405162461bcd60e51b815260040161093d906124b7565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6115d5848484610b63565b6001600160a01b0383163b1561160e576115f184848484611b5d565b61160e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60006116238360125484611c54565b9392505050565b6008546001600160a01b031633146116545760405162461bcd60e51b815260040161093d906124b7565b6115b360de6116666001546000540390565b611670919061251d565b111561168e5760405162461bcd60e51b815260040161093d9061246e565b600e5460ff16156116e15760405162461bcd60e51b815260206004820152601760248201527f5465616d2068617320616c7265616479206d696e746564000000000000000000604482015260640161093d565b600e805460ff191660011790556011546111cf906001600160a01b031660de611af1565b606061171082611963565b6117745760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093d565b600e54610100900460ff1661181557600f8054611790906125ab565b80601f01602080910402602001604051908101604052809291908181526020018280546117bc906125ab565b80156118095780601f106117de57610100808354040283529160200191611809565b820191906000526020600020905b8154815290600101906020018083116117ec57829003601f168201915b50505050509050919050565b600060108054611824906125ab565b905011611840576040518060200160405280600081525061090d565b601061184b836119eb565b60405160200161185c9291906122b7565b60405160208183030381529060405292915050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c1661090d565b6008546001600160a01b031633146118c65760405162461bcd60e51b815260040161093d906124b7565b6001600160a01b03811661192b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093d565b610d7e81611b0b565b6008546001600160a01b0316331461195e5760405162461bcd60e51b815260040161093d906124b7565b600a55565b600080548210801561090d575050600090815260046020526040902054600160e01b161590565b6000816000548110156119d257600081815260046020526040902054600160e01b81166119d0575b806116235750600019016000818152600460205260409020546119b2565b505b604051636f96cda160e11b815260040160405180910390fd5b606081611a0f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a395780611a23816125e6565b9150611a329050600a83612535565b9150611a13565b60008167ffffffffffffffff811115611a5457611a54612657565b6040519080825280601f01601f191660200182016040528015611a7e576020820181803683370190505b5090505b8415611ae957611a93600183612568565b9150611aa0600a86612601565b611aab90603061251d565b60f81b818381518110611ac057611ac0612641565b60200101906001600160f81b031916908160001a905350611ae2600a86612535565b9450611a82565b949350505050565b610e23828260405180602001604052806000815250611c6a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b9290339089908890889060040161241e565b602060405180830381600087803b158015611bac57600080fd5b505af1925050508015611bdc575060408051601f3d908101601f19168201909252611bd9918101906121c2565b60015b611c37573d808015611c0a576040519150601f19603f3d011682016040523d82523d6000602084013e611c0f565b606091505b508051611c2f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600082611c618584611cd7565b14949350505050565b611c748383611d4b565b6001600160a01b0383163b15610d9c576000548281035b611c9e6000868380600101945086611b5d565b611cbb576040516368d2bf6b60e11b815260040160405180910390fd5b818110611c8b578160005414611cd057600080fd5b5050505050565b600081815b8451811015611d43576000858281518110611cf957611cf9612641565b60200260200101519050808311611d1f5760008381526020829052604090209250611d30565b600081815260208490526040902092505b5080611d3b816125e6565b915050611cdc565b509392505050565b6000546001600160a01b038316611d7457604051622e076360e81b815260040160405180910390fd5b81611d925760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611ddc5760005550505050565b828054611e34906125ab565b90600052602060002090601f016020900481019282611e565760008555611e9c565b82601f10611e6f57805160ff1916838001178555611e9c565b82800160010185558215611e9c579182015b82811115611e9c578251825591602001919060010190611e81565b50611ea8929150611eac565b5090565b5b80821115611ea85760008155600101611ead565b600067ffffffffffffffff831115611edb57611edb612657565b611eee601f8401601f19166020016124ec565b9050828152838383011115611f0257600080fd5b828260208301376000602084830101529392505050565b600082601f830112611f2a57600080fd5b8135602067ffffffffffffffff821115611f4657611f46612657565b8160051b611f558282016124ec565b838152828101908684018388018501891015611f7057600080fd5b600093505b85841015611f93578035835260019390930192918401918401611f75565b50979650505050505050565b80358015158114611faf57600080fd5b919050565b600060208284031215611fc657600080fd5b81356116238161266d565b60008060408385031215611fe457600080fd5b8235611fef8161266d565b91506020830135611fff8161266d565b809150509250929050565b60008060006060848603121561201f57600080fd5b833561202a8161266d565b9250602084013561203a8161266d565b929592945050506040919091013590565b6000806000806080858703121561206157600080fd5b843561206c8161266d565b9350602085013561207c8161266d565b925060408501359150606085013567ffffffffffffffff81111561209f57600080fd5b8501601f810187136120b057600080fd5b6120bf87823560208401611ec1565b91505092959194509250565b600080604083850312156120de57600080fd5b82356120e98161266d565b91506120f760208401611f9f565b90509250929050565b6000806040838503121561211357600080fd5b823561211e8161266d565b946020939093013593505050565b6000806040838503121561213f57600080fd5b823567ffffffffffffffff81111561215657600080fd5b61216285828601611f19565b95602094909401359450505050565b60006020828403121561218357600080fd5b61162382611f9f565b60006020828403121561219e57600080fd5b5035919050565b6000602082840312156121b757600080fd5b813561162381612682565b6000602082840312156121d457600080fd5b815161162381612682565b6000602082840312156121f157600080fd5b813567ffffffffffffffff81111561220857600080fd5b8201601f8101841361221957600080fd5b611ae984823560208401611ec1565b6000806040838503121561223b57600080fd5b82359150602083013567ffffffffffffffff81111561225957600080fd5b61226585828601611f19565b9150509250929050565b6000815180845261228781602086016020860161257f565b601f01601f19169290920160200192915050565b600081516122ad81856020860161257f565b9290920192915050565b600080845481600182811c9150808316806122d357607f831692505b60208084108214156122f357634e487b7160e01b86526022600452602486fd5b818015612307576001811461231857612345565b60ff19861689528489019650612345565b60008b81526020902060005b8681101561233d5781548b820152908501908301612324565b505084890196505b505050505050612369612358828661229b565b64173539b7b760d91b815260050190565b95945050505050565b7102cb7ba9031b0b71037b7363c9036b4b73a160751b81526000825161239f81601285016020870161257f565b6f204e4654732061742050726573616c6560801b6012939091019283015250602201919050565b7102cb7ba9031b0b71037b7363c9036b4b73a160751b8152600082516123f381601285016020870161257f565b73204e465473206174205075626c69632053616c6560601b6012939091019283015250602601919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124519083018461226f565b9695505050505050565b602081526000611623602083018461226f565b60208082526029908201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604082015268616c20737570706c7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561251557612515612657565b604052919050565b6000821982111561253057612530612615565b500190565b6000826125445761254461262b565b500490565b600081600019048311821515161561256357612563612615565b500290565b60008282101561257a5761257a612615565b500390565b60005b8381101561259a578181015183820152602001612582565b8381111561160e5750506000910152565b600181811c908216806125bf57607f821691505b602082108114156125e057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125fa576125fa612615565b5060010190565b6000826126105761261061262b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d7e57600080fd5b6001600160e01b031981168114610d7e57600080fdfea2646970667358221220bd7f7258e60718b1b24681bef59175d07061b2208a8a5ead4a17e33522f4aabc64736f6c63430008070033697066733a2f2f516d524a414c31486b6b755a4746746f617276576f3243746a657a4e51394c504a427073667a376770797972644e2f312e6a736f6e697066733a2f2f516d53685833484774487758344c5766725a6f6f674c467734796f66616b66706563447235653162624d524e57642f

Deployed Bytecode

0x6080604052600436106102e45760003560e01c8063714c539811610190578063a5a865dc116100dc578063c87b56dd11610095578063e985e9c51161006f578063e985e9c514610822578063f2fde38b1461086b578063f4a0a5281461088b578063fb626afd146108ab57600080fd5b8063c87b56dd146107c2578063ce606ee0146107e2578063dc33e6811461080257600080fd5b8063a5a865dc14610718578063a7f93ebd14610738578063b14f2a391461074d578063b88d4fde1461076d578063b8a20ed01461078d578063ba7a86b8146107ad57600080fd5b806395d89b4111610149578063a187c89b11610123578063a187c89b146106b8578063a22cb465146106ce578063a2309ff8146106ee578063a475b5dd1461070357600080fd5b806395d89b41146106705780639c12e1bc14610685578063a0712d68146106a557600080fd5b8063714c5398146105d2578063715018a6146105e7578063779a3ed3146105fc57806386758912146106125780638da5cb5b14610632578063910148461461065057600080fd5b80633ccfd60b1161024f57806359927044116102085780635c975abb116101e25780635c975abb1461055b5780636352211e1461057c5780636817c76c1461059c57806370a08231146105b257600080fd5b806359927044146105135780635a546223146105335780635b8ad4291461054657600080fd5b80633ccfd60b1461047757806342842e0e1461047f5780634f558e791461049f57806353431ecf146104bf57806354214f69146104d457806355f804b3146104f357600080fd5b80631525ff7d116102a15780631525ff7d146103d357806316c38b3c146103f357806318160ddd1461041357806323b872dd1461042c5780632cfac6ec1461044c5780632eb4a7ab1461046157600080fd5b806301ffc9a7146102e957806302456aa21461031e578063047fc9aa1461033557806306fdde0314610359578063081812fc1461037b578063095ea7b3146103b3575b600080fd5b3480156102f557600080fd5b506103096103043660046121a5565b6108c1565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610913565b005b34801561034157600080fd5b5061034b6115b381565b604051908152602001610315565b34801561036557600080fd5b5061036e610959565b604051610315919061245b565b34801561038757600080fd5b5061039b61039636600461218c565b6109eb565b6040516001600160a01b039091168152602001610315565b3480156103bf57600080fd5b506103336103ce366004612100565b610a2f565b3480156103df57600080fd5b506103336103ee366004611fb4565b610acf565b3480156103ff57600080fd5b5061033361040e366004612171565b610b1b565b34801561041f57600080fd5b506001546000540361034b565b34801561043857600080fd5b5061033361044736600461200a565b610b63565b34801561045857600080fd5b5061034b60de81565b34801561046d57600080fd5b5061034b60125481565b610333610cf4565b34801561048b57600080fd5b5061033361049a36600461200a565b610d81565b3480156104ab57600080fd5b506103096104ba36600461218c565b610da1565b3480156104cb57600080fd5b5061036e610dac565b3480156104e057600080fd5b50600e5461030990610100900460ff1681565b3480156104ff57600080fd5b5061033361050e3660046121df565b610de6565b34801561051f57600080fd5b5060115461039b906001600160a01b031681565b610333610541366004612228565b610e27565b34801561055257600080fd5b506103336110c0565b34801561056757600080fd5b5060095461030990600160a01b900460ff1681565b34801561058857600080fd5b5061039b61059736600461218c565b611107565b3480156105a857600080fd5b5061034b600a5481565b3480156105be57600080fd5b5061034b6105cd366004611fb4565b611112565b3480156105de57600080fd5b5061036e611161565b3480156105f357600080fd5b5061033361119b565b34801561060857600080fd5b5061034b600d5481565b34801561061e57600080fd5b5061033361062d36600461218c565b6111d1565b34801561063e57600080fd5b506008546001600160a01b031661039b565b34801561065c57600080fd5b5061033361066b36600461218c565b611200565b34801561067c57600080fd5b5061036e61122f565b34801561069157600080fd5b506103336106a03660046121df565b61123e565b6103336106b336600461218c565b61127b565b3480156106c457600080fd5b5061034b600b5481565b3480156106da57600080fd5b506103336106e93660046120cb565b61148c565b3480156106fa57600080fd5b5060005461034b565b34801561070f57600080fd5b50610333611522565b34801561072457600080fd5b50600e546103099062010000900460ff1681565b34801561074457600080fd5b5061034b61155d565b34801561075957600080fd5b50610333610768366004611fb4565b61157e565b34801561077957600080fd5b5061033361078836600461204b565b6115ca565b34801561079957600080fd5b506103096107a836600461212c565b611614565b3480156107b957600080fd5b5061033361162a565b3480156107ce57600080fd5b5061036e6107dd36600461218c565b611705565b3480156107ee57600080fd5b5060095461039b906001600160a01b031681565b34801561080e57600080fd5b5061034b61081d366004611fb4565b611871565b34801561082e57600080fd5b5061030961083d366004611fd1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561087757600080fd5b50610333610886366004611fb4565b61189c565b34801561089757600080fd5b506103336108a636600461218c565b611934565b3480156108b757600080fd5b5061034b600c5481565b60006301ffc9a760e01b6001600160e01b0319831614806108f257506380ac58cd60e01b6001600160e01b03198316145b8061090d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109465760405162461bcd60e51b815260040161093d906124b7565b60405180910390fd5b600e805462ff0000191662010000179055565b606060028054610968906125ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610994906125ab565b80156109e15780601f106109b6576101008083540402835291602001916109e1565b820191906000526020600020905b8154815290600101906020018083116109c457829003601f168201915b5050505050905090565b60006109f682611963565b610a13576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a3a82611107565b9050336001600160a01b03821614610a7357610a56813361083d565b610a73576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610af95760405162461bcd60e51b815260040161093d906124b7565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610b455760405162461bcd60e51b815260040161093d906124b7565b60098054911515600160a01b0260ff60a01b19909216919091179055565b6000610b6e8261198a565b9050836001600160a01b0316816001600160a01b031614610ba15760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610bee57610bd1863361083d565b610bee57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610c1557604051633a954ecd60e21b815260040160405180910390fd5b8015610c2057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610cab5760018401600081815260046020526040902054610ca9576000548114610ca95760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b03163314610d1e5760405162461bcd60e51b815260040161093d906124b7565b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610d6b576040519150601f19603f3d011682016040523d82523d6000602084013e610d70565b606091505b5050905080610d7e57600080fd5b50565b610d9c838383604051806020016040528060008152506115ca565b505050565b600061090d82611963565b6008546060906001600160a01b03163314610dd95760405162461bcd60e51b815260040161093d906124b7565b600f8054610968906125ab565b6008546001600160a01b03163314610e105760405162461bcd60e51b815260040161093d906124b7565b8051610e23906010906020840190611e28565b5050565b6115b382610e386001546000540390565b610e42919061251d565b1115610e605760405162461bcd60e51b815260040161093d9061246e565b600e5462010000900460ff1615610eb95760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e6e6f74206d696e742061667465722070726573616c65000000604482015260640161093d565b323314610f085760405162461bcd60e51b815260206004820152601f60248201527f43616c6c65722073686f756c64206e6f74206265206120636f6e747261637400604482015260640161093d565b6008546001600160a01b031633146110b657600954600160a01b900460ff1615610f665760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd081c185d5cd959608a1b604482015260640161093d565b6040516bffffffffffffffffffffffff193360601b166020820152610fa590829060340160405160208183030381529060405280519060200120611614565b6110035760405162461bcd60e51b815260206004820152602960248201527f596f7520617265206e6f74206f6e20746865206672656e6c69737420666f72206044820152681d1a1a5cc81b5a5b9d60ba1b606482015260840161093d565b600c5461100f33611112565b611019908461251d565b1115611026600c546119eb565b6040516020016110369190612372565b604051602081830303815290604052906110635760405162461bcd60e51b815260040161093d919061245b565b5081600b546110729190612549565b3410156110b65760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161093d565b610e233383611af1565b6008546001600160a01b031633146110ea5760405162461bcd60e51b815260040161093d906124b7565b600e805461ff001981166101009182900460ff1615909102179055565b600061090d8261198a565b60006001600160a01b03821661113b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546060906001600160a01b0316331461118e5760405162461bcd60e51b815260040161093d906124b7565b60108054610968906125ab565b6008546001600160a01b031633146111c55760405162461bcd60e51b815260040161093d906124b7565b6111cf6000611b0b565b565b6008546001600160a01b031633146111fb5760405162461bcd60e51b815260040161093d906124b7565b601255565b6008546001600160a01b0316331461122a5760405162461bcd60e51b815260040161093d906124b7565b600d55565b606060038054610968906125ab565b6008546001600160a01b031633146112685760405162461bcd60e51b815260040161093d906124b7565b8051610e2390600f906020840190611e28565b6115b38161128c6001546000540390565b611296919061251d565b11156112b45760405162461bcd60e51b815260040161093d9061246e565b600e5462010000900460ff166113225760405162461bcd60e51b815260206004820152602d60248201527f596f752063616e6e6f74206d696e7420756e74696c207075626c69632073616c60448201526c19481a185cc81cdd185c9d1959609a1b606482015260840161093d565b3233146113715760405162461bcd60e51b815260206004820152601f60248201527f43616c6c65722073686f756c64206e6f74206265206120636f6e747261637400604482015260640161093d565b6008546001600160a01b0316331461148257600954600160a01b900460ff16156113cf5760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd081c185d5cd959608a1b604482015260640161093d565b600d546113db33611112565b6113e5908361251d565b11156113f2600d546119eb565b60405160200161140291906123c6565b6040516020818303038152906040529061142f5760405162461bcd60e51b815260040161093d919061245b565b5080600a5461143e9190612549565b3410156114825760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161093d565b610d7e3382611af1565b6001600160a01b0382163314156114b65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461154c5760405162461bcd60e51b815260040161093d906124b7565b600e805461ff001916610100179055565b600e5460009062010000900460ff166115775750600b5490565b50600a5490565b6008546001600160a01b031633146115a85760405162461bcd60e51b815260040161093d906124b7565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6115d5848484610b63565b6001600160a01b0383163b1561160e576115f184848484611b5d565b61160e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60006116238360125484611c54565b9392505050565b6008546001600160a01b031633146116545760405162461bcd60e51b815260040161093d906124b7565b6115b360de6116666001546000540390565b611670919061251d565b111561168e5760405162461bcd60e51b815260040161093d9061246e565b600e5460ff16156116e15760405162461bcd60e51b815260206004820152601760248201527f5465616d2068617320616c7265616479206d696e746564000000000000000000604482015260640161093d565b600e805460ff191660011790556011546111cf906001600160a01b031660de611af1565b606061171082611963565b6117745760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093d565b600e54610100900460ff1661181557600f8054611790906125ab565b80601f01602080910402602001604051908101604052809291908181526020018280546117bc906125ab565b80156118095780601f106117de57610100808354040283529160200191611809565b820191906000526020600020905b8154815290600101906020018083116117ec57829003601f168201915b50505050509050919050565b600060108054611824906125ab565b905011611840576040518060200160405280600081525061090d565b601061184b836119eb565b60405160200161185c9291906122b7565b60405160208183030381529060405292915050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c1661090d565b6008546001600160a01b031633146118c65760405162461bcd60e51b815260040161093d906124b7565b6001600160a01b03811661192b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093d565b610d7e81611b0b565b6008546001600160a01b0316331461195e5760405162461bcd60e51b815260040161093d906124b7565b600a55565b600080548210801561090d575050600090815260046020526040902054600160e01b161590565b6000816000548110156119d257600081815260046020526040902054600160e01b81166119d0575b806116235750600019016000818152600460205260409020546119b2565b505b604051636f96cda160e11b815260040160405180910390fd5b606081611a0f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a395780611a23816125e6565b9150611a329050600a83612535565b9150611a13565b60008167ffffffffffffffff811115611a5457611a54612657565b6040519080825280601f01601f191660200182016040528015611a7e576020820181803683370190505b5090505b8415611ae957611a93600183612568565b9150611aa0600a86612601565b611aab90603061251d565b60f81b818381518110611ac057611ac0612641565b60200101906001600160f81b031916908160001a905350611ae2600a86612535565b9450611a82565b949350505050565b610e23828260405180602001604052806000815250611c6a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b9290339089908890889060040161241e565b602060405180830381600087803b158015611bac57600080fd5b505af1925050508015611bdc575060408051601f3d908101601f19168201909252611bd9918101906121c2565b60015b611c37573d808015611c0a576040519150601f19603f3d011682016040523d82523d6000602084013e611c0f565b606091505b508051611c2f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600082611c618584611cd7565b14949350505050565b611c748383611d4b565b6001600160a01b0383163b15610d9c576000548281035b611c9e6000868380600101945086611b5d565b611cbb576040516368d2bf6b60e11b815260040160405180910390fd5b818110611c8b578160005414611cd057600080fd5b5050505050565b600081815b8451811015611d43576000858281518110611cf957611cf9612641565b60200260200101519050808311611d1f5760008381526020829052604090209250611d30565b600081815260208490526040902092505b5080611d3b816125e6565b915050611cdc565b509392505050565b6000546001600160a01b038316611d7457604051622e076360e81b815260040160405180910390fd5b81611d925760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611ddc5760005550505050565b828054611e34906125ab565b90600052602060002090601f016020900481019282611e565760008555611e9c565b82601f10611e6f57805160ff1916838001178555611e9c565b82800160010185558215611e9c579182015b82811115611e9c578251825591602001919060010190611e81565b50611ea8929150611eac565b5090565b5b80821115611ea85760008155600101611ead565b600067ffffffffffffffff831115611edb57611edb612657565b611eee601f8401601f19166020016124ec565b9050828152838383011115611f0257600080fd5b828260208301376000602084830101529392505050565b600082601f830112611f2a57600080fd5b8135602067ffffffffffffffff821115611f4657611f46612657565b8160051b611f558282016124ec565b838152828101908684018388018501891015611f7057600080fd5b600093505b85841015611f93578035835260019390930192918401918401611f75565b50979650505050505050565b80358015158114611faf57600080fd5b919050565b600060208284031215611fc657600080fd5b81356116238161266d565b60008060408385031215611fe457600080fd5b8235611fef8161266d565b91506020830135611fff8161266d565b809150509250929050565b60008060006060848603121561201f57600080fd5b833561202a8161266d565b9250602084013561203a8161266d565b929592945050506040919091013590565b6000806000806080858703121561206157600080fd5b843561206c8161266d565b9350602085013561207c8161266d565b925060408501359150606085013567ffffffffffffffff81111561209f57600080fd5b8501601f810187136120b057600080fd5b6120bf87823560208401611ec1565b91505092959194509250565b600080604083850312156120de57600080fd5b82356120e98161266d565b91506120f760208401611f9f565b90509250929050565b6000806040838503121561211357600080fd5b823561211e8161266d565b946020939093013593505050565b6000806040838503121561213f57600080fd5b823567ffffffffffffffff81111561215657600080fd5b61216285828601611f19565b95602094909401359450505050565b60006020828403121561218357600080fd5b61162382611f9f565b60006020828403121561219e57600080fd5b5035919050565b6000602082840312156121b757600080fd5b813561162381612682565b6000602082840312156121d457600080fd5b815161162381612682565b6000602082840312156121f157600080fd5b813567ffffffffffffffff81111561220857600080fd5b8201601f8101841361221957600080fd5b611ae984823560208401611ec1565b6000806040838503121561223b57600080fd5b82359150602083013567ffffffffffffffff81111561225957600080fd5b61226585828601611f19565b9150509250929050565b6000815180845261228781602086016020860161257f565b601f01601f19169290920160200192915050565b600081516122ad81856020860161257f565b9290920192915050565b600080845481600182811c9150808316806122d357607f831692505b60208084108214156122f357634e487b7160e01b86526022600452602486fd5b818015612307576001811461231857612345565b60ff19861689528489019650612345565b60008b81526020902060005b8681101561233d5781548b820152908501908301612324565b505084890196505b505050505050612369612358828661229b565b64173539b7b760d91b815260050190565b95945050505050565b7102cb7ba9031b0b71037b7363c9036b4b73a160751b81526000825161239f81601285016020870161257f565b6f204e4654732061742050726573616c6560801b6012939091019283015250602201919050565b7102cb7ba9031b0b71037b7363c9036b4b73a160751b8152600082516123f381601285016020870161257f565b73204e465473206174205075626c69632053616c6560601b6012939091019283015250602601919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124519083018461226f565b9695505050505050565b602081526000611623602083018461226f565b60208082526029908201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604082015268616c20737570706c7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561251557612515612657565b604052919050565b6000821982111561253057612530612615565b500190565b6000826125445761254461262b565b500490565b600081600019048311821515161561256357612563612615565b500290565b60008282101561257a5761257a612615565b500390565b60005b8381101561259a578181015183820152602001612582565b8381111561160e5750506000910152565b600181811c908216806125bf57607f821691505b602082108114156125e057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125fa576125fa612615565b5060010190565b6000826126105761261061262b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d7e57600080fd5b6001600160e01b031981168114610d7e57600080fdfea2646970667358221220bd7f7258e60718b1b24681bef59175d07061b2208a8a5ead4a17e33522f4aabc64736f6c63430008070033

Deployed Bytecode Sourcemap

53923:5481:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23717:615;;;;;;;;;;-1:-1:-1;23717:615:0;;;;;:::i;:::-;;:::i;:::-;;;10893:14:1;;10886:22;10868:41;;10856:2;10841:18;23717:615:0;;;;;;;;58100:68;;;;;;;;;;;;;:::i;:::-;;54272:37;;;;;;;;;;;;54305:4;54272:37;;;;;11066:25:1;;;11054:2;11039:18;54272:37:0;10920:177:1;29364:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31310:204::-;;;;;;;;;;-1:-1:-1;31310:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10191:32:1;;;10173:51;;10161:2;10146:18;31310:204:0;10027:203:1;30858:386:0;;;;;;;;;;-1:-1:-1;30858:386:0;;;;;:::i;:::-;;:::i;58604:92::-;;;;;;;;;;-1:-1:-1;58604:92:0;;;;;:::i;:::-;;:::i;58176:84::-;;;;;;;;;;-1:-1:-1;58176:84:0;;;;;:::i;:::-;;:::i;22771:315::-;;;;;;;;;;-1:-1:-1;23037:12:0;;22824:7;23021:13;:28;22771:315;;40575:2800;;;;;;;;;;-1:-1:-1;40575:2800:0;;;;;:::i;:::-;;:::i;54316:40::-;;;;;;;;;;;;54353:3;54316:40;;54722:25;;;;;;;;;;;;;;;;59240:161;;;:::i;32200:185::-;;;;;;;;;;-1:-1:-1;32200:185:0;;;;;:::i;:::-;;:::i;58898:88::-;;;;;;;;;;-1:-1:-1;58898:88:0;;;;;:::i;:::-;;:::i;58384:102::-;;;;;;;;;;;;;:::i;54389:22::-;;;;;;;;;;-1:-1:-1;54389:22:0;;;;;;;;;;;57911:86;;;;;;;;;;-1:-1:-1;57911:86:0;;;;;:::i;:::-;;:::i;54643:70::-;;;;;;;;;;-1:-1:-1;54643:70:0;;;;-1:-1:-1;;;;;54643:70:0;;;55785:878;;;;;;:::i;:::-;;:::i;55013:87::-;;;;;;;;;;;;;:::i;54042:26::-;;;;;;;;;;-1:-1:-1;54042:26:0;;;;-1:-1:-1;;;54042:26:0;;;;;;29153:144;;;;;;;;;;-1:-1:-1;29153:144:0;;;;;:::i;:::-;;:::i;54077:37::-;;;;;;;;;;;;;;;;24396:224;;;;;;;;;;-1:-1:-1;24396:224:0;;;;;:::i;:::-;;:::i;57426:87::-;;;;;;;;;;;;;:::i;8228:103::-;;;;;;;;;;;;;:::i;54219:44::-;;;;;;;;;;;;;;;;58994:93;;;;;;;;;;-1:-1:-1;58994:93:0;;;;;:::i;:::-;;:::i;7577:87::-;;;;;;;;;;-1:-1:-1;7650:6:0;;-1:-1:-1;;;;;7650:6:0;7577:87;;58268:108;;;;;;;;;;-1:-1:-1;58268:108:0;;;;;:::i;:::-;;:::i;29533:104::-;;;;;;;;;;;;;:::i;57698:111::-;;;;;;;;;;-1:-1:-1;57698:111:0;;;;;:::i;:::-;;:::i;56671:747::-;;;;;;:::i;:::-;;:::i;54121:41::-;;;;;;;;;;;;;;;;31586:308;;;;;;;;;;-1:-1:-1;31586:308:0;;;;;:::i;:::-;;:::i;58811:79::-;;;;;;;;;;-1:-1:-1;58855:7:0;23419:13;58811:79;;54948:57;;;;;;;;;;;;;:::i;54418:24::-;;;;;;;;;;-1:-1:-1;54418:24:0;;;;;;;;;;;57521:169;;;;;;;;;;;;;:::i;58494:102::-;;;;;;;;;;-1:-1:-1;58494:102:0;;;;;:::i;:::-;;:::i;32456:399::-;;;;;;;;;;-1:-1:-1;32456:399:0;;;;;:::i;:::-;;:::i;59095:137::-;;;;;;;;;;-1:-1:-1;59095:137:0;;;;;:::i;:::-;;:::i;55493:284::-;;;;;;;;;;;;;:::i;55108:377::-;;;;;;;;;;-1:-1:-1;55108:377:0;;;;;:::i;:::-;;:::i;54005:28::-;;;;;;;;;;-1:-1:-1;54005:28:0;;;;-1:-1:-1;;;;;54005:28:0;;;58704:99;;;;;;;;;;-1:-1:-1;58704:99:0;;;;;:::i;:::-;;:::i;31965:164::-;;;;;;;;;;-1:-1:-1;31965:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32086:25:0;;;32062:4;32086:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31965:164;8486:201;;;;;;;;;;-1:-1:-1;8486:201:0;;;;;:::i;:::-;;:::i;58005:87::-;;;;;;;;;;-1:-1:-1;58005:87:0;;;;;:::i;:::-;;:::i;54171:41::-;;;;;;;;;;;;;;;;23717:615;23802:4;-1:-1:-1;;;;;;;;;24102:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;24179:25:0;;;24102:102;:179;;;-1:-1:-1;;;;;;;;;;24256:25:0;;;24102:179;24082:199;23717:615;-1:-1:-1;;23717:615:0:o;58100:68::-;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;;;;;;;;;58146:12:::1;:19:::0;;-1:-1:-1;;58146:19:0::1;::::0;::::1;::::0;;58100:68::o;29364:100::-;29418:13;29451:5;29444:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29364:100;:::o;31310:204::-;31378:7;31403:16;31411:7;31403;:16::i;:::-;31398:64;;31428:34;;-1:-1:-1;;;31428:34:0;;;;;;;;;;;31398:64;-1:-1:-1;31482:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31482:24:0;;31310:204::o;30858:386::-;30931:13;30947:16;30955:7;30947;:16::i;:::-;30931:32;-1:-1:-1;6381:10:0;-1:-1:-1;;;;;30980:28:0;;;30976:175;;31028:44;31045:5;6381:10;31965:164;:::i;31028:44::-;31023:128;;31100:35;;-1:-1:-1;;;31100:35:0;;;;;;;;;;;31023:128;31163:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;31163:29:0;-1:-1:-1;;;;;31163:29:0;;;;;;;;;31208:28;;31163:24;;31208:28;;;;;;;30920:324;30858:386;;:::o;58604:92::-;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;58669:10:::1;:24:::0;;-1:-1:-1;;;;;;58669:24:0::1;-1:-1:-1::0;;;;;58669:24:0;;;::::1;::::0;;;::::1;::::0;;58604:92::o;58176:84::-;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;58236:6:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;58236:21:0::1;-1:-1:-1::0;;;;58236:21:0;;::::1;::::0;;;::::1;::::0;;58176:84::o;40575:2800::-;40709:27;40739;40758:7;40739:18;:27::i;:::-;40709:57;;40824:4;-1:-1:-1;;;;;40783:45:0;40799:19;-1:-1:-1;;;;;40783:45:0;;40779:86;;40837:28;;-1:-1:-1;;;40837:28:0;;;;;;;;;;;40779:86;40879:27;39305:21;;;39132:15;39347:4;39340:36;39429:4;39413:21;;39519:26;;6381:10;40272:30;;;-1:-1:-1;;;;;39970:26:0;;40251:19;;;40248:55;41058:174;;41145:43;41162:4;6381:10;31965:164;:::i;41145:43::-;41140:92;;41197:35;;-1:-1:-1;;;41197:35:0;;;;;;;;;;;41140:92;-1:-1:-1;;;;;41249:16:0;;41245:52;;41274:23;;-1:-1:-1;;;41274:23:0;;;;;;;;;;;41245:52;41446:15;41443:160;;;41586:1;41565:19;41558:30;41443:160;-1:-1:-1;;;;;41981:24:0;;;;;;;:18;:24;;;;;;41979:26;;-1:-1:-1;;41979:26:0;;;42050:22;;;;;;;;;42048:24;;-1:-1:-1;42048:24:0;;;29052:11;29028:22;29024:40;29011:62;-1:-1:-1;;;29011:62:0;42343:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;42637:46:0;;42633:626;;42741:1;42731:11;;42709:19;42864:30;;;:17;:30;;;;;;42860:384;;43002:13;;42987:11;:28;42983:242;;43149:30;;;;:17;:30;;;;;:52;;;42983:242;42690:569;42633:626;43306:7;43302:2;-1:-1:-1;;;;;43287:27:0;43296:4;-1:-1:-1;;;;;43287:27:0;;;;;;;;;;;40698:2677;;;40575:2800;;;:::o;59240:161::-;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;59318:13:::1;::::0;59310:61:::1;::::0;59297:7:::1;::::0;-1:-1:-1;;;;;59318:13:0::1;::::0;59345:21:::1;::::0;59297:7;59310:61;59297:7;59310:61;59345:21;59318:13;59310:61:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59296:75;;;59390:2;59382:11;;;::::0;::::1;;59285:116;59240:161::o:0;32200:185::-;32338:39;32355:4;32361:2;32365:7;32338:39;;;;;;;;;;;;:16;:39::i;:::-;32200:185;;;:::o;58898:88::-;58952:4;58967:16;58975:7;58967;:16::i;58384:102::-;7650:6;;58446:13;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;58470:13:::1;58463:20;;;;;:::i;57911:86::-:0;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;57976:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57911:86:::0;:::o;55785:878::-;54305:4;55898:8;55882:13;23037:12;;22824:7;23021:13;:28;;22771:315;55882:13;:24;;;;:::i;:::-;:34;;55874:88;;;;-1:-1:-1;;;55874:88:0;;;;;;;:::i;:::-;55982:12;;;;;;;55981:13;55973:55;;;;-1:-1:-1;;;55973:55:0;;14935:2:1;55973:55:0;;;14917:21:1;14974:2;14954:18;;;14947:30;15013:31;14993:18;;;14986:59;15062:18;;55973:55:0;14733:353:1;55973:55:0;56047:9;56060:10;56047:23;56039:67;;;;-1:-1:-1;;;56039:67:0;;12631:2:1;56039:67:0;;;12613:21:1;12670:2;12650:18;;;12643:30;12709:33;12689:18;;;12682:61;12760:18;;56039:67:0;12429:355:1;56039:67:0;7650:6;;-1:-1:-1;;;;;7650:6:0;56122:10;:21;56119:485;;56171:6;;-1:-1:-1;;;56171:6:0;;;;56170:7;56162:35;;;;-1:-1:-1;;;56162:35:0;;12287:2:1;56162:35:0;;;12269:21:1;12326:2;12306:18;;;12299:30;-1:-1:-1;;;12345:18:1;;;12338:45;12400:18;;56162:35:0;12085:339:1;56162:35:0;56247:28;;-1:-1:-1;;56264:10:0;7198:2:1;7194:15;7190:53;56247:28:0;;;7178:66:1;56222:55:0;;56230:5;;7260:12:1;;56247:28:0;;;;;;;;;;;;56237:39;;;;;;56222:7;:55::i;:::-;56214:109;;;;-1:-1:-1;;;56214:109:0;;14525:2:1;56214:109:0;;;14507:21:1;14564:2;14544:18;;;14537:30;14603:34;14583:18;;;14576:62;-1:-1:-1;;;14654:18:1;;;14647:39;14703:19;;56214:109:0;14323:405:1;56214:109:0;56382:22;;56357:21;56367:10;56357:9;:21::i;:::-;56346:32;;:8;:32;:::i;:::-;:58;;56452:33;:22;;:31;:33::i;:::-;56413:93;;;;;;;;:::i;:::-;;;;;;;;;;;;;56338:170;;;;;-1:-1:-1;;;56338:170:0;;;;;;;;:::i;:::-;;56561:8;56546:12;;:23;;;;:::i;:::-;56533:9;:36;;56525:67;;;;-1:-1:-1;;;56525:67:0;;12991:2:1;56525:67:0;;;12973:21:1;13030:2;13010:18;;;13003:30;-1:-1:-1;;;13049:18:1;;;13042:48;13107:18;;56525:67:0;12789:342:1;56525:67:0;56624:31;56634:10;56646:8;56624:9;:31::i;55013:87::-;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;55082:10:::1;::::0;;-1:-1:-1;;55068:24:0;::::1;55082:10;::::0;;;::::1;;;55081:11;55068:24:::0;;::::1;;::::0;;55013:87::o;29153:144::-;29217:7;29260:27;29279:7;29260:18;:27::i;24396:224::-;24460:7;-1:-1:-1;;;;;24484:19:0;;24480:60;;24512:28;;-1:-1:-1;;;24512:28:0;;;;;;;;;;;24480:60;-1:-1:-1;;;;;;24558:25:0;;;;;:18;:25;;;;;;18951:13;24558:54;;24396:224::o;57426:87::-;7650:6;;57479:13;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;57503:7:::1;57496:14;;;;;:::i;8228:103::-:0;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;8293:30:::1;8320:1;8293:18;:30::i;:::-;8228:103::o:0;58994:93::-;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;59060:10:::1;:24:::0;58994:93::o;58268:108::-;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;58341:25:::1;:32:::0;58268:108::o;29533:104::-;29589:13;29622:7;29615:14;;;;;:::i;57698:111::-;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;57776:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;56671:747::-:0;54305:4;56757:8;56741:13;23037:12;;22824:7;23021:13;:28;;22771:315;56741:13;:24;;;;:::i;:::-;:34;;56733:88;;;;-1:-1:-1;;;56733:88:0;;;;;;;:::i;:::-;56840:12;;;;;;;56832:70;;;;-1:-1:-1;;;56832:70:0;;15293:2:1;56832:70:0;;;15275:21:1;15332:2;15312:18;;;15305:30;15371:34;15351:18;;;15344:62;-1:-1:-1;;;15422:18:1;;;15415:43;15475:19;;56832:70:0;15091:409:1;56832:70:0;56921:9;56934:10;56921:23;56913:67;;;;-1:-1:-1;;;56913:67:0;;12631:2:1;56913:67:0;;;12613:21:1;12670:2;12650:18;;;12643:30;12709:33;12689:18;;;12682:61;12760:18;;56913:67:0;12429:355:1;56913:67:0;7650:6;;-1:-1:-1;;;;;7650:6:0;56996:10;:21;56993:366;;57045:6;;-1:-1:-1;;;57045:6:0;;;;57044:7;57036:35;;;;-1:-1:-1;;;57036:35:0;;12287:2:1;57036:35:0;;;12269:21:1;12326:2;12306:18;;;12299:30;-1:-1:-1;;;12345:18:1;;;12338:45;12400:18;;57036:35:0;12085:339:1;57036:35:0;57132:25;;57107:21;57117:10;57107:9;:21::i;:::-;57096:32;;:8;:32;:::i;:::-;:61;;57205:36;:25;;:34;:36::i;:::-;57166:100;;;;;;;;:::i;:::-;;;;;;;;;;;;;57088:180;;;;;-1:-1:-1;;;57088:180:0;;;;;;;;:::i;:::-;;57316:8;57304:9;;:20;;;;:::i;:::-;57291:9;:33;;57283:64;;;;-1:-1:-1;;;57283:64:0;;12991:2:1;57283:64:0;;;12973:21:1;13030:2;13010:18;;;13003:30;-1:-1:-1;;;13049:18:1;;;13042:48;13107:18;;57283:64:0;12789:342:1;57283:64:0;57379:31;57389:10;57401:8;57379:9;:31::i;31586:308::-;-1:-1:-1;;;;;31685:31:0;;6381:10;31685:31;31681:61;;;31725:17;;-1:-1:-1;;;31725:17:0;;;;;;;;;;;31681:61;6381:10;31755:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;31755:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;31755:60:0;;;;;;;;;;31831:55;;10868:41:1;;;31755:49:0;;6381:10;31831:55;;10841:18:1;31831:55:0;;;;;;;31586:308;;:::o;54948:57::-;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;54985:10:::1;:17:::0;;-1:-1:-1;;54985:17:0::1;;;::::0;;54948:57::o;57521:169::-;57592:12;;57566:7;;57592:12;;;;;57588:66;;-1:-1:-1;57630:12:0;;;57521:169::o;57588:66::-;-1:-1:-1;57673:9:0;;;57521:169::o;58494:102::-;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;58567:13:::1;:26:::0;;-1:-1:-1;;;;;;58567:26:0::1;-1:-1:-1::0;;;;;58567:26:0;;;::::1;::::0;;;::::1;::::0;;58494:102::o;32456:399::-;32623:31;32636:4;32642:2;32646:7;32623:12;:31::i;:::-;-1:-1:-1;;;;;32669:14:0;;;:19;32665:183;;32708:56;32739:4;32745:2;32749:7;32758:5;32708:30;:56::i;:::-;32703:145;;32792:40;;-1:-1:-1;;;32792:40:0;;;;;;;;;;;32703:145;32456:399;;;;:::o;59095:137::-;59171:4;59186:43;59205:5;59212:10;;59224:4;59186:18;:43::i;:::-;59179:50;59095:137;-1:-1:-1;;;59095:137:0:o;55493:284::-;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;54305:4:::1;54353:3;55553:13;23037:12:::0;;22824:7;23021:13;:28;;22771:315;55553:13:::1;:26;;;;:::i;:::-;:36;;55545:90;;;;-1:-1:-1::0;;;55545:90:0::1;;;;;;;:::i;:::-;55655:10;::::0;::::1;;55654:11;55646:47;;;::::0;-1:-1:-1;;;55646:47:0;;11935:2:1;55646:47:0::1;::::0;::::1;11917:21:1::0;11974:2;11954:18;;;11947:30;12013:25;11993:18;;;11986:53;12056:18;;55646:47:0::1;11733:347:1::0;55646:47:0::1;55706:10;:17:::0;;-1:-1:-1;;55706:17:0::1;55719:4;55706:17;::::0;;55746:10:::1;::::0;55736:33:::1;::::0;-1:-1:-1;;;;;55746:10:0::1;54353:3;55736:9;:33::i;55108:377::-:0;55181:13;55217:16;55225:7;55217;:16::i;:::-;55209:76;;;;-1:-1:-1;;;55209:76:0;;14109:2:1;55209:76:0;;;14091:21:1;14148:2;14128:18;;;14121:30;14187:34;14167:18;;;14160:62;-1:-1:-1;;;14238:18:1;;;14231:45;14293:19;;55209:76:0;13907:411:1;55209:76:0;55302:10;;;;;;;55298:65;;55338:13;55331:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55108:377;;;:::o;55298:65::-;55406:1;55388:7;55382:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;55434:7;55443:18;:7;:16;:18::i;:::-;55417:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55375:102;55108:377;-1:-1:-1;;55108:377:0:o;58704:99::-;-1:-1:-1;;;;;24791:25:0;;58762:7;24791:25;;;:18;:25;;19088:2;24791:25;;;;18951:13;24791:49;;24790:80;58780:20;24702:176;8486:201;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8575:22:0;::::1;8567:73;;;::::0;-1:-1:-1;;;8567:73:0;;11528:2:1;8567:73:0::1;::::0;::::1;11510:21:1::0;11567:2;11547:18;;;11540:30;11606:34;11586:18;;;11579:62;-1:-1:-1;;;11657:18:1;;;11650:36;11703:19;;8567:73:0::1;11326:402:1::0;8567:73:0::1;8651:28;8670:8;8651:18;:28::i;58005:87::-:0;7650:6;;-1:-1:-1;;;;;7650:6:0;6381:10;7797:23;7789:68;;;;-1:-1:-1;;;7789:68:0;;;;;;;:::i;:::-;58068:9:::1;:21:::0;58005:87::o;33110:273::-;33167:4;33257:13;;33247:7;:23;33204:152;;;;-1:-1:-1;;33308:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33308:43:0;:48;;33110:273::o;26070:1129::-;26137:7;26172;26274:13;;26267:4;:20;26263:869;;;26312:14;26329:23;;;:17;:23;;;;;;-1:-1:-1;;;26418:23:0;;26414:699;;26937:113;26944:11;26937:113;;-1:-1:-1;;;27015:6:0;26997:25;;;;:17;:25;;;;;;26937:113;;26414:699;26289:843;26263:869;27160:31;;-1:-1:-1;;;27160:31:0;;;;;;;;;;;3863:723;3919:13;4140:10;4136:53;;-1:-1:-1;;4167:10:0;;;;;;;;;;;;-1:-1:-1;;;4167:10:0;;;;;3863:723::o;4136:53::-;4214:5;4199:12;4255:78;4262:9;;4255:78;;4288:8;;;;:::i;:::-;;-1:-1:-1;4311:10:0;;-1:-1:-1;4319:2:0;4311:10;;:::i;:::-;;;4255:78;;;4343:19;4375:6;4365:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4365:17:0;;4343:39;;4393:154;4400:10;;4393:154;;4427:11;4437:1;4427:11;;:::i;:::-;;-1:-1:-1;4496:10:0;4504:2;4496:5;:10;:::i;:::-;4483:24;;:2;:24;:::i;:::-;4470:39;;4453:6;4460;4453:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4453:56:0;;;;;;;;-1:-1:-1;4524:11:0;4533:2;4524:11;;:::i;:::-;;;4393:154;;;4571:6;3863:723;-1:-1:-1;;;;3863:723:0:o;33467:104::-;33536:27;33546:2;33550:8;33536:27;;;;;;;;;;;;:9;:27::i;8847:191::-;8940:6;;;-1:-1:-1;;;;;8957:17:0;;;-1:-1:-1;;;;;;8957:17:0;;;;;;;8990:40;;8940:6;;;8957:17;8940:6;;8990:40;;8921:16;;8990:40;8910:128;8847:191;:::o;47326:716::-;47510:88;;-1:-1:-1;;;47510:88:0;;47489:4;;-1:-1:-1;;;;;47510:45:0;;;;;:88;;6381:10;;47577:4;;47583:7;;47592:5;;47510:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47510:88:0;;;;;;;;-1:-1:-1;;47510:88:0;;;;;;;;;;;;:::i;:::-;;;47506:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47793:13:0;;47789:235;;47839:40;;-1:-1:-1;;;47839:40:0;;;;;;;;;;;47789:235;47982:6;47976:13;47967:6;47963:2;47959:15;47952:38;47506:529;-1:-1:-1;;;;;;47669:64:0;-1:-1:-1;;;47669:64:0;;-1:-1:-1;47326:716:0;;;;;;:::o;2033:190::-;2158:4;2211;2182:25;2195:5;2202:4;2182:12;:25::i;:::-;:33;;2033:190;-1:-1:-1;;;;2033:190:0:o;33987:681::-;34110:19;34116:2;34120:8;34110:5;:19::i;:::-;-1:-1:-1;;;;;34171:14:0;;;:19;34167:483;;34211:11;34225:13;34273:14;;;34306:233;34337:62;34376:1;34380:2;34384:7;;;;;;34393:5;34337:30;:62::i;:::-;34332:167;;34435:40;;-1:-1:-1;;;34435:40:0;;;;;;;;;;;34332:167;34534:3;34526:5;:11;34306:233;;34621:3;34604:13;;:20;34600:34;;34626:8;;;34600:34;34192:458;;33987:681;;;:::o;2584:675::-;2667:7;2710:4;2667:7;2725:497;2749:5;:12;2745:1;:16;2725:497;;;2783:20;2806:5;2812:1;2806:8;;;;;;;;:::i;:::-;;;;;;;2783:31;;2849:12;2833;:28;2829:382;;3335:13;3385:15;;;3421:4;3414:15;;;3468:4;3452:21;;2961:57;;2829:382;;;3335:13;3385:15;;;3421:4;3414:15;;;3468:4;3452:21;;3138:57;;2829:382;-1:-1:-1;2763:3:0;;;;:::i;:::-;;;;2725:497;;;-1:-1:-1;3239:12:0;2584:675;-1:-1:-1;;;2584:675:0:o;34941:1529::-;35006:20;35029:13;-1:-1:-1;;;;;35057:16:0;;35053:48;;35082:19;;-1:-1:-1;;;35082:19:0;;;;;;;;;;;35053:48;35116:13;35112:44;;35138:18;;-1:-1:-1;;;35138:18:0;;;;;;;;;;;35112:44;-1:-1:-1;;;;;35644:22:0;;;;;;:18;:22;;19088:2;35644:22;;:70;;35682:31;35670:44;;35644:70;;;29052:11;29028:22;29024:40;-1:-1:-1;30762:15:0;;30737:23;30733:45;29021:51;29011:62;35957:31;;;;:17;:31;;;;;:173;35975:12;36206:23;;;36244:101;36271:35;;36296:9;;;;;-1:-1:-1;;;;;36271:35:0;;;36288:1;;36271:35;;36288:1;;36271:35;36340:3;36330:7;:13;36244:101;;36361:13;:19;-1:-1:-1;32200:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:723::-;479:5;532:3;525:4;517:6;513:17;509:27;499:55;;550:1;547;540:12;499:55;586:6;573:20;612:4;635:18;631:2;628:26;625:52;;;657:18;;:::i;:::-;703:2;700:1;696:10;726:28;750:2;746;742:11;726:28;:::i;:::-;788:15;;;819:12;;;;851:15;;;885;;;881:24;;878:33;-1:-1:-1;875:53:1;;;924:1;921;914:12;875:53;946:1;937:10;;956:163;970:2;967:1;964:9;956:163;;;1027:17;;1015:30;;988:1;981:9;;;;;1065:12;;;;1097;;956:163;;;-1:-1:-1;1137:5:1;425:723;-1:-1:-1;;;;;;;425:723:1:o;1153:160::-;1218:20;;1274:13;;1267:21;1257:32;;1247:60;;1303:1;1300;1293:12;1247:60;1153:160;;;:::o;1318:247::-;1377:6;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1485:9;1472:23;1504:31;1529:5;1504:31;:::i;1830:388::-;1898:6;1906;1959:2;1947:9;1938:7;1934:23;1930:32;1927:52;;;1975:1;1972;1965:12;1927:52;2014:9;2001:23;2033:31;2058:5;2033:31;:::i;:::-;2083:5;-1:-1:-1;2140:2:1;2125:18;;2112:32;2153:33;2112:32;2153:33;:::i;:::-;2205:7;2195:17;;;1830:388;;;;;:::o;2223:456::-;2300:6;2308;2316;2369:2;2357:9;2348:7;2344:23;2340:32;2337:52;;;2385:1;2382;2375:12;2337:52;2424:9;2411:23;2443:31;2468:5;2443:31;:::i;:::-;2493:5;-1:-1:-1;2550:2:1;2535:18;;2522:32;2563:33;2522:32;2563:33;:::i;:::-;2223:456;;2615:7;;-1:-1:-1;;;2669:2:1;2654:18;;;;2641:32;;2223:456::o;2684:794::-;2779:6;2787;2795;2803;2856:3;2844:9;2835:7;2831:23;2827:33;2824:53;;;2873:1;2870;2863:12;2824:53;2912:9;2899:23;2931:31;2956:5;2931:31;:::i;:::-;2981:5;-1:-1:-1;3038:2:1;3023:18;;3010:32;3051:33;3010:32;3051:33;:::i;:::-;3103:7;-1:-1:-1;3157:2:1;3142:18;;3129:32;;-1:-1:-1;3212:2:1;3197:18;;3184:32;3239:18;3228:30;;3225:50;;;3271:1;3268;3261:12;3225:50;3294:22;;3347:4;3339:13;;3335:27;-1:-1:-1;3325:55:1;;3376:1;3373;3366:12;3325:55;3399:73;3464:7;3459:2;3446:16;3441:2;3437;3433:11;3399:73;:::i;:::-;3389:83;;;2684:794;;;;;;;:::o;3483:315::-;3548:6;3556;3609:2;3597:9;3588:7;3584:23;3580:32;3577:52;;;3625:1;3622;3615:12;3577:52;3664:9;3651:23;3683:31;3708:5;3683:31;:::i;:::-;3733:5;-1:-1:-1;3757:35:1;3788:2;3773:18;;3757:35;:::i;:::-;3747:45;;3483:315;;;;;:::o;3803:::-;3871:6;3879;3932:2;3920:9;3911:7;3907:23;3903:32;3900:52;;;3948:1;3945;3938:12;3900:52;3987:9;3974:23;4006:31;4031:5;4006:31;:::i;:::-;4056:5;4108:2;4093:18;;;;4080:32;;-1:-1:-1;;;3803:315:1:o;4123:416::-;4216:6;4224;4277:2;4265:9;4256:7;4252:23;4248:32;4245:52;;;4293:1;4290;4283:12;4245:52;4333:9;4320:23;4366:18;4358:6;4355:30;4352:50;;;4398:1;4395;4388:12;4352:50;4421:61;4474:7;4465:6;4454:9;4450:22;4421:61;:::i;:::-;4411:71;4529:2;4514:18;;;;4501:32;;-1:-1:-1;;;;4123:416:1:o;4544:180::-;4600:6;4653:2;4641:9;4632:7;4628:23;4624:32;4621:52;;;4669:1;4666;4659:12;4621:52;4692:26;4708:9;4692:26;:::i;4729:180::-;4788:6;4841:2;4829:9;4820:7;4816:23;4812:32;4809:52;;;4857:1;4854;4847:12;4809:52;-1:-1:-1;4880:23:1;;4729:180;-1:-1:-1;4729:180:1:o;4914:245::-;4972:6;5025:2;5013:9;5004:7;5000:23;4996:32;4993:52;;;5041:1;5038;5031:12;4993:52;5080:9;5067:23;5099:30;5123:5;5099:30;:::i;5164:249::-;5233:6;5286:2;5274:9;5265:7;5261:23;5257:32;5254:52;;;5302:1;5299;5292:12;5254:52;5334:9;5328:16;5353:30;5377:5;5353:30;:::i;5418:450::-;5487:6;5540:2;5528:9;5519:7;5515:23;5511:32;5508:52;;;5556:1;5553;5546:12;5508:52;5596:9;5583:23;5629:18;5621:6;5618:30;5615:50;;;5661:1;5658;5651:12;5615:50;5684:22;;5737:4;5729:13;;5725:27;-1:-1:-1;5715:55:1;;5766:1;5763;5756:12;5715:55;5789:73;5854:7;5849:2;5836:16;5831:2;5827;5823:11;5789:73;:::i;6058:416::-;6151:6;6159;6212:2;6200:9;6191:7;6187:23;6183:32;6180:52;;;6228:1;6225;6218:12;6180:52;6264:9;6251:23;6241:33;;6325:2;6314:9;6310:18;6297:32;6352:18;6344:6;6341:30;6338:50;;;6384:1;6381;6374:12;6338:50;6407:61;6460:7;6451:6;6440:9;6436:22;6407:61;:::i;:::-;6397:71;;;6058:416;;;;;:::o;6479:257::-;6520:3;6558:5;6552:12;6585:6;6580:3;6573:19;6601:63;6657:6;6650:4;6645:3;6641:14;6634:4;6627:5;6623:16;6601:63;:::i;:::-;6718:2;6697:15;-1:-1:-1;;6693:29:1;6684:39;;;;6725:4;6680:50;;6479:257;-1:-1:-1;;6479:257:1:o;6741:185::-;6783:3;6821:5;6815:12;6836:52;6881:6;6876:3;6869:4;6862:5;6858:16;6836:52;:::i;:::-;6904:16;;;;;6741:185;-1:-1:-1;;6741:185:1:o;7283:1301::-;7560:3;7589:1;7622:6;7616:13;7652:3;7674:1;7702:9;7698:2;7694:18;7684:28;;7762:2;7751:9;7747:18;7784;7774:61;;7828:4;7820:6;7816:17;7806:27;;7774:61;7854:2;7902;7894:6;7891:14;7871:18;7868:38;7865:165;;;-1:-1:-1;;;7929:33:1;;7985:4;7982:1;7975:15;8015:4;7936:3;8003:17;7865:165;8046:18;8073:104;;;;8191:1;8186:320;;;;8039:467;;8073:104;-1:-1:-1;;8106:24:1;;8094:37;;8151:16;;;;-1:-1:-1;8073:104:1;;8186:320;16040:1;16033:14;;;16077:4;16064:18;;8281:1;8295:165;8309:6;8306:1;8303:13;8295:165;;;8387:14;;8374:11;;;8367:35;8430:16;;;;8324:10;;8295:165;;;8299:3;;8489:6;8484:3;8480:16;8473:23;;8039:467;;;;;;;8522:56;8547:30;8573:3;8565:6;8547:30;:::i;:::-;-1:-1:-1;;;6991:20:1;;7036:1;7027:11;;6931:113;8522:56;8515:63;7283:1301;-1:-1:-1;;;;;7283:1301:1:o;8799:607::-;-1:-1:-1;;;9157:3:1;9150:33;9132:3;9212:6;9206:13;9228:62;9283:6;9278:2;9273:3;9269:12;9262:4;9254:6;9250:17;9228:62;:::i;:::-;-1:-1:-1;;;9349:2:1;9309:16;;;;9341:11;;;9334:39;-1:-1:-1;9397:2:1;9389:11;;8799:607;-1:-1:-1;8799:607:1:o;9411:611::-;-1:-1:-1;;;9769:3:1;9762:33;9744:3;9824:6;9818:13;9840:62;9895:6;9890:2;9885:3;9881:12;9874:4;9866:6;9862:17;9840:62;:::i;:::-;-1:-1:-1;;;9961:2:1;9921:16;;;;9953:11;;;9946:43;-1:-1:-1;10013:2:1;10005:11;;9411:611;-1:-1:-1;9411:611:1:o;10235:488::-;-1:-1:-1;;;;;10504:15:1;;;10486:34;;10556:15;;10551:2;10536:18;;10529:43;10603:2;10588:18;;10581:34;;;10651:3;10646:2;10631:18;;10624:31;;;10429:4;;10672:45;;10697:19;;10689:6;10672:45;:::i;:::-;10664:53;10235:488;-1:-1:-1;;;;;;10235:488:1:o;11102:219::-;11251:2;11240:9;11233:21;11214:4;11271:44;11311:2;11300:9;11296:18;11288:6;11271:44;:::i;13136:405::-;13338:2;13320:21;;;13377:2;13357:18;;;13350:30;13416:34;13411:2;13396:18;;13389:62;-1:-1:-1;;;13482:2:1;13467:18;;13460:39;13531:3;13516:19;;13136:405::o;13546:356::-;13748:2;13730:21;;;13767:18;;;13760:30;13826:34;13821:2;13806:18;;13799:62;13893:2;13878:18;;13546:356::o;15687:275::-;15758:2;15752:9;15823:2;15804:13;;-1:-1:-1;;15800:27:1;15788:40;;15858:18;15843:34;;15879:22;;;15840:62;15837:88;;;15905:18;;:::i;:::-;15941:2;15934:22;15687:275;;-1:-1:-1;15687:275:1:o;16093:128::-;16133:3;16164:1;16160:6;16157:1;16154:13;16151:39;;;16170:18;;:::i;:::-;-1:-1:-1;16206:9:1;;16093:128::o;16226:120::-;16266:1;16292;16282:35;;16297:18;;:::i;:::-;-1:-1:-1;16331:9:1;;16226:120::o;16351:168::-;16391:7;16457:1;16453;16449:6;16445:14;16442:1;16439:21;16434:1;16427:9;16420:17;16416:45;16413:71;;;16464:18;;:::i;:::-;-1:-1:-1;16504:9:1;;16351:168::o;16524:125::-;16564:4;16592:1;16589;16586:8;16583:34;;;16597:18;;:::i;:::-;-1:-1:-1;16634:9:1;;16524:125::o;16654:258::-;16726:1;16736:113;16750:6;16747:1;16744:13;16736:113;;;16826:11;;;16820:18;16807:11;;;16800:39;16772:2;16765:10;16736:113;;;16867:6;16864:1;16861:13;16858:48;;;-1:-1:-1;;16902:1:1;16884:16;;16877:27;16654:258::o;16917:380::-;16996:1;16992:12;;;;17039;;;17060:61;;17114:4;17106:6;17102:17;17092:27;;17060:61;17167:2;17159:6;17156:14;17136:18;17133:38;17130:161;;;17213:10;17208:3;17204:20;17201:1;17194:31;17248:4;17245:1;17238:15;17276:4;17273:1;17266:15;17130:161;;16917:380;;;:::o;17302:135::-;17341:3;-1:-1:-1;;17362:17:1;;17359:43;;;17382:18;;:::i;:::-;-1:-1:-1;17429:1:1;17418:13;;17302:135::o;17442:112::-;17474:1;17500;17490:35;;17505:18;;:::i;:::-;-1:-1:-1;17539:9:1;;17442:112::o;17559:127::-;17620:10;17615:3;17611:20;17608:1;17601:31;17651:4;17648:1;17641:15;17675:4;17672:1;17665:15;17691:127;17752:10;17747:3;17743:20;17740:1;17733:31;17783:4;17780:1;17773:15;17807:4;17804:1;17797:15;17823:127;17884:10;17879:3;17875:20;17872:1;17865:31;17915:4;17912:1;17905:15;17939:4;17936:1;17929:15;17955:127;18016:10;18011:3;18007:20;18004:1;17997:31;18047:4;18044:1;18037:15;18071:4;18068:1;18061:15;18087:131;-1:-1:-1;;;;;18162:31:1;;18152:42;;18142:70;;18208:1;18205;18198:12;18223:131;-1:-1:-1;;;;;;18297:32:1;;18287:43;;18277:71;;18344:1;18341;18334:12

Swarm Source

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