ETH Price: $3,000.63 (+1.00%)
Gas: 6 Gwei

Token

The Magus World (MGS)
 

Overview

Max Total Supply

6,666 MGS

Holders

2,736

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vinciz.eth
Balance
1 MGS
0x34947cbc62b99f5c300a3a28746a444e9db2ffb3
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:
TheMagus

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }

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

// File: @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/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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 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);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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



pragma solidity ^0.8.12;








contract TheMagus is
    ERC721A,
    IERC2981,
    Ownable,
    Pausable,
    ReentrancyGuard
{
    using Strings for uint256;

    string public contractURIstr = "ipfs://QmTyHfKzG1Xyopag7DZVnckT3ed6hKFrSkUu8e6iDf5DAN/";
    string public baseExtension = ".json";
    string public notRevealedUri = "ipfs://QmTyHfKzG1Xyopag7DZVnckT3ed6hKFrSkUu8e6iDf5DAN/";
    string private baseURI;

    bytes32 public whitelistMerkleRoot;
    bytes32 public allowlistMerkleRoot;
    bytes32 public oglistMerkleRoot;

    mapping(address => uint256) private _publiclistMintTracker;
    mapping(address => uint256) private _whitelistMintTracker;
    mapping(address => uint256) private _allowlistMintTracker;
    mapping(address => uint256) private _oglistMintTracker;

    uint256 public constant WHITELIST_PRICE = 0.033 ether;
    uint256 public constant PUBLIC_PRICE = 0 ether; 
    uint256 public royalty = 66; 

    uint256 public constant NUMBER_RESERVED_TOKENS = 150;

    bool public revealed = true;
    bool public whiteListSaleIsActive = true;
    bool public ogListSaleIsActive = true;
    bool public allowListSaleIsActive = false;
    bool public publicListSaleisActive = false;

    uint256 public constant MAX_SUPPLY = 6666;
    uint256 public maxPerTransactionOG = 3;
    uint256 public maxPerWalletOG = 3;
    uint256 public maxPerTransaction = 2;
    uint256 public maxPerWallet = 2;

    uint256 public currentId = 0;
    uint256 public publiclistMint = 0;
    uint256 public whitelistMint = 0;
    uint256 public oglistMint = 0;
    uint256 public allowlistMint = 0;
    uint256 public reservedTokensMinted = 0;

    bool public testWithDraw = false;
    bool public testReserved = false;

    //constructor() ERC721A("The Magus", "MGS") {}
    constructor( string memory _name, string memory _symbol) ERC721A("The Magus World", "MGS"){}
    
    function publicMint(
        uint256 numberOfTokens
    )
        external
        payable
        isSaleActive(publicListSaleisActive)
        canClaimTokenPublic(numberOfTokens)
        isCorrectPaymentPublic(PUBLIC_PRICE, numberOfTokens)
        isCorrectAmount(numberOfTokens)
        isSupplyRemaining(numberOfTokens)
        nonReentrant
        whenNotPaused
    {
        _safeMint(msg.sender, numberOfTokens);
        currentId = currentId + numberOfTokens;
        publiclistMint = publiclistMint + numberOfTokens;
        _publiclistMintTracker[msg.sender] =
            _publiclistMintTracker[msg.sender] +
            numberOfTokens;
    }


    function mintWhitelist(
        bytes32[] calldata merkleProof,
        uint256 numberOfTokens
    )
        external
        payable
        isSaleActive(whiteListSaleIsActive)
        isValidMerkleProof(merkleProof, whitelistMerkleRoot)
        canClaimTokenWL(numberOfTokens)
        isCorrectPayment(WHITELIST_PRICE, numberOfTokens)
        isCorrectAmount(numberOfTokens)
        isSupplyRemaining(numberOfTokens)
        nonReentrant
        whenNotPaused
    {
        _safeMint(msg.sender, numberOfTokens);
        currentId = currentId + numberOfTokens;
        whitelistMint = whitelistMint + numberOfTokens;
        _whitelistMintTracker[msg.sender] =
            _whitelistMintTracker[msg.sender] +
            numberOfTokens;
    }

    function mintOGlist(
        bytes32[] calldata merkleProof,
        uint256 numberOfTokens
    )
        external
        payable
        isSaleActive(ogListSaleIsActive)
        isValidMerkleProof(merkleProof, oglistMerkleRoot)
        canClaimTokenOG(numberOfTokens)
        isCorrectPaymentOG(WHITELIST_PRICE, numberOfTokens)
        isCorrectAmountOG(numberOfTokens)
        isSupplyRemaining(numberOfTokens)
        nonReentrant
        whenNotPaused
    {
        _safeMint(msg.sender, numberOfTokens);
        currentId = currentId + numberOfTokens;
        oglistMint = oglistMint + numberOfTokens;
        _oglistMintTracker[msg.sender] =
            _oglistMintTracker[msg.sender] +
            numberOfTokens;
    }

    function mintAllowlist(
        bytes32[] calldata merkleProof,
        uint256 numberOfTokens
    )
        external
        payable
        isSaleActive(allowListSaleIsActive)
        isValidMerkleProof(merkleProof, allowlistMerkleRoot)
        canClaimTokenAL(numberOfTokens)
        isCorrectPayment(WHITELIST_PRICE, numberOfTokens)
        isCorrectAmount(numberOfTokens)
        isSupplyRemaining(numberOfTokens)
        nonReentrant
        whenNotPaused
    {
        _safeMint(msg.sender, numberOfTokens);
        currentId = currentId + numberOfTokens;
        allowlistMint = allowlistMint + numberOfTokens;
        _allowlistMintTracker[msg.sender] =
            _allowlistMintTracker[msg.sender] +
            numberOfTokens;
    }

    function mintReservedToken(address to, uint256 numberOfTokens)
        external
        canReserveToken(numberOfTokens)
        isNonZero(numberOfTokens)
        nonReentrant
        onlyOwner
    {
        testReserved = true;
        _safeMint(to, numberOfTokens);
        reservedTokensMinted = reservedTokensMinted + numberOfTokens;
    }

    function withdraw() external onlyOwner {
        testWithDraw = true;
        payable(owner()).transfer(address(this).balance);
    }


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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedUri;
        }

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

    function contractURI() 
        external 
        view 
        returns 
        (string memory) 
    {
        return contractURIstr;
    }

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

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return _ownershipOf(tokenId);
    }

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

    function setReveal(bool _reveal) 
        public 
        onlyOwner 
    {
        revealed = _reveal;
    }

    function setBaseURI(string memory _newBaseURI) 
        public 
        onlyOwner 
    {
        baseURI = _newBaseURI;
    }

    function setNotRevealedURI(string memory _notRevealedURI) 
        public 
        onlyOwner 
    {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setContractURI(string calldata newuri) 
        external 
        onlyOwner
    {
        contractURIstr = newuri;
    }

    function setWhitelistMerkleRoot(bytes32 merkleRoot) 
        external 
        onlyOwner 
    {
        whitelistMerkleRoot = merkleRoot;
    }

    function setOGlistMerkleRoot(bytes32 merkleRoot) 
        external 
        onlyOwner 
    {
        oglistMerkleRoot = merkleRoot;
    }

    function setAllowlistMerkleRoot(bytes32 merkleRoot) 
        external 
        onlyOwner 
    {
        allowlistMerkleRoot = merkleRoot;
    }

    function pause() 
        external 
        onlyOwner 
    {
        _pause();
    }

    function unpause() 
        external 
        onlyOwner 
    {
        _unpause();
    }

    function flipWhitelistSaleState() 
        external 
        onlyOwner 
    {
        whiteListSaleIsActive = !whiteListSaleIsActive;
    }

    function flipOGlistSaleState() 
        external 
        onlyOwner 
    {
        ogListSaleIsActive = !ogListSaleIsActive;
    }

    function flipAllowlistSaleState() 
        external 
        onlyOwner 
    {
        allowListSaleIsActive = !allowListSaleIsActive;
    }

    function flipPubliclistSaleState() 
        external 
        onlyOwner 
    {
        publicListSaleisActive = !publicListSaleisActive;
    }

    function updateSaleDetails(
        uint256 _royalty
    )
        external
        isNonZero(_royalty)
        onlyOwner
    {
        royalty = _royalty;
    }

    function isApprovedForAll(
        address _owner,
        address _operator
    ) 
        public 
        override 
        view 
        returns 
        (bool isOperator) 
    {
        if (_operator == address(0x58807baD0B376efc12F5AD86aAc70E78ed67deaE)) {
            return true;
        }
        
        return ERC721A.isApprovedForAll(_owner, _operator);
    }

    function royaltyInfo(
        uint256, /*_tokenId*/
        uint256 _salePrice
    )
        external
        view
        override(IERC2981)
        returns (address Receiver, uint256 royaltyAmount)
    {
        return (owner(), (_salePrice * royalty) / 1000); //100*10 = 1000
    }

    modifier isValidMerkleProof(
        bytes32[] calldata merkleProof, 
        bytes32 root
    ) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address does not exist in list"
        );
        _;
    }

    modifier canClaimTokenPublic(uint256 numberOfTokens) {
        require(
            _publiclistMintTracker[msg.sender] + numberOfTokens <= maxPerWallet,
            "Cannot claim more than allowed limit per address"
        );
        _;
    }

    modifier canClaimTokenWL(uint256 numberOfTokens) {
        require(
            _whitelistMintTracker[msg.sender] + numberOfTokens <= maxPerWallet,
            "Cannot claim more than allowed limit per address"
        );
        _;
    }

    modifier canClaimTokenOG(uint256 numberOfTokens) {
        require(
            _oglistMintTracker[msg.sender] + numberOfTokens <= maxPerWalletOG,
            "Cannot claim more than allowed limit per address"
        );
        _;
    }

    modifier canClaimTokenAL(uint256 numberOfTokens) {
        require(
            _allowlistMintTracker[msg.sender] + numberOfTokens <= maxPerWallet,
            "Cannot claim more than allowed limit per address"
        );
        _;
    }

    modifier canReserveToken(uint256 numberOfTokens) {
        require(
            reservedTokensMinted + numberOfTokens <= NUMBER_RESERVED_TOKENS,
            "Cannot reserve more than 10 tokens"
        );
        _;
    }

    modifier isCorrectPaymentPublic(
        uint256 price, 
        uint256 numberOfTokens
    ) {
        require(
                price * numberOfTokens== msg.value,
                "Incorrect ETH value sent"
            );
            _;  
    }

    modifier isCorrectPayment(
        uint256 price, 
        uint256 numberOfTokens
    ) {
        if(numberMinted(msg.sender)== 0) {
            require(
                price * (numberOfTokens-1) == msg.value,
                "Incorrect ETH value sent"
            );
            _;  
    } else if(numberMinted(msg.sender) == 1) {
        require(
                price * (numberOfTokens) == msg.value,
                "Incorrect ETH value sent"
            );
            _;  
        }
    }


    modifier isCorrectPaymentOG(
        uint256 price, 
        uint256 numberOfTokens
    ) {
        if(numberMinted(msg.sender) == 0 && numberOfTokens > 1) {
            require(
                price * (numberOfTokens-2) == msg.value,
                "Incorrect ETH value sent"
            );
            _;
        } else if(numberMinted(msg.sender) == 0 && numberOfTokens == 1) {
            require(
            price * (numberOfTokens-1) == msg.value,
            "Incorrect ETH value sent"
            );
            _;
        } else if(numberMinted(msg.sender) == 1 && numberOfTokens == 1) {
            require(
            price * (numberOfTokens-1) == msg.value,
            "Incorrect ETH value sent"
            );
            _;
        } else if(numberMinted(msg.sender) == 1 && numberOfTokens == 2) {
            require(
            price * (numberOfTokens-1) == msg.value,
            "Incorrect ETH value sent"
            );
            _;
        } else if(numberMinted(msg.sender) == 2 && numberOfTokens == 1) {
            require(
            price * numberOfTokens == msg.value,
            "Incorrect ETH value sent"
            );
            _;
        }
    }




    modifier isCorrectAmount(uint256 numberOfTokens) {
        require(
            numberOfTokens > 0 && numberOfTokens <= maxPerTransaction,
            "Max per transaction reached, sale not allowed"
        );
        _;
    }


    modifier isCorrectAmountOG(uint256 numberOfTokens) {
        require(
            numberOfTokens > 0 && numberOfTokens <= maxPerTransactionOG,
            "Max per transaction reached, sale not allowed"
        );
        _;
    }

    modifier isSupplyRemaining(uint256 numberOfTokens) {
        require(
            totalSupply() + numberOfTokens <=
                MAX_SUPPLY - (NUMBER_RESERVED_TOKENS - reservedTokensMinted),
            "Purchase would exceed max supply"
        );
        _;
    }

    modifier isSaleActive(bool active) {
        require(active, "Sale must be active to mint");
        _;
    }

    modifier isNonZero(uint256 num) {
        require(num > 0, "Parameter value cannot be zero");
        _;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURIstr","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipAllowlistSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipOGlistSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPubliclistSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransactionOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintAllowlist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintOGlist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintReservedToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"ogListSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oglistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oglistMint","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicListSaleisActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publiclistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"Receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setAllowlistMerkleRoot","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setOGlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"testReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"testWithDraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_royalty","type":"uint256"}],"name":"updateSaleDetails","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603660808181529062003bf560a039600a9062000022908262000286565b50604080518082019091526005815264173539b7b760d91b6020820152600b906200004e908262000286565b5060405180606001604052806036815260200162003bf560369139600c9062000078908262000286565b5060426015556016805464ffffffffff1916620101011790556003601781905560185560026019819055601a556000601b819055601c819055601d819055601e819055601f8190556020556021805461ffff19169055348015620000db57600080fd5b5060405162003c2b38038062003c2b833981016040819052620000fe9162000409565b6040518060400160405280600f81526020016e151a1948135859dd5cc815dbdc9b19608a1b815250604051806040016040528060038152602001624d475360e81b815250816002908162000153919062000286565b50600362000162828262000286565b505060016000555062000175336200018f565b50506008805460ff60a01b19169055600160095562000473565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200020c57607f821691505b6020821081036200022d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200028157600081815260208120601f850160051c810160208610156200025c5750805b601f850160051c820191505b818110156200027d5782815560010162000268565b5050505b505050565b81516001600160401b03811115620002a257620002a2620001e1565b620002ba81620002b38454620001f7565b8462000233565b602080601f831160018114620002f25760008415620002d95750858301515b600019600386901b1c1916600185901b1785556200027d565b600085815260208120601f198616915b82811015620003235788860151825594840194600190910190840162000302565b5085821015620003425787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200036457600080fd5b81516001600160401b0380821115620003815762000381620001e1565b604051601f8301601f19908116603f01168101908282118183101715620003ac57620003ac620001e1565b81604052838152602092508683858801011115620003c957600080fd5b600091505b83821015620003ed5785820183015181830184015290820190620003ce565b83821115620003ff5760008385830101525b9695505050505050565b600080604083850312156200041d57600080fd5b82516001600160401b03808211156200043557600080fd5b620004438683870162000352565b935060208501519150808211156200045a57600080fd5b50620004698582860162000352565b9150509250929050565b61377280620004836000396000f3fe6080604052600436106104105760003560e01c8063715018a61161021e578063c668286211610123578063e00dd161116100ab578063f2fde38b1161007a578063f2fde38b14610b73578063f3e3882114610b93578063f5f1713914610ba9578063f6d8259914610bc9578063f95df41414610bdc57600080fd5b8063e00dd16114610b08578063e8a3d48514610b1e578063e985e9c514610b33578063f2c4ce1e14610b5357600080fd5b8063ccc4c69a116100f2578063ccc4c69a14610a73578063d1beca6414610a92578063da3ef23f14610aa7578063dc33e68114610ac7578063de2ed53414610ae757600080fd5b8063c668286214610a13578063c87b56dd14610a28578063c89ac96514610a48578063c9ea545a14610a5e57600080fd5b8063a174bb71116101a6578063aa98e0c611610175578063aa98e0c614610986578063b10008ff1461099c578063b22edfbc146109be578063b88d4fde146109d3578063bd32fb66146109f357600080fd5b8063a174bb711461091e578063a22cb4651461093e578063a6d612f91461095e578063aa8f4b561461097157600080fd5b80638da5cb5b116101ed5780638da5cb5b146108565780639231ab2a14610874578063938e3d7b146108ca57806395d89b41146108ea578063a149a907146108ff57600080fd5b8063715018a6146107f6578063785889821461080b578063804f43cd1461082b5780638456cb591461084157600080fd5b80632a55205a116103245780634341f83b116102ac57806355f804b31161027b57806355f804b3146107625780635c975abb14610782578063611f3f10146107a15780636352211e146107b657806370a08231146107d657600080fd5b80634341f83b146106fc578063453c23101461071c5780634b980d6714610732578063518302271461074857600080fd5b806338be8142116102f357806338be8142146106875780633ccfd60b1461069c5780633f4ba83a146106b157806341fbddbd146106c657806342842e0e146106dc57600080fd5b80632a55205a146106095780632db115441461064857806332cb6b0c1461065b57806336183c051461067157600080fd5b806315485ad1116103a7578063228ab9de11610376578063228ab9de1461058757806323b872dd1461059d578063293108e0146105bd57806329ee566c146105d35780632a3f300c146105e957600080fd5b806315485ad114610527578063160e84321461054157806317e7f2951461055757806318160ddd1461057257600080fd5b8063081812fc116103e3578063081812fc14610496578063081c8c44146104ce578063095ea7b3146104e35780631493d83a1461050357600080fd5b806301ffc9a7146104155780630612d3641461044a57806306fdde031461046c57806307d441e414610481575b600080fd5b34801561042157600080fd5b50610435610430366004612d9c565b610bfc565b60405190151581526020015b60405180910390f35b34801561045657600080fd5b5061045f610c27565b6040516104419190612e11565b34801561047857600080fd5b5061045f610cb5565b61049461048f366004612e24565b610d47565b005b3480156104a257600080fd5b506104b66104b1366004612e9e565b611180565b6040516001600160a01b039091168152602001610441565b3480156104da57600080fd5b5061045f6111c4565b3480156104ef57600080fd5b506104946104fe366004612ed3565b6111d1565b34801561050f57600080fd5b5061051960185481565b604051908152602001610441565b34801561053357600080fd5b506021546104359060ff1681565b34801561054d57600080fd5b5061051960105481565b34801561056357600080fd5b5061051966753d533d96800081565b34801561057e57600080fd5b5061051961125e565b34801561059357600080fd5b50610519601c5481565b3480156105a957600080fd5b506104946105b8366004612efd565b61126c565b3480156105c957600080fd5b50610519600f5481565b3480156105df57600080fd5b5061051960155481565b3480156105f557600080fd5b50610494610604366004612f49565b611277565b34801561061557600080fd5b50610629610624366004612f64565b611292565b604080516001600160a01b039093168352602083019190915201610441565b610494610656366004612e9e565b6112cd565b34801561066757600080fd5b50610519611a0a81565b34801561067d57600080fd5b50610519601e5481565b34801561069357600080fd5b50610494611472565b3480156106a857600080fd5b5061049461149b565b3480156106bd57600080fd5b506104946114fd565b3480156106d257600080fd5b50610519601f5481565b3480156106e857600080fd5b506104946106f7366004612efd565b61150f565b34801561070857600080fd5b50610494610717366004612e9e565b61152a565b34801561072857600080fd5b50610519601a5481565b34801561073e57600080fd5b5061051960195481565b34801561075457600080fd5b506016546104359060ff1681565b34801561076e57600080fd5b5061049461077d366004613011565b611589565b34801561078e57600080fd5b50600854600160a01b900460ff16610435565b3480156107ad57600080fd5b50610519600081565b3480156107c257600080fd5b506104b66107d1366004612e9e565b6115a1565b3480156107e257600080fd5b506105196107f1366004613059565b6115b3565b34801561080257600080fd5b50610494611601565b34801561081757600080fd5b50610494610826366004612ed3565b611613565b34801561083757600080fd5b50610519601d5481565b34801561084d57600080fd5b50610494611732565b34801561086257600080fd5b506008546001600160a01b03166104b6565b34801561088057600080fd5b5061089461088f366004612e9e565b611742565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610441565b3480156108d657600080fd5b506104946108e5366004613074565b611768565b3480156108f657600080fd5b5061045f61177d565b34801561090b57600080fd5b5060165461043590610100900460ff1681565b34801561092a57600080fd5b506016546104359062010000900460ff1681565b34801561094a57600080fd5b506104946109593660046130e5565b61178c565b61049461096c366004612e24565b611821565b34801561097d57600080fd5b50610494611ba7565b34801561099257600080fd5b50610519600e5481565b3480156109a857600080fd5b5060165461043590640100000000900460ff1681565b3480156109ca57600080fd5b50610519609681565b3480156109df57600080fd5b506104946109ee366004613118565b611bce565b3480156109ff57600080fd5b50610494610a0e366004612e9e565b611c1f565b348015610a1f57600080fd5b5061045f611c2c565b348015610a3457600080fd5b5061045f610a43366004612e9e565b611c39565b348015610a5457600080fd5b5061051960175481565b348015610a6a57600080fd5b50610494611da8565b348015610a7f57600080fd5b5060215461043590610100900460ff1681565b348015610a9e57600080fd5b50610494611dd3565b348015610ab357600080fd5b50610494610ac2366004613011565b611df8565b348015610ad357600080fd5b50610519610ae2366004613059565b611e0c565b348015610af357600080fd5b50601654610435906301000000900460ff1681565b348015610b1457600080fd5b50610519601b5481565b348015610b2a57600080fd5b5061045f611e17565b348015610b3f57600080fd5b50610435610b4e366004613193565b611e26565b348015610b5f57600080fd5b50610494610b6e366004613011565b611e84565b348015610b7f57600080fd5b50610494610b8e366004613059565b611e98565b348015610b9f57600080fd5b5061051960205481565b348015610bb557600080fd5b50610494610bc4366004612e9e565b611f0e565b610494610bd7366004612e24565b611f1b565b348015610be857600080fd5b50610494610bf7366004612e9e565b6122a3565b60006001600160e01b0319821663152a902d60e11b1480610c215750610c21826122b0565b92915050565b600a8054610c34906131bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610c60906131bd565b8015610cad5780601f10610c8257610100808354040283529160200191610cad565b820191906000526020600020905b815481529060010190602001808311610c9057829003601f168201915b505050505081565b606060028054610cc4906131bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf0906131bd565b8015610d3d5780601f10610d1257610100808354040283529160200191610d3d565b820191906000526020600020905b815481529060010190602001808311610d2057829003601f168201915b5050505050905090565b60165462010000900460ff1680610d795760405162461bcd60e51b8152600401610d70906131f7565b60405180910390fd5b8383601054610dec838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516001600160601b03193360601b16602082015285925060340190505b60405160208183030381529060405280519060200120612300565b610e085760405162461bcd60e51b8152600401610d709061322e565b60185433600090815260146020526040902054869190610e2990839061327b565b1115610e475760405162461bcd60e51b8152600401610d7090613293565b66753d533d96800086610e5933611e0c565b158015610e665750600181115b15610fac5734610e776002836132e3565b610e8190846132fa565b14610e9e5760405162461bcd60e51b8152600401610d7090613319565b87600081118015610eb157506017548111155b610ecd5760405162461bcd60e51b8152600401610d7090613350565b886020546096610edd91906132e3565b610ee990611a0a6132e3565b81610ef261125e565b610efc919061327b565b1115610f1a5760405162461bcd60e51b8152600401610d709061339d565b600260095403610f3c5760405162461bcd60e51b8152600401610d70906133d2565b6002600955610f49612316565b610f53338b612363565b89601b54610f61919061327b565b601b55601e54610f72908b9061327b565b601e5533600090815260146020526040902054610f90908b9061327b565b3360009081526014602052604090205550506001600955611174565b610fb533611e0c565b158015610fc25750806001145b15610fd35734610e776001836132e3565b610fdc33611e0c565b6001148015610feb5750806001145b15610ffc5734610e776001836132e3565b61100533611e0c565b60011480156110145750806002145b156110255734610e776001836132e3565b61102e33611e0c565b600214801561103d5750806001145b15611174573461104d82846132fa565b1461106a5760405162461bcd60e51b8152600401610d7090613319565b8760008111801561107d57506017548111155b6110995760405162461bcd60e51b8152600401610d7090613350565b8860205460966110a991906132e3565b6110b590611a0a6132e3565b816110be61125e565b6110c8919061327b565b11156110e65760405162461bcd60e51b8152600401610d709061339d565b6002600954036111085760405162461bcd60e51b8152600401610d70906133d2565b6002600955611115612316565b61111f338b612363565b89601b5461112d919061327b565b601b55601e5461113e908b9061327b565b601e553360009081526014602052604090205461115c908b9061327b565b33600090815260146020526040902055505060016009555b50505050505050505050565b600061118b8261237d565b6111a8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600c8054610c34906131bd565b60006111dc826115a1565b9050806001600160a01b0316836001600160a01b0316036112105760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590611230575061122e8133611e26565b155b1561124e576040516367d9dca160e11b815260040160405180910390fd5b6112598383836123b6565b505050565b600154600054036000190190565b611259838383612412565b61127f612626565b6016805460ff1916911515919091179055565b6000806112a76008546001600160a01b031690565b6103e8601554856112b891906132fa565b6112c2919061341f565b915091509250929050565b601654640100000000900460ff16806112f85760405162461bcd60e51b8152600401610d70906131f7565b601a543360009081526011602052604090205483919061131990839061327b565b11156113375760405162461bcd60e51b8152600401610d7090613293565b6000833461134582846132fa565b146113625760405162461bcd60e51b8152600401610d7090613319565b8460008111801561137557506019548111155b6113915760405162461bcd60e51b8152600401610d7090613350565b8560205460966113a191906132e3565b6113ad90611a0a6132e3565b816113b661125e565b6113c0919061327b565b11156113de5760405162461bcd60e51b8152600401610d709061339d565b6002600954036114005760405162461bcd60e51b8152600401610d70906133d2565b600260095561140d612316565b6114173388612363565b86601b54611425919061327b565b601b55601c5461143690889061327b565b601c553360009081526011602052604090205461145490889061327b565b33600090815260116020526040902055505060016009555050505050565b61147a612626565b6016805463ff00000019811663010000009182900460ff1615909102179055565b6114a3612626565b6021805460ff191660011790556114c26008546001600160a01b031690565b6001600160a01b03166108fc479081150290604051600060405180830381858888f193505050501580156114fa573d6000803e3d6000fd5b50565b611505612626565b61150d612680565b565b61125983838360405180602001604052806000815250611bce565b806000811161157b5760405162461bcd60e51b815260206004820152601e60248201527f506172616d657465722076616c75652063616e6e6f74206265207a65726f00006044820152606401610d70565b611583612626565b50601555565b611591612626565b600d61159d8282613481565b5050565b60006115ac826126d5565b5192915050565b60006001600160a01b0382166115dc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b611609612626565b61150d60006127fc565b80609681602054611624919061327b565b111561167d5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f742072657365727665206d6f7265207468616e20313020746f6b656044820152616e7360f01b6064820152608401610d70565b81600081116116ce5760405162461bcd60e51b815260206004820152601e60248201527f506172616d657465722076616c75652063616e6e6f74206265207a65726f00006044820152606401610d70565b6002600954036116f05760405162461bcd60e51b8152600401610d70906133d2565b60026009556116fd612626565b6021805461ff0019166101001790556117168484612363565b82602054611724919061327b565b602055505060016009555050565b61173a612626565b61150d61284e565b6040805160608101825260008082526020820181905291810191909152610c21826126d5565b611770612626565b600a611259828483613540565b606060038054610cc4906131bd565b336001600160a01b038316036117b55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601654610100900460ff16806118495760405162461bcd60e51b8152600401610d70906131f7565b8383600e546118a5838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516001600160601b03193360601b1660208201528592506034019050610dd1565b6118c15760405162461bcd60e51b8152600401610d709061322e565b601a54336000908152601260205260409020548691906118e290839061327b565b11156119005760405162461bcd60e51b8152600401610d7090613293565b66753d533d9680008661191233611e0c565b600003611a5a57346119256001836132e3565b61192f90846132fa565b1461194c5760405162461bcd60e51b8152600401610d7090613319565b8760008111801561195f57506019548111155b61197b5760405162461bcd60e51b8152600401610d7090613350565b88602054609661198b91906132e3565b61199790611a0a6132e3565b816119a061125e565b6119aa919061327b565b11156119c85760405162461bcd60e51b8152600401610d709061339d565b6002600954036119ea5760405162461bcd60e51b8152600401610d70906133d2565b60026009556119f7612316565b611a01338b612363565b89601b54611a0f919061327b565b601b55601d54611a20908b9061327b565b601d5533600090815260126020526040902054611a3e908b9061327b565b3360009081526012602052604090205550506001600955611174565b611a6333611e0c565b6001036111745734611a7582846132fa565b14611a925760405162461bcd60e51b8152600401610d7090613319565b87600081118015611aa557506019548111155b611ac15760405162461bcd60e51b8152600401610d7090613350565b886020546096611ad191906132e3565b611add90611a0a6132e3565b81611ae661125e565b611af0919061327b565b1115611b0e5760405162461bcd60e51b8152600401610d709061339d565b600260095403611b305760405162461bcd60e51b8152600401610d70906133d2565b6002600955611b3d612316565b611b47338b612363565b89601b54611b55919061327b565b601b55601d54611b66908b9061327b565b601d5533600090815260126020526040902054611b84908b9061327b565b336000908152601260205260409020555050600160095550505050505050505050565b611baf612626565b6016805462ff0000198116620100009182900460ff1615909102179055565b611bd9848484612412565b6001600160a01b0383163b15158015611bfb5750611bf984848484612891565b155b15611c19576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b611c27612626565b600e55565b600b8054610c34906131bd565b6060611c448261237d565b611ca85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610d70565b60165460ff161515600003611d4957600c8054611cc4906131bd565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf0906131bd565b8015611d3d5780601f10611d1257610100808354040283529160200191611d3d565b820191906000526020600020905b815481529060010190602001808311611d2057829003601f168201915b50505050509050919050565b6000611d5361297d565b90506000815111611d735760405180602001604052806000815250611da1565b80611d7d8461298c565b600b604051602001611d91939291906135ff565b6040516020818303038152906040525b9392505050565b611db0612626565b6016805464ff000000001981166401000000009182900460ff1615909102179055565b611ddb612626565b6016805461ff001981166101009182900460ff1615909102179055565b611e00612626565b600b61159d8282613481565b6000610c2182612a8c565b6060600a8054610cc4906131bd565b60007358807bad0b376efc12f5ad86aac70e78ed67dead196001600160a01b03831601611e5557506001610c21565b506001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b611e8c612626565b600c61159d8282613481565b611ea0612626565b6001600160a01b038116611f055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d70565b6114fa816127fc565b611f16612626565b601055565b6016546301000000900460ff1680611f455760405162461bcd60e51b8152600401610d70906131f7565b8383600f54611fa1838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516001600160601b03193360601b1660208201528592506034019050610dd1565b611fbd5760405162461bcd60e51b8152600401610d709061322e565b601a5433600090815260136020526040902054869190611fde90839061327b565b1115611ffc5760405162461bcd60e51b8152600401610d7090613293565b66753d533d9680008661200e33611e0c565b60000361215657346120216001836132e3565b61202b90846132fa565b146120485760405162461bcd60e51b8152600401610d7090613319565b8760008111801561205b57506019548111155b6120775760405162461bcd60e51b8152600401610d7090613350565b88602054609661208791906132e3565b61209390611a0a6132e3565b8161209c61125e565b6120a6919061327b565b11156120c45760405162461bcd60e51b8152600401610d709061339d565b6002600954036120e65760405162461bcd60e51b8152600401610d70906133d2565b60026009556120f3612316565b6120fd338b612363565b89601b5461210b919061327b565b601b55601f5461211c908b9061327b565b601f553360009081526013602052604090205461213a908b9061327b565b3360009081526013602052604090205550506001600955611174565b61215f33611e0c565b600103611174573461217182846132fa565b1461218e5760405162461bcd60e51b8152600401610d7090613319565b876000811180156121a157506019548111155b6121bd5760405162461bcd60e51b8152600401610d7090613350565b8860205460966121cd91906132e3565b6121d990611a0a6132e3565b816121e261125e565b6121ec919061327b565b111561220a5760405162461bcd60e51b8152600401610d709061339d565b60026009540361222c5760405162461bcd60e51b8152600401610d70906133d2565b6002600955612239612316565b612243338b612363565b89601b54612251919061327b565b601b55601f54612262908b9061327b565b601f5533600090815260136020526040902054612280908b9061327b565b336000908152601360205260409020555050600160095550505050505050505050565b6122ab612626565b600f55565b60006001600160e01b031982166380ac58cd60e01b14806122e157506001600160e01b03198216635b5e139f60e01b145b80610c2157506301ffc9a760e01b6001600160e01b0319831614610c21565b60008261230d8584612ae1565b14949350505050565b600854600160a01b900460ff161561150d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610d70565b61159d828260405180602001604052806000815250612b2e565b600081600111158015612391575060005482105b8015610c21575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061241d826126d5565b80519091506000906001600160a01b0316336001600160a01b0316148061244b5750815161244b9033611e26565b8061246657503361245b84611180565b6001600160a01b0316145b90508061248657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146124bb5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166124e257604051633a954ecd60e21b815260040160405180910390fd5b6124f260008484600001516123b6565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166125dc576000548110156125dc57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6008546001600160a01b0316331461150d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d70565b612688612b3b565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60408051606081018252600080825260208201819052918101919091528180600111158015612705575060005481105b156127e357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906127e15780516001600160a01b031615612778579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156127dc579392505050565b612778565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612856612316565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126b83390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906128c690339089908890889060040161369f565b6020604051808303816000875af1925050508015612901575060408051601f3d908101601f191682019092526128fe918101906136dc565b60015b61295f573d80801561292f576040519150601f19603f3d011682016040523d82523d6000602084013e612934565b606091505b508051600003612957576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600d8054610cc4906131bd565b6060816000036129b35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129dd57806129c7816136f9565b91506129d69050600a8361341f565b91506129b7565b6000816001600160401b038111156129f7576129f7612f86565b6040519080825280601f01601f191660200182016040528015612a21576020820181803683370190505b5090505b841561297557612a366001836132e3565b9150612a43600a86613712565b612a4e90603061327b565b60f81b818381518110612a6357612a63613726565b60200101906001600160f81b031916908160001a905350612a85600a8661341f565b9450612a25565b60006001600160a01b038216612ab5576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b600081815b8451811015612b2657612b1282868381518110612b0557612b05613726565b6020026020010151612b8b565b915080612b1e816136f9565b915050612ae6565b509392505050565b6112598383836001612bba565b600854600160a01b900460ff1661150d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610d70565b6000818310612ba7576000828152602084905260409020611da1565b6000838152602083905260409020611da1565b6000546001600160a01b038516612be357604051622e076360e81b815260040160405180910390fd5b83600003612c045760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612cb057506001600160a01b0387163b15155b15612d38575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612d016000888480600101955088612891565b612d1e576040516368d2bf6b60e11b815260040160405180910390fd5b808203612cb6578260005414612d3357600080fd5b612d7d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612d39575b5060005561261f565b6001600160e01b0319811681146114fa57600080fd5b600060208284031215612dae57600080fd5b8135611da181612d86565b60005b83811015612dd4578181015183820152602001612dbc565b83811115611c195750506000910152565b60008151808452612dfd816020860160208601612db9565b601f01601f19169290920160200192915050565b602081526000611da16020830184612de5565b600080600060408486031215612e3957600080fd5b83356001600160401b0380821115612e5057600080fd5b818601915086601f830112612e6457600080fd5b813581811115612e7357600080fd5b8760208260051b8501011115612e8857600080fd5b6020928301989097509590910135949350505050565b600060208284031215612eb057600080fd5b5035919050565b80356001600160a01b0381168114612ece57600080fd5b919050565b60008060408385031215612ee657600080fd5b612eef83612eb7565b946020939093013593505050565b600080600060608486031215612f1257600080fd5b612f1b84612eb7565b9250612f2960208501612eb7565b9150604084013590509250925092565b80358015158114612ece57600080fd5b600060208284031215612f5b57600080fd5b611da182612f39565b60008060408385031215612f7757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612fb657612fb6612f86565b604051601f8501601f19908116603f01168101908282118183101715612fde57612fde612f86565b81604052809350858152868686011115612ff757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561302357600080fd5b81356001600160401b0381111561303957600080fd5b8201601f8101841361304a57600080fd5b61297584823560208401612f9c565b60006020828403121561306b57600080fd5b611da182612eb7565b6000806020838503121561308757600080fd5b82356001600160401b038082111561309e57600080fd5b818501915085601f8301126130b257600080fd5b8135818111156130c157600080fd5b8660208285010111156130d357600080fd5b60209290920196919550909350505050565b600080604083850312156130f857600080fd5b61310183612eb7565b915061310f60208401612f39565b90509250929050565b6000806000806080858703121561312e57600080fd5b61313785612eb7565b935061314560208601612eb7565b92506040850135915060608501356001600160401b0381111561316757600080fd5b8501601f8101871361317857600080fd5b61318787823560208401612f9c565b91505092959194509250565b600080604083850312156131a657600080fd5b6131af83612eb7565b915061310f60208401612eb7565b600181811c908216806131d157607f821691505b6020821081036131f157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b6020808252601e908201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561328e5761328e613265565b500190565b60208082526030908201527f43616e6e6f7420636c61696d206d6f7265207468616e20616c6c6f776564206c60408201526f696d697420706572206164647265737360801b606082015260800190565b6000828210156132f5576132f5613265565b500390565b600081600019048311821515161561331457613314613265565b500290565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b6020808252602d908201527f4d617820706572207472616e73616374696f6e20726561636865642c2073616c60408201526c19481b9bdd08185b1b1bddd959609a1b606082015260800190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601260045260246000fd5b60008261342e5761342e613409565b500490565b601f82111561125957600081815260208120601f850160051c8101602086101561345a5750805b601f850160051c820191505b8181101561347957828155600101613466565b505050505050565b81516001600160401b0381111561349a5761349a612f86565b6134ae816134a884546131bd565b84613433565b602080601f8311600181146134e357600084156134cb5750858301515b600019600386901b1c1916600185901b178555613479565b600085815260208120601f198616915b82811015613512578886015182559484019460019091019084016134f3565b50858210156135305787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b0383111561355757613557612f86565b61356b8361356583546131bd565b83613433565b6000601f84116001811461359f57600085156135875750838201355b600019600387901b1c1916600186901b17835561261f565b600083815260209020601f19861690835b828110156135d057868501358255602094850194600190920191016135b0565b50868210156135ed5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6000845160206136128285838a01612db9565b8551918401916136258184848a01612db9565b8554920191600090613636816131bd565b6001828116801561364e57600181146136635761368f565b60ff198416875282151583028701945061368f565b896000528560002060005b848110156136875781548982015290830190870161366e565b505082870194505b50929a9950505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136d290830184612de5565b9695505050505050565b6000602082840312156136ee57600080fd5b8151611da181612d86565b60006001820161370b5761370b613265565b5060010190565b60008261372157613721613409565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208f48c0c2a554131c190118a854dc6cfbdf06467ebaea91e424491da41a295f1f64736f6c634300080f0033697066733a2f2f516d547948664b7a473158796f70616737445a566e636b5433656436684b4672536b55753865366944663544414e2f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f546865204d6167757320576f726c64000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d47530000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106104105760003560e01c8063715018a61161021e578063c668286211610123578063e00dd161116100ab578063f2fde38b1161007a578063f2fde38b14610b73578063f3e3882114610b93578063f5f1713914610ba9578063f6d8259914610bc9578063f95df41414610bdc57600080fd5b8063e00dd16114610b08578063e8a3d48514610b1e578063e985e9c514610b33578063f2c4ce1e14610b5357600080fd5b8063ccc4c69a116100f2578063ccc4c69a14610a73578063d1beca6414610a92578063da3ef23f14610aa7578063dc33e68114610ac7578063de2ed53414610ae757600080fd5b8063c668286214610a13578063c87b56dd14610a28578063c89ac96514610a48578063c9ea545a14610a5e57600080fd5b8063a174bb71116101a6578063aa98e0c611610175578063aa98e0c614610986578063b10008ff1461099c578063b22edfbc146109be578063b88d4fde146109d3578063bd32fb66146109f357600080fd5b8063a174bb711461091e578063a22cb4651461093e578063a6d612f91461095e578063aa8f4b561461097157600080fd5b80638da5cb5b116101ed5780638da5cb5b146108565780639231ab2a14610874578063938e3d7b146108ca57806395d89b41146108ea578063a149a907146108ff57600080fd5b8063715018a6146107f6578063785889821461080b578063804f43cd1461082b5780638456cb591461084157600080fd5b80632a55205a116103245780634341f83b116102ac57806355f804b31161027b57806355f804b3146107625780635c975abb14610782578063611f3f10146107a15780636352211e146107b657806370a08231146107d657600080fd5b80634341f83b146106fc578063453c23101461071c5780634b980d6714610732578063518302271461074857600080fd5b806338be8142116102f357806338be8142146106875780633ccfd60b1461069c5780633f4ba83a146106b157806341fbddbd146106c657806342842e0e146106dc57600080fd5b80632a55205a146106095780632db115441461064857806332cb6b0c1461065b57806336183c051461067157600080fd5b806315485ad1116103a7578063228ab9de11610376578063228ab9de1461058757806323b872dd1461059d578063293108e0146105bd57806329ee566c146105d35780632a3f300c146105e957600080fd5b806315485ad114610527578063160e84321461054157806317e7f2951461055757806318160ddd1461057257600080fd5b8063081812fc116103e3578063081812fc14610496578063081c8c44146104ce578063095ea7b3146104e35780631493d83a1461050357600080fd5b806301ffc9a7146104155780630612d3641461044a57806306fdde031461046c57806307d441e414610481575b600080fd5b34801561042157600080fd5b50610435610430366004612d9c565b610bfc565b60405190151581526020015b60405180910390f35b34801561045657600080fd5b5061045f610c27565b6040516104419190612e11565b34801561047857600080fd5b5061045f610cb5565b61049461048f366004612e24565b610d47565b005b3480156104a257600080fd5b506104b66104b1366004612e9e565b611180565b6040516001600160a01b039091168152602001610441565b3480156104da57600080fd5b5061045f6111c4565b3480156104ef57600080fd5b506104946104fe366004612ed3565b6111d1565b34801561050f57600080fd5b5061051960185481565b604051908152602001610441565b34801561053357600080fd5b506021546104359060ff1681565b34801561054d57600080fd5b5061051960105481565b34801561056357600080fd5b5061051966753d533d96800081565b34801561057e57600080fd5b5061051961125e565b34801561059357600080fd5b50610519601c5481565b3480156105a957600080fd5b506104946105b8366004612efd565b61126c565b3480156105c957600080fd5b50610519600f5481565b3480156105df57600080fd5b5061051960155481565b3480156105f557600080fd5b50610494610604366004612f49565b611277565b34801561061557600080fd5b50610629610624366004612f64565b611292565b604080516001600160a01b039093168352602083019190915201610441565b610494610656366004612e9e565b6112cd565b34801561066757600080fd5b50610519611a0a81565b34801561067d57600080fd5b50610519601e5481565b34801561069357600080fd5b50610494611472565b3480156106a857600080fd5b5061049461149b565b3480156106bd57600080fd5b506104946114fd565b3480156106d257600080fd5b50610519601f5481565b3480156106e857600080fd5b506104946106f7366004612efd565b61150f565b34801561070857600080fd5b50610494610717366004612e9e565b61152a565b34801561072857600080fd5b50610519601a5481565b34801561073e57600080fd5b5061051960195481565b34801561075457600080fd5b506016546104359060ff1681565b34801561076e57600080fd5b5061049461077d366004613011565b611589565b34801561078e57600080fd5b50600854600160a01b900460ff16610435565b3480156107ad57600080fd5b50610519600081565b3480156107c257600080fd5b506104b66107d1366004612e9e565b6115a1565b3480156107e257600080fd5b506105196107f1366004613059565b6115b3565b34801561080257600080fd5b50610494611601565b34801561081757600080fd5b50610494610826366004612ed3565b611613565b34801561083757600080fd5b50610519601d5481565b34801561084d57600080fd5b50610494611732565b34801561086257600080fd5b506008546001600160a01b03166104b6565b34801561088057600080fd5b5061089461088f366004612e9e565b611742565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610441565b3480156108d657600080fd5b506104946108e5366004613074565b611768565b3480156108f657600080fd5b5061045f61177d565b34801561090b57600080fd5b5060165461043590610100900460ff1681565b34801561092a57600080fd5b506016546104359062010000900460ff1681565b34801561094a57600080fd5b506104946109593660046130e5565b61178c565b61049461096c366004612e24565b611821565b34801561097d57600080fd5b50610494611ba7565b34801561099257600080fd5b50610519600e5481565b3480156109a857600080fd5b5060165461043590640100000000900460ff1681565b3480156109ca57600080fd5b50610519609681565b3480156109df57600080fd5b506104946109ee366004613118565b611bce565b3480156109ff57600080fd5b50610494610a0e366004612e9e565b611c1f565b348015610a1f57600080fd5b5061045f611c2c565b348015610a3457600080fd5b5061045f610a43366004612e9e565b611c39565b348015610a5457600080fd5b5061051960175481565b348015610a6a57600080fd5b50610494611da8565b348015610a7f57600080fd5b5060215461043590610100900460ff1681565b348015610a9e57600080fd5b50610494611dd3565b348015610ab357600080fd5b50610494610ac2366004613011565b611df8565b348015610ad357600080fd5b50610519610ae2366004613059565b611e0c565b348015610af357600080fd5b50601654610435906301000000900460ff1681565b348015610b1457600080fd5b50610519601b5481565b348015610b2a57600080fd5b5061045f611e17565b348015610b3f57600080fd5b50610435610b4e366004613193565b611e26565b348015610b5f57600080fd5b50610494610b6e366004613011565b611e84565b348015610b7f57600080fd5b50610494610b8e366004613059565b611e98565b348015610b9f57600080fd5b5061051960205481565b348015610bb557600080fd5b50610494610bc4366004612e9e565b611f0e565b610494610bd7366004612e24565b611f1b565b348015610be857600080fd5b50610494610bf7366004612e9e565b6122a3565b60006001600160e01b0319821663152a902d60e11b1480610c215750610c21826122b0565b92915050565b600a8054610c34906131bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610c60906131bd565b8015610cad5780601f10610c8257610100808354040283529160200191610cad565b820191906000526020600020905b815481529060010190602001808311610c9057829003601f168201915b505050505081565b606060028054610cc4906131bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf0906131bd565b8015610d3d5780601f10610d1257610100808354040283529160200191610d3d565b820191906000526020600020905b815481529060010190602001808311610d2057829003601f168201915b5050505050905090565b60165462010000900460ff1680610d795760405162461bcd60e51b8152600401610d70906131f7565b60405180910390fd5b8383601054610dec838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516001600160601b03193360601b16602082015285925060340190505b60405160208183030381529060405280519060200120612300565b610e085760405162461bcd60e51b8152600401610d709061322e565b60185433600090815260146020526040902054869190610e2990839061327b565b1115610e475760405162461bcd60e51b8152600401610d7090613293565b66753d533d96800086610e5933611e0c565b158015610e665750600181115b15610fac5734610e776002836132e3565b610e8190846132fa565b14610e9e5760405162461bcd60e51b8152600401610d7090613319565b87600081118015610eb157506017548111155b610ecd5760405162461bcd60e51b8152600401610d7090613350565b886020546096610edd91906132e3565b610ee990611a0a6132e3565b81610ef261125e565b610efc919061327b565b1115610f1a5760405162461bcd60e51b8152600401610d709061339d565b600260095403610f3c5760405162461bcd60e51b8152600401610d70906133d2565b6002600955610f49612316565b610f53338b612363565b89601b54610f61919061327b565b601b55601e54610f72908b9061327b565b601e5533600090815260146020526040902054610f90908b9061327b565b3360009081526014602052604090205550506001600955611174565b610fb533611e0c565b158015610fc25750806001145b15610fd35734610e776001836132e3565b610fdc33611e0c565b6001148015610feb5750806001145b15610ffc5734610e776001836132e3565b61100533611e0c565b60011480156110145750806002145b156110255734610e776001836132e3565b61102e33611e0c565b600214801561103d5750806001145b15611174573461104d82846132fa565b1461106a5760405162461bcd60e51b8152600401610d7090613319565b8760008111801561107d57506017548111155b6110995760405162461bcd60e51b8152600401610d7090613350565b8860205460966110a991906132e3565b6110b590611a0a6132e3565b816110be61125e565b6110c8919061327b565b11156110e65760405162461bcd60e51b8152600401610d709061339d565b6002600954036111085760405162461bcd60e51b8152600401610d70906133d2565b6002600955611115612316565b61111f338b612363565b89601b5461112d919061327b565b601b55601e5461113e908b9061327b565b601e553360009081526014602052604090205461115c908b9061327b565b33600090815260146020526040902055505060016009555b50505050505050505050565b600061118b8261237d565b6111a8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600c8054610c34906131bd565b60006111dc826115a1565b9050806001600160a01b0316836001600160a01b0316036112105760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590611230575061122e8133611e26565b155b1561124e576040516367d9dca160e11b815260040160405180910390fd5b6112598383836123b6565b505050565b600154600054036000190190565b611259838383612412565b61127f612626565b6016805460ff1916911515919091179055565b6000806112a76008546001600160a01b031690565b6103e8601554856112b891906132fa565b6112c2919061341f565b915091509250929050565b601654640100000000900460ff16806112f85760405162461bcd60e51b8152600401610d70906131f7565b601a543360009081526011602052604090205483919061131990839061327b565b11156113375760405162461bcd60e51b8152600401610d7090613293565b6000833461134582846132fa565b146113625760405162461bcd60e51b8152600401610d7090613319565b8460008111801561137557506019548111155b6113915760405162461bcd60e51b8152600401610d7090613350565b8560205460966113a191906132e3565b6113ad90611a0a6132e3565b816113b661125e565b6113c0919061327b565b11156113de5760405162461bcd60e51b8152600401610d709061339d565b6002600954036114005760405162461bcd60e51b8152600401610d70906133d2565b600260095561140d612316565b6114173388612363565b86601b54611425919061327b565b601b55601c5461143690889061327b565b601c553360009081526011602052604090205461145490889061327b565b33600090815260116020526040902055505060016009555050505050565b61147a612626565b6016805463ff00000019811663010000009182900460ff1615909102179055565b6114a3612626565b6021805460ff191660011790556114c26008546001600160a01b031690565b6001600160a01b03166108fc479081150290604051600060405180830381858888f193505050501580156114fa573d6000803e3d6000fd5b50565b611505612626565b61150d612680565b565b61125983838360405180602001604052806000815250611bce565b806000811161157b5760405162461bcd60e51b815260206004820152601e60248201527f506172616d657465722076616c75652063616e6e6f74206265207a65726f00006044820152606401610d70565b611583612626565b50601555565b611591612626565b600d61159d8282613481565b5050565b60006115ac826126d5565b5192915050565b60006001600160a01b0382166115dc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b611609612626565b61150d60006127fc565b80609681602054611624919061327b565b111561167d5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f742072657365727665206d6f7265207468616e20313020746f6b656044820152616e7360f01b6064820152608401610d70565b81600081116116ce5760405162461bcd60e51b815260206004820152601e60248201527f506172616d657465722076616c75652063616e6e6f74206265207a65726f00006044820152606401610d70565b6002600954036116f05760405162461bcd60e51b8152600401610d70906133d2565b60026009556116fd612626565b6021805461ff0019166101001790556117168484612363565b82602054611724919061327b565b602055505060016009555050565b61173a612626565b61150d61284e565b6040805160608101825260008082526020820181905291810191909152610c21826126d5565b611770612626565b600a611259828483613540565b606060038054610cc4906131bd565b336001600160a01b038316036117b55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601654610100900460ff16806118495760405162461bcd60e51b8152600401610d70906131f7565b8383600e546118a5838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516001600160601b03193360601b1660208201528592506034019050610dd1565b6118c15760405162461bcd60e51b8152600401610d709061322e565b601a54336000908152601260205260409020548691906118e290839061327b565b11156119005760405162461bcd60e51b8152600401610d7090613293565b66753d533d9680008661191233611e0c565b600003611a5a57346119256001836132e3565b61192f90846132fa565b1461194c5760405162461bcd60e51b8152600401610d7090613319565b8760008111801561195f57506019548111155b61197b5760405162461bcd60e51b8152600401610d7090613350565b88602054609661198b91906132e3565b61199790611a0a6132e3565b816119a061125e565b6119aa919061327b565b11156119c85760405162461bcd60e51b8152600401610d709061339d565b6002600954036119ea5760405162461bcd60e51b8152600401610d70906133d2565b60026009556119f7612316565b611a01338b612363565b89601b54611a0f919061327b565b601b55601d54611a20908b9061327b565b601d5533600090815260126020526040902054611a3e908b9061327b565b3360009081526012602052604090205550506001600955611174565b611a6333611e0c565b6001036111745734611a7582846132fa565b14611a925760405162461bcd60e51b8152600401610d7090613319565b87600081118015611aa557506019548111155b611ac15760405162461bcd60e51b8152600401610d7090613350565b886020546096611ad191906132e3565b611add90611a0a6132e3565b81611ae661125e565b611af0919061327b565b1115611b0e5760405162461bcd60e51b8152600401610d709061339d565b600260095403611b305760405162461bcd60e51b8152600401610d70906133d2565b6002600955611b3d612316565b611b47338b612363565b89601b54611b55919061327b565b601b55601d54611b66908b9061327b565b601d5533600090815260126020526040902054611b84908b9061327b565b336000908152601260205260409020555050600160095550505050505050505050565b611baf612626565b6016805462ff0000198116620100009182900460ff1615909102179055565b611bd9848484612412565b6001600160a01b0383163b15158015611bfb5750611bf984848484612891565b155b15611c19576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b611c27612626565b600e55565b600b8054610c34906131bd565b6060611c448261237d565b611ca85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610d70565b60165460ff161515600003611d4957600c8054611cc4906131bd565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf0906131bd565b8015611d3d5780601f10611d1257610100808354040283529160200191611d3d565b820191906000526020600020905b815481529060010190602001808311611d2057829003601f168201915b50505050509050919050565b6000611d5361297d565b90506000815111611d735760405180602001604052806000815250611da1565b80611d7d8461298c565b600b604051602001611d91939291906135ff565b6040516020818303038152906040525b9392505050565b611db0612626565b6016805464ff000000001981166401000000009182900460ff1615909102179055565b611ddb612626565b6016805461ff001981166101009182900460ff1615909102179055565b611e00612626565b600b61159d8282613481565b6000610c2182612a8c565b6060600a8054610cc4906131bd565b60007358807bad0b376efc12f5ad86aac70e78ed67dead196001600160a01b03831601611e5557506001610c21565b506001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b611e8c612626565b600c61159d8282613481565b611ea0612626565b6001600160a01b038116611f055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d70565b6114fa816127fc565b611f16612626565b601055565b6016546301000000900460ff1680611f455760405162461bcd60e51b8152600401610d70906131f7565b8383600f54611fa1838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516001600160601b03193360601b1660208201528592506034019050610dd1565b611fbd5760405162461bcd60e51b8152600401610d709061322e565b601a5433600090815260136020526040902054869190611fde90839061327b565b1115611ffc5760405162461bcd60e51b8152600401610d7090613293565b66753d533d9680008661200e33611e0c565b60000361215657346120216001836132e3565b61202b90846132fa565b146120485760405162461bcd60e51b8152600401610d7090613319565b8760008111801561205b57506019548111155b6120775760405162461bcd60e51b8152600401610d7090613350565b88602054609661208791906132e3565b61209390611a0a6132e3565b8161209c61125e565b6120a6919061327b565b11156120c45760405162461bcd60e51b8152600401610d709061339d565b6002600954036120e65760405162461bcd60e51b8152600401610d70906133d2565b60026009556120f3612316565b6120fd338b612363565b89601b5461210b919061327b565b601b55601f5461211c908b9061327b565b601f553360009081526013602052604090205461213a908b9061327b565b3360009081526013602052604090205550506001600955611174565b61215f33611e0c565b600103611174573461217182846132fa565b1461218e5760405162461bcd60e51b8152600401610d7090613319565b876000811180156121a157506019548111155b6121bd5760405162461bcd60e51b8152600401610d7090613350565b8860205460966121cd91906132e3565b6121d990611a0a6132e3565b816121e261125e565b6121ec919061327b565b111561220a5760405162461bcd60e51b8152600401610d709061339d565b60026009540361222c5760405162461bcd60e51b8152600401610d70906133d2565b6002600955612239612316565b612243338b612363565b89601b54612251919061327b565b601b55601f54612262908b9061327b565b601f5533600090815260136020526040902054612280908b9061327b565b336000908152601360205260409020555050600160095550505050505050505050565b6122ab612626565b600f55565b60006001600160e01b031982166380ac58cd60e01b14806122e157506001600160e01b03198216635b5e139f60e01b145b80610c2157506301ffc9a760e01b6001600160e01b0319831614610c21565b60008261230d8584612ae1565b14949350505050565b600854600160a01b900460ff161561150d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610d70565b61159d828260405180602001604052806000815250612b2e565b600081600111158015612391575060005482105b8015610c21575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061241d826126d5565b80519091506000906001600160a01b0316336001600160a01b0316148061244b5750815161244b9033611e26565b8061246657503361245b84611180565b6001600160a01b0316145b90508061248657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146124bb5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166124e257604051633a954ecd60e21b815260040160405180910390fd5b6124f260008484600001516123b6565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166125dc576000548110156125dc57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6008546001600160a01b0316331461150d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d70565b612688612b3b565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60408051606081018252600080825260208201819052918101919091528180600111158015612705575060005481105b156127e357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906127e15780516001600160a01b031615612778579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156127dc579392505050565b612778565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612856612316565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126b83390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906128c690339089908890889060040161369f565b6020604051808303816000875af1925050508015612901575060408051601f3d908101601f191682019092526128fe918101906136dc565b60015b61295f573d80801561292f576040519150601f19603f3d011682016040523d82523d6000602084013e612934565b606091505b508051600003612957576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600d8054610cc4906131bd565b6060816000036129b35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129dd57806129c7816136f9565b91506129d69050600a8361341f565b91506129b7565b6000816001600160401b038111156129f7576129f7612f86565b6040519080825280601f01601f191660200182016040528015612a21576020820181803683370190505b5090505b841561297557612a366001836132e3565b9150612a43600a86613712565b612a4e90603061327b565b60f81b818381518110612a6357612a63613726565b60200101906001600160f81b031916908160001a905350612a85600a8661341f565b9450612a25565b60006001600160a01b038216612ab5576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b600081815b8451811015612b2657612b1282868381518110612b0557612b05613726565b6020026020010151612b8b565b915080612b1e816136f9565b915050612ae6565b509392505050565b6112598383836001612bba565b600854600160a01b900460ff1661150d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610d70565b6000818310612ba7576000828152602084905260409020611da1565b6000838152602083905260409020611da1565b6000546001600160a01b038516612be357604051622e076360e81b815260040160405180910390fd5b83600003612c045760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612cb057506001600160a01b0387163b15155b15612d38575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612d016000888480600101955088612891565b612d1e576040516368d2bf6b60e11b815260040160405180910390fd5b808203612cb6578260005414612d3357600080fd5b612d7d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612d39575b5060005561261f565b6001600160e01b0319811681146114fa57600080fd5b600060208284031215612dae57600080fd5b8135611da181612d86565b60005b83811015612dd4578181015183820152602001612dbc565b83811115611c195750506000910152565b60008151808452612dfd816020860160208601612db9565b601f01601f19169290920160200192915050565b602081526000611da16020830184612de5565b600080600060408486031215612e3957600080fd5b83356001600160401b0380821115612e5057600080fd5b818601915086601f830112612e6457600080fd5b813581811115612e7357600080fd5b8760208260051b8501011115612e8857600080fd5b6020928301989097509590910135949350505050565b600060208284031215612eb057600080fd5b5035919050565b80356001600160a01b0381168114612ece57600080fd5b919050565b60008060408385031215612ee657600080fd5b612eef83612eb7565b946020939093013593505050565b600080600060608486031215612f1257600080fd5b612f1b84612eb7565b9250612f2960208501612eb7565b9150604084013590509250925092565b80358015158114612ece57600080fd5b600060208284031215612f5b57600080fd5b611da182612f39565b60008060408385031215612f7757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612fb657612fb6612f86565b604051601f8501601f19908116603f01168101908282118183101715612fde57612fde612f86565b81604052809350858152868686011115612ff757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561302357600080fd5b81356001600160401b0381111561303957600080fd5b8201601f8101841361304a57600080fd5b61297584823560208401612f9c565b60006020828403121561306b57600080fd5b611da182612eb7565b6000806020838503121561308757600080fd5b82356001600160401b038082111561309e57600080fd5b818501915085601f8301126130b257600080fd5b8135818111156130c157600080fd5b8660208285010111156130d357600080fd5b60209290920196919550909350505050565b600080604083850312156130f857600080fd5b61310183612eb7565b915061310f60208401612f39565b90509250929050565b6000806000806080858703121561312e57600080fd5b61313785612eb7565b935061314560208601612eb7565b92506040850135915060608501356001600160401b0381111561316757600080fd5b8501601f8101871361317857600080fd5b61318787823560208401612f9c565b91505092959194509250565b600080604083850312156131a657600080fd5b6131af83612eb7565b915061310f60208401612eb7565b600181811c908216806131d157607f821691505b6020821081036131f157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b6020808252601e908201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561328e5761328e613265565b500190565b60208082526030908201527f43616e6e6f7420636c61696d206d6f7265207468616e20616c6c6f776564206c60408201526f696d697420706572206164647265737360801b606082015260800190565b6000828210156132f5576132f5613265565b500390565b600081600019048311821515161561331457613314613265565b500290565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b6020808252602d908201527f4d617820706572207472616e73616374696f6e20726561636865642c2073616c60408201526c19481b9bdd08185b1b1bddd959609a1b606082015260800190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601260045260246000fd5b60008261342e5761342e613409565b500490565b601f82111561125957600081815260208120601f850160051c8101602086101561345a5750805b601f850160051c820191505b8181101561347957828155600101613466565b505050505050565b81516001600160401b0381111561349a5761349a612f86565b6134ae816134a884546131bd565b84613433565b602080601f8311600181146134e357600084156134cb5750858301515b600019600386901b1c1916600185901b178555613479565b600085815260208120601f198616915b82811015613512578886015182559484019460019091019084016134f3565b50858210156135305787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b0383111561355757613557612f86565b61356b8361356583546131bd565b83613433565b6000601f84116001811461359f57600085156135875750838201355b600019600387901b1c1916600186901b17835561261f565b600083815260209020601f19861690835b828110156135d057868501358255602094850194600190920191016135b0565b50868210156135ed5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6000845160206136128285838a01612db9565b8551918401916136258184848a01612db9565b8554920191600090613636816131bd565b6001828116801561364e57600181146136635761368f565b60ff198416875282151583028701945061368f565b896000528560002060005b848110156136875781548982015290830190870161366e565b505082870194505b50929a9950505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136d290830184612de5565b9695505050505050565b6000602082840312156136ee57600080fd5b8151611da181612d86565b60006001820161370b5761370b613265565b5060010190565b60008261372157613721613409565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208f48c0c2a554131c190118a854dc6cfbdf06467ebaea91e424491da41a295f1f64736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f546865204d6167757320576f726c64000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d47530000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): The Magus World
