ERC-721
Overview
Max Total Supply
847 K&J
Holders
102
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 K&JLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
KylerAndJesus
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-02 */ // Sources flattened with hardhat v2.8.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol) /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File @openzeppelin/contracts/security/[email protected] // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) /** * @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 ReentrancyGuard { // 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 making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // 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; } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.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; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.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); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.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); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.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; } } // File contracts/ERC721A.sol // Creators: locationtba.eth, 2pmflow.eth /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract KylerAndJesus is ERC721A, IERC2981, Ownable, ReentrancyGuard { using Strings for uint256; string public constant baseURI = "ipfs://QmV8Qwek7X7G3ShndVbghQTok9gn7DoGmk8r1BiYpnx8Qt/"; string public constant contractURI = "ipfs://QmaoB37SbNai2adSwpgsvM45uj4Hsrx8bRTR33nHTQaKhZ"; string public constant baseExtension = ".json"; address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; // Mainnet - 0xa5409ec958C83C3f309868babACA7c86DCB077c1 // Rinkeby - 0xF57B2c51dED3A29e6891aba85459d600256Cf317 uint256 public constant MAX_FREE_MINTS_PER_TX = 10; uint256 public constant MAX_PUBLIC_MINTS_PER_TX = 10; uint256 public maxSupply = 960; uint256 public constant PUBLIC_SALE_PRICE = 0.01 ether; uint256 public NUM_FREE_MINTS = 760; bool public isPublicSaleActive = true; // ============ ACCESS CONTROL/SANITY MODIFIERS ============ modifier publicSaleActive() { require(isPublicSaleActive, "Public sale is not open"); _; } modifier maxMintsPerTX(uint256 numberOfTokens, uint256 MAX_MINTS_PER_TX) { require( numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded" ); _; } modifier canMintNFTs(uint256 numberOfTokens) { require( totalSupply() + numberOfTokens <= maxSupply, "Not enough mints remaining to mint" ); _; } modifier freeMintsAvailable(uint256 numberOfTokens) { require( totalSupply() + numberOfTokens <= NUM_FREE_MINTS, "Not enough free mints remain" ); _; } modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) { if(totalSupply() > NUM_FREE_MINTS){ require( (price * numberOfTokens) == msg.value, "Incorrect ETH value sent" ); } _; } constructor() ERC721A("KylerAndJesus", "K&J", 100) { } function mint(uint256 numberOfTokens) external payable nonReentrant isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens) publicSaleActive canMintNFTs(numberOfTokens) maxMintsPerTX(numberOfTokens, MAX_PUBLIC_MINTS_PER_TX) { _safeMint(msg.sender, numberOfTokens); } function freeMint(uint256 numberOfTokens) external nonReentrant publicSaleActive canMintNFTs(numberOfTokens) maxMintsPerTX(numberOfTokens, MAX_FREE_MINTS_PER_TX) freeMintsAvailable(numberOfTokens) { _safeMint(msg.sender, numberOfTokens); } function withdraw(address _to) public onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _to.call{value: balance}(""); require(success, "Failed to send"); } // ============ FUNCTION OVERRIDES ============ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { // Get a reference to OpenSea's proxy registry contract by instantiating // the contract using the already existing address. ProxyRegistry proxyRegistry = ProxyRegistry(openSeaProxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), baseExtension ) ) : ""; } /** * @dev See {IERC165-royaltyInfo}. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) { require(_exists(tokenId), "Nonexistent token"); return (address(this), (salePrice * 690) / 10000); } } // These contract definitions are used to create a reference to the OpenSea // ProxyRegistry contract by using the registry's address (see isApprovedForAll). contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526000808055600755600a80546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c11790556103c0600b556102f8600c55600d805460ff191660011790553480156200005857600080fd5b506040518060400160405280600d81526020016c4b796c6572416e644a6573757360981b8152506040518060400160405280600381526020016225932560e91b815250606460008111620001025760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b8251620001179060019060208601906200019c565b5081516200012d9060029060208501906200019c565b50608052506200013f9050336200014a565b60016009556200027f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001aa9062000242565b90600052602060002090601f016020900481019282620001ce576000855562000219565b82601f10620001e957805160ff191683800117855562000219565b8280016001018555821562000219579182015b8281111562000219578251825591602001919060010190620001fc565b50620002279291506200022b565b5090565b5b808211156200022757600081556001016200022c565b600181811c908216806200025757607f821691505b602082108114156200027957634e487b7160e01b600052602260045260246000fd5b50919050565b6080516124f6620002a9600039600081816117b8015281816117e20152611c1801526124f66000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610567578063d7224ba01461057d578063e8a3d48514610593578063e985e9c5146105a8578063f2fde38b146105c857600080fd5b8063a22cb465146104d6578063b88d4fde146104f6578063c668286214610516578063c87b56dd1461054757600080fd5b80638da5cb5b116100dc5780638da5cb5b1461047a57806395d89b4114610498578063982d669e146104ad578063a0712d68146104c357600080fd5b80636c0360eb1461041057806370a0823114610425578063715018a6146104455780637c928fe91461045a57600080fd5b80632a55205a1161018557806342842e0e1161015457806342842e0e146103905780634f6ccce7146103b057806351cff8d9146103d05780636352211e146103f057600080fd5b80632a55205a1461031c5780632de54df81461035b5780632f745c5914610370578063305af4ff1461035b57600080fd5b8063095ea7b3116101c1578063095ea7b3146102ab57806318160ddd146102cd5780631e84c413146102e257806323b872dd146102fc57600080fd5b806301ffc9a7146101f357806306fdde031461022857806307e89ec01461024a578063081812fc14610273575b600080fd5b3480156101ff57600080fd5b5061021361020e366004612013565b6105e8565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610613565b60405161021f9190612151565b34801561025657600080fd5b50610265662386f26fc1000081565b60405190815260200161021f565b34801561027f57600080fd5b5061029361028e36600461206a565b6106a5565b6040516001600160a01b03909116815260200161021f565b3480156102b757600080fd5b506102cb6102c6366004611fe7565b610735565b005b3480156102d957600080fd5b50600054610265565b3480156102ee57600080fd5b50600d546102139060ff1681565b34801561030857600080fd5b506102cb610317366004611e93565b61084d565b34801561032857600080fd5b5061033c610337366004612083565b610858565b604080516001600160a01b03909316835260208301919091520161021f565b34801561036757600080fd5b50610265600a81565b34801561037c57600080fd5b5061026561038b366004611fe7565b6108cb565b34801561039c57600080fd5b506102cb6103ab366004611e93565b610a39565b3480156103bc57600080fd5b506102656103cb36600461206a565b610a54565b3480156103dc57600080fd5b506102cb6103eb366004611e36565b610ab6565b3480156103fc57600080fd5b5061029361040b36600461206a565b610b74565b34801561041c57600080fd5b5061023d610b86565b34801561043157600080fd5b50610265610440366004611e36565b610ba2565b34801561045157600080fd5b506102cb610c33565b34801561046657600080fd5b506102cb61047536600461206a565b610c69565b34801561048657600080fd5b506008546001600160a01b0316610293565b3480156104a457600080fd5b5061023d610de2565b3480156104b957600080fd5b50610265600c5481565b6102cb6104d136600461206a565b610df1565b3480156104e257600080fd5b506102cb6104f1366004611fb4565b610f74565b34801561050257600080fd5b506102cb610511366004611ed4565b611039565b34801561052257600080fd5b5061023d60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561055357600080fd5b5061023d61056236600461206a565b611072565b34801561057357600080fd5b50610265600b5481565b34801561058957600080fd5b5061026560075481565b34801561059f57600080fd5b5061023d611160565b3480156105b457600080fd5b506102136105c3366004611e5a565b61117c565b3480156105d457600080fd5b506102cb6105e3366004611e36565b61124c565b60006001600160e01b0319821663152a902d60e11b148061060d575061060d826112e7565b92915050565b60606001805461062290612368565b80601f016020809104026020016040519081016040528092919081815260200182805461064e90612368565b801561069b5780601f106106705761010080835404028352916020019161069b565b820191906000526020600020905b81548152906001019060200180831161067e57829003601f168201915b5050505050905090565b60006106b2826000541190565b6107195760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061074082610b74565b9050806001600160a01b0316836001600160a01b031614156107af5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610710565b336001600160a01b03821614806107cb57506107cb813361117c565b61083d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610710565b610848838383611352565b505050565b6108488383836113ae565b600080610866846000541190565b6108a65760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610710565b306127106108b6856102b26122c7565b6108c091906122b3565b915091509250929050565b60006108d683610ba2565b821061092f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610710565b600080549080805b838110156109d9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561098a57805192505b876001600160a01b0316836001600160a01b031614156109c657868414156109b85750935061060d92505050565b836109c2816123a3565b9450505b50806109d1816123a3565b915050610937565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610710565b61084883838360405180602001604052806000815250611039565b600080548210610ab25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610710565b5090565b6008546001600160a01b03163314610ae05760405162461bcd60e51b8152600401610710906121e8565b60405147906000906001600160a01b0384169083908381818185875af1925050503d8060008114610b2d576040519150601f19603f3d011682016040523d82523d6000602084013e610b32565b606091505b50509050806108485760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610710565b6000610b7f82611736565b5192915050565b6040518060600160405280603681526020016124566036913981565b60006001600160a01b038216610c0e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610710565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c5d5760405162461bcd60e51b8152600401610710906121e8565b610c6760006118e0565b565b60026009541415610cbc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610710565b6002600955600d5460ff16610d0d5760405162461bcd60e51b8152602060048201526017602482015276283ab13634b19039b0b6329034b9903737ba1037b832b760491b6044820152606401610710565b80600b5481610d1b60005490565b610d25919061229b565b1115610d435760405162461bcd60e51b815260040161071090612164565b81600a80821115610d665760405162461bcd60e51b8152600401610710906121a6565b83600c5481610d7460005490565b610d7e919061229b565b1115610dcc5760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e000000006044820152606401610710565b610dd63386611932565b50506001600955505050565b60606002805461062290612368565b60026009541415610e445760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610710565b6002600955600c54600054662386f26fc100009183911115610eb85734610e6b82846122c7565b14610eb85760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610710565b600d5460ff16610f045760405162461bcd60e51b8152602060048201526017602482015276283ab13634b19039b0b6329034b9903737ba1037b832b760491b6044820152606401610710565b82600b5481610f1260005490565b610f1c919061229b565b1115610f3a5760405162461bcd60e51b815260040161071090612164565b83600a80821115610f5d5760405162461bcd60e51b8152600401610710906121a6565b610f673387611932565b5050600160095550505050565b6001600160a01b038216331415610fcd5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610710565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110448484846113ae565b61105084848484611950565b61106c5760405162461bcd60e51b81526004016107109061221d565b50505050565b606061107f826000541190565b6110c35760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610710565b60006040518060600160405280603681526020016124566036913951116110f9576040518060200160405280600081525061060d565b6040518060600160405280603681526020016124566036913961111b83611a5d565b60405180604001604052806005815260200164173539b7b760d91b81525060405160200161114b939291906120d1565b60405160208183030381529060405292915050565b60405180606001604052806035815260200161248c6035913981565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156111c957600080fd5b505afa1580156111dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611201919061204d565b6001600160a01b0316141561121a57600191505061060d565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146112765760405162461bcd60e51b8152600401610710906121e8565b6001600160a01b0381166112db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610710565b6112e4816118e0565b50565b60006001600160e01b031982166380ac58cd60e01b148061131857506001600160e01b03198216635b5e139f60e01b145b8061133357506001600160e01b0319821663780e9d6360e01b145b8061060d57506301ffc9a760e01b6001600160e01b031983161461060d565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113b982611736565b80519091506000906001600160a01b0316336001600160a01b031614806113f05750336113e5846106a5565b6001600160a01b0316145b8061140257508151611402903361117c565b90508061146c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610710565b846001600160a01b031682600001516001600160a01b0316146114e05760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610710565b6001600160a01b0384166115445760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610710565b6115546000848460000151611352565b6001600160a01b03851660009081526004602052604081208054600192906115869084906001600160801b03166122e6565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926115d291859116612270565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561165a84600161229b565b6000818152600360205260409020549091506001600160a01b03166116ec57611684816000541190565b156116ec5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611755826000541190565b6117b45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610710565b60007f00000000000000000000000000000000000000000000000000000000000000008310611815576118077f00000000000000000000000000000000000000000000000000000000000000008461230e565b61181290600161229b565b90505b825b81811061187f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561186c57949350505050565b508061187781612351565b915050611817565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610710565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61194c828260405180602001604052806000815250611b5b565b5050565b60006001600160a01b0384163b15611a5257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611994903390899088908890600401612114565b602060405180830381600087803b1580156119ae57600080fd5b505af19250505080156119de575060408051601f3d908101601f191682019092526119db91810190612030565b60015b611a38573d808015611a0c576040519150601f19603f3d011682016040523d82523d6000602084013e611a11565b606091505b508051611a305760405162461bcd60e51b81526004016107109061221d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611244565b506001949350505050565b606081611a815750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aab5780611a95816123a3565b9150611aa49050600a836122b3565b9150611a85565b60008167ffffffffffffffff811115611ac657611ac6612414565b6040519080825280601f01601f191660200182016040528015611af0576020820181803683370190505b5090505b841561124457611b0560018361230e565b9150611b12600a866123be565b611b1d90603061229b565b60f81b818381518110611b3257611b326123fe565b60200101906001600160f81b031916908160001a905350611b54600a866122b3565b9450611af4565b6000546001600160a01b038416611bbe5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610710565b611bc9816000541190565b15611c165760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610710565b7f0000000000000000000000000000000000000000000000000000000000000000831115611c915760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610710565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611ced908790612270565b6001600160801b03168152602001858360200151611d0b9190612270565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e2b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611def6000888488611950565b611e0b5760405162461bcd60e51b81526004016107109061221d565b81611e15816123a3565b9250508080611e23906123a3565b915050611da2565b50600081905561172e565b600060208284031215611e4857600080fd5b8135611e538161242a565b9392505050565b60008060408385031215611e6d57600080fd5b8235611e788161242a565b91506020830135611e888161242a565b809150509250929050565b600080600060608486031215611ea857600080fd5b8335611eb38161242a565b92506020840135611ec38161242a565b929592945050506040919091013590565b60008060008060808587031215611eea57600080fd5b8435611ef58161242a565b93506020850135611f058161242a565b925060408501359150606085013567ffffffffffffffff80821115611f2957600080fd5b818701915087601f830112611f3d57600080fd5b813581811115611f4f57611f4f612414565b604051601f8201601f19908116603f01168101908382118183101715611f7757611f77612414565b816040528281528a6020848701011115611f9057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611fc757600080fd5b8235611fd28161242a565b915060208301358015158114611e8857600080fd5b60008060408385031215611ffa57600080fd5b82356120058161242a565b946020939093013593505050565b60006020828403121561202557600080fd5b8135611e538161243f565b60006020828403121561204257600080fd5b8151611e538161243f565b60006020828403121561205f57600080fd5b8151611e538161242a565b60006020828403121561207c57600080fd5b5035919050565b6000806040838503121561209657600080fd5b50508035926020909101359150565b600081518084526120bd816020860160208601612325565b601f01601f19169290920160200192915050565b600084516120e3818460208901612325565b8451908301906120f7818360208901612325565b845191019061210a818360208801612325565b0195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612147908301846120a5565b9695505050505050565b602081526000611e5360208301846120a5565b60208082526022908201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696040820152611b9d60f21b606082015260800190565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612292576122926123d2565b01949350505050565b600082198211156122ae576122ae6123d2565b500190565b6000826122c2576122c26123e8565b500490565b60008160001904831182151516156122e1576122e16123d2565b500290565b60006001600160801b0383811690831681811015612306576123066123d2565b039392505050565b600082821015612320576123206123d2565b500390565b60005b83811015612340578181015183820152602001612328565b8381111561106c5750506000910152565b600081612360576123606123d2565b506000190190565b600181811c9082168061237c57607f821691505b6020821081141561239d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123b7576123b76123d2565b5060010190565b6000826123cd576123cd6123e8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112e457600080fd5b6001600160e01b0319811681146112e457600080fdfe697066733a2f2f516d56385177656b375837473353686e645662676851546f6b39676e37446f476d6b387231426959706e783851742f697066733a2f2f516d616f42333753624e61693261645377706773764d3435756a3448737278386252545233336e485451614b685aa26469706673582212207700bbe216f70320d8bf6626bb0e5afc5e3e0d7dc7f690ae915251b1a431920864736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610567578063d7224ba01461057d578063e8a3d48514610593578063e985e9c5146105a8578063f2fde38b146105c857600080fd5b8063a22cb465146104d6578063b88d4fde146104f6578063c668286214610516578063c87b56dd1461054757600080fd5b80638da5cb5b116100dc5780638da5cb5b1461047a57806395d89b4114610498578063982d669e146104ad578063a0712d68146104c357600080fd5b80636c0360eb1461041057806370a0823114610425578063715018a6146104455780637c928fe91461045a57600080fd5b80632a55205a1161018557806342842e0e1161015457806342842e0e146103905780634f6ccce7146103b057806351cff8d9146103d05780636352211e146103f057600080fd5b80632a55205a1461031c5780632de54df81461035b5780632f745c5914610370578063305af4ff1461035b57600080fd5b8063095ea7b3116101c1578063095ea7b3146102ab57806318160ddd146102cd5780631e84c413146102e257806323b872dd146102fc57600080fd5b806301ffc9a7146101f357806306fdde031461022857806307e89ec01461024a578063081812fc14610273575b600080fd5b3480156101ff57600080fd5b5061021361020e366004612013565b6105e8565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610613565b60405161021f9190612151565b34801561025657600080fd5b50610265662386f26fc1000081565b60405190815260200161021f565b34801561027f57600080fd5b5061029361028e36600461206a565b6106a5565b6040516001600160a01b03909116815260200161021f565b3480156102b757600080fd5b506102cb6102c6366004611fe7565b610735565b005b3480156102d957600080fd5b50600054610265565b3480156102ee57600080fd5b50600d546102139060ff1681565b34801561030857600080fd5b506102cb610317366004611e93565b61084d565b34801561032857600080fd5b5061033c610337366004612083565b610858565b604080516001600160a01b03909316835260208301919091520161021f565b34801561036757600080fd5b50610265600a81565b34801561037c57600080fd5b5061026561038b366004611fe7565b6108cb565b34801561039c57600080fd5b506102cb6103ab366004611e93565b610a39565b3480156103bc57600080fd5b506102656103cb36600461206a565b610a54565b3480156103dc57600080fd5b506102cb6103eb366004611e36565b610ab6565b3480156103fc57600080fd5b5061029361040b36600461206a565b610b74565b34801561041c57600080fd5b5061023d610b86565b34801561043157600080fd5b50610265610440366004611e36565b610ba2565b34801561045157600080fd5b506102cb610c33565b34801561046657600080fd5b506102cb61047536600461206a565b610c69565b34801561048657600080fd5b506008546001600160a01b0316610293565b3480156104a457600080fd5b5061023d610de2565b3480156104b957600080fd5b50610265600c5481565b6102cb6104d136600461206a565b610df1565b3480156104e257600080fd5b506102cb6104f1366004611fb4565b610f74565b34801561050257600080fd5b506102cb610511366004611ed4565b611039565b34801561052257600080fd5b5061023d60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561055357600080fd5b5061023d61056236600461206a565b611072565b34801561057357600080fd5b50610265600b5481565b34801561058957600080fd5b5061026560075481565b34801561059f57600080fd5b5061023d611160565b3480156105b457600080fd5b506102136105c3366004611e5a565b61117c565b3480156105d457600080fd5b506102cb6105e3366004611e36565b61124c565b60006001600160e01b0319821663152a902d60e11b148061060d575061060d826112e7565b92915050565b60606001805461062290612368565b80601f016020809104026020016040519081016040528092919081815260200182805461064e90612368565b801561069b5780601f106106705761010080835404028352916020019161069b565b820191906000526020600020905b81548152906001019060200180831161067e57829003601f168201915b5050505050905090565b60006106b2826000541190565b6107195760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061074082610b74565b9050806001600160a01b0316836001600160a01b031614156107af5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610710565b336001600160a01b03821614806107cb57506107cb813361117c565b61083d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610710565b610848838383611352565b505050565b6108488383836113ae565b600080610866846000541190565b6108a65760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610710565b306127106108b6856102b26122c7565b6108c091906122b3565b915091509250929050565b60006108d683610ba2565b821061092f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610710565b600080549080805b838110156109d9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561098a57805192505b876001600160a01b0316836001600160a01b031614156109c657868414156109b85750935061060d92505050565b836109c2816123a3565b9450505b50806109d1816123a3565b915050610937565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610710565b61084883838360405180602001604052806000815250611039565b600080548210610ab25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610710565b5090565b6008546001600160a01b03163314610ae05760405162461bcd60e51b8152600401610710906121e8565b60405147906000906001600160a01b0384169083908381818185875af1925050503d8060008114610b2d576040519150601f19603f3d011682016040523d82523d6000602084013e610b32565b606091505b50509050806108485760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610710565b6000610b7f82611736565b5192915050565b6040518060600160405280603681526020016124566036913981565b60006001600160a01b038216610c0e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610710565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c5d5760405162461bcd60e51b8152600401610710906121e8565b610c6760006118e0565b565b60026009541415610cbc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610710565b6002600955600d5460ff16610d0d5760405162461bcd60e51b8152602060048201526017602482015276283ab13634b19039b0b6329034b9903737ba1037b832b760491b6044820152606401610710565b80600b5481610d1b60005490565b610d25919061229b565b1115610d435760405162461bcd60e51b815260040161071090612164565b81600a80821115610d665760405162461bcd60e51b8152600401610710906121a6565b83600c5481610d7460005490565b610d7e919061229b565b1115610dcc5760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e000000006044820152606401610710565b610dd63386611932565b50506001600955505050565b60606002805461062290612368565b60026009541415610e445760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610710565b6002600955600c54600054662386f26fc100009183911115610eb85734610e6b82846122c7565b14610eb85760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610710565b600d5460ff16610f045760405162461bcd60e51b8152602060048201526017602482015276283ab13634b19039b0b6329034b9903737ba1037b832b760491b6044820152606401610710565b82600b5481610f1260005490565b610f1c919061229b565b1115610f3a5760405162461bcd60e51b815260040161071090612164565b83600a80821115610f5d5760405162461bcd60e51b8152600401610710906121a6565b610f673387611932565b5050600160095550505050565b6001600160a01b038216331415610fcd5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610710565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110448484846113ae565b61105084848484611950565b61106c5760405162461bcd60e51b81526004016107109061221d565b50505050565b606061107f826000541190565b6110c35760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610710565b60006040518060600160405280603681526020016124566036913951116110f9576040518060200160405280600081525061060d565b6040518060600160405280603681526020016124566036913961111b83611a5d565b60405180604001604052806005815260200164173539b7b760d91b81525060405160200161114b939291906120d1565b60405160208183030381529060405292915050565b60405180606001604052806035815260200161248c6035913981565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156111c957600080fd5b505afa1580156111dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611201919061204d565b6001600160a01b0316141561121a57600191505061060d565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146112765760405162461bcd60e51b8152600401610710906121e8565b6001600160a01b0381166112db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610710565b6112e4816118e0565b50565b60006001600160e01b031982166380ac58cd60e01b148061131857506001600160e01b03198216635b5e139f60e01b145b8061133357506001600160e01b0319821663780e9d6360e01b145b8061060d57506301ffc9a760e01b6001600160e01b031983161461060d565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113b982611736565b80519091506000906001600160a01b0316336001600160a01b031614806113f05750336113e5846106a5565b6001600160a01b0316145b8061140257508151611402903361117c565b90508061146c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610710565b846001600160a01b031682600001516001600160a01b0316146114e05760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610710565b6001600160a01b0384166115445760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610710565b6115546000848460000151611352565b6001600160a01b03851660009081526004602052604081208054600192906115869084906001600160801b03166122e6565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926115d291859116612270565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561165a84600161229b565b6000818152600360205260409020549091506001600160a01b03166116ec57611684816000541190565b156116ec5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611755826000541190565b6117b45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610710565b60007f00000000000000000000000000000000000000000000000000000000000000648310611815576118077f00000000000000000000000000000000000000000000000000000000000000648461230e565b61181290600161229b565b90505b825b81811061187f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561186c57949350505050565b508061187781612351565b915050611817565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610710565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61194c828260405180602001604052806000815250611b5b565b5050565b60006001600160a01b0384163b15611a5257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611994903390899088908890600401612114565b602060405180830381600087803b1580156119ae57600080fd5b505af19250505080156119de575060408051601f3d908101601f191682019092526119db91810190612030565b60015b611a38573d808015611a0c576040519150601f19603f3d011682016040523d82523d6000602084013e611a11565b606091505b508051611a305760405162461bcd60e51b81526004016107109061221d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611244565b506001949350505050565b606081611a815750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aab5780611a95816123a3565b9150611aa49050600a836122b3565b9150611a85565b60008167ffffffffffffffff811115611ac657611ac6612414565b6040519080825280601f01601f191660200182016040528015611af0576020820181803683370190505b5090505b841561124457611b0560018361230e565b9150611b12600a866123be565b611b1d90603061229b565b60f81b818381518110611b3257611b326123fe565b60200101906001600160f81b031916908160001a905350611b54600a866122b3565b9450611af4565b6000546001600160a01b038416611bbe5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610710565b611bc9816000541190565b15611c165760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610710565b7f0000000000000000000000000000000000000000000000000000000000000064831115611c915760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610710565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611ced908790612270565b6001600160801b03168152602001858360200151611d0b9190612270565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e2b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611def6000888488611950565b611e0b5760405162461bcd60e51b81526004016107109061221d565b81611e15816123a3565b9250508080611e23906123a3565b915050611da2565b50600081905561172e565b600060208284031215611e4857600080fd5b8135611e538161242a565b9392505050565b60008060408385031215611e6d57600080fd5b8235611e788161242a565b91506020830135611e888161242a565b809150509250929050565b600080600060608486031215611ea857600080fd5b8335611eb38161242a565b92506020840135611ec38161242a565b929592945050506040919091013590565b60008060008060808587031215611eea57600080fd5b8435611ef58161242a565b93506020850135611f058161242a565b925060408501359150606085013567ffffffffffffffff80821115611f2957600080fd5b818701915087601f830112611f3d57600080fd5b813581811115611f4f57611f4f612414565b604051601f8201601f19908116603f01168101908382118183101715611f7757611f77612414565b816040528281528a6020848701011115611f9057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611fc757600080fd5b8235611fd28161242a565b915060208301358015158114611e8857600080fd5b60008060408385031215611ffa57600080fd5b82356120058161242a565b946020939093013593505050565b60006020828403121561202557600080fd5b8135611e538161243f565b60006020828403121561204257600080fd5b8151611e538161243f565b60006020828403121561205f57600080fd5b8151611e538161242a565b60006020828403121561207c57600080fd5b5035919050565b6000806040838503121561209657600080fd5b50508035926020909101359150565b600081518084526120bd816020860160208601612325565b601f01601f19169290920160200192915050565b600084516120e3818460208901612325565b8451908301906120f7818360208901612325565b845191019061210a818360208801612325565b0195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612147908301846120a5565b9695505050505050565b602081526000611e5360208301846120a5565b60208082526022908201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696040820152611b9d60f21b606082015260800190565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612292576122926123d2565b01949350505050565b600082198211156122ae576122ae6123d2565b500190565b6000826122c2576122c26123e8565b500490565b60008160001904831182151516156122e1576122e16123d2565b500290565b60006001600160801b0383811690831681811015612306576123066123d2565b039392505050565b600082821015612320576123206123d2565b500390565b60005b83811015612340578181015183820152602001612328565b8381111561106c5750506000910152565b600081612360576123606123d2565b506000190190565b600181811c9082168061237c57607f821691505b6020821081141561239d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123b7576123b76123d2565b5060010190565b6000826123cd576123cd6123e8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112e457600080fd5b6001600160e01b0319811681146112e457600080fdfe697066733a2f2f516d56385177656b375837473353686e645662676851546f6b39676e37446f476d6b387231426959706e783851742f697066733a2f2f516d616f42333753624e61693261645377706773764d3435756a3448737278386252545233336e485451614b685aa26469706673582212207700bbe216f70320d8bf6626bb0e5afc5e3e0d7dc7f690ae915251b1a431920864736f6c63430008070033
Deployed Bytecode Sourcemap
42639:4842:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45661:292;;;;;;;;;;-1:-1:-1;45661:292:0;;;;;:::i;:::-;;:::i;:::-;;;6645:14:1;;6638:22;6620:41;;6608:2;6593:18;45661:292:0;;;;;;;;32147:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43372:54::-;;;;;;;;;;;;43416:10;43372:54;;;;;17951:25:1;;;17939:2;17924:18;43372:54:0;17805:177:1;33672:204:0;;;;;;;;;;-1:-1:-1;33672:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5664:32:1;;;5646:51;;5634:2;5619:18;33672:204:0;5500:203:1;33235:379:0;;;;;;;;;;-1:-1:-1;33235:379:0;;;;;:::i;:::-;;:::i;:::-;;28985:94;;;;;;;;;;-1:-1:-1;29038:7:0;29061:12;28985:94;;43475:37;;;;;;;;;;-1:-1:-1;43475:37:0;;;;;;;;34522:142;;;;;;;;;;-1:-1:-1;34522:142:0;;;;;:::i;:::-;;:::i;47174:304::-;;;;;;;;;;-1:-1:-1;47174:304:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6393:32:1;;;6375:51;;6457:2;6442:18;;6435:34;;;;6348:18;47174:304:0;6201:274:1;43274:52:0;;;;;;;;;;;;43324:2;43274:52;;29613:744;;;;;;;;;;-1:-1:-1;29613:744:0;;;;;:::i;:::-;;:::i;34727:157::-;;;;;;;;;;-1:-1:-1;34727:157:0;;;;;:::i;:::-;;:::i;29148:177::-;;;;;;;;;;-1:-1:-1;29148:177:0;;;;;:::i;:::-;;:::i;45389:209::-;;;;;;;;;;-1:-1:-1;45389:209:0;;;;;:::i;:::-;;:::i;31970:118::-;;;;;;;;;;-1:-1:-1;31970:118:0;;;;;:::i;:::-;;:::i;42750:89::-;;;;;;;;;;;;;:::i;30847:211::-;;;;;;;;;;-1:-1:-1;30847:211:0;;;;;:::i;:::-;;:::i;2690:103::-;;;;;;;;;;;;;:::i;45069:312::-;;;;;;;;;;-1:-1:-1;45069:312:0;;;;;:::i;:::-;;:::i;2039:87::-;;;;;;;;;;-1:-1:-1;2112:6:0;;-1:-1:-1;;;;;2112:6:0;2039:87;;32302:98;;;;;;;;;;;;;:::i;43433:35::-;;;;;;;;;;;;;;;;44717:344;;;;;;:::i;:::-;;:::i;33940:274::-;;;;;;;;;;-1:-1:-1;33940:274:0;;;;;:::i;:::-;;:::i;34947:311::-;;;;;;;;;;-1:-1:-1;34947:311:0;;;;;:::i;:::-;;:::i;42945:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;42945:46:0;;;;;46694:413;;;;;;;;;;-1:-1:-1;46694:413:0;;;;;:::i;:::-;;:::i;43333:30::-;;;;;;;;;;;;;;;;39278:43;;;;;;;;;;;;;;;;42846:92;;;;;;;;;;;;;:::i;46090:532::-;;;;;;;;;;-1:-1:-1;46090:532:0;;;;;:::i;:::-;;:::i;2948:201::-;;;;;;;;;;-1:-1:-1;2948:201:0;;;;;:::i;:::-;;:::i;45661:292::-;45809:4;-1:-1:-1;;;;;;45851:41:0;;-1:-1:-1;;;45851:41:0;;:94;;;45909:36;45933:11;45909:23;:36::i;:::-;45831:114;45661:292;-1:-1:-1;;45661:292:0:o;32147:94::-;32201:13;32230:5;32223:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32147:94;:::o;33672:204::-;33740:7;33764:16;33772:7;35554:4;35584:12;-1:-1:-1;35574:22:0;35497:105;33764:16;33756:74;;;;-1:-1:-1;;;33756:74:0;;17190:2:1;33756:74:0;;;17172:21:1;17229:2;17209:18;;;17202:30;17268:34;17248:18;;;17241:62;-1:-1:-1;;;17319:18:1;;;17312:43;17372:19;;33756:74:0;;;;;;;;;-1:-1:-1;33846:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33846:24:0;;33672:204::o;33235:379::-;33304:13;33320:24;33336:7;33320:15;:24::i;:::-;33304:40;;33365:5;-1:-1:-1;;;;;33359:11:0;:2;-1:-1:-1;;;;;33359:11:0;;;33351:58;;;;-1:-1:-1;;;33351:58:0;;13011:2:1;33351:58:0;;;12993:21:1;13050:2;13030:18;;;13023:30;13089:34;13069:18;;;13062:62;-1:-1:-1;;;13140:18:1;;;13133:32;13182:19;;33351:58:0;12809:398:1;33351:58:0;860:10;-1:-1:-1;;;;;33434:21:0;;;;:62;;-1:-1:-1;33459:37:0;33476:5;860:10;46090:532;:::i;33459:37::-;33418:153;;;;-1:-1:-1;;;33418:153:0;;10281:2:1;33418:153:0;;;10263:21:1;10320:2;10300:18;;;10293:30;10359:34;10339:18;;;10332:62;10430:27;10410:18;;;10403:55;10475:19;;33418:153:0;10079:421:1;33418:153:0;33580:28;33589:2;33593:7;33602:5;33580:8;:28::i;:::-;33297:317;33235:379;;:::o;34522:142::-;34630:28;34640:4;34646:2;34650:7;34630:9;:28::i;47174:304::-;47303:16;47321:21;47370:16;47378:7;35554:4;35584:12;-1:-1:-1;35574:22:0;35497:105;47370:16;47362:46;;;;-1:-1:-1;;;47362:46:0;;9935:2:1;47362:46:0;;;9917:21:1;9974:2;9954:18;;;9947:30;-1:-1:-1;;;9993:18:1;;;9986:47;10050:18;;47362:46:0;9733:341:1;47362:46:0;47436:4;47463:5;47444:15;:9;47456:3;47444:15;:::i;:::-;47443:25;;;;:::i;:::-;47420:49;;;;47174:304;;;;;:::o;29613:744::-;29722:7;29757:16;29767:5;29757:9;:16::i;:::-;29749:5;:24;29741:71;;;;-1:-1:-1;;;29741:71:0;;7098:2:1;29741:71:0;;;7080:21:1;7137:2;7117:18;;;7110:30;7176:34;7156:18;;;7149:62;-1:-1:-1;;;7227:18:1;;;7220:32;7269:19;;29741:71:0;6896:398:1;29741:71:0;29819:22;29061:12;;;29819:22;;29939:350;29963:14;29959:1;:18;29939:350;;;29993:31;30027:14;;;:11;:14;;;;;;;;;29993:48;;;;;;;;;-1:-1:-1;;;;;29993:48:0;;;;;-1:-1:-1;;;29993:48:0;;;;;;;;;;;;30054:28;30050:89;;30115:14;;;-1:-1:-1;30050:89:0;30172:5;-1:-1:-1;;;;;30151:26:0;:17;-1:-1:-1;;;;;30151:26:0;;30147:135;;;30209:5;30194:11;:20;30190:59;;;-1:-1:-1;30236:1:0;-1:-1:-1;30229:8:0;;-1:-1:-1;;;30229:8:0;30190:59;30259:13;;;;:::i;:::-;;;;30147:135;-1:-1:-1;29979:3:0;;;;:::i;:::-;;;;29939:350;;;-1:-1:-1;30295:56:0;;-1:-1:-1;;;30295:56:0;;15647:2:1;30295:56:0;;;15629:21:1;15686:2;15666:18;;;15659:30;15725:34;15705:18;;;15698:62;-1:-1:-1;;;15776:18:1;;;15769:44;15830:19;;30295:56:0;15445:410:1;34727:157:0;34839:39;34856:4;34862:2;34866:7;34839:39;;;;;;;;;;;;:16;:39::i;29148:177::-;29215:7;29061:12;;29239:5;:21;29231:69;;;;-1:-1:-1;;;29231:69:0;;8319:2:1;29231:69:0;;;8301:21:1;8358:2;8338:18;;;8331:30;8397:34;8377:18;;;8370:62;-1:-1:-1;;;8448:18:1;;;8441:33;8491:19;;29231:69:0;8117:399:1;29231:69:0;-1:-1:-1;29314:5:0;29148:177::o;45389:209::-;2112:6;;-1:-1:-1;;;;;2112:6:0;860:10;2259:23;2251:68;;;;-1:-1:-1;;;2251:68:0;;;;;;;:::i;:::-;45517:28:::1;::::0;45466:21:::1;::::0;45448:15:::1;::::0;-1:-1:-1;;;;;45517:8:0;::::1;::::0;45466:21;;45448:15;45517:28;45448:15;45517:28;45466:21;45517:8;:28:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45498:47;;;45564:7;45556:34;;;::::0;-1:-1:-1;;;45556:34:0;;14951:2:1;45556:34:0::1;::::0;::::1;14933:21:1::0;14990:2;14970:18;;;14963:30;-1:-1:-1;;;15009:18:1;;;15002:44;15063:18;;45556:34:0::1;14749:338:1::0;31970:118:0;32034:7;32057:20;32069:7;32057:11;:20::i;:::-;:25;;31970:118;-1:-1:-1;;31970:118:0:o;42750:89::-;;;;;;;;;;;;;;;;;;;:::o;30847:211::-;30911:7;-1:-1:-1;;;;;30935:19:0;;30927:75;;;;-1:-1:-1;;;30927:75:0;;10707:2:1;30927:75:0;;;10689:21:1;10746:2;10726:18;;;10719:30;10785:34;10765:18;;;10758:62;-1:-1:-1;;;10836:18:1;;;10829:41;10887:19;;30927:75:0;10505:407:1;30927:75:0;-1:-1:-1;;;;;;31024:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31024:27:0;;30847:211::o;2690:103::-;2112:6;;-1:-1:-1;;;;;2112:6:0;860:10;2259:23;2251:68;;;;-1:-1:-1;;;2251:68:0;;;;;;;:::i;:::-;2755:30:::1;2782:1;2755:18;:30::i;:::-;2690:103::o:0;45069:312::-;9249:1;9847:7;;:19;;9839:63;;;;-1:-1:-1;;;9839:63:0;;16062:2:1;9839:63:0;;;16044:21:1;16101:2;16081:18;;;16074:30;16140:33;16120:18;;;16113:61;16191:18;;9839:63:0;15860:355:1;9839:63:0;9249:1;9980:7;:18;43636::::1;::::0;::::1;;43628:54;;;::::0;-1:-1:-1;;;43628:54:0;;16838:2:1;43628:54:0::1;::::0;::::1;16820:21:1::0;16877:2;16857:18;;;16850:30;-1:-1:-1;;;16896:18:1;;;16889:53;16959:18;;43628:54:0::1;16636:347:1::0;43628:54:0::1;45198:14:::2;44052:9;;44034:14;44018:13;29038:7:::0;29061:12;;28985:94;44018:13:::2;:30;;;;:::i;:::-;:43;;43996:127;;;;-1:-1:-1::0;;;43996:127:0::2;;;;;;;:::i;:::-;45237:14:::3;43265:2;43834:16;43816:14;:34;;43794:118;;;;-1:-1:-1::0;;;43794:118:0::3;;;;;;;:::i;:::-;45304:14:::4;44270;;44252;44236:13;29038:7:::0;29061:12;;28985:94;44236:13:::4;:30;;;;:::i;:::-;:48;;44214:126;;;::::0;-1:-1:-1;;;44214:126:0;;14594:2:1;44214:126:0::4;::::0;::::4;14576:21:1::0;14633:2;14613:18;;;14606:30;14672;14652:18;;;14645:58;14720:18;;44214:126:0::4;14392:352:1::0;44214:126:0::4;45336:37:::5;45346:10;45358:14;45336:9;:37::i;:::-;-1:-1:-1::0;;9205:1:0;10159:7;:22;-1:-1:-1;;;45069:312:0:o;32302:98::-;32358:13;32387:7;32380:14;;;;;:::i;44717:344::-;9249:1;9847:7;;:19;;9839:63;;;;-1:-1:-1;;;9839:63:0;;16062:2:1;9839:63:0;;;16044:21:1;16101:2;16081:18;;;16074:30;16140:33;16120:18;;;16113:61;16191:18;;9839:63:0;15860:355:1;9839:63:0;9249:1;9980:7;:18;44463:14:::1;::::0;29038:7;29061:12;43416:10:::1;::::0;44857:14;;44447:30:::1;44444:184;;;44547:9;44520:22;44528:14:::0;44520:5;:22:::1;:::i;:::-;44519:37;44493:123;;;::::0;-1:-1:-1;;;44493:123:0;;15294:2:1;44493:123:0::1;::::0;::::1;15276:21:1::0;15333:2;15313:18;;;15306:30;15372:26;15352:18;;;15345:54;15416:18;;44493:123:0::1;15092:348:1::0;44493:123:0::1;43636:18:::2;::::0;::::2;;43628:54;;;::::0;-1:-1:-1;;;43628:54:0;;16838:2:1;43628:54:0::2;::::0;::::2;16820:21:1::0;16877:2;16857:18;;;16850:30;-1:-1:-1;;;16896:18:1;;;16889:53;16959:18;;43628:54:0::2;16636:347:1::0;43628:54:0::2;44920:14:::3;44052:9;;44034:14;44018:13;29038:7:::0;29061:12;;28985:94;44018:13:::3;:30;;;;:::i;:::-;:43;;43996:127;;;;-1:-1:-1::0;;;43996:127:0::3;;;;;;;:::i;:::-;44959:14:::4;43324:2;43834:16;43816:14;:34;;43794:118;;;;-1:-1:-1::0;;;43794:118:0::4;;;;;;;:::i;:::-;45016:37:::5;45026:10;45038:14;45016:9;:37::i;:::-;-1:-1:-1::0;;9205:1:0;10159:7;:22;-1:-1:-1;;;;44717:344:0:o;33940:274::-;-1:-1:-1;;;;;34031:24:0;;860:10;34031:24;;34023:63;;;;-1:-1:-1;;;34023:63:0;;12237:2:1;34023:63:0;;;12219:21:1;12276:2;12256:18;;;12249:30;12315:28;12295:18;;;12288:56;12361:18;;34023:63:0;12035:350:1;34023:63:0;860:10;34095:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34095:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34095:53:0;;;;;;;;;;34160:48;;6620:41:1;;;34095:42:0;;860:10;34160:48;;6593:18:1;34160:48:0;;;;;;;33940:274;;:::o;34947:311::-;35084:28;35094:4;35100:2;35104:7;35084:9;:28::i;:::-;35135:48;35158:4;35164:2;35168:7;35177:5;35135:22;:48::i;:::-;35119:133;;;;-1:-1:-1;;;35119:133:0;;;;;;;:::i;:::-;34947:311;;;;:::o;46694:413::-;46796:13;46837:17;46845:8;35554:4;35584:12;-1:-1:-1;35574:22:0;35497:105;46837:17;46829:51;;;;-1:-1:-1;;;46829:51:0;;11119:2:1;46829:51:0;;;11101:21:1;11158:2;11138:18;;;11131:30;-1:-1:-1;;;11177:18:1;;;11170:51;11238:18;;46829:51:0;10917:345:1;46829:51:0;46923:1;46905:7;;;;;;;;;;;;;;;;;46899:21;:25;:199;;;;;;;;;;;;;;;;;46983:7;;;;;;;;;;;;;;;;;47008:26;47025:8;47008:16;:26::i;:::-;47052:13;;;;;;;;;;;;;-1:-1:-1;;;47052:13:0;;;46949:132;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46892:206;46694:413;-1:-1:-1;;46694:413:0:o;42846:92::-;;;;;;;;;;;;;;;;;;;:::o;46090:532::-;46424:27;;46475:28;;-1:-1:-1;;;46475:28:0;;-1:-1:-1;;;;;5664:32:1;;;46475:28:0;;;5646:51:1;46215:4:0;;46424:27;;;46467:49;;;;46424:27;;46475:21;;5619:18:1;;46475:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46467:49:0;;46463:93;;;46540:4;46533:11;;;;;46463:93;-1:-1:-1;;;;;34422:25:0;;;34399:4;34422:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46575:39;46568:46;46090:532;-1:-1:-1;;;;46090:532:0:o;2948:201::-;2112:6;;-1:-1:-1;;;;;2112:6:0;860:10;2259:23;2251:68;;;;-1:-1:-1;;;2251:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3037:22:0;::::1;3029:73;;;::::0;-1:-1:-1;;;3029:73:0;;7501:2:1;3029:73:0::1;::::0;::::1;7483:21:1::0;7540:2;7520:18;;;7513:30;7579:34;7559:18;;;7552:62;-1:-1:-1;;;7630:18:1;;;7623:36;7676:19;;3029:73:0::1;7299:402:1::0;3029:73:0::1;3113:28;3132:8;3113:18;:28::i;:::-;2948:201:::0;:::o;30421:370::-;30548:4;-1:-1:-1;;;;;;30578:40:0;;-1:-1:-1;;;30578:40:0;;:99;;-1:-1:-1;;;;;;;30629:48:0;;-1:-1:-1;;;30629:48:0;30578:99;:160;;;-1:-1:-1;;;;;;;30688:50:0;;-1:-1:-1;;;30688:50:0;30578:160;:207;;;-1:-1:-1;;;;;;;;;;27002:40:0;;;30749:36;26893:157;39100:172;39197:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39197:29:0;-1:-1:-1;;;;;39197:29:0;;;;;;;;;39238:28;;39197:24;;39238:28;;;;;;;39100:172;;;:::o;37465:1529::-;37562:35;37600:20;37612:7;37600:11;:20::i;:::-;37671:18;;37562:58;;-1:-1:-1;37629:22:0;;-1:-1:-1;;;;;37655:34:0;860:10;-1:-1:-1;;;;;37655:34:0;;:81;;;-1:-1:-1;860:10:0;37700:20;37712:7;37700:11;:20::i;:::-;-1:-1:-1;;;;;37700:36:0;;37655:81;:142;;;-1:-1:-1;37764:18:0;;37747:50;;860:10;46090:532;:::i;37747:50::-;37629:169;;37823:17;37807:101;;;;-1:-1:-1;;;37807:101:0;;12592:2:1;37807:101:0;;;12574:21:1;12631:2;12611:18;;;12604:30;12670:34;12650:18;;;12643:62;-1:-1:-1;;;12721:18:1;;;12714:48;12779:19;;37807:101:0;12390:414:1;37807:101:0;37955:4;-1:-1:-1;;;;;37933:26:0;:13;:18;;;-1:-1:-1;;;;;37933:26:0;;37917:98;;;;-1:-1:-1;;;37917:98:0;;11469:2:1;37917:98:0;;;11451:21:1;11508:2;11488:18;;;11481:30;11547:34;11527:18;;;11520:62;-1:-1:-1;;;11598:18:1;;;11591:36;11644:19;;37917:98:0;11267:402:1;37917:98:0;-1:-1:-1;;;;;38030:16:0;;38022:66;;;;-1:-1:-1;;;38022:66:0;;9126:2:1;38022:66:0;;;9108:21:1;9165:2;9145:18;;;9138:30;9204:34;9184:18;;;9177:62;-1:-1:-1;;;9255:18:1;;;9248:35;9300:19;;38022:66:0;8924:401:1;38022:66:0;38197:49;38214:1;38218:7;38227:13;:18;;;38197:8;:49::i;:::-;-1:-1:-1;;;;;38255:18:0;;;;;;:12;:18;;;;;:31;;38285:1;;38255:18;:31;;38285:1;;-1:-1:-1;;;;;38255:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;38255:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38293:16:0;;-1:-1:-1;38293:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;38293:16:0;;:29;;-1:-1:-1;;38293:29:0;;:::i;:::-;;;-1:-1:-1;;;;;38293:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38352:43:0;;;;;;;;-1:-1:-1;;;;;38352:43:0;;;;;;38378:15;38352:43;;;;;;;;;-1:-1:-1;38329:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;38329:66:0;-1:-1:-1;;;;;;38329:66:0;;;;;;;;;;;38645:11;38341:7;-1:-1:-1;38645:11:0;:::i;:::-;38708:1;38667:24;;;:11;:24;;;;;:29;38623:33;;-1:-1:-1;;;;;;38667:29:0;38663:236;;38725:20;38733:11;35554:4;35584:12;-1:-1:-1;35574:22:0;35497:105;38725:20;38721:171;;;38785:97;;;;;;;;38812:18;;-1:-1:-1;;;;;38785:97:0;;;;;;38843:28;;;;38785:97;;;;;;;;;;-1:-1:-1;38758:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38758:124:0;-1:-1:-1;;;;;;38758:124:0;;;;;;;;;;;;38721:171;38931:7;38927:2;-1:-1:-1;;;;;38912:27:0;38921:4;-1:-1:-1;;;;;38912:27:0;;;;;;;;;;;38946:42;37555:1439;;;37465:1529;;;:::o;31310:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;31427:16:0;31435:7;35554:4;35584:12;-1:-1:-1;35574:22:0;35497:105;31427:16;31419:71;;;;-1:-1:-1;;;31419:71:0;;7908:2:1;31419:71:0;;;7890:21:1;7947:2;7927:18;;;7920:30;7986:34;7966:18;;;7959:62;-1:-1:-1;;;8037:18:1;;;8030:40;8087:19;;31419:71:0;7706:406:1;31419:71:0;31499:26;31547:12;31536:7;:23;31532:93;;31591:22;31601:12;31591:7;:22;:::i;:::-;:26;;31616:1;31591:26;:::i;:::-;31570:47;;31532:93;31653:7;31633:212;31670:18;31662:4;:26;31633:212;;31707:31;31741:17;;;:11;:17;;;;;;;;;31707:51;;;;;;;;;-1:-1:-1;;;;;31707:51:0;;;;;-1:-1:-1;;;31707:51:0;;;;;;;;;;;;31771:28;31767:71;;31819:9;31310:606;-1:-1:-1;;;;31310:606:0:o;31767:71::-;-1:-1:-1;31690:6:0;;;;:::i;:::-;;;;31633:212;;;-1:-1:-1;31853:57:0;;-1:-1:-1;;;31853:57:0;;16422:2:1;31853:57:0;;;16404:21:1;16461:2;16441:18;;;16434:30;16500:34;16480:18;;;16473:62;-1:-1:-1;;;16551:18:1;;;16544:45;16606:19;;31853:57:0;16220:411:1;3309:191:0;3402:6;;;-1:-1:-1;;;;;3419:17:0;;;-1:-1:-1;;;;;;3419:17:0;;;;;;;3452:40;;3402:6;;;3419:17;3402:6;;3452:40;;3383:16;;3452:40;3372:128;3309:191;:::o;35608:98::-;35673:27;35683:2;35687:8;35673:27;;;;;;;;;;;;:9;:27::i;:::-;35608:98;;:::o;40811:690::-;40948:4;-1:-1:-1;;;;;40965:13:0;;19037:20;19085:8;40961:535;;41004:72;;-1:-1:-1;;;41004:72:0;;-1:-1:-1;;;;;41004:36:0;;;;;:72;;860:10;;41055:4;;41061:7;;41070:5;;41004:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41004:72:0;;;;;;;;-1:-1:-1;;41004:72:0;;;;;;;;;;;;:::i;:::-;;;40991:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41235:13:0;;41231:215;;41268:61;;-1:-1:-1;;;41268:61:0;;;;;;;:::i;41231:215::-;41414:6;41408:13;41399:6;41395:2;41391:15;41384:38;40991:464;-1:-1:-1;;;;;;41126:55:0;-1:-1:-1;;;41126:55:0;;-1:-1:-1;41119:62:0;;40961:535;-1:-1:-1;41484:4:0;40811:690;;;;;;:::o;3857:723::-;3913:13;4134:10;4130:53;;-1:-1:-1;;4161:10:0;;;;;;;;;;;;-1:-1:-1;;;4161:10:0;;;;;3857:723::o;4130:53::-;4208:5;4193:12;4249:78;4256:9;;4249:78;;4282:8;;;;:::i;:::-;;-1:-1:-1;4305:10:0;;-1:-1:-1;4313:2:0;4305:10;;:::i;:::-;;;4249:78;;;4337:19;4369:6;4359:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4359:17:0;;4337:39;;4387:154;4394:10;;4387:154;;4421:11;4431:1;4421:11;;:::i;:::-;;-1:-1:-1;4490:10:0;4498:2;4490:5;:10;:::i;:::-;4477:24;;:2;:24;:::i;:::-;4464:39;;4447:6;4454;4447:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4447:56:0;;;;;;;;-1:-1:-1;4518:11:0;4527:2;4518:11;;:::i;:::-;;;4387:154;;35961:1272;36066:20;36089:12;-1:-1:-1;;;;;36116:16:0;;36108:62;;;;-1:-1:-1;;;36108:62:0;;14192:2:1;36108:62:0;;;14174:21:1;14231:2;14211:18;;;14204:30;14270:34;14250:18;;;14243:62;-1:-1:-1;;;14321:18:1;;;14314:31;14362:19;;36108:62:0;13990:397:1;36108:62:0;36307:21;36315:12;35554:4;35584:12;-1:-1:-1;35574:22:0;35497:105;36307:21;36306:22;36298:64;;;;-1:-1:-1;;;36298:64:0;;13834:2:1;36298:64:0;;;13816:21:1;13873:2;13853:18;;;13846:30;13912:31;13892:18;;;13885:59;13961:18;;36298:64:0;13632:353:1;36298:64:0;36389:12;36377:8;:24;;36369:71;;;;-1:-1:-1;;;36369:71:0;;17604:2:1;36369:71:0;;;17586:21:1;17643:2;17623:18;;;17616:30;17682:34;17662:18;;;17655:62;-1:-1:-1;;;17733:18:1;;;17726:32;17775:19;;36369:71:0;17402:398:1;36369:71:0;-1:-1:-1;;;;;36552:16:0;;36519:30;36552:16;;;:12;:16;;;;;;;;;36519:49;;;;;;;;;-1:-1:-1;;;;;36519:49:0;;;;;-1:-1:-1;;;36519:49:0;;;;;;;;;;;36594:119;;;;;;;;36614:19;;36519:49;;36594:119;;;36614:39;;36644:8;;36614:39;:::i;:::-;-1:-1:-1;;;;;36594:119:0;;;;;36697:8;36662:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36594:119:0;;;;;;-1:-1:-1;;;;;36575:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36575:138:0;;;;;;;;;;;;36748:43;;;;;;;;;;;36774:15;36748:43;;;;;;;;36720:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36720:71:0;-1:-1:-1;;;;;;36720:71:0;;;;;;;;;;;;;;;;;;36732:12;;36844:281;36868:8;36864:1;:12;36844:281;;;36897:38;;36922:12;;-1:-1:-1;;;;;36897:38:0;;;36914:1;;36897:38;;36914:1;;36897:38;36962:59;36993:1;36997:2;37001:12;37015:5;36962:22;:59::i;:::-;36944:150;;;;-1:-1:-1;;;36944:150:0;;;;;;;:::i;:::-;37103:14;;;;:::i;:::-;;;;36878:3;;;;;:::i;:::-;;;;36844:281;;;-1:-1:-1;37133:12:0;:27;;;37167:60;34947:311;14:247:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;:::-;250:5;14:247;-1:-1:-1;;;14:247:1:o;266:388::-;334:6;342;395:2;383:9;374:7;370:23;366:32;363:52;;;411:1;408;401:12;363:52;450:9;437:23;469:31;494:5;469:31;:::i;:::-;519:5;-1:-1:-1;576:2:1;561:18;;548:32;589:33;548:32;589:33;:::i;:::-;641:7;631:17;;;266:388;;;;;:::o;659:456::-;736:6;744;752;805:2;793:9;784:7;780:23;776:32;773:52;;;821:1;818;811:12;773:52;860:9;847:23;879:31;904:5;879:31;:::i;:::-;929:5;-1:-1:-1;986:2:1;971:18;;958:32;999:33;958:32;999:33;:::i;:::-;659:456;;1051:7;;-1:-1:-1;;;1105:2:1;1090:18;;;;1077:32;;659:456::o;1120:1266::-;1215:6;1223;1231;1239;1292:3;1280:9;1271:7;1267:23;1263:33;1260:53;;;1309:1;1306;1299:12;1260:53;1348:9;1335:23;1367:31;1392:5;1367:31;:::i;:::-;1417:5;-1:-1:-1;1474:2:1;1459:18;;1446:32;1487:33;1446:32;1487:33;:::i;:::-;1539:7;-1:-1:-1;1593:2:1;1578:18;;1565:32;;-1:-1:-1;1648:2:1;1633:18;;1620:32;1671:18;1701:14;;;1698:34;;;1728:1;1725;1718:12;1698:34;1766:6;1755:9;1751:22;1741:32;;1811:7;1804:4;1800:2;1796:13;1792:27;1782:55;;1833:1;1830;1823:12;1782:55;1869:2;1856:16;1891:2;1887;1884:10;1881:36;;;1897:18;;:::i;:::-;1972:2;1966:9;1940:2;2026:13;;-1:-1:-1;;2022:22:1;;;2046:2;2018:31;2014:40;2002:53;;;2070:18;;;2090:22;;;2067:46;2064:72;;;2116:18;;:::i;:::-;2156:10;2152:2;2145:22;2191:2;2183:6;2176:18;2231:7;2226:2;2221;2217;2213:11;2209:20;2206:33;2203:53;;;2252:1;2249;2242:12;2203:53;2308:2;2303;2299;2295:11;2290:2;2282:6;2278:15;2265:46;2353:1;2348:2;2343;2335:6;2331:15;2327:24;2320:35;2374:6;2364:16;;;;;;;1120:1266;;;;;;;:::o;2391:416::-;2456:6;2464;2517:2;2505:9;2496:7;2492:23;2488:32;2485:52;;;2533:1;2530;2523:12;2485:52;2572:9;2559:23;2591:31;2616:5;2591:31;:::i;:::-;2641:5;-1:-1:-1;2698:2:1;2683:18;;2670:32;2740:15;;2733:23;2721:36;;2711:64;;2771:1;2768;2761:12;2812:315;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;3117:2;3102:18;;;;3089:32;;-1:-1:-1;;;2812:315:1:o;3132:245::-;3190:6;3243:2;3231:9;3222:7;3218:23;3214:32;3211:52;;;3259:1;3256;3249:12;3211:52;3298:9;3285:23;3317:30;3341:5;3317:30;:::i;3382:249::-;3451:6;3504:2;3492:9;3483:7;3479:23;3475:32;3472:52;;;3520:1;3517;3510:12;3472:52;3552:9;3546:16;3571:30;3595:5;3571:30;:::i;3636:280::-;3735:6;3788:2;3776:9;3767:7;3763:23;3759:32;3756:52;;;3804:1;3801;3794:12;3756:52;3836:9;3830:16;3855:31;3880:5;3855:31;:::i;3921:180::-;3980:6;4033:2;4021:9;4012:7;4008:23;4004:32;4001:52;;;4049:1;4046;4039:12;4001:52;-1:-1:-1;4072:23:1;;3921:180;-1:-1:-1;3921:180:1:o;4106:248::-;4174:6;4182;4235:2;4223:9;4214:7;4210:23;4206:32;4203:52;;;4251:1;4248;4241:12;4203:52;-1:-1:-1;;4274:23:1;;;4344:2;4329:18;;;4316:32;;-1:-1:-1;4106:248:1:o;4359:257::-;4400:3;4438:5;4432:12;4465:6;4460:3;4453:19;4481:63;4537:6;4530:4;4525:3;4521:14;4514:4;4507:5;4503:16;4481:63;:::i;:::-;4598:2;4577:15;-1:-1:-1;;4573:29:1;4564:39;;;;4605:4;4560:50;;4359:257;-1:-1:-1;;4359:257:1:o;4621:664::-;4848:3;4886:6;4880:13;4902:53;4948:6;4943:3;4936:4;4928:6;4924:17;4902:53;:::i;:::-;5018:13;;4977:16;;;;5040:57;5018:13;4977:16;5074:4;5062:17;;5040:57;:::i;:::-;5164:13;;5119:20;;;5186:57;5164:13;5119:20;5220:4;5208:17;;5186:57;:::i;:::-;5259:20;;4621:664;-1:-1:-1;;;;;4621:664:1:o;5708:488::-;-1:-1:-1;;;;;5977:15:1;;;5959:34;;6029:15;;6024:2;6009:18;;6002:43;6076:2;6061:18;;6054:34;;;6124:3;6119:2;6104:18;;6097:31;;;5902:4;;6145:45;;6170:19;;6162:6;6145:45;:::i;:::-;6137:53;5708:488;-1:-1:-1;;;;;;5708:488:1:o;6672:219::-;6821:2;6810:9;6803:21;6784:4;6841:44;6881:2;6870:9;6866:18;6858:6;6841:44;:::i;8521:398::-;8723:2;8705:21;;;8762:2;8742:18;;;8735:30;8801:34;8796:2;8781:18;;8774:62;-1:-1:-1;;;8867:2:1;8852:18;;8845:32;8909:3;8894:19;;8521:398::o;9330:::-;9532:2;9514:21;;;9571:2;9551:18;;;9544:30;9610:34;9605:2;9590:18;;9583:62;-1:-1:-1;;;9676:2:1;9661:18;;9654:32;9718:3;9703:19;;9330:398::o;11674:356::-;11876:2;11858:21;;;11895:18;;;11888:30;11954:34;11949:2;11934:18;;11927:62;12021:2;12006:18;;11674:356::o;13212:415::-;13414:2;13396:21;;;13453:2;13433:18;;;13426:30;13492:34;13487:2;13472:18;;13465:62;-1:-1:-1;;;13558:2:1;13543:18;;13536:49;13617:3;13602:19;;13212:415::o;17987:253::-;18027:3;-1:-1:-1;;;;;18116:2:1;18113:1;18109:10;18146:2;18143:1;18139:10;18177:3;18173:2;18169:12;18164:3;18161:21;18158:47;;;18185:18;;:::i;:::-;18221:13;;17987:253;-1:-1:-1;;;;17987:253:1:o;18245:128::-;18285:3;18316:1;18312:6;18309:1;18306:13;18303:39;;;18322:18;;:::i;:::-;-1:-1:-1;18358:9:1;;18245:128::o;18378:120::-;18418:1;18444;18434:35;;18449:18;;:::i;:::-;-1:-1:-1;18483:9:1;;18378:120::o;18503:168::-;18543:7;18609:1;18605;18601:6;18597:14;18594:1;18591:21;18586:1;18579:9;18572:17;18568:45;18565:71;;;18616:18;;:::i;:::-;-1:-1:-1;18656:9:1;;18503:168::o;18676:246::-;18716:4;-1:-1:-1;;;;;18829:10:1;;;;18799;;18851:12;;;18848:38;;;18866:18;;:::i;:::-;18903:13;;18676:246;-1:-1:-1;;;18676:246:1:o;18927:125::-;18967:4;18995:1;18992;18989:8;18986:34;;;19000:18;;:::i;:::-;-1:-1:-1;19037:9:1;;18927:125::o;19057:258::-;19129:1;19139:113;19153:6;19150:1;19147:13;19139:113;;;19229:11;;;19223:18;19210:11;;;19203:39;19175:2;19168:10;19139:113;;;19270:6;19267:1;19264:13;19261:48;;;-1:-1:-1;;19305:1:1;19287:16;;19280:27;19057:258::o;19320:136::-;19359:3;19387:5;19377:39;;19396:18;;:::i;:::-;-1:-1:-1;;;19432:18:1;;19320:136::o;19461:380::-;19540:1;19536:12;;;;19583;;;19604:61;;19658:4;19650:6;19646:17;19636:27;;19604:61;19711:2;19703:6;19700:14;19680:18;19677:38;19674:161;;;19757:10;19752:3;19748:20;19745:1;19738:31;19792:4;19789:1;19782:15;19820:4;19817:1;19810:15;19674:161;;19461:380;;;:::o;19846:135::-;19885:3;-1:-1:-1;;19906:17:1;;19903:43;;;19926:18;;:::i;:::-;-1:-1:-1;19973:1:1;19962:13;;19846:135::o;19986:112::-;20018:1;20044;20034:35;;20049:18;;:::i;:::-;-1:-1:-1;20083:9:1;;19986:112::o;20103:127::-;20164:10;20159:3;20155:20;20152:1;20145:31;20195:4;20192:1;20185:15;20219:4;20216:1;20209:15;20235:127;20296:10;20291:3;20287:20;20284:1;20277:31;20327:4;20324:1;20317:15;20351:4;20348:1;20341:15;20367:127;20428:10;20423:3;20419:20;20416:1;20409:31;20459:4;20456:1;20449:15;20483:4;20480:1;20473:15;20499:127;20560:10;20555:3;20551:20;20548:1;20541:31;20591:4;20588:1;20581:15;20615:4;20612:1;20605:15;20631:131;-1:-1:-1;;;;;20706:31:1;;20696:42;;20686:70;;20752:1;20749;20742:12;20767:131;-1:-1:-1;;;;;;20841:32:1;;20831:43;;20821:71;;20888:1;20885;20878:12
Swarm Source
ipfs://7700bbe216f70320d8bf6626bb0e5afc5e3e0d7dc7f690ae915251b1a4319208
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.