ETH Price: $3,064.74 (-6.91%)
Gas: 11 Gwei

Token

Coalition Crew 2.0 (CC2)
 

Overview

Max Total Supply

3,974 CC2

Holders

1,200

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

There are 3970 NFTs avail in the Coalition Crew 2.0 collection. This is the NFT project Game Changers, Entrepreneurs, and those wanting to make a real difference.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CoalitionCrew2

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-25
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: crew.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.11;



contract CoalitionCrew2 is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";

    //Public Sale variables

  uint256 public cost = 0.09 ether;
  uint256 public maxSupply = 3974;
  uint256 public maxMintAmount = 5;

  bool public paused = false;
  bool public addWhitelisted = true;

  mapping(address => uint256) public addressMintedBalance;

    // white list variables
    uint256 public nftPerAddressLimit = 5;
    uint256 public itemPricePresale = 0.09 ether;
    bool public isWhitelistActive;
    uint256 public whitelistMaxMint = 5;
    mapping(address => bool) public onWhitelist;
    mapping(address => uint256) public whitelistClaimedBy;


constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

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

    ////////////////////
    //   Whitelist    //
    ////////////////////

    function addToWhitelist(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++)
            onWhitelist[addresses[i]] = true;
    }

    function removeFromWhitelist(address[] calldata addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++)
            onWhitelist[addresses[i]] = false;
    }

    function presale(uint256 _mintAmount)
        external
        payable
    {
         require(_mintAmount > 0, "Mint atleast 1 CoalitionCrew2.0");
         uint256 supply = totalSupply();
        
         require(supply <= 3000, "Presale is sold out.");

        require(supply + _mintAmount <= maxSupply, "Max NFT limit exceeded");
        require(isWhitelistActive, "Whitelist is not active");
        require(onWhitelist[msg.sender], "You are not in whitelist");
        require(
            whitelistClaimedBy[msg.sender] + _mintAmount <= whitelistMaxMint,
            "Purchase exceeds max allowed"
        );
        require(
            msg.value >= _mintAmount * itemPricePresale,
            "Try to send more ETH"
        );

        whitelistClaimedBy[msg.sender] += _mintAmount;

        for (uint256 i = 1; i <= _mintAmount; i++)
            _safeMint(msg.sender, supply + i);
    
    }

    ///////////////////////////////////
    //       AIRDROP CODE STARTS     //
    ///////////////////////////////////

    // Send NFTs to a single address
    function giftNftToAddress(address _sendNftTo, uint256 _howMany)
        external
        onlyOwner
    {
        require(
            totalSupply() + _howMany <= maxSupply,
            "max NFT limit exceeded"
        );

        _safeMint(_sendNftTo, _howMany);
    }

    ////////////////////
    //     Public    //
    ////////////////////

  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
    require(msg.value >= cost * _mintAmount, "insufficient funds");
    
    for (uint256 i = 1; i <= _mintAmount; i++)
       _safeMint(msg.sender, supply + i);

  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

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

    ////////////////////
    //     OWNER      //
    ////////////////////  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

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

    // set limit of Whitelist
    function setwhitelistMaxMint(uint256 _whitelistMaxMint) external onlyOwner {
        whitelistMaxMint = _whitelistMaxMint;
    }

    // Change presale price in case of ETH price changes too much
    function setPricePresale(uint256 _itemPricePresale) external onlyOwner {
        itemPricePresale = _itemPricePresale;
    }

    function setisWhitelistActive(bool _isWhitelistActive) external onlyOwner {
        isWhitelistActive = _isWhitelistActive;
    }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setaddWhitelisted(bool _state) public onlyOwner {
    addWhitelisted = _state;
  }
  
 
  function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"addWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sendNftTo","type":"address"},{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"giftNftToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itemPricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"onWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhitelist","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_itemPricePresale","type":"uint256"}],"name":"setPricePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setaddWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isWhitelistActive","type":"bool"}],"name":"setisWhitelistActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistMaxMint","type":"uint256"}],"name":"setwhitelistMaxMint","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620002fb565b5067013fbe85edc90000600d55610f86600e556005600f556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550600560125567013fbe85edc900006013556005601555348015620000c257600080fd5b5060405162005c7438038062005c748339818101604052810190620000e8919062000548565b8282816000908051906020019062000102929190620002fb565b5080600190805190602001906200011b929190620002fb565b5050506200013e620001326200015860201b60201c565b6200016060201b60201c565b6200014f816200022660201b60201c565b505050620006e9565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002366200015860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200025c620002d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ac9062000662565b60405180910390fd5b80600b9080519060200190620002cd929190620002fb565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200030990620006b3565b90600052602060002090601f0160209004810192826200032d576000855562000379565b82601f106200034857805160ff191683800117855562000379565b8280016001018555821562000379579182015b82811115620003785782518255916020019190600101906200035b565b5b5090506200038891906200038c565b5090565b5b80821115620003a75760008160009055506001016200038d565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200041482620003c9565b810181811067ffffffffffffffff82111715620004365762000435620003da565b5b80604052505050565b60006200044b620003ab565b905062000459828262000409565b919050565b600067ffffffffffffffff8211156200047c576200047b620003da565b5b6200048782620003c9565b9050602081019050919050565b60005b83811015620004b457808201518184015260208101905062000497565b83811115620004c4576000848401525b50505050565b6000620004e1620004db846200045e565b6200043f565b9050828152602081018484840111156200050057620004ff620003c4565b5b6200050d84828562000494565b509392505050565b600082601f8301126200052d576200052c620003bf565b5b81516200053f848260208601620004ca565b91505092915050565b600080600060608486031215620005645762000563620003b5565b5b600084015167ffffffffffffffff811115620005855762000584620003ba565b5b620005938682870162000515565b935050602084015167ffffffffffffffff811115620005b757620005b6620003ba565b5b620005c58682870162000515565b925050604084015167ffffffffffffffff811115620005e957620005e8620003ba565b5b620005f78682870162000515565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200064a60208362000601565b9150620006578262000612565b602082019050919050565b600060208201905081810360008301526200067d816200063b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006cc57607f821691505b60208210811415620006e357620006e262000684565b5b50919050565b61557b80620006f96000396000f3fe6080604052600436106102c95760003560e01c80635c975abb11610175578063a90e09e2116100dc578063d0eb26b011610095578063e6ab14341161006f578063e6ab143414610ae8578063e985e9c514610b04578063efc8e9d614610b41578063f2fde38b14610b6a576102c9565b8063d0eb26b014610a6b578063d5abeb0114610a94578063da3ef23f14610abf576102c9565b8063a90e09e214610959578063b4cdf92714610984578063b88d4fde146109af578063ba7d2c76146109d8578063c668286214610a03578063c87b56dd14610a2e576102c9565b80637f00c7a61161012e5780637f00c7a61461086c5780637f649783146108955780638da5cb5b146108be57806395d89b41146108e9578063a0712d6814610914578063a22cb46514610930576102c9565b80635c975abb1461075a5780636352211e146107855780636c0360eb146107c257806370a08231146107ed578063715018a61461082a578063722e141d14610841576102c9565b80632f745c5911610234578063438b6300116101ed578063524513d6116101c7578063524513d6146106b4578063548db174146106df57806355f804b3146107085780635a94133c14610731576102c9565b8063438b63001461061157806344a0d68a1461064e5780634f6ccce714610677576102c9565b80632f745c5914610512578063340ee37c1461054f578063381b5a5d1461058c5780633ccfd60b146105b557806341418b6a146105bf57806342842e0e146105e8576102c9565b806318160ddd1161028657806318160ddd146103f057806318cae2691461041b5780631d60865914610458578063239c70ae1461049557806323b872dd146104c05780632f138e8d146104e9576102c9565b806301ffc9a7146102ce57806302329a291461030b57806306fdde0314610334578063081812fc1461035f578063095ea7b31461039c57806313faede6146103c5575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613992565b610b93565b60405161030291906139da565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190613a21565b610c0d565b005b34801561034057600080fd5b50610349610ca6565b6040516103569190613ae7565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190613b3f565b610d38565b6040516103939190613bad565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190613bf4565b610dbd565b005b3480156103d157600080fd5b506103da610ed5565b6040516103e79190613c43565b60405180910390f35b3480156103fc57600080fd5b50610405610edb565b6040516104129190613c43565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190613c5e565b610ee8565b60405161044f9190613c43565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190613c5e565b610f00565b60405161048c91906139da565b60405180910390f35b3480156104a157600080fd5b506104aa610f20565b6040516104b79190613c43565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613c8b565b610f26565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613a21565b610f86565b005b34801561051e57600080fd5b5061053960048036038101906105349190613bf4565b61101f565b6040516105469190613c43565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190613c5e565b6110c4565b6040516105839190613c43565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190613a21565b6110dc565b005b6105bd611175565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190613b3f565b61126a565b005b3480156105f457600080fd5b5061060f600480360381019061060a9190613c8b565b6112f0565b005b34801561061d57600080fd5b5061063860048036038101906106339190613c5e565b611310565b6040516106459190613d9c565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190613b3f565b6113be565b005b34801561068357600080fd5b5061069e60048036038101906106999190613b3f565b611444565b6040516106ab9190613c43565b60405180910390f35b3480156106c057600080fd5b506106c96114b5565b6040516106d691906139da565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613e23565b6114c8565b005b34801561071457600080fd5b5061072f600480360381019061072a9190613fa0565b6115e9565b005b34801561073d57600080fd5b5061075860048036038101906107539190613b3f565b61167f565b005b34801561076657600080fd5b5061076f611705565b60405161077c91906139da565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190613b3f565b611718565b6040516107b99190613bad565b60405180910390f35b3480156107ce57600080fd5b506107d76117ca565b6040516107e49190613ae7565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190613c5e565b611858565b6040516108219190613c43565b60405180910390f35b34801561083657600080fd5b5061083f611910565b005b34801561084d57600080fd5b50610856611998565b6040516108639190613c43565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e9190613b3f565b61199e565b005b3480156108a157600080fd5b506108bc60048036038101906108b79190613e23565b611a24565b005b3480156108ca57600080fd5b506108d3611b45565b6040516108e09190613bad565b60405180910390f35b3480156108f557600080fd5b506108fe611b6f565b60405161090b9190613ae7565b60405180910390f35b61092e60048036038101906109299190613b3f565b611c01565b005b34801561093c57600080fd5b5061095760048036038101906109529190613fe9565b611dc0565b005b34801561096557600080fd5b5061096e611dd6565b60405161097b91906139da565b60405180910390f35b34801561099057600080fd5b50610999611de9565b6040516109a69190613c43565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d191906140ca565b611def565b005b3480156109e457600080fd5b506109ed611e51565b6040516109fa9190613c43565b60405180910390f35b348015610a0f57600080fd5b50610a18611e57565b604051610a259190613ae7565b60405180910390f35b348015610a3a57600080fd5b50610a556004803603810190610a509190613b3f565b611ee5565b604051610a629190613ae7565b60405180910390f35b348015610a7757600080fd5b50610a926004803603810190610a8d9190613b3f565b611f8f565b005b348015610aa057600080fd5b50610aa9612015565b604051610ab69190613c43565b60405180910390f35b348015610acb57600080fd5b50610ae66004803603810190610ae19190613fa0565b61201b565b005b610b026004803603810190610afd9190613b3f565b6120b1565b005b348015610b1057600080fd5b50610b2b6004803603810190610b26919061414d565b6123e0565b604051610b3891906139da565b60405180910390f35b348015610b4d57600080fd5b50610b686004803603810190610b639190613bf4565b612474565b005b348015610b7657600080fd5b50610b916004803603810190610b8c9190613c5e565b612555565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c065750610c058261264d565b5b9050919050565b610c1561272f565b73ffffffffffffffffffffffffffffffffffffffff16610c33611b45565b73ffffffffffffffffffffffffffffffffffffffff1614610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c80906141d9565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610cb590614228565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce190614228565b8015610d2e5780601f10610d0357610100808354040283529160200191610d2e565b820191906000526020600020905b815481529060010190602001808311610d1157829003601f168201915b5050505050905090565b6000610d4382612737565b610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d79906142cc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dc882611718565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e309061435e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e5861272f565b73ffffffffffffffffffffffffffffffffffffffff161480610e875750610e8681610e8161272f565b6123e0565b5b610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd906143f0565b60405180910390fd5b610ed083836127a3565b505050565b600d5481565b6000600880549050905090565b60116020528060005260406000206000915090505481565b60166020528060005260406000206000915054906101000a900460ff1681565b600f5481565b610f37610f3161272f565b8261285c565b610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90614482565b60405180910390fd5b610f8183838361293a565b505050565b610f8e61272f565b73ffffffffffffffffffffffffffffffffffffffff16610fac611b45565b73ffffffffffffffffffffffffffffffffffffffff1614611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff9906141d9565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b600061102a83611858565b821061106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290614514565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60176020528060005260406000206000915090505481565b6110e461272f565b73ffffffffffffffffffffffffffffffffffffffff16611102611b45565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f906141d9565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b61117d61272f565b73ffffffffffffffffffffffffffffffffffffffff1661119b611b45565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e8906141d9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161121790614565565b60006040518083038185875af1925050503d8060008114611254576040519150601f19603f3d011682016040523d82523d6000602084013e611259565b606091505b505090508061126757600080fd5b50565b61127261272f565b73ffffffffffffffffffffffffffffffffffffffff16611290611b45565b73ffffffffffffffffffffffffffffffffffffffff16146112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd906141d9565b60405180910390fd5b8060158190555050565b61130b83838360405180602001604052806000815250611def565b505050565b6060600061131d83611858565b905060008167ffffffffffffffff81111561133b5761133a613e75565b5b6040519080825280602002602001820160405280156113695781602001602082028036833780820191505090505b50905060005b828110156113b357611381858261101f565b8282815181106113945761139361457a565b5b60200260200101818152505080806113ab906145d8565b91505061136f565b508092505050919050565b6113c661272f565b73ffffffffffffffffffffffffffffffffffffffff166113e4611b45565b73ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611431906141d9565b60405180910390fd5b80600d8190555050565b600061144e610edb565b821061148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690614693565b60405180910390fd5b600882815481106114a3576114a261457a565b5b90600052602060002001549050919050565b601460009054906101000a900460ff1681565b6114d061272f565b73ffffffffffffffffffffffffffffffffffffffff166114ee611b45565b73ffffffffffffffffffffffffffffffffffffffff1614611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b906141d9565b60405180910390fd5b60005b828290508110156115e45760006016600085858581811061156b5761156a61457a565b5b90506020020160208101906115809190613c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806115dc906145d8565b915050611547565b505050565b6115f161272f565b73ffffffffffffffffffffffffffffffffffffffff1661160f611b45565b73ffffffffffffffffffffffffffffffffffffffff1614611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c906141d9565b60405180910390fd5b80600b908051906020019061167b929190613883565b5050565b61168761272f565b73ffffffffffffffffffffffffffffffffffffffff166116a5611b45565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f2906141d9565b60405180910390fd5b8060138190555050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890614725565b60405180910390fd5b80915050919050565b600b80546117d790614228565b80601f016020809104026020016040519081016040528092919081815260200182805461180390614228565b80156118505780601f1061182557610100808354040283529160200191611850565b820191906000526020600020905b81548152906001019060200180831161183357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c0906147b7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61191861272f565b73ffffffffffffffffffffffffffffffffffffffff16611936611b45565b73ffffffffffffffffffffffffffffffffffffffff161461198c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611983906141d9565b60405180910390fd5b6119966000612b96565b565b60155481565b6119a661272f565b73ffffffffffffffffffffffffffffffffffffffff166119c4611b45565b73ffffffffffffffffffffffffffffffffffffffff1614611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a11906141d9565b60405180910390fd5b80600f8190555050565b611a2c61272f565b73ffffffffffffffffffffffffffffffffffffffff16611a4a611b45565b73ffffffffffffffffffffffffffffffffffffffff1614611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a97906141d9565b60405180910390fd5b60005b82829050811015611b4057600160166000858585818110611ac757611ac661457a565b5b9050602002016020810190611adc9190613c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b38906145d8565b915050611aa3565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611b7e90614228565b80601f0160208091040260200160405190810160405280929190818152602001828054611baa90614228565b8015611bf75780601f10611bcc57610100808354040283529160200191611bf7565b820191906000526020600020905b815481529060010190602001808311611bda57829003601f168201915b5050505050905090565b601060009054906101000a900460ff1615611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890614823565b60405180910390fd5b6000611c5b610edb565b905060008211611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c979061488f565b60405180910390fd5b600f54821115611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90614921565b60405180910390fd5b600e548282611cf49190614941565b1115611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c906149e3565b60405180910390fd5b81600d54611d439190614a03565b341015611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c90614aa9565b60405180910390fd5b6000600190505b828111611dbb57611da8338284611da39190614941565b612c5c565b8080611db3906145d8565b915050611d8c565b505050565b611dd2611dcb61272f565b8383612c7a565b5050565b601060019054906101000a900460ff1681565b60135481565b611e00611dfa61272f565b8361285c565b611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3690614482565b60405180910390fd5b611e4b84848484612de7565b50505050565b60125481565b600c8054611e6490614228565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9090614228565b8015611edd5780601f10611eb257610100808354040283529160200191611edd565b820191906000526020600020905b815481529060010190602001808311611ec057829003601f168201915b505050505081565b6060611ef082612737565b611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2690614b3b565b60405180910390fd5b6000611f39612e43565b90506000815111611f595760405180602001604052806000815250611f87565b80611f6384612ed5565b600c604051602001611f7793929190614c2b565b6040516020818303038152906040525b915050919050565b611f9761272f565b73ffffffffffffffffffffffffffffffffffffffff16611fb5611b45565b73ffffffffffffffffffffffffffffffffffffffff161461200b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612002906141d9565b60405180910390fd5b8060128190555050565b600e5481565b61202361272f565b73ffffffffffffffffffffffffffffffffffffffff16612041611b45565b73ffffffffffffffffffffffffffffffffffffffff1614612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e906141d9565b60405180910390fd5b80600c90805190602001906120ad929190613883565b5050565b600081116120f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120eb90614ca8565b60405180910390fd5b60006120fe610edb565b9050610bb8811115612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c90614d14565b60405180910390fd5b600e5482826121549190614941565b1115612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90614d80565b60405180910390fd5b601460009054906101000a900460ff166121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db90614dec565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790614e58565b60405180910390fd5b60155482601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122be9190614941565b11156122ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f690614ec4565b60405180910390fd5b6013548261230d9190614a03565b34101561234f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234690614f30565b60405180910390fd5b81601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239e9190614941565b925050819055506000600190505b8281116123db576123c83382846123c39190614941565b612c5c565b80806123d3906145d8565b9150506123ac565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61247c61272f565b73ffffffffffffffffffffffffffffffffffffffff1661249a611b45565b73ffffffffffffffffffffffffffffffffffffffff16146124f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e7906141d9565b60405180910390fd5b600e54816124fc610edb565b6125069190614941565b1115612547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253e906149e3565b60405180910390fd5b6125518282612c5c565b5050565b61255d61272f565b73ffffffffffffffffffffffffffffffffffffffff1661257b611b45565b73ffffffffffffffffffffffffffffffffffffffff16146125d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c8906141d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263890614fc2565b60405180910390fd5b61264a81612b96565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061271857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612728575061272782613036565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661281683611718565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061286782612737565b6128a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289d90615054565b60405180910390fd5b60006128b183611718565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061292057508373ffffffffffffffffffffffffffffffffffffffff1661290884610d38565b73ffffffffffffffffffffffffffffffffffffffff16145b80612931575061293081856123e0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661295a82611718565b73ffffffffffffffffffffffffffffffffffffffff16146129b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a7906150e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1790615178565b60405180910390fd5b612a2b8383836130a0565b612a366000826127a3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a869190615198565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612add9190614941565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c768282604051806020016040528060008152506131b4565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce090615218565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612dda91906139da565b60405180910390a3505050565b612df284848461293a565b612dfe8484848461320f565b612e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e34906152aa565b60405180910390fd5b50505050565b6060600b8054612e5290614228565b80601f0160208091040260200160405190810160405280929190818152602001828054612e7e90614228565b8015612ecb5780601f10612ea057610100808354040283529160200191612ecb565b820191906000526020600020905b815481529060010190602001808311612eae57829003601f168201915b5050505050905090565b60606000821415612f1d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613031565b600082905060005b60008214612f4f578080612f38906145d8565b915050600a82612f4891906152f9565b9150612f25565b60008167ffffffffffffffff811115612f6b57612f6a613e75565b5b6040519080825280601f01601f191660200182016040528015612f9d5781602001600182028036833780820191505090505b5090505b6000851461302a57600182612fb69190615198565b9150600a85612fc5919061532a565b6030612fd19190614941565b60f81b818381518110612fe757612fe661457a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561302391906152f9565b9450612fa1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130ab838383613397565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130ee576130e98161339c565b61312d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461312c5761312b83826133e5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131705761316b81613552565b6131af565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131ae576131ad8282613623565b5b5b505050565b6131be83836136a2565b6131cb600084848461320f565b61320a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613201906152aa565b60405180910390fd5b505050565b60006132308473ffffffffffffffffffffffffffffffffffffffff16613870565b1561338a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261325961272f565b8786866040518563ffffffff1660e01b815260040161327b94939291906153b0565b6020604051808303816000875af19250505080156132b757506040513d601f19601f820116820180604052508101906132b49190615411565b60015b61333a573d80600081146132e7576040519150601f19603f3d011682016040523d82523d6000602084013e6132ec565b606091505b50600081511415613332576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613329906152aa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061338f565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016133f284611858565b6133fc9190615198565b90506000600760008481526020019081526020016000205490508181146134e1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135669190615198565b90506000600960008481526020019081526020016000205490506000600883815481106135965761359561457a565b5b9060005260206000200154905080600883815481106135b8576135b761457a565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136075761360661543e565b5b6001900381819060005260206000200160009055905550505050565b600061362e83611858565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613712576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613709906154b9565b60405180910390fd5b61371b81612737565b1561375b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375290615525565b60405180910390fd5b613767600083836130a0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137b79190614941565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461388f90614228565b90600052602060002090601f0160209004810192826138b157600085556138f8565b82601f106138ca57805160ff19168380011785556138f8565b828001600101855582156138f8579182015b828111156138f75782518255916020019190600101906138dc565b5b5090506139059190613909565b5090565b5b8082111561392257600081600090555060010161390a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61396f8161393a565b811461397a57600080fd5b50565b60008135905061398c81613966565b92915050565b6000602082840312156139a8576139a7613930565b5b60006139b68482850161397d565b91505092915050565b60008115159050919050565b6139d4816139bf565b82525050565b60006020820190506139ef60008301846139cb565b92915050565b6139fe816139bf565b8114613a0957600080fd5b50565b600081359050613a1b816139f5565b92915050565b600060208284031215613a3757613a36613930565b5b6000613a4584828501613a0c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a88578082015181840152602081019050613a6d565b83811115613a97576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ab982613a4e565b613ac38185613a59565b9350613ad3818560208601613a6a565b613adc81613a9d565b840191505092915050565b60006020820190508181036000830152613b018184613aae565b905092915050565b6000819050919050565b613b1c81613b09565b8114613b2757600080fd5b50565b600081359050613b3981613b13565b92915050565b600060208284031215613b5557613b54613930565b5b6000613b6384828501613b2a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b9782613b6c565b9050919050565b613ba781613b8c565b82525050565b6000602082019050613bc26000830184613b9e565b92915050565b613bd181613b8c565b8114613bdc57600080fd5b50565b600081359050613bee81613bc8565b92915050565b60008060408385031215613c0b57613c0a613930565b5b6000613c1985828601613bdf565b9250506020613c2a85828601613b2a565b9150509250929050565b613c3d81613b09565b82525050565b6000602082019050613c586000830184613c34565b92915050565b600060208284031215613c7457613c73613930565b5b6000613c8284828501613bdf565b91505092915050565b600080600060608486031215613ca457613ca3613930565b5b6000613cb286828701613bdf565b9350506020613cc386828701613bdf565b9250506040613cd486828701613b2a565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d1381613b09565b82525050565b6000613d258383613d0a565b60208301905092915050565b6000602082019050919050565b6000613d4982613cde565b613d538185613ce9565b9350613d5e83613cfa565b8060005b83811015613d8f578151613d768882613d19565b9750613d8183613d31565b925050600181019050613d62565b5085935050505092915050565b60006020820190508181036000830152613db68184613d3e565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613de357613de2613dbe565b5b8235905067ffffffffffffffff811115613e0057613dff613dc3565b5b602083019150836020820283011115613e1c57613e1b613dc8565b5b9250929050565b60008060208385031215613e3a57613e39613930565b5b600083013567ffffffffffffffff811115613e5857613e57613935565b5b613e6485828601613dcd565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ead82613a9d565b810181811067ffffffffffffffff82111715613ecc57613ecb613e75565b5b80604052505050565b6000613edf613926565b9050613eeb8282613ea4565b919050565b600067ffffffffffffffff821115613f0b57613f0a613e75565b5b613f1482613a9d565b9050602081019050919050565b82818337600083830152505050565b6000613f43613f3e84613ef0565b613ed5565b905082815260208101848484011115613f5f57613f5e613e70565b5b613f6a848285613f21565b509392505050565b600082601f830112613f8757613f86613dbe565b5b8135613f97848260208601613f30565b91505092915050565b600060208284031215613fb657613fb5613930565b5b600082013567ffffffffffffffff811115613fd457613fd3613935565b5b613fe084828501613f72565b91505092915050565b6000806040838503121561400057613fff613930565b5b600061400e85828601613bdf565b925050602061401f85828601613a0c565b9150509250929050565b600067ffffffffffffffff82111561404457614043613e75565b5b61404d82613a9d565b9050602081019050919050565b600061406d61406884614029565b613ed5565b90508281526020810184848401111561408957614088613e70565b5b614094848285613f21565b509392505050565b600082601f8301126140b1576140b0613dbe565b5b81356140c184826020860161405a565b91505092915050565b600080600080608085870312156140e4576140e3613930565b5b60006140f287828801613bdf565b945050602061410387828801613bdf565b935050604061411487828801613b2a565b925050606085013567ffffffffffffffff81111561413557614134613935565b5b6141418782880161409c565b91505092959194509250565b6000806040838503121561416457614163613930565b5b600061417285828601613bdf565b925050602061418385828601613bdf565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141c3602083613a59565b91506141ce8261418d565b602082019050919050565b600060208201905081810360008301526141f2816141b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061424057607f821691505b60208210811415614254576142536141f9565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006142b6602c83613a59565b91506142c18261425a565b604082019050919050565b600060208201905081810360008301526142e5816142a9565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614348602183613a59565b9150614353826142ec565b604082019050919050565b600060208201905081810360008301526143778161433b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006143da603883613a59565b91506143e58261437e565b604082019050919050565b60006020820190508181036000830152614409816143cd565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061446c603183613a59565b915061447782614410565b604082019050919050565b6000602082019050818103600083015261449b8161445f565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006144fe602b83613a59565b9150614509826144a2565b604082019050919050565b6000602082019050818103600083015261452d816144f1565b9050919050565b600081905092915050565b50565b600061454f600083614534565b915061455a8261453f565b600082019050919050565b600061457082614542565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145e382613b09565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614616576146156145a9565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061467d602c83613a59565b915061468882614621565b604082019050919050565b600060208201905081810360008301526146ac81614670565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061470f602983613a59565b915061471a826146b3565b604082019050919050565b6000602082019050818103600083015261473e81614702565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006147a1602a83613a59565b91506147ac82614745565b604082019050919050565b600060208201905081810360008301526147d081614794565b9050919050565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b600061480d601683613a59565b9150614818826147d7565b602082019050919050565b6000602082019050818103600083015261483c81614800565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000614879601b83613a59565b915061488482614843565b602082019050919050565b600060208201905081810360008301526148a88161486c565b9050919050565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b600061490b602483613a59565b9150614916826148af565b604082019050919050565b6000602082019050818103600083015261493a816148fe565b9050919050565b600061494c82613b09565b915061495783613b09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561498c5761498b6145a9565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b60006149cd601683613a59565b91506149d882614997565b602082019050919050565b600060208201905081810360008301526149fc816149c0565b9050919050565b6000614a0e82613b09565b9150614a1983613b09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a5257614a516145a9565b5b828202905092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000614a93601283613a59565b9150614a9e82614a5d565b602082019050919050565b60006020820190508181036000830152614ac281614a86565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614b25602f83613a59565b9150614b3082614ac9565b604082019050919050565b60006020820190508181036000830152614b5481614b18565b9050919050565b600081905092915050565b6000614b7182613a4e565b614b7b8185614b5b565b9350614b8b818560208601613a6a565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614bb981614228565b614bc38186614b5b565b94506001821660008114614bde5760018114614bef57614c22565b60ff19831686528186019350614c22565b614bf885614b97565b60005b83811015614c1a57815481890152600182019150602081019050614bfb565b838801955050505b50505092915050565b6000614c378286614b66565b9150614c438285614b66565b9150614c4f8284614bac565b9150819050949350505050565b7f4d696e742061746c65617374203120436f616c6974696f6e43726577322e3000600082015250565b6000614c92601f83613a59565b9150614c9d82614c5c565b602082019050919050565b60006020820190508181036000830152614cc181614c85565b9050919050565b7f50726573616c6520697320736f6c64206f75742e000000000000000000000000600082015250565b6000614cfe601483613a59565b9150614d0982614cc8565b602082019050919050565b60006020820190508181036000830152614d2d81614cf1565b9050919050565b7f4d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000614d6a601683613a59565b9150614d7582614d34565b602082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b7f57686974656c697374206973206e6f7420616374697665000000000000000000600082015250565b6000614dd6601783613a59565b9150614de182614da0565b602082019050919050565b60006020820190508181036000830152614e0581614dc9565b9050919050565b7f596f7520617265206e6f7420696e2077686974656c6973740000000000000000600082015250565b6000614e42601883613a59565b9150614e4d82614e0c565b602082019050919050565b60006020820190508181036000830152614e7181614e35565b9050919050565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b6000614eae601c83613a59565b9150614eb982614e78565b602082019050919050565b60006020820190508181036000830152614edd81614ea1565b9050919050565b7f54727920746f2073656e64206d6f726520455448000000000000000000000000600082015250565b6000614f1a601483613a59565b9150614f2582614ee4565b602082019050919050565b60006020820190508181036000830152614f4981614f0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614fac602683613a59565b9150614fb782614f50565b604082019050919050565b60006020820190508181036000830152614fdb81614f9f565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061503e602c83613a59565b915061504982614fe2565b604082019050919050565b6000602082019050818103600083015261506d81615031565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006150d0602983613a59565b91506150db82615074565b604082019050919050565b600060208201905081810360008301526150ff816150c3565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615162602483613a59565b915061516d82615106565b604082019050919050565b6000602082019050818103600083015261519181615155565b9050919050565b60006151a382613b09565b91506151ae83613b09565b9250828210156151c1576151c06145a9565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615202601983613a59565b915061520d826151cc565b602082019050919050565b60006020820190508181036000830152615231816151f5565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615294603283613a59565b915061529f82615238565b604082019050919050565b600060208201905081810360008301526152c381615287565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061530482613b09565b915061530f83613b09565b92508261531f5761531e6152ca565b5b828204905092915050565b600061533582613b09565b915061534083613b09565b9250826153505761534f6152ca565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006153828261535b565b61538c8185615366565b935061539c818560208601613a6a565b6153a581613a9d565b840191505092915050565b60006080820190506153c56000830187613b9e565b6153d26020830186613b9e565b6153df6040830185613c34565b81810360608301526153f18184615377565b905095945050505050565b60008151905061540b81613966565b92915050565b60006020828403121561542757615426613930565b5b6000615435848285016153fc565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006154a3602083613a59565b91506154ae8261546d565b602082019050919050565b600060208201905081810360008301526154d281615496565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061550f601c83613a59565b915061551a826154d9565b602082019050919050565b6000602082019050818103600083015261553e81615502565b905091905056fea26469706673582212207c3f173be06882f8757ec6c467190d3a76d2e2a5aa2a81a7bf0a9699789af92964736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012436f616c6974696f6e204372657720322e300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343433200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5750586269553964674c4162705954466f704e4d336577435672674e4756766f71594c5557516f47426732582f00000000000000000000

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80635c975abb11610175578063a90e09e2116100dc578063d0eb26b011610095578063e6ab14341161006f578063e6ab143414610ae8578063e985e9c514610b04578063efc8e9d614610b41578063f2fde38b14610b6a576102c9565b8063d0eb26b014610a6b578063d5abeb0114610a94578063da3ef23f14610abf576102c9565b8063a90e09e214610959578063b4cdf92714610984578063b88d4fde146109af578063ba7d2c76146109d8578063c668286214610a03578063c87b56dd14610a2e576102c9565b80637f00c7a61161012e5780637f00c7a61461086c5780637f649783146108955780638da5cb5b146108be57806395d89b41146108e9578063a0712d6814610914578063a22cb46514610930576102c9565b80635c975abb1461075a5780636352211e146107855780636c0360eb146107c257806370a08231146107ed578063715018a61461082a578063722e141d14610841576102c9565b80632f745c5911610234578063438b6300116101ed578063524513d6116101c7578063524513d6146106b4578063548db174146106df57806355f804b3146107085780635a94133c14610731576102c9565b8063438b63001461061157806344a0d68a1461064e5780634f6ccce714610677576102c9565b80632f745c5914610512578063340ee37c1461054f578063381b5a5d1461058c5780633ccfd60b146105b557806341418b6a146105bf57806342842e0e146105e8576102c9565b806318160ddd1161028657806318160ddd146103f057806318cae2691461041b5780631d60865914610458578063239c70ae1461049557806323b872dd146104c05780632f138e8d146104e9576102c9565b806301ffc9a7146102ce57806302329a291461030b57806306fdde0314610334578063081812fc1461035f578063095ea7b31461039c57806313faede6146103c5575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613992565b610b93565b60405161030291906139da565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190613a21565b610c0d565b005b34801561034057600080fd5b50610349610ca6565b6040516103569190613ae7565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190613b3f565b610d38565b6040516103939190613bad565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190613bf4565b610dbd565b005b3480156103d157600080fd5b506103da610ed5565b6040516103e79190613c43565b60405180910390f35b3480156103fc57600080fd5b50610405610edb565b6040516104129190613c43565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190613c5e565b610ee8565b60405161044f9190613c43565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190613c5e565b610f00565b60405161048c91906139da565b60405180910390f35b3480156104a157600080fd5b506104aa610f20565b6040516104b79190613c43565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613c8b565b610f26565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613a21565b610f86565b005b34801561051e57600080fd5b5061053960048036038101906105349190613bf4565b61101f565b6040516105469190613c43565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190613c5e565b6110c4565b6040516105839190613c43565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190613a21565b6110dc565b005b6105bd611175565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190613b3f565b61126a565b005b3480156105f457600080fd5b5061060f600480360381019061060a9190613c8b565b6112f0565b005b34801561061d57600080fd5b5061063860048036038101906106339190613c5e565b611310565b6040516106459190613d9c565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190613b3f565b6113be565b005b34801561068357600080fd5b5061069e60048036038101906106999190613b3f565b611444565b6040516106ab9190613c43565b60405180910390f35b3480156106c057600080fd5b506106c96114b5565b6040516106d691906139da565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613e23565b6114c8565b005b34801561071457600080fd5b5061072f600480360381019061072a9190613fa0565b6115e9565b005b34801561073d57600080fd5b5061075860048036038101906107539190613b3f565b61167f565b005b34801561076657600080fd5b5061076f611705565b60405161077c91906139da565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190613b3f565b611718565b6040516107b99190613bad565b60405180910390f35b3480156107ce57600080fd5b506107d76117ca565b6040516107e49190613ae7565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190613c5e565b611858565b6040516108219190613c43565b60405180910390f35b34801561083657600080fd5b5061083f611910565b005b34801561084d57600080fd5b50610856611998565b6040516108639190613c43565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e9190613b3f565b61199e565b005b3480156108a157600080fd5b506108bc60048036038101906108b79190613e23565b611a24565b005b3480156108ca57600080fd5b506108d3611b45565b6040516108e09190613bad565b60405180910390f35b3480156108f557600080fd5b506108fe611b6f565b60405161090b9190613ae7565b60405180910390f35b61092e60048036038101906109299190613b3f565b611c01565b005b34801561093c57600080fd5b5061095760048036038101906109529190613fe9565b611dc0565b005b34801561096557600080fd5b5061096e611dd6565b60405161097b91906139da565b60405180910390f35b34801561099057600080fd5b50610999611de9565b6040516109a69190613c43565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d191906140ca565b611def565b005b3480156109e457600080fd5b506109ed611e51565b6040516109fa9190613c43565b60405180910390f35b348015610a0f57600080fd5b50610a18611e57565b604051610a259190613ae7565b60405180910390f35b348015610a3a57600080fd5b50610a556004803603810190610a509190613b3f565b611ee5565b604051610a629190613ae7565b60405180910390f35b348015610a7757600080fd5b50610a926004803603810190610a8d9190613b3f565b611f8f565b005b348015610aa057600080fd5b50610aa9612015565b604051610ab69190613c43565b60405180910390f35b348015610acb57600080fd5b50610ae66004803603810190610ae19190613fa0565b61201b565b005b610b026004803603810190610afd9190613b3f565b6120b1565b005b348015610b1057600080fd5b50610b2b6004803603810190610b26919061414d565b6123e0565b604051610b3891906139da565b60405180910390f35b348015610b4d57600080fd5b50610b686004803603810190610b639190613bf4565b612474565b005b348015610b7657600080fd5b50610b916004803603810190610b8c9190613c5e565b612555565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c065750610c058261264d565b5b9050919050565b610c1561272f565b73ffffffffffffffffffffffffffffffffffffffff16610c33611b45565b73ffffffffffffffffffffffffffffffffffffffff1614610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c80906141d9565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610cb590614228565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce190614228565b8015610d2e5780601f10610d0357610100808354040283529160200191610d2e565b820191906000526020600020905b815481529060010190602001808311610d1157829003601f168201915b5050505050905090565b6000610d4382612737565b610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d79906142cc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dc882611718565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e309061435e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e5861272f565b73ffffffffffffffffffffffffffffffffffffffff161480610e875750610e8681610e8161272f565b6123e0565b5b610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd906143f0565b60405180910390fd5b610ed083836127a3565b505050565b600d5481565b6000600880549050905090565b60116020528060005260406000206000915090505481565b60166020528060005260406000206000915054906101000a900460ff1681565b600f5481565b610f37610f3161272f565b8261285c565b610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90614482565b60405180910390fd5b610f8183838361293a565b505050565b610f8e61272f565b73ffffffffffffffffffffffffffffffffffffffff16610fac611b45565b73ffffffffffffffffffffffffffffffffffffffff1614611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff9906141d9565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b600061102a83611858565b821061106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290614514565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60176020528060005260406000206000915090505481565b6110e461272f565b73ffffffffffffffffffffffffffffffffffffffff16611102611b45565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f906141d9565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b61117d61272f565b73ffffffffffffffffffffffffffffffffffffffff1661119b611b45565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e8906141d9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161121790614565565b60006040518083038185875af1925050503d8060008114611254576040519150601f19603f3d011682016040523d82523d6000602084013e611259565b606091505b505090508061126757600080fd5b50565b61127261272f565b73ffffffffffffffffffffffffffffffffffffffff16611290611b45565b73ffffffffffffffffffffffffffffffffffffffff16146112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd906141d9565b60405180910390fd5b8060158190555050565b61130b83838360405180602001604052806000815250611def565b505050565b6060600061131d83611858565b905060008167ffffffffffffffff81111561133b5761133a613e75565b5b6040519080825280602002602001820160405280156113695781602001602082028036833780820191505090505b50905060005b828110156113b357611381858261101f565b8282815181106113945761139361457a565b5b60200260200101818152505080806113ab906145d8565b91505061136f565b508092505050919050565b6113c661272f565b73ffffffffffffffffffffffffffffffffffffffff166113e4611b45565b73ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611431906141d9565b60405180910390fd5b80600d8190555050565b600061144e610edb565b821061148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690614693565b60405180910390fd5b600882815481106114a3576114a261457a565b5b90600052602060002001549050919050565b601460009054906101000a900460ff1681565b6114d061272f565b73ffffffffffffffffffffffffffffffffffffffff166114ee611b45565b73ffffffffffffffffffffffffffffffffffffffff1614611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b906141d9565b60405180910390fd5b60005b828290508110156115e45760006016600085858581811061156b5761156a61457a565b5b90506020020160208101906115809190613c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806115dc906145d8565b915050611547565b505050565b6115f161272f565b73ffffffffffffffffffffffffffffffffffffffff1661160f611b45565b73ffffffffffffffffffffffffffffffffffffffff1614611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c906141d9565b60405180910390fd5b80600b908051906020019061167b929190613883565b5050565b61168761272f565b73ffffffffffffffffffffffffffffffffffffffff166116a5611b45565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f2906141d9565b60405180910390fd5b8060138190555050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890614725565b60405180910390fd5b80915050919050565b600b80546117d790614228565b80601f016020809104026020016040519081016040528092919081815260200182805461180390614228565b80156118505780601f1061182557610100808354040283529160200191611850565b820191906000526020600020905b81548152906001019060200180831161183357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c0906147b7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61191861272f565b73ffffffffffffffffffffffffffffffffffffffff16611936611b45565b73ffffffffffffffffffffffffffffffffffffffff161461198c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611983906141d9565b60405180910390fd5b6119966000612b96565b565b60155481565b6119a661272f565b73ffffffffffffffffffffffffffffffffffffffff166119c4611b45565b73ffffffffffffffffffffffffffffffffffffffff1614611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a11906141d9565b60405180910390fd5b80600f8190555050565b611a2c61272f565b73ffffffffffffffffffffffffffffffffffffffff16611a4a611b45565b73ffffffffffffffffffffffffffffffffffffffff1614611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a97906141d9565b60405180910390fd5b60005b82829050811015611b4057600160166000858585818110611ac757611ac661457a565b5b9050602002016020810190611adc9190613c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b38906145d8565b915050611aa3565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611b7e90614228565b80601f0160208091040260200160405190810160405280929190818152602001828054611baa90614228565b8015611bf75780601f10611bcc57610100808354040283529160200191611bf7565b820191906000526020600020905b815481529060010190602001808311611bda57829003601f168201915b5050505050905090565b601060009054906101000a900460ff1615611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890614823565b60405180910390fd5b6000611c5b610edb565b905060008211611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c979061488f565b60405180910390fd5b600f54821115611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90614921565b60405180910390fd5b600e548282611cf49190614941565b1115611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c906149e3565b60405180910390fd5b81600d54611d439190614a03565b341015611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c90614aa9565b60405180910390fd5b6000600190505b828111611dbb57611da8338284611da39190614941565b612c5c565b8080611db3906145d8565b915050611d8c565b505050565b611dd2611dcb61272f565b8383612c7a565b5050565b601060019054906101000a900460ff1681565b60135481565b611e00611dfa61272f565b8361285c565b611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3690614482565b60405180910390fd5b611e4b84848484612de7565b50505050565b60125481565b600c8054611e6490614228565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9090614228565b8015611edd5780601f10611eb257610100808354040283529160200191611edd565b820191906000526020600020905b815481529060010190602001808311611ec057829003601f168201915b505050505081565b6060611ef082612737565b611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2690614b3b565b60405180910390fd5b6000611f39612e43565b90506000815111611f595760405180602001604052806000815250611f87565b80611f6384612ed5565b600c604051602001611f7793929190614c2b565b6040516020818303038152906040525b915050919050565b611f9761272f565b73ffffffffffffffffffffffffffffffffffffffff16611fb5611b45565b73ffffffffffffffffffffffffffffffffffffffff161461200b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612002906141d9565b60405180910390fd5b8060128190555050565b600e5481565b61202361272f565b73ffffffffffffffffffffffffffffffffffffffff16612041611b45565b73ffffffffffffffffffffffffffffffffffffffff1614612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e906141d9565b60405180910390fd5b80600c90805190602001906120ad929190613883565b5050565b600081116120f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120eb90614ca8565b60405180910390fd5b60006120fe610edb565b9050610bb8811115612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c90614d14565b60405180910390fd5b600e5482826121549190614941565b1115612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90614d80565b60405180910390fd5b601460009054906101000a900460ff166121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db90614dec565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790614e58565b60405180910390fd5b60155482601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122be9190614941565b11156122ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f690614ec4565b60405180910390fd5b6013548261230d9190614a03565b34101561234f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234690614f30565b60405180910390fd5b81601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239e9190614941565b925050819055506000600190505b8281116123db576123c83382846123c39190614941565b612c5c565b80806123d3906145d8565b9150506123ac565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61247c61272f565b73ffffffffffffffffffffffffffffffffffffffff1661249a611b45565b73ffffffffffffffffffffffffffffffffffffffff16146124f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e7906141d9565b60405180910390fd5b600e54816124fc610edb565b6125069190614941565b1115612547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253e906149e3565b60405180910390fd5b6125518282612c5c565b5050565b61255d61272f565b73ffffffffffffffffffffffffffffffffffffffff1661257b611b45565b73ffffffffffffffffffffffffffffffffffffffff16146125d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c8906141d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263890614fc2565b60405180910390fd5b61264a81612b96565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061271857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612728575061272782613036565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661281683611718565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061286782612737565b6128a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289d90615054565b60405180910390fd5b60006128b183611718565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061292057508373ffffffffffffffffffffffffffffffffffffffff1661290884610d38565b73ffffffffffffffffffffffffffffffffffffffff16145b80612931575061293081856123e0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661295a82611718565b73ffffffffffffffffffffffffffffffffffffffff16146129b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a7906150e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1790615178565b60405180910390fd5b612a2b8383836130a0565b612a366000826127a3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a869190615198565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612add9190614941565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c768282604051806020016040528060008152506131b4565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce090615218565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612dda91906139da565b60405180910390a3505050565b612df284848461293a565b612dfe8484848461320f565b612e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e34906152aa565b60405180910390fd5b50505050565b6060600b8054612e5290614228565b80601f0160208091040260200160405190810160405280929190818152602001828054612e7e90614228565b8015612ecb5780601f10612ea057610100808354040283529160200191612ecb565b820191906000526020600020905b815481529060010190602001808311612eae57829003601f168201915b5050505050905090565b60606000821415612f1d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613031565b600082905060005b60008214612f4f578080612f38906145d8565b915050600a82612f4891906152f9565b9150612f25565b60008167ffffffffffffffff811115612f6b57612f6a613e75565b5b6040519080825280601f01601f191660200182016040528015612f9d5781602001600182028036833780820191505090505b5090505b6000851461302a57600182612fb69190615198565b9150600a85612fc5919061532a565b6030612fd19190614941565b60f81b818381518110612fe757612fe661457a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561302391906152f9565b9450612fa1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130ab838383613397565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130ee576130e98161339c565b61312d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461312c5761312b83826133e5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131705761316b81613552565b6131af565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131ae576131ad8282613623565b5b5b505050565b6131be83836136a2565b6131cb600084848461320f565b61320a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613201906152aa565b60405180910390fd5b505050565b60006132308473ffffffffffffffffffffffffffffffffffffffff16613870565b1561338a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261325961272f565b8786866040518563ffffffff1660e01b815260040161327b94939291906153b0565b6020604051808303816000875af19250505080156132b757506040513d601f19601f820116820180604052508101906132b49190615411565b60015b61333a573d80600081146132e7576040519150601f19603f3d011682016040523d82523d6000602084013e6132ec565b606091505b50600081511415613332576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613329906152aa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061338f565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016133f284611858565b6133fc9190615198565b90506000600760008481526020019081526020016000205490508181146134e1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135669190615198565b90506000600960008481526020019081526020016000205490506000600883815481106135965761359561457a565b5b9060005260206000200154905080600883815481106135b8576135b761457a565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136075761360661543e565b5b6001900381819060005260206000200160009055905550505050565b600061362e83611858565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613712576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613709906154b9565b60405180910390fd5b61371b81612737565b1561375b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375290615525565b60405180910390fd5b613767600083836130a0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137b79190614941565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461388f90614228565b90600052602060002090601f0160209004810192826138b157600085556138f8565b82601f106138ca57805160ff19168380011785556138f8565b828001600101855582156138f8579182015b828111156138f75782518255916020019190600101906138dc565b5b5090506139059190613909565b5090565b5b8082111561392257600081600090555060010161390a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61396f8161393a565b811461397a57600080fd5b50565b60008135905061398c81613966565b92915050565b6000602082840312156139a8576139a7613930565b5b60006139b68482850161397d565b91505092915050565b60008115159050919050565b6139d4816139bf565b82525050565b60006020820190506139ef60008301846139cb565b92915050565b6139fe816139bf565b8114613a0957600080fd5b50565b600081359050613a1b816139f5565b92915050565b600060208284031215613a3757613a36613930565b5b6000613a4584828501613a0c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a88578082015181840152602081019050613a6d565b83811115613a97576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ab982613a4e565b613ac38185613a59565b9350613ad3818560208601613a6a565b613adc81613a9d565b840191505092915050565b60006020820190508181036000830152613b018184613aae565b905092915050565b6000819050919050565b613b1c81613b09565b8114613b2757600080fd5b50565b600081359050613b3981613b13565b92915050565b600060208284031215613b5557613b54613930565b5b6000613b6384828501613b2a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b9782613b6c565b9050919050565b613ba781613b8c565b82525050565b6000602082019050613bc26000830184613b9e565b92915050565b613bd181613b8c565b8114613bdc57600080fd5b50565b600081359050613bee81613bc8565b92915050565b60008060408385031215613c0b57613c0a613930565b5b6000613c1985828601613bdf565b9250506020613c2a85828601613b2a565b9150509250929050565b613c3d81613b09565b82525050565b6000602082019050613c586000830184613c34565b92915050565b600060208284031215613c7457613c73613930565b5b6000613c8284828501613bdf565b91505092915050565b600080600060608486031215613ca457613ca3613930565b5b6000613cb286828701613bdf565b9350506020613cc386828701613bdf565b9250506040613cd486828701613b2a565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d1381613b09565b82525050565b6000613d258383613d0a565b60208301905092915050565b6000602082019050919050565b6000613d4982613cde565b613d538185613ce9565b9350613d5e83613cfa565b8060005b83811015613d8f578151613d768882613d19565b9750613d8183613d31565b925050600181019050613d62565b5085935050505092915050565b60006020820190508181036000830152613db68184613d3e565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613de357613de2613dbe565b5b8235905067ffffffffffffffff811115613e0057613dff613dc3565b5b602083019150836020820283011115613e1c57613e1b613dc8565b5b9250929050565b60008060208385031215613e3a57613e39613930565b5b600083013567ffffffffffffffff811115613e5857613e57613935565b5b613e6485828601613dcd565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ead82613a9d565b810181811067ffffffffffffffff82111715613ecc57613ecb613e75565b5b80604052505050565b6000613edf613926565b9050613eeb8282613ea4565b919050565b600067ffffffffffffffff821115613f0b57613f0a613e75565b5b613f1482613a9d565b9050602081019050919050565b82818337600083830152505050565b6000613f43613f3e84613ef0565b613ed5565b905082815260208101848484011115613f5f57613f5e613e70565b5b613f6a848285613f21565b509392505050565b600082601f830112613f8757613f86613dbe565b5b8135613f97848260208601613f30565b91505092915050565b600060208284031215613fb657613fb5613930565b5b600082013567ffffffffffffffff811115613fd457613fd3613935565b5b613fe084828501613f72565b91505092915050565b6000806040838503121561400057613fff613930565b5b600061400e85828601613bdf565b925050602061401f85828601613a0c565b9150509250929050565b600067ffffffffffffffff82111561404457614043613e75565b5b61404d82613a9d565b9050602081019050919050565b600061406d61406884614029565b613ed5565b90508281526020810184848401111561408957614088613e70565b5b614094848285613f21565b509392505050565b600082601f8301126140b1576140b0613dbe565b5b81356140c184826020860161405a565b91505092915050565b600080600080608085870312156140e4576140e3613930565b5b60006140f287828801613bdf565b945050602061410387828801613bdf565b935050604061411487828801613b2a565b925050606085013567ffffffffffffffff81111561413557614134613935565b5b6141418782880161409c565b91505092959194509250565b6000806040838503121561416457614163613930565b5b600061417285828601613bdf565b925050602061418385828601613bdf565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141c3602083613a59565b91506141ce8261418d565b602082019050919050565b600060208201905081810360008301526141f2816141b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061424057607f821691505b60208210811415614254576142536141f9565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006142b6602c83613a59565b91506142c18261425a565b604082019050919050565b600060208201905081810360008301526142e5816142a9565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614348602183613a59565b9150614353826142ec565b604082019050919050565b600060208201905081810360008301526143778161433b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006143da603883613a59565b91506143e58261437e565b604082019050919050565b60006020820190508181036000830152614409816143cd565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061446c603183613a59565b915061447782614410565b604082019050919050565b6000602082019050818103600083015261449b8161445f565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006144fe602b83613a59565b9150614509826144a2565b604082019050919050565b6000602082019050818103600083015261452d816144f1565b9050919050565b600081905092915050565b50565b600061454f600083614534565b915061455a8261453f565b600082019050919050565b600061457082614542565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145e382613b09565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614616576146156145a9565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061467d602c83613a59565b915061468882614621565b604082019050919050565b600060208201905081810360008301526146ac81614670565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061470f602983613a59565b915061471a826146b3565b604082019050919050565b6000602082019050818103600083015261473e81614702565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006147a1602a83613a59565b91506147ac82614745565b604082019050919050565b600060208201905081810360008301526147d081614794565b9050919050565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b600061480d601683613a59565b9150614818826147d7565b602082019050919050565b6000602082019050818103600083015261483c81614800565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000614879601b83613a59565b915061488482614843565b602082019050919050565b600060208201905081810360008301526148a88161486c565b9050919050565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b600061490b602483613a59565b9150614916826148af565b604082019050919050565b6000602082019050818103600083015261493a816148fe565b9050919050565b600061494c82613b09565b915061495783613b09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561498c5761498b6145a9565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b60006149cd601683613a59565b91506149d882614997565b602082019050919050565b600060208201905081810360008301526149fc816149c0565b9050919050565b6000614a0e82613b09565b9150614a1983613b09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a5257614a516145a9565b5b828202905092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000614a93601283613a59565b9150614a9e82614a5d565b602082019050919050565b60006020820190508181036000830152614ac281614a86565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614b25602f83613a59565b9150614b3082614ac9565b604082019050919050565b60006020820190508181036000830152614b5481614b18565b9050919050565b600081905092915050565b6000614b7182613a4e565b614b7b8185614b5b565b9350614b8b818560208601613a6a565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614bb981614228565b614bc38186614b5b565b94506001821660008114614bde5760018114614bef57614c22565b60ff19831686528186019350614c22565b614bf885614b97565b60005b83811015614c1a57815481890152600182019150602081019050614bfb565b838801955050505b50505092915050565b6000614c378286614b66565b9150614c438285614b66565b9150614c4f8284614bac565b9150819050949350505050565b7f4d696e742061746c65617374203120436f616c6974696f6e43726577322e3000600082015250565b6000614c92601f83613a59565b9150614c9d82614c5c565b602082019050919050565b60006020820190508181036000830152614cc181614c85565b9050919050565b7f50726573616c6520697320736f6c64206f75742e000000000000000000000000600082015250565b6000614cfe601483613a59565b9150614d0982614cc8565b602082019050919050565b60006020820190508181036000830152614d2d81614cf1565b9050919050565b7f4d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000614d6a601683613a59565b9150614d7582614d34565b602082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b7f57686974656c697374206973206e6f7420616374697665000000000000000000600082015250565b6000614dd6601783613a59565b9150614de182614da0565b602082019050919050565b60006020820190508181036000830152614e0581614dc9565b9050919050565b7f596f7520617265206e6f7420696e2077686974656c6973740000000000000000600082015250565b6000614e42601883613a59565b9150614e4d82614e0c565b602082019050919050565b60006020820190508181036000830152614e7181614e35565b9050919050565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b6000614eae601c83613a59565b9150614eb982614e78565b602082019050919050565b60006020820190508181036000830152614edd81614ea1565b9050919050565b7f54727920746f2073656e64206d6f726520455448000000000000000000000000600082015250565b6000614f1a601483613a59565b9150614f2582614ee4565b602082019050919050565b60006020820190508181036000830152614f4981614f0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614fac602683613a59565b9150614fb782614f50565b604082019050919050565b60006020820190508181036000830152614fdb81614f9f565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061503e602c83613a59565b915061504982614fe2565b604082019050919050565b6000602082019050818103600083015261506d81615031565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006150d0602983613a59565b91506150db82615074565b604082019050919050565b600060208201905081810360008301526150ff816150c3565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615162602483613a59565b915061516d82615106565b604082019050919050565b6000602082019050818103600083015261519181615155565b9050919050565b60006151a382613b09565b91506151ae83613b09565b9250828210156151c1576151c06145a9565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615202601983613a59565b915061520d826151cc565b602082019050919050565b60006020820190508181036000830152615231816151f5565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615294603283613a59565b915061529f82615238565b604082019050919050565b600060208201905081810360008301526152c381615287565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061530482613b09565b915061530f83613b09565b92508261531f5761531e6152ca565b5b828204905092915050565b600061533582613b09565b915061534083613b09565b9250826153505761534f6152ca565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006153828261535b565b61538c8185615366565b935061539c818560208601613a6a565b6153a581613a9d565b840191505092915050565b60006080820190506153c56000830187613b9e565b6153d26020830186613b9e565b6153df6040830185613c34565b81810360608301526153f18184615377565b905095945050505050565b60008151905061540b81613966565b92915050565b60006020828403121561542757615426613930565b5b6000615435848285016153fc565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006154a3602083613a59565b91506154ae8261546d565b602082019050919050565b600060208201905081810360008301526154d281615496565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061550f601c83613a59565b915061551a826154d9565b602082019050919050565b6000602082019050818103600083015261553e81615502565b905091905056fea26469706673582212207c3f173be06882f8757ec6c467190d3a76d2e2a5aa2a81a7bf0a9699789af92964736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012436f616c6974696f6e204372657720322e300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343433200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5750586269553964674c4162705954466f704e4d336577435672674e4756766f71594c5557516f47426732582f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Coalition Crew 2.0
Arg [1] : _symbol (string): CC2
Arg [2] : _initBaseURI (string): ipfs://QmWPXbiU9dgLAbpYTFopNM3ewCVrgNGVvoqYLUWQoGBg2X/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 436f616c6974696f6e204372657720322e300000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4343320000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5750586269553964674c4162705954466f704e4d336577
Arg [9] : 435672674e4756766f71594c5557516f47426732582f00000000000000000000


Deployed Bytecode Sourcemap

44501:5840:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38266:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49961:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25760:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27319:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26842:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44692:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38906:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44875:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45141:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44765:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28069:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50042:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38574:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45191:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49824:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50146:192;;;:::i;:::-;;49485:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28479:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48037:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49012:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39096:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45063:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45818:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49220:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49690:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44804:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25454:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44591:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25184:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;45099:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49098:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45626:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25929:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47500:531;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27612:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44835:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45012:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28735:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44968:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44617;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48391:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48900:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44729:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49324:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46039:927;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27838:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47137:278;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38266:224;38368:4;38407:35;38392:50;;;:11;:50;;;;:90;;;;38446:36;38470:11;38446:23;:36::i;:::-;38392:90;38385:97;;38266:224;;;:::o;49961:73::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50022:6:::1;50013;;:15;;;;;;;;;;;;;;;;;;49961:73:::0;:::o;25760:100::-;25814:13;25847:5;25840:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25760:100;:::o;27319:221::-;27395:7;27423:16;27431:7;27423;:16::i;:::-;27415:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27508:15;:24;27524:7;27508:24;;;;;;;;;;;;;;;;;;;;;27501:31;;27319:221;;;:::o;26842:411::-;26923:13;26939:23;26954:7;26939:14;:23::i;:::-;26923:39;;26987:5;26981:11;;:2;:11;;;;26973:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27081:5;27065:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27090:37;27107:5;27114:12;:10;:12::i;:::-;27090:16;:37::i;:::-;27065:62;27043:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27224:21;27233:2;27237:7;27224:8;:21::i;:::-;26912:341;26842:411;;:::o;44692:32::-;;;;:::o;38906:113::-;38967:7;38994:10;:17;;;;38987:24;;38906:113;:::o;44875:55::-;;;;;;;;;;;;;;;;;:::o;45141:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;44765:32::-;;;;:::o;28069:339::-;28264:41;28283:12;:10;:12::i;:::-;28297:7;28264:18;:41::i;:::-;28256:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28372:28;28382:4;28388:2;28392:7;28372:9;:28::i;:::-;28069:339;;;:::o;50042:93::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50123:6:::1;50106:14;;:23;;;;;;;;;;;;;;;;;;50042:93:::0;:::o;38574:256::-;38671:7;38707:23;38724:5;38707:16;:23::i;:::-;38699:5;:31;38691:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38796:12;:19;38809:5;38796:19;;;;;;;;;;;;;;;:26;38816:5;38796:26;;;;;;;;;;;;38789:33;;38574:256;;;;:::o;45191:53::-;;;;;;;;;;;;;;;;;:::o;49824:131::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49929:18:::1;49909:17;;:38;;;;;;;;;;;;;;;;;;49824:131:::0;:::o;50146:192::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50203:12:::1;50229:10;50221:24;;50267:21;50221:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50202:101;;;50322:7;50314:16;;;::::0;::::1;;50191:147;50146:192::o:0;49485:130::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49590:17:::1;49571:16;:36;;;;49485:130:::0;:::o;28479:185::-;28617:39;28634:4;28640:2;28644:7;28617:39;;;;;;;;;;;;:16;:39::i;:::-;28479:185;;;:::o;48037:348::-;48112:16;48140:23;48166:17;48176:6;48166:9;:17::i;:::-;48140:43;;48190:25;48232:15;48218:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48190:58;;48260:9;48255:103;48275:15;48271:1;:19;48255:103;;;48320:30;48340:6;48348:1;48320:19;:30::i;:::-;48306:8;48315:1;48306:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;48292:3;;;;;:::i;:::-;;;;48255:103;;;;48371:8;48364:15;;;;48037:348;;;:::o;49012:80::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49078:8:::1;49071:4;:15;;;;49012:80:::0;:::o;39096:233::-;39171:7;39207:30;:28;:30::i;:::-;39199:5;:38;39191:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;39304:10;39315:5;39304:17;;;;;;;;:::i;:::-;;;;;;;;;;39297:24;;39096:233;;;:::o;45063:29::-;;;;;;;;;;;;;:::o;45818:213::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45935:9:::1;45930:93;45954:9;;:16;;45950:1;:20;45930:93;;;46018:5;45990:11;:25;46002:9;;46012:1;46002:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;45990:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;45972:3;;;;;:::i;:::-;;;;45930:93;;;;45818:213:::0;;:::o;49220:98::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49301:11:::1;49291:7;:21;;;;;;;;;;;;:::i;:::-;;49220:98:::0;:::o;49690:126::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49791:17:::1;49772:16;:36;;;;49690:126:::0;:::o;44804:26::-;;;;;;;;;;;;;:::o;25454:239::-;25526:7;25546:13;25562:7;:16;25570:7;25562:16;;;;;;;;;;;;;;;;;;;;;25546:32;;25614:1;25597:19;;:5;:19;;;;25589:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25680:5;25673:12;;;25454:239;;;:::o;44591:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25184:208::-;25256:7;25301:1;25284:19;;:5;:19;;;;25276:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25368:9;:16;25378:5;25368:16;;;;;;;;;;;;;;;;25361:23;;25184:208;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;45099:35::-;;;;:::o;49098:116::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49191:17:::1;49175:13;:33;;;;49098:116:::0;:::o;45626:184::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45715:9:::1;45710:92;45734:9;;:16;;45730:1;:20;45710:92;;;45798:4;45770:11;:25;45782:9;;45792:1;45782:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;45770:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;45752:3;;;;;:::i;:::-;;;;45710:92;;;;45626:184:::0;;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;25929:104::-;25985:13;26018:7;26011:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25929:104;:::o;47500:531::-;47566:6;;;;;;;;;;;47565:7;47557:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;47606:14;47623:13;:11;:13::i;:::-;47606:30;;47665:1;47651:11;:15;47643:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47728:13;;47713:11;:28;;47705:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;47821:9;;47806:11;47797:6;:20;;;;:::i;:::-;:33;;47789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47892:11;47885:4;;:18;;;;:::i;:::-;47872:9;:31;;47864:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47944:9;47956:1;47944:13;;47939:84;47964:11;47959:1;:16;47939:84;;47990:33;48000:10;48021:1;48012:6;:10;;;;:::i;:::-;47990:9;:33::i;:::-;47977:3;;;;;:::i;:::-;;;;47939:84;;;;47550:481;47500:531;:::o;27612:155::-;27707:52;27726:12;:10;:12::i;:::-;27740:8;27750;27707:18;:52::i;:::-;27612:155;;:::o;44835:33::-;;;;;;;;;;;;;:::o;45012:44::-;;;;:::o;28735:328::-;28910:41;28929:12;:10;:12::i;:::-;28943:7;28910:18;:41::i;:::-;28902:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29016:39;29030:4;29036:2;29040:7;29049:5;29016:13;:39::i;:::-;28735:328;;;;:::o;44968:37::-;;;;:::o;44617:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48391:423::-;48489:13;48530:16;48538:7;48530;:16::i;:::-;48514:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;48620:28;48651:10;:8;:10::i;:::-;48620:41;;48706:1;48681:14;48675:28;:32;:133;;;;;;;;;;;;;;;;;48743:14;48759:18;:7;:16;:18::i;:::-;48779:13;48726:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48675:133;48668:140;;;48391:423;;;:::o;48900:104::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48992:6:::1;48971:18;:27;;;;48900:104:::0;:::o;44729:31::-;;;;:::o;49324:122::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49423:17:::1;49407:13;:33;;;;;;;;;;;;:::i;:::-;;49324:122:::0;:::o;46039:927::-;46151:1;46137:11;:15;46129:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;46200:14;46217:13;:11;:13::i;:::-;46200:30;;46270:4;46260:6;:14;;46252:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;46344:9;;46329:11;46320:6;:20;;;;:::i;:::-;:33;;46312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46399:17;;;;;;;;;;;46391:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;46463:11;:23;46475:10;46463:23;;;;;;;;;;;;;;;;;;;;;;;;;46455:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;46596:16;;46581:11;46548:18;:30;46567:10;46548:30;;;;;;;;;;;;;;;;:44;;;;:::i;:::-;:64;;46526:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;46728:16;;46714:11;:30;;;;:::i;:::-;46701:9;:43;;46679:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;46839:11;46805:18;:30;46824:10;46805:30;;;;;;;;;;;;;;;;:45;;;;;;;:::i;:::-;;;;;;;;46868:9;46880:1;46868:13;;46863:89;46888:11;46883:1;:16;46863:89;;46919:33;46929:10;46950:1;46941:6;:10;;;;:::i;:::-;46919:9;:33::i;:::-;46901:3;;;;;:::i;:::-;;;;46863:89;;;;46117:849;46039:927;:::o;27838:164::-;27935:4;27959:18;:25;27978:5;27959:25;;;;;;;;;;;;;;;:35;27985:8;27959:35;;;;;;;;;;;;;;;;;;;;;;;;;27952:42;;27838:164;;;;:::o;47137:278::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47304:9:::1;;47292:8;47276:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;47254:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;47376:31;47386:10;47398:8;47376:9;:31::i;:::-;47137:278:::0;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;24815:305::-;24917:4;24969:25;24954:40;;;:11;:40;;;;:105;;;;25026:33;25011:48;;;:11;:48;;;;24954:105;:158;;;;25076:36;25100:11;25076:23;:36::i;:::-;24954:158;24934:178;;24815:305;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;30573:127::-;30638:4;30690:1;30662:30;;:7;:16;30670:7;30662:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30655:37;;30573:127;;;:::o;34555:174::-;34657:2;34630:15;:24;34646:7;34630:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34713:7;34709:2;34675:46;;34684:23;34699:7;34684:14;:23::i;:::-;34675:46;;;;;;;;;;;;34555:174;;:::o;30867:348::-;30960:4;30985:16;30993:7;30985;:16::i;:::-;30977:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31061:13;31077:23;31092:7;31077:14;:23::i;:::-;31061:39;;31130:5;31119:16;;:7;:16;;;:51;;;;31163:7;31139:31;;:20;31151:7;31139:11;:20::i;:::-;:31;;;31119:51;:87;;;;31174:32;31191:5;31198:7;31174:16;:32::i;:::-;31119:87;31111:96;;;30867:348;;;;:::o;33859:578::-;34018:4;33991:31;;:23;34006:7;33991:14;:23::i;:::-;:31;;;33983:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34101:1;34087:16;;:2;:16;;;;34079:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34157:39;34178:4;34184:2;34188:7;34157:20;:39::i;:::-;34261:29;34278:1;34282:7;34261:8;:29::i;:::-;34322:1;34303:9;:15;34313:4;34303:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34351:1;34334:9;:13;34344:2;34334:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34382:2;34363:7;:16;34371:7;34363:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34421:7;34417:2;34402:27;;34411:4;34402:27;;;;;;;;;;;;33859:578;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;31557:110::-;31633:26;31643:2;31647:7;31633:26;;;;;;;;;;;;:9;:26::i;:::-;31557:110;;:::o;34871:315::-;35026:8;35017:17;;:5;:17;;;;35009:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35113:8;35075:18;:25;35094:5;35075:25;;;;;;;;;;;;;;;:35;35101:8;35075:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35159:8;35137:41;;35152:5;35137:41;;;35169:8;35137:41;;;;;;:::i;:::-;;;;;;;;34871:315;;;:::o;29945:::-;30102:28;30112:4;30118:2;30122:7;30102:9;:28::i;:::-;30149:48;30172:4;30178:2;30182:7;30191:5;30149:22;:48::i;:::-;30141:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29945:315;;;;:::o;45436:102::-;45496:13;45525:7;45518:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45436:102;:::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;16511:157::-;16596:4;16635:25;16620:40;;;:11;:40;;;;16613:47;;16511:157;;;:::o;39942:589::-;40086:45;40113:4;40119:2;40123:7;40086:26;:45::i;:::-;40164:1;40148:18;;:4;:18;;;40144:187;;;40183:40;40215:7;40183:31;:40::i;:::-;40144:187;;;40253:2;40245:10;;:4;:10;;;40241:90;;40272:47;40305:4;40311:7;40272:32;:47::i;:::-;40241:90;40144:187;40359:1;40345:16;;:2;:16;;;40341:183;;;40378:45;40415:7;40378:36;:45::i;:::-;40341:183;;;40451:4;40445:10;;:2;:10;;;40441:83;;40472:40;40500:2;40504:7;40472:27;:40::i;:::-;40441:83;40341:183;39942:589;;;:::o;31894:321::-;32024:18;32030:2;32034:7;32024:5;:18::i;:::-;32075:54;32106:1;32110:2;32114:7;32123:5;32075:22;:54::i;:::-;32053:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31894:321;;;:::o;35751:799::-;35906:4;35927:15;:2;:13;;;:15::i;:::-;35923:620;;;35979:2;35963:36;;;36000:12;:10;:12::i;:::-;36014:4;36020:7;36029:5;35963:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35959:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36222:1;36205:6;:13;:18;36201:272;;;36248:60;;;;;;;;;;:::i;:::-;;;;;;;;36201:272;36423:6;36417:13;36408:6;36404:2;36400:15;36393:38;35959:529;36096:41;;;36086:51;;;:6;:51;;;;36079:58;;;;;35923:620;36527:4;36520:11;;35751:799;;;;;;;:::o;37122:126::-;;;;:::o;41254:164::-;41358:10;:17;;;;41331:15;:24;41347:7;41331:24;;;;;;;;;;;:44;;;;41386:10;41402:7;41386:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41254:164;:::o;42045:988::-;42311:22;42361:1;42336:22;42353:4;42336:16;:22::i;:::-;:26;;;;:::i;:::-;42311:51;;42373:18;42394:17;:26;42412:7;42394:26;;;;;;;;;;;;42373:47;;42541:14;42527:10;:28;42523:328;;42572:19;42594:12;:18;42607:4;42594:18;;;;;;;;;;;;;;;:34;42613:14;42594:34;;;;;;;;;;;;42572:56;;42678:11;42645:12;:18;42658:4;42645:18;;;;;;;;;;;;;;;:30;42664:10;42645:30;;;;;;;;;;;:44;;;;42795:10;42762:17;:30;42780:11;42762:30;;;;;;;;;;;:43;;;;42557:294;42523:328;42947:17;:26;42965:7;42947:26;;;;;;;;;;;42940:33;;;42991:12;:18;43004:4;42991:18;;;;;;;;;;;;;;;:34;43010:14;42991:34;;;;;;;;;;;42984:41;;;42126:907;;42045:988;;:::o;43328:1079::-;43581:22;43626:1;43606:10;:17;;;;:21;;;;:::i;:::-;43581:46;;43638:18;43659:15;:24;43675:7;43659:24;;;;;;;;;;;;43638:45;;44010:19;44032:10;44043:14;44032:26;;;;;;;;:::i;:::-;;;;;;;;;;44010:48;;44096:11;44071:10;44082;44071:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;44207:10;44176:15;:28;44192:11;44176:28;;;;;;;;;;;:41;;;;44348:15;:24;44364:7;44348:24;;;;;;;;;;;44341:31;;;44383:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43399:1008;;;43328:1079;:::o;40832:221::-;40917:14;40934:20;40951:2;40934:16;:20::i;:::-;40917:37;;40992:7;40965:12;:16;40978:2;40965:16;;;;;;;;;;;;;;;:24;40982:6;40965:24;;;;;;;;;;;:34;;;;41039:6;41010:17;:26;41028:7;41010:26;;;;;;;;;;;:35;;;;40906:147;40832:221;;:::o;32551:382::-;32645:1;32631:16;;:2;:16;;;;32623:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32704:16;32712:7;32704;:16::i;:::-;32703:17;32695:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32766:45;32795:1;32799:2;32803:7;32766:20;:45::i;:::-;32841:1;32824:9;:13;32834:2;32824:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32872:2;32853:7;:16;32861:7;32853:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32917:7;32913:2;32892:33;;32909:1;32892:33;;;;;;;;;;;;32551:382;;:::o;6367:387::-;6427:4;6635:12;6702:7;6690:20;6682:28;;6745:1;6738:4;:8;6731:15;;;6367:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:329::-;5939:6;5988:2;5976:9;5967:7;5963:23;5959:32;5956:119;;;5994:79;;:::i;:::-;5956:119;6114:1;6139:53;6184:7;6175:6;6164:9;6160:22;6139:53;:::i;:::-;6129:63;;6085:117;5880:329;;;;:::o;6215:619::-;6292:6;6300;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6738:2;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6709:118;6215:619;;;;;:::o;6840:114::-;6907:6;6941:5;6935:12;6925:22;;6840:114;;;:::o;6960:184::-;7059:11;7093:6;7088:3;7081:19;7133:4;7128:3;7124:14;7109:29;;6960:184;;;;:::o;7150:132::-;7217:4;7240:3;7232:11;;7270:4;7265:3;7261:14;7253:22;;7150:132;;;:::o;7288:108::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7288:108;;:::o;7402:179::-;7471:10;7492:46;7534:3;7526:6;7492:46;:::i;:::-;7570:4;7565:3;7561:14;7547:28;;7402:179;;;;:::o;7587:113::-;7657:4;7689;7684:3;7680:14;7672:22;;7587:113;;;:::o;7736:732::-;7855:3;7884:54;7932:5;7884:54;:::i;:::-;7954:86;8033:6;8028:3;7954:86;:::i;:::-;7947:93;;8064:56;8114:5;8064:56;:::i;:::-;8143:7;8174:1;8159:284;8184:6;8181:1;8178:13;8159:284;;;8260:6;8254:13;8287:63;8346:3;8331:13;8287:63;:::i;:::-;8280:70;;8373:60;8426:6;8373:60;:::i;:::-;8363:70;;8219:224;8206:1;8203;8199:9;8194:14;;8159:284;;;8163:14;8459:3;8452:10;;7860:608;;;7736:732;;;;:::o;8474:373::-;8617:4;8655:2;8644:9;8640:18;8632:26;;8704:9;8698:4;8694:20;8690:1;8679:9;8675:17;8668:47;8732:108;8835:4;8826:6;8732:108;:::i;:::-;8724:116;;8474:373;;;;:::o;8853:117::-;8962:1;8959;8952:12;8976:117;9085:1;9082;9075:12;9099:117;9208:1;9205;9198:12;9239:568;9312:8;9322:6;9372:3;9365:4;9357:6;9353:17;9349:27;9339:122;;9380:79;;:::i;:::-;9339:122;9493:6;9480:20;9470:30;;9523:18;9515:6;9512:30;9509:117;;;9545:79;;:::i;:::-;9509:117;9659:4;9651:6;9647:17;9635:29;;9713:3;9705:4;9697:6;9693:17;9683:8;9679:32;9676:41;9673:128;;;9720:79;;:::i;:::-;9673:128;9239:568;;;;;:::o;9813:559::-;9899:6;9907;9956:2;9944:9;9935:7;9931:23;9927:32;9924:119;;;9962:79;;:::i;:::-;9924:119;10110:1;10099:9;10095:17;10082:31;10140:18;10132:6;10129:30;10126:117;;;10162:79;;:::i;:::-;10126:117;10275:80;10347:7;10338:6;10327:9;10323:22;10275:80;:::i;:::-;10257:98;;;;10053:312;9813:559;;;;;:::o;10378:117::-;10487:1;10484;10477:12;10501:180;10549:77;10546:1;10539:88;10646:4;10643:1;10636:15;10670:4;10667:1;10660:15;10687:281;10770:27;10792:4;10770:27;:::i;:::-;10762:6;10758:40;10900:6;10888:10;10885:22;10864:18;10852:10;10849:34;10846:62;10843:88;;;10911:18;;:::i;:::-;10843:88;10951:10;10947:2;10940:22;10730:238;10687:281;;:::o;10974:129::-;11008:6;11035:20;;:::i;:::-;11025:30;;11064:33;11092:4;11084:6;11064:33;:::i;:::-;10974:129;;;:::o;11109:308::-;11171:4;11261:18;11253:6;11250:30;11247:56;;;11283:18;;:::i;:::-;11247:56;11321:29;11343:6;11321:29;:::i;:::-;11313:37;;11405:4;11399;11395:15;11387:23;;11109:308;;;:::o;11423:154::-;11507:6;11502:3;11497;11484:30;11569:1;11560:6;11555:3;11551:16;11544:27;11423:154;;;:::o;11583:412::-;11661:5;11686:66;11702:49;11744:6;11702:49;:::i;:::-;11686:66;:::i;:::-;11677:75;;11775:6;11768:5;11761:21;11813:4;11806:5;11802:16;11851:3;11842:6;11837:3;11833:16;11830:25;11827:112;;;11858:79;;:::i;:::-;11827:112;11948:41;11982:6;11977:3;11972;11948:41;:::i;:::-;11667:328;11583:412;;;;;:::o;12015:340::-;12071:5;12120:3;12113:4;12105:6;12101:17;12097:27;12087:122;;12128:79;;:::i;:::-;12087:122;12245:6;12232:20;12270:79;12345:3;12337:6;12330:4;12322:6;12318:17;12270:79;:::i;:::-;12261:88;;12077:278;12015:340;;;;:::o;12361:509::-;12430:6;12479:2;12467:9;12458:7;12454:23;12450:32;12447:119;;;12485:79;;:::i;:::-;12447:119;12633:1;12622:9;12618:17;12605:31;12663:18;12655:6;12652:30;12649:117;;;12685:79;;:::i;:::-;12649:117;12790:63;12845:7;12836:6;12825:9;12821:22;12790:63;:::i;:::-;12780:73;;12576:287;12361:509;;;;:::o;12876:468::-;12941:6;12949;12998:2;12986:9;12977:7;12973:23;12969:32;12966:119;;;13004:79;;:::i;:::-;12966:119;13124:1;13149:53;13194:7;13185:6;13174:9;13170:22;13149:53;:::i;:::-;13139:63;;13095:117;13251:2;13277:50;13319:7;13310:6;13299:9;13295:22;13277:50;:::i;:::-;13267:60;;13222:115;12876:468;;;;;:::o;13350:307::-;13411:4;13501:18;13493:6;13490:30;13487:56;;;13523:18;;:::i;:::-;13487:56;13561:29;13583:6;13561:29;:::i;:::-;13553:37;;13645:4;13639;13635:15;13627:23;;13350:307;;;:::o;13663:410::-;13740:5;13765:65;13781:48;13822:6;13781:48;:::i;:::-;13765:65;:::i;:::-;13756:74;;13853:6;13846:5;13839:21;13891:4;13884:5;13880:16;13929:3;13920:6;13915:3;13911:16;13908:25;13905:112;;;13936:79;;:::i;:::-;13905:112;14026:41;14060:6;14055:3;14050;14026:41;:::i;:::-;13746:327;13663:410;;;;;:::o;14092:338::-;14147:5;14196:3;14189:4;14181:6;14177:17;14173:27;14163:122;;14204:79;;:::i;:::-;14163:122;14321:6;14308:20;14346:78;14420:3;14412:6;14405:4;14397:6;14393:17;14346:78;:::i;:::-;14337:87;;14153:277;14092:338;;;;:::o;14436:943::-;14531:6;14539;14547;14555;14604:3;14592:9;14583:7;14579:23;14575:33;14572:120;;;14611:79;;:::i;:::-;14572:120;14731:1;14756:53;14801:7;14792:6;14781:9;14777:22;14756:53;:::i;:::-;14746:63;;14702:117;14858:2;14884:53;14929:7;14920:6;14909:9;14905:22;14884:53;:::i;:::-;14874:63;;14829:118;14986:2;15012:53;15057:7;15048:6;15037:9;15033:22;15012:53;:::i;:::-;15002:63;;14957:118;15142:2;15131:9;15127:18;15114:32;15173:18;15165:6;15162:30;15159:117;;;15195:79;;:::i;:::-;15159:117;15300:62;15354:7;15345:6;15334:9;15330:22;15300:62;:::i;:::-;15290:72;;15085:287;14436:943;;;;;;;:::o;15385:474::-;15453:6;15461;15510:2;15498:9;15489:7;15485:23;15481:32;15478:119;;;15516:79;;:::i;:::-;15478:119;15636:1;15661:53;15706:7;15697:6;15686:9;15682:22;15661:53;:::i;:::-;15651:63;;15607:117;15763:2;15789:53;15834:7;15825:6;15814:9;15810:22;15789:53;:::i;:::-;15779:63;;15734:118;15385:474;;;;;:::o;15865:182::-;16005:34;16001:1;15993:6;15989:14;15982:58;15865:182;:::o;16053:366::-;16195:3;16216:67;16280:2;16275:3;16216:67;:::i;:::-;16209:74;;16292:93;16381:3;16292:93;:::i;:::-;16410:2;16405:3;16401:12;16394:19;;16053:366;;;:::o;16425:419::-;16591:4;16629:2;16618:9;16614:18;16606:26;;16678:9;16672:4;16668:20;16664:1;16653:9;16649:17;16642:47;16706:131;16832:4;16706:131;:::i;:::-;16698:139;;16425:419;;;:::o;16850:180::-;16898:77;16895:1;16888:88;16995:4;16992:1;16985:15;17019:4;17016:1;17009:15;17036:320;17080:6;17117:1;17111:4;17107:12;17097:22;;17164:1;17158:4;17154:12;17185:18;17175:81;;17241:4;17233:6;17229:17;17219:27;;17175:81;17303:2;17295:6;17292:14;17272:18;17269:38;17266:84;;;17322:18;;:::i;:::-;17266:84;17087:269;17036:320;;;:::o;17362:231::-;17502:34;17498:1;17490:6;17486:14;17479:58;17571:14;17566:2;17558:6;17554:15;17547:39;17362:231;:::o;17599:366::-;17741:3;17762:67;17826:2;17821:3;17762:67;:::i;:::-;17755:74;;17838:93;17927:3;17838:93;:::i;:::-;17956:2;17951:3;17947:12;17940:19;;17599:366;;;:::o;17971:419::-;18137:4;18175:2;18164:9;18160:18;18152:26;;18224:9;18218:4;18214:20;18210:1;18199:9;18195:17;18188:47;18252:131;18378:4;18252:131;:::i;:::-;18244:139;;17971:419;;;:::o;18396:220::-;18536:34;18532:1;18524:6;18520:14;18513:58;18605:3;18600:2;18592:6;18588:15;18581:28;18396:220;:::o;18622:366::-;18764:3;18785:67;18849:2;18844:3;18785:67;:::i;:::-;18778:74;;18861:93;18950:3;18861:93;:::i;:::-;18979:2;18974:3;18970:12;18963:19;;18622:366;;;:::o;18994:419::-;19160:4;19198:2;19187:9;19183:18;19175:26;;19247:9;19241:4;19237:20;19233:1;19222:9;19218:17;19211:47;19275:131;19401:4;19275:131;:::i;:::-;19267:139;;18994:419;;;:::o;19419:243::-;19559:34;19555:1;19547:6;19543:14;19536:58;19628:26;19623:2;19615:6;19611:15;19604:51;19419:243;:::o;19668:366::-;19810:3;19831:67;19895:2;19890:3;19831:67;:::i;:::-;19824:74;;19907:93;19996:3;19907:93;:::i;:::-;20025:2;20020:3;20016:12;20009:19;;19668:366;;;:::o;20040:419::-;20206:4;20244:2;20233:9;20229:18;20221:26;;20293:9;20287:4;20283:20;20279:1;20268:9;20264:17;20257:47;20321:131;20447:4;20321:131;:::i;:::-;20313:139;;20040:419;;;:::o;20465:236::-;20605:34;20601:1;20593:6;20589:14;20582:58;20674:19;20669:2;20661:6;20657:15;20650:44;20465:236;:::o;20707:366::-;20849:3;20870:67;20934:2;20929:3;20870:67;:::i;:::-;20863:74;;20946:93;21035:3;20946:93;:::i;:::-;21064:2;21059:3;21055:12;21048:19;;20707:366;;;:::o;21079:419::-;21245:4;21283:2;21272:9;21268:18;21260:26;;21332:9;21326:4;21322:20;21318:1;21307:9;21303:17;21296:47;21360:131;21486:4;21360:131;:::i;:::-;21352:139;;21079:419;;;:::o;21504:230::-;21644:34;21640:1;21632:6;21628:14;21621:58;21713:13;21708:2;21700:6;21696:15;21689:38;21504:230;:::o;21740:366::-;21882:3;21903:67;21967:2;21962:3;21903:67;:::i;:::-;21896:74;;21979:93;22068:3;21979:93;:::i;:::-;22097:2;22092:3;22088:12;22081:19;;21740:366;;;:::o;22112:419::-;22278:4;22316:2;22305:9;22301:18;22293:26;;22365:9;22359:4;22355:20;22351:1;22340:9;22336:17;22329:47;22393:131;22519:4;22393:131;:::i;:::-;22385:139;;22112:419;;;:::o;22537:147::-;22638:11;22675:3;22660:18;;22537:147;;;;:::o;22690:114::-;;:::o;22810:398::-;22969:3;22990:83;23071:1;23066:3;22990:83;:::i;:::-;22983:90;;23082:93;23171:3;23082:93;:::i;:::-;23200:1;23195:3;23191:11;23184:18;;22810:398;;;:::o;23214:379::-;23398:3;23420:147;23563:3;23420:147;:::i;:::-;23413:154;;23584:3;23577:10;;23214:379;;;:::o;23599:180::-;23647:77;23644:1;23637:88;23744:4;23741:1;23734:15;23768:4;23765:1;23758:15;23785:180;23833:77;23830:1;23823:88;23930:4;23927:1;23920:15;23954:4;23951:1;23944:15;23971:233;24010:3;24033:24;24051:5;24033:24;:::i;:::-;24024:33;;24079:66;24072:5;24069:77;24066:103;;;24149:18;;:::i;:::-;24066:103;24196:1;24189:5;24185:13;24178:20;;23971:233;;;:::o;24210:231::-;24350:34;24346:1;24338:6;24334:14;24327:58;24419:14;24414:2;24406:6;24402:15;24395:39;24210:231;:::o;24447:366::-;24589:3;24610:67;24674:2;24669:3;24610:67;:::i;:::-;24603:74;;24686:93;24775:3;24686:93;:::i;:::-;24804:2;24799:3;24795:12;24788:19;;24447:366;;;:::o;24819:419::-;24985:4;25023:2;25012:9;25008:18;25000:26;;25072:9;25066:4;25062:20;25058:1;25047:9;25043:17;25036:47;25100:131;25226:4;25100:131;:::i;:::-;25092:139;;24819:419;;;:::o;25244:228::-;25384:34;25380:1;25372:6;25368:14;25361:58;25453:11;25448:2;25440:6;25436:15;25429:36;25244:228;:::o;25478:366::-;25620:3;25641:67;25705:2;25700:3;25641:67;:::i;:::-;25634:74;;25717:93;25806:3;25717:93;:::i;:::-;25835:2;25830:3;25826:12;25819:19;;25478:366;;;:::o;25850:419::-;26016:4;26054:2;26043:9;26039:18;26031:26;;26103:9;26097:4;26093:20;26089:1;26078:9;26074:17;26067:47;26131:131;26257:4;26131:131;:::i;:::-;26123:139;;25850:419;;;:::o;26275:229::-;26415:34;26411:1;26403:6;26399:14;26392:58;26484:12;26479:2;26471:6;26467:15;26460:37;26275:229;:::o;26510:366::-;26652:3;26673:67;26737:2;26732:3;26673:67;:::i;:::-;26666:74;;26749:93;26838:3;26749:93;:::i;:::-;26867:2;26862:3;26858:12;26851:19;;26510:366;;;:::o;26882:419::-;27048:4;27086:2;27075:9;27071:18;27063:26;;27135:9;27129:4;27125:20;27121:1;27110:9;27106:17;27099:47;27163:131;27289:4;27163:131;:::i;:::-;27155:139;;26882:419;;;:::o;27307:172::-;27447:24;27443:1;27435:6;27431:14;27424:48;27307:172;:::o;27485:366::-;27627:3;27648:67;27712:2;27707:3;27648:67;:::i;:::-;27641:74;;27724:93;27813:3;27724:93;:::i;:::-;27842:2;27837:3;27833:12;27826:19;;27485:366;;;:::o;27857:419::-;28023:4;28061:2;28050:9;28046:18;28038:26;;28110:9;28104:4;28100:20;28096:1;28085:9;28081:17;28074:47;28138:131;28264:4;28138:131;:::i;:::-;28130:139;;27857:419;;;:::o;28282:177::-;28422:29;28418:1;28410:6;28406:14;28399:53;28282:177;:::o;28465:366::-;28607:3;28628:67;28692:2;28687:3;28628:67;:::i;:::-;28621:74;;28704:93;28793:3;28704:93;:::i;:::-;28822:2;28817:3;28813:12;28806:19;;28465:366;;;:::o;28837:419::-;29003:4;29041:2;29030:9;29026:18;29018:26;;29090:9;29084:4;29080:20;29076:1;29065:9;29061:17;29054:47;29118:131;29244:4;29118:131;:::i;:::-;29110:139;;28837:419;;;:::o;29262:223::-;29402:34;29398:1;29390:6;29386:14;29379:58;29471:6;29466:2;29458:6;29454:15;29447:31;29262:223;:::o;29491:366::-;29633:3;29654:67;29718:2;29713:3;29654:67;:::i;:::-;29647:74;;29730:93;29819:3;29730:93;:::i;:::-;29848:2;29843:3;29839:12;29832:19;;29491:366;;;:::o;29863:419::-;30029:4;30067:2;30056:9;30052:18;30044:26;;30116:9;30110:4;30106:20;30102:1;30091:9;30087:17;30080:47;30144:131;30270:4;30144:131;:::i;:::-;30136:139;;29863:419;;;:::o;30288:305::-;30328:3;30347:20;30365:1;30347:20;:::i;:::-;30342:25;;30381:20;30399:1;30381:20;:::i;:::-;30376:25;;30535:1;30467:66;30463:74;30460:1;30457:81;30454:107;;;30541:18;;:::i;:::-;30454:107;30585:1;30582;30578:9;30571:16;;30288:305;;;;:::o;30599:172::-;30739:24;30735:1;30727:6;30723:14;30716:48;30599:172;:::o;30777:366::-;30919:3;30940:67;31004:2;30999:3;30940:67;:::i;:::-;30933:74;;31016:93;31105:3;31016:93;:::i;:::-;31134:2;31129:3;31125:12;31118:19;;30777:366;;;:::o;31149:419::-;31315:4;31353:2;31342:9;31338:18;31330:26;;31402:9;31396:4;31392:20;31388:1;31377:9;31373:17;31366:47;31430:131;31556:4;31430:131;:::i;:::-;31422:139;;31149:419;;;:::o;31574:348::-;31614:7;31637:20;31655:1;31637:20;:::i;:::-;31632:25;;31671:20;31689:1;31671:20;:::i;:::-;31666:25;;31859:1;31791:66;31787:74;31784:1;31781:81;31776:1;31769:9;31762:17;31758:105;31755:131;;;31866:18;;:::i;:::-;31755:131;31914:1;31911;31907:9;31896:20;;31574:348;;;;:::o;31928:168::-;32068:20;32064:1;32056:6;32052:14;32045:44;31928:168;:::o;32102:366::-;32244:3;32265:67;32329:2;32324:3;32265:67;:::i;:::-;32258:74;;32341:93;32430:3;32341:93;:::i;:::-;32459:2;32454:3;32450:12;32443:19;;32102:366;;;:::o;32474:419::-;32640:4;32678:2;32667:9;32663:18;32655:26;;32727:9;32721:4;32717:20;32713:1;32702:9;32698:17;32691:47;32755:131;32881:4;32755:131;:::i;:::-;32747:139;;32474:419;;;:::o;32899:234::-;33039:34;33035:1;33027:6;33023:14;33016:58;33108:17;33103:2;33095:6;33091:15;33084:42;32899:234;:::o;33139:366::-;33281:3;33302:67;33366:2;33361:3;33302:67;:::i;:::-;33295:74;;33378:93;33467:3;33378:93;:::i;:::-;33496:2;33491:3;33487:12;33480:19;;33139:366;;;:::o;33511:419::-;33677:4;33715:2;33704:9;33700:18;33692:26;;33764:9;33758:4;33754:20;33750:1;33739:9;33735:17;33728:47;33792:131;33918:4;33792:131;:::i;:::-;33784:139;;33511:419;;;:::o;33936:148::-;34038:11;34075:3;34060:18;;33936:148;;;;:::o;34090:377::-;34196:3;34224:39;34257:5;34224:39;:::i;:::-;34279:89;34361:6;34356:3;34279:89;:::i;:::-;34272:96;;34377:52;34422:6;34417:3;34410:4;34403:5;34399:16;34377:52;:::i;:::-;34454:6;34449:3;34445:16;34438:23;;34200:267;34090:377;;;;:::o;34473:141::-;34522:4;34545:3;34537:11;;34568:3;34565:1;34558:14;34602:4;34599:1;34589:18;34581:26;;34473:141;;;:::o;34644:845::-;34747:3;34784:5;34778:12;34813:36;34839:9;34813:36;:::i;:::-;34865:89;34947:6;34942:3;34865:89;:::i;:::-;34858:96;;34985:1;34974:9;34970:17;35001:1;34996:137;;;;35147:1;35142:341;;;;34963:520;;34996:137;35080:4;35076:9;35065;35061:25;35056:3;35049:38;35116:6;35111:3;35107:16;35100:23;;34996:137;;35142:341;35209:38;35241:5;35209:38;:::i;:::-;35269:1;35283:154;35297:6;35294:1;35291:13;35283:154;;;35371:7;35365:14;35361:1;35356:3;35352:11;35345:35;35421:1;35412:7;35408:15;35397:26;;35319:4;35316:1;35312:12;35307:17;;35283:154;;;35466:6;35461:3;35457:16;35450:23;;35149:334;;34963:520;;34751:738;;34644:845;;;;:::o;35495:589::-;35720:3;35742:95;35833:3;35824:6;35742:95;:::i;:::-;35735:102;;35854:95;35945:3;35936:6;35854:95;:::i;:::-;35847:102;;35966:92;36054:3;36045:6;35966:92;:::i;:::-;35959:99;;36075:3;36068:10;;35495:589;;;;;;:::o;36090:181::-;36230:33;36226:1;36218:6;36214:14;36207:57;36090:181;:::o;36277:366::-;36419:3;36440:67;36504:2;36499:3;36440:67;:::i;:::-;36433:74;;36516:93;36605:3;36516:93;:::i;:::-;36634:2;36629:3;36625:12;36618:19;;36277:366;;;:::o;36649:419::-;36815:4;36853:2;36842:9;36838:18;36830:26;;36902:9;36896:4;36892:20;36888:1;36877:9;36873:17;36866:47;36930:131;37056:4;36930:131;:::i;:::-;36922:139;;36649:419;;;:::o;37074:170::-;37214:22;37210:1;37202:6;37198:14;37191:46;37074:170;:::o;37250:366::-;37392:3;37413:67;37477:2;37472:3;37413:67;:::i;:::-;37406:74;;37489:93;37578:3;37489:93;:::i;:::-;37607:2;37602:3;37598:12;37591:19;;37250:366;;;:::o;37622:419::-;37788:4;37826:2;37815:9;37811:18;37803:26;;37875:9;37869:4;37865:20;37861:1;37850:9;37846:17;37839:47;37903:131;38029:4;37903:131;:::i;:::-;37895:139;;37622:419;;;:::o;38047:172::-;38187:24;38183:1;38175:6;38171:14;38164:48;38047:172;:::o;38225:366::-;38367:3;38388:67;38452:2;38447:3;38388:67;:::i;:::-;38381:74;;38464:93;38553:3;38464:93;:::i;:::-;38582:2;38577:3;38573:12;38566:19;;38225:366;;;:::o;38597:419::-;38763:4;38801:2;38790:9;38786:18;38778:26;;38850:9;38844:4;38840:20;38836:1;38825:9;38821:17;38814:47;38878:131;39004:4;38878:131;:::i;:::-;38870:139;;38597:419;;;:::o;39022:173::-;39162:25;39158:1;39150:6;39146:14;39139:49;39022:173;:::o;39201:366::-;39343:3;39364:67;39428:2;39423:3;39364:67;:::i;:::-;39357:74;;39440:93;39529:3;39440:93;:::i;:::-;39558:2;39553:3;39549:12;39542:19;;39201:366;;;:::o;39573:419::-;39739:4;39777:2;39766:9;39762:18;39754:26;;39826:9;39820:4;39816:20;39812:1;39801:9;39797:17;39790:47;39854:131;39980:4;39854:131;:::i;:::-;39846:139;;39573:419;;;:::o;39998:174::-;40138:26;40134:1;40126:6;40122:14;40115:50;39998:174;:::o;40178:366::-;40320:3;40341:67;40405:2;40400:3;40341:67;:::i;:::-;40334:74;;40417:93;40506:3;40417:93;:::i;:::-;40535:2;40530:3;40526:12;40519:19;;40178:366;;;:::o;40550:419::-;40716:4;40754:2;40743:9;40739:18;40731:26;;40803:9;40797:4;40793:20;40789:1;40778:9;40774:17;40767:47;40831:131;40957:4;40831:131;:::i;:::-;40823:139;;40550:419;;;:::o;40975:178::-;41115:30;41111:1;41103:6;41099:14;41092:54;40975:178;:::o;41159:366::-;41301:3;41322:67;41386:2;41381:3;41322:67;:::i;:::-;41315:74;;41398:93;41487:3;41398:93;:::i;:::-;41516:2;41511:3;41507:12;41500:19;;41159:366;;;:::o;41531:419::-;41697:4;41735:2;41724:9;41720:18;41712:26;;41784:9;41778:4;41774:20;41770:1;41759:9;41755:17;41748:47;41812:131;41938:4;41812:131;:::i;:::-;41804:139;;41531:419;;;:::o;41956:170::-;42096:22;42092:1;42084:6;42080:14;42073:46;41956:170;:::o;42132:366::-;42274:3;42295:67;42359:2;42354:3;42295:67;:::i;:::-;42288:74;;42371:93;42460:3;42371:93;:::i;:::-;42489:2;42484:3;42480:12;42473:19;;42132:366;;;:::o;42504:419::-;42670:4;42708:2;42697:9;42693:18;42685:26;;42757:9;42751:4;42747:20;42743:1;42732:9;42728:17;42721:47;42785:131;42911:4;42785:131;:::i;:::-;42777:139;;42504:419;;;:::o;42929:225::-;43069:34;43065:1;43057:6;43053:14;43046:58;43138:8;43133:2;43125:6;43121:15;43114:33;42929:225;:::o;43160:366::-;43302:3;43323:67;43387:2;43382:3;43323:67;:::i;:::-;43316:74;;43399:93;43488:3;43399:93;:::i;:::-;43517:2;43512:3;43508:12;43501:19;;43160:366;;;:::o;43532:419::-;43698:4;43736:2;43725:9;43721:18;43713:26;;43785:9;43779:4;43775:20;43771:1;43760:9;43756:17;43749:47;43813:131;43939:4;43813:131;:::i;:::-;43805:139;;43532:419;;;:::o;43957:231::-;44097:34;44093:1;44085:6;44081:14;44074:58;44166:14;44161:2;44153:6;44149:15;44142:39;43957:231;:::o;44194:366::-;44336:3;44357:67;44421:2;44416:3;44357:67;:::i;:::-;44350:74;;44433:93;44522:3;44433:93;:::i;:::-;44551:2;44546:3;44542:12;44535:19;;44194:366;;;:::o;44566:419::-;44732:4;44770:2;44759:9;44755:18;44747:26;;44819:9;44813:4;44809:20;44805:1;44794:9;44790:17;44783:47;44847:131;44973:4;44847:131;:::i;:::-;44839:139;;44566:419;;;:::o;44991:228::-;45131:34;45127:1;45119:6;45115:14;45108:58;45200:11;45195:2;45187:6;45183:15;45176:36;44991:228;:::o;45225:366::-;45367:3;45388:67;45452:2;45447:3;45388:67;:::i;:::-;45381:74;;45464:93;45553:3;45464:93;:::i;:::-;45582:2;45577:3;45573:12;45566:19;;45225:366;;;:::o;45597:419::-;45763:4;45801:2;45790:9;45786:18;45778:26;;45850:9;45844:4;45840:20;45836:1;45825:9;45821:17;45814:47;45878:131;46004:4;45878:131;:::i;:::-;45870:139;;45597:419;;;:::o;46022:223::-;46162:34;46158:1;46150:6;46146:14;46139:58;46231:6;46226:2;46218:6;46214:15;46207:31;46022:223;:::o;46251:366::-;46393:3;46414:67;46478:2;46473:3;46414:67;:::i;:::-;46407:74;;46490:93;46579:3;46490:93;:::i;:::-;46608:2;46603:3;46599:12;46592:19;;46251:366;;;:::o;46623:419::-;46789:4;46827:2;46816:9;46812:18;46804:26;;46876:9;46870:4;46866:20;46862:1;46851:9;46847:17;46840:47;46904:131;47030:4;46904:131;:::i;:::-;46896:139;;46623:419;;;:::o;47048:191::-;47088:4;47108:20;47126:1;47108:20;:::i;:::-;47103:25;;47142:20;47160:1;47142:20;:::i;:::-;47137:25;;47181:1;47178;47175:8;47172:34;;;47186:18;;:::i;:::-;47172:34;47231:1;47228;47224:9;47216:17;;47048:191;;;;:::o;47245:175::-;47385:27;47381:1;47373:6;47369:14;47362:51;47245:175;:::o;47426:366::-;47568:3;47589:67;47653:2;47648:3;47589:67;:::i;:::-;47582:74;;47665:93;47754:3;47665:93;:::i;:::-;47783:2;47778:3;47774:12;47767:19;;47426:366;;;:::o;47798:419::-;47964:4;48002:2;47991:9;47987:18;47979:26;;48051:9;48045:4;48041:20;48037:1;48026:9;48022:17;48015:47;48079:131;48205:4;48079:131;:::i;:::-;48071:139;;47798:419;;;:::o;48223:237::-;48363:34;48359:1;48351:6;48347:14;48340:58;48432:20;48427:2;48419:6;48415:15;48408:45;48223:237;:::o;48466:366::-;48608:3;48629:67;48693:2;48688:3;48629:67;:::i;:::-;48622:74;;48705:93;48794:3;48705:93;:::i;:::-;48823:2;48818:3;48814:12;48807:19;;48466:366;;;:::o;48838:419::-;49004:4;49042:2;49031:9;49027:18;49019:26;;49091:9;49085:4;49081:20;49077:1;49066:9;49062:17;49055:47;49119:131;49245:4;49119:131;:::i;:::-;49111:139;;48838:419;;;:::o;49263:180::-;49311:77;49308:1;49301:88;49408:4;49405:1;49398:15;49432:4;49429:1;49422:15;49449:185;49489:1;49506:20;49524:1;49506:20;:::i;:::-;49501:25;;49540:20;49558:1;49540:20;:::i;:::-;49535:25;;49579:1;49569:35;;49584:18;;:::i;:::-;49569:35;49626:1;49623;49619:9;49614:14;;49449:185;;;;:::o;49640:176::-;49672:1;49689:20;49707:1;49689:20;:::i;:::-;49684:25;;49723:20;49741:1;49723:20;:::i;:::-;49718:25;;49762:1;49752:35;;49767:18;;:::i;:::-;49752:35;49808:1;49805;49801:9;49796:14;;49640:176;;;;:::o;49822:98::-;49873:6;49907:5;49901:12;49891:22;;49822:98;;;:::o;49926:168::-;50009:11;50043:6;50038:3;50031:19;50083:4;50078:3;50074:14;50059:29;;49926:168;;;;:::o;50100:360::-;50186:3;50214:38;50246:5;50214:38;:::i;:::-;50268:70;50331:6;50326:3;50268:70;:::i;:::-;50261:77;;50347:52;50392:6;50387:3;50380:4;50373:5;50369:16;50347:52;:::i;:::-;50424:29;50446:6;50424:29;:::i;:::-;50419:3;50415:39;50408:46;;50190:270;50100:360;;;;:::o;50466:640::-;50661:4;50699:3;50688:9;50684:19;50676:27;;50713:71;50781:1;50770:9;50766:17;50757:6;50713:71;:::i;:::-;50794:72;50862:2;50851:9;50847:18;50838:6;50794:72;:::i;:::-;50876;50944:2;50933:9;50929:18;50920:6;50876:72;:::i;:::-;50995:9;50989:4;50985:20;50980:2;50969:9;50965:18;50958:48;51023:76;51094:4;51085:6;51023:76;:::i;:::-;51015:84;;50466:640;;;;;;;:::o;51112:141::-;51168:5;51199:6;51193:13;51184:22;;51215:32;51241:5;51215:32;:::i;:::-;51112:141;;;;:::o;51259:349::-;51328:6;51377:2;51365:9;51356:7;51352:23;51348:32;51345:119;;;51383:79;;:::i;:::-;51345:119;51503:1;51528:63;51583:7;51574:6;51563:9;51559:22;51528:63;:::i;:::-;51518:73;;51474:127;51259:349;;;;:::o;51614:180::-;51662:77;51659:1;51652:88;51759:4;51756:1;51749:15;51783:4;51780:1;51773:15;51800:182;51940:34;51936:1;51928:6;51924:14;51917:58;51800:182;:::o;51988:366::-;52130:3;52151:67;52215:2;52210:3;52151:67;:::i;:::-;52144:74;;52227:93;52316:3;52227:93;:::i;:::-;52345:2;52340:3;52336:12;52329:19;;51988:366;;;:::o;52360:419::-;52526:4;52564:2;52553:9;52549:18;52541:26;;52613:9;52607:4;52603:20;52599:1;52588:9;52584:17;52577:47;52641:131;52767:4;52641:131;:::i;:::-;52633:139;;52360:419;;;:::o;52785:178::-;52925:30;52921:1;52913:6;52909:14;52902:54;52785:178;:::o;52969:366::-;53111:3;53132:67;53196:2;53191:3;53132:67;:::i;:::-;53125:74;;53208:93;53297:3;53208:93;:::i;:::-;53326:2;53321:3;53317:12;53310:19;;52969:366;;;:::o;53341:419::-;53507:4;53545:2;53534:9;53530:18;53522:26;;53594:9;53588:4;53584:20;53580:1;53569:9;53565:17;53558:47;53622:131;53748:4;53622:131;:::i;:::-;53614:139;;53341:419;;;:::o

Swarm Source

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