ETH Price: $3,455.27 (+2.50%)
Gas: 4 Gwei

Token

Franklins World (FranklinsWorld)
 

Overview

Max Total Supply

994 FranklinsWorld

Holders

141

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
9 FranklinsWorld
0x612093ac1a182533b0998c8636d6405b61693531
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:
FranklinsWorld

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-23
*/

// 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/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: @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: erc721a/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 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity 0.8.12;



contract FranklinsWorld is ERC721A, Ownable {

	uint public constant MAX_TOKENS = 1500;
	
	uint public CURR_MINT_COST = 0 ether;
	
	//---- Round based supplies
	string private CURR_ROUND_NAME = "Free Round";
	uint private CURR_ROUND_SUPPLY = 500;
	uint private CURR_ROUND_TIME = 0;
	uint private maxMintAmount = 5;
	uint private nftPerAddressLimit = 5;

	bool public hasSaleStarted = false;
	
	string public baseURI;

    mapping(address => bool) public blacklist;

	
	constructor() ERC721A("Franklins World", "FranklinsWorld") {
		setBaseURI("http://api.franklinsworld.com/franklin/");
	}


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

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

	function mintNFT(uint _mintAmount) external payable {
		require(msg.value >= CURR_MINT_COST * _mintAmount, "Insufficient funds");
		require(hasSaleStarted == true, "Sale hasn't started");
		require(_mintAmount > 0, "Need to mint at least 1 NFT");
		require(_mintAmount <= maxMintAmount, "Max mint amount per transaction exceeded");
		require(_mintAmount <= CURR_ROUND_SUPPLY, "We're at max supply!");
		require((_mintAmount  + balanceOf(msg.sender)) <= nftPerAddressLimit, "Max NFT per address exceeded");
		require(isBlacklisted(msg.sender) == false, "Blacklisted");

		CURR_ROUND_SUPPLY -= _mintAmount;
		_safeMint(msg.sender, _mintAmount);
		
	}

	
	function getInformations() external view returns (string memory, uint, uint, uint, uint,uint,uint, bool,bool)
	{
		return (CURR_ROUND_NAME,CURR_ROUND_SUPPLY,CURR_ROUND_TIME,CURR_MINT_COST,maxMintAmount,nftPerAddressLimit, totalSupply(), hasSaleStarted,false);
	}

	
	//only owner functions
	
	function setNewRound(uint _supply, uint cost, string memory name, uint perTransactionLimit, uint perAddressLimit, uint theTime, bool saleState) external onlyOwner {
		require(_supply <= (MAX_TOKENS - totalSupply()), "Exceeded supply");
		CURR_ROUND_SUPPLY = _supply;
		CURR_MINT_COST = cost;
		CURR_ROUND_NAME = name;
		maxMintAmount = perTransactionLimit;
		nftPerAddressLimit = perAddressLimit;
		CURR_ROUND_TIME = theTime;
		hasSaleStarted = saleState;
	}

	function isBlacklisted(address _user) public view returns (bool) {
		return blacklist[_user];
	}

	function blacklistAddresses (address[] calldata users) public onlyOwner {
		for (uint i = 0; i < users.length; i++) {
			blacklist[users[i]] = true;
		}
	}
	function removeBlacklistAddresses (address[] calldata users) external onlyOwner {
		for (uint i = 0; i < users.length; i++) {
			delete blacklist[users[i]];
		}
	}
	function setBaseURI(string memory _newBaseURI) public onlyOwner {
		baseURI = _newBaseURI;
	}

	function Giveaways(uint numTokens, address recipient) public onlyOwner {
		require((totalSupply() + numTokens) <= MAX_TOKENS, "Exceeded supply");
		_safeMint(recipient, numTokens);
	}

	function withdraw(uint amount) public payable onlyOwner {
		require(payable(msg.sender).send(amount));
	}
	
	function setSaleStarted(bool _state) public onlyOwner {
		hasSaleStarted = _state;
	}
}

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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"CURR_MINT_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"Giveaways","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_TOKENS","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"blacklistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInformations","outputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintNFT","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":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"removeBlacklistAddresses","outputs":[],"stateMutability":"nonpayable","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"perTransactionLimit","type":"uint256"},{"internalType":"uint256","name":"perAddressLimit","type":"uint256"},{"internalType":"uint256","name":"theTime","type":"uint256"},{"internalType":"bool","name":"saleState","type":"bool"}],"name":"setNewRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleStarted","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":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260006009556040518060400160405280600a81526020017f4672656520526f756e6400000000000000000000000000000000000000000000815250600a90805190602001906200005692919062000347565b506101f4600b556000600c556005600d556005600e556000600f60006101000a81548160ff0219169083151502179055503480156200009457600080fd5b506040518060400160405280600f81526020017f4672616e6b6c696e7320576f726c6400000000000000000000000000000000008152506040518060400160405280600e81526020017f4672616e6b6c696e73576f726c6400000000000000000000000000000000000081525081600290805190602001906200011992919062000347565b5080600390805190602001906200013292919062000347565b50620001436200019b60201b60201c565b60008190555050506200016b6200015f620001a460201b60201c565b620001ac60201b60201c565b62000195604051806060016040528060278152602001620043fb602791396200027260201b60201c565b620004df565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000282620001a460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002a86200031d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000301576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f89062000458565b60405180910390fd5b80601090805190602001906200031992919062000347565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035590620004a9565b90600052602060002090601f016020900481019282620003795760008555620003c5565b82601f106200039457805160ff1916838001178555620003c5565b82800160010185558215620003c5579182015b82811115620003c4578251825591602001919060010190620003a7565b5b509050620003d49190620003d8565b5090565b5b80821115620003f3576000816000905550600101620003d9565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000440602083620003f7565b91506200044d8262000408565b602082019050919050565b60006020820190508181036000830152620004738162000431565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004c257607f821691505b60208210811415620004d957620004d86200047a565b5b50919050565b613f0c80620004ef6000396000f3fe6080604052600436106101e35760003560e01c806377a54eb811610102578063c342784411610095578063f2fde38b11610064578063f2fde38b146106c8578063f47c84c5146106f1578063f9f92be41461071c578063fe575a8714610759576101e3565b8063c3427844146105fa578063c87b56dd14610625578063cc0b8d1514610662578063e985e9c51461068b576101e3565b80639fa38f0f116100d15780639fa38f0f14610556578063a22cb4651461057f578063a854ffba146105a8578063b88d4fde146105d1576101e3565b806377a54eb8146104bb5780638da5cb5b146104e4578063926427441461050f57806395d89b411461052b576101e3565b80632e1a7d4d1161017a5780636352211e116101495780636352211e146103ff5780636c0360eb1461043c57806370a0823114610467578063715018a6146104a4576101e3565b80632e1a7d4d1461035e5780633c5e310b1461037a57806342842e0e146103ad57806355f804b3146103d6576101e3565b8063122fede9116101b6578063122fede9146102b657806318160ddd146102df5780631c8b232d1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612de5565b610796565b60405161021c9190612e2d565b60405180910390f35b34801561023157600080fd5b5061023a610878565b6040516102479190612ee1565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612f39565b61090a565b6040516102849190612fa7565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612fee565b610986565b005b3480156102c257600080fd5b506102dd60048036038101906102d8919061318f565b610a91565b005b3480156102eb57600080fd5b506102f4610bc1565b604051610301919061325c565b60405180910390f35b34801561031657600080fd5b5061031f610bd8565b60405161032c9190612e2d565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190613277565b610beb565b005b61037860048036038101906103739190612f39565b610bfb565b005b34801561038657600080fd5b5061038f610cb8565b6040516103a4999897969594939291906132ca565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613277565b610d9a565b005b3480156103e257600080fd5b506103fd60048036038101906103f8919061335e565b610dba565b005b34801561040b57600080fd5b5061042660048036038101906104219190612f39565b610e50565b6040516104339190612fa7565b60405180910390f35b34801561044857600080fd5b50610451610e66565b60405161045e9190612ee1565b60405180910390f35b34801561047357600080fd5b5061048e600480360381019061048991906133a7565b610ef4565b60405161049b919061325c565b60405180910390f35b3480156104b057600080fd5b506104b9610fc4565b005b3480156104c757600080fd5b506104e260048036038101906104dd9190613434565b61104c565b005b3480156104f057600080fd5b506104f961116d565b6040516105069190612fa7565b60405180910390f35b61052960048036038101906105249190612f39565b611197565b005b34801561053757600080fd5b506105406113d7565b60405161054d9190612ee1565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190613434565b611469565b005b34801561058b57600080fd5b506105a660048036038101906105a19190613481565b611581565b005b3480156105b457600080fd5b506105cf60048036038101906105ca91906134c1565b6116f9565b005b3480156105dd57600080fd5b506105f860048036038101906105f3919061358f565b611792565b005b34801561060657600080fd5b5061060f61180e565b60405161061c919061325c565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190612f39565b611814565b6040516106599190612ee1565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190613612565b6118b3565b005b34801561069757600080fd5b506106b260048036038101906106ad9190613652565b611994565b6040516106bf9190612e2d565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea91906133a7565b611a28565b005b3480156106fd57600080fd5b50610706611b20565b604051610713919061325c565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906133a7565b611b26565b6040516107509190612e2d565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906133a7565b611b46565b60405161078d9190612e2d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610871575061087082611b9c565b5b9050919050565b606060028054610887906136c1565b80601f01602080910402602001604051908101604052809291908181526020018280546108b3906136c1565b80156109005780601f106108d557610100808354040283529160200191610900565b820191906000526020600020905b8154815290600101906020018083116108e357829003601f168201915b5050505050905090565b600061091582611c06565b61094b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099182610e50565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a18611c54565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a4a5750610a4881610a43611c54565b611994565b155b15610a81576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a8c838383611c5c565b505050565b610a99611c54565b73ffffffffffffffffffffffffffffffffffffffff16610ab761116d565b73ffffffffffffffffffffffffffffffffffffffff1614610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b049061373f565b60405180910390fd5b610b15610bc1565b6105dc610b22919061378e565b871115610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b9061380e565b60405180910390fd5b86600b819055508560098190555084600a9080519060200190610b88929190612c93565b5083600d8190555082600e8190555081600c8190555080600f60006101000a81548160ff02191690831515021790555050505050505050565b6000610bcb611d0e565b6001546000540303905090565b600f60009054906101000a900460ff1681565b610bf6838383611d17565b505050565b610c03611c54565b73ffffffffffffffffffffffffffffffffffffffff16610c2161116d565b73ffffffffffffffffffffffffffffffffffffffff1614610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061373f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610cb557600080fd5b50565b6060600080600080600080600080600a600b54600c54600954600d54600e54610cdf610bc1565b600f60009054906101000a900460ff166000888054610cfd906136c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d29906136c1565b8015610d765780601f10610d4b57610100808354040283529160200191610d76565b820191906000526020600020905b815481529060010190602001808311610d5957829003601f168201915b50505050509850985098509850985098509850985098509850909192939495969798565b610db583838360405180602001604052806000815250611792565b505050565b610dc2611c54565b73ffffffffffffffffffffffffffffffffffffffff16610de061116d565b73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d9061373f565b60405180910390fd5b8060109080519060200190610e4c929190612c93565b5050565b6000610e5b826121cd565b600001519050919050565b60108054610e73906136c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9f906136c1565b8015610eec5780601f10610ec157610100808354040283529160200191610eec565b820191906000526020600020905b815481529060010190602001808311610ecf57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fcc611c54565b73ffffffffffffffffffffffffffffffffffffffff16610fea61116d565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110379061373f565b60405180910390fd5b61104a600061245c565b565b611054611c54565b73ffffffffffffffffffffffffffffffffffffffff1661107261116d565b73ffffffffffffffffffffffffffffffffffffffff16146110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf9061373f565b60405180910390fd5b60005b82829050811015611168576001601160008585858181106110ef576110ee61382e565b5b905060200201602081019061110491906133a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806111609061385d565b9150506110cb565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b806009546111a591906138a6565b3410156111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de9061394c565b60405180910390fd5b60011515600f60009054906101000a900460ff1615151461123d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611234906139b8565b60405180910390fd5b60008111611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790613a24565b60405180910390fd5b600d548111156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90613ab6565b60405180910390fd5b600b5481111561130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190613b22565b60405180910390fd5b600e5461131633610ef4565b826113219190613b42565b1115611362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135990613be4565b60405180910390fd5b6000151561136f33611b46565b1515146113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a890613c50565b60405180910390fd5b80600b60008282546113c3919061378e565b925050819055506113d43382612522565b50565b6060600380546113e6906136c1565b80601f0160208091040260200160405190810160405280929190818152602001828054611412906136c1565b801561145f5780601f106114345761010080835404028352916020019161145f565b820191906000526020600020905b81548152906001019060200180831161144257829003601f168201915b5050505050905090565b611471611c54565b73ffffffffffffffffffffffffffffffffffffffff1661148f61116d565b73ffffffffffffffffffffffffffffffffffffffff16146114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc9061373f565b60405180910390fd5b60005b8282905081101561157c576011600084848481811061150a5761150961382e565b5b905060200201602081019061151f91906133a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905580806115749061385d565b9150506114e8565b505050565b611589611c54565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115fb611c54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116a8611c54565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ed9190612e2d565b60405180910390a35050565b611701611c54565b73ffffffffffffffffffffffffffffffffffffffff1661171f61116d565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c9061373f565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b61179d848484611d17565b6117bc8373ffffffffffffffffffffffffffffffffffffffff16612540565b80156117d157506117cf84848484612563565b155b15611808576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60095481565b606061181f82611c06565b611855576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061185f6126b4565b905060008151141561188057604051806020016040528060008152506118ab565b8061188a84612746565b60405160200161189b929190613cac565b6040516020818303038152906040525b915050919050565b6118bb611c54565b73ffffffffffffffffffffffffffffffffffffffff166118d961116d565b73ffffffffffffffffffffffffffffffffffffffff161461192f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119269061373f565b60405180910390fd5b6105dc8261193b610bc1565b6119459190613b42565b1115611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d9061380e565b60405180910390fd5b6119908183612522565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a30611c54565b73ffffffffffffffffffffffffffffffffffffffff16611a4e61116d565b73ffffffffffffffffffffffffffffffffffffffff1614611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b9061373f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b90613d42565b60405180910390fd5b611b1d8161245c565b50565b6105dc81565b60116020528060005260406000206000915054906101000a900460ff1681565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c11611d0e565b11158015611c20575060005482105b8015611c4d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d22826121cd565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d8d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611dae611c54565b73ffffffffffffffffffffffffffffffffffffffff161480611ddd5750611ddc85611dd7611c54565b611994565b5b80611e225750611deb611c54565b73ffffffffffffffffffffffffffffffffffffffff16611e0a8461090a565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e5b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ec2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ecf85858560016128a7565b611edb60008487611c5c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561215b57600054821461215a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121c685858560016128ad565b5050505050565b6121d5612d19565b6000829050806121e3611d0e565b111580156121f2575060005481105b15612425576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161242357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612307578092505050612457565b5b60011561242257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461241d578092505050612457565b612308565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61253c8282604051806020016040528060008152506128b3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612589611c54565b8786866040518563ffffffff1660e01b81526004016125ab9493929190613db7565b6020604051808303816000875af19250505080156125e757506040513d601f19601f820116820180604052508101906125e49190613e18565b60015b612661573d8060008114612617576040519150601f19603f3d011682016040523d82523d6000602084013e61261c565b606091505b50600081511415612659576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546126c3906136c1565b80601f01602080910402602001604051908101604052809291908181526020018280546126ef906136c1565b801561273c5780601f106127115761010080835404028352916020019161273c565b820191906000526020600020905b81548152906001019060200180831161271f57829003601f168201915b5050505050905090565b6060600082141561278e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128a2565b600082905060005b600082146127c05780806127a99061385d565b915050600a826127b99190613e74565b9150612796565b60008167ffffffffffffffff8111156127dc576127db613038565b5b6040519080825280601f01601f19166020018201604052801561280e5781602001600182028036833780820191505090505b5090505b6000851461289b57600182612827919061378e565b9150600a856128369190613ea5565b60306128429190613b42565b60f81b8183815181106128585761285761382e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128949190613e74565b9450612812565b8093505050505b919050565b50505050565b50505050565b6128c083838360016128c5565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612932576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561296d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61297a60008683876128a7565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b445750612b438773ffffffffffffffffffffffffffffffffffffffff16612540565b5b15612c0a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bb96000888480600101955088612563565b612bef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b4a578260005414612c0557600080fd5b612c76565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c0b575b816000819055505050612c8c60008683876128ad565b5050505050565b828054612c9f906136c1565b90600052602060002090601f016020900481019282612cc15760008555612d08565b82601f10612cda57805160ff1916838001178555612d08565b82800160010185558215612d08579182015b82811115612d07578251825591602001919060010190612cec565b5b509050612d159190612d5c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d75576000816000905550600101612d5d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612dc281612d8d565b8114612dcd57600080fd5b50565b600081359050612ddf81612db9565b92915050565b600060208284031215612dfb57612dfa612d83565b5b6000612e0984828501612dd0565b91505092915050565b60008115159050919050565b612e2781612e12565b82525050565b6000602082019050612e426000830184612e1e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e82578082015181840152602081019050612e67565b83811115612e91576000848401525b50505050565b6000601f19601f8301169050919050565b6000612eb382612e48565b612ebd8185612e53565b9350612ecd818560208601612e64565b612ed681612e97565b840191505092915050565b60006020820190508181036000830152612efb8184612ea8565b905092915050565b6000819050919050565b612f1681612f03565b8114612f2157600080fd5b50565b600081359050612f3381612f0d565b92915050565b600060208284031215612f4f57612f4e612d83565b5b6000612f5d84828501612f24565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f9182612f66565b9050919050565b612fa181612f86565b82525050565b6000602082019050612fbc6000830184612f98565b92915050565b612fcb81612f86565b8114612fd657600080fd5b50565b600081359050612fe881612fc2565b92915050565b6000806040838503121561300557613004612d83565b5b600061301385828601612fd9565b925050602061302485828601612f24565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61307082612e97565b810181811067ffffffffffffffff8211171561308f5761308e613038565b5b80604052505050565b60006130a2612d79565b90506130ae8282613067565b919050565b600067ffffffffffffffff8211156130ce576130cd613038565b5b6130d782612e97565b9050602081019050919050565b82818337600083830152505050565b6000613106613101846130b3565b613098565b90508281526020810184848401111561312257613121613033565b5b61312d8482856130e4565b509392505050565b600082601f83011261314a5761314961302e565b5b813561315a8482602086016130f3565b91505092915050565b61316c81612e12565b811461317757600080fd5b50565b60008135905061318981613163565b92915050565b600080600080600080600060e0888a0312156131ae576131ad612d83565b5b60006131bc8a828b01612f24565b97505060206131cd8a828b01612f24565b965050604088013567ffffffffffffffff8111156131ee576131ed612d88565b5b6131fa8a828b01613135565b955050606061320b8a828b01612f24565b945050608061321c8a828b01612f24565b93505060a061322d8a828b01612f24565b92505060c061323e8a828b0161317a565b91505092959891949750929550565b61325681612f03565b82525050565b6000602082019050613271600083018461324d565b92915050565b6000806000606084860312156132905761328f612d83565b5b600061329e86828701612fd9565b93505060206132af86828701612fd9565b92505060406132c086828701612f24565b9150509250925092565b60006101208201905081810360008301526132e5818c612ea8565b90506132f4602083018b61324d565b613301604083018a61324d565b61330e606083018961324d565b61331b608083018861324d565b61332860a083018761324d565b61333560c083018661324d565b61334260e0830185612e1e565b613350610100830184612e1e565b9a9950505050505050505050565b60006020828403121561337457613373612d83565b5b600082013567ffffffffffffffff81111561339257613391612d88565b5b61339e84828501613135565b91505092915050565b6000602082840312156133bd576133bc612d83565b5b60006133cb84828501612fd9565b91505092915050565b600080fd5b600080fd5b60008083601f8401126133f4576133f361302e565b5b8235905067ffffffffffffffff811115613411576134106133d4565b5b60208301915083602082028301111561342d5761342c6133d9565b5b9250929050565b6000806020838503121561344b5761344a612d83565b5b600083013567ffffffffffffffff81111561346957613468612d88565b5b613475858286016133de565b92509250509250929050565b6000806040838503121561349857613497612d83565b5b60006134a685828601612fd9565b92505060206134b78582860161317a565b9150509250929050565b6000602082840312156134d7576134d6612d83565b5b60006134e58482850161317a565b91505092915050565b600067ffffffffffffffff82111561350957613508613038565b5b61351282612e97565b9050602081019050919050565b600061353261352d846134ee565b613098565b90508281526020810184848401111561354e5761354d613033565b5b6135598482856130e4565b509392505050565b600082601f8301126135765761357561302e565b5b813561358684826020860161351f565b91505092915050565b600080600080608085870312156135a9576135a8612d83565b5b60006135b787828801612fd9565b94505060206135c887828801612fd9565b93505060406135d987828801612f24565b925050606085013567ffffffffffffffff8111156135fa576135f9612d88565b5b61360687828801613561565b91505092959194509250565b6000806040838503121561362957613628612d83565b5b600061363785828601612f24565b925050602061364885828601612fd9565b9150509250929050565b6000806040838503121561366957613668612d83565b5b600061367785828601612fd9565b925050602061368885828601612fd9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136d957607f821691505b602082108114156136ed576136ec613692565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613729602083612e53565b9150613734826136f3565b602082019050919050565b600060208201905081810360008301526137588161371c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061379982612f03565b91506137a483612f03565b9250828210156137b7576137b661375f565b5b828203905092915050565b7f457863656564656420737570706c790000000000000000000000000000000000600082015250565b60006137f8600f83612e53565b9150613803826137c2565b602082019050919050565b60006020820190508181036000830152613827816137eb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061386882612f03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561389b5761389a61375f565b5b600182019050919050565b60006138b182612f03565b91506138bc83612f03565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138f5576138f461375f565b5b828202905092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613936601283612e53565b915061394182613900565b602082019050919050565b6000602082019050818103600083015261396581613929565b9050919050565b7f53616c65206861736e2774207374617274656400000000000000000000000000600082015250565b60006139a2601383612e53565b91506139ad8261396c565b602082019050919050565b600060208201905081810360008301526139d181613995565b9050919050565b7f4e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613a0e601b83612e53565b9150613a19826139d8565b602082019050919050565b60006020820190508181036000830152613a3d81613a01565b9050919050565b7f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b6000613aa0602883612e53565b9150613aab82613a44565b604082019050919050565b60006020820190508181036000830152613acf81613a93565b9050919050565b7f5765277265206174206d617820737570706c7921000000000000000000000000600082015250565b6000613b0c601483612e53565b9150613b1782613ad6565b602082019050919050565b60006020820190508181036000830152613b3b81613aff565b9050919050565b6000613b4d82612f03565b9150613b5883612f03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b8d57613b8c61375f565b5b828201905092915050565b7f4d6178204e465420706572206164647265737320657863656564656400000000600082015250565b6000613bce601c83612e53565b9150613bd982613b98565b602082019050919050565b60006020820190508181036000830152613bfd81613bc1565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000613c3a600b83612e53565b9150613c4582613c04565b602082019050919050565b60006020820190508181036000830152613c6981613c2d565b9050919050565b600081905092915050565b6000613c8682612e48565b613c908185613c70565b9350613ca0818560208601612e64565b80840191505092915050565b6000613cb88285613c7b565b9150613cc48284613c7b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d2c602683612e53565b9150613d3782613cd0565b604082019050919050565b60006020820190508181036000830152613d5b81613d1f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613d8982613d62565b613d938185613d6d565b9350613da3818560208601612e64565b613dac81612e97565b840191505092915050565b6000608082019050613dcc6000830187612f98565b613dd96020830186612f98565b613de6604083018561324d565b8181036060830152613df88184613d7e565b905095945050505050565b600081519050613e1281612db9565b92915050565b600060208284031215613e2e57613e2d612d83565b5b6000613e3c84828501613e03565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e7f82612f03565b9150613e8a83612f03565b925082613e9a57613e99613e45565b5b828204905092915050565b6000613eb082612f03565b9150613ebb83612f03565b925082613ecb57613eca613e45565b5b82820690509291505056fea26469706673582212203f7ec9e05eafc907cf658e8a86fe34e32d140d4acc7d4b7e2054ec2fc77403d464736f6c634300080c0033687474703a2f2f6170692e6672616e6b6c696e73776f726c642e636f6d2f6672616e6b6c696e2f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806377a54eb811610102578063c342784411610095578063f2fde38b11610064578063f2fde38b146106c8578063f47c84c5146106f1578063f9f92be41461071c578063fe575a8714610759576101e3565b8063c3427844146105fa578063c87b56dd14610625578063cc0b8d1514610662578063e985e9c51461068b576101e3565b80639fa38f0f116100d15780639fa38f0f14610556578063a22cb4651461057f578063a854ffba146105a8578063b88d4fde146105d1576101e3565b806377a54eb8146104bb5780638da5cb5b146104e4578063926427441461050f57806395d89b411461052b576101e3565b80632e1a7d4d1161017a5780636352211e116101495780636352211e146103ff5780636c0360eb1461043c57806370a0823114610467578063715018a6146104a4576101e3565b80632e1a7d4d1461035e5780633c5e310b1461037a57806342842e0e146103ad57806355f804b3146103d6576101e3565b8063122fede9116101b6578063122fede9146102b657806318160ddd146102df5780631c8b232d1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612de5565b610796565b60405161021c9190612e2d565b60405180910390f35b34801561023157600080fd5b5061023a610878565b6040516102479190612ee1565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612f39565b61090a565b6040516102849190612fa7565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612fee565b610986565b005b3480156102c257600080fd5b506102dd60048036038101906102d8919061318f565b610a91565b005b3480156102eb57600080fd5b506102f4610bc1565b604051610301919061325c565b60405180910390f35b34801561031657600080fd5b5061031f610bd8565b60405161032c9190612e2d565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190613277565b610beb565b005b61037860048036038101906103739190612f39565b610bfb565b005b34801561038657600080fd5b5061038f610cb8565b6040516103a4999897969594939291906132ca565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613277565b610d9a565b005b3480156103e257600080fd5b506103fd60048036038101906103f8919061335e565b610dba565b005b34801561040b57600080fd5b5061042660048036038101906104219190612f39565b610e50565b6040516104339190612fa7565b60405180910390f35b34801561044857600080fd5b50610451610e66565b60405161045e9190612ee1565b60405180910390f35b34801561047357600080fd5b5061048e600480360381019061048991906133a7565b610ef4565b60405161049b919061325c565b60405180910390f35b3480156104b057600080fd5b506104b9610fc4565b005b3480156104c757600080fd5b506104e260048036038101906104dd9190613434565b61104c565b005b3480156104f057600080fd5b506104f961116d565b6040516105069190612fa7565b60405180910390f35b61052960048036038101906105249190612f39565b611197565b005b34801561053757600080fd5b506105406113d7565b60405161054d9190612ee1565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190613434565b611469565b005b34801561058b57600080fd5b506105a660048036038101906105a19190613481565b611581565b005b3480156105b457600080fd5b506105cf60048036038101906105ca91906134c1565b6116f9565b005b3480156105dd57600080fd5b506105f860048036038101906105f3919061358f565b611792565b005b34801561060657600080fd5b5061060f61180e565b60405161061c919061325c565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190612f39565b611814565b6040516106599190612ee1565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190613612565b6118b3565b005b34801561069757600080fd5b506106b260048036038101906106ad9190613652565b611994565b6040516106bf9190612e2d565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea91906133a7565b611a28565b005b3480156106fd57600080fd5b50610706611b20565b604051610713919061325c565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906133a7565b611b26565b6040516107509190612e2d565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906133a7565b611b46565b60405161078d9190612e2d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610871575061087082611b9c565b5b9050919050565b606060028054610887906136c1565b80601f01602080910402602001604051908101604052809291908181526020018280546108b3906136c1565b80156109005780601f106108d557610100808354040283529160200191610900565b820191906000526020600020905b8154815290600101906020018083116108e357829003601f168201915b5050505050905090565b600061091582611c06565b61094b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099182610e50565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a18611c54565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a4a5750610a4881610a43611c54565b611994565b155b15610a81576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a8c838383611c5c565b505050565b610a99611c54565b73ffffffffffffffffffffffffffffffffffffffff16610ab761116d565b73ffffffffffffffffffffffffffffffffffffffff1614610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b049061373f565b60405180910390fd5b610b15610bc1565b6105dc610b22919061378e565b871115610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b9061380e565b60405180910390fd5b86600b819055508560098190555084600a9080519060200190610b88929190612c93565b5083600d8190555082600e8190555081600c8190555080600f60006101000a81548160ff02191690831515021790555050505050505050565b6000610bcb611d0e565b6001546000540303905090565b600f60009054906101000a900460ff1681565b610bf6838383611d17565b505050565b610c03611c54565b73ffffffffffffffffffffffffffffffffffffffff16610c2161116d565b73ffffffffffffffffffffffffffffffffffffffff1614610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061373f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610cb557600080fd5b50565b6060600080600080600080600080600a600b54600c54600954600d54600e54610cdf610bc1565b600f60009054906101000a900460ff166000888054610cfd906136c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d29906136c1565b8015610d765780601f10610d4b57610100808354040283529160200191610d76565b820191906000526020600020905b815481529060010190602001808311610d5957829003601f168201915b50505050509850985098509850985098509850985098509850909192939495969798565b610db583838360405180602001604052806000815250611792565b505050565b610dc2611c54565b73ffffffffffffffffffffffffffffffffffffffff16610de061116d565b73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d9061373f565b60405180910390fd5b8060109080519060200190610e4c929190612c93565b5050565b6000610e5b826121cd565b600001519050919050565b60108054610e73906136c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9f906136c1565b8015610eec5780601f10610ec157610100808354040283529160200191610eec565b820191906000526020600020905b815481529060010190602001808311610ecf57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fcc611c54565b73ffffffffffffffffffffffffffffffffffffffff16610fea61116d565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110379061373f565b60405180910390fd5b61104a600061245c565b565b611054611c54565b73ffffffffffffffffffffffffffffffffffffffff1661107261116d565b73ffffffffffffffffffffffffffffffffffffffff16146110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf9061373f565b60405180910390fd5b60005b82829050811015611168576001601160008585858181106110ef576110ee61382e565b5b905060200201602081019061110491906133a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806111609061385d565b9150506110cb565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b806009546111a591906138a6565b3410156111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de9061394c565b60405180910390fd5b60011515600f60009054906101000a900460ff1615151461123d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611234906139b8565b60405180910390fd5b60008111611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790613a24565b60405180910390fd5b600d548111156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90613ab6565b60405180910390fd5b600b5481111561130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190613b22565b60405180910390fd5b600e5461131633610ef4565b826113219190613b42565b1115611362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135990613be4565b60405180910390fd5b6000151561136f33611b46565b1515146113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a890613c50565b60405180910390fd5b80600b60008282546113c3919061378e565b925050819055506113d43382612522565b50565b6060600380546113e6906136c1565b80601f0160208091040260200160405190810160405280929190818152602001828054611412906136c1565b801561145f5780601f106114345761010080835404028352916020019161145f565b820191906000526020600020905b81548152906001019060200180831161144257829003601f168201915b5050505050905090565b611471611c54565b73ffffffffffffffffffffffffffffffffffffffff1661148f61116d565b73ffffffffffffffffffffffffffffffffffffffff16146114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc9061373f565b60405180910390fd5b60005b8282905081101561157c576011600084848481811061150a5761150961382e565b5b905060200201602081019061151f91906133a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905580806115749061385d565b9150506114e8565b505050565b611589611c54565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115fb611c54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116a8611c54565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ed9190612e2d565b60405180910390a35050565b611701611c54565b73ffffffffffffffffffffffffffffffffffffffff1661171f61116d565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c9061373f565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b61179d848484611d17565b6117bc8373ffffffffffffffffffffffffffffffffffffffff16612540565b80156117d157506117cf84848484612563565b155b15611808576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60095481565b606061181f82611c06565b611855576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061185f6126b4565b905060008151141561188057604051806020016040528060008152506118ab565b8061188a84612746565b60405160200161189b929190613cac565b6040516020818303038152906040525b915050919050565b6118bb611c54565b73ffffffffffffffffffffffffffffffffffffffff166118d961116d565b73ffffffffffffffffffffffffffffffffffffffff161461192f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119269061373f565b60405180910390fd5b6105dc8261193b610bc1565b6119459190613b42565b1115611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d9061380e565b60405180910390fd5b6119908183612522565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a30611c54565b73ffffffffffffffffffffffffffffffffffffffff16611a4e61116d565b73ffffffffffffffffffffffffffffffffffffffff1614611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b9061373f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b90613d42565b60405180910390fd5b611b1d8161245c565b50565b6105dc81565b60116020528060005260406000206000915054906101000a900460ff1681565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c11611d0e565b11158015611c20575060005482105b8015611c4d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d22826121cd565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d8d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611dae611c54565b73ffffffffffffffffffffffffffffffffffffffff161480611ddd5750611ddc85611dd7611c54565b611994565b5b80611e225750611deb611c54565b73ffffffffffffffffffffffffffffffffffffffff16611e0a8461090a565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e5b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ec2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ecf85858560016128a7565b611edb60008487611c5c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561215b57600054821461215a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121c685858560016128ad565b5050505050565b6121d5612d19565b6000829050806121e3611d0e565b111580156121f2575060005481105b15612425576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161242357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612307578092505050612457565b5b60011561242257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461241d578092505050612457565b612308565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61253c8282604051806020016040528060008152506128b3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612589611c54565b8786866040518563ffffffff1660e01b81526004016125ab9493929190613db7565b6020604051808303816000875af19250505080156125e757506040513d601f19601f820116820180604052508101906125e49190613e18565b60015b612661573d8060008114612617576040519150601f19603f3d011682016040523d82523d6000602084013e61261c565b606091505b50600081511415612659576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546126c3906136c1565b80601f01602080910402602001604051908101604052809291908181526020018280546126ef906136c1565b801561273c5780601f106127115761010080835404028352916020019161273c565b820191906000526020600020905b81548152906001019060200180831161271f57829003601f168201915b5050505050905090565b6060600082141561278e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128a2565b600082905060005b600082146127c05780806127a99061385d565b915050600a826127b99190613e74565b9150612796565b60008167ffffffffffffffff8111156127dc576127db613038565b5b6040519080825280601f01601f19166020018201604052801561280e5781602001600182028036833780820191505090505b5090505b6000851461289b57600182612827919061378e565b9150600a856128369190613ea5565b60306128429190613b42565b60f81b8183815181106128585761285761382e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128949190613e74565b9450612812565b8093505050505b919050565b50505050565b50505050565b6128c083838360016128c5565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612932576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561296d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61297a60008683876128a7565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b445750612b438773ffffffffffffffffffffffffffffffffffffffff16612540565b5b15612c0a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bb96000888480600101955088612563565b612bef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b4a578260005414612c0557600080fd5b612c76565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c0b575b816000819055505050612c8c60008683876128ad565b5050505050565b828054612c9f906136c1565b90600052602060002090601f016020900481019282612cc15760008555612d08565b82601f10612cda57805160ff1916838001178555612d08565b82800160010185558215612d08579182015b82811115612d07578251825591602001919060010190612cec565b5b509050612d159190612d5c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d75576000816000905550600101612d5d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612dc281612d8d565b8114612dcd57600080fd5b50565b600081359050612ddf81612db9565b92915050565b600060208284031215612dfb57612dfa612d83565b5b6000612e0984828501612dd0565b91505092915050565b60008115159050919050565b612e2781612e12565b82525050565b6000602082019050612e426000830184612e1e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e82578082015181840152602081019050612e67565b83811115612e91576000848401525b50505050565b6000601f19601f8301169050919050565b6000612eb382612e48565b612ebd8185612e53565b9350612ecd818560208601612e64565b612ed681612e97565b840191505092915050565b60006020820190508181036000830152612efb8184612ea8565b905092915050565b6000819050919050565b612f1681612f03565b8114612f2157600080fd5b50565b600081359050612f3381612f0d565b92915050565b600060208284031215612f4f57612f4e612d83565b5b6000612f5d84828501612f24565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f9182612f66565b9050919050565b612fa181612f86565b82525050565b6000602082019050612fbc6000830184612f98565b92915050565b612fcb81612f86565b8114612fd657600080fd5b50565b600081359050612fe881612fc2565b92915050565b6000806040838503121561300557613004612d83565b5b600061301385828601612fd9565b925050602061302485828601612f24565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61307082612e97565b810181811067ffffffffffffffff8211171561308f5761308e613038565b5b80604052505050565b60006130a2612d79565b90506130ae8282613067565b919050565b600067ffffffffffffffff8211156130ce576130cd613038565b5b6130d782612e97565b9050602081019050919050565b82818337600083830152505050565b6000613106613101846130b3565b613098565b90508281526020810184848401111561312257613121613033565b5b61312d8482856130e4565b509392505050565b600082601f83011261314a5761314961302e565b5b813561315a8482602086016130f3565b91505092915050565b61316c81612e12565b811461317757600080fd5b50565b60008135905061318981613163565b92915050565b600080600080600080600060e0888a0312156131ae576131ad612d83565b5b60006131bc8a828b01612f24565b97505060206131cd8a828b01612f24565b965050604088013567ffffffffffffffff8111156131ee576131ed612d88565b5b6131fa8a828b01613135565b955050606061320b8a828b01612f24565b945050608061321c8a828b01612f24565b93505060a061322d8a828b01612f24565b92505060c061323e8a828b0161317a565b91505092959891949750929550565b61325681612f03565b82525050565b6000602082019050613271600083018461324d565b92915050565b6000806000606084860312156132905761328f612d83565b5b600061329e86828701612fd9565b93505060206132af86828701612fd9565b92505060406132c086828701612f24565b9150509250925092565b60006101208201905081810360008301526132e5818c612ea8565b90506132f4602083018b61324d565b613301604083018a61324d565b61330e606083018961324d565b61331b608083018861324d565b61332860a083018761324d565b61333560c083018661324d565b61334260e0830185612e1e565b613350610100830184612e1e565b9a9950505050505050505050565b60006020828403121561337457613373612d83565b5b600082013567ffffffffffffffff81111561339257613391612d88565b5b61339e84828501613135565b91505092915050565b6000602082840312156133bd576133bc612d83565b5b60006133cb84828501612fd9565b91505092915050565b600080fd5b600080fd5b60008083601f8401126133f4576133f361302e565b5b8235905067ffffffffffffffff811115613411576134106133d4565b5b60208301915083602082028301111561342d5761342c6133d9565b5b9250929050565b6000806020838503121561344b5761344a612d83565b5b600083013567ffffffffffffffff81111561346957613468612d88565b5b613475858286016133de565b92509250509250929050565b6000806040838503121561349857613497612d83565b5b60006134a685828601612fd9565b92505060206134b78582860161317a565b9150509250929050565b6000602082840312156134d7576134d6612d83565b5b60006134e58482850161317a565b91505092915050565b600067ffffffffffffffff82111561350957613508613038565b5b61351282612e97565b9050602081019050919050565b600061353261352d846134ee565b613098565b90508281526020810184848401111561354e5761354d613033565b5b6135598482856130e4565b509392505050565b600082601f8301126135765761357561302e565b5b813561358684826020860161351f565b91505092915050565b600080600080608085870312156135a9576135a8612d83565b5b60006135b787828801612fd9565b94505060206135c887828801612fd9565b93505060406135d987828801612f24565b925050606085013567ffffffffffffffff8111156135fa576135f9612d88565b5b61360687828801613561565b91505092959194509250565b6000806040838503121561362957613628612d83565b5b600061363785828601612f24565b925050602061364885828601612fd9565b9150509250929050565b6000806040838503121561366957613668612d83565b5b600061367785828601612fd9565b925050602061368885828601612fd9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136d957607f821691505b602082108114156136ed576136ec613692565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613729602083612e53565b9150613734826136f3565b602082019050919050565b600060208201905081810360008301526137588161371c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061379982612f03565b91506137a483612f03565b9250828210156137b7576137b661375f565b5b828203905092915050565b7f457863656564656420737570706c790000000000000000000000000000000000600082015250565b60006137f8600f83612e53565b9150613803826137c2565b602082019050919050565b60006020820190508181036000830152613827816137eb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061386882612f03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561389b5761389a61375f565b5b600182019050919050565b60006138b182612f03565b91506138bc83612f03565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138f5576138f461375f565b5b828202905092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613936601283612e53565b915061394182613900565b602082019050919050565b6000602082019050818103600083015261396581613929565b9050919050565b7f53616c65206861736e2774207374617274656400000000000000000000000000600082015250565b60006139a2601383612e53565b91506139ad8261396c565b602082019050919050565b600060208201905081810360008301526139d181613995565b9050919050565b7f4e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613a0e601b83612e53565b9150613a19826139d8565b602082019050919050565b60006020820190508181036000830152613a3d81613a01565b9050919050565b7f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b6000613aa0602883612e53565b9150613aab82613a44565b604082019050919050565b60006020820190508181036000830152613acf81613a93565b9050919050565b7f5765277265206174206d617820737570706c7921000000000000000000000000600082015250565b6000613b0c601483612e53565b9150613b1782613ad6565b602082019050919050565b60006020820190508181036000830152613b3b81613aff565b9050919050565b6000613b4d82612f03565b9150613b5883612f03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b8d57613b8c61375f565b5b828201905092915050565b7f4d6178204e465420706572206164647265737320657863656564656400000000600082015250565b6000613bce601c83612e53565b9150613bd982613b98565b602082019050919050565b60006020820190508181036000830152613bfd81613bc1565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000613c3a600b83612e53565b9150613c4582613c04565b602082019050919050565b60006020820190508181036000830152613c6981613c2d565b9050919050565b600081905092915050565b6000613c8682612e48565b613c908185613c70565b9350613ca0818560208601612e64565b80840191505092915050565b6000613cb88285613c7b565b9150613cc48284613c7b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d2c602683612e53565b9150613d3782613cd0565b604082019050919050565b60006020820190508181036000830152613d5b81613d1f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613d8982613d62565b613d938185613d6d565b9350613da3818560208601612e64565b613dac81612e97565b840191505092915050565b6000608082019050613dcc6000830187612f98565b613dd96020830186612f98565b613de6604083018561324d565b8181036060830152613df88184613d7e565b905095945050505050565b600081519050613e1281612db9565b92915050565b600060208284031215613e2e57613e2d612d83565b5b6000613e3c84828501613e03565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e7f82612f03565b9150613e8a83612f03565b925082613e9a57613e99613e45565b5b828204905092915050565b6000613eb082612f03565b9150613ebb83612f03565b925082613ecb57613eca613e45565b5b82820690509291505056fea26469706673582212203f7ec9e05eafc907cf658e8a86fe34e32d140d4acc7d4b7e2054ec2fc77403d464736f6c634300080c0033

