Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
223 HAB
Holders
164
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HABLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hapebeast
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721Enumerable.sol"; import "./Ownable.sol"; contract Hapebeast is ERC721Enumerable, Ownable { uint256 public mintPrice = 0.1 ether; uint256 private reserveAtATime = 50; uint256 private reservedCount = 0; uint256 private maxReserveCount = 300; string _baseTokenURI; bool public isActive = false; bool public isAllowListActive = false; bool public isClosedMintForever = false; uint256 public maximumMintSupply = 10000; uint256 public maximumAllowedTokensPerPurchase = 20; uint256 public maximumAllowedTokensPerWallet = 20; uint256 public allowListMaxMint = 20; address private PartAddress = 0x4A8Cd98688914880eAD8671d9905c310C691137F; mapping(address => bool) private _allowList; mapping(address => uint256) private _allowListClaimed; event AssetMinted(uint256 tokenId, address sender); event SaleActivation(bool isActive); constructor(string memory baseURI) ERC721("HAPEBEAST", "HAB") { setBaseURI(baseURI); } modifier saleIsOpen { require(totalSupply() <= maximumMintSupply, "Sale has ended."); _; } modifier onlyAuthorized() { require(owner() == msg.sender); _; } function setMaximumAllowedTokens(uint256 _count) public onlyAuthorized { maximumAllowedTokensPerPurchase = _count; } function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyAuthorized { maximumAllowedTokensPerWallet = _count; } function setActive(bool val) public onlyAuthorized { isActive = val; emit SaleActivation(val); } function setMaxMintSupply(uint256 maxMintSupply) external onlyAuthorized { maximumMintSupply = maxMintSupply; } function setIsAllowListActive(bool _isAllowListActive) external onlyAuthorized { isAllowListActive = _isAllowListActive; } function setAllowListMaxMint(uint256 maxMint) external onlyAuthorized { allowListMaxMint = maxMint; } function addToAllowList(address[] calldata addresses) external onlyAuthorized { for (uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Can't add a null address"); _allowList[addresses[i]] = true; _allowListClaimed[addresses[i]] > 0 ? _allowListClaimed[addresses[i]] : 0; } } function checkIfOnAllowList(address addr) external view returns (bool) { return _allowList[addr]; } function removeFromAllowList(address[] calldata addresses) external onlyAuthorized { for (uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Can't add a null address"); _allowList[addresses[i]] = false; } } function allowListClaimedBy(address owner) external view returns (uint256){ require(owner != address(0), 'Zero address not on Allow List'); return _allowListClaimed[owner]; } function setReserveAtATime(uint256 val) public onlyAuthorized { reserveAtATime = val; } function setMaxReserve(uint256 val) public onlyAuthorized { maxReserveCount = val; } function setPrice(uint256 _price) public onlyAuthorized { mintPrice = _price; } function setBaseURI(string memory baseURI) public onlyAuthorized { _baseTokenURI = baseURI; } function getMaximumAllowedTokens() public view onlyAuthorized returns (uint256) { return maximumAllowedTokensPerPurchase; } function getPrice() external view returns (uint256) { return mintPrice; } function getIsClosedMintForever() external view returns (bool) { return isClosedMintForever; } function setIsClosedMintForever() external onlyAuthorized { isClosedMintForever = true; } function getReserveAtATime() external view returns (uint256) { return reserveAtATime; } function getTotalSupply() external view returns (uint256) { return totalSupply(); } function getContractOwner() public view returns (address) { return owner(); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function reserveNft() public onlyAuthorized { require(reservedCount <= maxReserveCount, "Max Reserves taken already!"); uint256 supply = totalSupply(); uint256 i; for (i = 0; i < reserveAtATime; i++) { emit AssetMinted(supply + i, msg.sender); _safeMint(msg.sender, supply + i); reservedCount++; } } function reserveToCustomWallet(address _walletAddress, uint256 _count) public onlyAuthorized { for (uint256 i = 0; i < _count; i++) { emit AssetMinted(totalSupply(), _walletAddress); _safeMint(_walletAddress, totalSupply()); } } function mint(address _to, uint256 _count) public payable saleIsOpen { if (msg.sender != owner()) { require(isActive, "Sale is not active currently."); } if(_to != owner()) { require(balanceOf(_to) + _count <= maximumAllowedTokensPerWallet, "Max holding cap reached."); } require(totalSupply() + _count <= maximumMintSupply, "Total supply exceeded."); require(totalSupply() <= maximumMintSupply, "Total supply spent."); require( _count <= maximumAllowedTokensPerPurchase, "Exceeds maximum allowed tokens" ); require(!isClosedMintForever, "Mint Closed Forever"); require(msg.value >= mintPrice * _count, "Insuffient ETH amount sent."); for (uint256 i = 0; i < _count; i++) { emit AssetMinted(totalSupply(), _to); _safeMint(_to, totalSupply()); } } function batchReserveToMultipleAddresses(uint256 _count, address[] calldata addresses) external onlyAuthorized { uint256 supply = totalSupply(); require(supply + _count <= maximumMintSupply, "Total supply exceeded."); require(supply <= maximumMintSupply, "Total supply spent."); for (uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Can't add a null address"); for(uint256 j = 0; j < _count; j++) { emit AssetMinted(totalSupply(), addresses[i]); _safeMint(addresses[i], totalSupply()); } } } function preSaleMint(uint256 _count) public payable saleIsOpen { require(isAllowListActive, 'Allow List is not active'); require(_allowList[msg.sender], 'You are not on the Allow List'); require(totalSupply() < maximumMintSupply, 'All tokens have been minted'); require(_count <= allowListMaxMint, 'Cannot purchase this many tokens'); require(_allowListClaimed[msg.sender] + _count <= allowListMaxMint, 'Purchase exceeds max allowed'); require(msg.value >= mintPrice * _count, 'Insuffient ETH amount sent.'); require(!isClosedMintForever, 'Mint Closed Forever'); for (uint256 i = 0; i < _count; i++) { _allowListClaimed[msg.sender] += 1; emit AssetMinted(totalSupply(), msg.sender); _safeMint(msg.sender, totalSupply()); } } function walletOfOwner(address _owner) external view returns(uint256[] memory) { uint tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint i = 0; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function withdraw() external onlyAuthorized { uint balance = address(this).balance; payable(PartAddress).transfer(balance * 5000 / 10000); payable(owner()).transfer(balance * 5000 / 10000); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @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(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AssetMinted","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":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"SaleActivation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"batchReserveToMultipleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkIfOnAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsClosedMintForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaximumAllowedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserveAtATime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isClosedMintForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_walletAddress","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveToCustomWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setIsClosedMintForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267016345785d8a0000600b556032600c556000600d5561012c600e556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055506127106011556014601255601460135560148055734a8cd98688914880ead8671d9905c310c691137f601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000e757600080fd5b506040516200633d3803806200633d83398181016040528101906200010d919062000463565b6040518060400160405280600981526020017f48415045424541535400000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f484142000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200019192919062000341565b508060019080519060200190620001aa92919062000341565b505050620001cd620001c1620001e560201b60201c565b620001ed60201b60201c565b620001de81620002b360201b60201c565b50620005d9565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16620002da6200031760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002fb57600080fd5b80600f90805190602001906200031392919062000341565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200034f9062000545565b90600052602060002090601f016020900481019282620003735760008555620003bf565b82601f106200038e57805160ff1916838001178555620003bf565b82800160010185558215620003bf579182015b82811115620003be578251825591602001919060010190620003a1565b5b509050620003ce9190620003d2565b5090565b5b80821115620003ed576000816000905550600101620003d3565b5090565b6000620004086200040284620004dc565b620004a8565b9050828152602081018484840111156200042157600080fd5b6200042e8482856200050f565b509392505050565b600082601f8301126200044857600080fd5b81516200045a848260208601620003f1565b91505092915050565b6000602082840312156200047657600080fd5b600082015167ffffffffffffffff8111156200049157600080fd5b6200049f8482850162000436565b91505092915050565b6000604051905081810181811067ffffffffffffffff82111715620004d257620004d1620005aa565b5b8060405250919050565b600067ffffffffffffffff821115620004fa57620004f9620005aa565b5b601f19601f8301169050602081019050919050565b60005b838110156200052f57808201518184015260208101905062000512565b838111156200053f576000848401525b50505050565b600060028204905060018216806200055e57607f821691505b602082108114156200057557620005746200057b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b615d5480620005e96000396000f3fe60806040526004361061034f5760003560e01c80637263cfe2116101c6578063a51312c8116100f7578063e7b62d9611610095578063ea6eb8361161006f578063ea6eb83614610c1b578063f132dc2914610c44578063f2fde38b14610c6f578063f6c9d9e314610c985761034f565b8063e7b62d9614610b8a578063e82b2a7114610bb5578063e985e9c514610bde5761034f565b8063b88d4fde116100d1578063b88d4fde14610ace578063c4e41b2214610af7578063c87b56dd14610b22578063cadf881814610b5f5761034f565b8063a51312c814610a51578063acec338a14610a7a578063ad06d75814610aa35761034f565b80638da5cb5b1161016457806395d89b411161013e57806395d89b41146109a757806398d5fdca146109d25780639a3bf728146109fd578063a22cb46514610a285761034f565b80638da5cb5b1461093c57806391b7f5ed14610967578063932ecebc146109905761034f565b80637835c635116101a05780637835c635146108a15780637a6685f1146108bd5780637d26f470146108e65780637f44ab2f146109115761034f565b80637263cfe2146108265780637389fbb71461084f57806377b501b9146108785761034f565b806342842e0e116102a057806356a87caa1161023e57806370a082311161021857806370a0823114610792578063715018a6146107cf578063718bc4af146107e657806371e3500c1461080f5761034f565b806356a87caa146107015780636352211e1461072a5780636817c76c146107675761034f565b80634d0550de1161027a5780634d0550de146106475780634dfea627146106725780634f6ccce71461069b57806355f804b3146106d85761034f565b806342842e0e146105b6578063438b6300146105df578063442890d51461061c5761034f565b806322f3e2d41161030d5780632c1205f4116102e75780632c1205f4146105095780632f745c59146105465780633ccfd60b1461058357806340c10f191461059a5761034f565b806322f3e2d41461048a57806323b872dd146104b557806329fc6bae146104de5761034f565b806208ffdd1461035457806301ffc9a71461039157806306fdde03146103ce578063081812fc146103f9578063095ea7b31461043657806318160ddd1461045f575b600080fd5b34801561036057600080fd5b5061037b600480360381019061037691906143f1565b610cc1565b604051610388919061582d565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190614606565b610d79565b6040516103c591906153b0565b60405180910390f35b3480156103da57600080fd5b506103e3610df3565b6040516103f091906153cb565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b9190614699565b610e85565b60405161042d9190615327565b60405180910390f35b34801561044257600080fd5b5061045d6004803603810190610458919061455c565b610f0a565b005b34801561046b57600080fd5b50610474611022565b604051610481919061582d565b60405180910390f35b34801561049657600080fd5b5061049f61102f565b6040516104ac91906153b0565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190614456565b611042565b005b3480156104ea57600080fd5b506104f36110a2565b60405161050091906153b0565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b91906143f1565b6110b5565b60405161053d91906153b0565b60405180910390f35b34801561055257600080fd5b5061056d6004803603810190610568919061455c565b61110b565b60405161057a919061582d565b60405180910390f35b34801561058f57600080fd5b506105986111b0565b005b6105b460048036038101906105af919061455c565b6112e2565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614456565b611647565b005b3480156105eb57600080fd5b50610606600480360381019061060191906143f1565b611667565b604051610613919061538e565b60405180910390f35b34801561062857600080fd5b50610631611761565b60405161063e9190615327565b60405180910390f35b34801561065357600080fd5b5061065c611770565b604051610669919061582d565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190614699565b611776565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190614699565b6117bf565b6040516106cf919061582d565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190614658565b611856565b005b34801561070d57600080fd5b5061072860048036038101906107239190614699565b6118af565b005b34801561073657600080fd5b50610751600480360381019061074c9190614699565b6118f8565b60405161075e9190615327565b60405180910390f35b34801561077357600080fd5b5061077c6119aa565b604051610789919061582d565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b491906143f1565b6119b0565b6040516107c6919061582d565b60405180910390f35b3480156107db57600080fd5b506107e4611a68565b005b3480156107f257600080fd5b5061080d600480360381019061080891906145dd565b611af0565b005b34801561081b57600080fd5b50610824611b4c565b005b34801561083257600080fd5b5061084d60048036038101906108489190614598565b611c73565b005b34801561085b57600080fd5b5061087660048036038101906108719190614699565b611f64565b005b34801561088457600080fd5b5061089f600480360381019061089a919061455c565b611fad565b005b6108bb60048036038101906108b69190614699565b612060565b005b3480156108c957600080fd5b506108e460048036038101906108df9190614699565b612410565b005b3480156108f257600080fd5b506108fb612459565b60405161090891906153b0565b60405180910390f35b34801561091d57600080fd5b5061092661246c565b604051610933919061582d565b60405180910390f35b34801561094857600080fd5b50610951612472565b60405161095e9190615327565b60405180910390f35b34801561097357600080fd5b5061098e60048036038101906109899190614699565b61249c565b005b34801561099c57600080fd5b506109a56124e5565b005b3480156109b357600080fd5b506109bc612541565b6040516109c991906153cb565b60405180910390f35b3480156109de57600080fd5b506109e76125d3565b6040516109f4919061582d565b60405180910390f35b348015610a0957600080fd5b50610a126125dd565b604051610a1f919061582d565b60405180910390f35b348015610a3457600080fd5b50610a4f6004803603810190610a4a9190614520565b6125e3565b005b348015610a5d57600080fd5b50610a786004803603810190610a739190614598565b6125f9565b005b348015610a8657600080fd5b50610aa16004803603810190610a9c91906145dd565b6127c0565b005b348015610aaf57600080fd5b50610ab8612853565b604051610ac5919061582d565b60405180910390f35b348015610ada57600080fd5b50610af56004803603810190610af091906144a5565b61289c565b005b348015610b0357600080fd5b50610b0c6128fe565b604051610b19919061582d565b60405180910390f35b348015610b2e57600080fd5b50610b496004803603810190610b449190614699565b61290d565b604051610b5691906153cb565b60405180910390f35b348015610b6b57600080fd5b50610b746129b4565b604051610b81919061582d565b60405180910390f35b348015610b9657600080fd5b50610b9f6129ba565b604051610bac919061582d565b60405180910390f35b348015610bc157600080fd5b50610bdc6004803603810190610bd791906146c2565b6129c4565b005b348015610bea57600080fd5b50610c056004803603810190610c00919061441a565b612c93565b604051610c1291906153b0565b60405180910390f35b348015610c2757600080fd5b50610c426004803603810190610c3d9190614699565b612d27565b005b348015610c5057600080fd5b50610c59612d70565b604051610c6691906153b0565b60405180910390f35b348015610c7b57600080fd5b50610c966004803603810190610c9191906143f1565b612d87565b005b348015610ca457600080fd5b50610cbf6004803603810190610cba9190614699565b612e7f565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d299061568d565b60405180910390fd5b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610dec5750610deb82612ec8565b5b9050919050565b606060008054610e0290615b49565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2e90615b49565b8015610e7b5780601f10610e5057610100808354040283529160200191610e7b565b820191906000526020600020905b815481529060010190602001808311610e5e57829003601f168201915b5050505050905090565b6000610e9082612faa565b610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec69061562d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f15826118f8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d9061570d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fa5613016565b73ffffffffffffffffffffffffffffffffffffffff161480610fd45750610fd381610fce613016565b612c93565b5b611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a906155ad565b60405180910390fd5b61101d838361301e565b505050565b6000600880549050905090565b601060009054906101000a900460ff1681565b61105361104d613016565b826130d7565b611092576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110899061574d565b60405180910390fd5b61109d8383836131b5565b505050565b601060019054906101000a900460ff1681565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611116836119b0565b8210611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e9061546d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166111cf612472565b73ffffffffffffffffffffffffffffffffffffffff16146111ef57600080fd5b6000479050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612710611388846112419190615a05565b61124b91906159d4565b9081150290604051600060405180830381858888f19350505050158015611276573d6000803e3d6000fd5b5061127f612472565b73ffffffffffffffffffffffffffffffffffffffff166108fc612710611388846112a99190615a05565b6112b391906159d4565b9081150290604051600060405180830381858888f193505050501580156112de573d6000803e3d6000fd5b5050565b6011546112ed611022565b111561132e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113259061552d565b60405180910390fd5b611336612472565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113b857601060009054906101000a900460ff166113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae9061544d565b60405180910390fd5b5b6113c0612472565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461144b57601354816113ff846119b0565b611409919061597e565b111561144a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114419061550d565b60405180910390fd5b5b60115481611457611022565b611461919061597e565b11156114a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114999061572d565b60405180910390fd5b6011546114ad611022565b11156114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e59061578d565b60405180910390fd5b601254811115611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a906156ed565b60405180910390fd5b601060029054906101000a900460ff1615611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a906154ed565b60405180910390fd5b80600b546115919190615a05565b3410156115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca906157ad565b60405180910390fd5b60005b81811015611642577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611607611022565b84604051611616929190615848565b60405180910390a161162f8361162a611022565b613411565b808061163a90615b7b565b9150506115d6565b505050565b6116628383836040518060200160405280600081525061289c565b505050565b60606000611674836119b0565b905060008167ffffffffffffffff8111156116b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116e65781602001602082028036833780820191505090505b50905060005b82811015611756576116fe858261110b565b828281518110611737577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061174e90615b7b565b9150506116ec565b508092505050919050565b600061176b612472565b905090565b60115481565b3373ffffffffffffffffffffffffffffffffffffffff16611795612472565b73ffffffffffffffffffffffffffffffffffffffff16146117b557600080fd5b8060128190555050565b60006117c9611022565b821061180a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118019061576d565b60405180910390fd5b60088281548110611844577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16611875612472565b73ffffffffffffffffffffffffffffffffffffffff161461189557600080fd5b80600f90805190602001906118ab9291906141cb565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166118ce612472565b73ffffffffffffffffffffffffffffffffffffffff16146118ee57600080fd5b80600e8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611998906155ed565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a18906155cd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a70613016565b73ffffffffffffffffffffffffffffffffffffffff16611a8e612472565b73ffffffffffffffffffffffffffffffffffffffff1614611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb9061566d565b60405180910390fd5b611aee600061342f565b565b3373ffffffffffffffffffffffffffffffffffffffff16611b0f612472565b73ffffffffffffffffffffffffffffffffffffffff1614611b2f57600080fd5b80601060016101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16611b6b612472565b73ffffffffffffffffffffffffffffffffffffffff1614611b8b57600080fd5b600e54600d541115611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc9906153ed565b60405180910390fd5b6000611bdc611022565b905060005b600c54811015611c6f577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3558183611c18919061597e565b33604051611c27929190615848565b60405180910390a1611c44338284611c3f919061597e565b613411565b600d6000815480929190611c5790615b7b565b91905055508080611c6790615b7b565b915050611be1565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611c92612472565b73ffffffffffffffffffffffffffffffffffffffff1614611cb257600080fd5b60005b82829050811015611f5f57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611d11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611d2691906143f1565b73ffffffffffffffffffffffffffffffffffffffff161415611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d749061564d565b60405180910390fd5b600160166000858585818110611dbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611dd191906143f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060176000858585818110611e61577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611e7691906143f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611ebd576000611f4b565b60176000848484818110611efa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f0f91906143f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611f5790615b7b565b915050611cb5565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16611f83612472565b73ffffffffffffffffffffffffffffffffffffffff1614611fa357600080fd5b8060118190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611fcc612472565b73ffffffffffffffffffffffffffffffffffffffff1614611fec57600080fd5b60005b8181101561205b577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355612020611022565b8460405161202f929190615848565b60405180910390a161204883612043611022565b613411565b808061205390615b7b565b915050611fef565b505050565b60115461206b611022565b11156120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a39061552d565b60405180910390fd5b601060019054906101000a900460ff166120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f29061540d565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e9061542d565b60405180910390fd5b601154612192611022565b106121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c9906157ed565b60405180910390fd5b601454811115612217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220e9061580d565b60405180910390fd5b60145481601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612265919061597e565b11156122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d906157cd565b60405180910390fd5b80600b546122b49190615a05565b3410156122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed906157ad565b60405180910390fd5b601060029054906101000a900460ff1615612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d906154ed565b60405180910390fd5b60005b8181101561240c576001601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123a1919061597e565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556123d1611022565b336040516123e0929190615848565b60405180910390a16123f9336123f4611022565b613411565b808061240490615b7b565b915050612349565b5050565b3373ffffffffffffffffffffffffffffffffffffffff1661242f612472565b73ffffffffffffffffffffffffffffffffffffffff161461244f57600080fd5b8060148190555050565b601060029054906101000a900460ff1681565b60145481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff166124bb612472565b73ffffffffffffffffffffffffffffffffffffffff16146124db57600080fd5b80600b8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16612504612472565b73ffffffffffffffffffffffffffffffffffffffff161461252457600080fd5b6001601060026101000a81548160ff021916908315150217905550565b60606001805461255090615b49565b80601f016020809104026020016040519081016040528092919081815260200182805461257c90615b49565b80156125c95780601f1061259e576101008083540402835291602001916125c9565b820191906000526020600020905b8154815290600101906020018083116125ac57829003601f168201915b5050505050905090565b6000600b54905090565b60125481565b6125f56125ee613016565b83836134f5565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16612618612472565b73ffffffffffffffffffffffffffffffffffffffff161461263857600080fd5b60005b828290508110156127bb57600073ffffffffffffffffffffffffffffffffffffffff16838383818110612697577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906126ac91906143f1565b73ffffffffffffffffffffffffffffffffffffffff161415612703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fa9061564d565b60405180910390fd5b600060166000858585818110612742577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061275791906143f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806127b390615b7b565b91505061263b565b505050565b3373ffffffffffffffffffffffffffffffffffffffff166127df612472565b73ffffffffffffffffffffffffffffffffffffffff16146127ff57600080fd5b80601060006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f8160405161284891906153b0565b60405180910390a150565b60003373ffffffffffffffffffffffffffffffffffffffff16612874612472565b73ffffffffffffffffffffffffffffffffffffffff161461289457600080fd5b601254905090565b6128ad6128a7613016565b836130d7565b6128ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e39061574d565b60405180910390fd5b6128f884848484613662565b50505050565b6000612908611022565b905090565b606061291882612faa565b612957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294e906156cd565b60405180910390fd5b60006129616136be565b9050600081511161298157604051806020016040528060008152506129ac565b8061298b84613750565b60405160200161299c929190615303565b6040516020818303038152906040525b915050919050565b60135481565b6000600c54905090565b3373ffffffffffffffffffffffffffffffffffffffff166129e3612472565b73ffffffffffffffffffffffffffffffffffffffff1614612a0357600080fd5b6000612a0d611022565b90506011548482612a1e919061597e565b1115612a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a569061572d565b60405180910390fd5b601154811115612aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9b9061578d565b60405180910390fd5b60005b83839050811015612c8c57600073ffffffffffffffffffffffffffffffffffffffff16848483818110612b03577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612b1891906143f1565b73ffffffffffffffffffffffffffffffffffffffff161415612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b669061564d565b60405180910390fd5b60005b85811015612c78577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355612ba3611022565b868685818110612bdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612bf191906143f1565b604051612bff929190615848565b60405180910390a1612c65858584818110612c43577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612c5891906143f1565b612c60611022565b613411565b8080612c7090615b7b565b915050612b72565b508080612c8490615b7b565b915050612aa7565b5050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16612d46612472565b73ffffffffffffffffffffffffffffffffffffffff1614612d6657600080fd5b8060138190555050565b6000601060029054906101000a900460ff16905090565b612d8f613016565b73ffffffffffffffffffffffffffffffffffffffff16612dad612472565b73ffffffffffffffffffffffffffffffffffffffff1614612e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfa9061566d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6a906154ad565b60405180910390fd5b612e7c8161342f565b50565b3373ffffffffffffffffffffffffffffffffffffffff16612e9e612472565b73ffffffffffffffffffffffffffffffffffffffff1614612ebe57600080fd5b80600c8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f9357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612fa35750612fa2826138fd565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613091836118f8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006130e282612faa565b613121576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131189061558d565b60405180910390fd5b600061312c836118f8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061319b57508373ffffffffffffffffffffffffffffffffffffffff1661318384610e85565b73ffffffffffffffffffffffffffffffffffffffff16145b806131ac57506131ab8185612c93565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166131d5826118f8565b73ffffffffffffffffffffffffffffffffffffffff161461322b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613222906156ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561329b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132929061554d565b60405180910390fd5b6132a6838383613967565b6132b160008261301e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133019190615a5f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613358919061597e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61342b828260405180602001604052806000815250613a7b565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355b9061556d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161365591906153b0565b60405180910390a3505050565b61366d8484846131b5565b61367984848484613ad6565b6136b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136af9061548d565b60405180910390fd5b50505050565b6060600f80546136cd90615b49565b80601f01602080910402602001604051908101604052809291908181526020018280546136f990615b49565b80156137465780601f1061371b57610100808354040283529160200191613746565b820191906000526020600020905b81548152906001019060200180831161372957829003601f168201915b5050505050905090565b60606000821415613798576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138f8565b600082905060005b600082146137ca5780806137b390615b7b565b915050600a826137c391906159d4565b91506137a0565b60008167ffffffffffffffff81111561380c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561383e5781602001600182028036833780820191505090505b5090505b600085146138f1576001826138579190615a5f565b9150600a856138669190615bc4565b6030613872919061597e565b60f81b8183815181106138ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138ea91906159d4565b9450613842565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613972838383613c6d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139b5576139b081613c72565b6139f4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146139f3576139f28382613cbb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a3757613a3281613e28565b613a76565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613a7557613a748282613f6b565b5b5b505050565b613a858383613fea565b613a926000848484613ad6565b613ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ac89061548d565b60405180910390fd5b505050565b6000613af78473ffffffffffffffffffffffffffffffffffffffff166141b8565b15613c60578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613b20613016565b8786866040518563ffffffff1660e01b8152600401613b429493929190615342565b602060405180830381600087803b158015613b5c57600080fd5b505af1925050508015613b8d57506040513d601f19601f82011682018060405250810190613b8a919061462f565b60015b613c10573d8060008114613bbd576040519150601f19603f3d011682016040523d82523d6000602084013e613bc2565b606091505b50600081511415613c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bff9061548d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613c65565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613cc8846119b0565b613cd29190615a5f565b9050600060076000848152602001908152602001600020549050818114613db7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613e3c9190615a5f565b9050600060096000848152602001908152602001600020549050600060088381548110613e92577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613eda577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613f4f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613f76836119b0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561405a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140519061560d565b60405180910390fd5b61406381612faa565b156140a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161409a906154cd565b60405180910390fd5b6140af60008383613967565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546140ff919061597e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546141d790615b49565b90600052602060002090601f0160209004810192826141f95760008555614240565b82601f1061421257805160ff1916838001178555614240565b82800160010185558215614240579182015b8281111561423f578251825591602001919060010190614224565b5b50905061424d9190614251565b5090565b5b8082111561426a576000816000905550600101614252565b5090565b600061428161427c846158a2565b615871565b90508281526020810184848401111561429957600080fd5b6142a4848285615b07565b509392505050565b60006142bf6142ba846158d2565b615871565b9050828152602081018484840111156142d757600080fd5b6142e2848285615b07565b509392505050565b6000813590506142f981615cc2565b92915050565b60008083601f84011261431157600080fd5b8235905067ffffffffffffffff81111561432a57600080fd5b60208301915083602082028301111561434257600080fd5b9250929050565b60008135905061435881615cd9565b92915050565b60008135905061436d81615cf0565b92915050565b60008151905061438281615cf0565b92915050565b600082601f83011261439957600080fd5b81356143a984826020860161426e565b91505092915050565b600082601f8301126143c357600080fd5b81356143d38482602086016142ac565b91505092915050565b6000813590506143eb81615d07565b92915050565b60006020828403121561440357600080fd5b6000614411848285016142ea565b91505092915050565b6000806040838503121561442d57600080fd5b600061443b858286016142ea565b925050602061444c858286016142ea565b9150509250929050565b60008060006060848603121561446b57600080fd5b6000614479868287016142ea565b935050602061448a868287016142ea565b925050604061449b868287016143dc565b9150509250925092565b600080600080608085870312156144bb57600080fd5b60006144c9878288016142ea565b94505060206144da878288016142ea565b93505060406144eb878288016143dc565b925050606085013567ffffffffffffffff81111561450857600080fd5b61451487828801614388565b91505092959194509250565b6000806040838503121561453357600080fd5b6000614541858286016142ea565b925050602061455285828601614349565b9150509250929050565b6000806040838503121561456f57600080fd5b600061457d858286016142ea565b925050602061458e858286016143dc565b9150509250929050565b600080602083850312156145ab57600080fd5b600083013567ffffffffffffffff8111156145c557600080fd5b6145d1858286016142ff565b92509250509250929050565b6000602082840312156145ef57600080fd5b60006145fd84828501614349565b91505092915050565b60006020828403121561461857600080fd5b60006146268482850161435e565b91505092915050565b60006020828403121561464157600080fd5b600061464f84828501614373565b91505092915050565b60006020828403121561466a57600080fd5b600082013567ffffffffffffffff81111561468457600080fd5b614690848285016143b2565b91505092915050565b6000602082840312156146ab57600080fd5b60006146b9848285016143dc565b91505092915050565b6000806000604084860312156146d757600080fd5b60006146e5868287016143dc565b935050602084013567ffffffffffffffff81111561470257600080fd5b61470e868287016142ff565b92509250509250925092565b600061472683836152e5565b60208301905092915050565b61473b81615a93565b82525050565b600061474c82615912565b6147568185615940565b935061476183615902565b8060005b83811015614792578151614779888261471a565b975061478483615933565b925050600181019050614765565b5085935050505092915050565b6147a881615aa5565b82525050565b60006147b98261591d565b6147c38185615951565b93506147d3818560208601615b16565b6147dc81615cb1565b840191505092915050565b60006147f282615928565b6147fc8185615962565b935061480c818560208601615b16565b61481581615cb1565b840191505092915050565b600061482b82615928565b6148358185615973565b9350614845818560208601615b16565b80840191505092915050565b600061485e601b83615962565b91507f4d61782052657365727665732074616b656e20616c72656164792100000000006000830152602082019050919050565b600061489e601883615962565b91507f416c6c6f77204c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b60006148de601d83615962565b91507f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006000830152602082019050919050565b600061491e601d83615962565b91507f53616c65206973206e6f74206163746976652063757272656e746c792e0000006000830152602082019050919050565b600061495e602b83615962565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006149c4603283615962565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614a2a602683615962565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a90601c83615962565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614ad0601383615962565b91507f4d696e7420436c6f73656420466f7265766572000000000000000000000000006000830152602082019050919050565b6000614b10601883615962565b91507f4d617820686f6c64696e672063617020726561636865642e00000000000000006000830152602082019050919050565b6000614b50600f83615962565b91507f53616c652068617320656e6465642e00000000000000000000000000000000006000830152602082019050919050565b6000614b90602483615962565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614bf6601983615962565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614c36602c83615962565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614c9c603883615962565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614d02602a83615962565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d68602983615962565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614dce602083615962565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614e0e602c83615962565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614e74601883615962565b91507f43616e2774206164642061206e756c6c206164647265737300000000000000006000830152602082019050919050565b6000614eb4602083615962565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614ef4601e83615962565b91507f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c69737400006000830152602082019050919050565b6000614f34602983615962565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f9a602f83615962565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000615000601e83615962565b91507f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e7300006000830152602082019050919050565b6000615040602183615962565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006150a6601683615962565b91507f546f74616c20737570706c792065786365656465642e000000000000000000006000830152602082019050919050565b60006150e6603183615962565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061514c602c83615962565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006151b2601383615962565b91507f546f74616c20737570706c79207370656e742e000000000000000000000000006000830152602082019050919050565b60006151f2601b83615962565b91507f496e7375666669656e742045544820616d6f756e742073656e742e00000000006000830152602082019050919050565b6000615232601c83615962565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b6000615272601b83615962565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b60006152b2602083615962565b91507f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736000830152602082019050919050565b6152ee81615afd565b82525050565b6152fd81615afd565b82525050565b600061530f8285614820565b915061531b8284614820565b91508190509392505050565b600060208201905061533c6000830184614732565b92915050565b60006080820190506153576000830187614732565b6153646020830186614732565b61537160408301856152f4565b818103606083015261538381846147ae565b905095945050505050565b600060208201905081810360008301526153a88184614741565b905092915050565b60006020820190506153c5600083018461479f565b92915050565b600060208201905081810360008301526153e581846147e7565b905092915050565b6000602082019050818103600083015261540681614851565b9050919050565b6000602082019050818103600083015261542681614891565b9050919050565b60006020820190508181036000830152615446816148d1565b9050919050565b6000602082019050818103600083015261546681614911565b9050919050565b6000602082019050818103600083015261548681614951565b9050919050565b600060208201905081810360008301526154a6816149b7565b9050919050565b600060208201905081810360008301526154c681614a1d565b9050919050565b600060208201905081810360008301526154e681614a83565b9050919050565b6000602082019050818103600083015261550681614ac3565b9050919050565b6000602082019050818103600083015261552681614b03565b9050919050565b6000602082019050818103600083015261554681614b43565b9050919050565b6000602082019050818103600083015261556681614b83565b9050919050565b6000602082019050818103600083015261558681614be9565b9050919050565b600060208201905081810360008301526155a681614c29565b9050919050565b600060208201905081810360008301526155c681614c8f565b9050919050565b600060208201905081810360008301526155e681614cf5565b9050919050565b6000602082019050818103600083015261560681614d5b565b9050919050565b6000602082019050818103600083015261562681614dc1565b9050919050565b6000602082019050818103600083015261564681614e01565b9050919050565b6000602082019050818103600083015261566681614e67565b9050919050565b6000602082019050818103600083015261568681614ea7565b9050919050565b600060208201905081810360008301526156a681614ee7565b9050919050565b600060208201905081810360008301526156c681614f27565b9050919050565b600060208201905081810360008301526156e681614f8d565b9050919050565b6000602082019050818103600083015261570681614ff3565b9050919050565b6000602082019050818103600083015261572681615033565b9050919050565b6000602082019050818103600083015261574681615099565b9050919050565b60006020820190508181036000830152615766816150d9565b9050919050565b600060208201905081810360008301526157868161513f565b9050919050565b600060208201905081810360008301526157a6816151a5565b9050919050565b600060208201905081810360008301526157c6816151e5565b9050919050565b600060208201905081810360008301526157e681615225565b9050919050565b6000602082019050818103600083015261580681615265565b9050919050565b60006020820190508181036000830152615826816152a5565b9050919050565b600060208201905061584260008301846152f4565b92915050565b600060408201905061585d60008301856152f4565b61586a6020830184614732565b9392505050565b6000604051905081810181811067ffffffffffffffff8211171561589857615897615c82565b5b8060405250919050565b600067ffffffffffffffff8211156158bd576158bc615c82565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156158ed576158ec615c82565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061598982615afd565b915061599483615afd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156159c9576159c8615bf5565b5b828201905092915050565b60006159df82615afd565b91506159ea83615afd565b9250826159fa576159f9615c24565b5b828204905092915050565b6000615a1082615afd565b9150615a1b83615afd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615a5457615a53615bf5565b5b828202905092915050565b6000615a6a82615afd565b9150615a7583615afd565b925082821015615a8857615a87615bf5565b5b828203905092915050565b6000615a9e82615add565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615b34578082015181840152602081019050615b19565b83811115615b43576000848401525b50505050565b60006002820490506001821680615b6157607f821691505b60208210811415615b7557615b74615c53565b5b50919050565b6000615b8682615afd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615bb957615bb8615bf5565b5b600182019050919050565b6000615bcf82615afd565b9150615bda83615afd565b925082615bea57615be9615c24565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615ccb81615a93565b8114615cd657600080fd5b50565b615ce281615aa5565b8114615ced57600080fd5b50565b615cf981615ab1565b8114615d0457600080fd5b50565b615d1081615afd565b8114615d1b57600080fd5b5056fea264697066735822122027bba8f930a2d6bda96bfaa1af7a194a347708160c97b1d07cf30cdd1cd56a7564736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d536d4670446e7a6654573261356248576d52366e65595555426575524c635a484d474669563759587a5747482f000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061034f5760003560e01c80637263cfe2116101c6578063a51312c8116100f7578063e7b62d9611610095578063ea6eb8361161006f578063ea6eb83614610c1b578063f132dc2914610c44578063f2fde38b14610c6f578063f6c9d9e314610c985761034f565b8063e7b62d9614610b8a578063e82b2a7114610bb5578063e985e9c514610bde5761034f565b8063b88d4fde116100d1578063b88d4fde14610ace578063c4e41b2214610af7578063c87b56dd14610b22578063cadf881814610b5f5761034f565b8063a51312c814610a51578063acec338a14610a7a578063ad06d75814610aa35761034f565b80638da5cb5b1161016457806395d89b411161013e57806395d89b41146109a757806398d5fdca146109d25780639a3bf728146109fd578063a22cb46514610a285761034f565b80638da5cb5b1461093c57806391b7f5ed14610967578063932ecebc146109905761034f565b80637835c635116101a05780637835c635146108a15780637a6685f1146108bd5780637d26f470146108e65780637f44ab2f146109115761034f565b80637263cfe2146108265780637389fbb71461084f57806377b501b9146108785761034f565b806342842e0e116102a057806356a87caa1161023e57806370a082311161021857806370a0823114610792578063715018a6146107cf578063718bc4af146107e657806371e3500c1461080f5761034f565b806356a87caa146107015780636352211e1461072a5780636817c76c146107675761034f565b80634d0550de1161027a5780634d0550de146106475780634dfea627146106725780634f6ccce71461069b57806355f804b3146106d85761034f565b806342842e0e146105b6578063438b6300146105df578063442890d51461061c5761034f565b806322f3e2d41161030d5780632c1205f4116102e75780632c1205f4146105095780632f745c59146105465780633ccfd60b1461058357806340c10f191461059a5761034f565b806322f3e2d41461048a57806323b872dd146104b557806329fc6bae146104de5761034f565b806208ffdd1461035457806301ffc9a71461039157806306fdde03146103ce578063081812fc146103f9578063095ea7b31461043657806318160ddd1461045f575b600080fd5b34801561036057600080fd5b5061037b600480360381019061037691906143f1565b610cc1565b604051610388919061582d565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190614606565b610d79565b6040516103c591906153b0565b60405180910390f35b3480156103da57600080fd5b506103e3610df3565b6040516103f091906153cb565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b9190614699565b610e85565b60405161042d9190615327565b60405180910390f35b34801561044257600080fd5b5061045d6004803603810190610458919061455c565b610f0a565b005b34801561046b57600080fd5b50610474611022565b604051610481919061582d565b60405180910390f35b34801561049657600080fd5b5061049f61102f565b6040516104ac91906153b0565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190614456565b611042565b005b3480156104ea57600080fd5b506104f36110a2565b60405161050091906153b0565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b91906143f1565b6110b5565b60405161053d91906153b0565b60405180910390f35b34801561055257600080fd5b5061056d6004803603810190610568919061455c565b61110b565b60405161057a919061582d565b60405180910390f35b34801561058f57600080fd5b506105986111b0565b005b6105b460048036038101906105af919061455c565b6112e2565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614456565b611647565b005b3480156105eb57600080fd5b50610606600480360381019061060191906143f1565b611667565b604051610613919061538e565b60405180910390f35b34801561062857600080fd5b50610631611761565b60405161063e9190615327565b60405180910390f35b34801561065357600080fd5b5061065c611770565b604051610669919061582d565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190614699565b611776565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190614699565b6117bf565b6040516106cf919061582d565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190614658565b611856565b005b34801561070d57600080fd5b5061072860048036038101906107239190614699565b6118af565b005b34801561073657600080fd5b50610751600480360381019061074c9190614699565b6118f8565b60405161075e9190615327565b60405180910390f35b34801561077357600080fd5b5061077c6119aa565b604051610789919061582d565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b491906143f1565b6119b0565b6040516107c6919061582d565b60405180910390f35b3480156107db57600080fd5b506107e4611a68565b005b3480156107f257600080fd5b5061080d600480360381019061080891906145dd565b611af0565b005b34801561081b57600080fd5b50610824611b4c565b005b34801561083257600080fd5b5061084d60048036038101906108489190614598565b611c73565b005b34801561085b57600080fd5b5061087660048036038101906108719190614699565b611f64565b005b34801561088457600080fd5b5061089f600480360381019061089a919061455c565b611fad565b005b6108bb60048036038101906108b69190614699565b612060565b005b3480156108c957600080fd5b506108e460048036038101906108df9190614699565b612410565b005b3480156108f257600080fd5b506108fb612459565b60405161090891906153b0565b60405180910390f35b34801561091d57600080fd5b5061092661246c565b604051610933919061582d565b60405180910390f35b34801561094857600080fd5b50610951612472565b60405161095e9190615327565b60405180910390f35b34801561097357600080fd5b5061098e60048036038101906109899190614699565b61249c565b005b34801561099c57600080fd5b506109a56124e5565b005b3480156109b357600080fd5b506109bc612541565b6040516109c991906153cb565b60405180910390f35b3480156109de57600080fd5b506109e76125d3565b6040516109f4919061582d565b60405180910390f35b348015610a0957600080fd5b50610a126125dd565b604051610a1f919061582d565b60405180910390f35b348015610a3457600080fd5b50610a4f6004803603810190610a4a9190614520565b6125e3565b005b348015610a5d57600080fd5b50610a786004803603810190610a739190614598565b6125f9565b005b348015610a8657600080fd5b50610aa16004803603810190610a9c91906145dd565b6127c0565b005b348015610aaf57600080fd5b50610ab8612853565b604051610ac5919061582d565b60405180910390f35b348015610ada57600080fd5b50610af56004803603810190610af091906144a5565b61289c565b005b348015610b0357600080fd5b50610b0c6128fe565b604051610b19919061582d565b60405180910390f35b348015610b2e57600080fd5b50610b496004803603810190610b449190614699565b61290d565b604051610b5691906153cb565b60405180910390f35b348015610b6b57600080fd5b50610b746129b4565b604051610b81919061582d565b60405180910390f35b348015610b9657600080fd5b50610b9f6129ba565b604051610bac919061582d565b60405180910390f35b348015610bc157600080fd5b50610bdc6004803603810190610bd791906146c2565b6129c4565b005b348015610bea57600080fd5b50610c056004803603810190610c00919061441a565b612c93565b604051610c1291906153b0565b60405180910390f35b348015610c2757600080fd5b50610c426004803603810190610c3d9190614699565b612d27565b005b348015610c5057600080fd5b50610c59612d70565b604051610c6691906153b0565b60405180910390f35b348015610c7b57600080fd5b50610c966004803603810190610c9191906143f1565b612d87565b005b348015610ca457600080fd5b50610cbf6004803603810190610cba9190614699565b612e7f565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d299061568d565b60405180910390fd5b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610dec5750610deb82612ec8565b5b9050919050565b606060008054610e0290615b49565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2e90615b49565b8015610e7b5780601f10610e5057610100808354040283529160200191610e7b565b820191906000526020600020905b815481529060010190602001808311610e5e57829003601f168201915b5050505050905090565b6000610e9082612faa565b610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec69061562d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f15826118f8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d9061570d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fa5613016565b73ffffffffffffffffffffffffffffffffffffffff161480610fd45750610fd381610fce613016565b612c93565b5b611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a906155ad565b60405180910390fd5b61101d838361301e565b505050565b6000600880549050905090565b601060009054906101000a900460ff1681565b61105361104d613016565b826130d7565b611092576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110899061574d565b60405180910390fd5b61109d8383836131b5565b505050565b601060019054906101000a900460ff1681565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611116836119b0565b8210611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e9061546d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166111cf612472565b73ffffffffffffffffffffffffffffffffffffffff16146111ef57600080fd5b6000479050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612710611388846112419190615a05565b61124b91906159d4565b9081150290604051600060405180830381858888f19350505050158015611276573d6000803e3d6000fd5b5061127f612472565b73ffffffffffffffffffffffffffffffffffffffff166108fc612710611388846112a99190615a05565b6112b391906159d4565b9081150290604051600060405180830381858888f193505050501580156112de573d6000803e3d6000fd5b5050565b6011546112ed611022565b111561132e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113259061552d565b60405180910390fd5b611336612472565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113b857601060009054906101000a900460ff166113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae9061544d565b60405180910390fd5b5b6113c0612472565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461144b57601354816113ff846119b0565b611409919061597e565b111561144a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114419061550d565b60405180910390fd5b5b60115481611457611022565b611461919061597e565b11156114a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114999061572d565b60405180910390fd5b6011546114ad611022565b11156114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e59061578d565b60405180910390fd5b601254811115611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a906156ed565b60405180910390fd5b601060029054906101000a900460ff1615611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a906154ed565b60405180910390fd5b80600b546115919190615a05565b3410156115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca906157ad565b60405180910390fd5b60005b81811015611642577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611607611022565b84604051611616929190615848565b60405180910390a161162f8361162a611022565b613411565b808061163a90615b7b565b9150506115d6565b505050565b6116628383836040518060200160405280600081525061289c565b505050565b60606000611674836119b0565b905060008167ffffffffffffffff8111156116b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116e65781602001602082028036833780820191505090505b50905060005b82811015611756576116fe858261110b565b828281518110611737577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061174e90615b7b565b9150506116ec565b508092505050919050565b600061176b612472565b905090565b60115481565b3373ffffffffffffffffffffffffffffffffffffffff16611795612472565b73ffffffffffffffffffffffffffffffffffffffff16146117b557600080fd5b8060128190555050565b60006117c9611022565b821061180a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118019061576d565b60405180910390fd5b60088281548110611844577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16611875612472565b73ffffffffffffffffffffffffffffffffffffffff161461189557600080fd5b80600f90805190602001906118ab9291906141cb565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166118ce612472565b73ffffffffffffffffffffffffffffffffffffffff16146118ee57600080fd5b80600e8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611998906155ed565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a18906155cd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a70613016565b73ffffffffffffffffffffffffffffffffffffffff16611a8e612472565b73ffffffffffffffffffffffffffffffffffffffff1614611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb9061566d565b60405180910390fd5b611aee600061342f565b565b3373ffffffffffffffffffffffffffffffffffffffff16611b0f612472565b73ffffffffffffffffffffffffffffffffffffffff1614611b2f57600080fd5b80601060016101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16611b6b612472565b73ffffffffffffffffffffffffffffffffffffffff1614611b8b57600080fd5b600e54600d541115611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc9906153ed565b60405180910390fd5b6000611bdc611022565b905060005b600c54811015611c6f577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3558183611c18919061597e565b33604051611c27929190615848565b60405180910390a1611c44338284611c3f919061597e565b613411565b600d6000815480929190611c5790615b7b565b91905055508080611c6790615b7b565b915050611be1565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611c92612472565b73ffffffffffffffffffffffffffffffffffffffff1614611cb257600080fd5b60005b82829050811015611f5f57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611d11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611d2691906143f1565b73ffffffffffffffffffffffffffffffffffffffff161415611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d749061564d565b60405180910390fd5b600160166000858585818110611dbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611dd191906143f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060176000858585818110611e61577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611e7691906143f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611ebd576000611f4b565b60176000848484818110611efa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f0f91906143f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611f5790615b7b565b915050611cb5565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16611f83612472565b73ffffffffffffffffffffffffffffffffffffffff1614611fa357600080fd5b8060118190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611fcc612472565b73ffffffffffffffffffffffffffffffffffffffff1614611fec57600080fd5b60005b8181101561205b577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355612020611022565b8460405161202f929190615848565b60405180910390a161204883612043611022565b613411565b808061205390615b7b565b915050611fef565b505050565b60115461206b611022565b11156120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a39061552d565b60405180910390fd5b601060019054906101000a900460ff166120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f29061540d565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e9061542d565b60405180910390fd5b601154612192611022565b106121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c9906157ed565b60405180910390fd5b601454811115612217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220e9061580d565b60405180910390fd5b60145481601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612265919061597e565b11156122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d906157cd565b60405180910390fd5b80600b546122b49190615a05565b3410156122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed906157ad565b60405180910390fd5b601060029054906101000a900460ff1615612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d906154ed565b60405180910390fd5b60005b8181101561240c576001601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123a1919061597e565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556123d1611022565b336040516123e0929190615848565b60405180910390a16123f9336123f4611022565b613411565b808061240490615b7b565b915050612349565b5050565b3373ffffffffffffffffffffffffffffffffffffffff1661242f612472565b73ffffffffffffffffffffffffffffffffffffffff161461244f57600080fd5b8060148190555050565b601060029054906101000a900460ff1681565b60145481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff166124bb612472565b73ffffffffffffffffffffffffffffffffffffffff16146124db57600080fd5b80600b8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16612504612472565b73ffffffffffffffffffffffffffffffffffffffff161461252457600080fd5b6001601060026101000a81548160ff021916908315150217905550565b60606001805461255090615b49565b80601f016020809104026020016040519081016040528092919081815260200182805461257c90615b49565b80156125c95780601f1061259e576101008083540402835291602001916125c9565b820191906000526020600020905b8154815290600101906020018083116125ac57829003601f168201915b5050505050905090565b6000600b54905090565b60125481565b6125f56125ee613016565b83836134f5565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16612618612472565b73ffffffffffffffffffffffffffffffffffffffff161461263857600080fd5b60005b828290508110156127bb57600073ffffffffffffffffffffffffffffffffffffffff16838383818110612697577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906126ac91906143f1565b73ffffffffffffffffffffffffffffffffffffffff161415612703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fa9061564d565b60405180910390fd5b600060166000858585818110612742577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061275791906143f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806127b390615b7b565b91505061263b565b505050565b3373ffffffffffffffffffffffffffffffffffffffff166127df612472565b73ffffffffffffffffffffffffffffffffffffffff16146127ff57600080fd5b80601060006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f8160405161284891906153b0565b60405180910390a150565b60003373ffffffffffffffffffffffffffffffffffffffff16612874612472565b73ffffffffffffffffffffffffffffffffffffffff161461289457600080fd5b601254905090565b6128ad6128a7613016565b836130d7565b6128ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e39061574d565b60405180910390fd5b6128f884848484613662565b50505050565b6000612908611022565b905090565b606061291882612faa565b612957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294e906156cd565b60405180910390fd5b60006129616136be565b9050600081511161298157604051806020016040528060008152506129ac565b8061298b84613750565b60405160200161299c929190615303565b6040516020818303038152906040525b915050919050565b60135481565b6000600c54905090565b3373ffffffffffffffffffffffffffffffffffffffff166129e3612472565b73ffffffffffffffffffffffffffffffffffffffff1614612a0357600080fd5b6000612a0d611022565b90506011548482612a1e919061597e565b1115612a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a569061572d565b60405180910390fd5b601154811115612aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9b9061578d565b60405180910390fd5b60005b83839050811015612c8c57600073ffffffffffffffffffffffffffffffffffffffff16848483818110612b03577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612b1891906143f1565b73ffffffffffffffffffffffffffffffffffffffff161415612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b669061564d565b60405180910390fd5b60005b85811015612c78577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355612ba3611022565b868685818110612bdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612bf191906143f1565b604051612bff929190615848565b60405180910390a1612c65858584818110612c43577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612c5891906143f1565b612c60611022565b613411565b8080612c7090615b7b565b915050612b72565b508080612c8490615b7b565b915050612aa7565b5050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16612d46612472565b73ffffffffffffffffffffffffffffffffffffffff1614612d6657600080fd5b8060138190555050565b6000601060029054906101000a900460ff16905090565b612d8f613016565b73ffffffffffffffffffffffffffffffffffffffff16612dad612472565b73ffffffffffffffffffffffffffffffffffffffff1614612e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfa9061566d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6a906154ad565b60405180910390fd5b612e7c8161342f565b50565b3373ffffffffffffffffffffffffffffffffffffffff16612e9e612472565b73ffffffffffffffffffffffffffffffffffffffff1614612ebe57600080fd5b80600c8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f9357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612fa35750612fa2826138fd565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613091836118f8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006130e282612faa565b613121576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131189061558d565b60405180910390fd5b600061312c836118f8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061319b57508373ffffffffffffffffffffffffffffffffffffffff1661318384610e85565b73ffffffffffffffffffffffffffffffffffffffff16145b806131ac57506131ab8185612c93565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166131d5826118f8565b73ffffffffffffffffffffffffffffffffffffffff161461322b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613222906156ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561329b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132929061554d565b60405180910390fd5b6132a6838383613967565b6132b160008261301e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133019190615a5f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613358919061597e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61342b828260405180602001604052806000815250613a7b565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355b9061556d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161365591906153b0565b60405180910390a3505050565b61366d8484846131b5565b61367984848484613ad6565b6136b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136af9061548d565b60405180910390fd5b50505050565b6060600f80546136cd90615b49565b80601f01602080910402602001604051908101604052809291908181526020018280546136f990615b49565b80156137465780601f1061371b57610100808354040283529160200191613746565b820191906000526020600020905b81548152906001019060200180831161372957829003601f168201915b5050505050905090565b60606000821415613798576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138f8565b600082905060005b600082146137ca5780806137b390615b7b565b915050600a826137c391906159d4565b91506137a0565b60008167ffffffffffffffff81111561380c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561383e5781602001600182028036833780820191505090505b5090505b600085146138f1576001826138579190615a5f565b9150600a856138669190615bc4565b6030613872919061597e565b60f81b8183815181106138ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138ea91906159d4565b9450613842565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613972838383613c6d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139b5576139b081613c72565b6139f4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146139f3576139f28382613cbb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a3757613a3281613e28565b613a76565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613a7557613a748282613f6b565b5b5b505050565b613a858383613fea565b613a926000848484613ad6565b613ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ac89061548d565b60405180910390fd5b505050565b6000613af78473ffffffffffffffffffffffffffffffffffffffff166141b8565b15613c60578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613b20613016565b8786866040518563ffffffff1660e01b8152600401613b429493929190615342565b602060405180830381600087803b158015613b5c57600080fd5b505af1925050508015613b8d57506040513d601f19601f82011682018060405250810190613b8a919061462f565b60015b613c10573d8060008114613bbd576040519150601f19603f3d011682016040523d82523d6000602084013e613bc2565b606091505b50600081511415613c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bff9061548d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613c65565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613cc8846119b0565b613cd29190615a5f565b9050600060076000848152602001908152602001600020549050818114613db7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613e3c9190615a5f565b9050600060096000848152602001908152602001600020549050600060088381548110613e92577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613eda577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613f4f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613f76836119b0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561405a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140519061560d565b60405180910390fd5b61406381612faa565b156140a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161409a906154cd565b60405180910390fd5b6140af60008383613967565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546140ff919061597e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546141d790615b49565b90600052602060002090601f0160209004810192826141f95760008555614240565b82601f1061421257805160ff1916838001178555614240565b82800160010185558215614240579182015b8281111561423f578251825591602001919060010190614224565b5b50905061424d9190614251565b5090565b5b8082111561426a576000816000905550600101614252565b5090565b600061428161427c846158a2565b615871565b90508281526020810184848401111561429957600080fd5b6142a4848285615b07565b509392505050565b60006142bf6142ba846158d2565b615871565b9050828152602081018484840111156142d757600080fd5b6142e2848285615b07565b509392505050565b6000813590506142f981615cc2565b92915050565b60008083601f84011261431157600080fd5b8235905067ffffffffffffffff81111561432a57600080fd5b60208301915083602082028301111561434257600080fd5b9250929050565b60008135905061435881615cd9565b92915050565b60008135905061436d81615cf0565b92915050565b60008151905061438281615cf0565b92915050565b600082601f83011261439957600080fd5b81356143a984826020860161426e565b91505092915050565b600082601f8301126143c357600080fd5b81356143d38482602086016142ac565b91505092915050565b6000813590506143eb81615d07565b92915050565b60006020828403121561440357600080fd5b6000614411848285016142ea565b91505092915050565b6000806040838503121561442d57600080fd5b600061443b858286016142ea565b925050602061444c858286016142ea565b9150509250929050565b60008060006060848603121561446b57600080fd5b6000614479868287016142ea565b935050602061448a868287016142ea565b925050604061449b868287016143dc565b9150509250925092565b600080600080608085870312156144bb57600080fd5b60006144c9878288016142ea565b94505060206144da878288016142ea565b93505060406144eb878288016143dc565b925050606085013567ffffffffffffffff81111561450857600080fd5b61451487828801614388565b91505092959194509250565b6000806040838503121561453357600080fd5b6000614541858286016142ea565b925050602061455285828601614349565b9150509250929050565b6000806040838503121561456f57600080fd5b600061457d858286016142ea565b925050602061458e858286016143dc565b9150509250929050565b600080602083850312156145ab57600080fd5b600083013567ffffffffffffffff8111156145c557600080fd5b6145d1858286016142ff565b92509250509250929050565b6000602082840312156145ef57600080fd5b60006145fd84828501614349565b91505092915050565b60006020828403121561461857600080fd5b60006146268482850161435e565b91505092915050565b60006020828403121561464157600080fd5b600061464f84828501614373565b91505092915050565b60006020828403121561466a57600080fd5b600082013567ffffffffffffffff81111561468457600080fd5b614690848285016143b2565b91505092915050565b6000602082840312156146ab57600080fd5b60006146b9848285016143dc565b91505092915050565b6000806000604084860312156146d757600080fd5b60006146e5868287016143dc565b935050602084013567ffffffffffffffff81111561470257600080fd5b61470e868287016142ff565b92509250509250925092565b600061472683836152e5565b60208301905092915050565b61473b81615a93565b82525050565b600061474c82615912565b6147568185615940565b935061476183615902565b8060005b83811015614792578151614779888261471a565b975061478483615933565b925050600181019050614765565b5085935050505092915050565b6147a881615aa5565b82525050565b60006147b98261591d565b6147c38185615951565b93506147d3818560208601615b16565b6147dc81615cb1565b840191505092915050565b60006147f282615928565b6147fc8185615962565b935061480c818560208601615b16565b61481581615cb1565b840191505092915050565b600061482b82615928565b6148358185615973565b9350614845818560208601615b16565b80840191505092915050565b600061485e601b83615962565b91507f4d61782052657365727665732074616b656e20616c72656164792100000000006000830152602082019050919050565b600061489e601883615962565b91507f416c6c6f77204c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b60006148de601d83615962565b91507f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006000830152602082019050919050565b600061491e601d83615962565b91507f53616c65206973206e6f74206163746976652063757272656e746c792e0000006000830152602082019050919050565b600061495e602b83615962565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006149c4603283615962565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614a2a602683615962565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a90601c83615962565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614ad0601383615962565b91507f4d696e7420436c6f73656420466f7265766572000000000000000000000000006000830152602082019050919050565b6000614b10601883615962565b91507f4d617820686f6c64696e672063617020726561636865642e00000000000000006000830152602082019050919050565b6000614b50600f83615962565b91507f53616c652068617320656e6465642e00000000000000000000000000000000006000830152602082019050919050565b6000614b90602483615962565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614bf6601983615962565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614c36602c83615962565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614c9c603883615962565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614d02602a83615962565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d68602983615962565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614dce602083615962565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614e0e602c83615962565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614e74601883615962565b91507f43616e2774206164642061206e756c6c206164647265737300000000000000006000830152602082019050919050565b6000614eb4602083615962565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614ef4601e83615962565b91507f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c69737400006000830152602082019050919050565b6000614f34602983615962565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f9a602f83615962565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000615000601e83615962565b91507f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e7300006000830152602082019050919050565b6000615040602183615962565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006150a6601683615962565b91507f546f74616c20737570706c792065786365656465642e000000000000000000006000830152602082019050919050565b60006150e6603183615962565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061514c602c83615962565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006151b2601383615962565b91507f546f74616c20737570706c79207370656e742e000000000000000000000000006000830152602082019050919050565b60006151f2601b83615962565b91507f496e7375666669656e742045544820616d6f756e742073656e742e00000000006000830152602082019050919050565b6000615232601c83615962565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b6000615272601b83615962565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b60006152b2602083615962565b91507f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736000830152602082019050919050565b6152ee81615afd565b82525050565b6152fd81615afd565b82525050565b600061530f8285614820565b915061531b8284614820565b91508190509392505050565b600060208201905061533c6000830184614732565b92915050565b60006080820190506153576000830187614732565b6153646020830186614732565b61537160408301856152f4565b818103606083015261538381846147ae565b905095945050505050565b600060208201905081810360008301526153a88184614741565b905092915050565b60006020820190506153c5600083018461479f565b92915050565b600060208201905081810360008301526153e581846147e7565b905092915050565b6000602082019050818103600083015261540681614851565b9050919050565b6000602082019050818103600083015261542681614891565b9050919050565b60006020820190508181036000830152615446816148d1565b9050919050565b6000602082019050818103600083015261546681614911565b9050919050565b6000602082019050818103600083015261548681614951565b9050919050565b600060208201905081810360008301526154a6816149b7565b9050919050565b600060208201905081810360008301526154c681614a1d565b9050919050565b600060208201905081810360008301526154e681614a83565b9050919050565b6000602082019050818103600083015261550681614ac3565b9050919050565b6000602082019050818103600083015261552681614b03565b9050919050565b6000602082019050818103600083015261554681614b43565b9050919050565b6000602082019050818103600083015261556681614b83565b9050919050565b6000602082019050818103600083015261558681614be9565b9050919050565b600060208201905081810360008301526155a681614c29565b9050919050565b600060208201905081810360008301526155c681614c8f565b9050919050565b600060208201905081810360008301526155e681614cf5565b9050919050565b6000602082019050818103600083015261560681614d5b565b9050919050565b6000602082019050818103600083015261562681614dc1565b9050919050565b6000602082019050818103600083015261564681614e01565b9050919050565b6000602082019050818103600083015261566681614e67565b9050919050565b6000602082019050818103600083015261568681614ea7565b9050919050565b600060208201905081810360008301526156a681614ee7565b9050919050565b600060208201905081810360008301526156c681614f27565b9050919050565b600060208201905081810360008301526156e681614f8d565b9050919050565b6000602082019050818103600083015261570681614ff3565b9050919050565b6000602082019050818103600083015261572681615033565b9050919050565b6000602082019050818103600083015261574681615099565b9050919050565b60006020820190508181036000830152615766816150d9565b9050919050565b600060208201905081810360008301526157868161513f565b9050919050565b600060208201905081810360008301526157a6816151a5565b9050919050565b600060208201905081810360008301526157c6816151e5565b9050919050565b600060208201905081810360008301526157e681615225565b9050919050565b6000602082019050818103600083015261580681615265565b9050919050565b60006020820190508181036000830152615826816152a5565b9050919050565b600060208201905061584260008301846152f4565b92915050565b600060408201905061585d60008301856152f4565b61586a6020830184614732565b9392505050565b6000604051905081810181811067ffffffffffffffff8211171561589857615897615c82565b5b8060405250919050565b600067ffffffffffffffff8211156158bd576158bc615c82565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156158ed576158ec615c82565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061598982615afd565b915061599483615afd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156159c9576159c8615bf5565b5b828201905092915050565b60006159df82615afd565b91506159ea83615afd565b9250826159fa576159f9615c24565b5b828204905092915050565b6000615a1082615afd565b9150615a1b83615afd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615a5457615a53615bf5565b5b828202905092915050565b6000615a6a82615afd565b9150615a7583615afd565b925082821015615a8857615a87615bf5565b5b828203905092915050565b6000615a9e82615add565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615b34578082015181840152602081019050615b19565b83811115615b43576000848401525b50505050565b60006002820490506001821680615b6157607f821691505b60208210811415615b7557615b74615c53565b5b50919050565b6000615b8682615afd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615bb957615bb8615bf5565b5b600182019050919050565b6000615bcf82615afd565b9150615bda83615afd565b925082615bea57615be9615c24565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615ccb81615a93565b8114615cd657600080fd5b50565b615ce281615aa5565b8114615ced57600080fd5b50565b615cf981615ab1565b8114615d0457600080fd5b50565b615d1081615afd565b8114615d1b57600080fd5b5056fea264697066735822122027bba8f930a2d6bda96bfaa1af7a194a347708160c97b1d07cf30cdd1cd56a7564736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d536d4670446e7a6654573261356248576d52366e65595555426575524c635a484d474669563759587a5747482f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmSmFpDnzfTW2a5bHWmR6neYUUBeuRLcZHMGFiV7YXzWGH/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d536d4670446e7a6654573261356248576d52366e6559555542657552
Arg [4] : 4c635a484d474669563759587a5747482f000000000000000000000000000000
Deployed Bytecode Sourcemap
116:7246:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2659:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;989:222:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2408:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3919:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3457:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1614:111:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;352:28:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4646:330:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;384:37:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2288:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1290:253:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7155:205:6;;;;;;;;;;;;;:::i;:::-;;4634:836;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5042:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6845:306:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3839:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;469:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1216:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1797:230:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3127:99:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2944:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2111:235:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;168:36:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1849:205:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:12;;;;;;;;;;;;;:::i;:::-;;1707:128:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4036:340;;;;;;;;;;;;;:::i;:::-;;1951:333;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1585:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4380:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6060:781;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1839:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;425:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;621:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1029:85:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3038::6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3550:95;;;;;;;;;;;;;:::i;:::-;;2570:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3363:79:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;513:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4203:153:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2397:258:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1475:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3230:129;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5287:320:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3746:89:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2738:329:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;568:49:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3649:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5474:582;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4422:162:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1342:129:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3446:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1911:198:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2847:93:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2659:184;2725:7;2764:1;2747:19;;:5;:19;;;;2739:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;2814:17;:24;2832:5;2814:24;;;;;;;;;;;;;;;;2807:31;;2659:184;;;:::o;989:222:5:-;1091:4;1129:35;1114:50;;;:11;:50;;;;:90;;;;1168:36;1192:11;1168:23;:36::i;:::-;1114:90;1107:97;;989:222;;;:::o;2408:98:4:-;2462:13;2494:5;2487:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408:98;:::o;3919:217::-;3995:7;4022:16;4030:7;4022;:16::i;:::-;4014:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4105:15;:24;4121:7;4105:24;;;;;;;;;;;;;;;;;;;;;4098:31;;3919:217;;;:::o;3457:401::-;3537:13;3553:23;3568:7;3553:14;:23::i;:::-;3537:39;;3600:5;3594:11;;:2;:11;;;;3586:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3691:5;3675:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3700:37;3717:5;3724:12;:10;:12::i;:::-;3700:16;:37::i;:::-;3675:62;3654:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3830:21;3839:2;3843:7;3830:8;:21::i;:::-;3457:401;;;:::o;1614:111:5:-;1675:7;1701:10;:17;;;;1694:24;;1614:111;:::o;352:28:6:-;;;;;;;;;;;;;:::o;4646:330:4:-;4835:41;4854:12;:10;:12::i;:::-;4868:7;4835:18;:41::i;:::-;4827:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;4941:28;4951:4;4957:2;4961:7;4941:9;:28::i;:::-;4646:330;;;:::o;384:37:6:-;;;;;;;;;;;;;:::o;2288:105::-;2353:4;2372:10;:16;2383:4;2372:16;;;;;;;;;;;;;;;;;;;;;;;;;2365:23;;2288:105;;;:::o;1290:253:5:-;1387:7;1422:23;1439:5;1422:16;:23::i;:::-;1414:5;:31;1406:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1510:12;:19;1523:5;1510:19;;;;;;;;;;;;;;;:26;1530:5;1510:26;;;;;;;;;;;;1503:33;;1290:253;;;;:::o;7155:205:6:-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;7205:12:::1;7220:21;7205:36;;7255:11;;;;;;;;;;;7247:29;;:53;7294:5;7287:4;7277:7;:14;;;;:::i;:::-;:22;;;;:::i;:::-;7247:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;7314:7;:5;:7::i;:::-;7306:25;;:49;7349:5;7342:4;7332:7;:14;;;;:::i;:::-;:22;;;;:::i;:::-;7306:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1206:1;7155:205::o:0;4634:836::-;1085:17;;1068:13;:11;:13::i;:::-;:34;;1060:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4727:7:::1;:5;:7::i;:::-;4713:21;;:10;:21;;;4709:92;;4752:8;;;;;;;;;;;4744:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;4709:92;4817:7;:5;:7::i;:::-;4810:14;;:3;:14;;;4807:127;;4869:29;;4859:6;4842:14;4852:3;4842:9;:14::i;:::-;:23;;;;:::i;:::-;:56;;4834:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;4807:127;4974:17;;4964:6;4948:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;4940:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;5049:17;;5032:13;:11;:13::i;:::-;:34;;5024:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;5121:31;;5111:6;:41;;5096:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;5213:19;;;;;;;;;;;5212:20;5204:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;5296:6;5284:9;;:18;;;;:::i;:::-;5271:9;:31;;5263:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5346:9;5341:125;5365:6;5361:1;:10;5341:125;;;5391:31;5403:13;:11;:13::i;:::-;5418:3;5391:31;;;;;;;:::i;:::-;;;;;;;;5430:29;5440:3;5445:13;:11;:13::i;:::-;5430:9;:29::i;:::-;5373:3;;;;;:::i;:::-;;;;5341:125;;;;4634:836:::0;;:::o;5042:179:4:-;5175:39;5192:4;5198:2;5202:7;5175:39;;;;;;;;;;;;:16;:39::i;:::-;5042:179;;;:::o;6845:306:6:-;6906:16;6930:15;6948:17;6958:6;6948:9;:17::i;:::-;6930:35;;6971:25;7013:10;6999:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6971:53;;7035:6;7031:95;7051:10;7047:1;:14;7031:95;;;7089:30;7109:6;7117:1;7089:19;:30::i;:::-;7075:8;7084:1;7075:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;7063:3;;;;;:::i;:::-;;;;7031:95;;;;7138:8;7131:15;;;;6845:306;;;:::o;3839:83::-;3888:7;3910;:5;:7::i;:::-;3903:14;;3839:83;:::o;469:40::-;;;;:::o;1216:122::-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;1327:6:::1;1293:31;:40;;;;1216:122:::0;:::o;1797:230:5:-;1872:7;1907:30;:28;:30::i;:::-;1899:5;:38;1891:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2003:10;2014:5;2003:17;;;;;;;;;;;;;;;;;;;;;;;;1996:24;;1797:230;;;:::o;3127:99:6:-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;3214:7:::1;3198:13;:23;;;;;;;;;;;;:::i;:::-;;3127:99:::0;:::o;2944:90::-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;3026:3:::1;3008:15;:21;;;;2944:90:::0;:::o;2111:235:4:-;2183:7;2202:13;2218:7;:16;2226:7;2218:16;;;;;;;;;;;;;;;;;;;;;2202:32;;2269:1;2252:19;;:5;:19;;;;2244:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2334:5;2327:12;;;2111:235;;;:::o;168:36:6:-;;;;:::o;1849:205:4:-;1921:7;1965:1;1948:19;;:5;:19;;;;1940:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2031:9;:16;2041:5;2031:16;;;;;;;;;;;;;;;;2024:23;;1849:205;;;:::o;1661:101:12:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;1707:128:6:-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;1812:18:::1;1792:17;;:38;;;;;;;;;;;;;;;;;;1707:128:::0;:::o;4036:340::-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;4111:15:::1;;4094:13;;:32;;4086:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;4164:14;4181:13;:11;:13::i;:::-;4164:30;;4200:9;4216:156;4232:14;;4228:1;:18;4216:156;;;4266:35;4287:1;4278:6;:10;;;;:::i;:::-;4290;4266:35;;;;;;;:::i;:::-;;;;;;;;4309:33;4319:10;4340:1;4331:6;:10;;;;:::i;:::-;4309:9;:33::i;:::-;4350:13;;:15;;;;;;;;;:::i;:::-;;;;;;4248:3;;;;;:::i;:::-;;;;4216:156;;;1206:1;;4036:340::o:0;1951:333::-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;2040:9:::1;2035:245;2059:9;;:16;;2055:1;:20;2035:245;;;2122:1;2098:26;;:9;;2108:1;2098:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;2090:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2188:4;2161:10;:24;2172:9;;2182:1;2172:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2161:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;2234:1;2200:17;:31;2218:9;;2228:1;2218:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2200:31;;;;;;;;;;;;;;;;:35;:73;;2272:1;2200:73;;;2238:17;:31;2256:9;;2266:1;2256:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2238:31;;;;;;;;;;;;;;;;2200:73;;2077:3;;;;;:::i;:::-;;;;2035:245;;;;1951:333:::0;;:::o;1585:118::-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;1685:13:::1;1665:17;:33;;;;1585:118:::0;:::o;4380:250::-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;4484:9:::1;4479:147;4503:6;4499:1;:10;4479:147;;;4529:42;4541:13;:11;:13::i;:::-;4556:14;4529:42;;;;;;;:::i;:::-;;;;;;;;4579:40;4589:14;4605:13;:11;:13::i;:::-;4579:9;:40::i;:::-;4511:3;;;;;:::i;:::-;;;;4479:147;;;;4380:250:::0;;:::o;6060:781::-;1085:17;;1068:13;:11;:13::i;:::-;:34;;1060:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;6137:17:::1;;;;;;;;;;;6129:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;6197:10;:22;6208:10;6197:22;;;;;;;;;;;;;;;;;;;;;;;;;6189:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;6283:17;;6267:13;:11;:13::i;:::-;:33;6259:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6356:16;;6346:6;:26;;6338:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6465:16;;6455:6;6423:17;:29;6441:10;6423:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:58;;6415:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;6553:6;6541:9;;:18;;;;:::i;:::-;6528:9;:31;;6520:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6606:19;;;;;;;;;;;6605:20;6597:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;6661:9;6656:181;6680:6;6676:1;:10;6656:181;;;6734:1;6701:17;:29;6719:10;6701:29;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;6748:38;6760:13;:11;:13::i;:::-;6775:10;6748:38;;;;;;;:::i;:::-;;;;;;;;6794:36;6804:10;6816:13;:11;:13::i;:::-;6794:9;:36::i;:::-;6688:3;;;;;:::i;:::-;;;;6656:181;;;;6060:781:::0;:::o;1839:108::-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;1935:7:::1;1916:16;:26;;;;1839:108:::0;:::o;425:39::-;;;;;;;;;;;;;:::o;621:36::-;;;;:::o;1029:85:12:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;3038::6:-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;3112:6:::1;3100:9;:18;;;;3038:85:::0;:::o;3550:95::-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;3636:4:::1;3614:19;;:26;;;;;;;;;;;;;;;;;;3550:95::o:0;2570:102:4:-;2626:13;2658:7;2651:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2570:102;:::o;3363:79:6:-;3406:7;3428:9;;3421:16;;3363:79;:::o;513:51::-;;;;:::o;4203:153:4:-;4297:52;4316:12;:10;:12::i;:::-;4330:8;4340;4297:18;:52::i;:::-;4203:153;;:::o;2397:258:6:-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;2491:9:::1;2486:165;2510:9;;:16;;2506:1;:20;2486:165;;;2573:1;2549:26;;:9;;2559:1;2549:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;2541:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2639:5;2612:10;:24;2623:9;;2633:1;2623:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2612:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;2528:3;;;;;:::i;:::-;;;;2486:165;;;;2397:258:::0;;:::o;1475:106::-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;1543:3:::1;1532:8;;:14;;;;;;;;;;;;;;;;;;1557:19;1572:3;1557:19;;;;;;:::i;:::-;;;;;;;;1475:106:::0;:::o;3230:129::-;3301:7;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;3323:31:::1;;3316:38;;3230:129:::0;:::o;5287:320:4:-;5456:41;5475:12;:10;:12::i;:::-;5489:7;5456:18;:41::i;:::-;5448:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5561:39;5575:4;5581:2;5585:7;5594:5;5561:13;:39::i;:::-;5287:320;;;;:::o;3746:89:6:-;3795:7;3817:13;:11;:13::i;:::-;3810:20;;3746:89;:::o;2738:329:4:-;2811:13;2844:16;2852:7;2844;:16::i;:::-;2836:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2923:21;2947:10;:8;:10::i;:::-;2923:34;;2998:1;2980:7;2974:21;:25;:86;;;;;;;;;;;;;;;;;3026:7;3035:18;:7;:16;:18::i;:::-;3009:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2974:86;2967:93;;;2738:329;;;:::o;568:49:6:-;;;;:::o;3649:93::-;3701:7;3723:14;;3716:21;;3649:93;:::o;5474:582::-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;5591:14:::1;5608:13;:11;:13::i;:::-;5591:30;;5655:17;;5645:6;5636;:15;;;;:::i;:::-;:36;;5628:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5723:17;;5713:6;:27;;5705:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;5776:9;5771:281;5795:9;;:16;;5791:1;:20;5771:281;;;5858:1;5834:26;;:9;;5844:1;5834:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;5826:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5902:9;5898:148;5921:6;5917:1;:10;5898:148;;;5949:40;5961:13;:11;:13::i;:::-;5976:9;;5986:1;5976:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5949:40;;;;;;;:::i;:::-;;;;;;;;5999:38;6009:9;;6019:1;6009:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6023:13;:11;:13::i;:::-;5999:9;:38::i;:::-;5929:3;;;;;:::i;:::-;;;;5898:148;;;;5813:3;;;;;:::i;:::-;;;;5771:281;;;;1206:1;5474:582:::0;;;:::o;4422:162:4:-;4519:4;4542:18;:25;4561:5;4542:25;;;;;;;;;;;;;;;:35;4568:8;4542:35;;;;;;;;;;;;;;;;;;;;;;;;;4535:42;;4422:162;;;;:::o;1342:129:6:-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;1460:6:::1;1428:29;:38;;;;1342:129:::0;:::o;3446:100::-;3503:4;3522:19;;;;;;;;;;;3515:26;;3446:100;:::o;1911:198:12:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2019:1:::1;1999:22;;:8;:22;;;;1991:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;2847:93:6:-;1189:10;1178:21;;:7;:5;:7::i;:::-;:21;;;1170:30;;;;;;2932:3:::1;2915:14;:20;;;;2847:93:::0;:::o;1490:300:4:-;1592:4;1642:25;1627:40;;;:11;:40;;;;:104;;;;1698:33;1683:48;;;:11;:48;;;;1627:104;:156;;;;1747:36;1771:11;1747:23;:36::i;:::-;1627:156;1608:175;;1490:300;;;:::o;7079:125::-;7144:4;7195:1;7167:30;;:7;:16;7175:7;7167:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7160:37;;7079:125;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;10930:171:4:-;11031:2;11004:15;:24;11020:7;11004:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11086:7;11082:2;11048:46;;11057:23;11072:7;11057:14;:23::i;:::-;11048:46;;;;;;;;;;;;10930:171;;:::o;7362:344::-;7455:4;7479:16;7487:7;7479;:16::i;:::-;7471:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7554:13;7570:23;7585:7;7570:14;:23::i;:::-;7554:39;;7622:5;7611:16;;:7;:16;;;:51;;;;7655:7;7631:31;;:20;7643:7;7631:11;:20::i;:::-;:31;;;7611:51;:87;;;;7666:32;7683:5;7690:7;7666:16;:32::i;:::-;7611:87;7603:96;;;7362:344;;;;:::o;10259:560::-;10413:4;10386:31;;:23;10401:7;10386:14;:23::i;:::-;:31;;;10378:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10495:1;10481:16;;:2;:16;;;;10473:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10549:39;10570:4;10576:2;10580:7;10549:20;:39::i;:::-;10650:29;10667:1;10671:7;10650:8;:29::i;:::-;10709:1;10690:9;:15;10700:4;10690:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10737:1;10720:9;:13;10730:2;10720:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10767:2;10748:7;:16;10756:7;10748:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10804:7;10800:2;10785:27;;10794:4;10785:27;;;;;;;;;;;;10259:560;;;:::o;8036:108::-;8111:26;8121:2;8125:7;8111:26;;;;;;;;;;;;:9;:26::i;:::-;8036:108;;:::o;2263:187:12:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2263:187;;:::o;11236:307:4:-;11386:8;11377:17;;:5;:17;;;;11369:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11472:8;11434:18;:25;11453:5;11434:25;;;;;;;;;;;;;;;:35;11460:8;11434:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11517:8;11495:41;;11510:5;11495:41;;;11527:8;11495:41;;;;;;:::i;:::-;;;;;;;;11236:307;;;:::o;6469:::-;6620:28;6630:4;6636:2;6640:7;6620:9;:28::i;:::-;6666:48;6689:4;6695:2;6699:7;6708:5;6666:22;:48::i;:::-;6658:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6469:307;;;;:::o;3926:106:6:-;3986:13;4014;4007:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3926:106;:::o;328:703:13:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;829:155:3:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;2623:572:5:-;2762:45;2789:4;2795:2;2799:7;2762:26;:45::i;:::-;2838:1;2822:18;;:4;:18;;;2818:183;;;2856:40;2888:7;2856:31;:40::i;:::-;2818:183;;;2925:2;2917:10;;:4;:10;;;2913:88;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;2913:88;2818:183;3028:1;3014:16;;:2;:16;;;3010:179;;;3046:45;3083:7;3046:36;:45::i;:::-;3010:179;;;3118:4;3112:10;;:2;:10;;;3108:81;;3138:40;3166:2;3170:7;3138:27;:40::i;:::-;3108:81;3010:179;2623:572;;;:::o;8365:311:4:-;8490:18;8496:2;8500:7;8490:5;:18::i;:::-;8539:54;8570:1;8574:2;8578:7;8587:5;8539:22;:54::i;:::-;8518:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8365:311;;;:::o;12096:778::-;12246:4;12266:15;:2;:13;;;:15::i;:::-;12262:606;;;12317:2;12301:36;;;12338:12;:10;:12::i;:::-;12352:4;12358:7;12367:5;12301:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12297:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12557:1;12540:6;:13;:18;12536:266;;;12582:60;;;;;;;;;;:::i;:::-;;;;;;;;12536:266;12754:6;12748:13;12739:6;12735:2;12731:15;12724:38;12297:519;12433:41;;;12423:51;;;:6;:51;;;;12416:58;;;;;12262:606;12853:4;12846:11;;12096:778;;;;;;;:::o;13430:122::-;;;;:::o;3901:161:5:-;4004:10;:17;;;;3977:15;:24;3993:7;3977:24;;;;;;;;;;;:44;;;;4031:10;4047:7;4031:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3901:161;:::o;4679:970::-;4941:22;4991:1;4966:22;4983:4;4966:16;:22::i;:::-;:26;;;;:::i;:::-;4941:51;;5002:18;5023:17;:26;5041:7;5023:26;;;;;;;;;;;;5002:47;;5167:14;5153:10;:28;5149:323;;5197:19;5219:12;:18;5232:4;5219:18;;;;;;;;;;;;;;;:34;5238:14;5219:34;;;;;;;;;;;;5197:56;;5301:11;5268:12;:18;5281:4;5268:18;;;;;;;;;;;;;;;:30;5287:10;5268:30;;;;;;;;;;;:44;;;;5417:10;5384:17;:30;5402:11;5384:30;;;;;;;;;;;:43;;;;5149:323;;5565:17;:26;5583:7;5565:26;;;;;;;;;;;5558:33;;;5608:12;:18;5621:4;5608:18;;;;;;;;;;;;;;;:34;5627:14;5608:34;;;;;;;;;;;5601:41;;;4679:970;;;;:::o;5937:1061::-;6186:22;6231:1;6211:10;:17;;;;:21;;;;:::i;:::-;6186:46;;6242:18;6263:15;:24;6279:7;6263:24;;;;;;;;;;;;6242:45;;6609:19;6631:10;6642:14;6631:26;;;;;;;;;;;;;;;;;;;;;;;;6609:48;;6693:11;6668:10;6679;6668:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;6803:10;6772:15;:28;6788:11;6772:28;;;;;;;;;;;:41;;;;6941:15;:24;6957:7;6941:24;;;;;;;;;;;6934:31;;;6975:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5937:1061;;;;:::o;3489:217::-;3573:14;3590:20;3607:2;3590:16;:20::i;:::-;3573:37;;3647:7;3620:12;:16;3633:2;3620:16;;;;;;;;;;;;;;;:24;3637:6;3620:24;;;;;;;;;;;:34;;;;3693:6;3664:17;:26;3682:7;3664:26;;;;;;;;;;;:35;;;;3489:217;;;:::o;8998:372:4:-;9091:1;9077:16;;:2;:16;;;;9069:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9149:16;9157:7;9149;:16::i;:::-;9148:17;9140:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9209:45;9238:1;9242:2;9246:7;9209:20;:45::i;:::-;9282:1;9265:9;:13;9275:2;9265:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9312:2;9293:7;:16;9301:7;9293:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9355:7;9351:2;9330:33;;9347:1;9330:33;;;;;;;;;;;;8998:372;;:::o;771:377:0:-;831:4;1034:12;1099:7;1087:20;1079:28;;1140:1;1133:4;:8;1126:15;;;771:377;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:14:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;867:367::-;;;1000:3;993:4;985:6;981:17;977:27;967:2;;1018:1;1015;1008:12;967:2;1054:6;1041:20;1031:30;;1084:18;1076:6;1073:30;1070:2;;;1116:1;1113;1106:12;1070:2;1153:4;1145:6;1141:17;1129:29;;1207:3;1199:4;1191:6;1187:17;1177:8;1173:32;1170:41;1167:2;;;1224:1;1221;1214:12;1167:2;957:277;;;;;:::o;1240:133::-;;1321:6;1308:20;1299:29;;1337:30;1361:5;1337:30;:::i;:::-;1289:84;;;;:::o;1379:137::-;;1462:6;1449:20;1440:29;;1478:32;1504:5;1478:32;:::i;:::-;1430:86;;;;:::o;1522:141::-;;1609:6;1603:13;1594:22;;1625:32;1651:5;1625:32;:::i;:::-;1584:79;;;;:::o;1682:271::-;;1786:3;1779:4;1771:6;1767:17;1763:27;1753:2;;1804:1;1801;1794:12;1753:2;1844:6;1831:20;1869:78;1943:3;1935:6;1928:4;1920:6;1916:17;1869:78;:::i;:::-;1860:87;;1743:210;;;;;:::o;1973:273::-;;2078:3;2071:4;2063:6;2059:17;2055:27;2045:2;;2096:1;2093;2086:12;2045:2;2136:6;2123:20;2161:79;2236:3;2228:6;2221:4;2213:6;2209:17;2161:79;:::i;:::-;2152:88;;2035:211;;;;;:::o;2252:139::-;;2336:6;2323:20;2314:29;;2352:33;2379:5;2352:33;:::i;:::-;2304:87;;;;:::o;2397:262::-;;2505:2;2493:9;2484:7;2480:23;2476:32;2473:2;;;2521:1;2518;2511:12;2473:2;2564:1;2589:53;2634:7;2625:6;2614:9;2610:22;2589:53;:::i;:::-;2579:63;;2535:117;2463:196;;;;:::o;2665:407::-;;;2790:2;2778:9;2769:7;2765:23;2761:32;2758:2;;;2806:1;2803;2796:12;2758:2;2849:1;2874:53;2919:7;2910:6;2899:9;2895:22;2874:53;:::i;:::-;2864:63;;2820:117;2976:2;3002:53;3047:7;3038:6;3027:9;3023:22;3002:53;:::i;:::-;2992:63;;2947:118;2748:324;;;;;:::o;3078:552::-;;;;3220:2;3208:9;3199:7;3195:23;3191:32;3188:2;;;3236:1;3233;3226:12;3188:2;3279:1;3304:53;3349:7;3340:6;3329:9;3325:22;3304:53;:::i;:::-;3294:63;;3250:117;3406:2;3432:53;3477:7;3468:6;3457:9;3453:22;3432:53;:::i;:::-;3422:63;;3377:118;3534:2;3560:53;3605:7;3596:6;3585:9;3581:22;3560:53;:::i;:::-;3550:63;;3505:118;3178:452;;;;;:::o;3636:809::-;;;;;3804:3;3792:9;3783:7;3779:23;3775:33;3772:2;;;3821:1;3818;3811:12;3772:2;3864:1;3889:53;3934:7;3925:6;3914:9;3910:22;3889:53;:::i;:::-;3879:63;;3835:117;3991:2;4017:53;4062:7;4053:6;4042:9;4038:22;4017:53;:::i;:::-;4007:63;;3962:118;4119:2;4145:53;4190:7;4181:6;4170:9;4166:22;4145:53;:::i;:::-;4135:63;;4090:118;4275:2;4264:9;4260:18;4247:32;4306:18;4298:6;4295:30;4292:2;;;4338:1;4335;4328:12;4292:2;4366:62;4420:7;4411:6;4400:9;4396:22;4366:62;:::i;:::-;4356:72;;4218:220;3762:683;;;;;;;:::o;4451:401::-;;;4573:2;4561:9;4552:7;4548:23;4544:32;4541:2;;;4589:1;4586;4579:12;4541:2;4632:1;4657:53;4702:7;4693:6;4682:9;4678:22;4657:53;:::i;:::-;4647:63;;4603:117;4759:2;4785:50;4827:7;4818:6;4807:9;4803:22;4785:50;:::i;:::-;4775:60;;4730:115;4531:321;;;;;:::o;4858:407::-;;;4983:2;4971:9;4962:7;4958:23;4954:32;4951:2;;;4999:1;4996;4989:12;4951:2;5042:1;5067:53;5112:7;5103:6;5092:9;5088:22;5067:53;:::i;:::-;5057:63;;5013:117;5169:2;5195:53;5240:7;5231:6;5220:9;5216:22;5195:53;:::i;:::-;5185:63;;5140:118;4941:324;;;;;:::o;5271:425::-;;;5414:2;5402:9;5393:7;5389:23;5385:32;5382:2;;;5430:1;5427;5420:12;5382:2;5501:1;5490:9;5486:17;5473:31;5531:18;5523:6;5520:30;5517:2;;;5563:1;5560;5553:12;5517:2;5599:80;5671:7;5662:6;5651:9;5647:22;5599:80;:::i;:::-;5581:98;;;;5444:245;5372:324;;;;;:::o;5702:256::-;;5807:2;5795:9;5786:7;5782:23;5778:32;5775:2;;;5823:1;5820;5813:12;5775:2;5866:1;5891:50;5933:7;5924:6;5913:9;5909:22;5891:50;:::i;:::-;5881:60;;5837:114;5765:193;;;;:::o;5964:260::-;;6071:2;6059:9;6050:7;6046:23;6042:32;6039:2;;;6087:1;6084;6077:12;6039:2;6130:1;6155:52;6199:7;6190:6;6179:9;6175:22;6155:52;:::i;:::-;6145:62;;6101:116;6029:195;;;;:::o;6230:282::-;;6348:2;6336:9;6327:7;6323:23;6319:32;6316:2;;;6364:1;6361;6354:12;6316:2;6407:1;6432:63;6487:7;6478:6;6467:9;6463:22;6432:63;:::i;:::-;6422:73;;6378:127;6306:206;;;;:::o;6518:375::-;;6636:2;6624:9;6615:7;6611:23;6607:32;6604:2;;;6652:1;6649;6642:12;6604:2;6723:1;6712:9;6708:17;6695:31;6753:18;6745:6;6742:30;6739:2;;;6785:1;6782;6775:12;6739:2;6813:63;6868:7;6859:6;6848:9;6844:22;6813:63;:::i;:::-;6803:73;;6666:220;6594:299;;;;:::o;6899:262::-;;7007:2;6995:9;6986:7;6982:23;6978:32;6975:2;;;7023:1;7020;7013:12;6975:2;7066:1;7091:53;7136:7;7127:6;7116:9;7112:22;7091:53;:::i;:::-;7081:63;;7037:117;6965:196;;;;:::o;7167:570::-;;;;7327:2;7315:9;7306:7;7302:23;7298:32;7295:2;;;7343:1;7340;7333:12;7295:2;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7541:2;7530:9;7526:18;7513:32;7572:18;7564:6;7561:30;7558:2;;;7604:1;7601;7594:12;7558:2;7640:80;7712:7;7703:6;7692:9;7688:22;7640:80;:::i;:::-;7622:98;;;;7484:246;7285:452;;;;;:::o;7743:179::-;;7833:46;7875:3;7867:6;7833:46;:::i;:::-;7911:4;7906:3;7902:14;7888:28;;7823:99;;;;:::o;7928:118::-;8015:24;8033:5;8015:24;:::i;:::-;8010:3;8003:37;7993:53;;:::o;8082:732::-;;8230:54;8278:5;8230:54;:::i;:::-;8300:86;8379:6;8374:3;8300:86;:::i;:::-;8293:93;;8410:56;8460:5;8410:56;:::i;:::-;8489:7;8520:1;8505:284;8530:6;8527:1;8524:13;8505:284;;;8606:6;8600:13;8633:63;8692:3;8677:13;8633:63;:::i;:::-;8626:70;;8719:60;8772:6;8719:60;:::i;:::-;8709:70;;8565:224;8552:1;8549;8545:9;8540:14;;8505:284;;;8509:14;8805:3;8798:10;;8206:608;;;;;;;:::o;8820:109::-;8901:21;8916:5;8901:21;:::i;:::-;8896:3;8889:34;8879:50;;:::o;8935:360::-;;9049:38;9081:5;9049:38;:::i;:::-;9103:70;9166:6;9161:3;9103:70;:::i;:::-;9096:77;;9182:52;9227:6;9222:3;9215:4;9208:5;9204:16;9182:52;:::i;:::-;9259:29;9281:6;9259:29;:::i;:::-;9254:3;9250:39;9243:46;;9025:270;;;;;:::o;9301:364::-;;9417:39;9450:5;9417:39;:::i;:::-;9472:71;9536:6;9531:3;9472:71;:::i;:::-;9465:78;;9552:52;9597:6;9592:3;9585:4;9578:5;9574:16;9552:52;:::i;:::-;9629:29;9651:6;9629:29;:::i;:::-;9624:3;9620:39;9613:46;;9393:272;;;;;:::o;9671:377::-;;9805:39;9838:5;9805:39;:::i;:::-;9860:89;9942:6;9937:3;9860:89;:::i;:::-;9853:96;;9958:52;10003:6;9998:3;9991:4;9984:5;9980:16;9958:52;:::i;:::-;10035:6;10030:3;10026:16;10019:23;;9781:267;;;;;:::o;10054:325::-;;10217:67;10281:2;10276:3;10217:67;:::i;:::-;10210:74;;10314:29;10310:1;10305:3;10301:11;10294:50;10370:2;10365:3;10361:12;10354:19;;10200:179;;;:::o;10385:322::-;;10548:67;10612:2;10607:3;10548:67;:::i;:::-;10541:74;;10645:26;10641:1;10636:3;10632:11;10625:47;10698:2;10693:3;10689:12;10682:19;;10531:176;;;:::o;10713:327::-;;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10973:31;10969:1;10964:3;10960:11;10953:52;11031:2;11026:3;11022:12;11015:19;;10859:181;;;:::o;11046:327::-;;11209:67;11273:2;11268:3;11209:67;:::i;:::-;11202:74;;11306:31;11302:1;11297:3;11293:11;11286:52;11364:2;11359:3;11355:12;11348:19;;11192:181;;;:::o;11379:375::-;;11542:67;11606:2;11601:3;11542:67;:::i;:::-;11535:74;;11639:34;11635:1;11630:3;11626:11;11619:55;11705:13;11700:2;11695:3;11691:12;11684:35;11745:2;11740:3;11736:12;11729:19;;11525:229;;;:::o;11760:382::-;;11923:67;11987:2;11982:3;11923:67;:::i;:::-;11916:74;;12020:34;12016:1;12011:3;12007:11;12000:55;12086:20;12081:2;12076:3;12072:12;12065:42;12133:2;12128:3;12124:12;12117:19;;11906:236;;;:::o;12148:370::-;;12311:67;12375:2;12370:3;12311:67;:::i;:::-;12304:74;;12408:34;12404:1;12399:3;12395:11;12388:55;12474:8;12469:2;12464:3;12460:12;12453:30;12509:2;12504:3;12500:12;12493:19;;12294:224;;;:::o;12524:326::-;;12687:67;12751:2;12746:3;12687:67;:::i;:::-;12680:74;;12784:30;12780:1;12775:3;12771:11;12764:51;12841:2;12836:3;12832:12;12825:19;;12670:180;;;:::o;12856:317::-;;13019:67;13083:2;13078:3;13019:67;:::i;:::-;13012:74;;13116:21;13112:1;13107:3;13103:11;13096:42;13164:2;13159:3;13155:12;13148:19;;13002:171;;;:::o;13179:322::-;;13342:67;13406:2;13401:3;13342:67;:::i;:::-;13335:74;;13439:26;13435:1;13430:3;13426:11;13419:47;13492:2;13487:3;13483:12;13476:19;;13325:176;;;:::o;13507:313::-;;13670:67;13734:2;13729:3;13670:67;:::i;:::-;13663:74;;13767:17;13763:1;13758:3;13754:11;13747:38;13811:2;13806:3;13802:12;13795:19;;13653:167;;;:::o;13826:368::-;;13989:67;14053:2;14048:3;13989:67;:::i;:::-;13982:74;;14086:34;14082:1;14077:3;14073:11;14066:55;14152:6;14147:2;14142:3;14138:12;14131:28;14185:2;14180:3;14176:12;14169:19;;13972:222;;;:::o;14200:323::-;;14363:67;14427:2;14422:3;14363:67;:::i;:::-;14356:74;;14460:27;14456:1;14451:3;14447:11;14440:48;14514:2;14509:3;14505:12;14498:19;;14346:177;;;:::o;14529:376::-;;14692:67;14756:2;14751:3;14692:67;:::i;:::-;14685:74;;14789:34;14785:1;14780:3;14776:11;14769:55;14855:14;14850:2;14845:3;14841:12;14834:36;14896:2;14891:3;14887:12;14880:19;;14675:230;;;:::o;14911:388::-;;15074:67;15138:2;15133:3;15074:67;:::i;:::-;15067:74;;15171:34;15167:1;15162:3;15158:11;15151:55;15237:26;15232:2;15227:3;15223:12;15216:48;15290:2;15285:3;15281:12;15274:19;;15057:242;;;:::o;15305:374::-;;15468:67;15532:2;15527:3;15468:67;:::i;:::-;15461:74;;15565:34;15561:1;15556:3;15552:11;15545:55;15631:12;15626:2;15621:3;15617:12;15610:34;15670:2;15665:3;15661:12;15654:19;;15451:228;;;:::o;15685:373::-;;15848:67;15912:2;15907:3;15848:67;:::i;:::-;15841:74;;15945:34;15941:1;15936:3;15932:11;15925:55;16011:11;16006:2;16001:3;15997:12;15990:33;16049:2;16044:3;16040:12;16033:19;;15831:227;;;:::o;16064:330::-;;16227:67;16291:2;16286:3;16227:67;:::i;:::-;16220:74;;16324:34;16320:1;16315:3;16311:11;16304:55;16385:2;16380:3;16376:12;16369:19;;16210:184;;;:::o;16400:376::-;;16563:67;16627:2;16622:3;16563:67;:::i;:::-;16556:74;;16660:34;16656:1;16651:3;16647:11;16640:55;16726:14;16721:2;16716:3;16712:12;16705:36;16767:2;16762:3;16758:12;16751:19;;16546:230;;;:::o;16782:322::-;;16945:67;17009:2;17004:3;16945:67;:::i;:::-;16938:74;;17042:26;17038:1;17033:3;17029:11;17022:47;17095:2;17090:3;17086:12;17079:19;;16928:176;;;:::o;17110:330::-;;17273:67;17337:2;17332:3;17273:67;:::i;:::-;17266:74;;17370:34;17366:1;17361:3;17357:11;17350:55;17431:2;17426:3;17422:12;17415:19;;17256:184;;;:::o;17446:328::-;;17609:67;17673:2;17668:3;17609:67;:::i;:::-;17602:74;;17706:32;17702:1;17697:3;17693:11;17686:53;17765:2;17760:3;17756:12;17749:19;;17592:182;;;:::o;17780:373::-;;17943:67;18007:2;18002:3;17943:67;:::i;:::-;17936:74;;18040:34;18036:1;18031:3;18027:11;18020:55;18106:11;18101:2;18096:3;18092:12;18085:33;18144:2;18139:3;18135:12;18128:19;;17926:227;;;:::o;18159:379::-;;18322:67;18386:2;18381:3;18322:67;:::i;:::-;18315:74;;18419:34;18415:1;18410:3;18406:11;18399:55;18485:17;18480:2;18475:3;18471:12;18464:39;18529:2;18524:3;18520:12;18513:19;;18305:233;;;:::o;18544:328::-;;18707:67;18771:2;18766:3;18707:67;:::i;:::-;18700:74;;18804:32;18800:1;18795:3;18791:11;18784:53;18863:2;18858:3;18854:12;18847:19;;18690:182;;;:::o;18878:365::-;;19041:67;19105:2;19100:3;19041:67;:::i;:::-;19034:74;;19138:34;19134:1;19129:3;19125:11;19118:55;19204:3;19199:2;19194:3;19190:12;19183:25;19234:2;19229:3;19225:12;19218:19;;19024:219;;;:::o;19249:320::-;;19412:67;19476:2;19471:3;19412:67;:::i;:::-;19405:74;;19509:24;19505:1;19500:3;19496:11;19489:45;19560:2;19555:3;19551:12;19544:19;;19395:174;;;:::o;19575:381::-;;19738:67;19802:2;19797:3;19738:67;:::i;:::-;19731:74;;19835:34;19831:1;19826:3;19822:11;19815:55;19901:19;19896:2;19891:3;19887:12;19880:41;19947:2;19942:3;19938:12;19931:19;;19721:235;;;:::o;19962:376::-;;20125:67;20189:2;20184:3;20125:67;:::i;:::-;20118:74;;20222:34;20218:1;20213:3;20209:11;20202:55;20288:14;20283:2;20278:3;20274:12;20267:36;20329:2;20324:3;20320:12;20313:19;;20108:230;;;:::o;20344:317::-;;20507:67;20571:2;20566:3;20507:67;:::i;:::-;20500:74;;20604:21;20600:1;20595:3;20591:11;20584:42;20652:2;20647:3;20643:12;20636:19;;20490:171;;;:::o;20667:325::-;;20830:67;20894:2;20889:3;20830:67;:::i;:::-;20823:74;;20927:29;20923:1;20918:3;20914:11;20907:50;20983:2;20978:3;20974:12;20967:19;;20813:179;;;:::o;20998:326::-;;21161:67;21225:2;21220:3;21161:67;:::i;:::-;21154:74;;21258:30;21254:1;21249:3;21245:11;21238:51;21315:2;21310:3;21306:12;21299:19;;21144:180;;;:::o;21330:325::-;;21493:67;21557:2;21552:3;21493:67;:::i;:::-;21486:74;;21590:29;21586:1;21581:3;21577:11;21570:50;21646:2;21641:3;21637:12;21630:19;;21476:179;;;:::o;21661:330::-;;21824:67;21888:2;21883:3;21824:67;:::i;:::-;21817:74;;21921:34;21917:1;21912:3;21908:11;21901:55;21982:2;21977:3;21973:12;21966:19;;21807:184;;;:::o;21997:108::-;22074:24;22092:5;22074:24;:::i;:::-;22069:3;22062:37;22052:53;;:::o;22111:118::-;22198:24;22216:5;22198:24;:::i;:::-;22193:3;22186:37;22176:53;;:::o;22235:435::-;;22437:95;22528:3;22519:6;22437:95;:::i;:::-;22430:102;;22549:95;22640:3;22631:6;22549:95;:::i;:::-;22542:102;;22661:3;22654:10;;22419:251;;;;;:::o;22676:222::-;;22807:2;22796:9;22792:18;22784:26;;22820:71;22888:1;22877:9;22873:17;22864:6;22820:71;:::i;:::-;22774:124;;;;:::o;22904:640::-;;23137:3;23126:9;23122:19;23114:27;;23151:71;23219:1;23208:9;23204:17;23195:6;23151:71;:::i;:::-;23232:72;23300:2;23289:9;23285:18;23276:6;23232:72;:::i;:::-;23314;23382:2;23371:9;23367:18;23358:6;23314:72;:::i;:::-;23433:9;23427:4;23423:20;23418:2;23407:9;23403:18;23396:48;23461:76;23532:4;23523:6;23461:76;:::i;:::-;23453:84;;23104:440;;;;;;;:::o;23550:373::-;;23731:2;23720:9;23716:18;23708:26;;23780:9;23774:4;23770:20;23766:1;23755:9;23751:17;23744:47;23808:108;23911:4;23902:6;23808:108;:::i;:::-;23800:116;;23698:225;;;;:::o;23929:210::-;;24054:2;24043:9;24039:18;24031:26;;24067:65;24129:1;24118:9;24114:17;24105:6;24067:65;:::i;:::-;24021:118;;;;:::o;24145:313::-;;24296:2;24285:9;24281:18;24273:26;;24345:9;24339:4;24335:20;24331:1;24320:9;24316:17;24309:47;24373:78;24446:4;24437:6;24373:78;:::i;:::-;24365:86;;24263:195;;;;:::o;24464:419::-;;24668:2;24657:9;24653:18;24645:26;;24717:9;24711:4;24707:20;24703:1;24692:9;24688:17;24681:47;24745:131;24871:4;24745:131;:::i;:::-;24737:139;;24635:248;;;:::o;24889:419::-;;25093:2;25082:9;25078:18;25070:26;;25142:9;25136:4;25132:20;25128:1;25117:9;25113:17;25106:47;25170:131;25296:4;25170:131;:::i;:::-;25162:139;;25060:248;;;:::o;25314:419::-;;25518:2;25507:9;25503:18;25495:26;;25567:9;25561:4;25557:20;25553:1;25542:9;25538:17;25531:47;25595:131;25721:4;25595:131;:::i;:::-;25587:139;;25485:248;;;:::o;25739:419::-;;25943:2;25932:9;25928:18;25920:26;;25992:9;25986:4;25982:20;25978:1;25967:9;25963:17;25956:47;26020:131;26146:4;26020:131;:::i;:::-;26012:139;;25910:248;;;:::o;26164:419::-;;26368:2;26357:9;26353:18;26345:26;;26417:9;26411:4;26407:20;26403:1;26392:9;26388:17;26381:47;26445:131;26571:4;26445:131;:::i;:::-;26437:139;;26335:248;;;:::o;26589:419::-;;26793:2;26782:9;26778:18;26770:26;;26842:9;26836:4;26832:20;26828:1;26817:9;26813:17;26806:47;26870:131;26996:4;26870:131;:::i;:::-;26862:139;;26760:248;;;:::o;27014:419::-;;27218:2;27207:9;27203:18;27195:26;;27267:9;27261:4;27257:20;27253:1;27242:9;27238:17;27231:47;27295:131;27421:4;27295:131;:::i;:::-;27287:139;;27185:248;;;:::o;27439:419::-;;27643:2;27632:9;27628:18;27620:26;;27692:9;27686:4;27682:20;27678:1;27667:9;27663:17;27656:47;27720:131;27846:4;27720:131;:::i;:::-;27712:139;;27610:248;;;:::o;27864:419::-;;28068:2;28057:9;28053:18;28045:26;;28117:9;28111:4;28107:20;28103:1;28092:9;28088:17;28081:47;28145:131;28271:4;28145:131;:::i;:::-;28137:139;;28035:248;;;:::o;28289:419::-;;28493:2;28482:9;28478:18;28470:26;;28542:9;28536:4;28532:20;28528:1;28517:9;28513:17;28506:47;28570:131;28696:4;28570:131;:::i;:::-;28562:139;;28460:248;;;:::o;28714:419::-;;28918:2;28907:9;28903:18;28895:26;;28967:9;28961:4;28957:20;28953:1;28942:9;28938:17;28931:47;28995:131;29121:4;28995:131;:::i;:::-;28987:139;;28885:248;;;:::o;29139:419::-;;29343:2;29332:9;29328:18;29320:26;;29392:9;29386:4;29382:20;29378:1;29367:9;29363:17;29356:47;29420:131;29546:4;29420:131;:::i;:::-;29412:139;;29310:248;;;:::o;29564:419::-;;29768:2;29757:9;29753:18;29745:26;;29817:9;29811:4;29807:20;29803:1;29792:9;29788:17;29781:47;29845:131;29971:4;29845:131;:::i;:::-;29837:139;;29735:248;;;:::o;29989:419::-;;30193:2;30182:9;30178:18;30170:26;;30242:9;30236:4;30232:20;30228:1;30217:9;30213:17;30206:47;30270:131;30396:4;30270:131;:::i;:::-;30262:139;;30160:248;;;:::o;30414:419::-;;30618:2;30607:9;30603:18;30595:26;;30667:9;30661:4;30657:20;30653:1;30642:9;30638:17;30631:47;30695:131;30821:4;30695:131;:::i;:::-;30687:139;;30585:248;;;:::o;30839:419::-;;31043:2;31032:9;31028:18;31020:26;;31092:9;31086:4;31082:20;31078:1;31067:9;31063:17;31056:47;31120:131;31246:4;31120:131;:::i;:::-;31112:139;;31010:248;;;:::o;31264:419::-;;31468:2;31457:9;31453:18;31445:26;;31517:9;31511:4;31507:20;31503:1;31492:9;31488:17;31481:47;31545:131;31671:4;31545:131;:::i;:::-;31537:139;;31435:248;;;:::o;31689:419::-;;31893:2;31882:9;31878:18;31870:26;;31942:9;31936:4;31932:20;31928:1;31917:9;31913:17;31906:47;31970:131;32096:4;31970:131;:::i;:::-;31962:139;;31860:248;;;:::o;32114:419::-;;32318:2;32307:9;32303:18;32295:26;;32367:9;32361:4;32357:20;32353:1;32342:9;32338:17;32331:47;32395:131;32521:4;32395:131;:::i;:::-;32387:139;;32285:248;;;:::o;32539:419::-;;32743:2;32732:9;32728:18;32720:26;;32792:9;32786:4;32782:20;32778:1;32767:9;32763:17;32756:47;32820:131;32946:4;32820:131;:::i;:::-;32812:139;;32710:248;;;:::o;32964:419::-;;33168:2;33157:9;33153:18;33145:26;;33217:9;33211:4;33207:20;33203:1;33192:9;33188:17;33181:47;33245:131;33371:4;33245:131;:::i;:::-;33237:139;;33135:248;;;:::o;33389:419::-;;33593:2;33582:9;33578:18;33570:26;;33642:9;33636:4;33632:20;33628:1;33617:9;33613:17;33606:47;33670:131;33796:4;33670:131;:::i;:::-;33662:139;;33560:248;;;:::o;33814:419::-;;34018:2;34007:9;34003:18;33995:26;;34067:9;34061:4;34057:20;34053:1;34042:9;34038:17;34031:47;34095:131;34221:4;34095:131;:::i;:::-;34087:139;;33985:248;;;:::o;34239:419::-;;34443:2;34432:9;34428:18;34420:26;;34492:9;34486:4;34482:20;34478:1;34467:9;34463:17;34456:47;34520:131;34646:4;34520:131;:::i;:::-;34512:139;;34410:248;;;:::o;34664:419::-;;34868:2;34857:9;34853:18;34845:26;;34917:9;34911:4;34907:20;34903:1;34892:9;34888:17;34881:47;34945:131;35071:4;34945:131;:::i;:::-;34937:139;;34835:248;;;:::o;35089:419::-;;35293:2;35282:9;35278:18;35270:26;;35342:9;35336:4;35332:20;35328:1;35317:9;35313:17;35306:47;35370:131;35496:4;35370:131;:::i;:::-;35362:139;;35260:248;;;:::o;35514:419::-;;35718:2;35707:9;35703:18;35695:26;;35767:9;35761:4;35757:20;35753:1;35742:9;35738:17;35731:47;35795:131;35921:4;35795:131;:::i;:::-;35787:139;;35685:248;;;:::o;35939:419::-;;36143:2;36132:9;36128:18;36120:26;;36192:9;36186:4;36182:20;36178:1;36167:9;36163:17;36156:47;36220:131;36346:4;36220:131;:::i;:::-;36212:139;;36110:248;;;:::o;36364:419::-;;36568:2;36557:9;36553:18;36545:26;;36617:9;36611:4;36607:20;36603:1;36592:9;36588:17;36581:47;36645:131;36771:4;36645:131;:::i;:::-;36637:139;;36535:248;;;:::o;36789:419::-;;36993:2;36982:9;36978:18;36970:26;;37042:9;37036:4;37032:20;37028:1;37017:9;37013:17;37006:47;37070:131;37196:4;37070:131;:::i;:::-;37062:139;;36960:248;;;:::o;37214:419::-;;37418:2;37407:9;37403:18;37395:26;;37467:9;37461:4;37457:20;37453:1;37442:9;37438:17;37431:47;37495:131;37621:4;37495:131;:::i;:::-;37487:139;;37385:248;;;:::o;37639:419::-;;37843:2;37832:9;37828:18;37820:26;;37892:9;37886:4;37882:20;37878:1;37867:9;37863:17;37856:47;37920:131;38046:4;37920:131;:::i;:::-;37912:139;;37810:248;;;:::o;38064:419::-;;38268:2;38257:9;38253:18;38245:26;;38317:9;38311:4;38307:20;38303:1;38292:9;38288:17;38281:47;38345:131;38471:4;38345:131;:::i;:::-;38337:139;;38235:248;;;:::o;38489:419::-;;38693:2;38682:9;38678:18;38670:26;;38742:9;38736:4;38732:20;38728:1;38717:9;38713:17;38706:47;38770:131;38896:4;38770:131;:::i;:::-;38762:139;;38660:248;;;:::o;38914:222::-;;39045:2;39034:9;39030:18;39022:26;;39058:71;39126:1;39115:9;39111:17;39102:6;39058:71;:::i;:::-;39012:124;;;;:::o;39142:332::-;;39301:2;39290:9;39286:18;39278:26;;39314:71;39382:1;39371:9;39367:17;39358:6;39314:71;:::i;:::-;39395:72;39463:2;39452:9;39448:18;39439:6;39395:72;:::i;:::-;39268:206;;;;;:::o;39480:283::-;;39546:2;39540:9;39530:19;;39588:4;39580:6;39576:17;39695:6;39683:10;39680:22;39659:18;39647:10;39644:34;39641:62;39638:2;;;39706:18;;:::i;:::-;39638:2;39746:10;39742:2;39735:22;39520:243;;;;:::o;39769:331::-;;39920:18;39912:6;39909:30;39906:2;;;39942:18;;:::i;:::-;39906:2;40027:4;40023:9;40016:4;40008:6;40004:17;40000:33;39992:41;;40088:4;40082;40078:15;40070:23;;39835:265;;;:::o;40106:332::-;;40258:18;40250:6;40247:30;40244:2;;;40280:18;;:::i;:::-;40244:2;40365:4;40361:9;40354:4;40346:6;40342:17;40338:33;40330:41;;40426:4;40420;40416:15;40408:23;;40173:265;;;:::o;40444:132::-;;40534:3;40526:11;;40564:4;40559:3;40555:14;40547:22;;40516:60;;;:::o;40582:114::-;;40683:5;40677:12;40667:22;;40656:40;;;:::o;40702:98::-;;40787:5;40781:12;40771:22;;40760:40;;;:::o;40806:99::-;;40892:5;40886:12;40876:22;;40865:40;;;:::o;40911:113::-;;41013:4;41008:3;41004:14;40996:22;;40986:38;;;:::o;41030:184::-;;41163:6;41158:3;41151:19;41203:4;41198:3;41194:14;41179:29;;41141:73;;;;:::o;41220:168::-;;41337:6;41332:3;41325:19;41377:4;41372:3;41368:14;41353:29;;41315:73;;;;:::o;41394:169::-;;41512:6;41507:3;41500:19;41552:4;41547:3;41543:14;41528:29;;41490:73;;;;:::o;41569:148::-;;41708:3;41693:18;;41683:34;;;;:::o;41723:305::-;;41782:20;41800:1;41782:20;:::i;:::-;41777:25;;41816:20;41834:1;41816:20;:::i;:::-;41811:25;;41970:1;41902:66;41898:74;41895:1;41892:81;41889:2;;;41976:18;;:::i;:::-;41889:2;42020:1;42017;42013:9;42006:16;;41767:261;;;;:::o;42034:185::-;;42091:20;42109:1;42091:20;:::i;:::-;42086:25;;42125:20;42143:1;42125:20;:::i;:::-;42120:25;;42164:1;42154:2;;42169:18;;:::i;:::-;42154:2;42211:1;42208;42204:9;42199:14;;42076:143;;;;:::o;42225:348::-;;42288:20;42306:1;42288:20;:::i;:::-;42283:25;;42322:20;42340:1;42322:20;:::i;:::-;42317:25;;42510:1;42442:66;42438:74;42435:1;42432:81;42427:1;42420:9;42413:17;42409:105;42406:2;;;42517:18;;:::i;:::-;42406:2;42565:1;42562;42558:9;42547:20;;42273:300;;;;:::o;42579:191::-;;42639:20;42657:1;42639:20;:::i;:::-;42634:25;;42673:20;42691:1;42673:20;:::i;:::-;42668:25;;42712:1;42709;42706:8;42703:2;;;42717:18;;:::i;:::-;42703:2;42762:1;42759;42755:9;42747:17;;42624:146;;;;:::o;42776:96::-;;42842:24;42860:5;42842:24;:::i;:::-;42831:35;;42821:51;;;:::o;42878:90::-;;42955:5;42948:13;42941:21;42930:32;;42920:48;;;:::o;42974:149::-;;43050:66;43043:5;43039:78;43028:89;;43018:105;;;:::o;43129:126::-;;43206:42;43199:5;43195:54;43184:65;;43174:81;;;:::o;43261:77::-;;43327:5;43316:16;;43306:32;;;:::o;43344:154::-;43428:6;43423:3;43418;43405:30;43490:1;43481:6;43476:3;43472:16;43465:27;43395:103;;;:::o;43504:307::-;43572:1;43582:113;43596:6;43593:1;43590:13;43582:113;;;43681:1;43676:3;43672:11;43666:18;43662:1;43657:3;43653:11;43646:39;43618:2;43615:1;43611:10;43606:15;;43582:113;;;43713:6;43710:1;43707:13;43704:2;;;43793:1;43784:6;43779:3;43775:16;43768:27;43704:2;43553:258;;;;:::o;43817:320::-;;43898:1;43892:4;43888:12;43878:22;;43945:1;43939:4;43935:12;43966:18;43956:2;;44022:4;44014:6;44010:17;44000:27;;43956:2;44084;44076:6;44073:14;44053:18;44050:38;44047:2;;;44103:18;;:::i;:::-;44047:2;43868:269;;;;:::o;44143:233::-;;44205:24;44223:5;44205:24;:::i;:::-;44196:33;;44251:66;44244:5;44241:77;44238:2;;;44321:18;;:::i;:::-;44238:2;44368:1;44361:5;44357:13;44350:20;;44186:190;;;:::o;44382:176::-;;44431:20;44449:1;44431:20;:::i;:::-;44426:25;;44465:20;44483:1;44465:20;:::i;:::-;44460:25;;44504:1;44494:2;;44509:18;;:::i;:::-;44494:2;44550:1;44547;44543:9;44538:14;;44416:142;;;;:::o;44564:180::-;44612:77;44609:1;44602:88;44709:4;44706:1;44699:15;44733:4;44730:1;44723:15;44750:180;44798:77;44795:1;44788:88;44895:4;44892:1;44885:15;44919:4;44916:1;44909:15;44936:180;44984:77;44981:1;44974:88;45081:4;45078:1;45071:15;45105:4;45102:1;45095:15;45122:180;45170:77;45167:1;45160:88;45267:4;45264:1;45257:15;45291:4;45288:1;45281:15;45308:102;;45400:2;45396:7;45391:2;45384:5;45380:14;45376:28;45366:38;;45356:54;;;:::o;45416:122::-;45489:24;45507:5;45489:24;:::i;:::-;45482:5;45479:35;45469:2;;45528:1;45525;45518:12;45469:2;45459:79;:::o;45544:116::-;45614:21;45629:5;45614:21;:::i;:::-;45607:5;45604:32;45594:2;;45650:1;45647;45640:12;45594:2;45584:76;:::o;45666:120::-;45738:23;45755:5;45738:23;:::i;:::-;45731:5;45728:34;45718:2;;45776:1;45773;45766:12;45718:2;45708:78;:::o;45792:122::-;45865:24;45883:5;45865:24;:::i;:::-;45858:5;45855:35;45845:2;;45904:1;45901;45894:12;45845:2;45835:79;:::o
Swarm Source
ipfs://27bba8f930a2d6bda96bfaa1af7a194a347708160c97b1d07cf30cdd1cd56a75
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.