Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
103 0xCats
Holders
87
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 0xCatsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-07 */ // 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/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/cats.sol pragma solidity >=0.7.0 <0.9.0; contract NFT is ERC721Enumerable, Ownable { using Strings for uint256; uint256 public cost = 0.01 ether; uint256 public maxMintAmount = 20; uint256 public maxSupply = 3888; uint256 public freeSupply = 800; uint256 public freeSupplyClaimed = 0; uint256 public reservedSupply = 25; string public baseTokenURI; constructor(string memory _initBaseURI) ERC721("0xCats", "0xCats") { setBaseTokenURI(_initBaseURI); mint(msg.sender, 25); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseTokenURI(string memory _baseTokenURI) public { baseTokenURI = _baseTokenURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { return string(abi.encodePacked(_baseURI(), "/", tokenId.toString(), ".json")); } function mint(address _to, uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(_mintAmount >= 1, "Minimal mint amount is 1"); require(supply + _mintAmount <= maxSupply, "Maximum minting reached"); if(msg.sender != owner()) { require(balanceOf(msg.sender) <= maxMintAmount, "Maximum minting for this wallet reached"); // if user already have minted nft if(balanceOf(msg.sender) > 0) { require(_mintAmount <= maxMintAmount, "Mint amount is exceed max mint amount"); require(msg.value >= cost * _mintAmount, "Not enough cost for paid mint, user already have token in this smart contract"); } else { // if free supply still available if(freeSupplyClaimed < freeSupply) { require(_mintAmount <= maxMintAmount + 1, "Mint amount is exceed max mint amount"); require(msg.value >= cost * (_mintAmount - 1), "Not enough cost in free + paid mint"); freeSupplyClaimed++; } // free suply out of stock else { require(_mintAmount <= maxMintAmount, "Mint amount is exceed max mint amount"); require(msg.value >= cost * _mintAmount, "Not enough cost for paid mint"); } } } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, supply + i, "guard"); } } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupplyClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedSupply","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":"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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052662386f26fc10000600b556014600c55610f30600d55610320600e556000600f5560196010553480156200003757600080fd5b5060405162005e0138038062005e0183398181016040528101906200005d9190620011d9565b6040518060400160405280600681526020017f30784361747300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f30784361747300000000000000000000000000000000000000000000000000008152508160009080519060200190620000e192919062001062565b508060019080519060200190620000fa92919062001062565b5050506200011d620001116200014860201b60201c565b6200015060201b60201c565b6200012e816200021660201b60201c565b620001413360196200023260201b60201c565b5062001cda565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601190805190602001906200022e92919062001062565b5050565b6000620002446200064060201b60201c565b905060018210156200028d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028490620015e2565b60405180910390fd5b600d5482826200029e919062001690565b1115620002e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d9906200157c565b60405180910390fd5b620002f26200064d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620005c057600c5462000339336200067760201b60201c565b11156200037d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037490620015c0565b60405180910390fd5b600062000390336200067760201b60201c565b11156200043a57600c54821115620003df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d69062001538565b60405180910390fd5b81600b54620003ef9190620016ed565b34101562000434576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042b906200159e565b60405180910390fd5b620005bf565b600e54600f54101562000520576001600c5462000458919062001690565b8211156200049d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004949062001538565b60405180910390fd5b600182620004ac91906200174e565b600b54620004bb9190620016ed565b34101562000500576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f790620014d2565b60405180910390fd5b600f6000815480929190620005159062001895565b9190505550620005be565b600c5482111562000568576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055f9062001538565b60405180910390fd5b81600b54620005789190620016ed565b341015620005bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b490620014f4565b60405180910390fd5b5b5b5b6000600190505b8281116200063a5762000624848284620005e2919062001690565b6040518060400160405280600581526020017f67756172640000000000000000000000000000000000000000000000000000008152506200073260201b60201c565b8080620006319062001895565b915050620005c7565b50505050565b6000600880549050905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620006eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e29062001516565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b620007448383620007a060201b60201c565b6200075960008484846200099a60201b60201c565b6200079b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000792906200148e565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000813576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200080a906200155a565b60405180910390fd5b620008248162000b5460201b60201c565b1562000867576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085e90620014b0565b60405180910390fd5b6200087b6000838362000bc060201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620008cd919062001690565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620009966000838362000d0760201b60201c565b5050565b6000620009c88473ffffffffffffffffffffffffffffffffffffffff1662000d0c60201b6200158f1760201c565b1562000b47578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620009fa6200014860201b60201c565b8786866040518563ffffffff1660e01b815260040162000a1e94939291906200143a565b602060405180830381600087803b15801562000a3957600080fd5b505af192505050801562000a6d57506040513d601f19601f8201168201806040525081019062000a6a9190620011a7565b60015b62000af6573d806000811462000aa0576040519150601f19603f3d011682016040523d82523d6000602084013e62000aa5565b606091505b5060008151141562000aee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ae5906200148e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000b4c565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000bd883838362000d2f60201b620015b21760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000c255762000c1f8162000d3460201b60201c565b62000c6d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000c6c5762000c6b838262000d7d60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000cba5762000cb48162000efa60201b60201c565b62000d02565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000d015762000d00828262000fd660201b60201c565b5b5b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000d97846200067760201b620010bb1760201c565b62000da391906200174e565b905060006007600084815260200190815260200160002054905081811462000e89576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000f1091906200174e565b905060006009600084815260200190815260200160002054905060006008838154811062000f435762000f4262001970565b5b90600052602060002001549050806008838154811062000f685762000f6762001970565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000fba5762000fb962001941565b5b6001900381819060005260206000200160009055905550505050565b600062000fee836200067760201b620010bb1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054620010709062001829565b90600052602060002090601f016020900481019282620010945760008555620010e0565b82601f10620010af57805160ff1916838001178555620010e0565b82800160010185558215620010e0579182015b82811115620010df578251825591602001919060010190620010c2565b5b509050620010ef9190620010f3565b5090565b5b808211156200110e576000816000905550600101620010f4565b5090565b60006200112962001123846200162d565b62001604565b905082815260208101848484011115620011485762001147620019d3565b5b62001155848285620017f3565b509392505050565b6000815190506200116e8162001cc0565b92915050565b600082601f8301126200118c576200118b620019ce565b5b81516200119e84826020860162001112565b91505092915050565b600060208284031215620011c057620011bf620019dd565b5b6000620011d0848285016200115d565b91505092915050565b600060208284031215620011f257620011f1620019dd565b5b600082015167ffffffffffffffff811115620012135762001212620019d8565b5b620012218482850162001174565b91505092915050565b620012358162001789565b82525050565b6000620012488262001663565b6200125481856200166e565b935062001266818560208601620017f3565b6200127181620019e2565b840191505092915050565b60006200128b6032836200167f565b91506200129882620019f3565b604082019050919050565b6000620012b2601c836200167f565b9150620012bf8262001a42565b602082019050919050565b6000620012d96023836200167f565b9150620012e68262001a6b565b604082019050919050565b600062001300601d836200167f565b91506200130d8262001aba565b602082019050919050565b600062001327602a836200167f565b9150620013348262001ae3565b604082019050919050565b60006200134e6025836200167f565b91506200135b8262001b32565b604082019050919050565b6000620013756020836200167f565b9150620013828262001b81565b602082019050919050565b60006200139c6017836200167f565b9150620013a98262001baa565b602082019050919050565b6000620013c3604d836200167f565b9150620013d08262001bd3565b606082019050919050565b6000620013ea6027836200167f565b9150620013f78262001c48565b604082019050919050565b6000620014116018836200167f565b91506200141e8262001c97565b602082019050919050565b6200143481620017e9565b82525050565b60006080820190506200145160008301876200122a565b6200146060208301866200122a565b6200146f604083018562001429565b81810360608301526200148381846200123b565b905095945050505050565b60006020820190508181036000830152620014a9816200127c565b9050919050565b60006020820190508181036000830152620014cb81620012a3565b9050919050565b60006020820190508181036000830152620014ed81620012ca565b9050919050565b600060208201905081810360008301526200150f81620012f1565b9050919050565b60006020820190508181036000830152620015318162001318565b9050919050565b6000602082019050818103600083015262001553816200133f565b9050919050565b60006020820190508181036000830152620015758162001366565b9050919050565b6000602082019050818103600083015262001597816200138d565b9050919050565b60006020820190508181036000830152620015b981620013b4565b9050919050565b60006020820190508181036000830152620015db81620013db565b9050919050565b60006020820190508181036000830152620015fd8162001402565b9050919050565b60006200161062001623565b90506200161e82826200185f565b919050565b6000604051905090565b600067ffffffffffffffff8211156200164b576200164a6200199f565b5b6200165682620019e2565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200169d82620017e9565b9150620016aa83620017e9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620016e257620016e1620018e3565b5b828201905092915050565b6000620016fa82620017e9565b91506200170783620017e9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620017435762001742620018e3565b5b828202905092915050565b60006200175b82620017e9565b91506200176883620017e9565b9250828210156200177e576200177d620018e3565b5b828203905092915050565b60006200179682620017c9565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562001813578082015181840152602081019050620017f6565b8381111562001823576000848401525b50505050565b600060028204905060018216806200184257607f821691505b6020821081141562001859576200185862001912565b5b50919050565b6200186a82620019e2565b810181811067ffffffffffffffff821117156200188c576200188b6200199f565b5b80604052505050565b6000620018a282620017e9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620018d857620018d7620018e3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820636f737420696e2066726565202b2070616964206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820636f737420666f722070616964206d696e74000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e7420697320657863656564206d6178206d696e74206160008201527f6d6f756e74000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d6178696d756d206d696e74696e672072656163686564000000000000000000600082015250565b7f4e6f7420656e6f75676820636f737420666f722070616964206d696e742c207560008201527f73657220616c7265616479206861766520746f6b656e20696e2074686973207360208201527f6d61727420636f6e747261637400000000000000000000000000000000000000604082015250565b7f4d6178696d756d206d696e74696e6720666f7220746869732077616c6c65742060008201527f7265616368656400000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d616c206d696e7420616d6f756e7420697320310000000000000000600082015250565b62001ccb816200179d565b811462001cd757600080fd5b50565b6141178062001cea6000396000f3fe6080604052600436106101c25760003560e01c806344d19d2b116100f757806395d89b4111610095578063d547cfb711610064578063d547cfb714610628578063d5abeb0114610653578063e985e9c51461067e578063f2fde38b146106bb576101c2565b806395d89b411461056e578063a22cb46514610599578063b88d4fde146105c2578063c87b56dd146105eb576101c2565b806370a08231116100d157806370a08231146104c4578063715018a6146105015780638b072338146105185780638da5cb5b14610543576101c2565b806344d19d2b1461041f5780634f6ccce71461044a5780636352211e14610487576101c2565b806323b872dd1161016457806330176e131161013e57806330176e13146103a75780633ccfd60b146103d057806340c10f19146103da57806342842e0e146103f6576101c2565b806323b872dd1461031657806324a6ab0c1461033f5780632f745c591461036a576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806313faede61461029557806318160ddd146102c0578063239c70ae146102eb576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612b91565b6106e4565b6040516101fb9190613198565b60405180910390f35b34801561021057600080fd5b5061021961075e565b60405161022691906131b3565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612c34565b6107f0565b6040516102639190613131565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612b51565b610875565b005b3480156102a157600080fd5b506102aa61098d565b6040516102b791906134d5565b60405180910390f35b3480156102cc57600080fd5b506102d5610993565b6040516102e291906134d5565b60405180910390f35b3480156102f757600080fd5b506103006109a0565b60405161030d91906134d5565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612a3b565b6109a6565b005b34801561034b57600080fd5b50610354610a06565b60405161036191906134d5565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190612b51565b610a0c565b60405161039e91906134d5565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190612beb565b610ab1565b005b6103d8610acb565b005b6103f460048036038101906103ef9190612b51565b610bc0565b005b34801561040257600080fd5b5061041d60048036038101906104189190612a3b565b610f72565b005b34801561042b57600080fd5b50610434610f92565b60405161044191906134d5565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190612c34565b610f98565b60405161047e91906134d5565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612c34565b611009565b6040516104bb9190613131565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e691906129ce565b6110bb565b6040516104f891906134d5565b60405180910390f35b34801561050d57600080fd5b50610516611173565b005b34801561052457600080fd5b5061052d6111fb565b60405161053a91906134d5565b60405180910390f35b34801561054f57600080fd5b50610558611201565b6040516105659190613131565b60405180910390f35b34801561057a57600080fd5b5061058361122b565b60405161059091906131b3565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612b11565b6112bd565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612a8e565b6112d3565b005b3480156105f757600080fd5b50610612600480360381019061060d9190612c34565b611335565b60405161061f91906131b3565b60405180910390f35b34801561063457600080fd5b5061063d61136f565b60405161064a91906131b3565b60405180910390f35b34801561065f57600080fd5b506106686113fd565b60405161067591906134d5565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a091906129fb565b611403565b6040516106b29190613198565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd91906129ce565b611497565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107575750610756826115b7565b5b9050919050565b60606000805461076d90613790565b80601f016020809104026020016040519081016040528092919081815260200182805461079990613790565b80156107e65780601f106107bb576101008083540402835291602001916107e6565b820191906000526020600020905b8154815290600101906020018083116107c957829003601f168201915b5050505050905090565b60006107fb82611699565b61083a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610831906133b5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088082611009565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e890613415565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610910611705565b73ffffffffffffffffffffffffffffffffffffffff16148061093f575061093e81610939611705565b611403565b5b61097e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610975906132f5565b60405180910390fd5b610988838361170d565b505050565b600b5481565b6000600880549050905090565b600c5481565b6109b76109b1611705565b826117c6565b6109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90613455565b60405180910390fd5b610a018383836118a4565b505050565b600e5481565b6000610a17836110bb565b8210610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f906131d5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b8060119080519060200190610ac79291906127e2565b5050565b610ad3611705565b73ffffffffffffffffffffffffffffffffffffffff16610af1611201565b73ffffffffffffffffffffffffffffffffffffffff1614610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e906133d5565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610b6d9061311c565b60006040518083038185875af1925050503d8060008114610baa576040519150601f19603f3d011682016040523d82523d6000602084013e610baf565b606091505b5050905080610bbd57600080fd5b50565b6000610bca610993565b90506001821015610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c07906134b5565b60405180910390fd5b600d548282610c1f91906135c5565b1115610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c57906133f5565b60405180910390fd5b610c68611201565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f0057600c54610ca6336110bb565b1115610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90613475565b60405180910390fd5b6000610cf2336110bb565b1115610d9257600c54821115610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490613375565b60405180910390fd5b81600b54610d4b919061364c565b341015610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613435565b60405180910390fd5b610eff565b600e54600f541015610e68576001600c54610dad91906135c5565b821115610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690613375565b60405180910390fd5b600182610dfc91906136a6565b600b54610e09919061364c565b341015610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e42906132d5565b60405180910390fd5b600f6000815480929190610e5e906137f3565b9190505550610efe565b600c54821115610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490613375565b60405180910390fd5b81600b54610ebb919061364c565b341015610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490613315565b60405180910390fd5b5b5b5b6000600190505b828111610f6c57610f59848284610f1e91906135c5565b6040518060400160405280600581526020017f6775617264000000000000000000000000000000000000000000000000000000815250611b0b565b8080610f64906137f3565b915050610f07565b50505050565b610f8d838383604051806020016040528060008152506112d3565b505050565b60105481565b6000610fa2610993565b8210610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90613495565b60405180910390fd5b60088281548110610ff757610ff6613929565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990613355565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390613335565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61117b611705565b73ffffffffffffffffffffffffffffffffffffffff16611199611201565b73ffffffffffffffffffffffffffffffffffffffff16146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e6906133d5565b60405180910390fd5b6111f96000611b66565b565b600f5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461123a90613790565b80601f016020809104026020016040519081016040528092919081815260200182805461126690613790565b80156112b35780601f10611288576101008083540402835291602001916112b3565b820191906000526020600020905b81548152906001019060200180831161129657829003601f168201915b5050505050905090565b6112cf6112c8611705565b8383611c2c565b5050565b6112e46112de611705565b836117c6565b611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90613455565b60405180910390fd5b61132f84848484611d99565b50505050565b606061133f611df5565b61134883611e87565b6040516020016113599291906130e2565b6040516020818303038152906040529050919050565b6011805461137c90613790565b80601f01602080910402602001604051908101604052809291908181526020018280546113a890613790565b80156113f55780601f106113ca576101008083540402835291602001916113f5565b820191906000526020600020905b8154815290600101906020018083116113d857829003601f168201915b505050505081565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61149f611705565b73ffffffffffffffffffffffffffffffffffffffff166114bd611201565b73ffffffffffffffffffffffffffffffffffffffff1614611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a906133d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90613215565b60405180910390fd5b61158c81611b66565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061168257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611692575061169182611fe8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178083611009565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117d182611699565b611810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611807906132b5565b60405180910390fd5b600061181b83611009565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061188a57508373ffffffffffffffffffffffffffffffffffffffff16611872846107f0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061189b575061189a8185611403565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118c482611009565b73ffffffffffffffffffffffffffffffffffffffff161461191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613235565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190613275565b60405180910390fd5b611995838383612052565b6119a060008261170d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f091906136a6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4791906135c5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b06838383612166565b505050565b611b15838361216b565b611b226000848484612345565b611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b58906131f5565b60405180910390fd5b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9290613295565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d8c9190613198565b60405180910390a3505050565b611da48484846118a4565b611db084848484612345565b611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de6906131f5565b60405180910390fd5b50505050565b606060118054611e0490613790565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3090613790565b8015611e7d5780601f10611e5257610100808354040283529160200191611e7d565b820191906000526020600020905b815481529060010190602001808311611e6057829003601f168201915b5050505050905090565b60606000821415611ecf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fe3565b600082905060005b60008214611f01578080611eea906137f3565b915050600a82611efa919061361b565b9150611ed7565b60008167ffffffffffffffff811115611f1d57611f1c613958565b5b6040519080825280601f01601f191660200182016040528015611f4f5781602001600182028036833780820191505090505b5090505b60008514611fdc57600182611f6891906136a6565b9150600a85611f77919061383c565b6030611f8391906135c5565b60f81b818381518110611f9957611f98613929565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fd5919061361b565b9450611f53565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61205d8383836115b2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a05761209b816124dc565b6120df565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146120de576120dd8382612525565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121225761211d81612692565b612161565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146121605761215f8282612763565b5b5b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d290613395565b60405180910390fd5b6121e481611699565b15612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b90613255565b60405180910390fd5b61223060008383612052565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461228091906135c5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461234160008383612166565b5050565b60006123668473ffffffffffffffffffffffffffffffffffffffff1661158f565b156124cf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261238f611705565b8786866040518563ffffffff1660e01b81526004016123b1949392919061314c565b602060405180830381600087803b1580156123cb57600080fd5b505af19250505080156123fc57506040513d601f19601f820116820180604052508101906123f99190612bbe565b60015b61247f573d806000811461242c576040519150601f19603f3d011682016040523d82523d6000602084013e612431565b606091505b50600081511415612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906131f5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124d4565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612532846110bb565b61253c91906136a6565b9050600060076000848152602001908152602001600020549050818114612621576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126a691906136a6565b90506000600960008481526020019081526020016000205490506000600883815481106126d6576126d5613929565b5b9060005260206000200154905080600883815481106126f8576126f7613929565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612747576127466138fa565b5b6001900381819060005260206000200160009055905550505050565b600061276e836110bb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546127ee90613790565b90600052602060002090601f0160209004810192826128105760008555612857565b82601f1061282957805160ff1916838001178555612857565b82800160010185558215612857579182015b8281111561285657825182559160200191906001019061283b565b5b5090506128649190612868565b5090565b5b80821115612881576000816000905550600101612869565b5090565b600061289861289384613515565b6134f0565b9050828152602081018484840111156128b4576128b361398c565b5b6128bf84828561374e565b509392505050565b60006128da6128d584613546565b6134f0565b9050828152602081018484840111156128f6576128f561398c565b5b61290184828561374e565b509392505050565b60008135905061291881614085565b92915050565b60008135905061292d8161409c565b92915050565b600081359050612942816140b3565b92915050565b600081519050612957816140b3565b92915050565b600082601f83011261297257612971613987565b5b8135612982848260208601612885565b91505092915050565b600082601f8301126129a05761299f613987565b5b81356129b08482602086016128c7565b91505092915050565b6000813590506129c8816140ca565b92915050565b6000602082840312156129e4576129e3613996565b5b60006129f284828501612909565b91505092915050565b60008060408385031215612a1257612a11613996565b5b6000612a2085828601612909565b9250506020612a3185828601612909565b9150509250929050565b600080600060608486031215612a5457612a53613996565b5b6000612a6286828701612909565b9350506020612a7386828701612909565b9250506040612a84868287016129b9565b9150509250925092565b60008060008060808587031215612aa857612aa7613996565b5b6000612ab687828801612909565b9450506020612ac787828801612909565b9350506040612ad8878288016129b9565b925050606085013567ffffffffffffffff811115612af957612af8613991565b5b612b058782880161295d565b91505092959194509250565b60008060408385031215612b2857612b27613996565b5b6000612b3685828601612909565b9250506020612b478582860161291e565b9150509250929050565b60008060408385031215612b6857612b67613996565b5b6000612b7685828601612909565b9250506020612b87858286016129b9565b9150509250929050565b600060208284031215612ba757612ba6613996565b5b6000612bb584828501612933565b91505092915050565b600060208284031215612bd457612bd3613996565b5b6000612be284828501612948565b91505092915050565b600060208284031215612c0157612c00613996565b5b600082013567ffffffffffffffff811115612c1f57612c1e613991565b5b612c2b8482850161298b565b91505092915050565b600060208284031215612c4a57612c49613996565b5b6000612c58848285016129b9565b91505092915050565b612c6a816136da565b82525050565b612c79816136ec565b82525050565b6000612c8a82613577565b612c94818561358d565b9350612ca481856020860161375d565b612cad8161399b565b840191505092915050565b6000612cc382613582565b612ccd81856135a9565b9350612cdd81856020860161375d565b612ce68161399b565b840191505092915050565b6000612cfc82613582565b612d0681856135ba565b9350612d1681856020860161375d565b80840191505092915050565b6000612d2f602b836135a9565b9150612d3a826139ac565b604082019050919050565b6000612d526032836135a9565b9150612d5d826139fb565b604082019050919050565b6000612d756026836135a9565b9150612d8082613a4a565b604082019050919050565b6000612d986025836135a9565b9150612da382613a99565b604082019050919050565b6000612dbb601c836135a9565b9150612dc682613ae8565b602082019050919050565b6000612dde6024836135a9565b9150612de982613b11565b604082019050919050565b6000612e016019836135a9565b9150612e0c82613b60565b602082019050919050565b6000612e24602c836135a9565b9150612e2f82613b89565b604082019050919050565b6000612e476023836135a9565b9150612e5282613bd8565b604082019050919050565b6000612e6a6038836135a9565b9150612e7582613c27565b604082019050919050565b6000612e8d601d836135a9565b9150612e9882613c76565b602082019050919050565b6000612eb0602a836135a9565b9150612ebb82613c9f565b604082019050919050565b6000612ed36029836135a9565b9150612ede82613cee565b604082019050919050565b6000612ef66025836135a9565b9150612f0182613d3d565b604082019050919050565b6000612f196020836135a9565b9150612f2482613d8c565b602082019050919050565b6000612f3c602c836135a9565b9150612f4782613db5565b604082019050919050565b6000612f5f6005836135ba565b9150612f6a82613e04565b600582019050919050565b6000612f826020836135a9565b9150612f8d82613e2d565b602082019050919050565b6000612fa56017836135a9565b9150612fb082613e56565b602082019050919050565b6000612fc86021836135a9565b9150612fd382613e7f565b604082019050919050565b6000612feb604d836135a9565b9150612ff682613ece565b606082019050919050565b600061300e60008361359e565b915061301982613f43565b600082019050919050565b60006130316031836135a9565b915061303c82613f46565b604082019050919050565b60006130546027836135a9565b915061305f82613f95565b604082019050919050565b6000613077602c836135a9565b915061308282613fe4565b604082019050919050565b600061309a6018836135a9565b91506130a582614033565b602082019050919050565b60006130bd6001836135ba565b91506130c88261405c565b600182019050919050565b6130dc81613744565b82525050565b60006130ee8285612cf1565b91506130f9826130b0565b91506131058284612cf1565b915061311082612f52565b91508190509392505050565b600061312782613001565b9150819050919050565b60006020820190506131466000830184612c61565b92915050565b60006080820190506131616000830187612c61565b61316e6020830186612c61565b61317b60408301856130d3565b818103606083015261318d8184612c7f565b905095945050505050565b60006020820190506131ad6000830184612c70565b92915050565b600060208201905081810360008301526131cd8184612cb8565b905092915050565b600060208201905081810360008301526131ee81612d22565b9050919050565b6000602082019050818103600083015261320e81612d45565b9050919050565b6000602082019050818103600083015261322e81612d68565b9050919050565b6000602082019050818103600083015261324e81612d8b565b9050919050565b6000602082019050818103600083015261326e81612dae565b9050919050565b6000602082019050818103600083015261328e81612dd1565b9050919050565b600060208201905081810360008301526132ae81612df4565b9050919050565b600060208201905081810360008301526132ce81612e17565b9050919050565b600060208201905081810360008301526132ee81612e3a565b9050919050565b6000602082019050818103600083015261330e81612e5d565b9050919050565b6000602082019050818103600083015261332e81612e80565b9050919050565b6000602082019050818103600083015261334e81612ea3565b9050919050565b6000602082019050818103600083015261336e81612ec6565b9050919050565b6000602082019050818103600083015261338e81612ee9565b9050919050565b600060208201905081810360008301526133ae81612f0c565b9050919050565b600060208201905081810360008301526133ce81612f2f565b9050919050565b600060208201905081810360008301526133ee81612f75565b9050919050565b6000602082019050818103600083015261340e81612f98565b9050919050565b6000602082019050818103600083015261342e81612fbb565b9050919050565b6000602082019050818103600083015261344e81612fde565b9050919050565b6000602082019050818103600083015261346e81613024565b9050919050565b6000602082019050818103600083015261348e81613047565b9050919050565b600060208201905081810360008301526134ae8161306a565b9050919050565b600060208201905081810360008301526134ce8161308d565b9050919050565b60006020820190506134ea60008301846130d3565b92915050565b60006134fa61350b565b905061350682826137c2565b919050565b6000604051905090565b600067ffffffffffffffff8211156135305761352f613958565b5b6135398261399b565b9050602081019050919050565b600067ffffffffffffffff82111561356157613560613958565b5b61356a8261399b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135d082613744565b91506135db83613744565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136105761360f61386d565b5b828201905092915050565b600061362682613744565b915061363183613744565b9250826136415761364061389c565b5b828204905092915050565b600061365782613744565b915061366283613744565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561369b5761369a61386d565b5b828202905092915050565b60006136b182613744565b91506136bc83613744565b9250828210156136cf576136ce61386d565b5b828203905092915050565b60006136e582613724565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561377b578082015181840152602081019050613760565b8381111561378a576000848401525b50505050565b600060028204905060018216806137a857607f821691505b602082108114156137bc576137bb6138cb565b5b50919050565b6137cb8261399b565b810181811067ffffffffffffffff821117156137ea576137e9613958565b5b80604052505050565b60006137fe82613744565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138315761383061386d565b5b600182019050919050565b600061384782613744565b915061385283613744565b9250826138625761386161389c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820636f737420696e2066726565202b2070616964206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f7420656e6f75676820636f737420666f722070616964206d696e74000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e7420697320657863656564206d6178206d696e74206160008201527f6d6f756e74000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d206d696e74696e672072656163686564000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820636f737420666f722070616964206d696e742c207560008201527f73657220616c7265616479206861766520746f6b656e20696e2074686973207360208201527f6d61727420636f6e747261637400000000000000000000000000000000000000604082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e74696e6720666f7220746869732077616c6c65742060008201527f7265616368656400000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d696e696d616c206d696e7420616d6f756e7420697320310000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61408e816136da565b811461409957600080fd5b50565b6140a5816136ec565b81146140b057600080fd5b50565b6140bc816136f8565b81146140c757600080fd5b50565b6140d381613744565b81146140de57600080fd5b5056fea2646970667358221220dcb085c57e99ae94b6192a59101d4289024fa0a897c46f11a7f9b2e3d2db124264736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d59755a654b465670785045745635365a547331784557534a39534b457074354c4b694376646f7553547271760000000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806344d19d2b116100f757806395d89b4111610095578063d547cfb711610064578063d547cfb714610628578063d5abeb0114610653578063e985e9c51461067e578063f2fde38b146106bb576101c2565b806395d89b411461056e578063a22cb46514610599578063b88d4fde146105c2578063c87b56dd146105eb576101c2565b806370a08231116100d157806370a08231146104c4578063715018a6146105015780638b072338146105185780638da5cb5b14610543576101c2565b806344d19d2b1461041f5780634f6ccce71461044a5780636352211e14610487576101c2565b806323b872dd1161016457806330176e131161013e57806330176e13146103a75780633ccfd60b146103d057806340c10f19146103da57806342842e0e146103f6576101c2565b806323b872dd1461031657806324a6ab0c1461033f5780632f745c591461036a576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806313faede61461029557806318160ddd146102c0578063239c70ae146102eb576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612b91565b6106e4565b6040516101fb9190613198565b60405180910390f35b34801561021057600080fd5b5061021961075e565b60405161022691906131b3565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612c34565b6107f0565b6040516102639190613131565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612b51565b610875565b005b3480156102a157600080fd5b506102aa61098d565b6040516102b791906134d5565b60405180910390f35b3480156102cc57600080fd5b506102d5610993565b6040516102e291906134d5565b60405180910390f35b3480156102f757600080fd5b506103006109a0565b60405161030d91906134d5565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612a3b565b6109a6565b005b34801561034b57600080fd5b50610354610a06565b60405161036191906134d5565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190612b51565b610a0c565b60405161039e91906134d5565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190612beb565b610ab1565b005b6103d8610acb565b005b6103f460048036038101906103ef9190612b51565b610bc0565b005b34801561040257600080fd5b5061041d60048036038101906104189190612a3b565b610f72565b005b34801561042b57600080fd5b50610434610f92565b60405161044191906134d5565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190612c34565b610f98565b60405161047e91906134d5565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612c34565b611009565b6040516104bb9190613131565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e691906129ce565b6110bb565b6040516104f891906134d5565b60405180910390f35b34801561050d57600080fd5b50610516611173565b005b34801561052457600080fd5b5061052d6111fb565b60405161053a91906134d5565b60405180910390f35b34801561054f57600080fd5b50610558611201565b6040516105659190613131565b60405180910390f35b34801561057a57600080fd5b5061058361122b565b60405161059091906131b3565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612b11565b6112bd565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612a8e565b6112d3565b005b3480156105f757600080fd5b50610612600480360381019061060d9190612c34565b611335565b60405161061f91906131b3565b60405180910390f35b34801561063457600080fd5b5061063d61136f565b60405161064a91906131b3565b60405180910390f35b34801561065f57600080fd5b506106686113fd565b60405161067591906134d5565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a091906129fb565b611403565b6040516106b29190613198565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd91906129ce565b611497565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107575750610756826115b7565b5b9050919050565b60606000805461076d90613790565b80601f016020809104026020016040519081016040528092919081815260200182805461079990613790565b80156107e65780601f106107bb576101008083540402835291602001916107e6565b820191906000526020600020905b8154815290600101906020018083116107c957829003601f168201915b5050505050905090565b60006107fb82611699565b61083a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610831906133b5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088082611009565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e890613415565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610910611705565b73ffffffffffffffffffffffffffffffffffffffff16148061093f575061093e81610939611705565b611403565b5b61097e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610975906132f5565b60405180910390fd5b610988838361170d565b505050565b600b5481565b6000600880549050905090565b600c5481565b6109b76109b1611705565b826117c6565b6109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90613455565b60405180910390fd5b610a018383836118a4565b505050565b600e5481565b6000610a17836110bb565b8210610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f906131d5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b8060119080519060200190610ac79291906127e2565b5050565b610ad3611705565b73ffffffffffffffffffffffffffffffffffffffff16610af1611201565b73ffffffffffffffffffffffffffffffffffffffff1614610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e906133d5565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610b6d9061311c565b60006040518083038185875af1925050503d8060008114610baa576040519150601f19603f3d011682016040523d82523d6000602084013e610baf565b606091505b5050905080610bbd57600080fd5b50565b6000610bca610993565b90506001821015610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c07906134b5565b60405180910390fd5b600d548282610c1f91906135c5565b1115610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c57906133f5565b60405180910390fd5b610c68611201565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f0057600c54610ca6336110bb565b1115610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90613475565b60405180910390fd5b6000610cf2336110bb565b1115610d9257600c54821115610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490613375565b60405180910390fd5b81600b54610d4b919061364c565b341015610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613435565b60405180910390fd5b610eff565b600e54600f541015610e68576001600c54610dad91906135c5565b821115610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690613375565b60405180910390fd5b600182610dfc91906136a6565b600b54610e09919061364c565b341015610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e42906132d5565b60405180910390fd5b600f6000815480929190610e5e906137f3565b9190505550610efe565b600c54821115610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490613375565b60405180910390fd5b81600b54610ebb919061364c565b341015610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490613315565b60405180910390fd5b5b5b5b6000600190505b828111610f6c57610f59848284610f1e91906135c5565b6040518060400160405280600581526020017f6775617264000000000000000000000000000000000000000000000000000000815250611b0b565b8080610f64906137f3565b915050610f07565b50505050565b610f8d838383604051806020016040528060008152506112d3565b505050565b60105481565b6000610fa2610993565b8210610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90613495565b60405180910390fd5b60088281548110610ff757610ff6613929565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990613355565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390613335565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61117b611705565b73ffffffffffffffffffffffffffffffffffffffff16611199611201565b73ffffffffffffffffffffffffffffffffffffffff16146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e6906133d5565b60405180910390fd5b6111f96000611b66565b565b600f5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461123a90613790565b80601f016020809104026020016040519081016040528092919081815260200182805461126690613790565b80156112b35780601f10611288576101008083540402835291602001916112b3565b820191906000526020600020905b81548152906001019060200180831161129657829003601f168201915b5050505050905090565b6112cf6112c8611705565b8383611c2c565b5050565b6112e46112de611705565b836117c6565b611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90613455565b60405180910390fd5b61132f84848484611d99565b50505050565b606061133f611df5565b61134883611e87565b6040516020016113599291906130e2565b6040516020818303038152906040529050919050565b6011805461137c90613790565b80601f01602080910402602001604051908101604052809291908181526020018280546113a890613790565b80156113f55780601f106113ca576101008083540402835291602001916113f5565b820191906000526020600020905b8154815290600101906020018083116113d857829003601f168201915b505050505081565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61149f611705565b73ffffffffffffffffffffffffffffffffffffffff166114bd611201565b73ffffffffffffffffffffffffffffffffffffffff1614611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a906133d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90613215565b60405180910390fd5b61158c81611b66565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061168257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611692575061169182611fe8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178083611009565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117d182611699565b611810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611807906132b5565b60405180910390fd5b600061181b83611009565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061188a57508373ffffffffffffffffffffffffffffffffffffffff16611872846107f0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061189b575061189a8185611403565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118c482611009565b73ffffffffffffffffffffffffffffffffffffffff161461191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613235565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190613275565b60405180910390fd5b611995838383612052565b6119a060008261170d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f091906136a6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4791906135c5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b06838383612166565b505050565b611b15838361216b565b611b226000848484612345565b611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b58906131f5565b60405180910390fd5b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9290613295565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d8c9190613198565b60405180910390a3505050565b611da48484846118a4565b611db084848484612345565b611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de6906131f5565b60405180910390fd5b50505050565b606060118054611e0490613790565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3090613790565b8015611e7d5780601f10611e5257610100808354040283529160200191611e7d565b820191906000526020600020905b815481529060010190602001808311611e6057829003601f168201915b5050505050905090565b60606000821415611ecf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fe3565b600082905060005b60008214611f01578080611eea906137f3565b915050600a82611efa919061361b565b9150611ed7565b60008167ffffffffffffffff811115611f1d57611f1c613958565b5b6040519080825280601f01601f191660200182016040528015611f4f5781602001600182028036833780820191505090505b5090505b60008514611fdc57600182611f6891906136a6565b9150600a85611f77919061383c565b6030611f8391906135c5565b60f81b818381518110611f9957611f98613929565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fd5919061361b565b9450611f53565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61205d8383836115b2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a05761209b816124dc565b6120df565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146120de576120dd8382612525565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121225761211d81612692565b612161565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146121605761215f8282612763565b5b5b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d290613395565b60405180910390fd5b6121e481611699565b15612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b90613255565b60405180910390fd5b61223060008383612052565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461228091906135c5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461234160008383612166565b5050565b60006123668473ffffffffffffffffffffffffffffffffffffffff1661158f565b156124cf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261238f611705565b8786866040518563ffffffff1660e01b81526004016123b1949392919061314c565b602060405180830381600087803b1580156123cb57600080fd5b505af19250505080156123fc57506040513d601f19601f820116820180604052508101906123f99190612bbe565b60015b61247f573d806000811461242c576040519150601f19603f3d011682016040523d82523d6000602084013e612431565b606091505b50600081511415612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906131f5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124d4565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612532846110bb565b61253c91906136a6565b9050600060076000848152602001908152602001600020549050818114612621576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126a691906136a6565b90506000600960008481526020019081526020016000205490506000600883815481106126d6576126d5613929565b5b9060005260206000200154905080600883815481106126f8576126f7613929565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612747576127466138fa565b5b6001900381819060005260206000200160009055905550505050565b600061276e836110bb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546127ee90613790565b90600052602060002090601f0160209004810192826128105760008555612857565b82601f1061282957805160ff1916838001178555612857565b82800160010185558215612857579182015b8281111561285657825182559160200191906001019061283b565b5b5090506128649190612868565b5090565b5b80821115612881576000816000905550600101612869565b5090565b600061289861289384613515565b6134f0565b9050828152602081018484840111156128b4576128b361398c565b5b6128bf84828561374e565b509392505050565b60006128da6128d584613546565b6134f0565b9050828152602081018484840111156128f6576128f561398c565b5b61290184828561374e565b509392505050565b60008135905061291881614085565b92915050565b60008135905061292d8161409c565b92915050565b600081359050612942816140b3565b92915050565b600081519050612957816140b3565b92915050565b600082601f83011261297257612971613987565b5b8135612982848260208601612885565b91505092915050565b600082601f8301126129a05761299f613987565b5b81356129b08482602086016128c7565b91505092915050565b6000813590506129c8816140ca565b92915050565b6000602082840312156129e4576129e3613996565b5b60006129f284828501612909565b91505092915050565b60008060408385031215612a1257612a11613996565b5b6000612a2085828601612909565b9250506020612a3185828601612909565b9150509250929050565b600080600060608486031215612a5457612a53613996565b5b6000612a6286828701612909565b9350506020612a7386828701612909565b9250506040612a84868287016129b9565b9150509250925092565b60008060008060808587031215612aa857612aa7613996565b5b6000612ab687828801612909565b9450506020612ac787828801612909565b9350506040612ad8878288016129b9565b925050606085013567ffffffffffffffff811115612af957612af8613991565b5b612b058782880161295d565b91505092959194509250565b60008060408385031215612b2857612b27613996565b5b6000612b3685828601612909565b9250506020612b478582860161291e565b9150509250929050565b60008060408385031215612b6857612b67613996565b5b6000612b7685828601612909565b9250506020612b87858286016129b9565b9150509250929050565b600060208284031215612ba757612ba6613996565b5b6000612bb584828501612933565b91505092915050565b600060208284031215612bd457612bd3613996565b5b6000612be284828501612948565b91505092915050565b600060208284031215612c0157612c00613996565b5b600082013567ffffffffffffffff811115612c1f57612c1e613991565b5b612c2b8482850161298b565b91505092915050565b600060208284031215612c4a57612c49613996565b5b6000612c58848285016129b9565b91505092915050565b612c6a816136da565b82525050565b612c79816136ec565b82525050565b6000612c8a82613577565b612c94818561358d565b9350612ca481856020860161375d565b612cad8161399b565b840191505092915050565b6000612cc382613582565b612ccd81856135a9565b9350612cdd81856020860161375d565b612ce68161399b565b840191505092915050565b6000612cfc82613582565b612d0681856135ba565b9350612d1681856020860161375d565b80840191505092915050565b6000612d2f602b836135a9565b9150612d3a826139ac565b604082019050919050565b6000612d526032836135a9565b9150612d5d826139fb565b604082019050919050565b6000612d756026836135a9565b9150612d8082613a4a565b604082019050919050565b6000612d986025836135a9565b9150612da382613a99565b604082019050919050565b6000612dbb601c836135a9565b9150612dc682613ae8565b602082019050919050565b6000612dde6024836135a9565b9150612de982613b11565b604082019050919050565b6000612e016019836135a9565b9150612e0c82613b60565b602082019050919050565b6000612e24602c836135a9565b9150612e2f82613b89565b604082019050919050565b6000612e476023836135a9565b9150612e5282613bd8565b604082019050919050565b6000612e6a6038836135a9565b9150612e7582613c27565b604082019050919050565b6000612e8d601d836135a9565b9150612e9882613c76565b602082019050919050565b6000612eb0602a836135a9565b9150612ebb82613c9f565b604082019050919050565b6000612ed36029836135a9565b9150612ede82613cee565b604082019050919050565b6000612ef66025836135a9565b9150612f0182613d3d565b604082019050919050565b6000612f196020836135a9565b9150612f2482613d8c565b602082019050919050565b6000612f3c602c836135a9565b9150612f4782613db5565b604082019050919050565b6000612f5f6005836135ba565b9150612f6a82613e04565b600582019050919050565b6000612f826020836135a9565b9150612f8d82613e2d565b602082019050919050565b6000612fa56017836135a9565b9150612fb082613e56565b602082019050919050565b6000612fc86021836135a9565b9150612fd382613e7f565b604082019050919050565b6000612feb604d836135a9565b9150612ff682613ece565b606082019050919050565b600061300e60008361359e565b915061301982613f43565b600082019050919050565b60006130316031836135a9565b915061303c82613f46565b604082019050919050565b60006130546027836135a9565b915061305f82613f95565b604082019050919050565b6000613077602c836135a9565b915061308282613fe4565b604082019050919050565b600061309a6018836135a9565b91506130a582614033565b602082019050919050565b60006130bd6001836135ba565b91506130c88261405c565b600182019050919050565b6130dc81613744565b82525050565b60006130ee8285612cf1565b91506130f9826130b0565b91506131058284612cf1565b915061311082612f52565b91508190509392505050565b600061312782613001565b9150819050919050565b60006020820190506131466000830184612c61565b92915050565b60006080820190506131616000830187612c61565b61316e6020830186612c61565b61317b60408301856130d3565b818103606083015261318d8184612c7f565b905095945050505050565b60006020820190506131ad6000830184612c70565b92915050565b600060208201905081810360008301526131cd8184612cb8565b905092915050565b600060208201905081810360008301526131ee81612d22565b9050919050565b6000602082019050818103600083015261320e81612d45565b9050919050565b6000602082019050818103600083015261322e81612d68565b9050919050565b6000602082019050818103600083015261324e81612d8b565b9050919050565b6000602082019050818103600083015261326e81612dae565b9050919050565b6000602082019050818103600083015261328e81612dd1565b9050919050565b600060208201905081810360008301526132ae81612df4565b9050919050565b600060208201905081810360008301526132ce81612e17565b9050919050565b600060208201905081810360008301526132ee81612e3a565b9050919050565b6000602082019050818103600083015261330e81612e5d565b9050919050565b6000602082019050818103600083015261332e81612e80565b9050919050565b6000602082019050818103600083015261334e81612ea3565b9050919050565b6000602082019050818103600083015261336e81612ec6565b9050919050565b6000602082019050818103600083015261338e81612ee9565b9050919050565b600060208201905081810360008301526133ae81612f0c565b9050919050565b600060208201905081810360008301526133ce81612f2f565b9050919050565b600060208201905081810360008301526133ee81612f75565b9050919050565b6000602082019050818103600083015261340e81612f98565b9050919050565b6000602082019050818103600083015261342e81612fbb565b9050919050565b6000602082019050818103600083015261344e81612fde565b9050919050565b6000602082019050818103600083015261346e81613024565b9050919050565b6000602082019050818103600083015261348e81613047565b9050919050565b600060208201905081810360008301526134ae8161306a565b9050919050565b600060208201905081810360008301526134ce8161308d565b9050919050565b60006020820190506134ea60008301846130d3565b92915050565b60006134fa61350b565b905061350682826137c2565b919050565b6000604051905090565b600067ffffffffffffffff8211156135305761352f613958565b5b6135398261399b565b9050602081019050919050565b600067ffffffffffffffff82111561356157613560613958565b5b61356a8261399b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135d082613744565b91506135db83613744565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136105761360f61386d565b5b828201905092915050565b600061362682613744565b915061363183613744565b9250826136415761364061389c565b5b828204905092915050565b600061365782613744565b915061366283613744565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561369b5761369a61386d565b5b828202905092915050565b60006136b182613744565b91506136bc83613744565b9250828210156136cf576136ce61386d565b5b828203905092915050565b60006136e582613724565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561377b578082015181840152602081019050613760565b8381111561378a576000848401525b50505050565b600060028204905060018216806137a857607f821691505b602082108114156137bc576137bb6138cb565b5b50919050565b6137cb8261399b565b810181811067ffffffffffffffff821117156137ea576137e9613958565b5b80604052505050565b60006137fe82613744565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138315761383061386d565b5b600182019050919050565b600061384782613744565b915061385283613744565b9250826138625761386161389c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820636f737420696e2066726565202b2070616964206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f7420656e6f75676820636f737420666f722070616964206d696e74000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e7420697320657863656564206d6178206d696e74206160008201527f6d6f756e74000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d206d696e74696e672072656163686564000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820636f737420666f722070616964206d696e742c207560008201527f73657220616c7265616479206861766520746f6b656e20696e2074686973207360208201527f6d61727420636f6e747261637400000000000000000000000000000000000000604082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e74696e6720666f7220746869732077616c6c65742060008201527f7265616368656400000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d696e696d616c206d696e7420616d6f756e7420697320310000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61408e816136da565b811461409957600080fd5b50565b6140a5816136ec565b81146140b057600080fd5b50565b6140bc816136f8565b81146140c757600080fd5b50565b6140d381613744565b81146140de57600080fd5b5056fea2646970667358221220dcb085c57e99ae94b6192a59101d4289024fa0a897c46f11a7f9b2e3d2db124264736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d59755a654b465670785045745635365a547331784557534a39534b457074354c4b694376646f7553547271760000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmYuZeKFVpxPEtV56ZTs1xEWSJ9SKEpt5LKiCvdouSTrqv
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d59755a654b465670785045745635365a54733178455753
Arg [3] : 4a39534b457074354c4b694376646f7553547271760000000000000000000000
Deployed Bytecode Sourcemap
45538:2714:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39314:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26134:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27693:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27216:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45621:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39954:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45660:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28443:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45738:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39622:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46170:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48081:168;;;:::i;:::-;;46478:1595;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28853:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45819:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40144:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25828:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25558:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;45776:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26303:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27986:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29109:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46286:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45860:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45700:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28212:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39314:224;39416:4;39455:35;39440:50;;;:11;:50;;;;:90;;;;39494:36;39518:11;39494:23;:36::i;:::-;39440:90;39433:97;;39314:224;;;:::o;26134:100::-;26188:13;26221:5;26214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26134:100;:::o;27693:221::-;27769:7;27797:16;27805:7;27797;:16::i;:::-;27789:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27882:15;:24;27898:7;27882:24;;;;;;;;;;;;;;;;;;;;;27875:31;;27693:221;;;:::o;27216:411::-;27297:13;27313:23;27328:7;27313:14;:23::i;:::-;27297:39;;27361:5;27355:11;;:2;:11;;;;27347:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27455:5;27439:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27464:37;27481:5;27488:12;:10;:12::i;:::-;27464:16;:37::i;:::-;27439:62;27417:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27598:21;27607:2;27611:7;27598:8;:21::i;:::-;27286:341;27216:411;;:::o;45621:32::-;;;;:::o;39954:113::-;40015:7;40042:10;:17;;;;40035:24;;39954:113;:::o;45660:33::-;;;;:::o;28443:339::-;28638:41;28657:12;:10;:12::i;:::-;28671:7;28638:18;:41::i;:::-;28630:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28746:28;28756:4;28762:2;28766:7;28746:9;:28::i;:::-;28443:339;;;:::o;45738:31::-;;;;:::o;39622:256::-;39719:7;39755:23;39772:5;39755:16;:23::i;:::-;39747:5;:31;39739:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39844:12;:19;39857:5;39844:19;;;;;;;;;;;;;;;:26;39864:5;39844:26;;;;;;;;;;;;39837:33;;39622:256;;;;:::o;46170:108::-;46257:13;46242:12;:28;;;;;;;;;;;;:::i;:::-;;46170:108;:::o;48081:168::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48138:12:::1;48164:10;48156:24;;48188:21;48156:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48137:77;;;48233:7;48225:16;;;::::0;::::1;;48126:123;48081:168::o:0;46478:1595::-;46552:14;46569:13;:11;:13::i;:::-;46552:30;;46618:1;46603:11;:16;;46595:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;46691:9;;46676:11;46667:6;:20;;;;:::i;:::-;:33;;46659:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;46766:7;:5;:7::i;:::-;46752:21;;:10;:21;;;46749:1202;;46823:13;;46798:21;46808:10;46798:9;:21::i;:::-;:38;;46790:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;46972:1;46948:21;46958:10;46948:9;:21::i;:::-;:25;46945:993;;;47017:13;;47002:11;:28;;46994:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;47119:11;47112:4;;:18;;;;:::i;:::-;47099:9;:31;;47091:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;46945:993;;;47329:10;;47309:17;;:30;47306:615;;;47403:1;47387:13;;:17;;;;:::i;:::-;47372:11;:32;;47364:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;47512:1;47498:11;:15;;;;:::i;:::-;47490:4;;:24;;;;:::i;:::-;47477:9;:37;;47469:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;47579:17;;:19;;;;;;;;;:::i;:::-;;;;;;47306:615;;;47750:13;;47735:11;:28;;47727:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;47856:11;47849:4;;:18;;;;:::i;:::-;47836:9;:31;;47828:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47306:615;46945:993;46749:1202;47968:9;47980:1;47968:13;;47963:101;47988:11;47983:1;:16;47963:101;;48017:35;48027:3;48041:1;48032:6;:10;;;;:::i;:::-;48017:35;;;;;;;;;;;;;;;;;:9;:35::i;:::-;48001:3;;;;;:::i;:::-;;;;47963:101;;;;46541:1532;46478:1595;;:::o;28853:185::-;28991:39;29008:4;29014:2;29018:7;28991:39;;;;;;;;;;;;:16;:39::i;:::-;28853:185;;;:::o;45819:34::-;;;;:::o;40144:233::-;40219:7;40255:30;:28;:30::i;:::-;40247:5;:38;40239:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40352:10;40363:5;40352:17;;;;;;;;:::i;:::-;;;;;;;;;;40345:24;;40144:233;;;:::o;25828:239::-;25900:7;25920:13;25936:7;:16;25944:7;25936:16;;;;;;;;;;;;;;;;;;;;;25920:32;;25988:1;25971:19;;:5;:19;;;;25963:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26054:5;26047:12;;;25828:239;;;:::o;25558:208::-;25630:7;25675:1;25658:19;;:5;:19;;;;25650:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25742:9;:16;25752:5;25742:16;;;;;;;;;;;;;;;;25735:23;;25558:208;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;45776:36::-;;;;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;26303:104::-;26359:13;26392:7;26385:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26303:104;:::o;27986:155::-;28081:52;28100:12;:10;:12::i;:::-;28114:8;28124;28081:18;:52::i;:::-;27986:155;;:::o;29109:328::-;29284:41;29303:12;:10;:12::i;:::-;29317:7;29284:18;:41::i;:::-;29276:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29390:39;29404:4;29410:2;29414:7;29423:5;29390:13;:39::i;:::-;29109:328;;;;:::o;46286:184::-;46359:13;46416:10;:8;:10::i;:::-;46433:18;:7;:16;:18::i;:::-;46399:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46385:77;;46286:184;;;:::o;45860:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45700:31::-;;;;:::o;28212:164::-;28309:4;28333:18;:25;28352:5;28333:25;;;;;;;;;;;;;;;:35;28359:8;28333:35;;;;;;;;;;;;;;;;;;;;;;;;;28326:42;;28212:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;37660:126::-;;;;:::o;25189:305::-;25291:4;25343:25;25328:40;;;:11;:40;;;;:105;;;;25400:33;25385:48;;;:11;:48;;;;25328:105;:158;;;;25450:36;25474:11;25450:23;:36::i;:::-;25328:158;25308:178;;25189:305;;;:::o;30947:127::-;31012:4;31064:1;31036:30;;:7;:16;31044:7;31036:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31029:37;;30947:127;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;35093:174::-;35195:2;35168:15;:24;35184:7;35168:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35251:7;35247:2;35213:46;;35222:23;35237:7;35222:14;:23::i;:::-;35213:46;;;;;;;;;;;;35093:174;;:::o;31241:348::-;31334:4;31359:16;31367:7;31359;:16::i;:::-;31351:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31435:13;31451:23;31466:7;31451:14;:23::i;:::-;31435:39;;31504:5;31493:16;;:7;:16;;;:51;;;;31537:7;31513:31;;:20;31525:7;31513:11;:20::i;:::-;:31;;;31493:51;:87;;;;31548:32;31565:5;31572:7;31548:16;:32::i;:::-;31493:87;31485:96;;;31241:348;;;;:::o;34350:625::-;34509:4;34482:31;;:23;34497:7;34482:14;:23::i;:::-;:31;;;34474:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34588:1;34574:16;;:2;:16;;;;34566:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34644:39;34665:4;34671:2;34675:7;34644:20;:39::i;:::-;34748:29;34765:1;34769:7;34748:8;:29::i;:::-;34809:1;34790:9;:15;34800:4;34790:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34838:1;34821:9;:13;34831:2;34821:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34869:2;34850:7;:16;34858:7;34850:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34908:7;34904:2;34889:27;;34898:4;34889:27;;;;;;;;;;;;34929:38;34949:4;34955:2;34959:7;34929:19;:38::i;:::-;34350:625;;;:::o;32268:321::-;32398:18;32404:2;32408:7;32398:5;:18::i;:::-;32449:54;32480:1;32484:2;32488:7;32497:5;32449:22;:54::i;:::-;32427:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32268:321;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;35409:315::-;35564:8;35555:17;;:5;:17;;;;35547:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35651:8;35613:18;:25;35632:5;35613:25;;;;;;;;;;;;;;;:35;35639:8;35613:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35697:8;35675:41;;35690:5;35675:41;;;35707:8;35675:41;;;;;;:::i;:::-;;;;;;;;35409:315;;;:::o;30319:::-;30476:28;30486:4;30492:2;30496:7;30476:9;:28::i;:::-;30523:48;30546:4;30552:2;30556:7;30565:5;30523:22;:48::i;:::-;30515:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30319:315;;;;:::o;46049:113::-;46109:13;46142:12;46135:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46049:113;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;40990:589::-;41134:45;41161:4;41167:2;41171:7;41134:26;:45::i;:::-;41212:1;41196:18;;:4;:18;;;41192:187;;;41231:40;41263:7;41231:31;:40::i;:::-;41192:187;;;41301:2;41293:10;;:4;:10;;;41289:90;;41320:47;41353:4;41359:7;41320:32;:47::i;:::-;41289:90;41192:187;41407:1;41393:16;;:2;:16;;;41389:183;;;41426:45;41463:7;41426:36;:45::i;:::-;41389:183;;;41499:4;41493:10;;:2;:10;;;41489:83;;41520:40;41548:2;41552:7;41520:27;:40::i;:::-;41489:83;41389:183;40990:589;;;:::o;38171:125::-;;;;:::o;32925:439::-;33019:1;33005:16;;:2;:16;;;;32997:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33078:16;33086:7;33078;:16::i;:::-;33077:17;33069:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33140:45;33169:1;33173:2;33177:7;33140:20;:45::i;:::-;33215:1;33198:9;:13;33208:2;33198:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33246:2;33227:7;:16;33235:7;33227:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33291:7;33287:2;33266:33;;33283:1;33266:33;;;;;;;;;;;;33312:44;33340:1;33344:2;33348:7;33312:19;:44::i;:::-;32925:439;;:::o;36289:799::-;36444:4;36465:15;:2;:13;;;:15::i;:::-;36461:620;;;36517:2;36501:36;;;36538:12;:10;:12::i;:::-;36552:4;36558:7;36567:5;36501:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36497:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36760:1;36743:6;:13;:18;36739:272;;;36786:60;;;;;;;;;;:::i;:::-;;;;;;;;36739:272;36961:6;36955:13;36946:6;36942:2;36938:15;36931:38;36497:529;36634:41;;;36624:51;;;:6;:51;;;;36617:58;;;;;36461:620;37065:4;37058:11;;36289:799;;;;;;;:::o;42302:164::-;42406:10;:17;;;;42379:15;:24;42395:7;42379:24;;;;;;;;;;;:44;;;;42434:10;42450:7;42434:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42302:164;:::o;43093:988::-;43359:22;43409:1;43384:22;43401:4;43384:16;:22::i;:::-;:26;;;;:::i;:::-;43359:51;;43421:18;43442:17;:26;43460:7;43442:26;;;;;;;;;;;;43421:47;;43589:14;43575:10;:28;43571:328;;43620:19;43642:12;:18;43655:4;43642:18;;;;;;;;;;;;;;;:34;43661:14;43642:34;;;;;;;;;;;;43620:56;;43726:11;43693:12;:18;43706:4;43693:18;;;;;;;;;;;;;;;:30;43712:10;43693:30;;;;;;;;;;;:44;;;;43843:10;43810:17;:30;43828:11;43810:30;;;;;;;;;;;:43;;;;43605:294;43571:328;43995:17;:26;44013:7;43995:26;;;;;;;;;;;43988:33;;;44039:12;:18;44052:4;44039:18;;;;;;;;;;;;;;;:34;44058:14;44039:34;;;;;;;;;;;44032:41;;;43174:907;;43093:988;;:::o;44376:1079::-;44629:22;44674:1;44654:10;:17;;;;:21;;;;:::i;:::-;44629:46;;44686:18;44707:15;:24;44723:7;44707:24;;;;;;;;;;;;44686:45;;45058:19;45080:10;45091:14;45080:26;;;;;;;;:::i;:::-;;;;;;;;;;45058:48;;45144:11;45119:10;45130;45119:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45255:10;45224:15;:28;45240:11;45224:28;;;;;;;;;;;:41;;;;45396:15;:24;45412:7;45396:24;;;;;;;;;;;45389:31;;;45431:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44447:1008;;;44376:1079;:::o;41880:221::-;41965:14;41982:20;41999:2;41982:16;:20::i;:::-;41965:37;;42040:7;42013:12;:16;42026:2;42013:16;;;;;;;;;;;;;;;:24;42030:6;42013:24;;;;;;;;;;;:34;;;;42087:6;42058:17;:26;42076:7;42058:26;;;;;;;;;;;:35;;;;41954:147;41880:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;12980:366;;;:::o;13352:::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13352:366;;;:::o;13724:::-;13866:3;13887:67;13951:2;13946:3;13887:67;:::i;:::-;13880:74;;13963:93;14052:3;13963:93;:::i;:::-;14081:2;14076:3;14072:12;14065:19;;13724:366;;;:::o;14096:::-;14238:3;14259:67;14323:2;14318:3;14259:67;:::i;:::-;14252:74;;14335:93;14424:3;14335:93;:::i;:::-;14453:2;14448:3;14444:12;14437:19;;14096:366;;;:::o;14468:400::-;14628:3;14649:84;14731:1;14726:3;14649:84;:::i;:::-;14642:91;;14742:93;14831:3;14742:93;:::i;:::-;14860:1;14855:3;14851:11;14844:18;;14468:400;;;:::o;14874:366::-;15016:3;15037:67;15101:2;15096:3;15037:67;:::i;:::-;15030:74;;15113:93;15202:3;15113:93;:::i;:::-;15231:2;15226:3;15222:12;15215:19;;14874:366;;;:::o;15246:::-;15388:3;15409:67;15473:2;15468:3;15409:67;:::i;:::-;15402:74;;15485:93;15574:3;15485:93;:::i;:::-;15603:2;15598:3;15594:12;15587:19;;15246:366;;;:::o;15618:::-;15760:3;15781:67;15845:2;15840:3;15781:67;:::i;:::-;15774:74;;15857:93;15946:3;15857:93;:::i;:::-;15975:2;15970:3;15966:12;15959:19;;15618:366;;;:::o;15990:::-;16132:3;16153:67;16217:2;16212:3;16153:67;:::i;:::-;16146:74;;16229:93;16318:3;16229:93;:::i;:::-;16347:2;16342:3;16338:12;16331:19;;15990:366;;;:::o;16362:398::-;16521:3;16542:83;16623:1;16618:3;16542:83;:::i;:::-;16535:90;;16634:93;16723:3;16634:93;:::i;:::-;16752:1;16747:3;16743:11;16736:18;;16362:398;;;:::o;16766:366::-;16908:3;16929:67;16993:2;16988:3;16929:67;:::i;:::-;16922:74;;17005:93;17094:3;17005:93;:::i;:::-;17123:2;17118:3;17114:12;17107:19;;16766:366;;;:::o;17138:::-;17280:3;17301:67;17365:2;17360:3;17301:67;:::i;:::-;17294:74;;17377:93;17466:3;17377:93;:::i;:::-;17495:2;17490:3;17486:12;17479:19;;17138:366;;;:::o;17510:::-;17652:3;17673:67;17737:2;17732:3;17673:67;:::i;:::-;17666:74;;17749:93;17838:3;17749:93;:::i;:::-;17867:2;17862:3;17858:12;17851:19;;17510:366;;;:::o;17882:::-;18024:3;18045:67;18109:2;18104:3;18045:67;:::i;:::-;18038:74;;18121:93;18210:3;18121:93;:::i;:::-;18239:2;18234:3;18230:12;18223:19;;17882:366;;;:::o;18254:400::-;18414:3;18435:84;18517:1;18512:3;18435:84;:::i;:::-;18428:91;;18528:93;18617:3;18528:93;:::i;:::-;18646:1;18641:3;18637:11;18630:18;;18254:400;;;:::o;18660:118::-;18747:24;18765:5;18747:24;:::i;:::-;18742:3;18735:37;18660:118;;:::o;18784:967::-;19166:3;19188:95;19279:3;19270:6;19188:95;:::i;:::-;19181:102;;19300:148;19444:3;19300:148;:::i;:::-;19293:155;;19465:95;19556:3;19547:6;19465:95;:::i;:::-;19458:102;;19577:148;19721:3;19577:148;:::i;:::-;19570:155;;19742:3;19735:10;;18784:967;;;;;:::o;19757:379::-;19941:3;19963:147;20106:3;19963:147;:::i;:::-;19956:154;;20127:3;20120:10;;19757:379;;;:::o;20142:222::-;20235:4;20273:2;20262:9;20258:18;20250:26;;20286:71;20354:1;20343:9;20339:17;20330:6;20286:71;:::i;:::-;20142:222;;;;:::o;20370:640::-;20565:4;20603:3;20592:9;20588:19;20580:27;;20617:71;20685:1;20674:9;20670:17;20661:6;20617:71;:::i;:::-;20698:72;20766:2;20755:9;20751:18;20742:6;20698:72;:::i;:::-;20780;20848:2;20837:9;20833:18;20824:6;20780:72;:::i;:::-;20899:9;20893:4;20889:20;20884:2;20873:9;20869:18;20862:48;20927:76;20998:4;20989:6;20927:76;:::i;:::-;20919:84;;20370:640;;;;;;;:::o;21016:210::-;21103:4;21141:2;21130:9;21126:18;21118:26;;21154:65;21216:1;21205:9;21201:17;21192:6;21154:65;:::i;:::-;21016:210;;;;:::o;21232:313::-;21345:4;21383:2;21372:9;21368:18;21360:26;;21432:9;21426:4;21422:20;21418:1;21407:9;21403:17;21396:47;21460:78;21533:4;21524:6;21460:78;:::i;:::-;21452:86;;21232:313;;;;:::o;21551:419::-;21717:4;21755:2;21744:9;21740:18;21732:26;;21804:9;21798:4;21794:20;21790:1;21779:9;21775:17;21768:47;21832:131;21958:4;21832:131;:::i;:::-;21824:139;;21551:419;;;:::o;21976:::-;22142:4;22180:2;22169:9;22165:18;22157:26;;22229:9;22223:4;22219:20;22215:1;22204:9;22200:17;22193:47;22257:131;22383:4;22257:131;:::i;:::-;22249:139;;21976:419;;;:::o;22401:::-;22567:4;22605:2;22594:9;22590:18;22582:26;;22654:9;22648:4;22644:20;22640:1;22629:9;22625:17;22618:47;22682:131;22808:4;22682:131;:::i;:::-;22674:139;;22401:419;;;:::o;22826:::-;22992:4;23030:2;23019:9;23015:18;23007:26;;23079:9;23073:4;23069:20;23065:1;23054:9;23050:17;23043:47;23107:131;23233:4;23107:131;:::i;:::-;23099:139;;22826:419;;;:::o;23251:::-;23417:4;23455:2;23444:9;23440:18;23432:26;;23504:9;23498:4;23494:20;23490:1;23479:9;23475:17;23468:47;23532:131;23658:4;23532:131;:::i;:::-;23524:139;;23251:419;;;:::o;23676:::-;23842:4;23880:2;23869:9;23865:18;23857:26;;23929:9;23923:4;23919:20;23915:1;23904:9;23900:17;23893:47;23957:131;24083:4;23957:131;:::i;:::-;23949:139;;23676:419;;;:::o;24101:::-;24267:4;24305:2;24294:9;24290:18;24282:26;;24354:9;24348:4;24344:20;24340:1;24329:9;24325:17;24318:47;24382:131;24508:4;24382:131;:::i;:::-;24374:139;;24101:419;;;:::o;24526:::-;24692:4;24730:2;24719:9;24715:18;24707:26;;24779:9;24773:4;24769:20;24765:1;24754:9;24750:17;24743:47;24807:131;24933:4;24807:131;:::i;:::-;24799:139;;24526:419;;;:::o;24951:::-;25117:4;25155:2;25144:9;25140:18;25132:26;;25204:9;25198:4;25194:20;25190:1;25179:9;25175:17;25168:47;25232:131;25358:4;25232:131;:::i;:::-;25224:139;;24951:419;;;:::o;25376:::-;25542:4;25580:2;25569:9;25565:18;25557:26;;25629:9;25623:4;25619:20;25615:1;25604:9;25600:17;25593:47;25657:131;25783:4;25657:131;:::i;:::-;25649:139;;25376:419;;;:::o;25801:::-;25967:4;26005:2;25994:9;25990:18;25982:26;;26054:9;26048:4;26044:20;26040:1;26029:9;26025:17;26018:47;26082:131;26208:4;26082:131;:::i;:::-;26074:139;;25801:419;;;:::o;26226:::-;26392:4;26430:2;26419:9;26415:18;26407:26;;26479:9;26473:4;26469:20;26465:1;26454:9;26450:17;26443:47;26507:131;26633:4;26507:131;:::i;:::-;26499:139;;26226:419;;;:::o;26651:::-;26817:4;26855:2;26844:9;26840:18;26832:26;;26904:9;26898:4;26894:20;26890:1;26879:9;26875:17;26868:47;26932:131;27058:4;26932:131;:::i;:::-;26924:139;;26651:419;;;:::o;27076:::-;27242:4;27280:2;27269:9;27265:18;27257:26;;27329:9;27323:4;27319:20;27315:1;27304:9;27300:17;27293:47;27357:131;27483:4;27357:131;:::i;:::-;27349:139;;27076:419;;;:::o;27501:::-;27667:4;27705:2;27694:9;27690:18;27682:26;;27754:9;27748:4;27744:20;27740:1;27729:9;27725:17;27718:47;27782:131;27908:4;27782:131;:::i;:::-;27774:139;;27501:419;;;:::o;27926:::-;28092:4;28130:2;28119:9;28115:18;28107:26;;28179:9;28173:4;28169:20;28165:1;28154:9;28150:17;28143:47;28207:131;28333:4;28207:131;:::i;:::-;28199:139;;27926:419;;;:::o;28351:::-;28517:4;28555:2;28544:9;28540:18;28532:26;;28604:9;28598:4;28594:20;28590:1;28579:9;28575:17;28568:47;28632:131;28758:4;28632:131;:::i;:::-;28624:139;;28351:419;;;:::o;28776:::-;28942:4;28980:2;28969:9;28965:18;28957:26;;29029:9;29023:4;29019:20;29015:1;29004:9;29000:17;28993:47;29057:131;29183:4;29057:131;:::i;:::-;29049:139;;28776:419;;;:::o;29201:::-;29367:4;29405:2;29394:9;29390:18;29382:26;;29454:9;29448:4;29444:20;29440:1;29429:9;29425:17;29418:47;29482:131;29608:4;29482:131;:::i;:::-;29474:139;;29201:419;;;:::o;29626:::-;29792:4;29830:2;29819:9;29815:18;29807:26;;29879:9;29873:4;29869:20;29865:1;29854:9;29850:17;29843:47;29907:131;30033:4;29907:131;:::i;:::-;29899:139;;29626:419;;;:::o;30051:::-;30217:4;30255:2;30244:9;30240:18;30232:26;;30304:9;30298:4;30294:20;30290:1;30279:9;30275:17;30268:47;30332:131;30458:4;30332:131;:::i;:::-;30324:139;;30051:419;;;:::o;30476:::-;30642:4;30680:2;30669:9;30665:18;30657:26;;30729:9;30723:4;30719:20;30715:1;30704:9;30700:17;30693:47;30757:131;30883:4;30757:131;:::i;:::-;30749:139;;30476:419;;;:::o;30901:::-;31067:4;31105:2;31094:9;31090:18;31082:26;;31154:9;31148:4;31144:20;31140:1;31129:9;31125:17;31118:47;31182:131;31308:4;31182:131;:::i;:::-;31174:139;;30901:419;;;:::o;31326:::-;31492:4;31530:2;31519:9;31515:18;31507:26;;31579:9;31573:4;31569:20;31565:1;31554:9;31550:17;31543:47;31607:131;31733:4;31607:131;:::i;:::-;31599:139;;31326:419;;;:::o;31751:222::-;31844:4;31882:2;31871:9;31867:18;31859:26;;31895:71;31963:1;31952:9;31948:17;31939:6;31895:71;:::i;:::-;31751:222;;;;:::o;31979:129::-;32013:6;32040:20;;:::i;:::-;32030:30;;32069:33;32097:4;32089:6;32069:33;:::i;:::-;31979:129;;;:::o;32114:75::-;32147:6;32180:2;32174:9;32164:19;;32114:75;:::o;32195:307::-;32256:4;32346:18;32338:6;32335:30;32332:56;;;32368:18;;:::i;:::-;32332:56;32406:29;32428:6;32406:29;:::i;:::-;32398:37;;32490:4;32484;32480:15;32472:23;;32195:307;;;:::o;32508:308::-;32570:4;32660:18;32652:6;32649:30;32646:56;;;32682:18;;:::i;:::-;32646:56;32720:29;32742:6;32720:29;:::i;:::-;32712:37;;32804:4;32798;32794:15;32786:23;;32508:308;;;:::o;32822:98::-;32873:6;32907:5;32901:12;32891:22;;32822:98;;;:::o;32926:99::-;32978:6;33012:5;33006:12;32996:22;;32926:99;;;:::o;33031:168::-;33114:11;33148:6;33143:3;33136:19;33188:4;33183:3;33179:14;33164:29;;33031:168;;;;:::o;33205:147::-;33306:11;33343:3;33328:18;;33205:147;;;;:::o;33358:169::-;33442:11;33476:6;33471:3;33464:19;33516:4;33511:3;33507:14;33492:29;;33358:169;;;;:::o;33533:148::-;33635:11;33672:3;33657:18;;33533:148;;;;:::o;33687:305::-;33727:3;33746:20;33764:1;33746:20;:::i;:::-;33741:25;;33780:20;33798:1;33780:20;:::i;:::-;33775:25;;33934:1;33866:66;33862:74;33859:1;33856:81;33853:107;;;33940:18;;:::i;:::-;33853:107;33984:1;33981;33977:9;33970:16;;33687:305;;;;:::o;33998:185::-;34038:1;34055:20;34073:1;34055:20;:::i;:::-;34050:25;;34089:20;34107:1;34089:20;:::i;:::-;34084:25;;34128:1;34118:35;;34133:18;;:::i;:::-;34118:35;34175:1;34172;34168:9;34163:14;;33998:185;;;;:::o;34189:348::-;34229:7;34252:20;34270:1;34252:20;:::i;:::-;34247:25;;34286:20;34304:1;34286:20;:::i;:::-;34281:25;;34474:1;34406:66;34402:74;34399:1;34396:81;34391:1;34384:9;34377:17;34373:105;34370:131;;;34481:18;;:::i;:::-;34370:131;34529:1;34526;34522:9;34511:20;;34189:348;;;;:::o;34543:191::-;34583:4;34603:20;34621:1;34603:20;:::i;:::-;34598:25;;34637:20;34655:1;34637:20;:::i;:::-;34632:25;;34676:1;34673;34670:8;34667:34;;;34681:18;;:::i;:::-;34667:34;34726:1;34723;34719:9;34711:17;;34543:191;;;;:::o;34740:96::-;34777:7;34806:24;34824:5;34806:24;:::i;:::-;34795:35;;34740:96;;;:::o;34842:90::-;34876:7;34919:5;34912:13;34905:21;34894:32;;34842:90;;;:::o;34938:149::-;34974:7;35014:66;35007:5;35003:78;34992:89;;34938:149;;;:::o;35093:126::-;35130:7;35170:42;35163:5;35159:54;35148:65;;35093:126;;;:::o;35225:77::-;35262:7;35291:5;35280:16;;35225:77;;;:::o;35308:154::-;35392:6;35387:3;35382;35369:30;35454:1;35445:6;35440:3;35436:16;35429:27;35308:154;;;:::o;35468:307::-;35536:1;35546:113;35560:6;35557:1;35554:13;35546:113;;;35645:1;35640:3;35636:11;35630:18;35626:1;35621:3;35617:11;35610:39;35582:2;35579:1;35575:10;35570:15;;35546:113;;;35677:6;35674:1;35671:13;35668:101;;;35757:1;35748:6;35743:3;35739:16;35732:27;35668:101;35517:258;35468:307;;;:::o;35781:320::-;35825:6;35862:1;35856:4;35852:12;35842:22;;35909:1;35903:4;35899:12;35930:18;35920:81;;35986:4;35978:6;35974:17;35964:27;;35920:81;36048:2;36040:6;36037:14;36017:18;36014:38;36011:84;;;36067:18;;:::i;:::-;36011:84;35832:269;35781:320;;;:::o;36107:281::-;36190:27;36212:4;36190:27;:::i;:::-;36182:6;36178:40;36320:6;36308:10;36305:22;36284:18;36272:10;36269:34;36266:62;36263:88;;;36331:18;;:::i;:::-;36263:88;36371:10;36367:2;36360:22;36150:238;36107:281;;:::o;36394:233::-;36433:3;36456:24;36474:5;36456:24;:::i;:::-;36447:33;;36502:66;36495:5;36492:77;36489:103;;;36572:18;;:::i;:::-;36489:103;36619:1;36612:5;36608:13;36601:20;;36394:233;;;:::o;36633:176::-;36665:1;36682:20;36700:1;36682:20;:::i;:::-;36677:25;;36716:20;36734:1;36716:20;:::i;:::-;36711:25;;36755:1;36745:35;;36760:18;;:::i;:::-;36745:35;36801:1;36798;36794:9;36789:14;;36633:176;;;;:::o;36815:180::-;36863:77;36860:1;36853:88;36960:4;36957:1;36950:15;36984:4;36981:1;36974:15;37001:180;37049:77;37046:1;37039:88;37146:4;37143:1;37136:15;37170:4;37167:1;37160:15;37187:180;37235:77;37232:1;37225:88;37332:4;37329:1;37322:15;37356:4;37353:1;37346:15;37373:180;37421:77;37418:1;37411:88;37518:4;37515:1;37508:15;37542:4;37539:1;37532:15;37559:180;37607:77;37604:1;37597:88;37704:4;37701:1;37694:15;37728:4;37725:1;37718:15;37745:180;37793:77;37790:1;37783:88;37890:4;37887:1;37880:15;37914:4;37911:1;37904:15;37931:117;38040:1;38037;38030:12;38054:117;38163:1;38160;38153:12;38177:117;38286:1;38283;38276:12;38300:117;38409:1;38406;38399:12;38423:102;38464:6;38515:2;38511:7;38506:2;38499:5;38495:14;38491:28;38481:38;;38423:102;;;:::o;38531:230::-;38671:34;38667:1;38659:6;38655:14;38648:58;38740:13;38735:2;38727:6;38723:15;38716:38;38531:230;:::o;38767:237::-;38907:34;38903:1;38895:6;38891:14;38884:58;38976:20;38971:2;38963:6;38959:15;38952:45;38767:237;:::o;39010:225::-;39150:34;39146:1;39138:6;39134:14;39127:58;39219:8;39214:2;39206:6;39202:15;39195:33;39010:225;:::o;39241:224::-;39381:34;39377:1;39369:6;39365:14;39358:58;39450:7;39445:2;39437:6;39433:15;39426:32;39241:224;:::o;39471:178::-;39611:30;39607:1;39599:6;39595:14;39588:54;39471:178;:::o;39655:223::-;39795:34;39791:1;39783:6;39779:14;39772:58;39864:6;39859:2;39851:6;39847:15;39840:31;39655:223;:::o;39884:175::-;40024:27;40020:1;40012:6;40008:14;40001:51;39884:175;:::o;40065:231::-;40205:34;40201:1;40193:6;40189:14;40182:58;40274:14;40269:2;40261:6;40257:15;40250:39;40065:231;:::o;40302:222::-;40442:34;40438:1;40430:6;40426:14;40419:58;40511:5;40506:2;40498:6;40494:15;40487:30;40302:222;:::o;40530:243::-;40670:34;40666:1;40658:6;40654:14;40647:58;40739:26;40734:2;40726:6;40722:15;40715:51;40530:243;:::o;40779:179::-;40919:31;40915:1;40907:6;40903:14;40896:55;40779:179;:::o;40964:229::-;41104:34;41100:1;41092:6;41088:14;41081:58;41173:12;41168:2;41160:6;41156:15;41149:37;40964:229;:::o;41199:228::-;41339:34;41335:1;41327:6;41323:14;41316:58;41408:11;41403:2;41395:6;41391:15;41384:36;41199:228;:::o;41433:224::-;41573:34;41569:1;41561:6;41557:14;41550:58;41642:7;41637:2;41629:6;41625:15;41618:32;41433:224;:::o;41663:182::-;41803:34;41799:1;41791:6;41787:14;41780:58;41663:182;:::o;41851:231::-;41991:34;41987:1;41979:6;41975:14;41968:58;42060:14;42055:2;42047:6;42043:15;42036:39;41851:231;:::o;42088:155::-;42228:7;42224:1;42216:6;42212:14;42205:31;42088:155;:::o;42249:182::-;42389:34;42385:1;42377:6;42373:14;42366:58;42249:182;:::o;42437:173::-;42577:25;42573:1;42565:6;42561:14;42554:49;42437:173;:::o;42616:220::-;42756:34;42752:1;42744:6;42740:14;42733:58;42825:3;42820:2;42812:6;42808:15;42801:28;42616:220;:::o;42842:301::-;42982:34;42978:1;42970:6;42966:14;42959:58;43051:34;43046:2;43038:6;43034:15;43027:59;43120:15;43115:2;43107:6;43103:15;43096:40;42842:301;:::o;43149:114::-;;:::o;43269:236::-;43409:34;43405:1;43397:6;43393:14;43386:58;43478:19;43473:2;43465:6;43461:15;43454:44;43269:236;:::o;43511:226::-;43651:34;43647:1;43639:6;43635:14;43628:58;43720:9;43715:2;43707:6;43703:15;43696:34;43511:226;:::o;43743:231::-;43883:34;43879:1;43871:6;43867:14;43860:58;43952:14;43947:2;43939:6;43935:15;43928:39;43743:231;:::o;43980:174::-;44120:26;44116:1;44108:6;44104:14;44097:50;43980:174;:::o;44160:151::-;44300:3;44296:1;44288:6;44284:14;44277:27;44160:151;:::o;44317:122::-;44390:24;44408:5;44390:24;:::i;:::-;44383:5;44380:35;44370:63;;44429:1;44426;44419:12;44370:63;44317:122;:::o;44445:116::-;44515:21;44530:5;44515:21;:::i;:::-;44508:5;44505:32;44495:60;;44551:1;44548;44541:12;44495:60;44445:116;:::o;44567:120::-;44639:23;44656:5;44639:23;:::i;:::-;44632:5;44629:34;44619:62;;44677:1;44674;44667:12;44619:62;44567:120;:::o;44693:122::-;44766:24;44784:5;44766:24;:::i;:::-;44759:5;44756:35;44746:63;;44805:1;44802;44795:12;44746:63;44693:122;:::o
Swarm Source
ipfs://dcb085c57e99ae94b6192a59101d4289024fa0a897c46f11a7f9b2e3d2db1242
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.