ERC-721
Overview
Max Total Supply
10,000 mutantgoblin
Holders
1,042
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 mutantgoblinLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
mutantgoblin
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-05 */ //SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/mutantgoblinwtf.sol pragma solidity ^0.8.4; /* mutantgoblinlol.sol U O */ contract mutantgoblin is Ownable, ERC721A { bytes32 public merkleRoot; uint256 public MAX_SUPPLY = 10000; uint256 constant public MAX_SUPPLY_PRIVATE_WHITELISTED = 0; uint256 public mintRatePublicWhitelist = 0 ether; uint256 public mintRatePublicSale = 0 ether; uint256 public DEV_MINTS; bool public paused = false; bool public revealed = true; bool public publicWhitelisted = false; bool public publicSale = true; uint256 public mintedPublicWhitelistAddressLimit = 0; uint256 public mintedPublicAddressLimit = 10; string public baseURI = ""; string public hiddenMetadataUri = ""; string constant public uriSuffix = ".json"; string public CONTRACT_URI; address public privateWLAddress = 0x20B19f16876E39E459A466b99a1d155eAA27a6d0; mapping(address => uint256) public numUserMints; address constant public mutantgoblinAddress = 0x20B19f16876E39E459A466b99a1d155eAA27a6d0; address public communityWallet = 0x24283f7268034edee23DDF9Db6Fdf2C51a3BCb04; address public teamWallet = 0xDd1F25FbB2c88052671e6180DB96aBA4e3823dAd; uint256 private mutantgoblinPayable; constructor() ERC721A("mutant goblin", "mutantgoblin") { } /* * $$$$$$$\ $$\ $$\ $$$$$$$$\ $$\ $$\ $$ __$$\ \__| $$ | $$ _____| $$ | \__| $$ | $$ | $$$$$$\ $$\ $$\ $$\ $$$$$$\ $$$$$$\ $$$$$$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ $$$$$$$ |$$ __$$\ $$ |\$$\ $$ |\____$$\\_$$ _| $$ __$$\ $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| $$ ____/ $$ | \__|$$ | \$$\$$ / $$$$$$$ | $$ | $$$$$$$$ | $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ $$ | $$ | $$ | \$$$ / $$ __$$ | $$ |$$\ $$ ____| $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ $$ | $$ | $$ | \$ / \$$$$$$$ | \$$$$ |\$$$$$$$\ $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \__| \__| \__| \_/ \_______| \____/ \_______| \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ function _startTokenId() internal view virtual override returns (uint256) { return 1; } function _verifyPublicWL(bytes32[] memory _proof) internal view returns (bool) { return MerkleProof.verify(_proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))); } function refundOverpay(uint256 price) private { if (msg.value > price) { (bool succ, ) = payable(msg.sender).call{ value: (msg.value - price) }(""); require(succ, "Transfer failed"); } } /* * $$$$$$$\ $$\ $$\ $$\ $$$$$$$$\ $$\ $$\ $$ __$$\ $$ | $$ |\__| $$ _____| $$ | \__| $$ | $$ |$$\ $$\ $$$$$$$\ $$ |$$\ $$$$$$$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ $$$$$$$ |$$ | $$ |$$ __$$\ $$ |$$ |$$ _____| $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| $$ ____/ $$ | $$ |$$ | $$ |$$ |$$ |$$ / $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ $$ | $$ | $$ |$$ | $$ |$$ |$$ |$$ | $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ $$ | \$$$$$$ |$$$$$$$ |$$ |$$ |\$$$$$$$\ $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \__| \______/ \_______/ \__|\__| \_______| \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ function publicMint(uint256 quantity) external payable mintCompliance(quantity) { uint256 price = mintRatePublicSale; uint256 currMints = numUserMints[msg.sender]; require(publicSale, "Public sale inactive"); require(currMints + quantity <= mintedPublicAddressLimit, "User max mint limit"); require(msg.value >= (price * quantity), "Not enough ETH sent"); numUserMints[msg.sender] = (currMints + quantity); _safeMint(msg.sender, quantity); mutantgoblinPayable += ((price * quantity) * 5) / 100; refundOverpay(price * quantity); } /* * $$\ $$\ $$\ $$$$$$$$\ $$\ $$\ $$ | $$ |\__| $$ _____| $$ | \__| $$ | $$ |$$\ $$$$$$\ $$\ $$\ $$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ \$$\ $$ |$$ |$$ __$$\ $$ | $$ | $$ | $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| \$$\$$ / $$ |$$$$$$$$ |$$ | $$ | $$ | $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ \$$$ / $$ |$$ ____|$$ | $$ | $$ | $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ \$ / $$ |\$$$$$$$\ \$$$$$\$$$$ | $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \_/ \__| \_______| \_____\____/ \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if (revealed) { return string(abi.encodePacked(baseURI, Strings.toString(_tokenId), uriSuffix)); } else { return hiddenMetadataUri; } } function contractURI() public view returns (string memory) { return CONTRACT_URI; } function verifyPublicWL(address _address, bytes32[] memory _proof) public view returns (bool) { return MerkleProof.verify(_proof, keccak256(abi.encodePacked(_address)), merkleRoot); } /* * $$$$$$\ $$$$$$$$\ $$\ $$\ $$ __$$\ $$ _____| $$ | \__| $$ / $$ |$$\ $$\ $$\ $$$$$$$\ $$$$$$\ $$$$$$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ $$ | $$ |$$ | $$ | $$ |$$ __$$\ $$ __$$\ $$ __$$\ $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| $$ | $$ |$$ | $$ | $$ |$$ | $$ |$$$$$$$$ |$$ | \__| $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ $$ | $$ |$$ | $$ | $$ |$$ | $$ |$$ ____|$$ | $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ $$$$$$ |\$$$$$\$$$$ |$$ | $$ |\$$$$$$$\ $$ | $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \______/ \_____\____/ \__| \__| \_______|\__| \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ function setPublicWhitelistedAddressLimit(uint256 _limit) public onlyOwner { mintedPublicWhitelistAddressLimit = _limit; } function setPublicAddressLimit(uint256 _limit) public onlyOwner { mintedPublicAddressLimit = _limit; } function setBaseURI(string memory _baseUri) public onlyOwner { baseURI = _baseUri; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function revealCollection(bool _revealed, string memory _baseUri) public onlyOwner { revealed = _revealed; baseURI = _baseUri; } function setContractURI(string memory _contractURI) public onlyOwner { CONTRACT_URI = _contractURI; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setPublicSale(bool _state) public onlyOwner { publicSale = _state; publicWhitelisted = !_state; } function setPublicMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function setCommunityWalletAddress(address _communityWalletAddress) public onlyOwner { communityWallet = _communityWalletAddress; } function setTeamWalletAddress(address _teamWalletAddress) public onlyOwner { teamWallet = _teamWalletAddress; } function withdraw() external payable onlyOwner { uint256 currBalance = address(this).balance; (bool succ, ) = payable(mutantgoblinAddress).call{ value: mutantgoblinPayable }(""); require(succ, "mutantgoblin transfer failed"); mutantgoblinPayable = 0; (succ, ) = payable(communityWallet).call{ value: (currBalance * 80) / 100 }(""); require(succ, "Community transfer failed"); (succ, ) = payable(teamWallet).call{ value: address(this).balance }(""); require(succ, "Team transfer failed"); } function mintToOwner(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) { _safeMint(receiver, quantity); } /* * $$\ $$\ $$\ $$\ $$$$$$\ $$\ $$$\ $$$ | $$ |\__|$$ __$$\ \__| $$$$\ $$$$ | $$$$$$\ $$$$$$$ |$$\ $$ / \__|$$\ $$$$$$\ $$$$$$\ $$$$$$$\ $$\$$\$$ $$ |$$ __$$\ $$ __$$ |$$ |$$$$\ $$ |$$ __$$\ $$ __$$\ $$ _____| $$ \$$$ $$ |$$ / $$ |$$ / $$ |$$ |$$ _| $$ |$$$$$$$$ |$$ | \__|\$$$$$$\ $$ |\$ /$$ |$$ | $$ |$$ | $$ |$$ |$$ | $$ |$$ ____|$$ | \____$$\ $$ | \_/ $$ |\$$$$$$ |\$$$$$$$ |$$ |$$ | $$ |\$$$$$$$\ $$ | $$$$$$$ | \__| \__| \______/ \_______|\__|\__| \__| \_______|\__| \_______/ * */ modifier mintCompliance(uint256 quantity) { require(!paused, "Contract is paused"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left"); require(tx.origin == msg.sender, "No contract minting"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_PRIVATE_WHITELISTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintRatePublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintRatePublicWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedPublicAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedPublicWhitelistAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mutantgoblinAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateWLAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"string","name":"_baseUri","type":"string"}],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_communityWalletAddress","type":"address"}],"name":"setCommunityWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setPublicAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setPublicMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setPublicWhitelistedAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWalletAddress","type":"address"}],"name":"setTeamWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"verifyPublicWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052612710600a556000600b556000600c556000600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff0219169083151502179055506001600e60036101000a81548160ff0219169083151502179055506000600f55600a6010556040518060200160405280600081525060119080519060200190620000b192919062000398565b506040518060200160405280600081525060129080519060200190620000d992919062000398565b507320b19f16876e39e459a466b99a1d155eaa27a6d0601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507324283f7268034edee23ddf9db6fdf2c51a3bcb04601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dd1f25fbb2c88052671e6180db96aba4e3823dad601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001e657600080fd5b506040518060400160405280600d81526020017f6d7574616e7420676f626c696e000000000000000000000000000000000000008152506040518060400160405280600c81526020017f6d7574616e74676f626c696e00000000000000000000000000000000000000008152506200027362000267620002c360201b60201c565b620002cb60201b60201c565b81600390805190602001906200028b92919062000398565b508060049080519060200190620002a492919062000398565b50620002b56200038f60201b60201c565b6001819055505050620004ad565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b828054620003a69062000448565b90600052602060002090601f016020900481019282620003ca576000855562000416565b82601f10620003e557805160ff191683800117855562000416565b8280016001018555821562000416579182015b8281111562000415578251825591602001919060010190620003f8565b5b50905062000425919062000429565b5090565b5b80821115620004445760008160009055506001016200042a565b5090565b600060028204905060018216806200046157607f821691505b602082108114156200047857620004776200047e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61531280620004bd6000396000f3fe60806040526004361061036b5760003560e01c80636c0360eb116101c6578063a9c9aa2b116100f7578063e0a8085311610095578063e985e9c51161006f578063e985e9c514610c56578063ed8efe6814610c93578063f2fde38b14610cbe578063f5320e6414610ce75761036b565b8063e0a8085314610bd7578063e4fb363514610c00578063e8a3d48514610c2b5761036b565b8063bff7094f116100d1578063bff7094f14610b1d578063c55f125714610b46578063c757483914610b6f578063c87b56dd14610b9a5761036b565b8063a9c9aa2b14610aa0578063b88d4fde14610acb578063becf259614610af45761036b565b8063938e3d7b11610164578063a1307d791161013e578063a1307d79146109f6578063a1a9ab9f14610a21578063a22cb46514610a4c578063a45ba8e714610a755761036b565b8063938e3d7b1461097757806395d89b41146109a057806399184b66146109cb5761036b565b8063715018a6116101a0578063715018a6146108cf57806374bd8afb146108e65780637aeb72421461090f5780638da5cb5b1461094c5761036b565b80636c0360eb1461083c5780636f0999981461086757806370a08231146108925761036b565b80633ccfd60b116102a057806355f804b31161023e5780635aca1bb6116102185780635aca1bb6146107825780635c975abb146107ab5780635ed3e25e146107d65780636352211e146107ff5761036b565b806355f804b31461070357806356b4f6731461072c57806359927044146107575761036b565b8063438b63001161027a578063438b6300146106475780634fdd43cb1461068457806351830227146106ad5780635503a0e8146106d85761036b565b80633ccfd60b146105d757806342842e0e146105e157806342eb9cbd1461060a5761036b565b806323b872dd1161030d5780632eb4a7ab116102e75780632eb4a7ab1461052b57806332cb6b0c1461055657806333bc1c5c1461058157806337534b5c146105ac5761036b565b806323b872dd146104bd5780632c4b2334146104e65780632db115441461050f5761036b565b8063095ea7b311610349578063095ea7b3146104155780630ca01ad91461043e57806316c38b3c1461046957806318160ddd146104925761036b565b806301ffc9a71461037057806306fdde03146103ad578063081812fc146103d8575b600080fd5b34801561037c57600080fd5b50610397600480360381019061039291906142cd565b610d10565b6040516103a491906148ab565b60405180910390f35b3480156103b957600080fd5b506103c2610df2565b6040516103cf91906148e1565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190614370565b610e84565b60405161040c9190614822565b60405180910390f35b34801561042157600080fd5b5061043c600480360381019061043791906141d7565b610f00565b005b34801561044a57600080fd5b5061045361100b565b6040516104609190614aa3565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190614217565b611011565b005b34801561049e57600080fd5b506104a76110aa565b6040516104b49190614aa3565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df9190614065565b6110c1565b005b3480156104f257600080fd5b5061050d60048036038101906105089190613ff8565b6110d1565b005b61052960048036038101906105249190614370565b611191565b005b34801561053757600080fd5b5061054061148e565b60405161054d91906148c6565b60405180910390f35b34801561056257600080fd5b5061056b611494565b6040516105789190614aa3565b60405180910390f35b34801561058d57600080fd5b5061059661149a565b6040516105a391906148ab565b60405180910390f35b3480156105b857600080fd5b506105c16114ad565b6040516105ce91906148ab565b60405180910390f35b6105df6114c0565b005b3480156105ed57600080fd5b5061060860048036038101906106039190614065565b6117c3565b005b34801561061657600080fd5b50610631600480360381019061062c919061413b565b6117e3565b60405161063e91906148ab565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190613ff8565b611820565b60405161067b9190614889565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190614327565b61192b565b005b3480156106b957600080fd5b506106c26119c1565b6040516106cf91906148ab565b60405180910390f35b3480156106e457600080fd5b506106ed6119d4565b6040516106fa91906148e1565b60405180910390f35b34801561070f57600080fd5b5061072a60048036038101906107259190614327565b611a0d565b005b34801561073857600080fd5b50610741611aa3565b60405161074e91906148e1565b60405180910390f35b34801561076357600080fd5b5061076c611b31565b6040516107799190614822565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190614217565b611b57565b005b3480156107b757600080fd5b506107c0611c0b565b6040516107cd91906148ab565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f89190614244565b611c1e565b005b34801561080b57600080fd5b5061082660048036038101906108219190614370565b611ccf565b6040516108339190614822565b60405180910390f35b34801561084857600080fd5b50610851611ce5565b60405161085e91906148e1565b60405180910390f35b34801561087357600080fd5b5061087c611d73565b6040516108899190614822565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b49190613ff8565b611d8b565b6040516108c69190614aa3565b60405180910390f35b3480156108db57600080fd5b506108e4611e5b565b005b3480156108f257600080fd5b5061090d60048036038101906109089190614370565b611ee3565b005b34801561091b57600080fd5b5061093660048036038101906109319190613ff8565b611f69565b6040516109439190614aa3565b60405180910390f35b34801561095857600080fd5b50610961611f81565b60405161096e9190614822565b60405180910390f35b34801561098357600080fd5b5061099e60048036038101906109999190614327565b611faa565b005b3480156109ac57600080fd5b506109b5612040565b6040516109c291906148e1565b60405180910390f35b3480156109d757600080fd5b506109e06120d2565b6040516109ed9190614aa3565b60405180910390f35b348015610a0257600080fd5b50610a0b6120d7565b604051610a189190614aa3565b60405180910390f35b348015610a2d57600080fd5b50610a366120dd565b604051610a439190614aa3565b60405180910390f35b348015610a5857600080fd5b50610a736004803603810190610a6e9190614197565b6120e3565b005b348015610a8157600080fd5b50610a8a61225b565b604051610a9791906148e1565b60405180910390f35b348015610aac57600080fd5b50610ab56122e9565b604051610ac29190614822565b60405180910390f35b348015610ad757600080fd5b50610af26004803603810190610aed91906140b8565b61230f565b005b348015610b0057600080fd5b50610b1b6004803603810190610b169190614370565b61238b565b005b348015610b2957600080fd5b50610b446004803603810190610b3f91906142a0565b612411565b005b348015610b5257600080fd5b50610b6d6004803603810190610b689190613ff8565b612497565b005b348015610b7b57600080fd5b50610b84612557565b604051610b919190614822565b60405180910390f35b348015610ba657600080fd5b50610bc16004803603810190610bbc9190614370565b61257d565b604051610bce91906148e1565b60405180910390f35b348015610be357600080fd5b50610bfe6004803603810190610bf99190614217565b6126d8565b005b348015610c0c57600080fd5b50610c15612771565b604051610c229190614aa3565b60405180910390f35b348015610c3757600080fd5b50610c40612777565b604051610c4d91906148e1565b60405180910390f35b348015610c6257600080fd5b50610c7d6004803603810190610c789190614025565b612809565b604051610c8a91906148ab565b60405180910390f35b348015610c9f57600080fd5b50610ca861289d565b604051610cb59190614aa3565b60405180910390f35b348015610cca57600080fd5b50610ce56004803603810190610ce09190613ff8565b6128a3565b005b348015610cf357600080fd5b50610d0e6004803603810190610d09919061439d565b61299b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ddb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610deb5750610dea82612b3c565b5b9050919050565b606060038054610e0190614de2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2d90614de2565b8015610e7a5780601f10610e4f57610100808354040283529160200191610e7a565b820191906000526020600020905b815481529060010190602001808311610e5d57829003601f168201915b5050505050905090565b6000610e8f82612ba6565b610ec5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f0b82611ccf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f73576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f92612bf4565b73ffffffffffffffffffffffffffffffffffffffff1614158015610fc45750610fc281610fbd612bf4565b612809565b155b15610ffb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611006838383612bfc565b505050565b600b5481565b611019612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611037611f81565b73ffffffffffffffffffffffffffffffffffffffff161461108d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611084906149c3565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60006110b4612cae565b6002546001540303905090565b6110cc838383612cb7565b505050565b6110d9612bf4565b73ffffffffffffffffffffffffffffffffffffffff166110f7611f81565b73ffffffffffffffffffffffffffffffffffffffff161461114d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611144906149c3565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b80600e60009054906101000a900460ff16156111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990614a43565b60405180910390fd5b600a54816111ee6110aa565b6111f89190614c0d565b1115611239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123090614a63565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90614963565b60405180910390fd5b6000600c5490506000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e60039054906101000a900460ff16611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890614a23565b60405180910390fd5b60105484826113509190614c0d565b1115611391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138890614983565b60405180910390fd5b838261139d9190614c94565b3410156113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690614a03565b60405180910390fd5b83816113eb9190614c0d565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611438338561316d565b6064600585846114489190614c94565b6114529190614c94565b61145c9190614c63565b6018600082825461146d9190614c0d565b9250508190555061148884836114839190614c94565b61318b565b50505050565b60095481565b600a5481565b600e60039054906101000a900460ff1681565b600e60029054906101000a900460ff1681565b6114c8612bf4565b73ffffffffffffffffffffffffffffffffffffffff166114e6611f81565b73ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611533906149c3565b60405180910390fd5b600047905060007320b19f16876e39e459a466b99a1d155eaa27a6d073ffffffffffffffffffffffffffffffffffffffff1660185460405161157d9061480d565b60006040518083038185875af1925050503d80600081146115ba576040519150601f19603f3d011682016040523d82523d6000602084013e6115bf565b606091505b5050905080611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa90614a83565b60405180910390fd5b6000601881905550601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660646050846116539190614c94565b61165d9190614c63565b6040516116699061480d565b60006040518083038185875af1925050503d80600081146116a6576040519150601f19603f3d011682016040523d82523d6000602084013e6116ab565b606091505b505080915050806116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e8906149a3565b60405180910390fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516117379061480d565b60006040518083038185875af1925050503d8060008114611774576040519150601f19603f3d011682016040523d82523d6000602084013e611779565b606091505b505080915050806117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690614903565b60405180910390fd5b5050565b6117de8383836040518060200160405280600081525061230f565b505050565b600061181882846040516020016117fa91906147c1565b6040516020818303038152906040528051906020012060095461324f565b905092915050565b6060600061182d83611d8b565b905060008167ffffffffffffffff81111561184b5761184a614f9f565b5b6040519080825280602002602001820160405280156118795781602001602082028036833780820191505090505b50905060006001905060005b83811080156118965750600a548211155b1561191f5760006118a683611ccf565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561190b57828483815181106118f0576118ef614f70565b5b602002602001018181525050818061190790614e45565b9250505b828061191690614e45565b93505050611885565b82945050505050919050565b611933612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611951611f81565b73ffffffffffffffffffffffffffffffffffffffff16146119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e906149c3565b60405180910390fd5b80601290805190602001906119bd929190613d16565b5050565b600e60019054906101000a900460ff1681565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b611a15612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611a33611f81565b73ffffffffffffffffffffffffffffffffffffffff1614611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a80906149c3565b60405180910390fd5b8060119080519060200190611a9f929190613d16565b5050565b60138054611ab090614de2565b80601f0160208091040260200160405190810160405280929190818152602001828054611adc90614de2565b8015611b295780601f10611afe57610100808354040283529160200191611b29565b820191906000526020600020905b815481529060010190602001808311611b0c57829003601f168201915b505050505081565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b5f612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611b7d611f81565b73ffffffffffffffffffffffffffffffffffffffff1614611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca906149c3565b60405180910390fd5b80600e60036101000a81548160ff0219169083151502179055508015600e60026101000a81548160ff02191690831515021790555050565b600e60009054906101000a900460ff1681565b611c26612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611c44611f81565b73ffffffffffffffffffffffffffffffffffffffff1614611c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c91906149c3565b60405180910390fd5b81600e60016101000a81548160ff0219169083151502179055508060119080519060200190611cca929190613d16565b505050565b6000611cda82613266565b600001519050919050565b60118054611cf290614de2565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1e90614de2565b8015611d6b5780601f10611d4057610100808354040283529160200191611d6b565b820191906000526020600020905b815481529060010190602001808311611d4e57829003601f168201915b505050505081565b7320b19f16876e39e459a466b99a1d155eaa27a6d081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611e63612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611e81611f81565b73ffffffffffffffffffffffffffffffffffffffff1614611ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ece906149c3565b60405180910390fd5b611ee160006134f5565b565b611eeb612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611f09611f81565b73ffffffffffffffffffffffffffffffffffffffff1614611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f56906149c3565b60405180910390fd5b8060108190555050565b60156020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fb2612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611fd0611f81565b73ffffffffffffffffffffffffffffffffffffffff1614612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d906149c3565b60405180910390fd5b806013908051906020019061203c929190613d16565b5050565b60606004805461204f90614de2565b80601f016020809104026020016040519081016040528092919081815260200182805461207b90614de2565b80156120c85780601f1061209d576101008083540402835291602001916120c8565b820191906000526020600020905b8154815290600101906020018083116120ab57829003601f168201915b5050505050905090565b600081565b600f5481565b60105481565b6120eb612bf4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612150576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061215d612bf4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661220a612bf4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161224f91906148ab565b60405180910390a35050565b6012805461226890614de2565b80601f016020809104026020016040519081016040528092919081815260200182805461229490614de2565b80156122e15780601f106122b6576101008083540402835291602001916122e1565b820191906000526020600020905b8154815290600101906020018083116122c457829003601f168201915b505050505081565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61231a848484612cb7565b6123398373ffffffffffffffffffffffffffffffffffffffff166135b9565b801561234e575061234c848484846135dc565b155b15612385576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b612393612bf4565b73ffffffffffffffffffffffffffffffffffffffff166123b1611f81565b73ffffffffffffffffffffffffffffffffffffffff1614612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe906149c3565b60405180910390fd5b80600f8190555050565b612419612bf4565b73ffffffffffffffffffffffffffffffffffffffff16612437611f81565b73ffffffffffffffffffffffffffffffffffffffff161461248d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612484906149c3565b60405180910390fd5b8060098190555050565b61249f612bf4565b73ffffffffffffffffffffffffffffffffffffffff166124bd611f81565b73ffffffffffffffffffffffffffffffffffffffff1614612513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250a906149c3565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606061258882612ba6565b6125c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125be906149e3565b60405180910390fd5b600e60019054906101000a900460ff16156126455760116125e78361373c565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161262f939291906147dc565b60405160208183030381529060405290506126d3565b6012805461265290614de2565b80601f016020809104026020016040519081016040528092919081815260200182805461267e90614de2565b80156126cb5780601f106126a0576101008083540402835291602001916126cb565b820191906000526020600020905b8154815290600101906020018083116126ae57829003601f168201915b505050505090505b919050565b6126e0612bf4565b73ffffffffffffffffffffffffffffffffffffffff166126fe611f81565b73ffffffffffffffffffffffffffffffffffffffff1614612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b906149c3565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b600d5481565b60606013805461278690614de2565b80601f01602080910402602001604051908101604052809291908181526020018280546127b290614de2565b80156127ff5780601f106127d4576101008083540402835291602001916127ff565b820191906000526020600020905b8154815290600101906020018083116127e257829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b6128ab612bf4565b73ffffffffffffffffffffffffffffffffffffffff166128c9611f81565b73ffffffffffffffffffffffffffffffffffffffff161461291f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612916906149c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561298f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298690614923565b60405180910390fd5b612998816134f5565b50565b6129a3612bf4565b73ffffffffffffffffffffffffffffffffffffffff166129c1611f81565b73ffffffffffffffffffffffffffffffffffffffff1614612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e906149c3565b60405180910390fd5b81600e60009054906101000a900460ff1615612a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5f90614a43565b60405180910390fd5b600a5481612a746110aa565b612a7e9190614c0d565b1115612abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab690614a63565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2490614963565b60405180910390fd5b612b37828461316d565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612bb1612cae565b11158015612bc0575060015482105b8015612bed575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612cc282613266565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d2d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612d4e612bf4565b73ffffffffffffffffffffffffffffffffffffffff161480612d7d5750612d7c85612d77612bf4565b612809565b5b80612dc25750612d8b612bf4565b73ffffffffffffffffffffffffffffffffffffffff16612daa84610e84565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612dfb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e62576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e6f858585600161389d565b612e7b60008487612bfc565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156130fb5760015482146130fa57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461316685858560016138a3565b5050505050565b6131878282604051806020016040528060008152506138a9565b5050565b8034111561324c5760003373ffffffffffffffffffffffffffffffffffffffff1682346131b89190614cee565b6040516131c49061480d565b60006040518083038185875af1925050503d8060008114613201576040519150601f19603f3d011682016040523d82523d6000602084013e613206565b606091505b505090508061324a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324190614943565b60405180910390fd5b505b50565b60008261325c85846138bb565b1490509392505050565b61326e613d9c565b60008290508061327c612cae565b1115801561328b575060015481105b156134be576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516134bc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133a05780925050506134f0565b5b6001156134bb57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134b65780925050506134f0565b6133a1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613602612bf4565b8786866040518563ffffffff1660e01b8152600401613624949392919061483d565b602060405180830381600087803b15801561363e57600080fd5b505af192505050801561366f57506040513d601f19601f8201168201806040525081019061366c91906142fa565b60015b6136e9573d806000811461369f576040519150601f19603f3d011682016040523d82523d6000602084013e6136a4565b606091505b506000815114156136e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613784576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613898565b600082905060005b600082146137b657808061379f90614e45565b915050600a826137af9190614c63565b915061378c565b60008167ffffffffffffffff8111156137d2576137d1614f9f565b5b6040519080825280601f01601f1916602001820160405280156138045781602001600182028036833780820191505090505b5090505b600085146138915760018261381d9190614cee565b9150600a8561382c9190614eb2565b60306138389190614c0d565b60f81b81838151811061384e5761384d614f70565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561388a9190614c63565b9450613808565b8093505050505b919050565b50505050565b50505050565b6138b68383836001613930565b505050565b60008082905060005b84518110156139255760008582815181106138e2576138e1614f70565b5b60200260200101519050808311613904576138fd8382613cff565b9250613911565b61390e8184613cff565b92505b50808061391d90614e45565b9150506138c4565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561399e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156139d9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139e6600086838761389d565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613bb05750613baf8773ffffffffffffffffffffffffffffffffffffffff166135b9565b5b15613c76575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c2560008884806001019550886135dc565b613c5b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613bb6578260015414613c7157600080fd5b613ce2565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613c77575b816001819055505050613cf860008683876138a3565b5050505050565b600082600052816020526040600020905092915050565b828054613d2290614de2565b90600052602060002090601f016020900481019282613d445760008555613d8b565b82601f10613d5d57805160ff1916838001178555613d8b565b82800160010185558215613d8b579182015b82811115613d8a578251825591602001919060010190613d6f565b5b509050613d989190613ddf565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613df8576000816000905550600101613de0565b5090565b6000613e0f613e0a84614ae3565b614abe565b90508083825260208201905082856020860282011115613e3257613e31614fd3565b5b60005b85811015613e625781613e488882613f48565b845260208401935060208301925050600181019050613e35565b5050509392505050565b6000613e7f613e7a84614b0f565b614abe565b905082815260208101848484011115613e9b57613e9a614fd8565b5b613ea6848285614da0565b509392505050565b6000613ec1613ebc84614b40565b614abe565b905082815260208101848484011115613edd57613edc614fd8565b5b613ee8848285614da0565b509392505050565b600081359050613eff81615269565b92915050565b600082601f830112613f1a57613f19614fce565b5b8135613f2a848260208601613dfc565b91505092915050565b600081359050613f4281615280565b92915050565b600081359050613f5781615297565b92915050565b600081359050613f6c816152ae565b92915050565b600081519050613f81816152ae565b92915050565b600082601f830112613f9c57613f9b614fce565b5b8135613fac848260208601613e6c565b91505092915050565b600082601f830112613fca57613fc9614fce565b5b8135613fda848260208601613eae565b91505092915050565b600081359050613ff2816152c5565b92915050565b60006020828403121561400e5761400d614fe2565b5b600061401c84828501613ef0565b91505092915050565b6000806040838503121561403c5761403b614fe2565b5b600061404a85828601613ef0565b925050602061405b85828601613ef0565b9150509250929050565b60008060006060848603121561407e5761407d614fe2565b5b600061408c86828701613ef0565b935050602061409d86828701613ef0565b92505060406140ae86828701613fe3565b9150509250925092565b600080600080608085870312156140d2576140d1614fe2565b5b60006140e087828801613ef0565b94505060206140f187828801613ef0565b935050604061410287828801613fe3565b925050606085013567ffffffffffffffff81111561412357614122614fdd565b5b61412f87828801613f87565b91505092959194509250565b6000806040838503121561415257614151614fe2565b5b600061416085828601613ef0565b925050602083013567ffffffffffffffff81111561418157614180614fdd565b5b61418d85828601613f05565b9150509250929050565b600080604083850312156141ae576141ad614fe2565b5b60006141bc85828601613ef0565b92505060206141cd85828601613f33565b9150509250929050565b600080604083850312156141ee576141ed614fe2565b5b60006141fc85828601613ef0565b925050602061420d85828601613fe3565b9150509250929050565b60006020828403121561422d5761422c614fe2565b5b600061423b84828501613f33565b91505092915050565b6000806040838503121561425b5761425a614fe2565b5b600061426985828601613f33565b925050602083013567ffffffffffffffff81111561428a57614289614fdd565b5b61429685828601613fb5565b9150509250929050565b6000602082840312156142b6576142b5614fe2565b5b60006142c484828501613f48565b91505092915050565b6000602082840312156142e3576142e2614fe2565b5b60006142f184828501613f5d565b91505092915050565b6000602082840312156143105761430f614fe2565b5b600061431e84828501613f72565b91505092915050565b60006020828403121561433d5761433c614fe2565b5b600082013567ffffffffffffffff81111561435b5761435a614fdd565b5b61436784828501613fb5565b91505092915050565b60006020828403121561438657614385614fe2565b5b600061439484828501613fe3565b91505092915050565b600080604083850312156143b4576143b3614fe2565b5b60006143c285828601613fe3565b92505060206143d385828601613ef0565b9150509250929050565b60006143e983836147a3565b60208301905092915050565b6143fe81614d22565b82525050565b61441561441082614d22565b614e8e565b82525050565b600061442682614b96565b6144308185614bc4565b935061443b83614b71565b8060005b8381101561446c57815161445388826143dd565b975061445e83614bb7565b92505060018101905061443f565b5085935050505092915050565b61448281614d34565b82525050565b61449181614d40565b82525050565b60006144a282614ba1565b6144ac8185614bd5565b93506144bc818560208601614daf565b6144c581614fe7565b840191505092915050565b60006144db82614bac565b6144e58185614bf1565b93506144f5818560208601614daf565b6144fe81614fe7565b840191505092915050565b600061451482614bac565b61451e8185614c02565b935061452e818560208601614daf565b80840191505092915050565b6000815461454781614de2565b6145518186614c02565b9450600182166000811461456c576001811461457d576145b0565b60ff198316865281860193506145b0565b61458685614b81565b60005b838110156145a857815481890152600182019150602081019050614589565b838801955050505b50505092915050565b60006145c6601483614bf1565b91506145d182615005565b602082019050919050565b60006145e9602683614bf1565b91506145f48261502e565b604082019050919050565b600061460c600f83614bf1565b91506146178261507d565b602082019050919050565b600061462f601383614bf1565b915061463a826150a6565b602082019050919050565b6000614652601383614bf1565b915061465d826150cf565b602082019050919050565b6000614675601983614bf1565b9150614680826150f8565b602082019050919050565b6000614698602083614bf1565b91506146a382615121565b602082019050919050565b60006146bb602f83614bf1565b91506146c68261514a565b604082019050919050565b60006146de601383614bf1565b91506146e982615199565b602082019050919050565b6000614701601483614bf1565b915061470c826151c2565b602082019050919050565b6000614724600083614be6565b915061472f826151eb565b600082019050919050565b6000614747601283614bf1565b9150614752826151ee565b602082019050919050565b600061476a601583614bf1565b915061477582615217565b602082019050919050565b600061478d601c83614bf1565b915061479882615240565b602082019050919050565b6147ac81614d96565b82525050565b6147bb81614d96565b82525050565b60006147cd8284614404565b60148201915081905092915050565b60006147e8828661453a565b91506147f48285614509565b91506148008284614509565b9150819050949350505050565b600061481882614717565b9150819050919050565b600060208201905061483760008301846143f5565b92915050565b600060808201905061485260008301876143f5565b61485f60208301866143f5565b61486c60408301856147b2565b818103606083015261487e8184614497565b905095945050505050565b600060208201905081810360008301526148a3818461441b565b905092915050565b60006020820190506148c06000830184614479565b92915050565b60006020820190506148db6000830184614488565b92915050565b600060208201905081810360008301526148fb81846144d0565b905092915050565b6000602082019050818103600083015261491c816145b9565b9050919050565b6000602082019050818103600083015261493c816145dc565b9050919050565b6000602082019050818103600083015261495c816145ff565b9050919050565b6000602082019050818103600083015261497c81614622565b9050919050565b6000602082019050818103600083015261499c81614645565b9050919050565b600060208201905081810360008301526149bc81614668565b9050919050565b600060208201905081810360008301526149dc8161468b565b9050919050565b600060208201905081810360008301526149fc816146ae565b9050919050565b60006020820190508181036000830152614a1c816146d1565b9050919050565b60006020820190508181036000830152614a3c816146f4565b9050919050565b60006020820190508181036000830152614a5c8161473a565b9050919050565b60006020820190508181036000830152614a7c8161475d565b9050919050565b60006020820190508181036000830152614a9c81614780565b9050919050565b6000602082019050614ab860008301846147b2565b92915050565b6000614ac8614ad9565b9050614ad48282614e14565b919050565b6000604051905090565b600067ffffffffffffffff821115614afe57614afd614f9f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b2a57614b29614f9f565b5b614b3382614fe7565b9050602081019050919050565b600067ffffffffffffffff821115614b5b57614b5a614f9f565b5b614b6482614fe7565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c1882614d96565b9150614c2383614d96565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c5857614c57614ee3565b5b828201905092915050565b6000614c6e82614d96565b9150614c7983614d96565b925082614c8957614c88614f12565b5b828204905092915050565b6000614c9f82614d96565b9150614caa83614d96565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ce357614ce2614ee3565b5b828202905092915050565b6000614cf982614d96565b9150614d0483614d96565b925082821015614d1757614d16614ee3565b5b828203905092915050565b6000614d2d82614d76565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614dcd578082015181840152602081019050614db2565b83811115614ddc576000848401525b50505050565b60006002820490506001821680614dfa57607f821691505b60208210811415614e0e57614e0d614f41565b5b50919050565b614e1d82614fe7565b810181811067ffffffffffffffff82111715614e3c57614e3b614f9f565b5b80604052505050565b6000614e5082614d96565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e8357614e82614ee3565b5b600182019050919050565b6000614e9982614ea0565b9050919050565b6000614eab82614ff8565b9050919050565b6000614ebd82614d96565b9150614ec883614d96565b925082614ed857614ed7614f12565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5465616d207472616e73666572206661696c6564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f436f6d6d756e697479207472616e73666572206661696c656400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b50565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b7f6d7574616e74676f626c696e207472616e73666572206661696c656400000000600082015250565b61527281614d22565b811461527d57600080fd5b50565b61528981614d34565b811461529457600080fd5b50565b6152a081614d40565b81146152ab57600080fd5b50565b6152b781614d4a565b81146152c257600080fd5b50565b6152ce81614d96565b81146152d957600080fd5b5056fea2646970667358221220b3bfe10124cc272be124ba1ca0493bc58f361219b7cd1efb0d5c049c41a9ac3964736f6c63430008070033
Deployed Bytecode
0x60806040526004361061036b5760003560e01c80636c0360eb116101c6578063a9c9aa2b116100f7578063e0a8085311610095578063e985e9c51161006f578063e985e9c514610c56578063ed8efe6814610c93578063f2fde38b14610cbe578063f5320e6414610ce75761036b565b8063e0a8085314610bd7578063e4fb363514610c00578063e8a3d48514610c2b5761036b565b8063bff7094f116100d1578063bff7094f14610b1d578063c55f125714610b46578063c757483914610b6f578063c87b56dd14610b9a5761036b565b8063a9c9aa2b14610aa0578063b88d4fde14610acb578063becf259614610af45761036b565b8063938e3d7b11610164578063a1307d791161013e578063a1307d79146109f6578063a1a9ab9f14610a21578063a22cb46514610a4c578063a45ba8e714610a755761036b565b8063938e3d7b1461097757806395d89b41146109a057806399184b66146109cb5761036b565b8063715018a6116101a0578063715018a6146108cf57806374bd8afb146108e65780637aeb72421461090f5780638da5cb5b1461094c5761036b565b80636c0360eb1461083c5780636f0999981461086757806370a08231146108925761036b565b80633ccfd60b116102a057806355f804b31161023e5780635aca1bb6116102185780635aca1bb6146107825780635c975abb146107ab5780635ed3e25e146107d65780636352211e146107ff5761036b565b806355f804b31461070357806356b4f6731461072c57806359927044146107575761036b565b8063438b63001161027a578063438b6300146106475780634fdd43cb1461068457806351830227146106ad5780635503a0e8146106d85761036b565b80633ccfd60b146105d757806342842e0e146105e157806342eb9cbd1461060a5761036b565b806323b872dd1161030d5780632eb4a7ab116102e75780632eb4a7ab1461052b57806332cb6b0c1461055657806333bc1c5c1461058157806337534b5c146105ac5761036b565b806323b872dd146104bd5780632c4b2334146104e65780632db115441461050f5761036b565b8063095ea7b311610349578063095ea7b3146104155780630ca01ad91461043e57806316c38b3c1461046957806318160ddd146104925761036b565b806301ffc9a71461037057806306fdde03146103ad578063081812fc146103d8575b600080fd5b34801561037c57600080fd5b50610397600480360381019061039291906142cd565b610d10565b6040516103a491906148ab565b60405180910390f35b3480156103b957600080fd5b506103c2610df2565b6040516103cf91906148e1565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190614370565b610e84565b60405161040c9190614822565b60405180910390f35b34801561042157600080fd5b5061043c600480360381019061043791906141d7565b610f00565b005b34801561044a57600080fd5b5061045361100b565b6040516104609190614aa3565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190614217565b611011565b005b34801561049e57600080fd5b506104a76110aa565b6040516104b49190614aa3565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df9190614065565b6110c1565b005b3480156104f257600080fd5b5061050d60048036038101906105089190613ff8565b6110d1565b005b61052960048036038101906105249190614370565b611191565b005b34801561053757600080fd5b5061054061148e565b60405161054d91906148c6565b60405180910390f35b34801561056257600080fd5b5061056b611494565b6040516105789190614aa3565b60405180910390f35b34801561058d57600080fd5b5061059661149a565b6040516105a391906148ab565b60405180910390f35b3480156105b857600080fd5b506105c16114ad565b6040516105ce91906148ab565b60405180910390f35b6105df6114c0565b005b3480156105ed57600080fd5b5061060860048036038101906106039190614065565b6117c3565b005b34801561061657600080fd5b50610631600480360381019061062c919061413b565b6117e3565b60405161063e91906148ab565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190613ff8565b611820565b60405161067b9190614889565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190614327565b61192b565b005b3480156106b957600080fd5b506106c26119c1565b6040516106cf91906148ab565b60405180910390f35b3480156106e457600080fd5b506106ed6119d4565b6040516106fa91906148e1565b60405180910390f35b34801561070f57600080fd5b5061072a60048036038101906107259190614327565b611a0d565b005b34801561073857600080fd5b50610741611aa3565b60405161074e91906148e1565b60405180910390f35b34801561076357600080fd5b5061076c611b31565b6040516107799190614822565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190614217565b611b57565b005b3480156107b757600080fd5b506107c0611c0b565b6040516107cd91906148ab565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f89190614244565b611c1e565b005b34801561080b57600080fd5b5061082660048036038101906108219190614370565b611ccf565b6040516108339190614822565b60405180910390f35b34801561084857600080fd5b50610851611ce5565b60405161085e91906148e1565b60405180910390f35b34801561087357600080fd5b5061087c611d73565b6040516108899190614822565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b49190613ff8565b611d8b565b6040516108c69190614aa3565b60405180910390f35b3480156108db57600080fd5b506108e4611e5b565b005b3480156108f257600080fd5b5061090d60048036038101906109089190614370565b611ee3565b005b34801561091b57600080fd5b5061093660048036038101906109319190613ff8565b611f69565b6040516109439190614aa3565b60405180910390f35b34801561095857600080fd5b50610961611f81565b60405161096e9190614822565b60405180910390f35b34801561098357600080fd5b5061099e60048036038101906109999190614327565b611faa565b005b3480156109ac57600080fd5b506109b5612040565b6040516109c291906148e1565b60405180910390f35b3480156109d757600080fd5b506109e06120d2565b6040516109ed9190614aa3565b60405180910390f35b348015610a0257600080fd5b50610a0b6120d7565b604051610a189190614aa3565b60405180910390f35b348015610a2d57600080fd5b50610a366120dd565b604051610a439190614aa3565b60405180910390f35b348015610a5857600080fd5b50610a736004803603810190610a6e9190614197565b6120e3565b005b348015610a8157600080fd5b50610a8a61225b565b604051610a9791906148e1565b60405180910390f35b348015610aac57600080fd5b50610ab56122e9565b604051610ac29190614822565b60405180910390f35b348015610ad757600080fd5b50610af26004803603810190610aed91906140b8565b61230f565b005b348015610b0057600080fd5b50610b1b6004803603810190610b169190614370565b61238b565b005b348015610b2957600080fd5b50610b446004803603810190610b3f91906142a0565b612411565b005b348015610b5257600080fd5b50610b6d6004803603810190610b689190613ff8565b612497565b005b348015610b7b57600080fd5b50610b84612557565b604051610b919190614822565b60405180910390f35b348015610ba657600080fd5b50610bc16004803603810190610bbc9190614370565b61257d565b604051610bce91906148e1565b60405180910390f35b348015610be357600080fd5b50610bfe6004803603810190610bf99190614217565b6126d8565b005b348015610c0c57600080fd5b50610c15612771565b604051610c229190614aa3565b60405180910390f35b348015610c3757600080fd5b50610c40612777565b604051610c4d91906148e1565b60405180910390f35b348015610c6257600080fd5b50610c7d6004803603810190610c789190614025565b612809565b604051610c8a91906148ab565b60405180910390f35b348015610c9f57600080fd5b50610ca861289d565b604051610cb59190614aa3565b60405180910390f35b348015610cca57600080fd5b50610ce56004803603810190610ce09190613ff8565b6128a3565b005b348015610cf357600080fd5b50610d0e6004803603810190610d09919061439d565b61299b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ddb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610deb5750610dea82612b3c565b5b9050919050565b606060038054610e0190614de2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2d90614de2565b8015610e7a5780601f10610e4f57610100808354040283529160200191610e7a565b820191906000526020600020905b815481529060010190602001808311610e5d57829003601f168201915b5050505050905090565b6000610e8f82612ba6565b610ec5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f0b82611ccf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f73576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f92612bf4565b73ffffffffffffffffffffffffffffffffffffffff1614158015610fc45750610fc281610fbd612bf4565b612809565b155b15610ffb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611006838383612bfc565b505050565b600b5481565b611019612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611037611f81565b73ffffffffffffffffffffffffffffffffffffffff161461108d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611084906149c3565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60006110b4612cae565b6002546001540303905090565b6110cc838383612cb7565b505050565b6110d9612bf4565b73ffffffffffffffffffffffffffffffffffffffff166110f7611f81565b73ffffffffffffffffffffffffffffffffffffffff161461114d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611144906149c3565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b80600e60009054906101000a900460ff16156111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990614a43565b60405180910390fd5b600a54816111ee6110aa565b6111f89190614c0d565b1115611239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123090614a63565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90614963565b60405180910390fd5b6000600c5490506000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e60039054906101000a900460ff16611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890614a23565b60405180910390fd5b60105484826113509190614c0d565b1115611391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138890614983565b60405180910390fd5b838261139d9190614c94565b3410156113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690614a03565b60405180910390fd5b83816113eb9190614c0d565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611438338561316d565b6064600585846114489190614c94565b6114529190614c94565b61145c9190614c63565b6018600082825461146d9190614c0d565b9250508190555061148884836114839190614c94565b61318b565b50505050565b60095481565b600a5481565b600e60039054906101000a900460ff1681565b600e60029054906101000a900460ff1681565b6114c8612bf4565b73ffffffffffffffffffffffffffffffffffffffff166114e6611f81565b73ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611533906149c3565b60405180910390fd5b600047905060007320b19f16876e39e459a466b99a1d155eaa27a6d073ffffffffffffffffffffffffffffffffffffffff1660185460405161157d9061480d565b60006040518083038185875af1925050503d80600081146115ba576040519150601f19603f3d011682016040523d82523d6000602084013e6115bf565b606091505b5050905080611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa90614a83565b60405180910390fd5b6000601881905550601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660646050846116539190614c94565b61165d9190614c63565b6040516116699061480d565b60006040518083038185875af1925050503d80600081146116a6576040519150601f19603f3d011682016040523d82523d6000602084013e6116ab565b606091505b505080915050806116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e8906149a3565b60405180910390fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516117379061480d565b60006040518083038185875af1925050503d8060008114611774576040519150601f19603f3d011682016040523d82523d6000602084013e611779565b606091505b505080915050806117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690614903565b60405180910390fd5b5050565b6117de8383836040518060200160405280600081525061230f565b505050565b600061181882846040516020016117fa91906147c1565b6040516020818303038152906040528051906020012060095461324f565b905092915050565b6060600061182d83611d8b565b905060008167ffffffffffffffff81111561184b5761184a614f9f565b5b6040519080825280602002602001820160405280156118795781602001602082028036833780820191505090505b50905060006001905060005b83811080156118965750600a548211155b1561191f5760006118a683611ccf565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561190b57828483815181106118f0576118ef614f70565b5b602002602001018181525050818061190790614e45565b9250505b828061191690614e45565b93505050611885565b82945050505050919050565b611933612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611951611f81565b73ffffffffffffffffffffffffffffffffffffffff16146119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e906149c3565b60405180910390fd5b80601290805190602001906119bd929190613d16565b5050565b600e60019054906101000a900460ff1681565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b611a15612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611a33611f81565b73ffffffffffffffffffffffffffffffffffffffff1614611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a80906149c3565b60405180910390fd5b8060119080519060200190611a9f929190613d16565b5050565b60138054611ab090614de2565b80601f0160208091040260200160405190810160405280929190818152602001828054611adc90614de2565b8015611b295780601f10611afe57610100808354040283529160200191611b29565b820191906000526020600020905b815481529060010190602001808311611b0c57829003601f168201915b505050505081565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b5f612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611b7d611f81565b73ffffffffffffffffffffffffffffffffffffffff1614611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca906149c3565b60405180910390fd5b80600e60036101000a81548160ff0219169083151502179055508015600e60026101000a81548160ff02191690831515021790555050565b600e60009054906101000a900460ff1681565b611c26612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611c44611f81565b73ffffffffffffffffffffffffffffffffffffffff1614611c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c91906149c3565b60405180910390fd5b81600e60016101000a81548160ff0219169083151502179055508060119080519060200190611cca929190613d16565b505050565b6000611cda82613266565b600001519050919050565b60118054611cf290614de2565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1e90614de2565b8015611d6b5780601f10611d4057610100808354040283529160200191611d6b565b820191906000526020600020905b815481529060010190602001808311611d4e57829003601f168201915b505050505081565b7320b19f16876e39e459a466b99a1d155eaa27a6d081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611e63612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611e81611f81565b73ffffffffffffffffffffffffffffffffffffffff1614611ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ece906149c3565b60405180910390fd5b611ee160006134f5565b565b611eeb612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611f09611f81565b73ffffffffffffffffffffffffffffffffffffffff1614611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f56906149c3565b60405180910390fd5b8060108190555050565b60156020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fb2612bf4565b73ffffffffffffffffffffffffffffffffffffffff16611fd0611f81565b73ffffffffffffffffffffffffffffffffffffffff1614612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d906149c3565b60405180910390fd5b806013908051906020019061203c929190613d16565b5050565b60606004805461204f90614de2565b80601f016020809104026020016040519081016040528092919081815260200182805461207b90614de2565b80156120c85780601f1061209d576101008083540402835291602001916120c8565b820191906000526020600020905b8154815290600101906020018083116120ab57829003601f168201915b5050505050905090565b600081565b600f5481565b60105481565b6120eb612bf4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612150576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061215d612bf4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661220a612bf4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161224f91906148ab565b60405180910390a35050565b6012805461226890614de2565b80601f016020809104026020016040519081016040528092919081815260200182805461229490614de2565b80156122e15780601f106122b6576101008083540402835291602001916122e1565b820191906000526020600020905b8154815290600101906020018083116122c457829003601f168201915b505050505081565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61231a848484612cb7565b6123398373ffffffffffffffffffffffffffffffffffffffff166135b9565b801561234e575061234c848484846135dc565b155b15612385576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b612393612bf4565b73ffffffffffffffffffffffffffffffffffffffff166123b1611f81565b73ffffffffffffffffffffffffffffffffffffffff1614612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe906149c3565b60405180910390fd5b80600f8190555050565b612419612bf4565b73ffffffffffffffffffffffffffffffffffffffff16612437611f81565b73ffffffffffffffffffffffffffffffffffffffff161461248d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612484906149c3565b60405180910390fd5b8060098190555050565b61249f612bf4565b73ffffffffffffffffffffffffffffffffffffffff166124bd611f81565b73ffffffffffffffffffffffffffffffffffffffff1614612513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250a906149c3565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606061258882612ba6565b6125c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125be906149e3565b60405180910390fd5b600e60019054906101000a900460ff16156126455760116125e78361373c565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161262f939291906147dc565b60405160208183030381529060405290506126d3565b6012805461265290614de2565b80601f016020809104026020016040519081016040528092919081815260200182805461267e90614de2565b80156126cb5780601f106126a0576101008083540402835291602001916126cb565b820191906000526020600020905b8154815290600101906020018083116126ae57829003601f168201915b505050505090505b919050565b6126e0612bf4565b73ffffffffffffffffffffffffffffffffffffffff166126fe611f81565b73ffffffffffffffffffffffffffffffffffffffff1614612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b906149c3565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b600d5481565b60606013805461278690614de2565b80601f01602080910402602001604051908101604052809291908181526020018280546127b290614de2565b80156127ff5780601f106127d4576101008083540402835291602001916127ff565b820191906000526020600020905b8154815290600101906020018083116127e257829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b6128ab612bf4565b73ffffffffffffffffffffffffffffffffffffffff166128c9611f81565b73ffffffffffffffffffffffffffffffffffffffff161461291f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612916906149c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561298f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298690614923565b60405180910390fd5b612998816134f5565b50565b6129a3612bf4565b73ffffffffffffffffffffffffffffffffffffffff166129c1611f81565b73ffffffffffffffffffffffffffffffffffffffff1614612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e906149c3565b60405180910390fd5b81600e60009054906101000a900460ff1615612a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5f90614a43565b60405180910390fd5b600a5481612a746110aa565b612a7e9190614c0d565b1115612abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab690614a63565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2490614963565b60405180910390fd5b612b37828461316d565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612bb1612cae565b11158015612bc0575060015482105b8015612bed575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612cc282613266565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d2d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612d4e612bf4565b73ffffffffffffffffffffffffffffffffffffffff161480612d7d5750612d7c85612d77612bf4565b612809565b5b80612dc25750612d8b612bf4565b73ffffffffffffffffffffffffffffffffffffffff16612daa84610e84565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612dfb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e62576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e6f858585600161389d565b612e7b60008487612bfc565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156130fb5760015482146130fa57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461316685858560016138a3565b5050505050565b6131878282604051806020016040528060008152506138a9565b5050565b8034111561324c5760003373ffffffffffffffffffffffffffffffffffffffff1682346131b89190614cee565b6040516131c49061480d565b60006040518083038185875af1925050503d8060008114613201576040519150601f19603f3d011682016040523d82523d6000602084013e613206565b606091505b505090508061324a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324190614943565b60405180910390fd5b505b50565b60008261325c85846138bb565b1490509392505050565b61326e613d9c565b60008290508061327c612cae565b1115801561328b575060015481105b156134be576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516134bc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133a05780925050506134f0565b5b6001156134bb57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134b65780925050506134f0565b6133a1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613602612bf4565b8786866040518563ffffffff1660e01b8152600401613624949392919061483d565b602060405180830381600087803b15801561363e57600080fd5b505af192505050801561366f57506040513d601f19601f8201168201806040525081019061366c91906142fa565b60015b6136e9573d806000811461369f576040519150601f19603f3d011682016040523d82523d6000602084013e6136a4565b606091505b506000815114156136e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613784576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613898565b600082905060005b600082146137b657808061379f90614e45565b915050600a826137af9190614c63565b915061378c565b60008167ffffffffffffffff8111156137d2576137d1614f9f565b5b6040519080825280601f01601f1916602001820160405280156138045781602001600182028036833780820191505090505b5090505b600085146138915760018261381d9190614cee565b9150600a8561382c9190614eb2565b60306138389190614c0d565b60f81b81838151811061384e5761384d614f70565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561388a9190614c63565b9450613808565b8093505050505b919050565b50505050565b50505050565b6138b68383836001613930565b505050565b60008082905060005b84518110156139255760008582815181106138e2576138e1614f70565b5b60200260200101519050808311613904576138fd8382613cff565b9250613911565b61390e8184613cff565b92505b50808061391d90614e45565b9150506138c4565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561399e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156139d9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139e6600086838761389d565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613bb05750613baf8773ffffffffffffffffffffffffffffffffffffffff166135b9565b5b15613c76575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c2560008884806001019550886135dc565b613c5b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613bb6578260015414613c7157600080fd5b613ce2565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613c77575b816001819055505050613cf860008683876138a3565b5050505050565b600082600052816020526040600020905092915050565b828054613d2290614de2565b90600052602060002090601f016020900481019282613d445760008555613d8b565b82601f10613d5d57805160ff1916838001178555613d8b565b82800160010185558215613d8b579182015b82811115613d8a578251825591602001919060010190613d6f565b5b509050613d989190613ddf565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613df8576000816000905550600101613de0565b5090565b6000613e0f613e0a84614ae3565b614abe565b90508083825260208201905082856020860282011115613e3257613e31614fd3565b5b60005b85811015613e625781613e488882613f48565b845260208401935060208301925050600181019050613e35565b5050509392505050565b6000613e7f613e7a84614b0f565b614abe565b905082815260208101848484011115613e9b57613e9a614fd8565b5b613ea6848285614da0565b509392505050565b6000613ec1613ebc84614b40565b614abe565b905082815260208101848484011115613edd57613edc614fd8565b5b613ee8848285614da0565b509392505050565b600081359050613eff81615269565b92915050565b600082601f830112613f1a57613f19614fce565b5b8135613f2a848260208601613dfc565b91505092915050565b600081359050613f4281615280565b92915050565b600081359050613f5781615297565b92915050565b600081359050613f6c816152ae565b92915050565b600081519050613f81816152ae565b92915050565b600082601f830112613f9c57613f9b614fce565b5b8135613fac848260208601613e6c565b91505092915050565b600082601f830112613fca57613fc9614fce565b5b8135613fda848260208601613eae565b91505092915050565b600081359050613ff2816152c5565b92915050565b60006020828403121561400e5761400d614fe2565b5b600061401c84828501613ef0565b91505092915050565b6000806040838503121561403c5761403b614fe2565b5b600061404a85828601613ef0565b925050602061405b85828601613ef0565b9150509250929050565b60008060006060848603121561407e5761407d614fe2565b5b600061408c86828701613ef0565b935050602061409d86828701613ef0565b92505060406140ae86828701613fe3565b9150509250925092565b600080600080608085870312156140d2576140d1614fe2565b5b60006140e087828801613ef0565b94505060206140f187828801613ef0565b935050604061410287828801613fe3565b925050606085013567ffffffffffffffff81111561412357614122614fdd565b5b61412f87828801613f87565b91505092959194509250565b6000806040838503121561415257614151614fe2565b5b600061416085828601613ef0565b925050602083013567ffffffffffffffff81111561418157614180614fdd565b5b61418d85828601613f05565b9150509250929050565b600080604083850312156141ae576141ad614fe2565b5b60006141bc85828601613ef0565b92505060206141cd85828601613f33565b9150509250929050565b600080604083850312156141ee576141ed614fe2565b5b60006141fc85828601613ef0565b925050602061420d85828601613fe3565b9150509250929050565b60006020828403121561422d5761422c614fe2565b5b600061423b84828501613f33565b91505092915050565b6000806040838503121561425b5761425a614fe2565b5b600061426985828601613f33565b925050602083013567ffffffffffffffff81111561428a57614289614fdd565b5b61429685828601613fb5565b9150509250929050565b6000602082840312156142b6576142b5614fe2565b5b60006142c484828501613f48565b91505092915050565b6000602082840312156142e3576142e2614fe2565b5b60006142f184828501613f5d565b91505092915050565b6000602082840312156143105761430f614fe2565b5b600061431e84828501613f72565b91505092915050565b60006020828403121561433d5761433c614fe2565b5b600082013567ffffffffffffffff81111561435b5761435a614fdd565b5b61436784828501613fb5565b91505092915050565b60006020828403121561438657614385614fe2565b5b600061439484828501613fe3565b91505092915050565b600080604083850312156143b4576143b3614fe2565b5b60006143c285828601613fe3565b92505060206143d385828601613ef0565b9150509250929050565b60006143e983836147a3565b60208301905092915050565b6143fe81614d22565b82525050565b61441561441082614d22565b614e8e565b82525050565b600061442682614b96565b6144308185614bc4565b935061443b83614b71565b8060005b8381101561446c57815161445388826143dd565b975061445e83614bb7565b92505060018101905061443f565b5085935050505092915050565b61448281614d34565b82525050565b61449181614d40565b82525050565b60006144a282614ba1565b6144ac8185614bd5565b93506144bc818560208601614daf565b6144c581614fe7565b840191505092915050565b60006144db82614bac565b6144e58185614bf1565b93506144f5818560208601614daf565b6144fe81614fe7565b840191505092915050565b600061451482614bac565b61451e8185614c02565b935061452e818560208601614daf565b80840191505092915050565b6000815461454781614de2565b6145518186614c02565b9450600182166000811461456c576001811461457d576145b0565b60ff198316865281860193506145b0565b61458685614b81565b60005b838110156145a857815481890152600182019150602081019050614589565b838801955050505b50505092915050565b60006145c6601483614bf1565b91506145d182615005565b602082019050919050565b60006145e9602683614bf1565b91506145f48261502e565b604082019050919050565b600061460c600f83614bf1565b91506146178261507d565b602082019050919050565b600061462f601383614bf1565b915061463a826150a6565b602082019050919050565b6000614652601383614bf1565b915061465d826150cf565b602082019050919050565b6000614675601983614bf1565b9150614680826150f8565b602082019050919050565b6000614698602083614bf1565b91506146a382615121565b602082019050919050565b60006146bb602f83614bf1565b91506146c68261514a565b604082019050919050565b60006146de601383614bf1565b91506146e982615199565b602082019050919050565b6000614701601483614bf1565b915061470c826151c2565b602082019050919050565b6000614724600083614be6565b915061472f826151eb565b600082019050919050565b6000614747601283614bf1565b9150614752826151ee565b602082019050919050565b600061476a601583614bf1565b915061477582615217565b602082019050919050565b600061478d601c83614bf1565b915061479882615240565b602082019050919050565b6147ac81614d96565b82525050565b6147bb81614d96565b82525050565b60006147cd8284614404565b60148201915081905092915050565b60006147e8828661453a565b91506147f48285614509565b91506148008284614509565b9150819050949350505050565b600061481882614717565b9150819050919050565b600060208201905061483760008301846143f5565b92915050565b600060808201905061485260008301876143f5565b61485f60208301866143f5565b61486c60408301856147b2565b818103606083015261487e8184614497565b905095945050505050565b600060208201905081810360008301526148a3818461441b565b905092915050565b60006020820190506148c06000830184614479565b92915050565b60006020820190506148db6000830184614488565b92915050565b600060208201905081810360008301526148fb81846144d0565b905092915050565b6000602082019050818103600083015261491c816145b9565b9050919050565b6000602082019050818103600083015261493c816145dc565b9050919050565b6000602082019050818103600083015261495c816145ff565b9050919050565b6000602082019050818103600083015261497c81614622565b9050919050565b6000602082019050818103600083015261499c81614645565b9050919050565b600060208201905081810360008301526149bc81614668565b9050919050565b600060208201905081810360008301526149dc8161468b565b9050919050565b600060208201905081810360008301526149fc816146ae565b9050919050565b60006020820190508181036000830152614a1c816146d1565b9050919050565b60006020820190508181036000830152614a3c816146f4565b9050919050565b60006020820190508181036000830152614a5c8161473a565b9050919050565b60006020820190508181036000830152614a7c8161475d565b9050919050565b60006020820190508181036000830152614a9c81614780565b9050919050565b6000602082019050614ab860008301846147b2565b92915050565b6000614ac8614ad9565b9050614ad48282614e14565b919050565b6000604051905090565b600067ffffffffffffffff821115614afe57614afd614f9f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b2a57614b29614f9f565b5b614b3382614fe7565b9050602081019050919050565b600067ffffffffffffffff821115614b5b57614b5a614f9f565b5b614b6482614fe7565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c1882614d96565b9150614c2383614d96565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c5857614c57614ee3565b5b828201905092915050565b6000614c6e82614d96565b9150614c7983614d96565b925082614c8957614c88614f12565b5b828204905092915050565b6000614c9f82614d96565b9150614caa83614d96565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ce357614ce2614ee3565b5b828202905092915050565b6000614cf982614d96565b9150614d0483614d96565b925082821015614d1757614d16614ee3565b5b828203905092915050565b6000614d2d82614d76565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614dcd578082015181840152602081019050614db2565b83811115614ddc576000848401525b50505050565b60006002820490506001821680614dfa57607f821691505b60208210811415614e0e57614e0d614f41565b5b50919050565b614e1d82614fe7565b810181811067ffffffffffffffff82111715614e3c57614e3b614f9f565b5b80604052505050565b6000614e5082614d96565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e8357614e82614ee3565b5b600182019050919050565b6000614e9982614ea0565b9050919050565b6000614eab82614ff8565b9050919050565b6000614ebd82614d96565b9150614ec883614d96565b925082614ed857614ed7614f12565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5465616d207472616e73666572206661696c6564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f436f6d6d756e697479207472616e73666572206661696c656400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b50565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b7f6d7574616e74676f626c696e207472616e73666572206661696c656400000000600082015250565b61527281614d22565b811461527d57600080fd5b50565b61528981614d34565b811461529457600080fd5b50565b6152a081614d40565b81146152ab57600080fd5b50565b6152b781614d4a565b81146152c257600080fd5b50565b6152ce81614d96565b81146152d957600080fd5b5056fea2646970667358221220b3bfe10124cc272be124ba1ca0493bc58f361219b7cd1efb0d5c049c41a9ac3964736f6c63430008070033
Deployed Bytecode Sourcemap
47254:12214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29393:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32506:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34009:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33572:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47468:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56932:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28642:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34874:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57530:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51729:677;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47303:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47343:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47718:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47674:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57663:642;;;:::i;:::-;;35115:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54706:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53509:689;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56502:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47640:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47951:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56394:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48002:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48361:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57120:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47607:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56650:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32314:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47873:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48180:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29762:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7151:103;;;;;;;;;;;;;:::i;:::-;;56270:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48124:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6500:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56809:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32675:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47395:58;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47757:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47816:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34285:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47908:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48037:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35371:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56128:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57257:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57377:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48277:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54206:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57023:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47573:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54599:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34643:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47523:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7409:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58313:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29393:305;29495:4;29547:25;29532:40;;;:11;:40;;;;:105;;;;29604:33;29589:48;;;:11;:48;;;;29532:105;:158;;;;29654:36;29678:11;29654:23;:36::i;:::-;29532:158;29512:178;;29393:305;;;:::o;32506:100::-;32560:13;32593:5;32586:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32506:100;:::o;34009:204::-;34077:7;34102:16;34110:7;34102;:16::i;:::-;34097:64;;34127:34;;;;;;;;;;;;;;34097:64;34181:15;:24;34197:7;34181:24;;;;;;;;;;;;;;;;;;;;;34174:31;;34009:204;;;:::o;33572:371::-;33645:13;33661:24;33677:7;33661:15;:24::i;:::-;33645:40;;33706:5;33700:11;;:2;:11;;;33696:48;;;33720:24;;;;;;;;;;;;;;33696:48;33777:5;33761:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33787:37;33804:5;33811:12;:10;:12::i;:::-;33787:16;:37::i;:::-;33786:38;33761:63;33757:138;;;33848:35;;;;;;;;;;;;;;33757:138;33907:28;33916:2;33920:7;33929:5;33907:8;:28::i;:::-;33634:309;33572:371;;:::o;47468:48::-;;;;:::o;56932:83::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57001:6:::1;56992;;:15;;;;;;;;;;;;;;;;;;56932:83:::0;:::o;28642:303::-;28686:7;28911:15;:13;:15::i;:::-;28896:12;;28880:13;;:28;:46;28873:53;;28642:303;:::o;34874:170::-;35008:28;35018:4;35024:2;35028:7;35008:9;:28::i;:::-;34874:170;;;:::o;57530:125::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57629:18:::1;57616:10;;:31;;;;;;;;;;;;;;;;;;57530:125:::0;:::o;51729:677::-;51799:8;59265:6;;;;;;;;;;;59264:7;59256:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;59341:10;;59329:8;59313:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;59305:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;59411:10;59398:23;;:9;:23;;;59390:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;51822:13:::1;51838:18;;51822:34;;51869:17;51889:12;:24;51902:10;51889:24;;;;;;;;;;;;;;;;51869:44;;51942:10;;;;;;;;;;;51934:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;52020:24;;52008:8;51996:9;:20;;;;:::i;:::-;:48;;51988:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;52131:8;52123:5;:16;;;;:::i;:::-;52109:9;:31;;52101:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;52221:8;52209:9;:20;;;;:::i;:::-;52181:12;:24;52194:10;52181:24;;;;;;;;;;;;;;;:49;;;;52247:31;52257:10;52269:8;52247:9;:31::i;:::-;52343:3;52338:1;52326:8;52318:5;:16;;;;:::i;:::-;52317:22;;;;:::i;:::-;52316:30;;;;:::i;:::-;52293:19;;:53;;;;;;;:::i;:::-;;;;;;;;52367:31;52389:8;52381:5;:16;;;;:::i;:::-;52367:13;:31::i;:::-;51809:597;;51729:677:::0;;:::o;47303:25::-;;;;:::o;47343:33::-;;;;:::o;47718:29::-;;;;;;;;;;;;;:::o;47674:37::-;;;;;;;;;;;;;:::o;57663:642::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57723:19:::1;57745:21;57723:43;;57780:9;48226:42;57795:33;;57850:19;;57795:89;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57779:105;;;57903:4;57895:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;57975:1;57953:19;:23;;;;58008:15;;;;;;;;;;;58000:29;;58072:3;58066:2;58052:11;:16;;;;:::i;:::-;58051:24;;;;:::i;:::-;58000:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57989:101;;;;;58109:4;58101:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;58175:10;;;;;;;;;;;58167:24;;58213:21;58167:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58156:93;;;;;58268:4;58260:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;57710:595;;57663:642::o:0;35115:185::-;35253:39;35270:4;35276:2;35280:7;35253:39;;;;;;;;;;;;:16;:39::i;:::-;35115:185;;;:::o;54706:197::-;54794:4;54818:77;54837:6;54872:8;54855:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;54845:37;;;;;;54884:10;;54818:18;:77::i;:::-;54811:84;;54706:197;;;;:::o;53509:689::-;53569:16;53603:23;53629:17;53639:6;53629:9;:17::i;:::-;53603:43;;53657:30;53704:15;53690:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53657:63;;53731:22;53756:1;53731:26;;53768:23;53808:350;53833:15;53815;:33;:65;;;;;53870:10;;53852:14;:28;;53815:65;53808:350;;;53897:25;53925:23;53933:14;53925:7;:23::i;:::-;53897:51;;53990:6;53969:27;;:17;:27;;;53965:153;;;54050:14;54017:13;54031:15;54017:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;54085:17;;;;;:::i;:::-;;;;53965:153;54130:16;;;;;:::i;:::-;;;;53882:276;53808:350;;;54177:13;54170:20;;;;;;53509:689;;;:::o;56502:138::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56614:18:::1;56594:17;:38;;;;;;;;;;;;:::i;:::-;;56502:138:::0;:::o;47640:27::-;;;;;;;;;;;;;:::o;47951:42::-;;;;;;;;;;;;;;;;;;;:::o;56394:98::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56476:8:::1;56466:7;:18;;;;;;;;;;;;:::i;:::-;;56394:98:::0;:::o;48002:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48361:70::-;;;;;;;;;;;;;:::o;57120:129::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57197:6:::1;57184:10;;:19;;;;;;;;;;;;;;;;;;57235:6;57234:7;57214:17;;:27;;;;;;;;;;;;;;;;;;57120:129:::0;:::o;47607:26::-;;;;;;;;;;;;;:::o;56650:151::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56755:9:::1;56744:8;;:20;;;;;;;;;;;;;;;;;;56785:8;56775:7;:18;;;;;;;;;;;;:::i;:::-;;56650:151:::0;;:::o;32314:125::-;32378:7;32405:21;32418:7;32405:12;:21::i;:::-;:26;;;32398:33;;32314:125;;;:::o;47873:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48180:88::-;48226:42;48180:88;:::o;29762:206::-;29826:7;29867:1;29850:19;;:5;:19;;;29846:60;;;29878:28;;;;;;;;;;;;;;29846:60;29932:12;:19;29945:5;29932:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29924:36;;29917:43;;29762:206;;;:::o;7151:103::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7216:30:::1;7243:1;7216:18;:30::i;:::-;7151:103::o:0;56270:116::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56372:6:::1;56345:24;:33;;;;56270:116:::0;:::o;48124:47::-;;;;;;;;;;;;;;;;;:::o;6500:87::-;6546:7;6573:6;;;;;;;;;;;6566:13;;6500:87;:::o;56809:115::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56904:12:::1;56889;:27;;;;;;;;;;;;:::i;:::-;;56809:115:::0;:::o;32675:104::-;32731:13;32764:7;32757:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32675:104;:::o;47395:58::-;47452:1;47395:58;:::o;47757:52::-;;;;:::o;47816:44::-;;;;:::o;34285:287::-;34396:12;:10;:12::i;:::-;34384:24;;:8;:24;;;34380:54;;;34417:17;;;;;;;;;;;;;;34380:54;34492:8;34447:18;:32;34466:12;:10;:12::i;:::-;34447:32;;;;;;;;;;;;;;;:42;34480:8;34447:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34545:8;34516:48;;34531:12;:10;:12::i;:::-;34516:48;;;34555:8;34516:48;;;;;;:::i;:::-;;;;;;;;34285:287;;:::o;47908:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48037:76::-;;;;;;;;;;;;;:::o;35371:369::-;35538:28;35548:4;35554:2;35558:7;35538:9;:28::i;:::-;35581:15;:2;:13;;;:15::i;:::-;:76;;;;;35601:56;35632:4;35638:2;35642:7;35651:5;35601:30;:56::i;:::-;35600:57;35581:76;35577:156;;;35681:40;;;;;;;;;;;;;;35577:156;35371:369;;;;:::o;56128:136::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56250:6:::1;56214:33;:42;;;;56128:136:::0;:::o;57257:112::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57350:11:::1;57337:10;:24;;;;57257:112:::0;:::o;57377:145::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57491:23:::1;57473:15;;:41;;;;;;;;;;;;;;;;;;57377:145:::0;:::o;48277:75::-;;;;;;;;;;;;;:::o;54206:385::-;54272:13;54308:17;54316:8;54308:7;:17::i;:::-;54300:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;54402:8;;;;;;;;;;;54398:186;;;54458:7;54467:26;54484:8;54467:16;:26::i;:::-;54495:9;;;;;;;;;;;;;;;;;54441:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54427:79;;;;54398:186;54555:17;54548:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54206:385;;;;:::o;57023:87::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57096:6:::1;57085:8;;:17;;;;;;;;;;;;;;;;;;57023:87:::0;:::o;47573:24::-;;;;:::o;54599:97::-;54643:13;54676:12;54669:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54599:97;:::o;34643:164::-;34740:4;34764:18;:25;34783:5;34764:25;;;;;;;;;;;;;;;:35;34790:8;34764:35;;;;;;;;;;;;;;;;;;;;;;;;;34757:42;;34643:164;;;;:::o;47523:43::-;;;;:::o;7409:201::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7518:1:::1;7498:22;;:8;:22;;;;7490:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7574:28;7593:8;7574:18;:28::i;:::-;7409:201:::0;:::o;58313:147::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58402:8:::1;59265:6;;;;;;;;;;;59264:7;59256:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;59341:10;;59329:8;59313:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;59305:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;59411:10;59398:23;;:9;:23;;;59390:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;58423:29:::2;58433:8;58443;58423:9;:29::i;:::-;6791:1:::1;58313:147:::0;;:::o;19284:157::-;19369:4;19408:25;19393:40;;;:11;:40;;;;19386:47;;19284:157;;;:::o;35995:174::-;36052:4;36095:7;36076:15;:13;:15::i;:::-;:26;;:53;;;;;36116:13;;36106:7;:23;36076:53;:85;;;;;36134:11;:20;36146:7;36134:20;;;;;;;;;;;:27;;;;;;;;;;;;36133:28;36076:85;36069:92;;35995:174;;;:::o;5224:98::-;5277:7;5304:10;5297:17;;5224:98;:::o;44152:196::-;44294:2;44267:15;:24;44283:7;44267:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44332:7;44328:2;44312:28;;44321:5;44312:28;;;;;;;;;;;;44152:196;;;:::o;49987:101::-;50052:7;50079:1;50072:8;;49987:101;:::o;39095:2130::-;39210:35;39248:21;39261:7;39248:12;:21::i;:::-;39210:59;;39308:4;39286:26;;:13;:18;;;:26;;;39282:67;;39321:28;;;;;;;;;;;;;;39282:67;39362:22;39404:4;39388:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39425:36;39442:4;39448:12;:10;:12::i;:::-;39425:16;:36::i;:::-;39388:73;:126;;;;39502:12;:10;:12::i;:::-;39478:36;;:20;39490:7;39478:11;:20::i;:::-;:36;;;39388:126;39362:153;;39533:17;39528:66;;39559:35;;;;;;;;;;;;;;39528:66;39623:1;39609:16;;:2;:16;;;39605:52;;;39634:23;;;;;;;;;;;;;;39605:52;39670:43;39692:4;39698:2;39702:7;39711:1;39670:21;:43::i;:::-;39778:35;39795:1;39799:7;39808:4;39778:8;:35::i;:::-;40139:1;40109:12;:18;40122:4;40109:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40183:1;40155:12;:16;40168:2;40155:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40201:31;40235:11;:20;40247:7;40235:20;;;;;;;;;;;40201:54;;40286:2;40270:8;:13;;;:18;;;;;;;;;;;;;;;;;;40336:15;40303:8;:23;;;:49;;;;;;;;;;;;;;;;;;40604:19;40636:1;40626:7;:11;40604:33;;40652:31;40686:11;:24;40698:11;40686:24;;;;;;;;;;;40652:58;;40754:1;40729:27;;:8;:13;;;;;;;;;;;;:27;;;40725:384;;;40939:13;;40924:11;:28;40920:174;;40993:4;40977:8;:13;;;:20;;;;;;;;;;;;;;;;;;41046:13;:28;;;41020:8;:23;;;:54;;;;;;;;;;;;;;;;;;40920:174;40725:384;40084:1036;;;41156:7;41152:2;41137:27;;41146:4;41137:27;;;;;;;;;;;;41175:42;41196:4;41202:2;41206:7;41215:1;41175:20;:42::i;:::-;39199:2026;;39095:2130;;;:::o;36177:104::-;36246:27;36256:2;36260:8;36246:27;;;;;;;;;;;;:9;:27::i;:::-;36177:104;;:::o;50289:265::-;50362:5;50350:9;:17;50346:201;;;50385:9;50408:10;50400:24;;50463:5;50451:9;:17;;;;:::i;:::-;50400:88;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50384:104;;;50511:4;50503:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;50369:178;50346:201;50289:265;:::o;955:190::-;1080:4;1133;1104:25;1117:5;1124:4;1104:12;:25::i;:::-;:33;1097:40;;955:190;;;;;:::o;31143:1109::-;31205:21;;:::i;:::-;31239:12;31254:7;31239:22;;31322:4;31303:15;:13;:15::i;:::-;:23;;:47;;;;;31337:13;;31330:4;:20;31303:47;31299:886;;;31371:31;31405:11;:17;31417:4;31405:17;;;;;;;;;;;31371:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31446:9;:16;;;31441:729;;31517:1;31491:28;;:9;:14;;;:28;;;31487:101;;31555:9;31548:16;;;;;;31487:101;31890:261;31897:4;31890:261;;;31930:6;;;;;;;;31975:11;:17;31987:4;31975:17;;;;;;;;;;;31963:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32049:1;32023:28;;:9;:14;;;:28;;;32019:109;;32091:9;32084:16;;;;;;32019:109;31890:261;;;31441:729;31352:833;31299:886;32213:31;;;;;;;;;;;;;;31143:1109;;;;:::o;7770:191::-;7844:16;7863:6;;;;;;;;;;;7844:25;;7889:8;7880:6;;:17;;;;;;;;;;;;;;;;;;7944:8;7913:40;;7934:8;7913:40;;;;;;;;;;;;7833:128;7770:191;:::o;9201:326::-;9261:4;9518:1;9496:7;:19;;;:23;9489:30;;9201:326;;;:::o;44840:667::-;45003:4;45040:2;45024:36;;;45061:12;:10;:12::i;:::-;45075:4;45081:7;45090:5;45024:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45020:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45275:1;45258:6;:13;:18;45254:235;;;45304:40;;;;;;;;;;;;;;45254:235;45447:6;45441:13;45432:6;45428:2;45424:15;45417:38;45020:480;45153:45;;;45143:55;;;:6;:55;;;;45136:62;;;44840:667;;;;;;:::o;2786:723::-;2842:13;3072:1;3063:5;:10;3059:53;;;3090:10;;;;;;;;;;;;;;;;;;;;;3059:53;3122:12;3137:5;3122:20;;3153:14;3178:78;3193:1;3185:4;:9;3178:78;;3211:8;;;;;:::i;:::-;;;;3242:2;3234:10;;;;;:::i;:::-;;;3178:78;;;3266:19;3298:6;3288:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3266:39;;3316:154;3332:1;3323:5;:10;3316:154;;3360:1;3350:11;;;;;:::i;:::-;;;3427:2;3419:5;:10;;;;:::i;:::-;3406:2;:24;;;;:::i;:::-;3393:39;;3376:6;3383;3376:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3456:2;3447:11;;;;;:::i;:::-;;;3316:154;;;3494:6;3480:21;;;;;2786:723;;;;:::o;46155:159::-;;;;;:::o;46973:158::-;;;;;:::o;36644:163::-;36767:32;36773:2;36777:8;36787:5;36794:4;36767:5;:32::i;:::-;36644:163;;;:::o;1507:675::-;1590:7;1610:20;1633:4;1610:27;;1653:9;1648:497;1672:5;:12;1668:1;:16;1648:497;;;1706:20;1729:5;1735:1;1729:8;;;;;;;;:::i;:::-;;;;;;;;1706:31;;1772:12;1756;:28;1752:382;;1899:42;1914:12;1928;1899:14;:42::i;:::-;1884:57;;1752:382;;;2076:42;2091:12;2105;2076:14;:42::i;:::-;2061:57;;1752:382;1691:454;1686:3;;;;;:::i;:::-;;;;1648:497;;;;2162:12;2155:19;;;1507:675;;;;:::o;37066:1775::-;37205:20;37228:13;;37205:36;;37270:1;37256:16;;:2;:16;;;37252:48;;;37281:19;;;;;;;;;;;;;;37252:48;37327:1;37315:8;:13;37311:44;;;37337:18;;;;;;;;;;;;;;37311:44;37368:61;37398:1;37402:2;37406:12;37420:8;37368:21;:61::i;:::-;37741:8;37706:12;:16;37719:2;37706:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37805:8;37765:12;:16;37778:2;37765:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37864:2;37831:11;:25;37843:12;37831:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37931:15;37881:11;:25;37893:12;37881:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37964:20;37987:12;37964:35;;38014:11;38043:8;38028:12;:23;38014:37;;38072:4;:23;;;;;38080:15;:2;:13;;;:15::i;:::-;38072:23;38068:641;;;38116:314;38172:12;38168:2;38147:38;;38164:1;38147:38;;;;;;;;;;;;38213:69;38252:1;38256:2;38260:14;;;;;;38276:5;38213:30;:69::i;:::-;38208:174;;38318:40;;;;;;;;;;;;;;38208:174;38425:3;38409:12;:19;;38116:314;;38511:12;38494:13;;:29;38490:43;;38525:8;;;38490:43;38068:641;;;38574:120;38630:14;;;;;;38626:2;38605:40;;38622:1;38605:40;;;;;;;;;;;;38689:3;38673:12;:19;;38574:120;;38068:641;38739:12;38723:13;:28;;;;37681:1082;;38773:60;38802:1;38806:2;38810:12;38824:8;38773:20;:60::i;:::-;37194:1647;37066:1775;;;;:::o;2190:224::-;2258:13;2321:1;2315:4;2308:15;2350:1;2344:4;2337:15;2391:4;2385;2375:21;2366:30;;2190:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:329::-;3619:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:119;;;3674:79;;:::i;:::-;3636:119;3794:1;3819:53;3864:7;3855:6;3844:9;3840:22;3819:53;:::i;:::-;3809:63;;3765:117;3560:329;;;;:::o;3895:474::-;3963:6;3971;4020:2;4008:9;3999:7;3995:23;3991:32;3988:119;;;4026:79;;:::i;:::-;3988:119;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;3895:474;;;;;:::o;4375:619::-;4452:6;4460;4468;4517:2;4505:9;4496:7;4492:23;4488:32;4485:119;;;4523:79;;:::i;:::-;4485:119;4643:1;4668:53;4713:7;4704:6;4693:9;4689:22;4668:53;:::i;:::-;4658:63;;4614:117;4770:2;4796:53;4841:7;4832:6;4821:9;4817:22;4796:53;:::i;:::-;4786:63;;4741:118;4898:2;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4869:118;4375:619;;;;;:::o;5000:943::-;5095:6;5103;5111;5119;5168:3;5156:9;5147:7;5143:23;5139:33;5136:120;;;5175:79;;:::i;:::-;5136:120;5295:1;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5266:117;5422:2;5448:53;5493:7;5484:6;5473:9;5469:22;5448:53;:::i;:::-;5438:63;;5393:118;5550:2;5576:53;5621:7;5612:6;5601:9;5597:22;5576:53;:::i;:::-;5566:63;;5521:118;5706:2;5695:9;5691:18;5678:32;5737:18;5729:6;5726:30;5723:117;;;5759:79;;:::i;:::-;5723:117;5864:62;5918:7;5909:6;5898:9;5894:22;5864:62;:::i;:::-;5854:72;;5649:287;5000:943;;;;;;;:::o;5949:684::-;6042:6;6050;6099:2;6087:9;6078:7;6074:23;6070:32;6067:119;;;6105:79;;:::i;:::-;6067:119;6225:1;6250:53;6295:7;6286:6;6275:9;6271:22;6250:53;:::i;:::-;6240:63;;6196:117;6380:2;6369:9;6365:18;6352:32;6411:18;6403:6;6400:30;6397:117;;;6433:79;;:::i;:::-;6397:117;6538:78;6608:7;6599:6;6588:9;6584:22;6538:78;:::i;:::-;6528:88;;6323:303;5949:684;;;;;:::o;6639:468::-;6704:6;6712;6761:2;6749:9;6740:7;6736:23;6732:32;6729:119;;;6767:79;;:::i;:::-;6729:119;6887:1;6912:53;6957:7;6948:6;6937:9;6933:22;6912:53;:::i;:::-;6902:63;;6858:117;7014:2;7040:50;7082:7;7073:6;7062:9;7058:22;7040:50;:::i;:::-;7030:60;;6985:115;6639:468;;;;;:::o;7113:474::-;7181:6;7189;7238:2;7226:9;7217:7;7213:23;7209:32;7206:119;;;7244:79;;:::i;:::-;7206:119;7364:1;7389:53;7434:7;7425:6;7414:9;7410:22;7389:53;:::i;:::-;7379:63;;7335:117;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;7113:474;;;;;:::o;7593:323::-;7649:6;7698:2;7686:9;7677:7;7673:23;7669:32;7666:119;;;7704:79;;:::i;:::-;7666:119;7824:1;7849:50;7891:7;7882:6;7871:9;7867:22;7849:50;:::i;:::-;7839:60;;7795:114;7593:323;;;;:::o;7922:648::-;7997:6;8005;8054:2;8042:9;8033:7;8029:23;8025:32;8022:119;;;8060:79;;:::i;:::-;8022:119;8180:1;8205:50;8247:7;8238:6;8227:9;8223:22;8205:50;:::i;:::-;8195:60;;8151:114;8332:2;8321:9;8317:18;8304:32;8363:18;8355:6;8352:30;8349:117;;;8385:79;;:::i;:::-;8349:117;8490:63;8545:7;8536:6;8525:9;8521:22;8490:63;:::i;:::-;8480:73;;8275:288;7922:648;;;;;:::o;8576:329::-;8635:6;8684:2;8672:9;8663:7;8659:23;8655:32;8652:119;;;8690:79;;:::i;:::-;8652:119;8810:1;8835:53;8880:7;8871:6;8860:9;8856:22;8835:53;:::i;:::-;8825:63;;8781:117;8576:329;;;;:::o;8911:327::-;8969:6;9018:2;9006:9;8997:7;8993:23;8989:32;8986:119;;;9024:79;;:::i;:::-;8986:119;9144:1;9169:52;9213:7;9204:6;9193:9;9189:22;9169:52;:::i;:::-;9159:62;;9115:116;8911:327;;;;:::o;9244:349::-;9313:6;9362:2;9350:9;9341:7;9337:23;9333:32;9330:119;;;9368:79;;:::i;:::-;9330:119;9488:1;9513:63;9568:7;9559:6;9548:9;9544:22;9513:63;:::i;:::-;9503:73;;9459:127;9244:349;;;;:::o;9599:509::-;9668:6;9717:2;9705:9;9696:7;9692:23;9688:32;9685:119;;;9723:79;;:::i;:::-;9685:119;9871:1;9860:9;9856:17;9843:31;9901:18;9893:6;9890:30;9887:117;;;9923:79;;:::i;:::-;9887:117;10028:63;10083:7;10074:6;10063:9;10059:22;10028:63;:::i;:::-;10018:73;;9814:287;9599:509;;;;:::o;10114:329::-;10173:6;10222:2;10210:9;10201:7;10197:23;10193:32;10190:119;;;10228:79;;:::i;:::-;10190:119;10348:1;10373:53;10418:7;10409:6;10398:9;10394:22;10373:53;:::i;:::-;10363:63;;10319:117;10114:329;;;;:::o;10449:474::-;10517:6;10525;10574:2;10562:9;10553:7;10549:23;10545:32;10542:119;;;10580:79;;:::i;:::-;10542:119;10700:1;10725:53;10770:7;10761:6;10750:9;10746:22;10725:53;:::i;:::-;10715:63;;10671:117;10827:2;10853:53;10898:7;10889:6;10878:9;10874:22;10853:53;:::i;:::-;10843:63;;10798:118;10449:474;;;;;:::o;10929:179::-;10998:10;11019:46;11061:3;11053:6;11019:46;:::i;:::-;11097:4;11092:3;11088:14;11074:28;;10929:179;;;;:::o;11114:118::-;11201:24;11219:5;11201:24;:::i;:::-;11196:3;11189:37;11114:118;;:::o;11238:157::-;11343:45;11363:24;11381:5;11363:24;:::i;:::-;11343:45;:::i;:::-;11338:3;11331:58;11238:157;;:::o;11431:732::-;11550:3;11579:54;11627:5;11579:54;:::i;:::-;11649:86;11728:6;11723:3;11649:86;:::i;:::-;11642:93;;11759:56;11809:5;11759:56;:::i;:::-;11838:7;11869:1;11854:284;11879:6;11876:1;11873:13;11854:284;;;11955:6;11949:13;11982:63;12041:3;12026:13;11982:63;:::i;:::-;11975:70;;12068:60;12121:6;12068:60;:::i;:::-;12058:70;;11914:224;11901:1;11898;11894:9;11889:14;;11854:284;;;11858:14;12154:3;12147:10;;11555:608;;;11431:732;;;;:::o;12169:109::-;12250:21;12265:5;12250:21;:::i;:::-;12245:3;12238:34;12169:109;;:::o;12284:118::-;12371:24;12389:5;12371:24;:::i;:::-;12366:3;12359:37;12284:118;;:::o;12408:360::-;12494:3;12522:38;12554:5;12522:38;:::i;:::-;12576:70;12639:6;12634:3;12576:70;:::i;:::-;12569:77;;12655:52;12700:6;12695:3;12688:4;12681:5;12677:16;12655:52;:::i;:::-;12732:29;12754:6;12732:29;:::i;:::-;12727:3;12723:39;12716:46;;12498:270;12408:360;;;;:::o;12774:364::-;12862:3;12890:39;12923:5;12890:39;:::i;:::-;12945:71;13009:6;13004:3;12945:71;:::i;:::-;12938:78;;13025:52;13070:6;13065:3;13058:4;13051:5;13047:16;13025:52;:::i;:::-;13102:29;13124:6;13102:29;:::i;:::-;13097:3;13093:39;13086:46;;12866:272;12774:364;;;;:::o;13144:377::-;13250:3;13278:39;13311:5;13278:39;:::i;:::-;13333:89;13415:6;13410:3;13333:89;:::i;:::-;13326:96;;13431:52;13476:6;13471:3;13464:4;13457:5;13453:16;13431:52;:::i;:::-;13508:6;13503:3;13499:16;13492:23;;13254:267;13144:377;;;;:::o;13551:845::-;13654:3;13691:5;13685:12;13720:36;13746:9;13720:36;:::i;:::-;13772:89;13854:6;13849:3;13772:89;:::i;:::-;13765:96;;13892:1;13881:9;13877:17;13908:1;13903:137;;;;14054:1;14049:341;;;;13870:520;;13903:137;13987:4;13983:9;13972;13968:25;13963:3;13956:38;14023:6;14018:3;14014:16;14007:23;;13903:137;;14049:341;14116:38;14148:5;14116:38;:::i;:::-;14176:1;14190:154;14204:6;14201:1;14198:13;14190:154;;;14278:7;14272:14;14268:1;14263:3;14259:11;14252:35;14328:1;14319:7;14315:15;14304:26;;14226:4;14223:1;14219:12;14214:17;;14190:154;;;14373:6;14368:3;14364:16;14357:23;;14056:334;;13870:520;;13658:738;;13551:845;;;;:::o;14402:366::-;14544:3;14565:67;14629:2;14624:3;14565:67;:::i;:::-;14558:74;;14641:93;14730:3;14641:93;:::i;:::-;14759:2;14754:3;14750:12;14743:19;;14402:366;;;:::o;14774:::-;14916:3;14937:67;15001:2;14996:3;14937:67;:::i;:::-;14930:74;;15013:93;15102:3;15013:93;:::i;:::-;15131:2;15126:3;15122:12;15115:19;;14774:366;;;:::o;15146:::-;15288:3;15309:67;15373:2;15368:3;15309:67;:::i;:::-;15302:74;;15385:93;15474:3;15385:93;:::i;:::-;15503:2;15498:3;15494:12;15487:19;;15146:366;;;:::o;15518:::-;15660:3;15681:67;15745:2;15740:3;15681:67;:::i;:::-;15674:74;;15757:93;15846:3;15757:93;:::i;:::-;15875:2;15870:3;15866:12;15859:19;;15518:366;;;:::o;15890:::-;16032:3;16053:67;16117:2;16112:3;16053:67;:::i;:::-;16046:74;;16129:93;16218:3;16129:93;:::i;:::-;16247:2;16242:3;16238:12;16231:19;;15890:366;;;:::o;16262:::-;16404:3;16425:67;16489:2;16484:3;16425:67;:::i;:::-;16418:74;;16501:93;16590:3;16501:93;:::i;:::-;16619:2;16614:3;16610:12;16603:19;;16262:366;;;:::o;16634:::-;16776:3;16797:67;16861:2;16856:3;16797:67;:::i;:::-;16790:74;;16873:93;16962:3;16873:93;:::i;:::-;16991:2;16986:3;16982:12;16975:19;;16634:366;;;:::o;17006:::-;17148:3;17169:67;17233:2;17228:3;17169:67;:::i;:::-;17162:74;;17245:93;17334:3;17245:93;:::i;:::-;17363:2;17358:3;17354:12;17347:19;;17006:366;;;:::o;17378:::-;17520:3;17541:67;17605:2;17600:3;17541:67;:::i;:::-;17534:74;;17617:93;17706:3;17617:93;:::i;:::-;17735:2;17730:3;17726:12;17719:19;;17378:366;;;:::o;17750:::-;17892:3;17913:67;17977:2;17972:3;17913:67;:::i;:::-;17906:74;;17989:93;18078:3;17989:93;:::i;:::-;18107:2;18102:3;18098:12;18091:19;;17750:366;;;:::o;18122:398::-;18281:3;18302:83;18383:1;18378:3;18302:83;:::i;:::-;18295:90;;18394:93;18483:3;18394:93;:::i;:::-;18512:1;18507:3;18503:11;18496:18;;18122:398;;;:::o;18526:366::-;18668:3;18689:67;18753:2;18748:3;18689:67;:::i;:::-;18682:74;;18765:93;18854:3;18765:93;:::i;:::-;18883:2;18878:3;18874:12;18867:19;;18526:366;;;:::o;18898:::-;19040:3;19061:67;19125:2;19120:3;19061:67;:::i;:::-;19054:74;;19137:93;19226:3;19137:93;:::i;:::-;19255:2;19250:3;19246:12;19239:19;;18898:366;;;:::o;19270:::-;19412:3;19433:67;19497:2;19492:3;19433:67;:::i;:::-;19426:74;;19509:93;19598:3;19509:93;:::i;:::-;19627:2;19622:3;19618:12;19611:19;;19270:366;;;:::o;19642:108::-;19719:24;19737:5;19719:24;:::i;:::-;19714:3;19707:37;19642:108;;:::o;19756:118::-;19843:24;19861:5;19843:24;:::i;:::-;19838:3;19831:37;19756:118;;:::o;19880:256::-;19992:3;20007:75;20078:3;20069:6;20007:75;:::i;:::-;20107:2;20102:3;20098:12;20091:19;;20127:3;20120:10;;19880:256;;;;:::o;20142:589::-;20367:3;20389:92;20477:3;20468:6;20389:92;:::i;:::-;20382:99;;20498:95;20589:3;20580:6;20498:95;:::i;:::-;20491:102;;20610:95;20701:3;20692:6;20610:95;:::i;:::-;20603:102;;20722:3;20715:10;;20142:589;;;;;;:::o;20737:379::-;20921:3;20943:147;21086:3;20943:147;:::i;:::-;20936:154;;21107:3;21100:10;;20737:379;;;:::o;21122:222::-;21215:4;21253:2;21242:9;21238:18;21230:26;;21266:71;21334:1;21323:9;21319:17;21310:6;21266:71;:::i;:::-;21122:222;;;;:::o;21350:640::-;21545:4;21583:3;21572:9;21568:19;21560:27;;21597:71;21665:1;21654:9;21650:17;21641:6;21597:71;:::i;:::-;21678:72;21746:2;21735:9;21731:18;21722:6;21678:72;:::i;:::-;21760;21828:2;21817:9;21813:18;21804:6;21760:72;:::i;:::-;21879:9;21873:4;21869:20;21864:2;21853:9;21849:18;21842:48;21907:76;21978:4;21969:6;21907:76;:::i;:::-;21899:84;;21350:640;;;;;;;:::o;21996:373::-;22139:4;22177:2;22166:9;22162:18;22154:26;;22226:9;22220:4;22216:20;22212:1;22201:9;22197:17;22190:47;22254:108;22357:4;22348:6;22254:108;:::i;:::-;22246:116;;21996:373;;;;:::o;22375:210::-;22462:4;22500:2;22489:9;22485:18;22477:26;;22513:65;22575:1;22564:9;22560:17;22551:6;22513:65;:::i;:::-;22375:210;;;;:::o;22591:222::-;22684:4;22722:2;22711:9;22707:18;22699:26;;22735:71;22803:1;22792:9;22788:17;22779:6;22735:71;:::i;:::-;22591:222;;;;:::o;22819:313::-;22932:4;22970:2;22959:9;22955:18;22947:26;;23019:9;23013:4;23009:20;23005:1;22994:9;22990:17;22983:47;23047:78;23120:4;23111:6;23047:78;:::i;:::-;23039:86;;22819:313;;;;:::o;23138:419::-;23304:4;23342:2;23331:9;23327:18;23319:26;;23391:9;23385:4;23381:20;23377:1;23366:9;23362:17;23355:47;23419:131;23545:4;23419:131;:::i;:::-;23411:139;;23138:419;;;:::o;23563:::-;23729:4;23767:2;23756:9;23752:18;23744:26;;23816:9;23810:4;23806:20;23802:1;23791:9;23787:17;23780:47;23844:131;23970:4;23844:131;:::i;:::-;23836:139;;23563:419;;;:::o;23988:::-;24154:4;24192:2;24181:9;24177:18;24169:26;;24241:9;24235:4;24231:20;24227:1;24216:9;24212:17;24205:47;24269:131;24395:4;24269:131;:::i;:::-;24261:139;;23988:419;;;:::o;24413:::-;24579:4;24617:2;24606:9;24602:18;24594:26;;24666:9;24660:4;24656:20;24652:1;24641:9;24637:17;24630:47;24694:131;24820:4;24694:131;:::i;:::-;24686:139;;24413:419;;;:::o;24838:::-;25004:4;25042:2;25031:9;25027:18;25019:26;;25091:9;25085:4;25081:20;25077:1;25066:9;25062:17;25055:47;25119:131;25245:4;25119:131;:::i;:::-;25111:139;;24838:419;;;:::o;25263:::-;25429:4;25467:2;25456:9;25452:18;25444:26;;25516:9;25510:4;25506:20;25502:1;25491:9;25487:17;25480:47;25544:131;25670:4;25544:131;:::i;:::-;25536:139;;25263:419;;;:::o;25688:::-;25854:4;25892:2;25881:9;25877:18;25869:26;;25941:9;25935:4;25931:20;25927:1;25916:9;25912:17;25905:47;25969:131;26095:4;25969:131;:::i;:::-;25961:139;;25688:419;;;:::o;26113:::-;26279:4;26317:2;26306:9;26302:18;26294:26;;26366:9;26360:4;26356:20;26352:1;26341:9;26337:17;26330:47;26394:131;26520:4;26394:131;:::i;:::-;26386:139;;26113:419;;;:::o;26538:::-;26704:4;26742:2;26731:9;26727:18;26719:26;;26791:9;26785:4;26781:20;26777:1;26766:9;26762:17;26755:47;26819:131;26945:4;26819:131;:::i;:::-;26811:139;;26538:419;;;:::o;26963:::-;27129:4;27167:2;27156:9;27152:18;27144:26;;27216:9;27210:4;27206:20;27202:1;27191:9;27187:17;27180:47;27244:131;27370:4;27244:131;:::i;:::-;27236:139;;26963:419;;;:::o;27388:::-;27554:4;27592:2;27581:9;27577:18;27569:26;;27641:9;27635:4;27631:20;27627:1;27616:9;27612:17;27605:47;27669:131;27795:4;27669:131;:::i;:::-;27661:139;;27388:419;;;:::o;27813:::-;27979:4;28017:2;28006:9;28002:18;27994:26;;28066:9;28060:4;28056:20;28052:1;28041:9;28037:17;28030:47;28094:131;28220:4;28094:131;:::i;:::-;28086:139;;27813:419;;;:::o;28238:::-;28404:4;28442:2;28431:9;28427:18;28419:26;;28491:9;28485:4;28481:20;28477:1;28466:9;28462:17;28455:47;28519:131;28645:4;28519:131;:::i;:::-;28511:139;;28238:419;;;:::o;28663:222::-;28756:4;28794:2;28783:9;28779:18;28771:26;;28807:71;28875:1;28864:9;28860:17;28851:6;28807:71;:::i;:::-;28663:222;;;;:::o;28891:129::-;28925:6;28952:20;;:::i;:::-;28942:30;;28981:33;29009:4;29001:6;28981:33;:::i;:::-;28891:129;;;:::o;29026:75::-;29059:6;29092:2;29086:9;29076:19;;29026:75;:::o;29107:311::-;29184:4;29274:18;29266:6;29263:30;29260:56;;;29296:18;;:::i;:::-;29260:56;29346:4;29338:6;29334:17;29326:25;;29406:4;29400;29396:15;29388:23;;29107:311;;;:::o;29424:307::-;29485:4;29575:18;29567:6;29564:30;29561:56;;;29597:18;;:::i;:::-;29561:56;29635:29;29657:6;29635:29;:::i;:::-;29627:37;;29719:4;29713;29709:15;29701:23;;29424:307;;;:::o;29737:308::-;29799:4;29889:18;29881:6;29878:30;29875:56;;;29911:18;;:::i;:::-;29875:56;29949:29;29971:6;29949:29;:::i;:::-;29941:37;;30033:4;30027;30023:15;30015:23;;29737:308;;;:::o;30051:132::-;30118:4;30141:3;30133:11;;30171:4;30166:3;30162:14;30154:22;;30051:132;;;:::o;30189:141::-;30238:4;30261:3;30253:11;;30284:3;30281:1;30274:14;30318:4;30315:1;30305:18;30297:26;;30189:141;;;:::o;30336:114::-;30403:6;30437:5;30431:12;30421:22;;30336:114;;;:::o;30456:98::-;30507:6;30541:5;30535:12;30525:22;;30456:98;;;:::o;30560:99::-;30612:6;30646:5;30640:12;30630:22;;30560:99;;;:::o;30665:113::-;30735:4;30767;30762:3;30758:14;30750:22;;30665:113;;;:::o;30784:184::-;30883:11;30917:6;30912:3;30905:19;30957:4;30952:3;30948:14;30933:29;;30784:184;;;;:::o;30974:168::-;31057:11;31091:6;31086:3;31079:19;31131:4;31126:3;31122:14;31107:29;;30974:168;;;;:::o;31148:147::-;31249:11;31286:3;31271:18;;31148:147;;;;:::o;31301:169::-;31385:11;31419:6;31414:3;31407:19;31459:4;31454:3;31450:14;31435:29;;31301:169;;;;:::o;31476:148::-;31578:11;31615:3;31600:18;;31476:148;;;;:::o;31630:305::-;31670:3;31689:20;31707:1;31689:20;:::i;:::-;31684:25;;31723:20;31741:1;31723:20;:::i;:::-;31718:25;;31877:1;31809:66;31805:74;31802:1;31799:81;31796:107;;;31883:18;;:::i;:::-;31796:107;31927:1;31924;31920:9;31913:16;;31630:305;;;;:::o;31941:185::-;31981:1;31998:20;32016:1;31998:20;:::i;:::-;31993:25;;32032:20;32050:1;32032:20;:::i;:::-;32027:25;;32071:1;32061:35;;32076:18;;:::i;:::-;32061:35;32118:1;32115;32111:9;32106:14;;31941:185;;;;:::o;32132:348::-;32172:7;32195:20;32213:1;32195:20;:::i;:::-;32190:25;;32229:20;32247:1;32229:20;:::i;:::-;32224:25;;32417:1;32349:66;32345:74;32342:1;32339:81;32334:1;32327:9;32320:17;32316:105;32313:131;;;32424:18;;:::i;:::-;32313:131;32472:1;32469;32465:9;32454:20;;32132:348;;;;:::o;32486:191::-;32526:4;32546:20;32564:1;32546:20;:::i;:::-;32541:25;;32580:20;32598:1;32580:20;:::i;:::-;32575:25;;32619:1;32616;32613:8;32610:34;;;32624:18;;:::i;:::-;32610:34;32669:1;32666;32662:9;32654:17;;32486:191;;;;:::o;32683:96::-;32720:7;32749:24;32767:5;32749:24;:::i;:::-;32738:35;;32683:96;;;:::o;32785:90::-;32819:7;32862:5;32855:13;32848:21;32837:32;;32785:90;;;:::o;32881:77::-;32918:7;32947:5;32936:16;;32881:77;;;:::o;32964:149::-;33000:7;33040:66;33033:5;33029:78;33018:89;;32964:149;;;:::o;33119:126::-;33156:7;33196:42;33189:5;33185:54;33174:65;;33119:126;;;:::o;33251:77::-;33288:7;33317:5;33306:16;;33251:77;;;:::o;33334:154::-;33418:6;33413:3;33408;33395:30;33480:1;33471:6;33466:3;33462:16;33455:27;33334:154;;;:::o;33494:307::-;33562:1;33572:113;33586:6;33583:1;33580:13;33572:113;;;33671:1;33666:3;33662:11;33656:18;33652:1;33647:3;33643:11;33636:39;33608:2;33605:1;33601:10;33596:15;;33572:113;;;33703:6;33700:1;33697:13;33694:101;;;33783:1;33774:6;33769:3;33765:16;33758:27;33694:101;33543:258;33494:307;;;:::o;33807:320::-;33851:6;33888:1;33882:4;33878:12;33868:22;;33935:1;33929:4;33925:12;33956:18;33946:81;;34012:4;34004:6;34000:17;33990:27;;33946:81;34074:2;34066:6;34063:14;34043:18;34040:38;34037:84;;;34093:18;;:::i;:::-;34037:84;33858:269;33807:320;;;:::o;34133:281::-;34216:27;34238:4;34216:27;:::i;:::-;34208:6;34204:40;34346:6;34334:10;34331:22;34310:18;34298:10;34295:34;34292:62;34289:88;;;34357:18;;:::i;:::-;34289:88;34397:10;34393:2;34386:22;34176:238;34133:281;;:::o;34420:233::-;34459:3;34482:24;34500:5;34482:24;:::i;:::-;34473:33;;34528:66;34521:5;34518:77;34515:103;;;34598:18;;:::i;:::-;34515:103;34645:1;34638:5;34634:13;34627:20;;34420:233;;;:::o;34659:100::-;34698:7;34727:26;34747:5;34727:26;:::i;:::-;34716:37;;34659:100;;;:::o;34765:94::-;34804:7;34833:20;34847:5;34833:20;:::i;:::-;34822:31;;34765:94;;;:::o;34865:176::-;34897:1;34914:20;34932:1;34914:20;:::i;:::-;34909:25;;34948:20;34966:1;34948:20;:::i;:::-;34943:25;;34987:1;34977:35;;34992:18;;:::i;:::-;34977:35;35033:1;35030;35026:9;35021:14;;34865:176;;;;:::o;35047:180::-;35095:77;35092:1;35085:88;35192:4;35189:1;35182:15;35216:4;35213:1;35206:15;35233:180;35281:77;35278:1;35271:88;35378:4;35375:1;35368:15;35402:4;35399:1;35392:15;35419:180;35467:77;35464:1;35457:88;35564:4;35561:1;35554:15;35588:4;35585:1;35578:15;35605:180;35653:77;35650:1;35643:88;35750:4;35747:1;35740:15;35774:4;35771:1;35764:15;35791:180;35839:77;35836:1;35829:88;35936:4;35933:1;35926:15;35960:4;35957:1;35950:15;35977:117;36086:1;36083;36076:12;36100:117;36209:1;36206;36199:12;36223:117;36332:1;36329;36322:12;36346:117;36455:1;36452;36445:12;36469:117;36578:1;36575;36568:12;36592:102;36633:6;36684:2;36680:7;36675:2;36668:5;36664:14;36660:28;36650:38;;36592:102;;;:::o;36700:94::-;36733:8;36781:5;36777:2;36773:14;36752:35;;36700:94;;;:::o;36800:170::-;36940:22;36936:1;36928:6;36924:14;36917:46;36800:170;:::o;36976:225::-;37116:34;37112:1;37104:6;37100:14;37093:58;37185:8;37180:2;37172:6;37168:15;37161:33;36976:225;:::o;37207:165::-;37347:17;37343:1;37335:6;37331:14;37324:41;37207:165;:::o;37378:169::-;37518:21;37514:1;37506:6;37502:14;37495:45;37378:169;:::o;37553:::-;37693:21;37689:1;37681:6;37677:14;37670:45;37553:169;:::o;37728:175::-;37868:27;37864:1;37856:6;37852:14;37845:51;37728:175;:::o;37909:182::-;38049:34;38045:1;38037:6;38033:14;38026:58;37909:182;:::o;38097:234::-;38237:34;38233:1;38225:6;38221:14;38214:58;38306:17;38301:2;38293:6;38289:15;38282:42;38097:234;:::o;38337:169::-;38477:21;38473:1;38465:6;38461:14;38454:45;38337:169;:::o;38512:170::-;38652:22;38648:1;38640:6;38636:14;38629:46;38512:170;:::o;38688:114::-;;:::o;38808:168::-;38948:20;38944:1;38936:6;38932:14;38925:44;38808:168;:::o;38982:171::-;39122:23;39118:1;39110:6;39106:14;39099:47;38982:171;:::o;39159:178::-;39299:30;39295:1;39287:6;39283:14;39276:54;39159:178;:::o;39343:122::-;39416:24;39434:5;39416:24;:::i;:::-;39409:5;39406:35;39396:63;;39455:1;39452;39445:12;39396:63;39343:122;:::o;39471:116::-;39541:21;39556:5;39541:21;:::i;:::-;39534:5;39531:32;39521:60;;39577:1;39574;39567:12;39521:60;39471:116;:::o;39593:122::-;39666:24;39684:5;39666:24;:::i;:::-;39659:5;39656:35;39646:63;;39705:1;39702;39695:12;39646:63;39593:122;:::o;39721:120::-;39793:23;39810:5;39793:23;:::i;:::-;39786:5;39783:34;39773:62;;39831:1;39828;39821:12;39773:62;39721:120;:::o;39847:122::-;39920:24;39938:5;39920:24;:::i;:::-;39913:5;39910:35;39900:63;;39959:1;39956;39949:12;39900:63;39847:122;:::o
Swarm Source
ipfs://b3bfe10124cc272be124ba1ca0493bc58f361219b7cd1efb0d5c049c41a9ac39
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.