ERC-721
NFT
Overview
Max Total Supply
3,999 KOTE
Holders
902
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 KOTELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KnightsOfTheEther
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "./ERC721Enumerable.sol"; import "./Ownable.sol"; import "./ECDSA.sol"; import "./EIP712.sol"; import "./Payment.sol"; contract KnightsOfTheEther is ERC721Enumerable, EIP712, Ownable, Payment { using Strings for uint256; string public baseURI; //signature string private constant SINGING_DOMAIN = "KOTE"; string private constant SIGNATURE_VERSION = "1"; //settings uint256 public maxSupply = 3999; bool public whitelistStatus = false; bool public publicStatus = false; uint256 private price = 0.1 ether; uint256 public maxMintPerTxPublic = 3; uint256 public maxMintPerTxWhitelist = 2; uint256 public maxMintPerWallet = 2; //mappings mapping(address => uint256) private mintCountMap; mapping(address => uint256) private allowedMintCountMap; //shares address[] private addressList = [ 0xF6F4fF252b28162De985f6B81199Cd33212A43a1, 0xEcc03efB7C0A7BD09A5cC7e954Ac42E8f949A0B5, 0xaBdc2514E0eb42a5B2Ab38D4204b277c7c101d2B ]; uint[] private shareList = [85, 10, 5]; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) EIP712(SINGING_DOMAIN, SIGNATURE_VERSION) Payment(addressList, shareList) { setURI(_initBaseURI); } function mintWhitelist(uint256 _tokenAmount, string memory name, bytes memory signature) public payable { uint256 s = totalSupply(); require(check(name, signature) == msg.sender, "Signature Invalid"); //server side signature require(whitelistStatus,"Whitelist sale is not active"); require(_tokenAmount > 0, "Mint more than 0" ); require(_tokenAmount <= maxMintPerTxWhitelist, "Mint less"); require( s + _tokenAmount <= maxSupply, "Mint less"); require(msg.value >= price * _tokenAmount, "ETH input is wrong"); require(allowedMintCount(msg.sender) >= 1,"You minted too many"); for (uint256 i = 0; i < _tokenAmount; ++i) { _safeMint(msg.sender, s + i, ""); } delete s; updateMintCount(msg.sender, _tokenAmount); } function mintPublic(uint256 _tokenAmount) public payable { uint256 s = totalSupply(); require(publicStatus,"Public sale is not active"); require(_tokenAmount > 0, "Mint more than 0" ); require(_tokenAmount <= maxMintPerTxPublic, "Mint less"); require( s + _tokenAmount <= maxSupply, "Mint less"); require(msg.value >= price * _tokenAmount, "ETH input is wrong"); for (uint256 i = 0; i < _tokenAmount; ++i) { _safeMint(msg.sender, s + i, ""); } delete s; } // admin minting function gift(uint[] calldata gifts, address[] calldata recipient) external onlyOwner{ require(gifts.length == recipient.length); uint g = 0; uint256 s = totalSupply(); for(uint i = 0; i < gifts.length; ++i){ g += gifts[i]; } require( s + g <= maxSupply, "Too many" ); delete g; for(uint i = 0; i < recipient.length; ++i){ for(uint j = 0; j < gifts[i]; ++j){ _safeMint( recipient[i], s++, "" ); } } delete s; } function check(string memory name, bytes memory signature) public view returns (address) { return _verify( name, signature); } function _verify(string memory name, bytes memory signature) internal view returns (address) { bytes32 digest = _hash(name); return ECDSA.recover(digest, signature); } function _hash(string memory name) internal view returns (bytes32) { return _hashTypedDataV4(keccak256(abi.encode( keccak256("Web3Struct(string name)"), keccak256(bytes(name)) ))); } function allowedMintCount(address minter) public view returns (uint256) { return maxMintPerWallet - mintCountMap[minter]; } //read metadata function _baseURI() internal view virtual returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(tokenId <= maxSupply); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : ""; } function updateMintCount(address minter, uint256 count) private { mintCountMap[minter] += count; } //price switch function setPrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } //max switch function setMaxPerTxWhitelist(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerTxWhitelist = _newMaxMintAmount; } //max switch function setMaxPerTxPublic(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerTxPublic = _newMaxMintAmount; } //max switch function setMaxPerWallet(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerWallet = _newMaxMintAmount; } //onoff switch function setWL(bool _wlstatus) public onlyOwner { whitelistStatus = _wlstatus; } function setP(bool _pstatus) public onlyOwner { publicStatus = _pstatus; } //write metadata function setURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
// SPDX-License-Identifier: MIT 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 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 // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "./Strings.sol"; /** * @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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 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 Message, created from `s`. 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(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @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.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
// SPDX-License-Identifier: MIT 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: GPL-3.0 pragma solidity ^0.8.10; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./ERC165.sol"; abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; string private _name; string private _symbol; address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count = 0; uint length = _owners.length; for( uint i = 0; i < length; ++i ){ if( owner == _owners[i] ){ ++count; } } delete length; return count; } 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; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } 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); } function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } 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); } function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } 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); } 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"); } function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } 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)); } function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } 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" ); } 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); _owners.push(to); emit Transfer(address(0), to, tokenId); } function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } 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); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } 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; } } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.10; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) { require(index < ERC721.balanceOf(owner), "ERC721Enum: owner ioob"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ){ if( count == index ) return i; else ++count; } } require(false, "ERC721Enum: owner ioob"); } function tokensOfOwner(address owner) public view returns (uint256[] memory) { require(0 < ERC721.balanceOf(owner), "ERC721Enum: owner ioob"); uint256 tokenCount = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(owner, i); } return tokenIds; } function totalSupply() public view virtual override returns (uint256) { return _owners.length; } function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enum: global ioob"); return index; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract Guard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier noRentry() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT 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 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 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 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 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 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Address.sol"; import "./Context.sol"; import "./SafeMath.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. */ contract Payment is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + _totalReleased; uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account]; require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] = _released[account] + payment; _totalReleased = _totalReleased + payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT 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":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"minter","type":"address"}],"name":"allowedMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"check","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"gifts","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTxWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerTxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerTxWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pstatus","type":"bool"}],"name":"setP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_wlstatus","type":"bool"}],"name":"setWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokenId","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
610f9f600c55600d805461ffff1916905567016345785d8a0000600e556003600f819055600260108190556011556101a060405273f6f4ff252b28162de985f6b81199cd33212a43a161014090815273ecc03efb7c0a7bd09a5cc7e954ac42e8f949a0b56101605273abdc2514e0eb42a5b2ab38d4204b277c7c101d2b610180526200008f9160149190620006a6565b506040805160608101825260558152600a6020820152600591810191909152620000be90601590600362000710565b50348015620000cc57600080fd5b506040516200479938038062004799833981016040819052620000ef91620008b4565b60148054806020026020016040519081016040528092919081815260200182805480156200014757602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000128575b505050505060158054806020026020016040519081016040528092919081815260200182805480156200019a57602002820191906000526020600020905b81548152602001906001019080831162000185575b5050505050604051806040016040528060048152602001634b4f544560e01b815250604051806040016040528060018152602001603160f81b81525086868160009080519060200190620001f092919062000753565b5080516200020690600190602084019062000753565b5050825160209384012082519284019290922060e08390526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818901819052818301979097526060810194909452608080850193909352308483018190528151808603909301835260c0948501909152815191909601209052929092526101205250620002a333620003f1565b8051825114620003155760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003685760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200030c565b60005b8251811015620003d457620003bf8382815181106200038e576200038e62000945565b6020026020010151838381518110620003ab57620003ab62000945565b60200260200101516200044360201b60201c565b80620003cb8162000971565b9150506200036b565b505050620003e8816200063160201b60201c565b505050620009e7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004b05760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200030c565b60008111620005025760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200030c565b6001600160a01b038216600090815260086020526040902054156200057e5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200030c565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b0384169081179091556000908152600860205260409020819055600654620005e89082906200098f565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6005546001600160a01b031633146200068d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200030c565b8051620006a290600b90602084019062000753565b5050565b828054828255906000526020600020908101928215620006fe579160200282015b82811115620006fe57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620006c7565b506200070c929150620007d0565b5090565b828054828255906000526020600020908101928215620006fe579160200282015b82811115620006fe578251829060ff1690559160200191906001019062000731565b8280546200076190620009aa565b90600052602060002090601f016020900481019282620007855760008555620006fe565b82601f10620007a057805160ff1916838001178555620006fe565b82800160010185558215620006fe579182015b82811115620006fe578251825591602001919060010190620007b3565b5b808211156200070c5760008155600101620007d1565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200080f57600080fd5b81516001600160401b03808211156200082c576200082c620007e7565b604051601f8301601f19908116603f01168101908282118183101715620008575762000857620007e7565b816040528381526020925086838588010111156200087457600080fd5b600091505b8382101562000898578582018301518183018401529082019062000879565b83821115620008aa5760008385830101525b9695505050505050565b600080600060608486031215620008ca57600080fd5b83516001600160401b0380821115620008e257600080fd5b620008f087838801620007fd565b945060208601519150808211156200090757600080fd5b6200091587838801620007fd565b935060408601519150808211156200092c57600080fd5b506200093b86828701620007fd565b9150509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200098857620009886200095b565b5060010190565b60008219821115620009a557620009a56200095b565b500190565b600181811c90821680620009bf57607f821691505b60208210811415620009e157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516101005161012051613d6262000a3760003960006132ab015260006132fa015260006132d50152600061322e01526000613258015260006132820152613d626000f3fe6080604052600436106103015760003560e01c80638b83209b1161018f578063bb660c0a116100e1578063e33b7de31161008a578063f2fde38b11610064578063f2fde38b146108f6578063f452472e14610916578063f91798b11461093657600080fd5b8063e33b7de314610878578063e985e9c51461088d578063efd0cbf9146108e357600080fd5b8063ce7c2ac2116100bb578063ce7c2ac2146107ff578063d5abeb0114610842578063e268e4d31461085857600080fd5b8063bb660c0a1461079f578063bd986a2c146107bf578063c87b56dd146107df57600080fd5b80639852595c11610143578063ac9384b91161011d578063ac9384b914610753578063b228d92514610769578063b88d4fde1461077f57600080fd5b80639852595c146106d65780639ddf7ad314610719578063a22cb4651461073357600080fd5b806391b7f5ed1161017457806391b7f5ed1461068157806395d89b41146106a157806396ea3a47146106b657600080fd5b80638b83209b146106365780638da5cb5b1461065657600080fd5b806342842e0e1161025357806370a08231116101fc5780638462151c116101d65780638462151c146105d657806384a303d61461060357806388dfe18b1461062357600080fd5b806370a0823114610581578063715018a6146105a15780637934f505146105b657600080fd5b80635cd5a8b41161022d5780635cd5a8b4146105365780636352211e1461054c5780636c0360eb1461056c57600080fd5b806342842e0e146104d657806348808c10146104f65780634f6ccce71461051657600080fd5b806318160ddd116102b55780632f745c591161028f5780632f745c59146104995780633a98ef39146104b95780633ccfd60b146104ce57600080fd5b806318160ddd1461043a578063191655871461045957806323b872dd1461047957600080fd5b806306fdde03116102e657806306fdde03146103b3578063081812fc146103d5578063095ea7b31461041a57600080fd5b806301ffc9a71461035c57806302fe53051461039157600080fd5b36610357577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561036857600080fd5b5061037c610377366004613570565b610955565b60405190151581526020015b60405180910390f35b34801561039d57600080fd5b506103b16103ac366004613667565b6109b1565b005b3480156103bf57600080fd5b506103c8610a34565b6040516103889190613712565b3480156103e157600080fd5b506103f56103f0366004613725565b610ac6565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610388565b34801561042657600080fd5b506103b1610435366004613760565b610b6c565b34801561044657600080fd5b506002545b604051908152602001610388565b34801561046557600080fd5b506103b161047436600461378c565b610cc5565b34801561048557600080fd5b506103b16104943660046137a9565b610f00565b3480156104a557600080fd5b5061044b6104b4366004613760565b610f87565b3480156104c557600080fd5b5060065461044b565b6103b16110a3565b3480156104e257600080fd5b506103b16104f13660046137a9565b611162565b34801561050257600080fd5b506103f56105113660046137ea565b61117d565b34801561052257600080fd5b5061044b610531366004613725565b611190565b34801561054257600080fd5b5061044b60105481565b34801561055857600080fd5b506103f5610567366004613725565b6111ed565b34801561057857600080fd5b506103c861129a565b34801561058d57600080fd5b5061044b61059c36600461378c565b611328565b3480156105ad57600080fd5b506103b1611427565b3480156105c257600080fd5b506103b16105d1366004613725565b61149a565b3480156105e257600080fd5b506105f66105f136600461378c565b611506565b604051610388919061384e565b34801561060f57600080fd5b506103b161061e3660046138a7565b611600565b6103b16106313660046138c2565b61169e565b34801561064257600080fd5b506103f5610651366004613725565b611971565b34801561066257600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166103f5565b34801561068d57600080fd5b506103b161069c366004613725565b6119ae565b3480156106ad57600080fd5b506103c8611a1a565b3480156106c257600080fd5b506103b16106d1366004613974565b611a29565b3480156106e257600080fd5b5061044b6106f136600461378c565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561072557600080fd5b50600d5461037c9060ff1681565b34801561073f57600080fd5b506103b161074e3660046139e0565b611bee565b34801561075f57600080fd5b5061044b600f5481565b34801561077557600080fd5b5061044b60115481565b34801561078b57600080fd5b506103b161079a366004613a15565b611ceb565b3480156107ab57600080fd5b5061044b6107ba36600461378c565b611d73565b3480156107cb57600080fd5b506103b16107da3660046138a7565b611da6565b3480156107eb57600080fd5b506103c86107fa366004613725565b611e3e565b34801561080b57600080fd5b5061044b61081a36600461378c565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b34801561084e57600080fd5b5061044b600c5481565b34801561086457600080fd5b506103b1610873366004613725565b611eaa565b34801561088457600080fd5b5060075461044b565b34801561089957600080fd5b5061037c6108a8366004613a81565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b6103b16108f1366004613725565b611f16565b34801561090257600080fd5b506103b161091136600461378c565b6120fe565b34801561092257600080fd5b506103b1610931366004613725565b6121f7565b34801561094257600080fd5b50600d5461037c90610100900460ff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806109ab57506109ab82612263565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610a1d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051610a3090600b9060208401906134b2565b5050565b606060008054610a4390613aba565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6f90613aba565b8015610abc5780601f10610a9157610100808354040283529160200191610abc565b820191906000526020600020905b815481529060010190602001808311610a9f57829003601f168201915b5050505050905090565b6000610ad182612346565b610b435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a14565b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b77826111ed565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c1b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a14565b3373ffffffffffffffffffffffffffffffffffffffff82161480610c445750610c4481336108a8565b610cb65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a14565b610cc083836123aa565b505050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260086020526040902054610d5d5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610a14565b600060075447610d6d9190613b3d565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600960209081526040808320546006546008909352908320549394509192610db19085613b55565b610dbb9190613bc1565b610dc59190613bd5565b905080610e3a5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610a14565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020526040902054610e6b908290613b3d565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260096020526040902055600754610e9f908290613b3d565b600755610eac838261244a565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610f0a3382612570565b610f7c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a14565b610cc08383836126ac565b6000610f9283611328565b8210610fe05760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610a14565b6000805b60025481101561105a576002818154811061100157611001613bec565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff8681169116141561104a578382141561103e5791506109ab9050565b61104782613c1b565b91505b61105381613c1b565b9050610fe4565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610a14565b60055473ffffffffffffffffffffffffffffffffffffffff16331461110a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b604051600090339047908381818185875af1925050503d806000811461114c576040519150601f19603f3d011682016040523d82523d6000602084013e611151565b606091505b505090508061115f57600080fd5b50565b610cc083838360405180602001604052806000815250611ceb565b6000611189838361287b565b9392505050565b600061119b60025490565b82106111e95760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610a14565b5090565b6000806002838154811061120357611203613bec565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff169050806109ab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a14565b600b80546112a790613aba565b80601f01602080910402602001604051908101604052809291908181526020018280546112d390613aba565b80156113205780601f106112f557610100808354040283529160200191611320565b820191906000526020600020905b81548152906001019060200180831161130357829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff82166113b35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a14565b600254600090815b8181101561141e57600281815481106113d6576113d6613bec565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff8681169116141561140e5761140b83613c1b565b92505b61141781613c1b565b90506113bb565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461148e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b6114986000612893565b565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b601055565b606061151182611328565b6000106115605760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610a14565b600061156b83611328565b905060008167ffffffffffffffff8111156115885761158861358d565b6040519080825280602002602001820160405280156115b1578160200160208202803683370190505b50905060005b828110156115f8576115c98582610f87565b8282815181106115db576115db613bec565b6020908102919091010152806115f081613c1b565b9150506115b7565b509392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146116675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b600d8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60006116a960025490565b9050336116b6848461117d565b73ffffffffffffffffffffffffffffffffffffffff16146117195760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610a14565b600d5460ff1661176b5760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742073616c65206973206e6f7420616374697665000000006044820152606401610a14565b600084116117bb5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610a14565b60105484111561180d5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a14565b600c5461181a8583613b3d565b11156118685760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a14565b83600e546118769190613b55565b3410156118c55760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610a14565b60016118d033611d73565b101561191e5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610a14565b60005b8481101561195c5761194c336119378385613b3d565b6040518060200160405280600081525061290a565b61195581613c1b565b9050611921565b506000905061196b3385612993565b50505050565b6000600a828154811061198657611986613bec565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b600e55565b606060018054610a4390613aba565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a905760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b828114611a9c57600080fd5b600080611aa860025490565b905060005b85811015611aeb57868682818110611ac757611ac7613bec565b9050602002013583611ad99190613b3d565b9250611ae481613c1b565b9050611aad565b50600c54611af98383613b3d565b1115611b475760405162461bcd60e51b815260206004820152600860248201527f546f6f206d616e790000000000000000000000000000000000000000000000006044820152606401610a14565b6000915060005b83811015611be55760005b878783818110611b6b57611b6b613bec565b90506020020135811015611bd457611bc4868684818110611b8e57611b8e613bec565b9050602002016020810190611ba3919061378c565b84611bad81613c1b565b95506040518060200160405280600081525061290a565b611bcd81613c1b565b9050611b59565b50611bde81613c1b565b9050611b4e565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8216331415611c545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a14565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611cf53383612570565b611d675760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a14565b61196b848484846129d1565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601260205260408120546011546109ab9190613bd5565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e0d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6060600c54821115611e4f57600080fd5b6000611e59612a5a565b90506000815111611e795760405180602001604052806000815250611189565b80611e8384612a69565b604051602001611e94929190613c54565b6040516020818303038152906040529392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b601155565b6000611f2160025490565b600d54909150610100900460ff16611f7b5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610a14565b60008211611fcb5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610a14565b600f5482111561201d5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a14565b600c5461202a8383613b3d565b11156120785760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a14565b81600e546120869190613b55565b3410156120d55760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610a14565b60005b82811015610cc0576120ee336119378385613b3d565b6120f781613c1b565b90506120d8565b60055473ffffffffffffffffffffffffffffffffffffffff1633146121655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b73ffffffffffffffffffffffffffffffffffffffff81166121ee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a14565b61115f81612893565b60055473ffffffffffffffffffffffffffffffffffffffff16331461225e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b600f55565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806122f657507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109ab57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146109ab565b600254600090821080156109ab5750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061238057612380613bec565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190612404826111ed565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8047101561249a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a14565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d80600081146124f4576040519150601f19603f3d011682016040523d82523d6000602084013e6124f9565b606091505b5050905080610cc05760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a14565b600061257b82612346565b6125ed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a14565b60006125f8836111ed565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061266757508373ffffffffffffffffffffffffffffffffffffffff1661264f84610ac6565b73ffffffffffffffffffffffffffffffffffffffff16145b806126a4575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166126cc826111ed565b73ffffffffffffffffffffffffffffffffffffffff16146127555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a14565b73ffffffffffffffffffffffffffffffffffffffff82166127dd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a14565b6127e86000826123aa565b81600282815481106127fc576127fc613bec565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b60008061288784612b9b565b90506126a48184612bfe565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6129148383612c1a565b6129216000848484612d74565b610cc05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a14565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260126020526040812080548392906129c8908490613b3d565b90915550505050565b6129dc8484846126ac565b6129e884848484612d74565b61196b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a14565b6060600b8054610a4390613aba565b606081612aa957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612ad35780612abd81613c1b565b9150612acc9050600a83613bc1565b9150612aad565b60008167ffffffffffffffff811115612aee57612aee61358d565b6040519080825280601f01601f191660200182016040528015612b18576020820181803683370190505b5090505b84156126a457612b2d600183613bd5565b9150612b3a600a86613c83565b612b45906030613b3d565b60f81b818381518110612b5a57612b5a613bec565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612b94600a86613bc1565b9450612b1c565b60006109ab7f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c8380519060200120604051602001612be3929190918252602082015260400190565b60405160208183030381529060405280519060200120612f4a565b6000806000612c0d8585612fb3565b915091506115f881613023565b73ffffffffffffffffffffffffffffffffffffffff8216612c7d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a14565b612c8681612346565b15612cd35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a14565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612f3f576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612deb903390899088908890600401613c97565b6020604051808303816000875af1925050508015612e44575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612e4191810190613ce0565b60015b612ef4573d808015612e72576040519150601f19603f3d011682016040523d82523d6000602084013e612e77565b606091505b508051612eec5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a14565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506126a4565b506001949350505050565b60006109ab612f57613214565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080825160411415612fea5760208301516040840151606085015160001a612fde87828585613348565b9450945050505061301c565b8251604014156130145760208301516040840151613009868383613460565b93509350505061301c565b506000905060025b9250929050565b600081600481111561303757613037613cfd565b14156130405750565b600181600481111561305457613054613cfd565b14156130a25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a14565b60028160048111156130b6576130b6613cfd565b14156131045760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a14565b600381600481111561311857613118613cfd565b141561318c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a14565b60048160048111156131a0576131a0613cfd565b141561115f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a14565b60003073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614801561327a57507f000000000000000000000000000000000000000000000000000000000000000046145b156132a457507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561337f5750600090506003613457565b8460ff16601b1415801561339757508460ff16601c14155b156133a85750600090506004613457565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156133fc573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661345057600060019250925050613457565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83168161349660ff86901c601b613b3d565b90506134a487828885613348565b935093505050935093915050565b8280546134be90613aba565b90600052602060002090601f0160209004810192826134e05760008555613526565b82601f106134f957805160ff1916838001178555613526565b82800160010185558215613526579182015b8281111561352657825182559160200191906001019061350b565b506111e99291505b808211156111e9576000815560010161352e565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461115f57600080fd5b60006020828403121561358257600080fd5b813561118981613542565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f8301126135cd57600080fd5b813567ffffffffffffffff808211156135e8576135e861358d565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561362e5761362e61358d565b8160405283815286602085880101111561364757600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006020828403121561367957600080fd5b813567ffffffffffffffff81111561369057600080fd5b6126a4848285016135bc565b60005b838110156136b757818101518382015260200161369f565b8381111561196b5750506000910152565b600081518084526136e081602086016020860161369c565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061118960208301846136c8565b60006020828403121561373757600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461115f57600080fd5b6000806040838503121561377357600080fd5b823561377e8161373e565b946020939093013593505050565b60006020828403121561379e57600080fd5b81356111898161373e565b6000806000606084860312156137be57600080fd5b83356137c98161373e565b925060208401356137d98161373e565b929592945050506040919091013590565b600080604083850312156137fd57600080fd5b823567ffffffffffffffff8082111561381557600080fd5b613821868387016135bc565b9350602085013591508082111561383757600080fd5b50613844858286016135bc565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156138865783518352928401929184019160010161386a565b50909695505050505050565b803580151581146138a257600080fd5b919050565b6000602082840312156138b957600080fd5b61118982613892565b6000806000606084860312156138d757600080fd5b83359250602084013567ffffffffffffffff808211156138f657600080fd5b613902878388016135bc565b9350604086013591508082111561391857600080fd5b50613925868287016135bc565b9150509250925092565b60008083601f84011261394157600080fd5b50813567ffffffffffffffff81111561395957600080fd5b6020830191508360208260051b850101111561301c57600080fd5b6000806000806040858703121561398a57600080fd5b843567ffffffffffffffff808211156139a257600080fd5b6139ae8883890161392f565b909650945060208701359150808211156139c757600080fd5b506139d48782880161392f565b95989497509550505050565b600080604083850312156139f357600080fd5b82356139fe8161373e565b9150613a0c60208401613892565b90509250929050565b60008060008060808587031215613a2b57600080fd5b8435613a368161373e565b93506020850135613a468161373e565b925060408501359150606085013567ffffffffffffffff811115613a6957600080fd5b613a75878288016135bc565b91505092959194509250565b60008060408385031215613a9457600080fd5b8235613a9f8161373e565b91506020830135613aaf8161373e565b809150509250929050565b600181811c90821680613ace57607f821691505b60208210811415613b08577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613b5057613b50613b0e565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b8d57613b8d613b0e565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613bd057613bd0613b92565b500490565b600082821015613be757613be7613b0e565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c4d57613c4d613b0e565b5060010190565b60008351613c6681846020880161369c565b835190830190613c7a81836020880161369c565b01949350505050565b600082613c9257613c92613b92565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613cd660808301846136c8565b9695505050505050565b600060208284031215613cf257600080fd5b815161118981613542565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220ce2af7412a403e3e76d572a968eb2c5a1a1cd429d7f494fabbc52adc42903fcc64736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000114b6e69676874734f66546865457468657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044b4f544500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f6e696674796c6162732e6d7970696e6174612e636c6f75642f697066732f516d56586a474770644e424e37446434586f7a6f7279366164556d477576386679527a794a3443735870785a5a482f0000000000000000000000
Deployed Bytecode
0x6080604052600436106103015760003560e01c80638b83209b1161018f578063bb660c0a116100e1578063e33b7de31161008a578063f2fde38b11610064578063f2fde38b146108f6578063f452472e14610916578063f91798b11461093657600080fd5b8063e33b7de314610878578063e985e9c51461088d578063efd0cbf9146108e357600080fd5b8063ce7c2ac2116100bb578063ce7c2ac2146107ff578063d5abeb0114610842578063e268e4d31461085857600080fd5b8063bb660c0a1461079f578063bd986a2c146107bf578063c87b56dd146107df57600080fd5b80639852595c11610143578063ac9384b91161011d578063ac9384b914610753578063b228d92514610769578063b88d4fde1461077f57600080fd5b80639852595c146106d65780639ddf7ad314610719578063a22cb4651461073357600080fd5b806391b7f5ed1161017457806391b7f5ed1461068157806395d89b41146106a157806396ea3a47146106b657600080fd5b80638b83209b146106365780638da5cb5b1461065657600080fd5b806342842e0e1161025357806370a08231116101fc5780638462151c116101d65780638462151c146105d657806384a303d61461060357806388dfe18b1461062357600080fd5b806370a0823114610581578063715018a6146105a15780637934f505146105b657600080fd5b80635cd5a8b41161022d5780635cd5a8b4146105365780636352211e1461054c5780636c0360eb1461056c57600080fd5b806342842e0e146104d657806348808c10146104f65780634f6ccce71461051657600080fd5b806318160ddd116102b55780632f745c591161028f5780632f745c59146104995780633a98ef39146104b95780633ccfd60b146104ce57600080fd5b806318160ddd1461043a578063191655871461045957806323b872dd1461047957600080fd5b806306fdde03116102e657806306fdde03146103b3578063081812fc146103d5578063095ea7b31461041a57600080fd5b806301ffc9a71461035c57806302fe53051461039157600080fd5b36610357577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561036857600080fd5b5061037c610377366004613570565b610955565b60405190151581526020015b60405180910390f35b34801561039d57600080fd5b506103b16103ac366004613667565b6109b1565b005b3480156103bf57600080fd5b506103c8610a34565b6040516103889190613712565b3480156103e157600080fd5b506103f56103f0366004613725565b610ac6565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610388565b34801561042657600080fd5b506103b1610435366004613760565b610b6c565b34801561044657600080fd5b506002545b604051908152602001610388565b34801561046557600080fd5b506103b161047436600461378c565b610cc5565b34801561048557600080fd5b506103b16104943660046137a9565b610f00565b3480156104a557600080fd5b5061044b6104b4366004613760565b610f87565b3480156104c557600080fd5b5060065461044b565b6103b16110a3565b3480156104e257600080fd5b506103b16104f13660046137a9565b611162565b34801561050257600080fd5b506103f56105113660046137ea565b61117d565b34801561052257600080fd5b5061044b610531366004613725565b611190565b34801561054257600080fd5b5061044b60105481565b34801561055857600080fd5b506103f5610567366004613725565b6111ed565b34801561057857600080fd5b506103c861129a565b34801561058d57600080fd5b5061044b61059c36600461378c565b611328565b3480156105ad57600080fd5b506103b1611427565b3480156105c257600080fd5b506103b16105d1366004613725565b61149a565b3480156105e257600080fd5b506105f66105f136600461378c565b611506565b604051610388919061384e565b34801561060f57600080fd5b506103b161061e3660046138a7565b611600565b6103b16106313660046138c2565b61169e565b34801561064257600080fd5b506103f5610651366004613725565b611971565b34801561066257600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166103f5565b34801561068d57600080fd5b506103b161069c366004613725565b6119ae565b3480156106ad57600080fd5b506103c8611a1a565b3480156106c257600080fd5b506103b16106d1366004613974565b611a29565b3480156106e257600080fd5b5061044b6106f136600461378c565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561072557600080fd5b50600d5461037c9060ff1681565b34801561073f57600080fd5b506103b161074e3660046139e0565b611bee565b34801561075f57600080fd5b5061044b600f5481565b34801561077557600080fd5b5061044b60115481565b34801561078b57600080fd5b506103b161079a366004613a15565b611ceb565b3480156107ab57600080fd5b5061044b6107ba36600461378c565b611d73565b3480156107cb57600080fd5b506103b16107da3660046138a7565b611da6565b3480156107eb57600080fd5b506103c86107fa366004613725565b611e3e565b34801561080b57600080fd5b5061044b61081a36600461378c565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b34801561084e57600080fd5b5061044b600c5481565b34801561086457600080fd5b506103b1610873366004613725565b611eaa565b34801561088457600080fd5b5060075461044b565b34801561089957600080fd5b5061037c6108a8366004613a81565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b6103b16108f1366004613725565b611f16565b34801561090257600080fd5b506103b161091136600461378c565b6120fe565b34801561092257600080fd5b506103b1610931366004613725565b6121f7565b34801561094257600080fd5b50600d5461037c90610100900460ff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806109ab57506109ab82612263565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610a1d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051610a3090600b9060208401906134b2565b5050565b606060008054610a4390613aba565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6f90613aba565b8015610abc5780601f10610a9157610100808354040283529160200191610abc565b820191906000526020600020905b815481529060010190602001808311610a9f57829003601f168201915b5050505050905090565b6000610ad182612346565b610b435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a14565b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b77826111ed565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c1b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a14565b3373ffffffffffffffffffffffffffffffffffffffff82161480610c445750610c4481336108a8565b610cb65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a14565b610cc083836123aa565b505050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260086020526040902054610d5d5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610a14565b600060075447610d6d9190613b3d565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600960209081526040808320546006546008909352908320549394509192610db19085613b55565b610dbb9190613bc1565b610dc59190613bd5565b905080610e3a5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610a14565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020526040902054610e6b908290613b3d565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260096020526040902055600754610e9f908290613b3d565b600755610eac838261244a565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610f0a3382612570565b610f7c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a14565b610cc08383836126ac565b6000610f9283611328565b8210610fe05760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610a14565b6000805b60025481101561105a576002818154811061100157611001613bec565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff8681169116141561104a578382141561103e5791506109ab9050565b61104782613c1b565b91505b61105381613c1b565b9050610fe4565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610a14565b60055473ffffffffffffffffffffffffffffffffffffffff16331461110a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b604051600090339047908381818185875af1925050503d806000811461114c576040519150601f19603f3d011682016040523d82523d6000602084013e611151565b606091505b505090508061115f57600080fd5b50565b610cc083838360405180602001604052806000815250611ceb565b6000611189838361287b565b9392505050565b600061119b60025490565b82106111e95760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610a14565b5090565b6000806002838154811061120357611203613bec565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff169050806109ab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a14565b600b80546112a790613aba565b80601f01602080910402602001604051908101604052809291908181526020018280546112d390613aba565b80156113205780601f106112f557610100808354040283529160200191611320565b820191906000526020600020905b81548152906001019060200180831161130357829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff82166113b35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a14565b600254600090815b8181101561141e57600281815481106113d6576113d6613bec565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff8681169116141561140e5761140b83613c1b565b92505b61141781613c1b565b90506113bb565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461148e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b6114986000612893565b565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b601055565b606061151182611328565b6000106115605760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610a14565b600061156b83611328565b905060008167ffffffffffffffff8111156115885761158861358d565b6040519080825280602002602001820160405280156115b1578160200160208202803683370190505b50905060005b828110156115f8576115c98582610f87565b8282815181106115db576115db613bec565b6020908102919091010152806115f081613c1b565b9150506115b7565b509392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146116675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b600d8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60006116a960025490565b9050336116b6848461117d565b73ffffffffffffffffffffffffffffffffffffffff16146117195760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610a14565b600d5460ff1661176b5760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742073616c65206973206e6f7420616374697665000000006044820152606401610a14565b600084116117bb5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610a14565b60105484111561180d5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a14565b600c5461181a8583613b3d565b11156118685760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a14565b83600e546118769190613b55565b3410156118c55760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610a14565b60016118d033611d73565b101561191e5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610a14565b60005b8481101561195c5761194c336119378385613b3d565b6040518060200160405280600081525061290a565b61195581613c1b565b9050611921565b506000905061196b3385612993565b50505050565b6000600a828154811061198657611986613bec565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b600e55565b606060018054610a4390613aba565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a905760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b828114611a9c57600080fd5b600080611aa860025490565b905060005b85811015611aeb57868682818110611ac757611ac7613bec565b9050602002013583611ad99190613b3d565b9250611ae481613c1b565b9050611aad565b50600c54611af98383613b3d565b1115611b475760405162461bcd60e51b815260206004820152600860248201527f546f6f206d616e790000000000000000000000000000000000000000000000006044820152606401610a14565b6000915060005b83811015611be55760005b878783818110611b6b57611b6b613bec565b90506020020135811015611bd457611bc4868684818110611b8e57611b8e613bec565b9050602002016020810190611ba3919061378c565b84611bad81613c1b565b95506040518060200160405280600081525061290a565b611bcd81613c1b565b9050611b59565b50611bde81613c1b565b9050611b4e565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8216331415611c545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a14565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611cf53383612570565b611d675760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a14565b61196b848484846129d1565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601260205260408120546011546109ab9190613bd5565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e0d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6060600c54821115611e4f57600080fd5b6000611e59612a5a565b90506000815111611e795760405180602001604052806000815250611189565b80611e8384612a69565b604051602001611e94929190613c54565b6040516020818303038152906040529392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b601155565b6000611f2160025490565b600d54909150610100900460ff16611f7b5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610a14565b60008211611fcb5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610a14565b600f5482111561201d5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a14565b600c5461202a8383613b3d565b11156120785760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a14565b81600e546120869190613b55565b3410156120d55760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610a14565b60005b82811015610cc0576120ee336119378385613b3d565b6120f781613c1b565b90506120d8565b60055473ffffffffffffffffffffffffffffffffffffffff1633146121655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b73ffffffffffffffffffffffffffffffffffffffff81166121ee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a14565b61115f81612893565b60055473ffffffffffffffffffffffffffffffffffffffff16331461225e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a14565b600f55565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806122f657507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109ab57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146109ab565b600254600090821080156109ab5750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061238057612380613bec565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190612404826111ed565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8047101561249a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a14565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d80600081146124f4576040519150601f19603f3d011682016040523d82523d6000602084013e6124f9565b606091505b5050905080610cc05760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a14565b600061257b82612346565b6125ed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a14565b60006125f8836111ed565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061266757508373ffffffffffffffffffffffffffffffffffffffff1661264f84610ac6565b73ffffffffffffffffffffffffffffffffffffffff16145b806126a4575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166126cc826111ed565b73ffffffffffffffffffffffffffffffffffffffff16146127555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a14565b73ffffffffffffffffffffffffffffffffffffffff82166127dd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a14565b6127e86000826123aa565b81600282815481106127fc576127fc613bec565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b60008061288784612b9b565b90506126a48184612bfe565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6129148383612c1a565b6129216000848484612d74565b610cc05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a14565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260126020526040812080548392906129c8908490613b3d565b90915550505050565b6129dc8484846126ac565b6129e884848484612d74565b61196b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a14565b6060600b8054610a4390613aba565b606081612aa957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612ad35780612abd81613c1b565b9150612acc9050600a83613bc1565b9150612aad565b60008167ffffffffffffffff811115612aee57612aee61358d565b6040519080825280601f01601f191660200182016040528015612b18576020820181803683370190505b5090505b84156126a457612b2d600183613bd5565b9150612b3a600a86613c83565b612b45906030613b3d565b60f81b818381518110612b5a57612b5a613bec565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612b94600a86613bc1565b9450612b1c565b60006109ab7f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c8380519060200120604051602001612be3929190918252602082015260400190565b60405160208183030381529060405280519060200120612f4a565b6000806000612c0d8585612fb3565b915091506115f881613023565b73ffffffffffffffffffffffffffffffffffffffff8216612c7d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a14565b612c8681612346565b15612cd35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a14565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612f3f576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612deb903390899088908890600401613c97565b6020604051808303816000875af1925050508015612e44575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612e4191810190613ce0565b60015b612ef4573d808015612e72576040519150601f19603f3d011682016040523d82523d6000602084013e612e77565b606091505b508051612eec5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a14565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506126a4565b506001949350505050565b60006109ab612f57613214565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080825160411415612fea5760208301516040840151606085015160001a612fde87828585613348565b9450945050505061301c565b8251604014156130145760208301516040840151613009868383613460565b93509350505061301c565b506000905060025b9250929050565b600081600481111561303757613037613cfd565b14156130405750565b600181600481111561305457613054613cfd565b14156130a25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a14565b60028160048111156130b6576130b6613cfd565b14156131045760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a14565b600381600481111561311857613118613cfd565b141561318c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a14565b60048160048111156131a0576131a0613cfd565b141561115f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a14565b60003073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000032a322c7c77840c383961b8ab503c9f45440c81f1614801561327a57507f000000000000000000000000000000000000000000000000000000000000000146145b156132a457507fa80a398ee107978a93f2646b4e05ec3c3d561f5a93885fe2f10e7ece2e62561a90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527fe2453e6be97b1957c4849625c6c9ebe59b79ac3a937e2128b5327429758adf07828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561337f5750600090506003613457565b8460ff16601b1415801561339757508460ff16601c14155b156133a85750600090506004613457565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156133fc573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661345057600060019250925050613457565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83168161349660ff86901c601b613b3d565b90506134a487828885613348565b935093505050935093915050565b8280546134be90613aba565b90600052602060002090601f0160209004810192826134e05760008555613526565b82601f106134f957805160ff1916838001178555613526565b82800160010185558215613526579182015b8281111561352657825182559160200191906001019061350b565b506111e99291505b808211156111e9576000815560010161352e565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461115f57600080fd5b60006020828403121561358257600080fd5b813561118981613542565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f8301126135cd57600080fd5b813567ffffffffffffffff808211156135e8576135e861358d565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561362e5761362e61358d565b8160405283815286602085880101111561364757600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006020828403121561367957600080fd5b813567ffffffffffffffff81111561369057600080fd5b6126a4848285016135bc565b60005b838110156136b757818101518382015260200161369f565b8381111561196b5750506000910152565b600081518084526136e081602086016020860161369c565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061118960208301846136c8565b60006020828403121561373757600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461115f57600080fd5b6000806040838503121561377357600080fd5b823561377e8161373e565b946020939093013593505050565b60006020828403121561379e57600080fd5b81356111898161373e565b6000806000606084860312156137be57600080fd5b83356137c98161373e565b925060208401356137d98161373e565b929592945050506040919091013590565b600080604083850312156137fd57600080fd5b823567ffffffffffffffff8082111561381557600080fd5b613821868387016135bc565b9350602085013591508082111561383757600080fd5b50613844858286016135bc565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156138865783518352928401929184019160010161386a565b50909695505050505050565b803580151581146138a257600080fd5b919050565b6000602082840312156138b957600080fd5b61118982613892565b6000806000606084860312156138d757600080fd5b83359250602084013567ffffffffffffffff808211156138f657600080fd5b613902878388016135bc565b9350604086013591508082111561391857600080fd5b50613925868287016135bc565b9150509250925092565b60008083601f84011261394157600080fd5b50813567ffffffffffffffff81111561395957600080fd5b6020830191508360208260051b850101111561301c57600080fd5b6000806000806040858703121561398a57600080fd5b843567ffffffffffffffff808211156139a257600080fd5b6139ae8883890161392f565b909650945060208701359150808211156139c757600080fd5b506139d48782880161392f565b95989497509550505050565b600080604083850312156139f357600080fd5b82356139fe8161373e565b9150613a0c60208401613892565b90509250929050565b60008060008060808587031215613a2b57600080fd5b8435613a368161373e565b93506020850135613a468161373e565b925060408501359150606085013567ffffffffffffffff811115613a6957600080fd5b613a75878288016135bc565b91505092959194509250565b60008060408385031215613a9457600080fd5b8235613a9f8161373e565b91506020830135613aaf8161373e565b809150509250929050565b600181811c90821680613ace57607f821691505b60208210811415613b08577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613b5057613b50613b0e565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b8d57613b8d613b0e565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613bd057613bd0613b92565b500490565b600082821015613be757613be7613b0e565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c4d57613c4d613b0e565b5060010190565b60008351613c6681846020880161369c565b835190830190613c7a81836020880161369c565b01949350505050565b600082613c9257613c92613b92565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613cd660808301846136c8565b9695505050505050565b600060208284031215613cf257600080fd5b815161118981613542565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220ce2af7412a403e3e76d572a968eb2c5a1a1cd429d7f494fabbc52adc42903fcc64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000114b6e69676874734f66546865457468657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044b4f544500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f6e696674796c6162732e6d7970696e6174612e636c6f75642f697066732f516d56586a474770644e424e37446434586f7a6f7279366164556d477576386679527a794a3443735870785a5a482f0000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): KnightsOfTheEther
Arg [1] : _symbol (string): KOTE
Arg [2] : _initBaseURI (string): https://niftylabs.mypinata.cloud/ipfs/QmVXjGGpdNBN7Dd4Xozory6adUmGuv8fyRzyJ4CsXpxZZH/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 4b6e69676874734f665468654574686572000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4b4f544500000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000055
Arg [8] : 68747470733a2f2f6e696674796c6162732e6d7970696e6174612e636c6f7564
Arg [9] : 2f697066732f516d56586a474770644e424e37446434586f7a6f727936616455
Arg [10] : 6d477576386679527a794a3443735870785a5a482f0000000000000000000000
Deployed Bytecode Sourcemap
184:5148:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2627:40:15;682:10:1;2627:40:15;;;218:42:18;206:55;;;188:74;;2657:9:15;293:2:18;278:18;;271:34;161:18;2627:40:15;;;;;;;184:5148:13;;;;;193:224:6;;;;;;;;;;-1:-1:-1;193:224:6;;;;;:::i;:::-;;:::i;:::-;;;913:14:18;;906:22;888:41;;876:2;861:18;193:224:6;;;;;;;;5086:88:13;;;;;;;;;;-1:-1:-1;5086:88:13;;;;;:::i;:::-;;:::i;:::-;;1672:100:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2305:221::-;;;;;;;;;;-1:-1:-1;2305:221:5;;;;;:::i;:::-;;:::i;:::-;;;3410:42:18;3398:55;;;3380:74;;3368:2;3353:18;2305:221:5;3234:226:18;1888:411:5;;;;;;;;;;-1:-1:-1;1888:411:5;;;;;:::i;:::-;;:::i;1351:110:6:-;;;;;;;;;;-1:-1:-1;1439:7:6;:14;1351:110;;;4090:25:18;;;4078:2;4063:18;1351:110:6;3944:177:18;3791:600:15;;;;;;;;;;-1:-1:-1;3791:600:15;;;;;:::i;:::-;;:::i;3003:339:5:-;;;;;;;;;;-1:-1:-1;3003:339:5;;;;;:::i;:::-;;:::i;423:499:6:-;;;;;;;;;;-1:-1:-1;423:499:6;;;;;:::i;:::-;;:::i;2752:89:15:-;;;;;;;;;;-1:-1:-1;2822:12:15;;2752:89;;5181:148:13;;;:::i;3348:185:5:-;;;;;;;;;;-1:-1:-1;3348:185:5;;;;;:::i;:::-;;:::i;3170:138:13:-;;;;;;;;;;-1:-1:-1;3170:138:13;;;;;:::i;:::-;;:::i;1467:200:6:-;;;;;;;;;;-1:-1:-1;1467:200:6;;;;;:::i;:::-;;:::i;643:40:13:-;;;;;;;;;;;;;;;;1427:239:5;;;;;;;;;;-1:-1:-1;1427:239:5;;;;;:::i;:::-;;:::i;295:21:13:-;;;;;;;;;;;;;:::i;1007:414:5:-;;;;;;;;;;-1:-1:-1;1007:414:5;;;;;:::i;:::-;;:::i;1648:94:14:-;;;;;;;;;;;;;:::i;4493:122:13:-;;;;;;;;;;-1:-1:-1;4493:122:13;;;;;:::i;:::-;;:::i;928:417:6:-;;;;;;;;;;-1:-1:-1;928:417:6;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4989:76:13:-;;;;;;;;;;-1:-1:-1;4989:76:13;;;;;:::i;:::-;;:::i;1374:804::-;;;;;;:::i;:::-;;:::i;3499:98:15:-;;;;;;;;;;-1:-1:-1;3499:98:15;;;;;:::i;:::-;;:::i;997:87:14:-;;;;;;;;;;-1:-1:-1;1070:6:14;;;;997:87;;4398:78:13;;;;;;;;;;-1:-1:-1;4398:78:13;;;;;:::i;:::-;;:::i;1778:104:5:-;;;;;;;;;;;;;:::i;2738:426:13:-;;;;;;;;;;-1:-1:-1;2738:426:13;;;;;:::i;:::-;;:::i;3306:107:15:-;;;;;;;;;;-1:-1:-1;3306:107:15;;;;;:::i;:::-;3388:18;;3362:7;3388:18;;;:9;:18;;;;;;;3306:107;494:35:13;;;;;;;;;;-1:-1:-1;494:35:13;;;;;;;;2532:295:5;;;;;;;;;;-1:-1:-1;2532:295:5;;;;;:::i;:::-;;:::i;603:37:13:-;;;;;;;;;;;;;;;;689:35;;;;;;;;;;;;;;;;3539:328:5;;;;;;;;;;-1:-1:-1;3539:328:5;;;;;:::i;:::-;;:::i;3743:132:13:-;;;;;;;;;;-1:-1:-1;3743:132:13;;;;;:::i;:::-;;:::i;4904:82::-;;;;;;;;;;-1:-1:-1;4904:82:13;;;;;:::i;:::-;;:::i;3985:278::-;;;;;;;;;;-1:-1:-1;3985:278:13;;;;;:::i;:::-;;:::i;3109:103:15:-;;;;;;;;;;-1:-1:-1;3109:103:15;;;;;:::i;:::-;3189:16;;3163:7;3189:16;;;:7;:16;;;;;;;3109:103;460:31:13;;;;;;;;;;;;;;;;4769:112;;;;;;;;;;-1:-1:-1;4769:112:13;;;;;:::i;:::-;;:::i;2930:93:15:-;;;;;;;;;;-1:-1:-1;3002:14:15;;2930:93;;2833:164:5;;;;;;;;;;-1:-1:-1;2833:164:5;;;;;:::i;:::-;2954:25;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;2833:164;2184:529:13;;;;;;:::i;:::-;;:::i;1897:192:14:-;;;;;;;;;;-1:-1:-1;1897:192:14;;;;;:::i;:::-;;:::i;4633:116:13:-;;;;;;;;;;-1:-1:-1;4633:116:13;;;;;:::i;:::-;;:::i;532:32::-;;;;;;;;;;-1:-1:-1;532:32:13;;;;;;;;;;;193:224:6;295:4;319:50;;;334:35;319:50;;:90;;;373:36;397:11;373:23;:36::i;:::-;312:97;193:224;-1:-1:-1;;193:224:6:o;5086:88:13:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;;;;;;;;;5149:21:13;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;5086:88:::0;:::o;1672:100:5:-;1726:13;1759:5;1752:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1672:100;:::o;2305:221::-;2381:7;2409:16;2417:7;2409;:16::i;:::-;2401:73;;;;-1:-1:-1;;;2401:73:5;;10787:2:18;2401:73:5;;;10769:21:18;10826:2;10806:18;;;10799:30;10865:34;10845:18;;;10838:62;10936:14;10916:18;;;10909:42;10968:19;;2401:73:5;10585:408:18;2401:73:5;-1:-1:-1;2494:24:5;;;;:15;:24;;;;;;;;;2305:221::o;1888:411::-;1969:13;1985:23;2000:7;1985:14;:23::i;:::-;1969:39;;2033:5;2027:11;;:2;:11;;;;2019:57;;;;-1:-1:-1;;;2019:57:5;;11200:2:18;2019:57:5;;;11182:21:18;11239:2;11219:18;;;11212:30;11278:34;11258:18;;;11251:62;11349:3;11329:18;;;11322:31;11370:19;;2019:57:5;10998:397:18;2019:57:5;682:10:1;2111:21:5;;;;;:62;;-1:-1:-1;2136:37:5;2153:5;682:10:1;2833:164:5;:::i;2136:37::-;2089:168;;;;-1:-1:-1;;;2089:168:5;;11602:2:18;2089:168:5;;;11584:21:18;11641:2;11621:18;;;11614:30;11680:34;11660:18;;;11653:62;11751:26;11731:18;;;11724:54;11795:19;;2089:168:5;11400:420:18;2089:168:5;2270:21;2279:2;2283:7;2270:8;:21::i;:::-;1958:341;1888:411;;:::o;3791:600:15:-;3866:16;;;3885:1;3866:16;;;:7;:16;;;;;;3858:71;;;;-1:-1:-1;;;3858:71:15;;12027:2:18;3858:71:15;;;12009:21:18;12066:2;12046:18;;;12039:30;12105:34;12085:18;;;12078:62;12176:8;12156:18;;;12149:36;12202:19;;3858:71:15;11825:402:18;3858:71:15;3940:21;3988:14;;3964:21;:38;;;;:::i;:::-;4082:18;;;4012:15;4082:18;;;:9;:18;;;;;;;;;4067:12;;4047:7;:16;;;;;;;3940:62;;-1:-1:-1;4012:15:15;;4031:32;;3940:62;4031:32;:::i;:::-;4030:49;;;;:::i;:::-;:70;;;;:::i;:::-;4012:88;-1:-1:-1;4119:12:15;4111:68;;;;-1:-1:-1;;;4111:68:15;;13433:2:18;4111:68:15;;;13415:21:18;13472:2;13452:18;;;13445:30;13511:34;13491:18;;;13484:62;13582:13;13562:18;;;13555:41;13613:19;;4111:68:15;13231:407:18;4111:68:15;4211:18;;;;;;;:9;:18;;;;;;:28;;4232:7;;4211:28;:::i;:::-;4190:18;;;;;;;:9;:18;;;;;:49;4266:14;;:24;;4283:7;;4266:24;:::i;:::-;4249:14;:41;4301:35;4319:7;4328;4301:17;:35::i;:::-;4351:33;;;218:42:18;206:55;;188:74;;293:2;278:18;;271:34;;;4351:33:15;;161:18:18;4351:33:15;;;;;;;3848:543;;3791:600;:::o;3003:339:5:-;3198:41;682:10:1;3231:7:5;3198:18;:41::i;:::-;3190:103;;;;-1:-1:-1;;;3190:103:5;;14155:2:18;3190:103:5;;;14137:21:18;14194:2;14174:18;;;14167:30;14233:34;14213:18;;;14206:62;14304:19;14284:18;;;14277:47;14341:19;;3190:103:5;13953:413:18;3190:103:5;3306:28;3316:4;3322:2;3326:7;3306:9;:28::i;423:499:6:-;512:15;556:23;573:5;556:16;:23::i;:::-;548:5;:31;540:66;;;;-1:-1:-1;;;540:66:6;;14573:2:18;540:66:6;;;14555:21:18;14612:2;14592:18;;;14585:30;14651:24;14631:18;;;14624:52;14693:18;;540:66:6;14371:346:18;540:66:6;617:10;643:6;638:226;655:7;:14;651:18;;638:226;;;704:7;712:1;704:10;;;;;;;;:::i;:::-;;;;;;;;;;;;695:19;;;704:10;;695:19;691:162;;;748:5;739;:14;735:102;;;784:1;-1:-1:-1;777:8:6;;-1:-1:-1;777:8:6;735:102;830:7;;;:::i;:::-;;;735:102;671:3;;;:::i;:::-;;;638:226;;;-1:-1:-1;874:40:6;;-1:-1:-1;;;874:40:6;;14573:2:18;874:40:6;;;14555:21:18;14612:2;14592:18;;;14585:30;14651:24;14631:18;;;14624:52;14693:18;;874:40:6;14371:346:18;5181:148:13;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;5248:58:13::1;::::0;5230:12:::1;::::0;5256:10:::1;::::0;5280:21:::1;::::0;5230:12;5248:58;5230:12;5248:58;5280:21;5256:10;5248:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5229:77;;;5317:7;5309:16;;;::::0;::::1;;5226:103;5181:148::o:0;3348:185:5:-;3486:39;3503:4;3509:2;3513:7;3486:39;;;;;;;;;;;;:16;:39::i;3170:138:13:-;3250:7;3276:25;3285:4;3291:9;3276:7;:25::i;:::-;3269:32;3170:138;-1:-1:-1;;;3170:138:13:o;1467:200:6:-;1542:7;1578:30;1439:7;:14;;1351:110;1578:30;1570:5;:38;1562:74;;;;-1:-1:-1;;;1562:74:6;;15523:2:18;1562:74:6;;;15505:21:18;15562:2;15542:18;;;15535:30;15601:25;15581:18;;;15574:53;15644:18;;1562:74:6;15321:347:18;1562:74:6;-1:-1:-1;1654:5:6;1467:200::o;1427:239:5:-;1499:7;1519:13;1535:7;1543;1535:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;1570:19:5;1562:73;;;;-1:-1:-1;;;1562:73:5;;15875:2:18;1562:73:5;;;15857:21:18;15914:2;15894:18;;;15887:30;15953:34;15933:18;;;15926:62;16024:11;16004:18;;;15997:39;16053:19;;1562:73:5;15673:405:18;295:21:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1007:414:5:-;1079:7;1107:19;;;1099:74;;;;-1:-1:-1;;;1099:74:5;;16285:2:18;1099:74:5;;;16267:21:18;16324:2;16304:18;;;16297:30;16363:34;16343:18;;;16336:62;16434:12;16414:18;;;16407:40;16464:19;;1099:74:5;16083:406:18;1099:74:5;1223:7;:14;1184:10;;;1248:119;1269:6;1265:1;:10;1248:119;;;1308:7;1316:1;1308:10;;;;;;;;:::i;:::-;;;;;;;;;;;;1299:19;;;1308:10;;1299:19;1295:61;;;1335:7;;;:::i;:::-;;;1295:61;1277:3;;;:::i;:::-;;;1248:119;;;-1:-1:-1;1408:5:5;;1007:414;-1:-1:-1;;;1007:414:5:o;1648:94:14:-;1070:6;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;1713:21:::1;1731:1;1713:9;:21::i;:::-;1648:94::o:0;4493:122:13:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;4570:21:13::1;:41:::0;4493:122::o;928:417:6:-;987:16;1028:23;1045:5;1028:16;:23::i;:::-;1024:1;:27;1016:62;;;;-1:-1:-1;;;1016:62:6;;14573:2:18;1016:62:6;;;14555:21:18;14612:2;14592:18;;;14585:30;14651:24;14631:18;;;14624:52;14693:18;;1016:62:6;14371:346:18;1016:62:6;1089:18;1110:16;1120:5;1110:9;:16::i;:::-;1089:37;;1137:25;1179:10;1165:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1165:25:6;;1137:53;;1206:9;1201:111;1225:10;1221:1;:14;1201:111;;;1271:29;1291:5;1298:1;1271:19;:29::i;:::-;1257:8;1266:1;1257:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;1237:3;;;;:::i;:::-;;;;1201:111;;;-1:-1:-1;1329:8:6;928:417;-1:-1:-1;;;928:417:6:o;4989:76:13:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;5038:12:13::1;:23:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;4989:76::o;1374:804::-;1483:9;1495:13;1439:7:6;:14;;1351:110;1495:13:13;1483:25;-1:-1:-1;1552:10:13;1526:22;1532:4;1538:9;1526:5;:22::i;:::-;:36;;;1518:66;;;;-1:-1:-1;;;1518:66:13;;16696:2:18;1518:66:13;;;16678:21:18;16735:2;16715:18;;;16708:30;16774:19;16754:18;;;16747:47;16811:18;;1518:66:13;16494:341:18;1518:66:13;1626:15;;;;1618:55;;;;-1:-1:-1;;;1618:55:13;;17042:2:18;1618:55:13;;;17024:21:18;17081:2;17061:18;;;17054:30;17120;17100:18;;;17093:58;17168:18;;1618:55:13;16840:352:18;1618:55:13;1706:1;1691:12;:16;1683:46;;;;-1:-1:-1;;;1683:46:13;;17399:2:18;1683:46:13;;;17381:21:18;17438:2;17418:18;;;17411:30;17477:18;17457;;;17450:46;17513:18;;1683:46:13;17197:340:18;1683:46:13;1760:21;;1744:12;:37;;1736:59;;;;-1:-1:-1;;;1736:59:13;;17744:2:18;1736:59:13;;;17726:21:18;17783:1;17763:18;;;17756:29;17821:11;17801:18;;;17794:39;17850:18;;1736:59:13;17542:332:18;1736:59:13;1831:9;;1811:16;1815:12;1811:1;:16;:::i;:::-;:29;;1802:52;;;;-1:-1:-1;;;1802:52:13;;17744:2:18;1802:52:13;;;17726:21:18;17783:1;17763:18;;;17756:29;17821:11;17801:18;;;17794:39;17850:18;;1802:52:13;17542:332:18;1802:52:13;1890:12;1882:5;;:20;;;;:::i;:::-;1869:9;:33;;1861:64;;;;-1:-1:-1;;;1861:64:13;;18081:2:18;1861:64:13;;;18063:21:18;18120:2;18100:18;;;18093:30;18159:20;18139:18;;;18132:48;18197:18;;1861:64:13;17879:342:18;1861:64:13;1975:1;1943:28;1960:10;1943:16;:28::i;:::-;:33;;1935:64;;;;-1:-1:-1;;;1935:64:13;;18428:2:18;1935:64:13;;;18410:21:18;18467:2;18447:18;;;18440:30;18506:21;18486:18;;;18479:49;18545:18;;1935:64:13;18226:343:18;1935:64:13;2013:9;2008:95;2032:12;2028:1;:16;2008:95;;;2060:32;2070:10;2082:5;2086:1;2082;:5;:::i;:::-;2060:32;;;;;;;;;;;;:9;:32::i;:::-;2046:3;;;:::i;:::-;;;2008:95;;;;2112:8;;;2130:41;2146:10;2158:12;2130:15;:41::i;:::-;1478:700;1374:804;;;:::o;3499:98:15:-;3550:7;3576;3584:5;3576:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;3499:98;-1:-1:-1;;3499:98:15:o;4398:78:13:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;4455:5:13::1;:17:::0;4398:78::o;1778:104:5:-;1834:13;1867:7;1860:14;;;;;:::i;2738:426:13:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;2834:32:13;;::::1;2826:41;;;::::0;::::1;;2870:6;2883:9:::0;2895:13:::1;1439:7:6::0;:14;;1351:110;2895:13:13::1;2883:25;;2915:6;2911:58;2927:16:::0;;::::1;2911:58;;;2957:5;;2963:1;2957:8;;;;;;;:::i;:::-;;;;;;;2952:13;;;;;:::i;:::-;::::0;-1:-1:-1;2945:3:13::1;::::0;::::1;:::i;:::-;;;2911:58;;;-1:-1:-1::0;2989:9:13::1;::::0;2980:5:::1;2984:1:::0;2980;:5:::1;:::i;:::-;:18;;2971:41;;;::::0;-1:-1:-1;;;2971:41:13;;18776:2:18;2971:41:13::1;::::0;::::1;18758:21:18::0;18815:1;18795:18;;;18788:29;18853:10;18833:18;;;18826:38;18881:18;;2971:41:13::1;18574:331:18::0;2971:41:13::1;3015:8;;;3030:6;3026:123;3042:20:::0;;::::1;3026:123;;;3075:6;3071:75;3091:5;;3097:1;3091:8;;;;;;;:::i;:::-;;;;;;;3087:1;:12;3071:75;;;3108:34;3119:9;;3129:1;3119:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3133:3:::0;::::1;::::0;::::1;:::i;:::-;;;3108:34;;;;;;;;;;;::::0;:9:::1;:34::i;:::-;3101:3;::::0;::::1;:::i;:::-;;;3071:75;;;-1:-1:-1::0;3064:3:13::1;::::0;::::1;:::i;:::-;;;3026:123;;;-1:-1:-1::0;;;;;;;2738:426:13:o;2532:295:5:-;2635:24;;;682:10:1;2635:24:5;;2627:62;;;;-1:-1:-1;;;2627:62:5;;19112:2:18;2627:62:5;;;19094:21:18;19151:2;19131:18;;;19124:30;19190:27;19170:18;;;19163:55;19235:18;;2627:62:5;18910:349:18;2627:62:5;682:10:1;2702:32:5;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;2771:48;;888:41:18;;;2702:42:5;;682:10:1;2771:48:5;;861:18:18;2771:48:5;;;;;;;2532:295;;:::o;3539:328::-;3714:41;682:10:1;3747:7:5;3714:18;:41::i;:::-;3706:103;;;;-1:-1:-1;;;3706:103:5;;14155:2:18;3706:103:5;;;14137:21:18;14194:2;14174:18;;;14167:30;14233:34;14213:18;;;14206:62;14304:19;14284:18;;;14277:47;14341:19;;3706:103:5;13953:413:18;3706:103:5;3820:39;3834:4;3840:2;3844:7;3853:5;3820:13;:39::i;3743:132:13:-;3847:20;;;3806:7;3847:20;;;:12;:20;;;;;;3828:16;;:39;;3847:20;3828:39;:::i;4904:82::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;4955:15:13::1;:27:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;4904:82::o;3985:278::-;4058:13;4095:9;;4084:7;:20;;4076:29;;;;;;4108:28;4139:10;:8;:10::i;:::-;4108:41;;4190:1;4165:14;4159:28;:32;:100;;;;;;;;;;;;;;;;;4218:14;4234:18;:7;:16;:18::i;:::-;4201:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4152:107;3985:278;-1:-1:-1;;;3985:278:13:o;4769:112::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;4841:16:13::1;:36:::0;4769:112::o;2184:529::-;2246:9;2258:13;1439:7:6;:14;;1351:110;2258:13:13;2289:12;;2246:25;;-1:-1:-1;2289:12:13;;;;;2281:49;;;;-1:-1:-1;;;2281:49:13;;19941:2:18;2281:49:13;;;19923:21:18;19980:2;19960:18;;;19953:30;20019:27;19999:18;;;19992:55;20064:18;;2281:49:13;19739:349:18;2281:49:13;2363:1;2348:12;:16;2340:46;;;;-1:-1:-1;;;2340:46:13;;17399:2:18;2340:46:13;;;17381:21:18;17438:2;17418:18;;;17411:30;17477:18;17457;;;17450:46;17513:18;;2340:46:13;17197:340:18;2340:46:13;2417:18;;2401:12;:34;;2393:56;;;;-1:-1:-1;;;2393:56:13;;17744:2:18;2393:56:13;;;17726:21:18;17783:1;17763:18;;;17756:29;17821:11;17801:18;;;17794:39;17850:18;;2393:56:13;17542:332:18;2393:56:13;2485:9;;2465:16;2469:12;2465:1;:16;:::i;:::-;:29;;2456:52;;;;-1:-1:-1;;;2456:52:13;;17744:2:18;2456:52:13;;;17726:21:18;17783:1;17763:18;;;17756:29;17821:11;17801:18;;;17794:39;17850:18;;2456:52:13;17542:332:18;2456:52:13;2544:12;2536:5;;:20;;;;:::i;:::-;2523:9;:33;;2515:64;;;;-1:-1:-1;;;2515:64:13;;18081:2:18;2515:64:13;;;18063:21:18;18120:2;18100:18;;;18093:30;18159:20;18139:18;;;18132:48;18197:18;;2515:64:13;17879:342:18;2515:64:13;2593:9;2588:101;2612:12;2608:1;:16;2588:101;;;2646:32;2656:10;2668:5;2672:1;2668;:5;:::i;2646:32::-;2626:3;;;:::i;:::-;;;2588:101;;1897:192:14;1070:6;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;1986:22:::1;::::0;::::1;1978:73;;;::::0;-1:-1:-1;;;1978:73:14;;20295:2:18;1978:73:14::1;::::0;::::1;20277:21:18::0;20334:2;20314:18;;;20307:30;20373:34;20353:18;;;20346:62;20444:8;20424:18;;;20417:36;20470:19;;1978:73:14::1;20093:402:18::0;1978:73:14::1;2062:19;2072:8;2062:9;:19::i;4633:116:13:-:0;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;4707:18:13::1;:38:::0;4633:116::o;696:305:5:-;798:4;835:40;;;850:25;835:40;;:105;;-1:-1:-1;892:48:5;;;907:33;892:48;835:105;:158;;;-1:-1:-1;886:25:4;871:40;;;;957:36:5;763:155:4;4196::5;4295:7;:14;4261:4;;4285:24;;:58;;;;;4341:1;4313:30;;:7;4321;4313:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;:30;;4278:65;4196:155;-1:-1:-1;;4196:155:5:o;6345:174::-;6420:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;6474:23;6420:24;6474:14;:23::i;:::-;6465:46;;;;;;;;;;;;6345:174;;:::o;2065:317:0:-;2180:6;2155:21;:31;;2147:73;;;;-1:-1:-1;;;2147:73:0;;20702:2:18;2147:73:0;;;20684:21:18;20741:2;20721:18;;;20714:30;20780:31;20760:18;;;20753:59;20829:18;;2147:73:0;20500:353:18;2147:73:0;2234:12;2252:9;:14;;2274:6;2252:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:52;;;2304:7;2296:78;;;;-1:-1:-1;;;2296:78:0;;21060:2:18;2296:78:0;;;21042:21:18;21099:2;21079:18;;;21072:30;21138:34;21118:18;;;21111:62;21209:28;21189:18;;;21182:56;21255:19;;2296:78:0;20858:422:18;4354:348:5;4447:4;4472:16;4480:7;4472;:16::i;:::-;4464:73;;;;-1:-1:-1;;;4464:73:5;;21487:2:18;4464:73:5;;;21469:21:18;21526:2;21506:18;;;21499:30;21565:34;21545:18;;;21538:62;21636:14;21616:18;;;21609:42;21668:19;;4464:73:5;21285:408:18;4464:73:5;4548:13;4564:23;4579:7;4564:14;:23::i;:::-;4548:39;;4617:5;4606:16;;:7;:16;;;:51;;;;4650:7;4626:31;;:20;4638:7;4626:11;:20::i;:::-;:31;;;4606:51;:87;;;-1:-1:-1;2954:25:5;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;4661:32;4598:96;4354:348;-1:-1:-1;;;;4354:348:5:o;5826:516::-;5985:4;5958:31;;:23;5973:7;5958:14;:23::i;:::-;:31;;;5950:85;;;;-1:-1:-1;;;5950:85:5;;21900:2:18;5950:85:5;;;21882:21:18;21939:2;21919:18;;;21912:30;21978:34;21958:18;;;21951:62;22049:11;22029:18;;;22022:39;22078:19;;5950:85:5;21698:405:18;5950:85:5;6054:16;;;6046:65;;;;-1:-1:-1;;;6046:65:5;;22310:2:18;6046:65:5;;;22292:21:18;22349:2;22329:18;;;22322:30;22388:34;22368:18;;;22361:62;22459:6;22439:18;;;22432:34;22483:19;;6046:65:5;22108:400:18;6046:65:5;6228:29;6245:1;6249:7;6228:8;:29::i;:::-;6287:2;6268:7;6276;6268:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;;;;;;;6307:27;;6326:7;;6307:27;;;;;;;;;;6268:16;6307:27;5826:516;;;:::o;3314:187:13:-;3398:7;3417:14;3434:11;3440:4;3434:5;:11::i;:::-;3417:28;;3462:32;3476:6;3484:9;3462:13;:32::i;2097:173:14:-;2172:6;;;;2189:17;;;;;;;;;;;2222:40;;2172:6;;;2189:17;2172:6;;2222:40;;2153:16;;2222:40;2142:128;2097:173;:::o;4818:321:5:-;4948:18;4954:2;4958:7;4948:5;:18::i;:::-;4999:54;5030:1;5034:2;5038:7;5047:5;4999:22;:54::i;:::-;4977:154;;;;-1:-1:-1;;;4977:154:5;;22715:2:18;4977:154:5;;;22697:21:18;22754:2;22734:18;;;22727:30;22793:34;22773:18;;;22766:62;22864:20;22844:18;;;22837:48;22902:19;;4977:154:5;22513:414:18;4269:107:13;4339:20;;;;;;;:12;:20;;;;;:29;;4363:5;;4339:20;:29;;4363:5;;4339:29;:::i;:::-;;;;-1:-1:-1;;;;4269:107:13:o;3878:315:5:-;4035:28;4045:4;4051:2;4055:7;4035:9;:28::i;:::-;4082:48;4105:4;4111:2;4115:7;4124:5;4082:22;:48::i;:::-;4074:111;;;;-1:-1:-1;;;4074:111:5;;22715:2:18;4074:111:5;;;22697:21:18;22754:2;22734:18;;;22727:30;22793:34;22773:18;;;22766:62;22864:20;22844:18;;;22837:48;22902:19;;4074:111:5;22513:414:18;3895:87:13;3946:13;3971:7;3964:14;;;;;:::i;288:723:17:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:17;;;;;;;;;;;;;;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:17;;-1:-1:-1;744:2:17;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:17;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:17;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;949:11:17;958:2;949:11;;:::i;:::-;;;818:154;;3507:230:13;3565:7;3591:135;3642:36;3708:4;3692:22;;;;;;3618:106;;;;;;;;23223:25:18;;;23279:2;23264:18;;23257:34;23211:2;23196:18;;23049:248;3618:106:13;;;;;;;;;;;;;3608:117;;;;;;3591:16;:135::i;4393:231:2:-;4471:7;4492:17;4511:18;4533:27;4544:4;4550:9;4533:10;:27::i;:::-;4491:69;;;;4571:18;4583:5;4571:11;:18::i;5142:346:5:-;5222:16;;;5214:61;;;;-1:-1:-1;;;5214:61:5;;23504:2:18;5214:61:5;;;23486:21:18;;;23523:18;;;23516:30;23582:34;23562:18;;;23555:62;23634:18;;5214:61:5;23302:356:18;5214:61:5;5295:16;5303:7;5295;:16::i;:::-;5294:17;5286:58;;;;-1:-1:-1;;;5286:58:5;;23865:2:18;5286:58:5;;;23847:21:18;23904:2;23884:18;;;23877:30;23943;23923:18;;;23916:58;23991:18;;5286:58:5;23663:352:18;5286:58:5;5413:7;:16;;;;;;;-1:-1:-1;5413:16:5;;;;;;;;;;;;;;;;;;5447:33;;5472:7;;-1:-1:-1;5447:33:5;;-1:-1:-1;;5447:33:5;5142:346;;:::o;6522:799::-;6677:4;6698:13;;;1066:20:0;1114:8;6694:620:5;;6734:72;;;;;:36;;;;;;:72;;682:10:1;;6785:4:5;;6791:7;;6800:5;;6734:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6734:72:5;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;6730:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6976:13:5;;6972:272;;7019:60;;-1:-1:-1;;;7019:60:5;;22715:2:18;7019:60:5;;;22697:21:18;22754:2;22734:18;;;22727:30;22793:34;22773:18;;;22766:62;22864:20;22844:18;;;22837:48;22902:19;;7019:60:5;22513:414:18;6972:272:5;7194:6;7188:13;7179:6;7175:2;7171:15;7164:38;6730:529;6857:51;;6867:41;6857:51;;-1:-1:-1;6850:58:5;;6694:620;-1:-1:-1;7298:4:5;6522:799;;;;;;:::o;4439:167:3:-;4516:7;4543:55;4565:20;:18;:20::i;:::-;4587:10;9437:57:2;;26769:66:18;9437:57:2;;;26757:79:18;26852:11;;;26845:27;;;26888:12;;;26881:28;;;9400:7:2;;26925:12:18;;9437:57:2;;;;;;;;;;;;9427:68;;;;;;9420:75;;9307:196;;;;;2283:1308;2364:7;2373:12;2598:9;:16;2618:2;2598:22;2594:990;;;2894:4;2879:20;;2873:27;2944:4;2929:20;;2923:27;3002:4;2987:20;;2981:27;2637:9;2973:36;3045:25;3056:4;2973:36;2873:27;2923;3045:10;:25::i;:::-;3038:32;;;;;;;;;2594:990;3092:9;:16;3112:2;3092:22;3088:496;;;3367:4;3352:20;;3346:27;3418:4;3403:20;;3397:27;3460:23;3471:4;3346:27;3397;3460:10;:23::i;:::-;3453:30;;;;;;;;3088:496;-1:-1:-1;3532:1:2;;-1:-1:-1;3536:35:2;3088:496;2283:1308;;;;;:::o;554:643::-;632:20;623:5;:29;;;;;;;;:::i;:::-;;619:571;;;554:643;:::o;619:571::-;730:29;721:5;:38;;;;;;;;:::i;:::-;;717:473;;;776:34;;-1:-1:-1;;;776:34:2;;25182:2:18;776:34:2;;;25164:21:18;25221:2;25201:18;;;25194:30;25260:26;25240:18;;;25233:54;25304:18;;776:34:2;24980:348:18;717:473:2;841:35;832:5;:44;;;;;;;;:::i;:::-;;828:362;;;893:41;;-1:-1:-1;;;893:41:2;;25535:2:18;893:41:2;;;25517:21:18;25574:2;25554:18;;;25547:30;25613:33;25593:18;;;25586:61;25664:18;;893:41:2;25333:355:18;828:362:2;965:30;956:5;:39;;;;;;;;:::i;:::-;;952:238;;;1012:44;;-1:-1:-1;;;1012:44:2;;25895:2:18;1012:44:2;;;25877:21:18;25934:2;25914:18;;;25907:30;25973:34;25953:18;;;25946:62;26044:4;26024:18;;;26017:32;26066:19;;1012:44:2;25693:398:18;952:238:2;1087:30;1078:5;:39;;;;;;;;:::i;:::-;;1074:116;;;1134:44;;-1:-1:-1;;;1134:44:2;;26298:2:18;1134:44:2;;;26280:21:18;26337:2;26317:18;;;26310:30;26376:34;26356:18;;;26349:62;26447:4;26427:18;;;26420:32;26469:19;;1134:44:2;26096:398:18;3212:314:3;3265:7;3297:4;3289:29;3306:12;3289:29;;:66;;;;;3339:16;3322:13;:33;3289:66;3285:234;;;-1:-1:-1;3379:24:3;;3212:314::o;3285:234::-;-1:-1:-1;3715:73:3;;;3465:10;3715:73;;;;27610:25:18;;;;3477:12:3;27651:18:18;;;27644:34;3491:15:3;27694:18:18;;;27687:34;3759:13:3;27737:18:18;;;27730:34;3782:4:3;27780:19:18;;;;27773:84;;;;3715:73:3;;;;;;;;;;27582:19:18;;;;3715:73:3;;;3705:84;;;;;;3212:314::o;5845:1632:2:-;5976:7;;6910:66;6897:79;;6893:163;;;-1:-1:-1;7009:1:2;;-1:-1:-1;7013:30:2;6993:51;;6893:163;7070:1;:7;;7075:2;7070:7;;:18;;;;;7081:1;:7;;7086:2;7081:7;;7070:18;7066:102;;;-1:-1:-1;7121:1:2;;-1:-1:-1;7125:30:2;7105:51;;7066:102;7282:24;;;7265:14;7282:24;;;;;;;;;27175:25:18;;;27248:4;27236:17;;27216:18;;;27209:45;;;;27270:18;;;27263:34;;;27313:18;;;27306:34;;;7282:24:2;;27147:19:18;;7282:24:2;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7282:24:2;;;;;;-1:-1:-1;;7321:20:2;;;7317:103;;7374:1;7378:29;7358:50;;;;;;;7317:103;7440:6;-1:-1:-1;7448:20:2;;-1:-1:-1;5845:1632:2;;;;;;;;:::o;4887:344::-;5001:7;;5060:66;5047:80;;5001:7;5154:25;5170:3;5155:18;;;5177:2;5154:25;:::i;:::-;5138:42;;5198:25;5209:4;5215:1;5218;5221;5198:10;:25::i;:::-;5191:32;;;;;;4887:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316:177:18;401:66;394:5;390:78;383:5;380:89;370:117;;483:1;480;473:12;498:245;556:6;609:2;597:9;588:7;584:23;580:32;577:52;;;625:1;622;615:12;577:52;664:9;651:23;683:30;707:5;683:30;:::i;940:184::-;992:77;989:1;982:88;1089:4;1086:1;1079:15;1113:4;1110:1;1103:15;1129:778;1172:5;1225:3;1218:4;1210:6;1206:17;1202:27;1192:55;;1243:1;1240;1233:12;1192:55;1279:6;1266:20;1305:18;1342:2;1338;1335:10;1332:36;;;1348:18;;:::i;:::-;1482:2;1476:9;1544:4;1536:13;;1387:66;1532:22;;;1556:2;1528:31;1524:40;1512:53;;;1580:18;;;1600:22;;;1577:46;1574:72;;;1626:18;;:::i;:::-;1666:10;1662:2;1655:22;1701:2;1693:6;1686:18;1747:3;1740:4;1735:2;1727:6;1723:15;1719:26;1716:35;1713:55;;;1764:1;1761;1754:12;1713:55;1828:2;1821:4;1813:6;1809:17;1802:4;1794:6;1790:17;1777:54;1875:1;1868:4;1863:2;1855:6;1851:15;1847:26;1840:37;1895:6;1886:15;;;;;;1129:778;;;;:::o;1912:322::-;1981:6;2034:2;2022:9;2013:7;2009:23;2005:32;2002:52;;;2050:1;2047;2040:12;2002:52;2090:9;2077:23;2123:18;2115:6;2112:30;2109:50;;;2155:1;2152;2145:12;2109:50;2178;2220:7;2211:6;2200:9;2196:22;2178:50;:::i;2239:258::-;2311:1;2321:113;2335:6;2332:1;2329:13;2321:113;;;2411:11;;;2405:18;2392:11;;;2385:39;2357:2;2350:10;2321:113;;;2452:6;2449:1;2446:13;2443:48;;;-1:-1:-1;;2487:1:18;2469:16;;2462:27;2239:258::o;2502:317::-;2544:3;2582:5;2576:12;2609:6;2604:3;2597:19;2625:63;2681:6;2674:4;2669:3;2665:14;2658:4;2651:5;2647:16;2625:63;:::i;:::-;2733:2;2721:15;2738:66;2717:88;2708:98;;;;2808:4;2704:109;;2502:317;-1:-1:-1;;2502:317:18:o;2824:220::-;2973:2;2962:9;2955:21;2936:4;2993:45;3034:2;3023:9;3019:18;3011:6;2993:45;:::i;3049:180::-;3108:6;3161:2;3149:9;3140:7;3136:23;3132:32;3129:52;;;3177:1;3174;3167:12;3129:52;-1:-1:-1;3200:23:18;;3049:180;-1:-1:-1;3049:180:18:o;3465:154::-;3551:42;3544:5;3540:54;3533:5;3530:65;3520:93;;3609:1;3606;3599:12;3624:315;3692:6;3700;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:31;3852:5;3827:31;:::i;:::-;3877:5;3929:2;3914:18;;;;3901:32;;-1:-1:-1;;;3624:315:18:o;4126:255::-;4193:6;4246:2;4234:9;4225:7;4221:23;4217:32;4214:52;;;4262:1;4259;4252:12;4214:52;4301:9;4288:23;4320:31;4345:5;4320:31;:::i;4386:456::-;4463:6;4471;4479;4532:2;4520:9;4511:7;4507:23;4503:32;4500:52;;;4548:1;4545;4538:12;4500:52;4587:9;4574:23;4606:31;4631:5;4606:31;:::i;:::-;4656:5;-1:-1:-1;4713:2:18;4698:18;;4685:32;4726:33;4685:32;4726:33;:::i;:::-;4386:456;;4778:7;;-1:-1:-1;;;4832:2:18;4817:18;;;;4804:32;;4386:456::o;4847:542::-;4934:6;4942;4995:2;4983:9;4974:7;4970:23;4966:32;4963:52;;;5011:1;5008;5001:12;4963:52;5051:9;5038:23;5080:18;5121:2;5113:6;5110:14;5107:34;;;5137:1;5134;5127:12;5107:34;5160:50;5202:7;5193:6;5182:9;5178:22;5160:50;:::i;:::-;5150:60;;5263:2;5252:9;5248:18;5235:32;5219:48;;5292:2;5282:8;5279:16;5276:36;;;5308:1;5305;5298:12;5276:36;;5331:52;5375:7;5364:8;5353:9;5349:24;5331:52;:::i;:::-;5321:62;;;4847:542;;;;;:::o;5646:632::-;5817:2;5869:21;;;5939:13;;5842:18;;;5961:22;;;5788:4;;5817:2;6040:15;;;;6014:2;5999:18;;;5788:4;6083:169;6097:6;6094:1;6091:13;6083:169;;;6158:13;;6146:26;;6227:15;;;;6192:12;;;;6119:1;6112:9;6083:169;;;-1:-1:-1;6269:3:18;;5646:632;-1:-1:-1;;;;;;5646:632:18:o;6283:160::-;6348:20;;6404:13;;6397:21;6387:32;;6377:60;;6433:1;6430;6423:12;6377:60;6283:160;;;:::o;6448:180::-;6504:6;6557:2;6545:9;6536:7;6532:23;6528:32;6525:52;;;6573:1;6570;6563:12;6525:52;6596:26;6612:9;6596:26;:::i;6633:610::-;6729:6;6737;6745;6798:2;6786:9;6777:7;6773:23;6769:32;6766:52;;;6814:1;6811;6804:12;6766:52;6850:9;6837:23;6827:33;;6911:2;6900:9;6896:18;6883:32;6934:18;6975:2;6967:6;6964:14;6961:34;;;6991:1;6988;6981:12;6961:34;7014:50;7056:7;7047:6;7036:9;7032:22;7014:50;:::i;:::-;7004:60;;7117:2;7106:9;7102:18;7089:32;7073:48;;7146:2;7136:8;7133:16;7130:36;;;7162:1;7159;7152:12;7130:36;;7185:52;7229:7;7218:8;7207:9;7203:24;7185:52;:::i;:::-;7175:62;;;6633:610;;;;;:::o;7248:367::-;7311:8;7321:6;7375:3;7368:4;7360:6;7356:17;7352:27;7342:55;;7393:1;7390;7383:12;7342:55;-1:-1:-1;7416:20:18;;7459:18;7448:30;;7445:50;;;7491:1;7488;7481:12;7445:50;7528:4;7520:6;7516:17;7504:29;;7588:3;7581:4;7571:6;7568:1;7564:14;7556:6;7552:27;7548:38;7545:47;7542:67;;;7605:1;7602;7595:12;7620:773;7742:6;7750;7758;7766;7819:2;7807:9;7798:7;7794:23;7790:32;7787:52;;;7835:1;7832;7825:12;7787:52;7875:9;7862:23;7904:18;7945:2;7937:6;7934:14;7931:34;;;7961:1;7958;7951:12;7931:34;8000:70;8062:7;8053:6;8042:9;8038:22;8000:70;:::i;:::-;8089:8;;-1:-1:-1;7974:96:18;-1:-1:-1;8177:2:18;8162:18;;8149:32;;-1:-1:-1;8193:16:18;;;8190:36;;;8222:1;8219;8212:12;8190:36;;8261:72;8325:7;8314:8;8303:9;8299:24;8261:72;:::i;:::-;7620:773;;;;-1:-1:-1;8352:8:18;-1:-1:-1;;;;7620:773:18:o;8398:315::-;8463:6;8471;8524:2;8512:9;8503:7;8499:23;8495:32;8492:52;;;8540:1;8537;8530:12;8492:52;8579:9;8566:23;8598:31;8623:5;8598:31;:::i;:::-;8648:5;-1:-1:-1;8672:35:18;8703:2;8688:18;;8672:35;:::i;:::-;8662:45;;8398:315;;;;;:::o;8718:666::-;8813:6;8821;8829;8837;8890:3;8878:9;8869:7;8865:23;8861:33;8858:53;;;8907:1;8904;8897:12;8858:53;8946:9;8933:23;8965:31;8990:5;8965:31;:::i;:::-;9015:5;-1:-1:-1;9072:2:18;9057:18;;9044:32;9085:33;9044:32;9085:33;:::i;:::-;9137:7;-1:-1:-1;9191:2:18;9176:18;;9163:32;;-1:-1:-1;9246:2:18;9231:18;;9218:32;9273:18;9262:30;;9259:50;;;9305:1;9302;9295:12;9259:50;9328;9370:7;9361:6;9350:9;9346:22;9328:50;:::i;:::-;9318:60;;;8718:666;;;;;;;:::o;9389:388::-;9457:6;9465;9518:2;9506:9;9497:7;9493:23;9489:32;9486:52;;;9534:1;9531;9524:12;9486:52;9573:9;9560:23;9592:31;9617:5;9592:31;:::i;:::-;9642:5;-1:-1:-1;9699:2:18;9684:18;;9671:32;9712:33;9671:32;9712:33;:::i;:::-;9764:7;9754:17;;;9389:388;;;;;:::o;10143:437::-;10222:1;10218:12;;;;10265;;;10286:61;;10340:4;10332:6;10328:17;10318:27;;10286:61;10393:2;10385:6;10382:14;10362:18;10359:38;10356:218;;;10430:77;10427:1;10420:88;10531:4;10528:1;10521:15;10559:4;10556:1;10549:15;10356:218;;10143:437;;;:::o;12232:184::-;12284:77;12281:1;12274:88;12381:4;12378:1;12371:15;12405:4;12402:1;12395:15;12421:128;12461:3;12492:1;12488:6;12485:1;12482:13;12479:39;;;12498:18;;:::i;:::-;-1:-1:-1;12534:9:18;;12421:128::o;12554:228::-;12594:7;12720:1;12652:66;12648:74;12645:1;12642:81;12637:1;12630:9;12623:17;12619:105;12616:131;;;12727:18;;:::i;:::-;-1:-1:-1;12767:9:18;;12554:228::o;12787:184::-;12839:77;12836:1;12829:88;12936:4;12933:1;12926:15;12960:4;12957:1;12950:15;12976:120;13016:1;13042;13032:35;;13047:18;;:::i;:::-;-1:-1:-1;13081:9:18;;12976:120::o;13101:125::-;13141:4;13169:1;13166;13163:8;13160:34;;;13174:18;;:::i;:::-;-1:-1:-1;13211:9:18;;13101:125::o;14722:184::-;14774:77;14771:1;14764:88;14871:4;14868:1;14861:15;14895:4;14892:1;14885:15;14911:195;14950:3;14981:66;14974:5;14971:77;14968:103;;;15051:18;;:::i;:::-;-1:-1:-1;15098:1:18;15087:13;;14911:195::o;19264:470::-;19443:3;19481:6;19475:13;19497:53;19543:6;19538:3;19531:4;19523:6;19519:17;19497:53;:::i;:::-;19613:13;;19572:16;;;;19635:57;19613:13;19572:16;19669:4;19657:17;;19635:57;:::i;:::-;19708:20;;19264:470;-1:-1:-1;;;;19264:470:18:o;22932:112::-;22964:1;22990;22980:35;;22995:18;;:::i;:::-;-1:-1:-1;23029:9:18;;22932:112::o;24020:512::-;24214:4;24243:42;24324:2;24316:6;24312:15;24301:9;24294:34;24376:2;24368:6;24364:15;24359:2;24348:9;24344:18;24337:43;;24416:6;24411:2;24400:9;24396:18;24389:34;24459:3;24454:2;24443:9;24439:18;24432:31;24480:46;24521:3;24510:9;24506:19;24498:6;24480:46;:::i;:::-;24472:54;24020:512;-1:-1:-1;;;;;;24020:512:18:o;24537:249::-;24606:6;24659:2;24647:9;24638:7;24634:23;24630:32;24627:52;;;24675:1;24672;24665:12;24627:52;24707:9;24701:16;24726:30;24750:5;24726:30;:::i;24791:184::-;24843:77;24840:1;24833:88;24940:4;24937:1;24930:15;24964:4;24961:1;24954:15
Swarm Source
ipfs://ce2af7412a403e3e76d572a968eb2c5a1a1cd429d7f494fabbc52adc42903fcc
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.