Deployed Bytecode Sourcemap

44911:3189:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24442:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29058:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28621:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46699:467;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23691:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45279:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29923:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47897:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46398:265;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;30164:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47606:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27363:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45320:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24811:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43900:103;;;;;;;;;;;;;:::i;:::-;;47274:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43249:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45730:660;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27724:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47436:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29334:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48010:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30420:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45006:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27899:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47706:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29692:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44158:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44961:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45350:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47171:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24442:305;24544:4;24596:25;24581:40;;;:11;:40;;;;:105;;;;24653:33;24638:48;;;:11;:48;;;;24581:105;:158;;;;24703:36;24727:11;24703:23;:36::i;:::-;24581:158;24561:178;;24442:305;;;:::o;27555:100::-;27609:13;27642:5;27635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27555:100;:::o;29058:204::-;29126:7;29151:16;29159:7;29151;:16::i;:::-;29146:64;;29176:34;;;;;;;;;;;;;;29146:64;29230:15;:24;29246:7;29230:24;;;;;;;;;;;;;;;;;;;;;29223:31;;29058:204;;;:::o;28621:371::-;28694:13;28710:24;28726:7;28710:15;:24::i;:::-;28694:40;;28755:5;28749:11;;:2;:11;;;28745:48;;;28769:24;;;;;;;;;;;;;;28745:48;28826:5;28810:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28836:37;28853:5;28860:12;:10;:12::i;:::-;28836:16;:37::i;:::-;28835:38;28810:63;28806:138;;;28897:35;;;;;;;;;;;;;;28806:138;28956:28;28965:2;28969:7;28978:5;28956:8;:28::i;:::-;28683:309;28621:371;;:::o;46699:467::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46900:13:::1;:11;:13::i;:::-;44995:4;46887:26;;;;:::i;:::-;46875:7;:39;;46867:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;46959:7;46939:17;:27;;;;46988:4;46971:14;:21;;;;47015:4;46997:15;:22;;;;;;;;;;;;:::i;:::-;;47040:19;47024:13;:35;;;;47085:15;47064:18;:36;;;;47123:7;47105:15;:25;;;;47152:9;47135:14;;:26;;;;;;;;;;;;;;;;;;46699:467:::0;;;;;;;:::o;23691:303::-;23735:7;23960:15;:13;:15::i;:::-;23945:12;;23929:13;;:28;:46;23922:53;;23691:303;:::o;45279:34::-;;;;;;;;;;;;;:::o;29923:170::-;30057:28;30067:4;30073:2;30077:7;30057:9;:28::i;:::-;29923:170;;;:::o;47897:107::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47974:10:::1;47966:24;;:32;47991:6;47966:32;;;;;;;;;;;;;;;;;;;;;;;47958:41;;;::::0;::::1;;47897:107:::0;:::o;46398:265::-;46448:13;46463:4;46469;46475;46481;46486;46491;46497;46502;46523:15;46539:17;;46557:15;;46573:14;;46588:13;;46602:18;;46622:13;:11;:13::i;:::-;46637:14;;;;;;;;;;;46652:5;46515:143;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46398:265;;;;;;;;;:::o;30164:185::-;30302:39;30319:4;30325:2;30329:7;30302:39;;;;;;;;;;;;:16;:39::i;:::-;30164:185;;;:::o;47606:95::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47685:11:::1;47675:7;:21;;;;;;;;;;;;:::i;:::-;;47606:95:::0;:::o;27363:125::-;27427:7;27454:21;27467:7;27454:12;:21::i;:::-;:26;;;27447:33;;27363:125;;;:::o;45320:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24811:206::-;24875:7;24916:1;24899:19;;:5;:19;;;24895:60;;;24927:28;;;;;;;;;;;;;;24895:60;24981:12;:19;24994:5;24981:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;24973:36;;24966:43;;24811:206;;;:::o;43900:103::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43965:30:::1;43992:1;43965:18;:30::i;:::-;43900:103::o:0;47274:159::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47356:6:::1;47351:78;47372:5;;:12;;47368:1;:16;47351:78;;;47419:4;47397:9;:19;47407:5;;47413:1;47407:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;47397:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;47386:3;;;;;:::i;:::-;;;;47351:78;;;;47274:159:::0;;:::o;43249:87::-;43295:7;43322:6;;;;;;;;;;;43315:13;;43249:87;:::o;45730:660::-;45825:11;45808:14;;:28;;;;:::i;:::-;45795:9;:41;;45787:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;45890:4;45872:22;;:14;;;;;;;;;;;:22;;;45864:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;45945:1;45931:11;:15;45923:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46006:13;;45991:11;:28;;45983:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46092:17;;46077:11;:32;;46069:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46189:18;;46163:21;46173:10;46163:9;:21::i;:::-;46148:11;:36;;;;:::i;:::-;46147:60;;46139:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;46282:5;46253:34;;:25;46267:10;46253:13;:25::i;:::-;:34;;;46245:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46331:11;46310:17;;:32;;;;;;;:::i;:::-;;;;;;;;46347:34;46357:10;46369:11;46347:9;:34::i;:::-;45730:660;:::o;27724:104::-;27780:13;27813:7;27806:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27724:104;:::o;47436:167::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47526:6:::1;47521:78;47542:5;;:12;;47538:1;:16;47521:78;;;47574:9;:19;47584:5;;47590:1;47584:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;47574:19;;;;;;;;;;;;;;;;47567:26;;;;;;;;;;;47556:3;;;;;:::i;:::-;;;;47521:78;;;;47436:167:::0;;:::o;29334:287::-;29445:12;:10;:12::i;:::-;29433:24;;:8;:24;;;29429:54;;;29466:17;;;;;;;;;;;;;;29429:54;29541:8;29496:18;:32;29515:12;:10;:12::i;:::-;29496:32;;;;;;;;;;;;;;;:42;29529:8;29496:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29594:8;29565:48;;29580:12;:10;:12::i;:::-;29565:48;;;29604:8;29565:48;;;;;;:::i;:::-;;;;;;;;29334:287;;:::o;48010:87::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48086:6:::1;48069:14;;:23;;;;;;;;;;;;;;;;;;48010:87:::0;:::o;30420:369::-;30587:28;30597:4;30603:2;30607:7;30587:9;:28::i;:::-;30630:15;:2;:13;;;:15::i;:::-;:76;;;;;30650:56;30681:4;30687:2;30691:7;30700:5;30650:30;:56::i;:::-;30649:57;30630:76;30626:156;;;30730:40;;;;;;;;;;;;;;30626:156;30420:369;;;;:::o;45006:36::-;;;;:::o;27899:318::-;27972:13;28003:16;28011:7;28003;:16::i;:::-;27998:59;;28028:29;;;;;;;;;;;;;;27998:59;28070:21;28094:10;:8;:10::i;:::-;28070:34;;28147:1;28128:7;28122:21;:26;;:87;;;;;;;;;;;;;;;;;28175:7;28184:18;:7;:16;:18::i;:::-;28158:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28122:87;28115:94;;;27899:318;;;:::o;47706:186::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44995:4:::1;47807:9;47791:13;:11;:13::i;:::-;:25;;;;:::i;:::-;47790:41;;47782:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47856:31;47866:9;47877;47856;:31::i;:::-;47706:186:::0;;:::o;29692:164::-;29789:4;29813:18;:25;29832:5;29813:25;;;;;;;;;;;;;;;:35;29839:8;29813:35;;;;;;;;;;;;;;;;;;;;;;;;;29806:42;;29692:164;;;;:::o;44158:201::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44267:1:::1;44247:22;;:8;:22;;;;44239:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44323:28;44342:8;44323:18;:28::i;:::-;44158:201:::0;:::o;44961:38::-;44995:4;44961:38;:::o;45350:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;47171:98::-;47230:4;47248:9;:16;47258:5;47248:16;;;;;;;;;;;;;;;;;;;;;;;;;47241:23;;47171:98;;;:::o;13440:157::-;13525:4;13564:25;13549:40;;;:11;:40;;;;13542:47;;13440:157;;;:::o;31044:174::-;31101:4;31144:7;31125:15;:13;:15::i;:::-;:26;;:53;;;;;31165:13;;31155:7;:23;31125:53;:85;;;;;31183:11;:20;31195:7;31183:20;;;;;;;;;;;:27;;;;;;;;;;;;31182:28;31125:85;31118:92;;31044:174;;;:::o;19958:98::-;20011:7;20038:10;20031:17;;19958:98;:::o;39201:196::-;39343:2;39316:15;:24;39332:7;39316:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39381:7;39377:2;39361:28;;39370:5;39361:28;;;;;;;;;;;;39201:196;;;:::o;45633:92::-;45698:7;45719:1;45712:8;;45633:92;:::o;34144:2130::-;34259:35;34297:21;34310:7;34297:12;:21::i;:::-;34259:59;;34357:4;34335:26;;:13;:18;;;:26;;;34331:67;;34370:28;;;;;;;;;;;;;;34331:67;34411:22;34453:4;34437:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34474:36;34491:4;34497:12;:10;:12::i;:::-;34474:16;:36::i;:::-;34437:73;:126;;;;34551:12;:10;:12::i;:::-;34527:36;;:20;34539:7;34527:11;:20::i;:::-;:36;;;34437:126;34411:153;;34582:17;34577:66;;34608:35;;;;;;;;;;;;;;34577:66;34672:1;34658:16;;:2;:16;;;34654:52;;;34683:23;;;;;;;;;;;;;;34654:52;34719:43;34741:4;34747:2;34751:7;34760:1;34719:21;:43::i;:::-;34827:35;34844:1;34848:7;34857:4;34827:8;:35::i;:::-;35188:1;35158:12;:18;35171:4;35158:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35232:1;35204:12;:16;35217:2;35204:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35250:31;35284:11;:20;35296:7;35284:20;;;;;;;;;;;35250:54;;35335:2;35319:8;:13;;;:18;;;;;;;;;;;;;;;;;;35385:15;35352:8;:23;;;:49;;;;;;;;;;;;;;;;;;35653:19;35685:1;35675:7;:11;35653:33;;35701:31;35735:11;:24;35747:11;35735:24;;;;;;;;;;;35701:58;;35803:1;35778:27;;:8;:13;;;;;;;;;;;;:27;;;35774:384;;;35988:13;;35973:11;:28;35969:174;;36042:4;36026:8;:13;;;:20;;;;;;;;;;;;;;;;;;36095:13;:28;;;36069:8;:23;;;:54;;;;;;;;;;;;;;;;;;35969:174;35774:384;35133:1036;;;36205:7;36201:2;36186:27;;36195:4;36186:27;;;;;;;;;;;;36224:42;36245:4;36251:2;36255:7;36264:1;36224:20;:42::i;:::-;34248:2026;;34144:2130;;;:::o;26192:1109::-;26254:21;;:::i;:::-;26288:12;26303:7;26288:22;;26371:4;26352:15;:13;:15::i;:::-;:23;;:47;;;;;26386:13;;26379:4;:20;26352:47;26348:886;;;26420:31;26454:11;:17;26466:4;26454:17;;;;;;;;;;;26420:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26495:9;:16;;;26490:729;;26566:1;26540:28;;:9;:14;;;:28;;;26536:101;;26604:9;26597:16;;;;;;26536:101;26939:261;26946:4;26939:261;;;26979:6;;;;;;;;27024:11;:17;27036:4;27024:17;;;;;;;;;;;27012:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27098:1;27072:28;;:9;:14;;;:28;;;27068:109;;27140:9;27133:16;;;;;;27068:109;26939:261;;;26490:729;26401:833;26348:886;27262:31;;;;;;;;;;;;;;26192:1109;;;;:::o;44519:191::-;44593:16;44612:6;;;;;;;;;;;44593:25;;44638:8;44629:6;;:17;;;;;;;;;;;;;;;;;;44693:8;44662:40;;44683:8;44662:40;;;;;;;;;;;;44582:128;44519:191;:::o;31226:104::-;31295:27;31305:2;31309:8;31295:27;;;;;;;;;;;;:9;:27::i;:::-;31226:104;;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::o;39889:667::-;40052:4;40089:2;40073:36;;;40110:12;:10;:12::i;:::-;40124:4;40130:7;40139:5;40073:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40069:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40324:1;40307:6;:13;:18;40303:235;;;40353:40;;;;;;;;;;;;;;40303:235;40496:6;40490:13;40481:6;40477:2;40473:15;40466:38;40069:480;40202:45;;;40192:55;;;:6;:55;;;;40185:62;;;39889:667;;;;;;:::o;45529:99::-;45589:13;45616:7;45609:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45529:99;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;41204:159::-;;;;;:::o;42022:158::-;;;;;:::o;31693:163::-;31816:32;31822:2;31826:8;31836:5;31843:4;31816:5;:32::i;:::-;31693:163;;;:::o;32115:1775::-;32254:20;32277:13;;32254:36;;32319:1;32305:16;;:2;:16;;;32301:48;;;32330:19;;;;;;;;;;;;;;32301:48;32376:1;32364:8;:13;32360:44;;;32386:18;;;;;;;;;;;;;;32360:44;32417:61;32447:1;32451:2;32455:12;32469:8;32417:21;:61::i;:::-;32790:8;32755:12;:16;32768:2;32755:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32854:8;32814:12;:16;32827:2;32814:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32913:2;32880:11;:25;32892:12;32880:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32980:15;32930:11;:25;32942:12;32930:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33013:20;33036:12;33013:35;;33063:11;33092:8;33077:12;:23;33063:37;;33121:4;:23;;;;;33129:15;:2;:13;;;:15::i;:::-;33121:23;33117:641;;;33165:314;33221:12;33217:2;33196:38;;33213:1;33196:38;;;;;;;;;;;;33262:69;33301:1;33305:2;33309:14;;;;;;33325:5;33262:30;:69::i;:::-;33257:174;;33367:40;;;;;;;;;;;;;;33257:174;33474:3;33458:12;:19;;33165:314;;33560:12;33543:13;;:29;33539:43;;33574:8;;;33539:43;33117:641;;;33623:120;33679:14;;;;;;33675:2;33654:40;;33671:1;33654:40;;;;;;;;;;;;33738:3;33722:12;:19;;33623:120;;33117:641;33788:12;33772:13;:28;;;;32730:1082;;33822:60;33851:1;33855:2;33859:12;33873:8;33822:20;:60::i;:::-;32243:1647;32115:1775;;;;:::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:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:117::-;5047:1;5044;5037:12;5061:117;5170:1;5167;5160:12;5184:180;5232:77;5229:1;5222:88;5329:4;5326:1;5319:15;5353:4;5350:1;5343:15;5370:281;5453:27;5475:4;5453:27;:::i;:::-;5445:6;5441:40;5583:6;5571:10;5568:22;5547:18;5535:10;5532:34;5529:62;5526:88;;;5594:18;;:::i;:::-;5526:88;5634:10;5630:2;5623:22;5413:238;5370:281;;:::o;5657:129::-;5691:6;5718:20;;:::i;:::-;5708:30;;5747:33;5775:4;5767:6;5747:33;:::i;:::-;5657:129;;;:::o;5792:308::-;5854:4;5944:18;5936:6;5933:30;5930:56;;;5966:18;;:::i;:::-;5930:56;6004:29;6026:6;6004:29;:::i;:::-;5996:37;;6088:4;6082;6078:15;6070:23;;5792:308;;;:::o;6106:154::-;6190:6;6185:3;6180;6167:30;6252:1;6243:6;6238:3;6234:16;6227:27;6106:154;;;:::o;6266:412::-;6344:5;6369:66;6385:49;6427:6;6385:49;:::i;:::-;6369:66;:::i;:::-;6360:75;;6458:6;6451:5;6444:21;6496:4;6489:5;6485:16;6534:3;6525:6;6520:3;6516:16;6513:25;6510:112;;;6541:79;;:::i;:::-;6510:112;6631:41;6665:6;6660:3;6655;6631:41;:::i;:::-;6350:328;6266:412;;;;;:::o;6698:340::-;6754:5;6803:3;6796:4;6788:6;6784:17;6780:27;6770:122;;6811:79;;:::i;:::-;6770:122;6928:6;6915:20;6953:79;7028:3;7020:6;7013:4;7005:6;7001:17;6953:79;:::i;:::-;6944:88;;6760:278;6698:340;;;;:::o;7044:116::-;7114:21;7129:5;7114:21;:::i;:::-;7107:5;7104:32;7094:60;;7150:1;7147;7140:12;7094:60;7044:116;:::o;7166:133::-;7209:5;7247:6;7234:20;7225:29;;7263:30;7287:5;7263:30;:::i;:::-;7166:133;;;;:::o;7305:1377::-;7425:6;7433;7441;7449;7457;7465;7473;7522:3;7510:9;7501:7;7497:23;7493:33;7490:120;;;7529:79;;:::i;:::-;7490:120;7649:1;7674:53;7719:7;7710:6;7699:9;7695:22;7674:53;:::i;:::-;7664:63;;7620:117;7776:2;7802:53;7847:7;7838:6;7827:9;7823:22;7802:53;:::i;:::-;7792:63;;7747:118;7932:2;7921:9;7917:18;7904:32;7963:18;7955:6;7952:30;7949:117;;;7985:79;;:::i;:::-;7949:117;8090:63;8145:7;8136:6;8125:9;8121:22;8090:63;:::i;:::-;8080:73;;7875:288;8202:2;8228:53;8273:7;8264:6;8253:9;8249:22;8228:53;:::i;:::-;8218:63;;8173:118;8330:3;8357:53;8402:7;8393:6;8382:9;8378:22;8357:53;:::i;:::-;8347:63;;8301:119;8459:3;8486:53;8531:7;8522:6;8511:9;8507:22;8486:53;:::i;:::-;8476:63;;8430:119;8588:3;8615:50;8657:7;8648:6;8637:9;8633:22;8615:50;:::i;:::-;8605:60;;8559:116;7305:1377;;;;;;;;;;:::o;8688:118::-;8775:24;8793:5;8775:24;:::i;:::-;8770:3;8763:37;8688:118;;:::o;8812:222::-;8905:4;8943:2;8932:9;8928:18;8920:26;;8956:71;9024:1;9013:9;9009:17;9000:6;8956:71;:::i;:::-;8812:222;;;;:::o;9040:619::-;9117:6;9125;9133;9182:2;9170:9;9161:7;9157:23;9153:32;9150:119;;;9188:79;;:::i;:::-;9150:119;9308:1;9333:53;9378:7;9369:6;9358:9;9354:22;9333:53;:::i;:::-;9323:63;;9279:117;9435:2;9461:53;9506:7;9497:6;9486:9;9482:22;9461:53;:::i;:::-;9451:63;;9406:118;9563:2;9589:53;9634:7;9625:6;9614:9;9610:22;9589:53;:::i;:::-;9579:63;;9534:118;9040:619;;;;;:::o;9665:1175::-;9990:4;10028:3;10017:9;10013:19;10005:27;;10078:9;10072:4;10068:20;10064:1;10053:9;10049:17;10042:47;10106:78;10179:4;10170:6;10106:78;:::i;:::-;10098:86;;10194:72;10262:2;10251:9;10247:18;10238:6;10194:72;:::i;:::-;10276;10344:2;10333:9;10329:18;10320:6;10276:72;:::i;:::-;10358;10426:2;10415:9;10411:18;10402:6;10358:72;:::i;:::-;10440:73;10508:3;10497:9;10493:19;10484:6;10440:73;:::i;:::-;10523;10591:3;10580:9;10576:19;10567:6;10523:73;:::i;:::-;10606;10674:3;10663:9;10659:19;10650:6;10606:73;:::i;:::-;10689:67;10751:3;10740:9;10736:19;10727:6;10689:67;:::i;:::-;10766;10828:3;10817:9;10813:19;10804:6;10766:67;:::i;:::-;9665:1175;;;;;;;;;;;;:::o;10846:509::-;10915:6;10964:2;10952:9;10943:7;10939:23;10935:32;10932:119;;;10970:79;;:::i;:::-;10932:119;11118:1;11107:9;11103:17;11090:31;11148:18;11140:6;11137:30;11134:117;;;11170:79;;:::i;:::-;11134:117;11275:63;11330:7;11321:6;11310:9;11306:22;11275:63;:::i;:::-;11265:73;;11061:287;10846:509;;;;:::o;11361:329::-;11420:6;11469:2;11457:9;11448:7;11444:23;11440:32;11437:119;;;11475:79;;:::i;:::-;11437:119;11595:1;11620:53;11665:7;11656:6;11645:9;11641:22;11620:53;:::i;:::-;11610:63;;11566:117;11361:329;;;;:::o;11696:117::-;11805:1;11802;11795:12;11819:117;11928:1;11925;11918:12;11959:568;12032:8;12042:6;12092:3;12085:4;12077:6;12073:17;12069:27;12059:122;;12100:79;;:::i;:::-;12059:122;12213:6;12200:20;12190:30;;12243:18;12235:6;12232:30;12229:117;;;12265:79;;:::i;:::-;12229:117;12379:4;12371:6;12367:17;12355:29;;12433:3;12425:4;12417:6;12413:17;12403:8;12399:32;12396:41;12393:128;;;12440:79;;:::i;:::-;12393:128;11959:568;;;;;:::o;12533:559::-;12619:6;12627;12676:2;12664:9;12655:7;12651:23;12647:32;12644:119;;;12682:79;;:::i;:::-;12644:119;12830:1;12819:9;12815:17;12802:31;12860:18;12852:6;12849:30;12846:117;;;12882:79;;:::i;:::-;12846:117;12995:80;13067:7;13058:6;13047:9;13043:22;12995:80;:::i;:::-;12977:98;;;;12773:312;12533:559;;;;;:::o;13098:468::-;13163:6;13171;13220:2;13208:9;13199:7;13195:23;13191:32;13188:119;;;13226:79;;:::i;:::-;13188:119;13346:1;13371:53;13416:7;13407:6;13396:9;13392:22;13371:53;:::i;:::-;13361:63;;13317:117;13473:2;13499:50;13541:7;13532:6;13521:9;13517:22;13499:50;:::i;:::-;13489:60;;13444:115;13098:468;;;;;:::o;13572:323::-;13628:6;13677:2;13665:9;13656:7;13652:23;13648:32;13645:119;;;13683:79;;:::i;:::-;13645:119;13803:1;13828:50;13870:7;13861:6;13850:9;13846:22;13828:50;:::i;:::-;13818:60;;13774:114;13572:323;;;;:::o;13901:307::-;13962:4;14052:18;14044:6;14041:30;14038:56;;;14074:18;;:::i;:::-;14038:56;14112:29;14134:6;14112:29;:::i;:::-;14104:37;;14196:4;14190;14186:15;14178:23;;13901:307;;;:::o;14214:410::-;14291:5;14316:65;14332:48;14373:6;14332:48;:::i;:::-;14316:65;:::i;:::-;14307:74;;14404:6;14397:5;14390:21;14442:4;14435:5;14431:16;14480:3;14471:6;14466:3;14462:16;14459:25;14456:112;;;14487:79;;:::i;:::-;14456:112;14577:41;14611:6;14606:3;14601;14577:41;:::i;:::-;14297:327;14214:410;;;;;:::o;14643:338::-;14698:5;14747:3;14740:4;14732:6;14728:17;14724:27;14714:122;;14755:79;;:::i;:::-;14714:122;14872:6;14859:20;14897:78;14971:3;14963:6;14956:4;14948:6;14944:17;14897:78;:::i;:::-;14888:87;;14704:277;14643:338;;;;:::o;14987:943::-;15082:6;15090;15098;15106;15155:3;15143:9;15134:7;15130:23;15126:33;15123:120;;;15162:79;;:::i;:::-;15123:120;15282:1;15307:53;15352:7;15343:6;15332:9;15328:22;15307:53;:::i;:::-;15297:63;;15253:117;15409:2;15435:53;15480:7;15471:6;15460:9;15456:22;15435:53;:::i;:::-;15425:63;;15380:118;15537:2;15563:53;15608:7;15599:6;15588:9;15584:22;15563:53;:::i;:::-;15553:63;;15508:118;15693:2;15682:9;15678:18;15665:32;15724:18;15716:6;15713:30;15710:117;;;15746:79;;:::i;:::-;15710:117;15851:62;15905:7;15896:6;15885:9;15881:22;15851:62;:::i;:::-;15841:72;;15636:287;14987:943;;;;;;;:::o;15936:474::-;16004:6;16012;16061:2;16049:9;16040:7;16036:23;16032:32;16029:119;;;16067:79;;:::i;:::-;16029:119;16187:1;16212:53;16257:7;16248:6;16237:9;16233:22;16212:53;:::i;:::-;16202:63;;16158:117;16314:2;16340:53;16385:7;16376:6;16365:9;16361:22;16340:53;:::i;:::-;16330:63;;16285:118;15936:474;;;;;:::o;16416:::-;16484:6;16492;16541:2;16529:9;16520:7;16516:23;16512:32;16509:119;;;16547:79;;:::i;:::-;16509:119;16667:1;16692:53;16737:7;16728:6;16717:9;16713:22;16692:53;:::i;:::-;16682:63;;16638:117;16794:2;16820:53;16865:7;16856:6;16845:9;16841:22;16820:53;:::i;:::-;16810:63;;16765:118;16416:474;;;;;:::o;16896:180::-;16944:77;16941:1;16934:88;17041:4;17038:1;17031:15;17065:4;17062:1;17055:15;17082:320;17126:6;17163:1;17157:4;17153:12;17143:22;;17210:1;17204:4;17200:12;17231:18;17221:81;;17287:4;17279:6;17275:17;17265:27;;17221:81;17349:2;17341:6;17338:14;17318:18;17315:38;17312:84;;;17368:18;;:::i;:::-;17312:84;17133:269;17082:320;;;:::o;17408:182::-;17548:34;17544:1;17536:6;17532:14;17525:58;17408:182;:::o;17596:366::-;17738:3;17759:67;17823:2;17818:3;17759:67;:::i;:::-;17752:74;;17835:93;17924:3;17835:93;:::i;:::-;17953:2;17948:3;17944:12;17937:19;;17596:366;;;:::o;17968:419::-;18134:4;18172:2;18161:9;18157:18;18149:26;;18221:9;18215:4;18211:20;18207:1;18196:9;18192:17;18185:47;18249:131;18375:4;18249:131;:::i;:::-;18241:139;;17968:419;;;:::o;18393:180::-;18441:77;18438:1;18431:88;18538:4;18535:1;18528:15;18562:4;18559:1;18552:15;18579:191;18619:4;18639:20;18657:1;18639:20;:::i;:::-;18634:25;;18673:20;18691:1;18673:20;:::i;:::-;18668:25;;18712:1;18709;18706:8;18703:34;;;18717:18;;:::i;:::-;18703:34;18762:1;18759;18755:9;18747:17;;18579:191;;;;:::o;18776:165::-;18916:17;18912:1;18904:6;18900:14;18893:41;18776:165;:::o;18947:366::-;19089:3;19110:67;19174:2;19169:3;19110:67;:::i;:::-;19103:74;;19186:93;19275:3;19186:93;:::i;:::-;19304:2;19299:3;19295:12;19288:19;;18947:366;;;:::o;19319:419::-;19485:4;19523:2;19512:9;19508:18;19500:26;;19572:9;19566:4;19562:20;19558:1;19547:9;19543:17;19536:47;19600:131;19726:4;19600:131;:::i;:::-;19592:139;;19319:419;;;:::o;19744:180::-;19792:77;19789:1;19782:88;19889:4;19886:1;19879:15;19913:4;19910:1;19903:15;19930:233;19969:3;19992:24;20010:5;19992:24;:::i;:::-;19983:33;;20038:66;20031:5;20028:77;20025:103;;;20108:18;;:::i;:::-;20025:103;20155:1;20148:5;20144:13;20137:20;;19930:233;;;:::o;20169:348::-;20209:7;20232:20;20250:1;20232:20;:::i;:::-;20227:25;;20266:20;20284:1;20266:20;:::i;:::-;20261:25;;20454:1;20386:66;20382:74;20379:1;20376:81;20371:1;20364:9;20357:17;20353:105;20350:131;;;20461:18;;:::i;:::-;20350:131;20509:1;20506;20502:9;20491:20;;20169:348;;;;:::o;20523:168::-;20663:20;20659:1;20651:6;20647:14;20640:44;20523:168;:::o;20697:366::-;20839:3;20860:67;20924:2;20919:3;20860:67;:::i;:::-;20853:74;;20936:93;21025:3;20936:93;:::i;:::-;21054:2;21049:3;21045:12;21038:19;;20697:366;;;:::o;21069:419::-;21235:4;21273:2;21262:9;21258:18;21250:26;;21322:9;21316:4;21312:20;21308:1;21297:9;21293:17;21286:47;21350:131;21476:4;21350:131;:::i;:::-;21342:139;;21069:419;;;:::o;21494:169::-;21634:21;21630:1;21622:6;21618:14;21611:45;21494:169;:::o;21669:366::-;21811:3;21832:67;21896:2;21891:3;21832:67;:::i;:::-;21825:74;;21908:93;21997:3;21908:93;:::i;:::-;22026:2;22021:3;22017:12;22010:19;;21669:366;;;:::o;22041:419::-;22207:4;22245:2;22234:9;22230:18;22222:26;;22294:9;22288:4;22284:20;22280:1;22269:9;22265:17;22258:47;22322:131;22448:4;22322:131;:::i;:::-;22314:139;;22041:419;;;:::o;22466:177::-;22606:29;22602:1;22594:6;22590:14;22583:53;22466:177;:::o;22649:366::-;22791:3;22812:67;22876:2;22871:3;22812:67;:::i;:::-;22805:74;;22888:93;22977:3;22888:93;:::i;:::-;23006:2;23001:3;22997:12;22990:19;;22649:366;;;:::o;23021:419::-;23187:4;23225:2;23214:9;23210:18;23202:26;;23274:9;23268:4;23264:20;23260:1;23249:9;23245:17;23238:47;23302:131;23428:4;23302:131;:::i;:::-;23294:139;;23021:419;;;:::o;23446:227::-;23586:34;23582:1;23574:6;23570:14;23563:58;23655:10;23650:2;23642:6;23638:15;23631:35;23446:227;:::o;23679:366::-;23821:3;23842:67;23906:2;23901:3;23842:67;:::i;:::-;23835:74;;23918:93;24007:3;23918:93;:::i;:::-;24036:2;24031:3;24027:12;24020:19;;23679:366;;;:::o;24051:419::-;24217:4;24255:2;24244:9;24240:18;24232:26;;24304:9;24298:4;24294:20;24290:1;24279:9;24275:17;24268:47;24332:131;24458:4;24332:131;:::i;:::-;24324:139;;24051:419;;;:::o;24476:170::-;24616:22;24612:1;24604:6;24600:14;24593:46;24476:170;:::o;24652:366::-;24794:3;24815:67;24879:2;24874:3;24815:67;:::i;:::-;24808:74;;24891:93;24980:3;24891:93;:::i;:::-;25009:2;25004:3;25000:12;24993:19;;24652:366;;;:::o;25024:419::-;25190:4;25228:2;25217:9;25213:18;25205:26;;25277:9;25271:4;25267:20;25263:1;25252:9;25248:17;25241:47;25305:131;25431:4;25305:131;:::i;:::-;25297:139;;25024:419;;;:::o;25449:305::-;25489:3;25508:20;25526:1;25508:20;:::i;:::-;25503:25;;25542:20;25560:1;25542:20;:::i;:::-;25537:25;;25696:1;25628:66;25624:74;25621:1;25618:81;25615:107;;;25702:18;;:::i;:::-;25615:107;25746:1;25743;25739:9;25732:16;;25449:305;;;;:::o;25760:178::-;25900:30;25896:1;25888:6;25884:14;25877:54;25760:178;:::o;25944:366::-;26086:3;26107:67;26171:2;26166:3;26107:67;:::i;:::-;26100:74;;26183:93;26272:3;26183:93;:::i;:::-;26301:2;26296:3;26292:12;26285:19;;25944:366;;;:::o;26316:419::-;26482:4;26520:2;26509:9;26505:18;26497:26;;26569:9;26563:4;26559:20;26555:1;26544:9;26540:17;26533:47;26597:131;26723:4;26597:131;:::i;:::-;26589:139;;26316:419;;;:::o;26741:161::-;26881:13;26877:1;26869:6;26865:14;26858:37;26741:161;:::o;26908:366::-;27050:3;27071:67;27135:2;27130:3;27071:67;:::i;:::-;27064:74;;27147:93;27236:3;27147:93;:::i;:::-;27265:2;27260:3;27256:12;27249:19;;26908:366;;;:::o;27280:419::-;27446:4;27484:2;27473:9;27469:18;27461:26;;27533:9;27527:4;27523:20;27519:1;27508:9;27504:17;27497:47;27561:131;27687:4;27561:131;:::i;:::-;27553:139;;27280:419;;;:::o;27705:148::-;27807:11;27844:3;27829:18;;27705:148;;;;:::o;27859:377::-;27965:3;27993:39;28026:5;27993:39;:::i;:::-;28048:89;28130:6;28125:3;28048:89;:::i;:::-;28041:96;;28146:52;28191:6;28186:3;28179:4;28172:5;28168:16;28146:52;:::i;:::-;28223:6;28218:3;28214:16;28207:23;;27969:267;27859:377;;;;:::o;28242:435::-;28422:3;28444:95;28535:3;28526:6;28444:95;:::i;:::-;28437:102;;28556:95;28647:3;28638:6;28556:95;:::i;:::-;28549:102;;28668:3;28661:10;;28242:435;;;;;:::o;28683:225::-;28823:34;28819:1;28811:6;28807:14;28800:58;28892:8;28887:2;28879:6;28875:15;28868:33;28683:225;:::o;28914:366::-;29056:3;29077:67;29141:2;29136:3;29077:67;:::i;:::-;29070:74;;29153:93;29242:3;29153:93;:::i;:::-;29271:2;29266:3;29262:12;29255:19;;28914:366;;;:::o;29286:419::-;29452:4;29490:2;29479:9;29475:18;29467:26;;29539:9;29533:4;29529:20;29525:1;29514:9;29510:17;29503:47;29567:131;29693:4;29567:131;:::i;:::-;29559:139;;29286:419;;;:::o;29711:98::-;29762:6;29796:5;29790:12;29780:22;;29711:98;;;:::o;29815:168::-;29898:11;29932:6;29927:3;29920:19;29972:4;29967:3;29963:14;29948:29;;29815:168;;;;:::o;29989:360::-;30075:3;30103:38;30135:5;30103:38;:::i;:::-;30157:70;30220:6;30215:3;30157:70;:::i;:::-;30150:77;;30236:52;30281:6;30276:3;30269:4;30262:5;30258:16;30236:52;:::i;:::-;30313:29;30335:6;30313:29;:::i;:::-;30308:3;30304:39;30297:46;;30079:270;29989:360;;;;:::o;30355:640::-;30550:4;30588:3;30577:9;30573:19;30565:27;;30602:71;30670:1;30659:9;30655:17;30646:6;30602:71;:::i;:::-;30683:72;30751:2;30740:9;30736:18;30727:6;30683:72;:::i;:::-;30765;30833:2;30822:9;30818:18;30809:6;30765:72;:::i;:::-;30884:9;30878:4;30874:20;30869:2;30858:9;30854:18;30847:48;30912:76;30983:4;30974:6;30912:76;:::i;:::-;30904:84;;30355:640;;;;;;;:::o;31001:141::-;31057:5;31088:6;31082:13;31073:22;;31104:32;31130:5;31104:32;:::i;:::-;31001:141;;;;:::o;31148:349::-;31217:6;31266:2;31254:9;31245:7;31241:23;31237:32;31234:119;;;31272:79;;:::i;:::-;31234:119;31392:1;31417:63;31472:7;31463:6;31452:9;31448:22;31417:63;:::i;:::-;31407:73;;31363:127;31148:349;;;;:::o;31503:180::-;31551:77;31548:1;31541:88;31648:4;31645:1;31638:15;31672:4;31669:1;31662:15;31689:185;31729:1;31746:20;31764:1;31746:20;:::i;:::-;31741:25;;31780:20;31798:1;31780:20;:::i;:::-;31775:25;;31819:1;31809:35;;31824:18;;:::i;:::-;31809:35;31866:1;31863;31859:9;31854:14;;31689:185;;;;:::o;31880:176::-;31912:1;31929:20;31947:1;31929:20;:::i;:::-;31924:25;;31963:20;31981:1;31963:20;:::i;:::-;31958:25;;32002:1;31992:35;;32007:18;;:::i;:::-;31992:35;32048:1;32045;32041:9;32036:14;;31880:176;;;;:::o

Swarm Source

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