Arg [1] : _symbol (string): MGS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 546865204d6167757320576f726c640000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4d47530000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

61404:14745:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75865:281;;;;;;;;;;-1:-1:-1;75865:281:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;75865:281:0;;;;;;;;61546:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47243:100::-;;;;;;;;;;;;;:::i;64766:748::-;;;;;;:::i;:::-;;:::i;:::-;;48746:204;;;;;;;;;;-1:-1:-1;48746:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2386:32:1;;;2368:51;;2356:2;2341:18;48746:204:0;2222:203:1;61684:87:0;;;;;;;;;;;;;:::i;48309:371::-;;;;;;;;;;-1:-1:-1;48309:371:0;;;;;:::i;:::-;;:::i;62716:33::-;;;;;;;;;;;;;;;;;;;3013:25:1;;;3001:2;2986:18;62716:33:0;2867:177:1;63076:32:0;;;;;;;;;;-1:-1:-1;63076:32:0;;;;;;;;61891:31;;;;;;;;;;;;;;;;62187:53;;;;;;;;;;;;62229:11;62187:53;;43105:303;;;;;;;;;;;;;:::i;62874:33::-;;;;;;;;;;;;;;;;49611:170;;;;;;;;;;-1:-1:-1;49611:170:0;;;;;:::i;:::-;;:::i;61850:34::-;;;;;;;;;;;;;;;;62301:27;;;;;;;;;;;;;;;;68369:113;;;;;;;;;;-1:-1:-1;68369:113:0;;;;;:::i;:::-;;:::i;70922:294::-;;;;;;;;;;-1:-1:-1;70922:294:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4359:32:1;;;4341:51;;4423:2;4408:18;;4401:34;;;;4314:18;70922:294:0;4167:274:1;63312:671:0;;;;;;:::i;:::-;;:::i;62623:41::-;;;;;;;;;;;;62660:4;62623:41;;62953:29;;;;;;;;;;;;;;;;70044:144;;;;;;;;;;;;;:::i;66655:136::-;;;;;;;;;;;;;:::i;69648:93::-;;;;;;;;;;;;;:::i;62989:32::-;;;;;;;;;;;;;;;;49852:185;;;;;;;;;;-1:-1:-1;49852:185:0;;;;;:::i;:::-;;:::i;70351:169::-;;;;;;;;;;-1:-1:-1;70351:169:0;;;;;:::i;:::-;;:::i;62799:31::-;;;;;;;;;;;;;;;;62756:36;;;;;;;;;;;;;;;;62399:27;;;;;;;;;;-1:-1:-1;62399:27:0;;;;;;;;68490:130;;;;;;;;;;-1:-1:-1;68490:130:0;;;;;:::i;:::-;;:::i;16547:86::-;;;;;;;;;;-1:-1:-1;16618:7:0;;-1:-1:-1;;;16618:7:0;;;;16547:86;;62247:46;;;;;;;;;;;;62286:7;62247:46;;47051:125;;;;;;;;;;-1:-1:-1;47051:125:0;;;;;:::i;:::-;;:::i;44225:206::-;;;;;;;;;;-1:-1:-1;44225:206:0;;;;;:::i;:::-;;:::i;19412:103::-;;;;;;;;;;;;;:::i;66295:352::-;;;;;;;;;;-1:-1:-1;66295:352:0;;;;;:::i;:::-;;:::i;62914:32::-;;;;;;;;;;;;;;;;69551:89;;;;;;;;;;;;;:::i;18764:87::-;;;;;;;;;;-1:-1:-1;18837:6:0;;-1:-1:-1;;;;;18837:6:0;18764:87;;68021:168;;;;;;;;;;-1:-1:-1;68021:168:0;;;;;:::i;:::-;;:::i;:::-;;;;6094:13:1;;-1:-1:-1;;;;;6090:39:1;6072:58;;6190:4;6178:17;;;6172:24;-1:-1:-1;;;;;6168:49:1;6146:20;;;6139:79;6276:17;;;6270:24;6263:32;6256:40;6234:20;;;6227:70;6060:2;6045:18;68021:168:0;5862:441:1;68947:134:0;;;;;;;;;;-1:-1:-1;68947:134:0;;;;;:::i;:::-;;:::i;47412:104::-;;;;;;;;;;;;;:::i;62433:40::-;;;;;;;;;;-1:-1:-1;62433:40:0;;;;;;;;;;;62480:37;;;;;;;;;;-1:-1:-1;62480:37:0;;;;;;;;;;;49022:287;;;;;;;;;;-1:-1:-1;49022:287:0;;;;;:::i;:::-;;:::i;63993:765::-;;;;;;:::i;:::-;;:::i;69901:135::-;;;;;;;;;;;;;:::i;61809:34::-;;;;;;;;;;;;;;;;62572:42;;;;;;;;;;-1:-1:-1;62572:42:0;;;;;;;;;;;62338:52;;;;;;;;;;;;62387:3;62338:52;;50108:369;;;;;;;;;;-1:-1:-1;50108:369:0;;;;;:::i;:::-;;:::i;69089:148::-;;;;;;;;;;-1:-1:-1;69089:148:0;;;;;:::i;:::-;;:::i;61640:37::-;;;;;;;;;;;;;:::i;66966:725::-;;;;;;;;;;-1:-1:-1;66966:725:0;;;;;:::i;:::-;;:::i;62671:38::-;;;;;;;;;;;;;;;;70196:147;;;;;;;;;;;;;:::i;63115:32::-;;;;;;;;;;-1:-1:-1;63115:32:0;;;;;;;;;;;69749:144;;;;;;;;;;;;;:::i;68788:151::-;;;;;;;;;;-1:-1:-1;68788:151:0;;;;;:::i;:::-;;:::i;67854:159::-;;;;;;;;;;-1:-1:-1;67854:159:0;;;;;:::i;:::-;;:::i;62524:41::-;;;;;;;;;;-1:-1:-1;62524:41:0;;;;;;;;;;;62839:28;;;;;;;;;;;;;;;;67699:147;;;;;;;;;;;;;:::i;70528:386::-;;;;;;;;;;-1:-1:-1;70528:386:0;;;;;:::i;:::-;;:::i;68628:152::-;;;;;;;;;;-1:-1:-1;68628:152:0;;;;;:::i;:::-;;:::i;19670:201::-;;;;;;;;;;-1:-1:-1;19670:201:0;;;;;:::i;:::-;;:::i;63028:39::-;;;;;;;;;;;;;;;;69245:142;;;;;;;;;;-1:-1:-1;69245:142:0;;;;;:::i;:::-;;:::i;65522:765::-;;;;;;:::i;:::-;;:::i;69395:148::-;;;;;;;;;;-1:-1:-1;69395:148:0;;;;;:::i;:::-;;:::i;75865:281::-;76013:4;-1:-1:-1;;;;;;76043:41:0;;-1:-1:-1;;;76043:41:0;;:94;;;76101:36;76125:11;76101:23;:36::i;:::-;76035:103;75865:281;-1:-1:-1;;75865:281:0:o;61546:87::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47243:100::-;47297:13;47330:5;47323:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47243:100;:::o;64766:748::-;64924:18;;;;;;;;75670:46;;;;-1:-1:-1;;;75670:46:0;;;;;;;:::i;:::-;;;;;;;;;64972:11:::1;;64985:16;;71357:144;71394:11;;71357:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;71457:28:0::1;::::0;-1:-1:-1;;;;;;71474:10:0::1;9176:2:1::0;9172:15;9168:53;71457:28:0::1;::::0;::::1;9156:66:1::0;71424:4:0;;-1:-1:-1;9238:12:1;;;-1:-1:-1;71457:28:0::1;;;;;;;;;;;;;71447:39;;;;;;71357:18;:144::i;:::-;71335:224;;;;-1:-1:-1::0;;;71335:224:0::1;;;;;;;:::i;:::-;72229:14:::2;::::0;72197:10:::2;72178:30;::::0;;;:18:::2;:30;::::0;;;;;65028:14;;72229;72178:47:::2;::::0;65028:14;;72178:47:::2;:::i;:::-;:65;;72156:163;;;;-1:-1:-1::0;;;72156:163:0::2;;;;;;;:::i;:::-;62229:11:::3;65089:14;73725:24;73738:10;73725:12;:24::i;:::-;:29:::0;:51;::::3;;;;73775:1;73758:14;:18;73725:51;73722:1112;;;73849:9;73828:16;73843:1;73828:14:::0;:16:::3;:::i;:::-;73819:26;::::0;:5;:26:::3;:::i;:::-;:39;73793:125;;;;-1:-1:-1::0;;;73793:125:0::3;;;;;;;:::i;:::-;65132:14:::4;75198:1;75181:14;:18;:59;;;;;75221:19;;75203:14;:37;;75181:59;75159:154;;;;-1:-1:-1::0;;;75159:154:0::4;;;;;;;:::i;:::-;65175:14:::5;75515:20;;62387:3;75490:45;;;;:::i;:::-;75476:60;::::0;62660:4:::5;75476:60;:::i;:::-;75441:14;75425:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:111;;75403:193;;;;-1:-1:-1::0;;;75403:193:0::5;;;;;;;:::i;:::-;10537:1:::6;11135:7;;:19:::0;11127:63:::6;;;;-1:-1:-1::0;;;11127:63:0::6;;;;;;;:::i;:::-;10537:1;11268:7;:18:::0;16152:19:::7;:17;:19::i;:::-;65252:37:::8;65262:10;65274:14;65252:9;:37::i;:::-;65324:14;65312:9;;:26;;;;:::i;:::-;65300:9;:38:::0;65362:10:::8;::::0;:27:::8;::::0;65375:14;;65362:27:::8;:::i;:::-;65349:10;:40:::0;65465:10:::8;65446:30;::::0;;;:18:::8;:30;::::0;;;;;:60:::8;::::0;65492:14;;65446:60:::8;:::i;:::-;65419:10;65400:30;::::0;;;:18:::8;:30;::::0;;;;:106;-1:-1:-1;;10493:1:0::6;11447:7;:22:::0;73722:1112:::3;;;73955:24;73968:10;73955:12;:24::i;:::-;:29:::0;:52;::::3;;;;73988:14;74006:1;73988:19;73955:52;73952:882;;;74076:9;74055:16;74070:1;74055:14:::0;:16:::3;:::i;73952:882::-;74178:24;74191:10;74178:12;:24::i;:::-;74206:1;74178:29;:52;;;;;74211:14;74229:1;74211:19;74178:52;74175:659;;;74299:9;74278:16;74293:1;74278:14:::0;:16:::3;:::i;74175:659::-;74401:24;74414:10;74401:12;:24::i;:::-;74429:1;74401:29;:52;;;;;74434:14;74452:1;74434:19;74401:52;74398:436;;;74522:9;74501:16;74516:1;74501:14:::0;:16:::3;:::i;74398:436::-;74624:24;74637:10;74624:12;:24::i;:::-;74652:1;74624:29;:52;;;;;74657:14;74675:1;74657:19;74624:52;74621:213;;;74741:9;74715:22;74723:14:::0;74715:5;:22:::3;:::i;:::-;:35;74693:113;;;;-1:-1:-1::0;;;74693:113:0::3;;;;;;;:::i;:::-;65132:14:::4;75198:1;75181:14;:18;:59;;;;;75221:19;;75203:14;:37;;75181:59;75159:154;;;;-1:-1:-1::0;;;75159:154:0::4;;;;;;;:::i;:::-;65175:14:::5;75515:20;;62387:3;75490:45;;;;:::i;:::-;75476:60;::::0;62660:4:::5;75476:60;:::i;:::-;75441:14;75425:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:111;;75403:193;;;;-1:-1:-1::0;;;75403:193:0::5;;;;;;;:::i;:::-;10537:1:::6;11135:7;;:19:::0;11127:63:::6;;;;-1:-1:-1::0;;;11127:63:0::6;;;;;;;:::i;:::-;10537:1;11268:7;:18:::0;16152:19:::7;:17;:19::i;:::-;65252:37:::8;65262:10;65274:14;65252:9;:37::i;:::-;65324:14;65312:9;;:26;;;;:::i;:::-;65300:9;:38:::0;65362:10:::8;::::0;:27:::8;::::0;65375:14;;65362:27:::8;:::i;:::-;65349:10;:40:::0;65465:10:::8;65446:30;::::0;;;:18:::8;:30;::::0;;;;;:60:::8;::::0;65492:14;;65446:60:::8;:::i;:::-;65419:10;65400:30;::::0;;;:18:::8;:30;::::0;;;;:106;-1:-1:-1;;10493:1:0::6;11447:7;:22:::0;74621:213:::3;72330:1;;71570::::2;75727::::1;;;64766:748:::0;;;;:::o;48746:204::-;48814:7;48839:16;48847:7;48839;:16::i;:::-;48834:64;;48864:34;;-1:-1:-1;;;48864:34:0;;;;;;;;;;;48834:64;-1:-1:-1;48918:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;48918:24:0;;48746:204::o;61684:87::-;;;;;;;:::i;48309:371::-;48382:13;48398:24;48414:7;48398:15;:24::i;:::-;48382:40;;48443:5;-1:-1:-1;;;;;48437:11:0;:2;-1:-1:-1;;;;;48437:11:0;;48433:48;;48457:24;;-1:-1:-1;;;48457:24:0;;;;;;;;;;;48433:48;14740:10;-1:-1:-1;;;;;48498:21:0;;;;;;:63;;-1:-1:-1;48524:37:0;48541:5;14740:10;70528:386;:::i;48524:37::-;48523:38;48498:63;48494:138;;;48585:35;;-1:-1:-1;;;48585:35:0;;;;;;;;;;;48494:138;48644:28;48653:2;48657:7;48666:5;48644:8;:28::i;:::-;48371:309;48309:371;;:::o;43105:303::-;66949:1;43359:12;43149:7;43343:13;:28;-1:-1:-1;;43343:46:0;;43105:303::o;49611:170::-;49745:28;49755:4;49761:2;49765:7;49745:9;:28::i;68369:113::-;18650:13;:11;:13::i;:::-;68456:8:::1;:18:::0;;-1:-1:-1;;68456:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;68369:113::o;70922:294::-;71088:16;71106:21;71153:7;18837:6;;-1:-1:-1;;;;;18837:6:0;;18764:87;71153:7;71187:4;71176:7;;71163:10;:20;;;;:::i;:::-;71162:29;;;;:::i;:::-;71145:47;;;;70922:294;;;;;:::o;63312:671::-;63429:22;;;;;;;;75670:46;;;;-1:-1:-1;;;75670:46:0;;;;;;;:::i;:::-;71728:12:::1;::::0;71696:10:::1;71673:34;::::0;;;:22:::1;:34;::::0;;;;;63482:14;;71728:12;71673:51:::1;::::0;63482:14;;71673:51:::1;:::i;:::-;:67;;71651:165;;;;-1:-1:-1::0;;;71651:165:0::1;;;;;;;:::i;:::-;62286:7:::2;63544:14:::0;72993:9:::2;72968:22;63544:14:::0;62286:7;72968:22:::2;:::i;:::-;:34;72942:120;;;;-1:-1:-1::0;;;72942:120:0::2;;;;;;;:::i;:::-;63585:14:::3;74954:1;74937:14;:18;:57;;;;;74977:17;;74959:14;:35;;74937:57;74915:152;;;;-1:-1:-1::0;;;74915:152:0::3;;;;;;;:::i;:::-;63628:14:::4;75515:20;;62387:3;75490:45;;;;:::i;:::-;75476:60;::::0;62660:4:::4;75476:60;:::i;:::-;75441:14;75425:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:111;;75403:193;;;;-1:-1:-1::0;;;75403:193:0::4;;;;;;;:::i;:::-;10537:1:::5;11135:7;;:19:::0;11127:63:::5;;;;-1:-1:-1::0;;;11127:63:0::5;;;;;;;:::i;:::-;10537:1;11268:7;:18:::0;16152:19:::6;:17;:19::i;:::-;63705:37:::7;63715:10;63727:14;63705:9;:37::i;:::-;63777:14;63765:9;;:26;;;;:::i;:::-;63753:9;:38:::0;63819:14:::7;::::0;:31:::7;::::0;63836:14;;63819:31:::7;:::i;:::-;63802:14;:48:::0;63934:10:::7;63911:34;::::0;;;:22:::7;:34;::::0;;;;;:64:::7;::::0;63961:14;;63911:64:::7;:::i;:::-;63884:10;63861:34;::::0;;;:22:::7;:34;::::0;;;;:114;-1:-1:-1;;10493:1:0::5;11447:7;:22:::0;-1:-1:-1;;;;;63312:671:0:o;70044:144::-;18650:13;:11;:13::i;:::-;70159:21:::1;::::0;;-1:-1:-1;;70134:46:0;::::1;70159:21:::0;;;;::::1;;;70158:22;70134:46:::0;;::::1;;::::0;;70044:144::o;66655:136::-;18650:13;:11;:13::i;:::-;66705:12:::1;:19:::0;;-1:-1:-1;;66705:19:0::1;66720:4;66705:19;::::0;;66743:7:::1;18837:6:::0;;-1:-1:-1;;;;;18837:6:0;;18764:87;66743:7:::1;-1:-1:-1::0;;;;;66735:25:0::1;:48;66761:21;66735:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66655:136::o:0;69648:93::-;18650:13;:11;:13::i;:::-;69723:10:::1;:8;:10::i;:::-;69648:93::o:0;49852:185::-;49990:39;50007:4;50013:2;50017:7;49990:39;;;;;;;;;;;;:16;:39::i;70351:169::-;70449:8;75801:1;75795:3;:7;75787:50;;;;-1:-1:-1;;;75787:50:0;;12552:2:1;75787:50:0;;;12534:21:1;12591:2;12571:18;;;12564:30;12630:32;12610:18;;;12603:60;12680:18;;75787:50:0;12350:354:1;75787:50:0;18650:13:::1;:11;:13::i;:::-;-1:-1:-1::0;70494:7:0::2;:18:::0;70351:169::o;68490:130::-;18650:13;:11;:13::i;:::-;68591:7:::1;:21;68601:11:::0;68591:7;:21:::1;:::i;:::-;;68490:130:::0;:::o;47051:125::-;47115:7;47142:21;47155:7;47142:12;:21::i;:::-;:26;;47051:125;-1:-1:-1;;47051:125:0:o;44225:206::-;44289:7;-1:-1:-1;;;;;44313:19:0;;44309:60;;44341:28;;-1:-1:-1;;;44341:28:0;;;;;;;;;;;44309:60;-1:-1:-1;;;;;;44395:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;44395:27:0;;44225:206::o;19412:103::-;18650:13;:11;:13::i;:::-;19477:30:::1;19504:1;19477:18;:30::i;66295:352::-:0;66401:14;62387:3;72704:14;72681:20;;:37;;;;:::i;:::-;:63;;72659:147;;;;-1:-1:-1;;;72659:147:0;;15115:2:1;72659:147:0;;;15097:21:1;15154:2;15134:18;;;15127:30;15193:34;15173:18;;;15166:62;-1:-1:-1;;;15244:18:1;;;15237:32;15286:19;;72659:147:0;14913:398:1;72659:147:0;66436:14:::1;75801:1;75795:3;:7;75787:50;;;::::0;-1:-1:-1;;;75787:50:0;;12552:2:1;75787:50:0::1;::::0;::::1;12534:21:1::0;12591:2;12571:18;;;12564:30;12630:32;12610:18;;;12603:60;12680:18;;75787:50:0::1;12350:354:1::0;75787:50:0::1;10537:1:::2;11135:7;;:19:::0;11127:63:::2;;;;-1:-1:-1::0;;;11127:63:0::2;;;;;;;:::i;:::-;10537:1;11268:7;:18:::0;18650:13:::3;:11;:13::i;:::-;66509:12:::4;:19:::0;;-1:-1:-1;;66509:19:0::4;;;::::0;;66539:29:::4;66549:2:::0;66553:14;66539:9:::4;:29::i;:::-;66625:14;66602:20;;:37;;;;:::i;:::-;66579:20;:60:::0;-1:-1:-1;;10493:1:0::2;11447:7;:22:::0;-1:-1:-1;;66295:352:0:o;69551:89::-;18650:13;:11;:13::i;:::-;69624:8:::1;:6;:8::i;68021:168::-:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;68160:21:0;68173:7;68160:12;:21::i;68947:134::-;18650:13;:11;:13::i;:::-;69050:14:::1;:23;69067:6:::0;;69050:14;:23:::1;:::i;47412:104::-:0;47468:13;47501:7;47494:14;;;;;:::i;49022:287::-;14740:10;-1:-1:-1;;;;;49121:24:0;;;49117:54;;49154:17;;-1:-1:-1;;;49154:17:0;;;;;;;;;;;49117:54;14740:10;49184:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;49184:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;49184:53:0;;;;;;;;;;49253:48;;540:41:1;;;49184:42:0;;14740:10;49253:48;;513:18:1;49253:48:0;;;;;;;49022:287;;:::o;63993:765::-;64154:21;;;;;;;;75670:46;;;;-1:-1:-1;;;75670:46:0;;;;;;;:::i;:::-;64205:11:::1;;64218:19;;71357:144;71394:11;;71357:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;71457:28:0::1;::::0;-1:-1:-1;;;;;;71474:10:0::1;9176:2:1::0;9172:15;9168:53;71457:28:0::1;::::0;::::1;9156:66:1::0;71424:4:0;;-1:-1:-1;9238:12:1;;;-1:-1:-1;71457:28:0::1;9027:229:1::0;71357:144:0::1;71335:224;;;;-1:-1:-1::0;;;71335:224:0::1;;;;;;;:::i;:::-;71980:12:::2;::::0;71948:10:::2;71926:33;::::0;;;:21:::2;:33;::::0;;;;;64264:14;;71980:12;71926:50:::2;::::0;64264:14;;71926:50:::2;:::i;:::-;:66;;71904:164;;;;-1:-1:-1::0;;;71904:164:0::2;;;;;;;:::i;:::-;62229:11:::3;64323:14;73201:24;73214:10;73201:12;:24::i;:::-;73228:1;73201:28:::0;73198:403:::3;;73302:9;73281:16;73296:1;73281:14:::0;:16:::3;:::i;:::-;73272:26;::::0;:5;:26:::3;:::i;:::-;:39;73246:125;;;;-1:-1:-1::0;;;73246:125:0::3;;;;;;;:::i;:::-;64364:14:::4;74954:1;74937:14;:18;:57;;;;;74977:17;;74959:14;:35;;74937:57;74915:152;;;;-1:-1:-1::0;;;74915:152:0::4;;;;;;;:::i;:::-;64407:14:::5;75515:20;;62387:3;75490:45;;;;:::i;:::-;75476:60;::::0;62660:4:::5;75476:60;:::i;:::-;75441:14;75425:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:111;;75403:193;;;;-1:-1:-1::0;;;75403:193:0::5;;;;;;;:::i;:::-;10537:1:::6;11135:7;;:19:::0;11127:63:::6;;;;-1:-1:-1::0;;;11127:63:0::6;;;;;;;:::i;:::-;10537:1;11268:7;:18:::0;16152:19:::7;:17;:19::i;:::-;64484:37:::8;64494:10;64506:14;64484:9;:37::i;:::-;64556:14;64544:9;;:26;;;;:::i;:::-;64532:9;:38:::0;64597:13:::8;::::0;:30:::8;::::0;64613:14;;64597:30:::8;:::i;:::-;64581:13;:46:::0;64709:10:::8;64687:33;::::0;;;:21:::8;:33;::::0;;;;;:63:::8;::::0;64736:14;;64687:63:::8;:::i;:::-;64660:10;64638:33;::::0;;;:21:::8;:33;::::0;;;;:112;-1:-1:-1;;10493:1:0::6;11447:7;:22:::0;73198:403:::3;;;73406:24;73419:10;73406:12;:24::i;:::-;73434:1;73406:29:::0;73403:198:::3;;73502:9;73474:24;73483:14:::0;73474:5;:24:::3;:::i;:::-;:37;73448:123;;;;-1:-1:-1::0;;;73448:123:0::3;;;;;;;:::i;:::-;64364:14:::4;74954:1;74937:14;:18;:57;;;;;74977:17;;74959:14;:35;;74937:57;74915:152;;;;-1:-1:-1::0;;;74915:152:0::4;;;;;;;:::i;:::-;64407:14:::5;75515:20;;62387:3;75490:45;;;;:::i;:::-;75476:60;::::0;62660:4:::5;75476:60;:::i;:::-;75441:14;75425:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:111;;75403:193;;;;-1:-1:-1::0;;;75403:193:0::5;;;;;;;:::i;:::-;10537:1:::6;11135:7;;:19:::0;11127:63:::6;;;;-1:-1:-1::0;;;11127:63:0::6;;;;;;;:::i;:::-;10537:1;11268:7;:18:::0;16152:19:::7;:17;:19::i;:::-;64484:37:::8;64494:10;64506:14;64484:9;:37::i;:::-;64556:14;64544:9;;:26;;;;:::i;:::-;64532:9;:38:::0;64597:13:::8;::::0;:30:::8;::::0;64613:14;;64597:30:::8;:::i;:::-;64581:13;:46:::0;64709:10:::8;64687:33;::::0;;;:21:::8;:33;::::0;;;;;:63:::8;::::0;64736:14;;64687:63:::8;:::i;:::-;64660:10;64638:33;::::0;;;:21:::8;:33;::::0;;;;:112;-1:-1:-1;;10493:1:0::6;11447:7;:22:::0;72079:1:::3;;71570::::2;75727::::1;;;63993:765:::0;;;;:::o;69901:135::-;18650:13;:11;:13::i;:::-;70010:18:::1;::::0;;-1:-1:-1;;69988:40:0;::::1;70010:18:::0;;;;::::1;;;70009:19;69988:40:::0;;::::1;;::::0;;69901:135::o;50108:369::-;50275:28;50285:4;50291:2;50295:7;50275:9;:28::i;:::-;-1:-1:-1;;;;;50318:13:0;;21757:19;:23;;50318:76;;;;;50338:56;50369:4;50375:2;50379:7;50388:5;50338:30;:56::i;:::-;50337:57;50318:76;50314:156;;;50418:40;;-1:-1:-1;;;50418:40:0;;;;;;;;;;;50314:156;50108:369;;;;:::o;69089:148::-;18650:13;:11;:13::i;:::-;69197:19:::1;:32:::0;69089:148::o;61640:37::-;;;;;;;:::i;66966:725::-;67084:13;67137:16;67145:7;67137;:16::i;:::-;67115:113;;;;-1:-1:-1;;;67115:113:0;;16729:2:1;67115:113:0;;;16711:21:1;16768:2;16748:18;;;16741:30;16807:34;16787:18;;;16780:62;-1:-1:-1;;;16858:18:1;;;16851:45;16913:19;;67115:113:0;16527:411:1;67115:113:0;67245:8;;;;:17;;:8;:17;67241:71;;67286:14;67279:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66966:725;;;:::o;67241:71::-;67324:28;67355:10;:8;:10::i;:::-;67324:41;;67427:1;67402:14;67396:28;:32;:287;;;;;;;;;;;;;;;;;67520:14;67561:18;:7;:16;:18::i;:::-;67606:13;67477:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67396:287;67376:307;66966:725;-1:-1:-1;;;66966:725:0:o;70196:147::-;18650:13;:11;:13::i;:::-;70313:22:::1;::::0;;-1:-1:-1;;70287:48:0;::::1;70313:22:::0;;;;::::1;;;70312:23;70287:48:::0;;::::1;;::::0;;70196:147::o;69749:144::-;18650:13;:11;:13::i;:::-;69864:21:::1;::::0;;-1:-1:-1;;69839:46:0;::::1;69864:21;::::0;;;::::1;;;69863:22;69839:46:::0;;::::1;;::::0;;69749:144::o;68788:151::-;18650:13;:11;:13::i;:::-;68898::::1;:33;68914:17:::0;68898:13;:33:::1;:::i;67854:159::-:0;67952:7;67985:20;67999:5;67985:13;:20::i;67699:147::-;67785:13;67824:14;67817:21;;;;;:::i;70528:386::-;70694:15;-1:-1:-1;;;;;;;70732:64:0;;;70728:108;;-1:-1:-1;70820:4:0;70813:11;;70728:108;-1:-1:-1;;;;;;49501:25:0;;;49477:4;49501:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;70528:386::o;68628:152::-;18650:13;:11;:13::i;:::-;68740:14:::1;:32;68757:15:::0;68740:14;:32:::1;:::i;19670:201::-:0;18650:13;:11;:13::i;:::-;-1:-1:-1;;;;;19759:22:0;::::1;19751:73;;;::::0;-1:-1:-1;;;19751:73:0;;18380:2:1;19751:73:0::1;::::0;::::1;18362:21:1::0;18419:2;18399:18;;;18392:30;18458:34;18438:18;;;18431:62;-1:-1:-1;;;18509:18:1;;;18502:36;18555:19;;19751:73:0::1;18178:402:1::0;19751:73:0::1;19835:28;19854:8;19835:18;:28::i;69245:142::-:0;18650:13;:11;:13::i;:::-;69350:16:::1;:29:::0;69245:142::o;65522:765::-;65683:21;;;;;;;;75670:46;;;;-1:-1:-1;;;75670:46:0;;;;;;;:::i;:::-;65734:11:::1;;65747:19;;71357:144;71394:11;;71357:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;71457:28:0::1;::::0;-1:-1:-1;;;;;;71474:10:0::1;9176:2:1::0;9172:15;9168:53;71457:28:0::1;::::0;::::1;9156:66:1::0;71424:4:0;;-1:-1:-1;9238:12:1;;;-1:-1:-1;71457:28:0::1;9027:229:1::0;71357:144:0::1;71335:224;;;;-1:-1:-1::0;;;71335:224:0::1;;;;;;;:::i;:::-;72483:12:::2;::::0;72451:10:::2;72429:33;::::0;;;:21:::2;:33;::::0;;;;;65793:14;;72483:12;72429:50:::2;::::0;65793:14;;72429:50:::2;:::i;:::-;:66;;72407:164;;;;-1:-1:-1::0;;;72407:164:0::2;;;;;;;:::i;:::-;62229:11:::3;65852:14;73201:24;73214:10;73201:12;:24::i;:::-;73228:1;73201:28:::0;73198:403:::3;;73302:9;73281:16;73296:1;73281:14:::0;:16:::3;:::i;:::-;73272:26;::::0;:5;:26:::3;:::i;:::-;:39;73246:125;;;;-1:-1:-1::0;;;73246:125:0::3;;;;;;;:::i;:::-;65893:14:::4;74954:1;74937:14;:18;:57;;;;;74977:17;;74959:14;:35;;74937:57;74915:152;;;;-1:-1:-1::0;;;74915:152:0::4;;;;;;;:::i;:::-;65936:14:::5;75515:20;;62387:3;75490:45;;;;:::i;:::-;75476:60;::::0;62660:4:::5;75476:60;:::i;:::-;75441:14;75425:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:111;;75403:193;;;;-1:-1:-1::0;;;75403:193:0::5;;;;;;;:::i;:::-;10537:1:::6;11135:7;;:19:::0;11127:63:::6;;;;-1:-1:-1::0;;;11127:63:0::6;;;;;;;:::i;:::-;10537:1;11268:7;:18:::0;16152:19:::7;:17;:19::i;:::-;66013:37:::8;66023:10;66035:14;66013:9;:37::i;:::-;66085:14;66073:9;;:26;;;;:::i;:::-;66061:9;:38:::0;66126:13:::8;::::0;:30:::8;::::0;66142:14;;66126:30:::8;:::i;:::-;66110:13;:46:::0;66238:10:::8;66216:33;::::0;;;:21:::8;:33;::::0;;;;;:63:::8;::::0;66265:14;;66216:63:::8;:::i;:::-;66189:10;66167:33;::::0;;;:21:::8;:33;::::0;;;;:112;-1:-1:-1;;10493:1:0::6;11447:7;:22:::0;73198:403:::3;;;73406:24;73419:10;73406:12;:24::i;:::-;73434:1;73406:29:::0;73403:198:::3;;73502:9;73474:24;73483:14:::0;73474:5;:24:::3;:::i;:::-;:37;73448:123;;;;-1:-1:-1::0;;;73448:123:0::3;;;;;;;:::i;:::-;65893:14:::4;74954:1;74937:14;:18;:57;;;;;74977:17;;74959:14;:35;;74937:57;74915:152;;;;-1:-1:-1::0;;;74915:152:0::4;;;;;;;:::i;:::-;65936:14:::5;75515:20;;62387:3;75490:45;;;;:::i;:::-;75476:60;::::0;62660:4:::5;75476:60;:::i;:::-;75441:14;75425:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:111;;75403:193;;;;-1:-1:-1::0;;;75403:193:0::5;;;;;;;:::i;:::-;10537:1:::6;11135:7;;:19:::0;11127:63:::6;;;;-1:-1:-1::0;;;11127:63:0::6;;;;;;;:::i;:::-;10537:1;11268:7;:18:::0;16152:19:::7;:17;:19::i;:::-;66013:37:::8;66023:10;66035:14;66013:9;:37::i;:::-;66085:14;66073:9;;:26;;;;:::i;:::-;66061:9;:38:::0;66126:13:::8;::::0;:30:::8;::::0;66142:14;;66126:30:::8;:::i;:::-;66110:13;:46:::0;66238:10:::8;66216:33;::::0;;;:21:::8;:33;::::0;;;;;:63:::8;::::0;66265:14;;66216:63:::8;:::i;:::-;66189:10;66167:33;::::0;;;:21:::8;:33;::::0;;;;:112;-1:-1:-1;;10493:1:0::6;11447:7;:22:::0;72582:1:::3;;71570::::2;75727::::1;;;65522:765:::0;;;;:::o;69395:148::-;18650:13;:11;:13::i;:::-;69503:19:::1;:32:::0;69395:148::o;43856:305::-;43958:4;-1:-1:-1;;;;;;43995:40:0;;-1:-1:-1;;;43995:40:0;;:105;;-1:-1:-1;;;;;;;44052:48:0;;-1:-1:-1;;;44052:48:0;43995:105;:158;;;-1:-1:-1;;;;;;;;;;32625:40:0;;;44117:36;32516:157;1219:190;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;;1219:190;-1:-1:-1;;;;1219:190:0:o;16706:108::-;16618:7;;-1:-1:-1;;;16618:7:0;;;;16776:9;16768:38;;;;-1:-1:-1;;;16768:38:0;;18787:2:1;16768:38:0;;;18769:21:1;18826:2;18806:18;;;18799:30;-1:-1:-1;;;18845:18:1;;;18838:46;18901:18;;16768:38:0;18585:340:1;50927:104:0;50996:27;51006:2;51010:8;50996:27;;;;;;;;;;;;:9;:27::i;50732:187::-;50789:4;50832:7;66949:1;50813:26;;:53;;;;;50853:13;;50843:7;:23;50813:53;:98;;;;-1:-1:-1;;50884:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;50884:27:0;;;;50883:28;;50732:187::o;58345:196::-;58460:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;58460:29:0;-1:-1:-1;;;;;58460:29:0;;;;;;;;;58505:28;;58460:24;;58505:28;;;;;;;58345:196;;;:::o;53845:2113::-;53960:35;53998:21;54011:7;53998:12;:21::i;:::-;54074:18;;53960:59;;-1:-1:-1;54032:22:0;;-1:-1:-1;;;;;54058:34:0;14740:10;-1:-1:-1;;;;;54058:34:0;;:101;;;-1:-1:-1;54126:18:0;;54109:50;;14740:10;70528:386;:::i;54109:50::-;54058:154;;;-1:-1:-1;14740:10:0;54176:20;54188:7;54176:11;:20::i;:::-;-1:-1:-1;;;;;54176:36:0;;54058:154;54032:181;;54231:17;54226:66;;54257:35;;-1:-1:-1;;;54257:35:0;;;;;;;;;;;54226:66;54329:4;-1:-1:-1;;;;;54307:26:0;:13;:18;;;-1:-1:-1;;;;;54307:26:0;;54303:67;;54342:28;;-1:-1:-1;;;54342:28:0;;;;;;;;;;;54303:67;-1:-1:-1;;;;;54385:16:0;;54381:52;;54410:23;;-1:-1:-1;;;54410:23:0;;;;;;;;;;;54381:52;54554:49;54571:1;54575:7;54584:13;:18;;;54554:8;:49::i;:::-;-1:-1:-1;;;;;54899:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;54899:31:0;;;-1:-1:-1;;;;;54899:31:0;;;-1:-1:-1;;54899:31:0;;;;;;;54945:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;54945:29:0;;;;;;;;;;;54991:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;55036:61:0;;;;-1:-1:-1;;;55081:15:0;55036:61;;;;;;;;;;;55371:11;;;55401:24;;;;;:29;55371:11;;55401:29;55397:445;;55626:13;;55612:11;:27;55608:219;;;55696:18;;;55664:24;;;:11;:24;;;;;;;;:50;;55779:28;;;;-1:-1:-1;;;;;55737:70:0;-1:-1:-1;;;55737:70:0;-1:-1:-1;;;;;;55737:70:0;;;-1:-1:-1;;;;;55664:50:0;;;55737:70;;;;;;;55608:219;54874:979;55889:7;55885:2;-1:-1:-1;;;;;55870:27:0;55879:4;-1:-1:-1;;;;;55870:27:0;;;;;;;;;;;55908:42;53949:2009;;53845:2113;;;:::o;18929:132::-;18837:6;;-1:-1:-1;;;;;18837:6:0;14740:10;18993:23;18985:68;;;;-1:-1:-1;;;18985:68:0;;19132:2:1;18985:68:0;;;19114:21:1;;;19151:18;;;19144:30;19210:34;19190:18;;;19183:62;19262:18;;18985:68:0;18930:356:1;17402:120:0;16411:16;:14;:16::i;:::-;17461:7:::1;:15:::0;;-1:-1:-1;;;;17461:15:0::1;::::0;;17492:22:::1;14740:10:::0;17501:12:::1;17492:22;::::0;-1:-1:-1;;;;;2386:32:1;;;2368:51;;2356:2;2341:18;17492:22:0::1;;;;;;;17402:120::o:0;45880:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;45991:7:0;;66949:1;46040:23;;:47;;;;;46074:13;;46067:4;:20;46040:47;46036:886;;;46108:31;46142:17;;;:11;:17;;;;;;;;;46108:51;;;;;;;;;-1:-1:-1;;;;;46108:51:0;;;;-1:-1:-1;;;46108:51:0;;-1:-1:-1;;;;;46108:51:0;;;;;;;;-1:-1:-1;;;46108:51:0;;;;;;;;;;;;;;46178:729;;46228:14;;-1:-1:-1;;;;;46228:28:0;;46224:101;;46292:9;45880:1109;-1:-1:-1;;;45880:1109:0:o;46224:101::-;-1:-1:-1;;;46667:6:0;46712:17;;;;:11;:17;;;;;;;;;46700:29;;;;;;;;;-1:-1:-1;;;;;46700:29:0;;;;;-1:-1:-1;;;46700:29:0;;-1:-1:-1;;;;;46700:29:0;;;;;;;;-1:-1:-1;;;46700:29:0;;;;;;;;;;;;;46760:28;46756:109;;46828:9;45880:1109;-1:-1:-1;;;45880:1109:0:o;46756:109::-;46627:261;;;46089:833;46036:886;46950:31;;-1:-1:-1;;;46950:31:0;;;;;;;;;;;20031:191;20124:6;;;-1:-1:-1;;;;;20141:17:0;;;-1:-1:-1;;;;;;20141:17:0;;;;;;;20174:40;;20124:6;;;20141:17;20124:6;;20174:40;;20105:16;;20174:40;20094:128;20031:191;:::o;17143:118::-;16152:19;:17;:19::i;:::-;17203:7:::1;:14:::0;;-1:-1:-1;;;;17203:14:0::1;-1:-1:-1::0;;;17203:14:0::1;::::0;;17233:20:::1;17240:12;14740:10:::0;;14660:98;59033:667;59217:72;;-1:-1:-1;;;59217:72:0;;59196:4;;-1:-1:-1;;;;;59217:36:0;;;;;:72;;14740:10;;59268:4;;59274:7;;59283:5;;59217:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59217:72:0;;;;;;;;-1:-1:-1;;59217:72:0;;;;;;;;;;;;:::i;:::-;;;59213:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59451:6;:13;59468:1;59451:18;59447:235;;59497:40;;-1:-1:-1;;;59497:40:0;;;;;;;;;;;59447:235;59640:6;59634:13;59625:6;59621:2;59617:15;59610:38;59213:480;-1:-1:-1;;;;;;59336:55:0;-1:-1:-1;;;59336:55:0;;-1:-1:-1;59213:480:0;59033:667;;;;;;:::o;68197:164::-;68307:13;68346:7;68339:14;;;;;:::i;11914:723::-;11970:13;12191:5;12200:1;12191:10;12187:53;;-1:-1:-1;;12218:10:0;;;;;;;;;;;;-1:-1:-1;;;12218:10:0;;;;;11914:723::o;12187:53::-;12265:5;12250:12;12306:78;12313:9;;12306:78;;12339:8;;;;:::i;:::-;;-1:-1:-1;12362:10:0;;-1:-1:-1;12370:2:0;12362:10;;:::i;:::-;;;12306:78;;;12394:19;12426:6;-1:-1:-1;;;;;12416:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12416:17:0;;12394:39;;12444:154;12451:10;;12444:154;;12478:11;12488:1;12478:11;;:::i;:::-;;-1:-1:-1;12547:10:0;12555:2;12547:5;:10;:::i;:::-;12534:24;;:2;:24;:::i;:::-;12521:39;;12504:6;12511;12504:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;12504:56:0;;;;;;;;-1:-1:-1;12575:11:0;12584:2;12575:11;;:::i;:::-;;;12444:154;;44513:207;44574:7;-1:-1:-1;;;;;44598:19:0;;44594:59;;44626:27;;-1:-1:-1;;;44626:27:0;;;;;;;;;;;44594:59;-1:-1:-1;;;;;;44679:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;44679:32:0;;-1:-1:-1;;;;;44679:32:0;;44513:207::o;2086:296::-;2169:7;2212:4;2169:7;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;2300:9;:33::i;:::-;2285:48;-1:-1:-1;2265:3:0;;;;:::i;:::-;;;;2227:118;;;-1:-1:-1;2362:12:0;2086:296;-1:-1:-1;;;2086:296:0:o;51394:163::-;51517:32;51523:2;51527:8;51537:5;51544:4;51517:5;:32::i;16891:108::-;16618:7;;-1:-1:-1;;;16618:7:0;;;;16950:41;;;;-1:-1:-1;;;16950:41:0;;20630:2:1;16950:41:0;;;20612:21:1;20669:2;20649:18;;;20642:30;-1:-1:-1;;;20688:18:1;;;20681:50;20748:18;;16950:41:0;20428:344:1;8293:149:0;8356:7;8387:1;8383;:5;:51;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8383:51;;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8391:20;8450:268;51816:1775;51955:20;51978:13;-1:-1:-1;;;;;52006:16:0;;52002:48;;52031:19;;-1:-1:-1;;;52031:19:0;;;;;;;;;;;52002:48;52065:8;52077:1;52065:13;52061:44;;52087:18;;-1:-1:-1;;;52087:18:0;;;;;;;;;;;52061:44;-1:-1:-1;;;;;52456:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;52515:49:0;;-1:-1:-1;;;;;52456:44:0;;;;;;;52515:49;;;-1:-1:-1;;;;;52456:44:0;;;;;;52515:49;;;;;;;;;;;;;;;;52581:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;52631:66:0;;;;-1:-1:-1;;;52681:15:0;52631:66;;;;;;;;;;52581:25;52778:23;;;52822:4;:23;;;;-1:-1:-1;;;;;;52830:13:0;;21757:19;:23;;52830:15;52818:641;;;52866:314;52897:38;;52922:12;;-1:-1:-1;;;;;52897:38:0;;;52914:1;;52897:38;;52914:1;;52897:38;52963:69;53002:1;53006:2;53010:14;;;;;;53026:5;52963:30;:69::i;:::-;52958:174;;53068:40;;-1:-1:-1;;;53068:40:0;;;;;;;;;;;52958:174;53175:3;53159:12;:19;52866:314;;53261:12;53244:13;;:29;53240:43;;53275:8;;;53240:43;52818:641;;;53324:120;53355:40;;53380:14;;;;;-1:-1:-1;;;;;53355:40:0;;;53372:1;;53355:40;;53372:1;;53355:40;53439:3;53423:12;:19;53324:120;;52818:641;-1:-1:-1;53473:13:0;:28;53523:60;50108:369;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:689::-;1438:6;1446;1454;1507:2;1495:9;1486:7;1482:23;1478:32;1475:52;;;1523:1;1520;1513:12;1475:52;1563:9;1550:23;-1:-1:-1;;;;;1633:2:1;1625:6;1622:14;1619:34;;;1649:1;1646;1639:12;1619:34;1687:6;1676:9;1672:22;1662:32;;1732:7;1725:4;1721:2;1717:13;1713:27;1703:55;;1754:1;1751;1744:12;1703:55;1794:2;1781:16;1820:2;1812:6;1809:14;1806:34;;;1836:1;1833;1826:12;1806:34;1891:7;1884:4;1874:6;1871:1;1867:14;1863:2;1859:23;1855:34;1852:47;1849:67;;;1912:1;1909;1902:12;1849:67;1943:4;1935:13;;;;1967:6;;-1:-1:-1;2005:20:1;;;;1992:34;;1343:689;-1:-1:-1;;;;1343:689:1:o;2037:180::-;2096:6;2149:2;2137:9;2128:7;2124:23;2120:32;2117:52;;;2165:1;2162;2155:12;2117:52;-1:-1:-1;2188:23:1;;2037:180;-1:-1:-1;2037:180:1:o;2430:173::-;2498:20;;-1:-1:-1;;;;;2547:31:1;;2537:42;;2527:70;;2593:1;2590;2583:12;2527:70;2430:173;;;:::o;2608:254::-;2676:6;2684;2737:2;2725:9;2716:7;2712:23;2708:32;2705:52;;;2753:1;2750;2743:12;2705:52;2776:29;2795:9;2776:29;:::i;:::-;2766:39;2852:2;2837:18;;;;2824:32;;-1:-1:-1;;;2608:254:1:o;3231:328::-;3308:6;3316;3324;3377:2;3365:9;3356:7;3352:23;3348:32;3345:52;;;3393:1;3390;3383:12;3345:52;3416:29;3435:9;3416:29;:::i;:::-;3406:39;;3464:38;3498:2;3487:9;3483:18;3464:38;:::i;:::-;3454:48;;3549:2;3538:9;3534:18;3521:32;3511:42;;3231:328;;;;;:::o;3564:160::-;3629:20;;3685:13;;3678:21;3668:32;;3658:60;;3714:1;3711;3704:12;3729:180;3785:6;3838:2;3826:9;3817:7;3813:23;3809:32;3806:52;;;3854:1;3851;3844:12;3806:52;3877:26;3893:9;3877:26;:::i;3914:248::-;3982:6;3990;4043:2;4031:9;4022:7;4018:23;4014:32;4011:52;;;4059:1;4056;4049:12;4011:52;-1:-1:-1;;4082:23:1;;;4152:2;4137:18;;;4124:32;;-1:-1:-1;3914:248:1:o;4446:127::-;4507:10;4502:3;4498:20;4495:1;4488:31;4538:4;4535:1;4528:15;4562:4;4559:1;4552:15;4578:632;4643:5;-1:-1:-1;;;;;4714:2:1;4706:6;4703:14;4700:40;;;4720:18;;:::i;:::-;4795:2;4789:9;4763:2;4849:15;;-1:-1:-1;;4845:24:1;;;4871:2;4841:33;4837:42;4825:55;;;4895:18;;;4915:22;;;4892:46;4889:72;;;4941:18;;:::i;:::-;4981:10;4977:2;4970:22;5010:6;5001:15;;5040:6;5032;5025:22;5080:3;5071:6;5066:3;5062:16;5059:25;5056:45;;;5097:1;5094;5087:12;5056:45;5147:6;5142:3;5135:4;5127:6;5123:17;5110:44;5202:1;5195:4;5186:6;5178;5174:19;5170:30;5163:41;;;;4578:632;;;;;:::o;5215:451::-;5284:6;5337:2;5325:9;5316:7;5312:23;5308:32;5305:52;;;5353:1;5350;5343:12;5305:52;5393:9;5380:23;-1:-1:-1;;;;;5418:6:1;5415:30;5412:50;;;5458:1;5455;5448:12;5412:50;5481:22;;5534:4;5526:13;;5522:27;-1:-1:-1;5512:55:1;;5563:1;5560;5553:12;5512:55;5586:74;5652:7;5647:2;5634:16;5629:2;5625;5621:11;5586:74;:::i;5671:186::-;5730:6;5783:2;5771:9;5762:7;5758:23;5754:32;5751:52;;;5799:1;5796;5789:12;5751:52;5822:29;5841:9;5822:29;:::i;6308:592::-;6379:6;6387;6440:2;6428:9;6419:7;6415:23;6411:32;6408:52;;;6456:1;6453;6446:12;6408:52;6496:9;6483:23;-1:-1:-1;;;;;6566:2:1;6558:6;6555:14;6552:34;;;6582:1;6579;6572:12;6552:34;6620:6;6609:9;6605:22;6595:32;;6665:7;6658:4;6654:2;6650:13;6646:27;6636:55;;6687:1;6684;6677:12;6636:55;6727:2;6714:16;6753:2;6745:6;6742:14;6739:34;;;6769:1;6766;6759:12;6739:34;6814:7;6809:2;6800:6;6796:2;6792:15;6788:24;6785:37;6782:57;;;6835:1;6832;6825:12;6782:57;6866:2;6858:11;;;;;6888:6;;-1:-1:-1;6308:592:1;;-1:-1:-1;;;;6308:592:1:o;6905:254::-;6970:6;6978;7031:2;7019:9;7010:7;7006:23;7002:32;6999:52;;;7047:1;7044;7037:12;6999:52;7070:29;7089:9;7070:29;:::i;:::-;7060:39;;7118:35;7149:2;7138:9;7134:18;7118:35;:::i;:::-;7108:45;;6905:254;;;;;:::o;7164:667::-;7259:6;7267;7275;7283;7336:3;7324:9;7315:7;7311:23;7307:33;7304:53;;;7353:1;7350;7343:12;7304:53;7376:29;7395:9;7376:29;:::i;:::-;7366:39;;7424:38;7458:2;7447:9;7443:18;7424:38;:::i;:::-;7414:48;;7509:2;7498:9;7494:18;7481:32;7471:42;;7564:2;7553:9;7549:18;7536:32;-1:-1:-1;;;;;7583:6:1;7580:30;7577:50;;;7623:1;7620;7613:12;7577:50;7646:22;;7699:4;7691:13;;7687:27;-1:-1:-1;7677:55:1;;7728:1;7725;7718:12;7677:55;7751:74;7817:7;7812:2;7799:16;7794:2;7790;7786:11;7751:74;:::i;:::-;7741:84;;;7164:667;;;;;;;:::o;8021:260::-;8089:6;8097;8150:2;8138:9;8129:7;8125:23;8121:32;8118:52;;;8166:1;8163;8156:12;8118:52;8189:29;8208:9;8189:29;:::i;:::-;8179:39;;8237:38;8271:2;8260:9;8256:18;8237:38;:::i;8286:380::-;8365:1;8361:12;;;;8408;;;8429:61;;8483:4;8475:6;8471:17;8461:27;;8429:61;8536:2;8528:6;8525:14;8505:18;8502:38;8499:161;;8582:10;8577:3;8573:20;8570:1;8563:31;8617:4;8614:1;8607:15;8645:4;8642:1;8635:15;8499:161;;8286:380;;;:::o;8671:351::-;8873:2;8855:21;;;8912:2;8892:18;;;8885:30;8951:29;8946:2;8931:18;;8924:57;9013:2;8998:18;;8671:351::o;9261:354::-;9463:2;9445:21;;;9502:2;9482:18;;;9475:30;9541:32;9536:2;9521:18;;9514:60;9606:2;9591:18;;9261:354::o;9620:127::-;9681:10;9676:3;9672:20;9669:1;9662:31;9712:4;9709:1;9702:15;9736:4;9733:1;9726:15;9752:128;9792:3;9823:1;9819:6;9816:1;9813:13;9810:39;;;9829:18;;:::i;:::-;-1:-1:-1;9865:9:1;;9752:128::o;9885:412::-;10087:2;10069:21;;;10126:2;10106:18;;;10099:30;10165:34;10160:2;10145:18;;10138:62;-1:-1:-1;;;10231:2:1;10216:18;;10209:46;10287:3;10272:19;;9885:412::o;10302:125::-;10342:4;10370:1;10367;10364:8;10361:34;;;10375:18;;:::i;:::-;-1:-1:-1;10412:9:1;;10302:125::o;10432:168::-;10472:7;10538:1;10534;10530:6;10526:14;10523:1;10520:21;10515:1;10508:9;10501:17;10497:45;10494:71;;;10545:18;;:::i;:::-;-1:-1:-1;10585:9:1;;10432:168::o;10605:348::-;10807:2;10789:21;;;10846:2;10826:18;;;10819:30;10885:26;10880:2;10865:18;;10858:54;10944:2;10929:18;;10605:348::o;10958:409::-;11160:2;11142:21;;;11199:2;11179:18;;;11172:30;11238:34;11233:2;11218:18;;11211:62;-1:-1:-1;;;11304:2:1;11289:18;;11282:43;11357:3;11342:19;;10958:409::o;11372:356::-;11574:2;11556:21;;;11593:18;;;11586:30;11652:34;11647:2;11632:18;;11625:62;11719:2;11704:18;;11372:356::o;11733:355::-;11935:2;11917:21;;;11974:2;11954:18;;;11947:30;12013:33;12008:2;11993:18;;11986:61;12079:2;12064:18;;11733:355::o;12093:127::-;12154:10;12149:3;12145:20;12142:1;12135:31;12185:4;12182:1;12175:15;12209:4;12206:1;12199:15;12225:120;12265:1;12291;12281:35;;12296:18;;:::i;:::-;-1:-1:-1;12330:9:1;;12225:120::o;12835:545::-;12937:2;12932:3;12929:11;12926:448;;;12973:1;12998:5;12994:2;12987:17;13043:4;13039:2;13029:19;13113:2;13101:10;13097:19;13094:1;13090:27;13084:4;13080:38;13149:4;13137:10;13134:20;13131:47;;;-1:-1:-1;13172:4:1;13131:47;13227:2;13222:3;13218:12;13215:1;13211:20;13205:4;13201:31;13191:41;;13282:82;13300:2;13293:5;13290:13;13282:82;;;13345:17;;;13326:1;13315:13;13282:82;;;13286:3;;;12835:545;;;:::o;13556:1352::-;13682:3;13676:10;-1:-1:-1;;;;;13701:6:1;13698:30;13695:56;;;13731:18;;:::i;:::-;13760:97;13850:6;13810:38;13842:4;13836:11;13810:38;:::i;:::-;13804:4;13760:97;:::i;:::-;13912:4;;13976:2;13965:14;;13993:1;13988:663;;;;14695:1;14712:6;14709:89;;;-1:-1:-1;14764:19:1;;;14758:26;14709:89;-1:-1:-1;;13513:1:1;13509:11;;;13505:24;13501:29;13491:40;13537:1;13533:11;;;13488:57;14811:81;;13958:944;;13988:663;12782:1;12775:14;;;12819:4;12806:18;;-1:-1:-1;;14024:20:1;;;14142:236;14156:7;14153:1;14150:14;14142:236;;;14245:19;;;14239:26;14224:42;;14337:27;;;;14305:1;14293:14;;;;14172:19;;14142:236;;;14146:3;14406:6;14397:7;14394:19;14391:201;;;14467:19;;;14461:26;-1:-1:-1;;14550:1:1;14546:14;;;14562:3;14542:24;14538:37;14534:42;14519:58;14504:74;;14391:201;-1:-1:-1;;;;;14638:1:1;14622:14;;;14618:22;14605:36;;-1:-1:-1;13556:1352:1:o;15316:1206::-;-1:-1:-1;;;;;15435:3:1;15432:27;15429:53;;;15462:18;;:::i;:::-;15491:94;15581:3;15541:38;15573:4;15567:11;15541:38;:::i;:::-;15535:4;15491:94;:::i;:::-;15611:1;15636:2;15631:3;15628:11;15653:1;15648:616;;;;16308:1;16325:3;16322:93;;;-1:-1:-1;16381:19:1;;;16368:33;16322:93;-1:-1:-1;;13513:1:1;13509:11;;;13505:24;13501:29;13491:40;13537:1;13533:11;;;13488:57;16428:78;;15621:895;;15648:616;12782:1;12775:14;;;12819:4;12806:18;;-1:-1:-1;;15684:17:1;;;15785:9;15807:229;15821:7;15818:1;15815:14;15807:229;;;15910:19;;;15897:33;15882:49;;16017:4;16002:20;;;;15970:1;15958:14;;;;15837:12;15807:229;;;15811:3;16064;16055:7;16052:16;16049:159;;;16188:1;16184:6;16178:3;16172;16169:1;16165:11;16161:21;16157:34;16153:39;16140:9;16135:3;16131:19;16118:33;16114:79;16106:6;16099:95;16049:159;;;16251:1;16245:3;16242:1;16238:11;16234:19;16228:4;16221:33;15621:895;;15316:1206;;;:::o;16943:1230::-;17167:3;17205:6;17199:13;17231:4;17244:51;17288:6;17283:3;17278:2;17270:6;17266:15;17244:51;:::i;:::-;17358:13;;17317:16;;;;17380:55;17358:13;17317:16;17402:15;;;17380:55;:::i;:::-;17524:13;;17457:20;;;17497:1;;17562:36;17524:13;17562:36;:::i;:::-;17617:1;17634:18;;;17661:141;;;;17816:1;17811:337;;;;17627:521;;17661:141;-1:-1:-1;;17696:24:1;;17682:39;;17773:16;;17766:24;17752:39;;17741:51;;;-1:-1:-1;17661:141:1;;17811:337;17842:6;17839:1;17832:17;17890:2;17887:1;17877:16;17915:1;17929:169;17943:8;17940:1;17937:15;17929:169;;;18025:14;;18010:13;;;18003:37;18068:16;;;;17960:10;;17929:169;;;17933:3;;18129:8;18122:5;18118:20;18111:27;;17627:521;-1:-1:-1;18164:3:1;;16943:1230;-1:-1:-1;;;;;;;;;;16943:1230:1:o;19291:489::-;-1:-1:-1;;;;;19560:15:1;;;19542:34;;19612:15;;19607:2;19592:18;;19585:43;19659:2;19644:18;;19637:34;;;19707:3;19702:2;19687:18;;19680:31;;;19485:4;;19728:46;;19754:19;;19746:6;19728:46;:::i;:::-;19720:54;19291:489;-1:-1:-1;;;;;;19291:489:1:o;19785:249::-;19854:6;19907:2;19895:9;19886:7;19882:23;19878:32;19875:52;;;19923:1;19920;19913:12;19875:52;19955:9;19949:16;19974:30;19998:5;19974:30;:::i;20039:135::-;20078:3;20099:17;;;20096:43;;20119:18;;:::i;:::-;-1:-1:-1;20166:1:1;20155:13;;20039:135::o;20179:112::-;20211:1;20237;20227:35;;20242:18;;:::i;:::-;-1:-1:-1;20276:9:1;;20179:112::o;20296:127::-;20357:10;20352:3;20348:20;20345:1;20338:31;20388:4;20385:1;20378:15;20412:4;20409:1;20402:15

Swarm Source

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