ETH Price: $3,283.09 (-3.73%)
Gas: 16 Gwei

Token

The Dubaiites (TD)
 

Overview

Max Total Supply

663 TD

Holders

332

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 TD
0x4A3ED7D160375303AE27A38199aEaD155086C375
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:
TheDubaiites

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

// 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 v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/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/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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/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: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex != end);

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;





contract TheDubaiites is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;


  string  public  baseTokenURI = "ipfs://QmQ1tNGdVSGuF8snZNkwVuubVhMys2Goazx7ocR3JRgHkd/";
  uint256  public  maxSupply = 5555;
  uint256 public  MAX_MINTS_PER_TX = 10;
  uint256 public  PUBLIC_SALE_PRICE = 0.005 ether;
  uint256 public  NUM_FREE_MINTS = 1500;
  uint256 public  MAX_FREE_PER_WALLET = 2;
  uint256 public freeNFTAlreadyMinted = 0;
  bool public isPublicSaleActive = true;

  constructor(

  ) ERC721A("The Dubaiites", "TD") {

  }


  function mint(uint256 numberOfTokens)
      external
      payable
  {
    require(isPublicSaleActive, "Public sale is not open");
    require(totalSupply() + numberOfTokens < maxSupply + 1, "No more");

    if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS){
        require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
    } else {
        if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) {
        require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                numberOfTokens <= MAX_FREE_PER_WALLET,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += numberOfTokens;
        }
    }
    _safeMint(msg.sender, numberOfTokens);
  }

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

  function treasuryMint(uint quantity)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(msg.sender, quantity);
  }

  function withdraw()
    public
    onlyOwner
    nonReentrant
  {
    Address.sendValue(payable(msg.sender), address(this).balance);
  }

  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json"));
  }

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

  function setIsPublicSaleActive(bool _isPublicSaleActive)
      external
      onlyOwner
  {
      isPublicSaleActive = _isPublicSaleActive;
  }

  function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function setSalePrice(uint256 _price)
      external
      onlyOwner
  {
      PUBLIC_SALE_PRICE = _price;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      MAX_MINTS_PER_TX = _limit;
  }

  function setFreeLimitPerWallet(uint256 _limit)
      external
      onlyOwner
  {
      MAX_FREE_PER_WALLET = _limit;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280603681526020016200411c60369139600a90805190602001906200003592919062000240565b506115b3600b55600a600c556611c37937e08000600d556105dc600e556002600f5560006010556001601160006101000a81548160ff0219169083151502179055503480156200008457600080fd5b506040518060400160405280600d81526020017f54686520447562616969746573000000000000000000000000000000000000008152506040518060400160405280600281526020017f544400000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010992919062000240565b5080600390805190602001906200012292919062000240565b50620001336200016960201b60201c565b60008190555050506200015b6200014f6200017260201b60201c565b6200017a60201b60201c565b600160098190555062000355565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024e906200031f565b90600052602060002090601f016020900481019282620002725760008555620002be565b82601f106200028d57805160ff1916838001178555620002be565b82800160010185558215620002be579182015b82811115620002bd578251825591602001919060010190620002a0565b5b509050620002cd9190620002d1565b5090565b5b80821115620002ec576000816000905550600101620002d2565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033857607f821691505b602082108114156200034f576200034e620002f0565b5b50919050565b613db780620003656000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106ea578063d5abeb0114610715578063e985e9c514610740578063efdc77881461077d578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c6a91b4214610682578063c87b56dd146106ad576101f9565b8063982d669e116100dc578063982d669e1461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b806370a08231146104eb578063715018a6146105285780638da5cb5b1461053f57806395d89b411461056a576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d1461041c5780633ccfd60b1461044557806342842e0e1461045c57806355f804b3146104855780636352211e146104ae576101f9565b8063193ad7b4146103745780631e84c4131461039f578063202f298a146103ca57806323b872dd146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631919fed71461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c23565b6107cf565b6040516102329190612c6b565b60405180910390f35b34801561024757600080fd5b506102506108b1565b60405161025d9190612d1f565b60405180910390f35b34801561027257600080fd5b5061027b610943565b6040516102889190612d5a565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612da1565b610949565b6040516102c59190612e0f565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612e56565b6109c5565b005b34801561030357600080fd5b5061031e60048036038101906103199190612da1565b610ad0565b005b34801561032c57600080fd5b50610335610b56565b6040516103429190612d5a565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612da1565b610b6d565b005b34801561038057600080fd5b50610389610bf3565b6040516103969190612d5a565b60405180910390f35b3480156103ab57600080fd5b506103b4610bf9565b6040516103c19190612c6b565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612da1565b610c0c565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612e96565b610c92565b005b34801561042857600080fd5b50610443600480360381019061043e9190612f15565b610ca2565b005b34801561045157600080fd5b5061045a610d3b565b005b34801561046857600080fd5b50610483600480360381019061047e9190612e96565b610e19565b005b34801561049157600080fd5b506104ac60048036038101906104a79190613077565b610e39565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612da1565b610ecf565b6040516104e29190612e0f565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906130c0565b610ee5565b60405161051f9190612d5a565b60405180910390f35b34801561053457600080fd5b5061053d610fb5565b005b34801561054b57600080fd5b5061055461103d565b6040516105619190612e0f565b60405180910390f35b34801561057657600080fd5b5061057f611067565b60405161058c9190612d1f565b60405180910390f35b3480156105a157600080fd5b506105aa6110f9565b6040516105b79190612d5a565b60405180910390f35b3480156105cc57600080fd5b506105d56110ff565b6040516105e29190612d5a565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612da1565b611105565b005b61062e60048036038101906106299190612da1565b61118b565b005b34801561063c57600080fd5b50610657600480360381019061065291906130ed565b6113cc565b005b34801561066557600080fd5b50610680600480360381019061067b91906131ce565b611544565b005b34801561068e57600080fd5b506106976115c0565b6040516106a49190612d5a565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612da1565b6115c6565b6040516106e19190612d1f565b60405180910390f35b3480156106f657600080fd5b506106ff611642565b60405161070c9190612d1f565b60405180910390f35b34801561072157600080fd5b5061072a6116d0565b6040516107379190612d5a565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613251565b6116d6565b6040516107749190612c6b565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612da1565b61176a565b005b3480156107b257600080fd5b506107cd60048036038101906107c891906130c0565b61188d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611985565b5b9050919050565b6060600280546108c0906132c0565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906132c0565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600d5481565b6000610954826119ef565b61098a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a57611a3d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a895750610a8781610a82611a3d565b6116d6565b155b15610ac0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610acb838383611a45565b505050565b610ad8611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610af661103d565b73ffffffffffffffffffffffffffffffffffffffff1614610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b439061333e565b60405180910390fd5b80600e8190555050565b6000610b60611af7565b6001546000540303905090565b610b75611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610b9361103d565b73ffffffffffffffffffffffffffffffffffffffff1614610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be09061333e565b60405180910390fd5b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610c14611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610c3261103d565b73ffffffffffffffffffffffffffffffffffffffff1614610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f9061333e565b60405180910390fd5b80600f8190555050565b610c9d838383611b00565b505050565b610caa611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610cc861103d565b73ffffffffffffffffffffffffffffffffffffffff1614610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d159061333e565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610d43611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610d6161103d565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae9061333e565b60405180910390fd5b60026009541415610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df4906133aa565b60405180910390fd5b6002600981905550610e0f3347611fb6565b6001600981905550565b610e3483838360405180602001604052806000815250611544565b505050565b610e41611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610e5f61103d565b73ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac9061333e565b60405180910390fd5b80600a9080519060200190610ecb929190612ad1565b5050565b6000610eda826120aa565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fbd611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610fdb61103d565b73ffffffffffffffffffffffffffffffffffffffff1614611031576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110289061333e565b60405180910390fd5b61103b6000612339565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611076906132c0565b80601f01602080910402602001604051908101604052809291908181526020018280546110a2906132c0565b80156110ef5780601f106110c4576101008083540402835291602001916110ef565b820191906000526020600020905b8154815290600101906020018083116110d257829003601f168201915b5050505050905090565b600e5481565b600f5481565b61110d611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661112b61103d565b73ffffffffffffffffffffffffffffffffffffffff1614611181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111789061333e565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff166111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613416565b60405180910390fd5b6001600b546111e99190613465565b816111f2610b56565b6111fc9190613465565b1061123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390613507565b60405180910390fd5b600e548160105461124d9190613465565b11156112a8573481600d546112629190613527565b11156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a906135cd565b60405180910390fd5b6113bf565b600f54816112b533610ee5565b6112bf9190613465565b111561135f573481600d546112d49190613527565b1115611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906135cd565b60405180910390fd5b600c5481111561135a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113519061365f565b60405180910390fd5b6113be565b600f548111156113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b9061365f565b60405180910390fd5b80601060008282546113b69190613465565b925050819055505b5b6113c933826123ff565b50565b6113d4611a3d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611439576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611446611a3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f3611a3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115389190612c6b565b60405180910390a35050565b61154f848484611b00565b61156e8373ffffffffffffffffffffffffffffffffffffffff1661241d565b8015611583575061158184848484612440565b155b156115ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b60606115d1826119ef565b611610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611607906136f1565b60405180910390fd5b600a61161b836125a0565b60405160200161162c929190613879565b6040516020818303038152906040529050919050565b600a805461164f906132c0565b80601f016020809104026020016040519081016040528092919081815260200182805461167b906132c0565b80156116c85780601f1061169d576101008083540402835291602001916116c8565b820191906000526020600020905b8154815290600101906020018083116116ab57829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611772611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661179061103d565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd9061333e565b60405180910390fd5b60008111611829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611820906138ff565b60405180910390fd5b600b5481611835610b56565b61183f9190613465565b1115611880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118779061396b565b60405180910390fd5b61188a33826123ff565b50565b611895611a3d565b73ffffffffffffffffffffffffffffffffffffffff166118b361103d565b73ffffffffffffffffffffffffffffffffffffffff1614611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061333e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906139fd565b60405180910390fd5b61198281612339565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119fa611af7565b11158015611a09575060005482105b8015611a36575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b0b826120aa565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b76576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b97611a3d565b73ffffffffffffffffffffffffffffffffffffffff161480611bc65750611bc585611bc0611a3d565b6116d6565b5b80611c0b5750611bd4611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611bf384610949565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb88585856001612701565b611cc460008487611a45565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f44576000548214611f4357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611faf8585856001612707565b5050505050565b80471015611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090613a69565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161201f90613aba565b60006040518083038185875af1925050503d806000811461205c576040519150601f19603f3d011682016040523d82523d6000602084013e612061565b606091505b50509050806120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90613b41565b60405180910390fd5b505050565b6120b2612b57565b6000829050806120c0611af7565b111580156120cf575060005481105b15612302576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161230057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121e4578092505050612334565b5b6001156122ff57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122fa578092505050612334565b6121e5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61241982826040518060200160405280600081525061270d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612466611a3d565b8786866040518563ffffffff1660e01b81526004016124889493929190613bb6565b602060405180830381600087803b1580156124a257600080fd5b505af19250505080156124d357506040513d601f19601f820116820180604052508101906124d09190613c17565b60015b61254d573d8060008114612503576040519150601f19603f3d011682016040523d82523d6000602084013e612508565b606091505b50600081511415612545576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fc565b600082905060005b6000821461261a57808061260390613c44565b915050600a826126139190613cbc565b91506125f0565b60008167ffffffffffffffff81111561263657612635612f4c565b5b6040519080825280601f01601f1916602001820160405280156126685781602001600182028036833780820191505090505b5090505b600085146126f5576001826126819190613ced565b9150600a856126909190613d21565b603061269c9190613465565b60f81b8183815181106126b2576126b1613d52565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ee9190613cbc565b945061266c565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561277a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127b5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c26000858386612701565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129838673ffffffffffffffffffffffffffffffffffffffff1661241d565b15612a49575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129f86000878480600101955087612440565b612a2e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612989578260005414612a4457600080fd5b612ab5565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a4a575b816000819055505050612acb6000858386612707565b50505050565b828054612add906132c0565b90600052602060002090601f016020900481019282612aff5760008555612b46565b82601f10612b1857805160ff1916838001178555612b46565b82800160010185558215612b46579182015b82811115612b45578251825591602001919060010190612b2a565b5b509050612b539190612b9a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bb3576000816000905550600101612b9b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c0081612bcb565b8114612c0b57600080fd5b50565b600081359050612c1d81612bf7565b92915050565b600060208284031215612c3957612c38612bc1565b5b6000612c4784828501612c0e565b91505092915050565b60008115159050919050565b612c6581612c50565b82525050565b6000602082019050612c806000830184612c5c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cc0578082015181840152602081019050612ca5565b83811115612ccf576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cf182612c86565b612cfb8185612c91565b9350612d0b818560208601612ca2565b612d1481612cd5565b840191505092915050565b60006020820190508181036000830152612d398184612ce6565b905092915050565b6000819050919050565b612d5481612d41565b82525050565b6000602082019050612d6f6000830184612d4b565b92915050565b612d7e81612d41565b8114612d8957600080fd5b50565b600081359050612d9b81612d75565b92915050565b600060208284031215612db757612db6612bc1565b5b6000612dc584828501612d8c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612df982612dce565b9050919050565b612e0981612dee565b82525050565b6000602082019050612e246000830184612e00565b92915050565b612e3381612dee565b8114612e3e57600080fd5b50565b600081359050612e5081612e2a565b92915050565b60008060408385031215612e6d57612e6c612bc1565b5b6000612e7b85828601612e41565b9250506020612e8c85828601612d8c565b9150509250929050565b600080600060608486031215612eaf57612eae612bc1565b5b6000612ebd86828701612e41565b9350506020612ece86828701612e41565b9250506040612edf86828701612d8c565b9150509250925092565b612ef281612c50565b8114612efd57600080fd5b50565b600081359050612f0f81612ee9565b92915050565b600060208284031215612f2b57612f2a612bc1565b5b6000612f3984828501612f00565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f8482612cd5565b810181811067ffffffffffffffff82111715612fa357612fa2612f4c565b5b80604052505050565b6000612fb6612bb7565b9050612fc28282612f7b565b919050565b600067ffffffffffffffff821115612fe257612fe1612f4c565b5b612feb82612cd5565b9050602081019050919050565b82818337600083830152505050565b600061301a61301584612fc7565b612fac565b90508281526020810184848401111561303657613035612f47565b5b613041848285612ff8565b509392505050565b600082601f83011261305e5761305d612f42565b5b813561306e848260208601613007565b91505092915050565b60006020828403121561308d5761308c612bc1565b5b600082013567ffffffffffffffff8111156130ab576130aa612bc6565b5b6130b784828501613049565b91505092915050565b6000602082840312156130d6576130d5612bc1565b5b60006130e484828501612e41565b91505092915050565b6000806040838503121561310457613103612bc1565b5b600061311285828601612e41565b925050602061312385828601612f00565b9150509250929050565b600067ffffffffffffffff82111561314857613147612f4c565b5b61315182612cd5565b9050602081019050919050565b600061317161316c8461312d565b612fac565b90508281526020810184848401111561318d5761318c612f47565b5b613198848285612ff8565b509392505050565b600082601f8301126131b5576131b4612f42565b5b81356131c584826020860161315e565b91505092915050565b600080600080608085870312156131e8576131e7612bc1565b5b60006131f687828801612e41565b945050602061320787828801612e41565b935050604061321887828801612d8c565b925050606085013567ffffffffffffffff81111561323957613238612bc6565b5b613245878288016131a0565b91505092959194509250565b6000806040838503121561326857613267612bc1565b5b600061327685828601612e41565b925050602061328785828601612e41565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132d857607f821691505b602082108114156132ec576132eb613291565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613328602083612c91565b9150613333826132f2565b602082019050919050565b600060208201905081810360008301526133578161331b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613394601f83612c91565b915061339f8261335e565b602082019050919050565b600060208201905081810360008301526133c381613387565b9050919050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b6000613400601783612c91565b915061340b826133ca565b602082019050919050565b6000602082019050818103600083015261342f816133f3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347082612d41565b915061347b83612d41565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134b0576134af613436565b5b828201905092915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b60006134f1600783612c91565b91506134fc826134bb565b602082019050919050565b60006020820190508181036000830152613520816134e4565b9050919050565b600061353282612d41565b915061353d83612d41565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561357657613575613436565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b60006135b7601883612c91565b91506135c282613581565b602082019050919050565b600060208201905081810360008301526135e6816135aa565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000613649602283612c91565b9150613654826135ed565b604082019050919050565b600060208201905081810360008301526136788161363c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136db602f83612c91565b91506136e68261367f565b604082019050919050565b6000602082019050818103600083015261370a816136ce565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461373e816132c0565b6137488186613711565b945060018216600081146137635760018114613774576137a7565b60ff198316865281860193506137a7565b61377d8561371c565b60005b8381101561379f57815481890152600182019150602081019050613780565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006137e6600183613711565b91506137f1826137b0565b600182019050919050565b600061380782612c86565b6138118185613711565b9350613821818560208601612ca2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613863600583613711565b915061386e8261382d565b600582019050919050565b60006138858285613731565b9150613890826137d9565b915061389c82846137fc565b91506138a782613856565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006138e9601383612c91565b91506138f4826138b3565b602082019050919050565b60006020820190508181036000830152613918816138dc565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613955601783612c91565b91506139608261391f565b602082019050919050565b6000602082019050818103600083015261398481613948565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139e7602683612c91565b91506139f28261398b565b604082019050919050565b60006020820190508181036000830152613a16816139da565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613a53601d83612c91565b9150613a5e82613a1d565b602082019050919050565b60006020820190508181036000830152613a8281613a46565b9050919050565b600081905092915050565b50565b6000613aa4600083613a89565b9150613aaf82613a94565b600082019050919050565b6000613ac582613a97565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613b2b603a83612c91565b9150613b3682613acf565b604082019050919050565b60006020820190508181036000830152613b5a81613b1e565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b8882613b61565b613b928185613b6c565b9350613ba2818560208601612ca2565b613bab81612cd5565b840191505092915050565b6000608082019050613bcb6000830187612e00565b613bd86020830186612e00565b613be56040830185612d4b565b8181036060830152613bf78184613b7d565b905095945050505050565b600081519050613c1181612bf7565b92915050565b600060208284031215613c2d57613c2c612bc1565b5b6000613c3b84828501613c02565b91505092915050565b6000613c4f82612d41565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c8257613c81613436565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cc782612d41565b9150613cd283612d41565b925082613ce257613ce1613c8d565b5b828204905092915050565b6000613cf882612d41565b9150613d0383612d41565b925082821015613d1657613d15613436565b5b828203905092915050565b6000613d2c82612d41565b9150613d3783612d41565b925082613d4757613d46613c8d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220be36acb98fd351129977c466e0da5d1363df1b42699588c8ab00de1df011272064736f6c63430008080033697066733a2f2f516d5131744e4764565347754638736e5a4e6b775675756256684d797332476f617a78376f6352334a5267486b642f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106ea578063d5abeb0114610715578063e985e9c514610740578063efdc77881461077d578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c6a91b4214610682578063c87b56dd146106ad576101f9565b8063982d669e116100dc578063982d669e1461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b806370a08231146104eb578063715018a6146105285780638da5cb5b1461053f57806395d89b411461056a576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d1461041c5780633ccfd60b1461044557806342842e0e1461045c57806355f804b3146104855780636352211e146104ae576101f9565b8063193ad7b4146103745780631e84c4131461039f578063202f298a146103ca57806323b872dd146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631919fed71461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c23565b6107cf565b6040516102329190612c6b565b60405180910390f35b34801561024757600080fd5b506102506108b1565b60405161025d9190612d1f565b60405180910390f35b34801561027257600080fd5b5061027b610943565b6040516102889190612d5a565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612da1565b610949565b6040516102c59190612e0f565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612e56565b6109c5565b005b34801561030357600080fd5b5061031e60048036038101906103199190612da1565b610ad0565b005b34801561032c57600080fd5b50610335610b56565b6040516103429190612d5a565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612da1565b610b6d565b005b34801561038057600080fd5b50610389610bf3565b6040516103969190612d5a565b60405180910390f35b3480156103ab57600080fd5b506103b4610bf9565b6040516103c19190612c6b565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612da1565b610c0c565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612e96565b610c92565b005b34801561042857600080fd5b50610443600480360381019061043e9190612f15565b610ca2565b005b34801561045157600080fd5b5061045a610d3b565b005b34801561046857600080fd5b50610483600480360381019061047e9190612e96565b610e19565b005b34801561049157600080fd5b506104ac60048036038101906104a79190613077565b610e39565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612da1565b610ecf565b6040516104e29190612e0f565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906130c0565b610ee5565b60405161051f9190612d5a565b60405180910390f35b34801561053457600080fd5b5061053d610fb5565b005b34801561054b57600080fd5b5061055461103d565b6040516105619190612e0f565b60405180910390f35b34801561057657600080fd5b5061057f611067565b60405161058c9190612d1f565b60405180910390f35b3480156105a157600080fd5b506105aa6110f9565b6040516105b79190612d5a565b60405180910390f35b3480156105cc57600080fd5b506105d56110ff565b6040516105e29190612d5a565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612da1565b611105565b005b61062e60048036038101906106299190612da1565b61118b565b005b34801561063c57600080fd5b50610657600480360381019061065291906130ed565b6113cc565b005b34801561066557600080fd5b50610680600480360381019061067b91906131ce565b611544565b005b34801561068e57600080fd5b506106976115c0565b6040516106a49190612d5a565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612da1565b6115c6565b6040516106e19190612d1f565b60405180910390f35b3480156106f657600080fd5b506106ff611642565b60405161070c9190612d1f565b60405180910390f35b34801561072157600080fd5b5061072a6116d0565b6040516107379190612d5a565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613251565b6116d6565b6040516107749190612c6b565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612da1565b61176a565b005b3480156107b257600080fd5b506107cd60048036038101906107c891906130c0565b61188d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611985565b5b9050919050565b6060600280546108c0906132c0565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906132c0565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600d5481565b6000610954826119ef565b61098a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a57611a3d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a895750610a8781610a82611a3d565b6116d6565b155b15610ac0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610acb838383611a45565b505050565b610ad8611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610af661103d565b73ffffffffffffffffffffffffffffffffffffffff1614610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b439061333e565b60405180910390fd5b80600e8190555050565b6000610b60611af7565b6001546000540303905090565b610b75611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610b9361103d565b73ffffffffffffffffffffffffffffffffffffffff1614610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be09061333e565b60405180910390fd5b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610c14611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610c3261103d565b73ffffffffffffffffffffffffffffffffffffffff1614610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f9061333e565b60405180910390fd5b80600f8190555050565b610c9d838383611b00565b505050565b610caa611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610cc861103d565b73ffffffffffffffffffffffffffffffffffffffff1614610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d159061333e565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610d43611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610d6161103d565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae9061333e565b60405180910390fd5b60026009541415610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df4906133aa565b60405180910390fd5b6002600981905550610e0f3347611fb6565b6001600981905550565b610e3483838360405180602001604052806000815250611544565b505050565b610e41611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610e5f61103d565b73ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac9061333e565b60405180910390fd5b80600a9080519060200190610ecb929190612ad1565b5050565b6000610eda826120aa565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fbd611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610fdb61103d565b73ffffffffffffffffffffffffffffffffffffffff1614611031576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110289061333e565b60405180910390fd5b61103b6000612339565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611076906132c0565b80601f01602080910402602001604051908101604052809291908181526020018280546110a2906132c0565b80156110ef5780601f106110c4576101008083540402835291602001916110ef565b820191906000526020600020905b8154815290600101906020018083116110d257829003601f168201915b5050505050905090565b600e5481565b600f5481565b61110d611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661112b61103d565b73ffffffffffffffffffffffffffffffffffffffff1614611181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111789061333e565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff166111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613416565b60405180910390fd5b6001600b546111e99190613465565b816111f2610b56565b6111fc9190613465565b1061123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390613507565b60405180910390fd5b600e548160105461124d9190613465565b11156112a8573481600d546112629190613527565b11156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a906135cd565b60405180910390fd5b6113bf565b600f54816112b533610ee5565b6112bf9190613465565b111561135f573481600d546112d49190613527565b1115611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906135cd565b60405180910390fd5b600c5481111561135a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113519061365f565b60405180910390fd5b6113be565b600f548111156113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b9061365f565b60405180910390fd5b80601060008282546113b69190613465565b925050819055505b5b6113c933826123ff565b50565b6113d4611a3d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611439576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611446611a3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f3611a3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115389190612c6b565b60405180910390a35050565b61154f848484611b00565b61156e8373ffffffffffffffffffffffffffffffffffffffff1661241d565b8015611583575061158184848484612440565b155b156115ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b60606115d1826119ef565b611610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611607906136f1565b60405180910390fd5b600a61161b836125a0565b60405160200161162c929190613879565b6040516020818303038152906040529050919050565b600a805461164f906132c0565b80601f016020809104026020016040519081016040528092919081815260200182805461167b906132c0565b80156116c85780601f1061169d576101008083540402835291602001916116c8565b820191906000526020600020905b8154815290600101906020018083116116ab57829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611772611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661179061103d565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd9061333e565b60405180910390fd5b60008111611829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611820906138ff565b60405180910390fd5b600b5481611835610b56565b61183f9190613465565b1115611880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118779061396b565b60405180910390fd5b61188a33826123ff565b50565b611895611a3d565b73ffffffffffffffffffffffffffffffffffffffff166118b361103d565b73ffffffffffffffffffffffffffffffffffffffff1614611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061333e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906139fd565b60405180910390fd5b61198281612339565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119fa611af7565b11158015611a09575060005482105b8015611a36575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b0b826120aa565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b76576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b97611a3d565b73ffffffffffffffffffffffffffffffffffffffff161480611bc65750611bc585611bc0611a3d565b6116d6565b5b80611c0b5750611bd4611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611bf384610949565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb88585856001612701565b611cc460008487611a45565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f44576000548214611f4357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611faf8585856001612707565b5050505050565b80471015611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090613a69565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161201f90613aba565b60006040518083038185875af1925050503d806000811461205c576040519150601f19603f3d011682016040523d82523d6000602084013e612061565b606091505b50509050806120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90613b41565b60405180910390fd5b505050565b6120b2612b57565b6000829050806120c0611af7565b111580156120cf575060005481105b15612302576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161230057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121e4578092505050612334565b5b6001156122ff57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122fa578092505050612334565b6121e5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61241982826040518060200160405280600081525061270d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612466611a3d565b8786866040518563ffffffff1660e01b81526004016124889493929190613bb6565b602060405180830381600087803b1580156124a257600080fd5b505af19250505080156124d357506040513d601f19601f820116820180604052508101906124d09190613c17565b60015b61254d573d8060008114612503576040519150601f19603f3d011682016040523d82523d6000602084013e612508565b606091505b50600081511415612545576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fc565b600082905060005b6000821461261a57808061260390613c44565b915050600a826126139190613cbc565b91506125f0565b60008167ffffffffffffffff81111561263657612635612f4c565b5b6040519080825280601f01601f1916602001820160405280156126685781602001600182028036833780820191505090505b5090505b600085146126f5576001826126819190613ced565b9150600a856126909190613d21565b603061269c9190613465565b60f81b8183815181106126b2576126b1613d52565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ee9190613cbc565b945061266c565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561277a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127b5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c26000858386612701565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129838673ffffffffffffffffffffffffffffffffffffffff1661241d565b15612a49575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129f86000878480600101955087612440565b612a2e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612989578260005414612a4457600080fd5b612ab5565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a4a575b816000819055505050612acb6000858386612707565b50505050565b828054612add906132c0565b90600052602060002090601f016020900481019282612aff5760008555612b46565b82601f10612b1857805160ff1916838001178555612b46565b82800160010185558215612b46579182015b82811115612b45578251825591602001919060010190612b2a565b5b509050612b539190612b9a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bb3576000816000905550600101612b9b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c0081612bcb565b8114612c0b57600080fd5b50565b600081359050612c1d81612bf7565b92915050565b600060208284031215612c3957612c38612bc1565b5b6000612c4784828501612c0e565b91505092915050565b60008115159050919050565b612c6581612c50565b82525050565b6000602082019050612c806000830184612c5c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cc0578082015181840152602081019050612ca5565b83811115612ccf576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cf182612c86565b612cfb8185612c91565b9350612d0b818560208601612ca2565b612d1481612cd5565b840191505092915050565b60006020820190508181036000830152612d398184612ce6565b905092915050565b6000819050919050565b612d5481612d41565b82525050565b6000602082019050612d6f6000830184612d4b565b92915050565b612d7e81612d41565b8114612d8957600080fd5b50565b600081359050612d9b81612d75565b92915050565b600060208284031215612db757612db6612bc1565b5b6000612dc584828501612d8c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612df982612dce565b9050919050565b612e0981612dee565b82525050565b6000602082019050612e246000830184612e00565b92915050565b612e3381612dee565b8114612e3e57600080fd5b50565b600081359050612e5081612e2a565b92915050565b60008060408385031215612e6d57612e6c612bc1565b5b6000612e7b85828601612e41565b9250506020612e8c85828601612d8c565b9150509250929050565b600080600060608486031215612eaf57612eae612bc1565b5b6000612ebd86828701612e41565b9350506020612ece86828701612e41565b9250506040612edf86828701612d8c565b9150509250925092565b612ef281612c50565b8114612efd57600080fd5b50565b600081359050612f0f81612ee9565b92915050565b600060208284031215612f2b57612f2a612bc1565b5b6000612f3984828501612f00565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f8482612cd5565b810181811067ffffffffffffffff82111715612fa357612fa2612f4c565b5b80604052505050565b6000612fb6612bb7565b9050612fc28282612f7b565b919050565b600067ffffffffffffffff821115612fe257612fe1612f4c565b5b612feb82612cd5565b9050602081019050919050565b82818337600083830152505050565b600061301a61301584612fc7565b612fac565b90508281526020810184848401111561303657613035612f47565b5b613041848285612ff8565b509392505050565b600082601f83011261305e5761305d612f42565b5b813561306e848260208601613007565b91505092915050565b60006020828403121561308d5761308c612bc1565b5b600082013567ffffffffffffffff8111156130ab576130aa612bc6565b5b6130b784828501613049565b91505092915050565b6000602082840312156130d6576130d5612bc1565b5b60006130e484828501612e41565b91505092915050565b6000806040838503121561310457613103612bc1565b5b600061311285828601612e41565b925050602061312385828601612f00565b9150509250929050565b600067ffffffffffffffff82111561314857613147612f4c565b5b61315182612cd5565b9050602081019050919050565b600061317161316c8461312d565b612fac565b90508281526020810184848401111561318d5761318c612f47565b5b613198848285612ff8565b509392505050565b600082601f8301126131b5576131b4612f42565b5b81356131c584826020860161315e565b91505092915050565b600080600080608085870312156131e8576131e7612bc1565b5b60006131f687828801612e41565b945050602061320787828801612e41565b935050604061321887828801612d8c565b925050606085013567ffffffffffffffff81111561323957613238612bc6565b5b613245878288016131a0565b91505092959194509250565b6000806040838503121561326857613267612bc1565b5b600061327685828601612e41565b925050602061328785828601612e41565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132d857607f821691505b602082108114156132ec576132eb613291565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613328602083612c91565b9150613333826132f2565b602082019050919050565b600060208201905081810360008301526133578161331b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613394601f83612c91565b915061339f8261335e565b602082019050919050565b600060208201905081810360008301526133c381613387565b9050919050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b6000613400601783612c91565b915061340b826133ca565b602082019050919050565b6000602082019050818103600083015261342f816133f3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347082612d41565b915061347b83612d41565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134b0576134af613436565b5b828201905092915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b60006134f1600783612c91565b91506134fc826134bb565b602082019050919050565b60006020820190508181036000830152613520816134e4565b9050919050565b600061353282612d41565b915061353d83612d41565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561357657613575613436565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b60006135b7601883612c91565b91506135c282613581565b602082019050919050565b600060208201905081810360008301526135e6816135aa565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000613649602283612c91565b9150613654826135ed565b604082019050919050565b600060208201905081810360008301526136788161363c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136db602f83612c91565b91506136e68261367f565b604082019050919050565b6000602082019050818103600083015261370a816136ce565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461373e816132c0565b6137488186613711565b945060018216600081146137635760018114613774576137a7565b60ff198316865281860193506137a7565b61377d8561371c565b60005b8381101561379f57815481890152600182019150602081019050613780565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006137e6600183613711565b91506137f1826137b0565b600182019050919050565b600061380782612c86565b6138118185613711565b9350613821818560208601612ca2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613863600583613711565b915061386e8261382d565b600582019050919050565b60006138858285613731565b9150613890826137d9565b915061389c82846137fc565b91506138a782613856565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006138e9601383612c91565b91506138f4826138b3565b602082019050919050565b60006020820190508181036000830152613918816138dc565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613955601783612c91565b91506139608261391f565b602082019050919050565b6000602082019050818103600083015261398481613948565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139e7602683612c91565b91506139f28261398b565b604082019050919050565b60006020820190508181036000830152613a16816139da565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613a53601d83612c91565b9150613a5e82613a1d565b602082019050919050565b60006020820190508181036000830152613a8281613a46565b9050919050565b600081905092915050565b50565b6000613aa4600083613a89565b9150613aaf82613a94565b600082019050919050565b6000613ac582613a97565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613b2b603a83612c91565b9150613b3682613acf565b604082019050919050565b60006020820190508181036000830152613b5a81613b1e565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b8882613b61565b613b928185613b6c565b9350613ba2818560208601612ca2565b613bab81612cd5565b840191505092915050565b6000608082019050613bcb6000830187612e00565b613bd86020830186612e00565b613be56040830185612d4b565b8181036060830152613bf78184613b7d565b905095945050505050565b600081519050613c1181612bf7565b92915050565b600060208284031215613c2d57613c2c612bc1565b5b6000613c3b84828501613c02565b91505092915050565b6000613c4f82612d41565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c8257613c81613436565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cc782612d41565b9150613cd283612d41565b925082613ce257613ce1613c8d565b5b828204905092915050565b6000613cf882612d41565b9150613d0383612d41565b925082821015613d1657613d15613436565b5b828203905092915050565b6000613d2c82612d41565b9150613d3783612d41565b925082613d4757613d46613c8d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220be36acb98fd351129977c466e0da5d1363df1b42699588c8ab00de1df011272064736f6c63430008080033

Deployed Bytecode Sourcemap

48646:3327:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29756:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32869:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48943:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34372:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33935:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51455:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29005:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51590:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49081:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49125:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51844:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35237:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51301:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50694:142;;;;;;;;;;;;;:::i;:::-;;35478:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50290:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32677:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30125:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:103;;;;;;;;;;;;;:::i;:::-;;6871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33038:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48995:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49037:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51711:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49236:1048;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34648:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35734:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48901:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50842:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48771:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48863:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35006:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50404:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29756:305;29858:4;29910:25;29895:40;;;:11;:40;;;;:105;;;;29967:33;29952:48;;;:11;:48;;;;29895:105;:158;;;;30017:36;30041:11;30017:23;:36::i;:::-;29895:158;29875:178;;29756:305;;;:::o;32869:100::-;32923:13;32956:5;32949:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32869:100;:::o;48943:47::-;;;;:::o;34372:204::-;34440:7;34465:16;34473:7;34465;:16::i;:::-;34460:64;;34490:34;;;;;;;;;;;;;;34460:64;34544:15;:24;34560:7;34544:24;;;;;;;;;;;;;;;;;;;;;34537:31;;34372:204;;;:::o;33935:371::-;34008:13;34024:24;34040:7;34024:15;:24::i;:::-;34008:40;;34069:5;34063:11;;:2;:11;;;34059:48;;;34083:24;;;;;;;;;;;;;;34059:48;34140:5;34124:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34150:37;34167:5;34174:12;:10;:12::i;:::-;34150:16;:37::i;:::-;34149:38;34124:63;34120:138;;;34211:35;;;;;;;;;;;;;;34120:138;34270:28;34279:2;34283:7;34292:5;34270:8;:28::i;:::-;33997:309;33935:371;;:::o;51455:129::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51565:13:::1;51548:14;:30;;;;51455:129:::0;:::o;29005:303::-;29049:7;29274:15;:13;:15::i;:::-;29259:12;;29243:13;;:28;:46;29236:53;;29005:303;:::o;51590:115::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51693:6:::1;51673:17;:26;;;;51590:115:::0;:::o;49081:39::-;;;;:::o;49125:37::-;;;;;;;;;;;;;:::o;51844:126::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51958:6:::1;51936:19;:28;;;;51844:126:::0;:::o;35237:170::-;35371:28;35381:4;35387:2;35391:7;35371:9;:28::i;:::-;35237:170;;;:::o;51301:148::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51424:19:::1;51403:18;;:40;;;;;;;;;;;;;;;;;;51301:148:::0;:::o;50694:142::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;50769:61:::2;50795:10;50808:21;50769:17;:61::i;:::-;1801:1:::1;2755:7;:22;;;;50694:142::o:0;35478:185::-;35616:39;35633:4;35639:2;35643:7;35616:39;;;;;;;;;;;;:16;:39::i;:::-;35478:185;;;:::o;50290:108::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50385:7:::1;50370:12;:22;;;;;;;;;;;;:::i;:::-;;50290:108:::0;:::o;32677:125::-;32741:7;32768:21;32781:7;32768:12;:21::i;:::-;:26;;;32761:33;;32677:125;;;:::o;30125:206::-;30189:7;30230:1;30213:19;;:5;:19;;;30209:60;;;30241:28;;;;;;;;;;;;;;30209:60;30295:12;:19;30308:5;30295:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30287:36;;30280:43;;30125:206;;;:::o;7522:103::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;6871:87::-;6917:7;6944:6;;;;;;;;;;;6937:13;;6871:87;:::o;33038:104::-;33094:13;33127:7;33120:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33038:104;:::o;48995:37::-;;;;:::o;49037:39::-;;;;:::o;51711:127::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51826:6:::1;51807:16;:25;;;;51711:127:::0;:::o;49236:1048::-;49323:18;;;;;;;;;;;49315:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;49429:1;49417:9;;:13;;;;:::i;:::-;49400:14;49384:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;49376:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49494:14;;49477;49454:20;;:37;;;;:::i;:::-;:54;49451:784;;;49582:9;49563:14;49543:17;;:34;;;;:::i;:::-;49542:49;;49520:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;49451:784;;;49713:19;;49696:14;49672:21;49682:10;49672:9;:21::i;:::-;:38;;;;:::i;:::-;:60;49668:560;;;49807:9;49788:14;49768:17;;:34;;;;:::i;:::-;49767:49;;49745:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;49919:16;;49901:14;:34;;49879:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;49668:560;;;50074:19;;50056:14;:37;;50030:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;50202:14;50178:20;;:38;;;;;;;:::i;:::-;;;;;;;;49668:560;49451:784;50241:37;50251:10;50263:14;50241:9;:37::i;:::-;49236:1048;:::o;34648:287::-;34759:12;:10;:12::i;:::-;34747:24;;:8;:24;;;34743:54;;;34780:17;;;;;;;;;;;;;;34743:54;34855:8;34810:18;:32;34829:12;:10;:12::i;:::-;34810:32;;;;;;;;;;;;;;;:42;34843:8;34810:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34908:8;34879:48;;34894:12;:10;:12::i;:::-;34879:48;;;34918:8;34879:48;;;;;;:::i;:::-;;;;;;;;34648:287;;:::o;35734:369::-;35901:28;35911:4;35917:2;35921:7;35901:9;:28::i;:::-;35944:15;:2;:13;;;:15::i;:::-;:76;;;;;35964:56;35995:4;36001:2;36005:7;36014:5;35964:30;:56::i;:::-;35963:57;35944:76;35940:156;;;36044:40;;;;;;;;;;;;;;35940:156;35734:369;;;;:::o;48901:37::-;;;;:::o;50842:312::-;50938:13;50979:17;50987:8;50979:7;:17::i;:::-;50963:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51099:12;51118:19;:8;:17;:19::i;:::-;51082:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51068:80;;50842:312;;;:::o;48771:87::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48863:33::-;;;;:::o;35006:164::-;35103:4;35127:18;:25;35146:5;35127:25;;;;;;;;;;;;;;;:35;35153:8;35127:35;;;;;;;;;;;;;;;;;;;;;;;;;35120:42;;35006:164;;;;:::o;50404:284::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50505:1:::1;50494:8;:12;50478:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50594:9;;50582:8;50566:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;50550:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;50651:31;50661:10;50673:8;50651:9;:31::i;:::-;50404:284:::0;:::o;7780:201::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7889:1:::1;7869:22;;:8;:22;;;;7861:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;19655:157::-;19740:4;19779:25;19764:40;;;:11;:40;;;;19757:47;;19655:157;;;:::o;36358:174::-;36415:4;36458:7;36439:15;:13;:15::i;:::-;:26;;:53;;;;;36479:13;;36469:7;:23;36439:53;:85;;;;;36497:11;:20;36509:7;36497:20;;;;;;;;;;;:27;;;;;;;;;;;;36496:28;36439:85;36432:92;;36358:174;;;:::o;5595:98::-;5648:7;5675:10;5668:17;;5595:98;:::o;45584:196::-;45726:2;45699:15;:24;45715:7;45699:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45764:7;45760:2;45744:28;;45753:5;45744:28;;;;;;;;;;;;45584:196;;;:::o;28779:92::-;28835:7;28862:1;28855:8;;28779:92;:::o;40532:2130::-;40647:35;40685:21;40698:7;40685:12;:21::i;:::-;40647:59;;40745:4;40723:26;;:13;:18;;;:26;;;40719:67;;40758:28;;;;;;;;;;;;;;40719:67;40799:22;40841:4;40825:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;40862:36;40879:4;40885:12;:10;:12::i;:::-;40862:16;:36::i;:::-;40825:73;:126;;;;40939:12;:10;:12::i;:::-;40915:36;;:20;40927:7;40915:11;:20::i;:::-;:36;;;40825:126;40799:153;;40970:17;40965:66;;40996:35;;;;;;;;;;;;;;40965:66;41060:1;41046:16;;:2;:16;;;41042:52;;;41071:23;;;;;;;;;;;;;;41042:52;41107:43;41129:4;41135:2;41139:7;41148:1;41107:21;:43::i;:::-;41215:35;41232:1;41236:7;41245:4;41215:8;:35::i;:::-;41576:1;41546:12;:18;41559:4;41546:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41620:1;41592:12;:16;41605:2;41592:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41638:31;41672:11;:20;41684:7;41672:20;;;;;;;;;;;41638:54;;41723:2;41707:8;:13;;;:18;;;;;;;;;;;;;;;;;;41773:15;41740:8;:23;;;:49;;;;;;;;;;;;;;;;;;42041:19;42073:1;42063:7;:11;42041:33;;42089:31;42123:11;:24;42135:11;42123:24;;;;;;;;;;;42089:58;;42191:1;42166:27;;:8;:13;;;;;;;;;;;;:27;;;42162:384;;;42376:13;;42361:11;:28;42357:174;;42430:4;42414:8;:13;;;:20;;;;;;;;;;;;;;;;;;42483:13;:28;;;42457:8;:23;;;:54;;;;;;;;;;;;;;;;;;42357:174;42162:384;41521:1036;;;42593:7;42589:2;42574:27;;42583:4;42574:27;;;;;;;;;;;;42612:42;42633:4;42639:2;42643:7;42652:1;42612:20;:42::i;:::-;40636:2026;;40532:2130;;;:::o;10833:317::-;10948:6;10923:21;:31;;10915:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11002:12;11020:9;:14;;11042:6;11020:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:52;;;11072:7;11064:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10904:246;10833:317;;:::o;31506:1109::-;31568:21;;:::i;:::-;31602:12;31617:7;31602:22;;31685:4;31666:15;:13;:15::i;:::-;:23;;:47;;;;;31700:13;;31693:4;:20;31666:47;31662:886;;;31734:31;31768:11;:17;31780:4;31768:17;;;;;;;;;;;31734:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31809:9;:16;;;31804:729;;31880:1;31854:28;;:9;:14;;;:28;;;31850:101;;31918:9;31911:16;;;;;;31850:101;32253:261;32260:4;32253:261;;;32293:6;;;;;;;;32338:11;:17;32350:4;32338:17;;;;;;;;;;;32326:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32412:1;32386:28;;:9;:14;;;:28;;;32382:109;;32454:9;32447:16;;;;;;32382:109;32253:261;;;31804:729;31715:833;31662:886;32576:31;;;;;;;;;;;;;;31506:1109;;;;:::o;8141:191::-;8215:16;8234:6;;;;;;;;;;;8215:25;;8260:8;8251:6;;:17;;;;;;;;;;;;;;;;;;8315:8;8284:40;;8305:8;8284:40;;;;;;;;;;;;8204:128;8141:191;:::o;36616:104::-;36685:27;36695:2;36699:8;36685:27;;;;;;;;;;;;:9;:27::i;:::-;36616:104;;:::o;9572:326::-;9632:4;9889:1;9867:7;:19;;;:23;9860:30;;9572:326;;;:::o;46272:667::-;46435:4;46472:2;46456:36;;;46493:12;:10;:12::i;:::-;46507:4;46513:7;46522:5;46456:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46452:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46707:1;46690:6;:13;:18;46686:235;;;46736:40;;;;;;;;;;;;;;46686:235;46879:6;46873:13;46864:6;46860:2;46856:15;46849:38;46452:480;46585:45;;;46575:55;;;:6;:55;;;;46568:62;;;46272:667;;;;;;:::o;3157:723::-;3213:13;3443:1;3434:5;:10;3430:53;;;3461:10;;;;;;;;;;;;;;;;;;;;;3430:53;3493:12;3508:5;3493:20;;3524:14;3549:78;3564:1;3556:4;:9;3549:78;;3582:8;;;;;:::i;:::-;;;;3613:2;3605:10;;;;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3637:39;;3687:154;3703:1;3694:5;:10;3687:154;;3731:1;3721:11;;;;;:::i;:::-;;;3798:2;3790:5;:10;;;;:::i;:::-;3777:2;:24;;;;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3827:2;3818:11;;;;;:::i;:::-;;;3687:154;;;3865:6;3851:21;;;;;3157:723;;;;:::o;47587:159::-;;;;;:::o;48405:158::-;;;;;:::o;37094:1751::-;37217:20;37240:13;;37217:36;;37282:1;37268:16;;:2;:16;;;37264:48;;;37293:19;;;;;;;;;;;;;;37264:48;37339:1;37327:8;:13;37323:44;;;37349:18;;;;;;;;;;;;;;37323:44;37380:61;37410:1;37414:2;37418:12;37432:8;37380:21;:61::i;:::-;37753:8;37718:12;:16;37731:2;37718:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37817:8;37777:12;:16;37790:2;37777:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37876:2;37843:11;:25;37855:12;37843:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37943:15;37893:11;:25;37905:12;37893:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37976:20;37999:12;37976:35;;38026:11;38055:8;38040:12;:23;38026:37;;38084:15;:2;:13;;;:15::i;:::-;38080:633;;;38120:314;38176:12;38172:2;38151:38;;38168:1;38151:38;;;;;;;;;;;;38217:69;38256:1;38260:2;38264:14;;;;;;38280:5;38217:30;:69::i;:::-;38212:174;;38322:40;;;;;;;;;;;;;;38212:174;38429:3;38413:12;:19;;38120:314;;38515:12;38498:13;;:29;38494:43;;38529:8;;;38494:43;38080:633;;;38578:120;38634:14;;;;;;38630:2;38609:40;;38626:1;38609:40;;;;;;;;;;;;38693:3;38677:12;:19;;38578:120;;38080:633;38743:12;38727:13;:28;;;;37693:1074;;38777:60;38806:1;38810:2;38814:12;38828:8;38777:20;:60::i;:::-;37206:1639;37094:1751;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:118::-;3078:24;3096:5;3078:24;:::i;:::-;3073:3;3066:37;2991:118;;:::o;3115:222::-;3208:4;3246:2;3235:9;3231:18;3223:26;;3259:71;3327:1;3316:9;3312:17;3303:6;3259:71;:::i;:::-;3115:222;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:116::-;5985:21;6000:5;5985:21;:::i;:::-;5978:5;5975:32;5965:60;;6021:1;6018;6011:12;5965:60;5915:116;:::o;6037:133::-;6080:5;6118:6;6105:20;6096:29;;6134:30;6158:5;6134:30;:::i;:::-;6037:133;;;;:::o;6176:323::-;6232:6;6281:2;6269:9;6260:7;6256:23;6252:32;6249:119;;;6287:79;;:::i;:::-;6249:119;6407:1;6432:50;6474:7;6465:6;6454:9;6450:22;6432:50;:::i;:::-;6422:60;;6378:114;6176:323;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:182::-;13102:34;13098:1;13090:6;13086:14;13079:58;12962:182;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:181::-;14087:33;14083:1;14075:6;14071:14;14064:57;13947:181;:::o;14134:366::-;14276:3;14297:67;14361:2;14356:3;14297:67;:::i;:::-;14290:74;;14373:93;14462:3;14373:93;:::i;:::-;14491:2;14486:3;14482:12;14475:19;;14134:366;;;:::o;14506:419::-;14672:4;14710:2;14699:9;14695:18;14687:26;;14759:9;14753:4;14749:20;14745:1;14734:9;14730:17;14723:47;14787:131;14913:4;14787:131;:::i;:::-;14779:139;;14506:419;;;:::o;14931:173::-;15071:25;15067:1;15059:6;15055:14;15048:49;14931:173;:::o;15110:366::-;15252:3;15273:67;15337:2;15332:3;15273:67;:::i;:::-;15266:74;;15349:93;15438:3;15349:93;:::i;:::-;15467:2;15462:3;15458:12;15451:19;;15110:366;;;:::o;15482:419::-;15648:4;15686:2;15675:9;15671:18;15663:26;;15735:9;15729:4;15725:20;15721:1;15710:9;15706:17;15699:47;15763:131;15889:4;15763:131;:::i;:::-;15755:139;;15482:419;;;:::o;15907:180::-;15955:77;15952:1;15945:88;16052:4;16049:1;16042:15;16076:4;16073:1;16066:15;16093:305;16133:3;16152:20;16170:1;16152:20;:::i;:::-;16147:25;;16186:20;16204:1;16186:20;:::i;:::-;16181:25;;16340:1;16272:66;16268:74;16265:1;16262:81;16259:107;;;16346:18;;:::i;:::-;16259:107;16390:1;16387;16383:9;16376:16;;16093:305;;;;:::o;16404:157::-;16544:9;16540:1;16532:6;16528:14;16521:33;16404:157;:::o;16567:365::-;16709:3;16730:66;16794:1;16789:3;16730:66;:::i;:::-;16723:73;;16805:93;16894:3;16805:93;:::i;:::-;16923:2;16918:3;16914:12;16907:19;;16567:365;;;:::o;16938:419::-;17104:4;17142:2;17131:9;17127:18;17119:26;;17191:9;17185:4;17181:20;17177:1;17166:9;17162:17;17155:47;17219:131;17345:4;17219:131;:::i;:::-;17211:139;;16938:419;;;:::o;17363:348::-;17403:7;17426:20;17444:1;17426:20;:::i;:::-;17421:25;;17460:20;17478:1;17460:20;:::i;:::-;17455:25;;17648:1;17580:66;17576:74;17573:1;17570:81;17565:1;17558:9;17551:17;17547:105;17544:131;;;17655:18;;:::i;:::-;17544:131;17703:1;17700;17696:9;17685:20;;17363:348;;;;:::o;17717:174::-;17857:26;17853:1;17845:6;17841:14;17834:50;17717:174;:::o;17897:366::-;18039:3;18060:67;18124:2;18119:3;18060:67;:::i;:::-;18053:74;;18136:93;18225:3;18136:93;:::i;:::-;18254:2;18249:3;18245:12;18238:19;;17897:366;;;:::o;18269:419::-;18435:4;18473:2;18462:9;18458:18;18450:26;;18522:9;18516:4;18512:20;18508:1;18497:9;18493:17;18486:47;18550:131;18676:4;18550:131;:::i;:::-;18542:139;;18269:419;;;:::o;18694:221::-;18834:34;18830:1;18822:6;18818:14;18811:58;18903:4;18898:2;18890:6;18886:15;18879:29;18694:221;:::o;18921:366::-;19063:3;19084:67;19148:2;19143:3;19084:67;:::i;:::-;19077:74;;19160:93;19249:3;19160:93;:::i;:::-;19278:2;19273:3;19269:12;19262:19;;18921:366;;;:::o;19293:419::-;19459:4;19497:2;19486:9;19482:18;19474:26;;19546:9;19540:4;19536:20;19532:1;19521:9;19517:17;19510:47;19574:131;19700:4;19574:131;:::i;:::-;19566:139;;19293:419;;;:::o;19718:234::-;19858:34;19854:1;19846:6;19842:14;19835:58;19927:17;19922:2;19914:6;19910:15;19903:42;19718:234;:::o;19958:366::-;20100:3;20121:67;20185:2;20180:3;20121:67;:::i;:::-;20114:74;;20197:93;20286:3;20197:93;:::i;:::-;20315:2;20310:3;20306:12;20299:19;;19958:366;;;:::o;20330:419::-;20496:4;20534:2;20523:9;20519:18;20511:26;;20583:9;20577:4;20573:20;20569:1;20558:9;20554:17;20547:47;20611:131;20737:4;20611:131;:::i;:::-;20603:139;;20330:419;;;:::o;20755:148::-;20857:11;20894:3;20879:18;;20755:148;;;;:::o;20909:141::-;20958:4;20981:3;20973:11;;21004:3;21001:1;20994:14;21038:4;21035:1;21025:18;21017:26;;20909:141;;;:::o;21080:845::-;21183:3;21220:5;21214:12;21249:36;21275:9;21249:36;:::i;:::-;21301:89;21383:6;21378:3;21301:89;:::i;:::-;21294:96;;21421:1;21410:9;21406:17;21437:1;21432:137;;;;21583:1;21578:341;;;;21399:520;;21432:137;21516:4;21512:9;21501;21497:25;21492:3;21485:38;21552:6;21547:3;21543:16;21536:23;;21432:137;;21578:341;21645:38;21677:5;21645:38;:::i;:::-;21705:1;21719:154;21733:6;21730:1;21727:13;21719:154;;;21807:7;21801:14;21797:1;21792:3;21788:11;21781:35;21857:1;21848:7;21844:15;21833:26;;21755:4;21752:1;21748:12;21743:17;;21719:154;;;21902:6;21897:3;21893:16;21886:23;;21585:334;;21399:520;;21187:738;;21080:845;;;;:::o;21931:151::-;22071:3;22067:1;22059:6;22055:14;22048:27;21931:151;:::o;22088:400::-;22248:3;22269:84;22351:1;22346:3;22269:84;:::i;:::-;22262:91;;22362:93;22451:3;22362:93;:::i;:::-;22480:1;22475:3;22471:11;22464:18;;22088:400;;;:::o;22494:377::-;22600:3;22628:39;22661:5;22628:39;:::i;:::-;22683:89;22765:6;22760:3;22683:89;:::i;:::-;22676:96;;22781:52;22826:6;22821:3;22814:4;22807:5;22803:16;22781:52;:::i;:::-;22858:6;22853:3;22849:16;22842:23;;22604:267;22494:377;;;;:::o;22877:155::-;23017:7;23013:1;23005:6;23001:14;22994:31;22877:155;:::o;23038:400::-;23198:3;23219:84;23301:1;23296:3;23219:84;:::i;:::-;23212:91;;23312:93;23401:3;23312:93;:::i;:::-;23430:1;23425:3;23421:11;23414:18;;23038:400;;;:::o;23444:961::-;23823:3;23845:92;23933:3;23924:6;23845:92;:::i;:::-;23838:99;;23954:148;24098:3;23954:148;:::i;:::-;23947:155;;24119:95;24210:3;24201:6;24119:95;:::i;:::-;24112:102;;24231:148;24375:3;24231:148;:::i;:::-;24224:155;;24396:3;24389:10;;23444:961;;;;;:::o;24411:169::-;24551:21;24547:1;24539:6;24535:14;24528:45;24411:169;:::o;24586:366::-;24728:3;24749:67;24813:2;24808:3;24749:67;:::i;:::-;24742:74;;24825:93;24914:3;24825:93;:::i;:::-;24943:2;24938:3;24934:12;24927:19;;24586:366;;;:::o;24958:419::-;25124:4;25162:2;25151:9;25147:18;25139:26;;25211:9;25205:4;25201:20;25197:1;25186:9;25182:17;25175:47;25239:131;25365:4;25239:131;:::i;:::-;25231:139;;24958:419;;;:::o;25383:173::-;25523:25;25519:1;25511:6;25507:14;25500:49;25383:173;:::o;25562:366::-;25704:3;25725:67;25789:2;25784:3;25725:67;:::i;:::-;25718:74;;25801:93;25890:3;25801:93;:::i;:::-;25919:2;25914:3;25910:12;25903:19;;25562:366;;;:::o;25934:419::-;26100:4;26138:2;26127:9;26123:18;26115:26;;26187:9;26181:4;26177:20;26173:1;26162:9;26158:17;26151:47;26215:131;26341:4;26215:131;:::i;:::-;26207:139;;25934:419;;;:::o;26359:225::-;26499:34;26495:1;26487:6;26483:14;26476:58;26568:8;26563:2;26555:6;26551:15;26544:33;26359:225;:::o;26590:366::-;26732:3;26753:67;26817:2;26812:3;26753:67;:::i;:::-;26746:74;;26829:93;26918:3;26829:93;:::i;:::-;26947:2;26942:3;26938:12;26931:19;;26590:366;;;:::o;26962:419::-;27128:4;27166:2;27155:9;27151:18;27143:26;;27215:9;27209:4;27205:20;27201:1;27190:9;27186:17;27179:47;27243:131;27369:4;27243:131;:::i;:::-;27235:139;;26962:419;;;:::o;27387:179::-;27527:31;27523:1;27515:6;27511:14;27504:55;27387:179;:::o;27572:366::-;27714:3;27735:67;27799:2;27794:3;27735:67;:::i;:::-;27728:74;;27811:93;27900:3;27811:93;:::i;:::-;27929:2;27924:3;27920:12;27913:19;;27572:366;;;:::o;27944:419::-;28110:4;28148:2;28137:9;28133:18;28125:26;;28197:9;28191:4;28187:20;28183:1;28172:9;28168:17;28161:47;28225:131;28351:4;28225:131;:::i;:::-;28217:139;;27944:419;;;:::o;28369:147::-;28470:11;28507:3;28492:18;;28369:147;;;;:::o;28522:114::-;;:::o;28642:398::-;28801:3;28822:83;28903:1;28898:3;28822:83;:::i;:::-;28815:90;;28914:93;29003:3;28914:93;:::i;:::-;29032:1;29027:3;29023:11;29016:18;;28642:398;;;:::o;29046:379::-;29230:3;29252:147;29395:3;29252:147;:::i;:::-;29245:154;;29416:3;29409:10;;29046:379;;;:::o;29431:245::-;29571:34;29567:1;29559:6;29555:14;29548:58;29640:28;29635:2;29627:6;29623:15;29616:53;29431:245;:::o;29682:366::-;29824:3;29845:67;29909:2;29904:3;29845:67;:::i;:::-;29838:74;;29921:93;30010:3;29921:93;:::i;:::-;30039:2;30034:3;30030:12;30023:19;;29682:366;;;:::o;30054:419::-;30220:4;30258:2;30247:9;30243:18;30235:26;;30307:9;30301:4;30297:20;30293:1;30282:9;30278:17;30271:47;30335:131;30461:4;30335:131;:::i;:::-;30327:139;;30054:419;;;:::o;30479:98::-;30530:6;30564:5;30558:12;30548:22;;30479:98;;;:::o;30583:168::-;30666:11;30700:6;30695:3;30688:19;30740:4;30735:3;30731:14;30716:29;;30583:168;;;;:::o;30757:360::-;30843:3;30871:38;30903:5;30871:38;:::i;:::-;30925:70;30988:6;30983:3;30925:70;:::i;:::-;30918:77;;31004:52;31049:6;31044:3;31037:4;31030:5;31026:16;31004:52;:::i;:::-;31081:29;31103:6;31081:29;:::i;:::-;31076:3;31072:39;31065:46;;30847:270;30757:360;;;;:::o;31123:640::-;31318:4;31356:3;31345:9;31341:19;31333:27;;31370:71;31438:1;31427:9;31423:17;31414:6;31370:71;:::i;:::-;31451:72;31519:2;31508:9;31504:18;31495:6;31451:72;:::i;:::-;31533;31601:2;31590:9;31586:18;31577:6;31533:72;:::i;:::-;31652:9;31646:4;31642:20;31637:2;31626:9;31622:18;31615:48;31680:76;31751:4;31742:6;31680:76;:::i;:::-;31672:84;;31123:640;;;;;;;:::o;31769:141::-;31825:5;31856:6;31850:13;31841:22;;31872:32;31898:5;31872:32;:::i;:::-;31769:141;;;;:::o;31916:349::-;31985:6;32034:2;32022:9;32013:7;32009:23;32005:32;32002:119;;;32040:79;;:::i;:::-;32002:119;32160:1;32185:63;32240:7;32231:6;32220:9;32216:22;32185:63;:::i;:::-;32175:73;;32131:127;31916:349;;;;:::o;32271:233::-;32310:3;32333:24;32351:5;32333:24;:::i;:::-;32324:33;;32379:66;32372:5;32369:77;32366:103;;;32449:18;;:::i;:::-;32366:103;32496:1;32489:5;32485:13;32478:20;;32271:233;;;:::o;32510:180::-;32558:77;32555:1;32548:88;32655:4;32652:1;32645:15;32679:4;32676:1;32669:15;32696:185;32736:1;32753:20;32771:1;32753:20;:::i;:::-;32748:25;;32787:20;32805:1;32787:20;:::i;:::-;32782:25;;32826:1;32816:35;;32831:18;;:::i;:::-;32816:35;32873:1;32870;32866:9;32861:14;;32696:185;;;;:::o;32887:191::-;32927:4;32947:20;32965:1;32947:20;:::i;:::-;32942:25;;32981:20;32999:1;32981:20;:::i;:::-;32976:25;;33020:1;33017;33014:8;33011:34;;;33025:18;;:::i;:::-;33011:34;33070:1;33067;33063:9;33055:17;;32887:191;;;;:::o;33084:176::-;33116:1;33133:20;33151:1;33133:20;:::i;:::-;33128:25;;33167:20;33185:1;33167:20;:::i;:::-;33162:25;;33206:1;33196:35;;33211:18;;:::i;:::-;33196:35;33252:1;33249;33245:9;33240:14;;33084:176;;;;:::o;33266:180::-;33314:77;33311:1;33304:88;33411:4;33408:1;33401:15;33435:4;33432:1;33425:15

Swarm Source

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