ERC-721
Overview
Max Total Supply
800 CF
Holders
300
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 CFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoFries
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-21 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.11; /* * @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 GSN 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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); } /** * @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; } /** * @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); } /** * @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); } /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } /** * @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; // solhint-disable-next-line no-inline-assembly 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 price * 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @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). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ 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 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; 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); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; 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 Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { 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); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = 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); } /** * @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 {} } /** * @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); } } /** * @title F NFT Smart Contract */ contract CryptoFries is ERC721A, Ownable { string public baseExtension = ".json"; uint256 public cost = 0.035 ether; string private baseTokenURI; string private notRevealedUri; bool public revealed = false; uint256 public maxSupply = 3210; uint256 public maxFreeMint = 640; uint256 public maxPaidMint = 2500; uint256 public maxAmountWallet = 50; uint256 public maxMintSupply = maxFreeMint + maxPaidMint; uint256 public maxFreeAmountPerWallet = 2; uint256 public mintedAmount = 0; bool public publicActive = false; mapping(address => uint256) public minterToTokenAmount; address proxyRegistryAddress; constructor(string memory _notRevealedUri) ERC721A("Crypto Fries", "CF") { notRevealedUri = _notRevealedUri; } function mint(uint256 quantity) external payable { require(publicActive, "Sale must be active to mint a Fry"); if (mintedAmount < maxFreeMint) { //Als de totale mintamount onder de maxFreeMint ligt if(balanceOf(msg.sender) < maxFreeAmountPerWallet){ //Als de balance van de minter onder het maximale per wallet ligt //Dan free require(mintedAmount + quantity <= maxFreeMint, "MAXL"); require( minterToTokenAmount[msg.sender] + quantity <= maxFreeAmountPerWallet, "MAXF" ); } else { //ander paid require(mintedAmount + quantity <= maxMintSupply, "MAXL"); require( minterToTokenAmount[msg.sender] + quantity <= maxAmountWallet, "MAXP" ); require(msg.value >= cost * quantity, "SETH"); } } else { //Als de totale mintamount boven de maxFreeMint ligt require(mintedAmount + quantity <= maxMintSupply, "MAXL"); require( minterToTokenAmount[msg.sender] + quantity <= maxAmountWallet, "MAXP" ); require(msg.value >= cost * quantity, "SETH"); } mintedAmount += quantity; minterToTokenAmount[msg.sender] += quantity; _safeMint(msg.sender, quantity); } function setNotRevealedURI(string memory _notRevealedURI) external onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner { baseTokenURI = _baseTokenURI; } function _baseURI() internal view override virtual returns (string memory) { return baseTokenURI; } function setRevealed(bool _state) external onlyOwner { revealed = _state; } function reserve(address target, uint256 quantity) external onlyOwner { require(totalSupply() + quantity <= maxSupply, "Cryptofries/sold-out"); _safeMint(target, quantity); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(!revealed) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, Strings.toString(tokenId))) : ""; } function setMaxFreeAmountPerTx(uint256 _maxAmountPerTx) external onlyOwner { maxFreeAmountPerWallet = _maxAmountPerTx; } function setPublicActive(bool newStatus) external onlyOwner { publicActive = newStatus; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function withdrawToSender() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawAll() external onlyOwner { require(address(this).balance > 0, "ZERO"); payable(msg.sender).transfer(address(this).balance); } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPaidMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterToTokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAmountPerTx","type":"uint256"}],"name":"setMaxFreeAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setPublicActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawToSender","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a090815262000028916009919062000239565b50667c585087238000600a55600d805460ff19169055610c8a600e55610280600f8190556109c4601081905560326011556200006491620002df565b601255600260135560006014556015805460ff191690553480156200008857600080fd5b506040516200297e3803806200297e833981016040819052620000ab916200031c565b604080518082018252600c81526b43727970746f20467269657360a01b6020808301919091528251808401909352600283526121a360f11b9083015290620000fa6301ffc9a760e01b6200015f565b81516200010f90600290602085019062000239565b5080516200012590600390602084019062000239565b505050620001426200013c620001e360201b60201c565b620001e7565b80516200015790600c90602084019062000239565b505062000435565b6001600160e01b03198082161415620001be5760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200024790620003f8565b90600052602060002090601f0160209004810192826200026b5760008555620002b6565b82601f106200028657805160ff1916838001178555620002b6565b82800160010185558215620002b6579182015b82811115620002b657825182559160200191906001019062000299565b50620002c4929150620002c8565b5090565b5b80821115620002c45760008155600101620002c9565b600082198211156200030157634e487b7160e01b600052601160045260246000fd5b500190565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200033057600080fd5b82516001600160401b03808211156200034857600080fd5b818501915085601f8301126200035d57600080fd5b81518181111562000372576200037262000306565b604051601f8201601f19908116603f011681019083821181831017156200039d576200039d62000306565b816040528281528886848701011115620003b657600080fd5b600093505b82841015620003da5784840186015181850187015292850192620003bb565b82841115620003ec5760008684830101525b98975050505050505050565b600181811c908216806200040d57607f821691505b602082108114156200042f57634e487b7160e01b600052602260045260246000fd5b50919050565b61253980620004456000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063a591252d116100b6578063cc47a40b1161007a578063cc47a40b14610667578063d5abeb0114610687578063e0a808531461069d578063e985e9c5146106bd578063f2c4ce1e14610706578063f2fde38b1461072657600080fd5b8063a591252d146105e6578063b88d4fde146105fc578063c285e1071461061c578063c668286214610632578063c87b56dd1461064757600080fd5b80638da5cb5b116100fd5780638da5cb5b1461056a57806395d89b41146105885780639853b6ae1461059d578063a0712d68146105b3578063a22cb465146105c657600080fd5b806370a08231146104e0578063715018a6146105005780637b2f159514610515578063853828b6146105355780638aca408c1461054a57600080fd5b80632d380242116101d25780633f2981cf116101965780633f2981cf1461042c57806342842e0e1461044657806344a0d68a146104665780634f6ccce71461048657806351830227146104a65780636352211e146104c057600080fd5b80632d380242146103b85780632f745c59146103ce57806330176e13146103ee5780633bfaa33d1461040e5780633ccfd60b1461042457600080fd5b806313faede61161021957806313faede61461031c57806318160ddd1461034057806323b872dd146103555780632927be08146103755780632a5543bc1461038b57600080fd5b806301ffc9a71461025657806306fdde031461028b578063077af430146102ad578063081812fc146102c4578063095ea7b3146102fc575b600080fd5b34801561026257600080fd5b50610276610271366004611faf565b610746565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107bc565b6040516102829190612024565b3480156102b957600080fd5b506102c261084e565b005b3480156102d057600080fd5b506102e46102df366004612037565b6108b4565b6040516001600160a01b039091168152602001610282565b34801561030857600080fd5b506102c261031736600461206c565b61093f565b34801561032857600080fd5b50610332600a5481565b604051908152602001610282565b34801561034c57600080fd5b50600154610332565b34801561036157600080fd5b506102c2610370366004612096565b610a57565b34801561038157600080fd5b5061033260115481565b34801561039757600080fd5b506103326103a63660046120d2565b60166020526000908152604090205481565b3480156103c457600080fd5b5061033260145481565b3480156103da57600080fd5b506103326103e936600461206c565b610a62565b3480156103fa57600080fd5b506102c2610409366004612179565b610bca565b34801561041a57600080fd5b5061033260105481565b6102c2610c07565b34801561043857600080fd5b506015546102769060ff1681565b34801561045257600080fd5b506102c2610461366004612096565b610ca5565b34801561047257600080fd5b506102c2610481366004612037565b610cc0565b34801561049257600080fd5b506103326104a1366004612037565b610cef565b3480156104b257600080fd5b50600d546102769060ff1681565b3480156104cc57600080fd5b506102e46104db366004612037565b610d58565b3480156104ec57600080fd5b506103326104fb3660046120d2565b610d6a565b34801561050c57600080fd5b506102c2610dfb565b34801561052157600080fd5b506102c2610530366004612037565b610e31565b34801561054157600080fd5b506102c2610e60565b34801561055657600080fd5b506102c26105653660046121d2565b610eef565b34801561057657600080fd5b506008546001600160a01b03166102e4565b34801561059457600080fd5b506102a0610f2c565b3480156105a957600080fd5b5061033260135481565b6102c26105c1366004612037565b610f3b565b3480156105d257600080fd5b506102c26105e13660046121ed565b611218565b3480156105f257600080fd5b50610332600f5481565b34801561060857600080fd5b506102c2610617366004612220565b6112dd565b34801561062857600080fd5b5061033260125481565b34801561063e57600080fd5b506102a0611316565b34801561065357600080fd5b506102a0610662366004612037565b6113a4565b34801561067357600080fd5b506102c261068236600461206c565b61150d565b34801561069357600080fd5b50610332600e5481565b3480156106a957600080fd5b506102c26106b83660046121d2565b61159d565b3480156106c957600080fd5b506102766106d836600461229c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561071257600080fd5b506102c2610721366004612179565b6115da565b34801561073257600080fd5b506102c26107413660046120d2565b611617565b60006001600160e01b031982166380ac58cd60e01b148061077757506001600160e01b03198216635b5e139f60e01b145b8061079257506001600160e01b0319821663780e9d6360e01b145b806107b657506001600160e01b0319821660009081526020819052604090205460ff165b92915050565b6060600280546107cb906122c6565b80601f01602080910402602001604051908101604052809291908181526020018280546107f7906122c6565b80156108445780601f1061081957610100808354040283529160200191610844565b820191906000526020600020905b81548152906001019060200180831161082757829003601f168201915b5050505050905090565b6008546001600160a01b031633146108815760405162461bcd60e51b815260040161087890612301565b60405180910390fd5b6040514790339082156108fc029083906000818181858888f193505050501580156108b0573d6000803e3d6000fd5b5050565b60006108c1826001541190565b6109235760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610878565b506000908152600660205260409020546001600160a01b031690565b600061094a82610d58565b9050806001600160a01b0316836001600160a01b031614156109b95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610878565b336001600160a01b03821614806109d557506109d581336106d8565b610a475760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610878565b610a528383836116af565b505050565b610a5283838361170b565b6000610a6d83610d6a565b8210610ac65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610878565b6000610ad160015490565b905060008060005b83811015610b6a576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b2c57805192505b876001600160a01b0316836001600160a01b03161415610b615786841415610b5a575093506107b692505050565b6001909301925b50600101610ad9565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610878565b6008546001600160a01b03163314610bf45760405162461bcd60e51b815260040161087890612301565b80516108b090600b906020840190611f09565b6008546001600160a01b03163314610c315760405162461bcd60e51b815260040161087890612301565b6000610c456008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c8f576040519150601f19603f3d011682016040523d82523d6000602084013e610c94565b606091505b5050905080610ca257600080fd5b50565b610a52838383604051806020016040528060008152506112dd565b6008546001600160a01b03163314610cea5760405162461bcd60e51b815260040161087890612301565b600a55565b6000610cfa60015490565b8210610d545760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610878565b5090565b6000610d63826119f0565b5192915050565b60006001600160a01b038216610dd65760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610878565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6008546001600160a01b03163314610e255760405162461bcd60e51b815260040161087890612301565b610e2f6000611ac7565b565b6008546001600160a01b03163314610e5b5760405162461bcd60e51b815260040161087890612301565b601355565b6008546001600160a01b03163314610e8a5760405162461bcd60e51b815260040161087890612301565b60004711610ec35760405162461bcd60e51b8152600401610878906020808252600490820152635a45524f60e01b604082015260600190565b60405133904780156108fc02916000818181858888f19350505050158015610ca2573d6000803e3d6000fd5b6008546001600160a01b03163314610f195760405162461bcd60e51b815260040161087890612301565b6015805460ff1916911515919091179055565b6060600380546107cb906122c6565b60155460ff16610f975760405162461bcd60e51b815260206004820152602160248201527f53616c65206d7573742062652061637469766520746f206d696e7420612046726044820152607960f81b6064820152608401610878565b600f54601454101561110857601354610faf33610d6a565b101561103e57600f5481601454610fc6919061234c565b1115610fe45760405162461bcd60e51b815260040161087890612364565b6013543360009081526016602052604090205461100290839061234c565b11156110395760405162461bcd60e51b81526004016108789060208082526004908201526326a0ac2360e11b604082015260600190565b6111d2565b6012548160145461104f919061234c565b111561106d5760405162461bcd60e51b815260040161087890612364565b6011543360009081526016602052604090205461108b90839061234c565b11156110c25760405162461bcd60e51b81526004016108789060208082526004908201526304d4158560e41b604082015260600190565b80600a546110d09190612382565b3410156110395760405162461bcd60e51b8152600401610878906020808252600490820152630a68aa8960e31b604082015260600190565b60125481601454611119919061234c565b11156111375760405162461bcd60e51b815260040161087890612364565b6011543360009081526016602052604090205461115590839061234c565b111561118c5760405162461bcd60e51b81526004016108789060208082526004908201526304d4158560e41b604082015260600190565b80600a5461119a9190612382565b3410156111d25760405162461bcd60e51b8152600401610878906020808252600490820152630a68aa8960e31b604082015260600190565b80601460008282546111e4919061234c565b9091555050336000908152601660205260408120805483929061120890849061234c565b90915550610ca290503382611b19565b6001600160a01b0382163314156112715760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610878565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112e884848461170b565b6112f484848484611b33565b6113105760405162461bcd60e51b8152600401610878906123a1565b50505050565b60098054611323906122c6565b80601f016020809104026020016040519081016040528092919081815260200182805461134f906122c6565b801561139c5780601f106113715761010080835404028352916020019161139c565b820191906000526020600020905b81548152906001019060200180831161137f57829003601f168201915b505050505081565b60606113b1826001541190565b6114155760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610878565b600d5460ff166114b157600c805461142c906122c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611458906122c6565b80156114a55780601f1061147a576101008083540402835291602001916114a5565b820191906000526020600020905b81548152906001019060200180831161148857829003601f168201915b50505050509050919050565b60006114bb611c32565b905060008151116114db5760405180602001604052806000815250611506565b806114e584611c41565b6040516020016114f69291906123f4565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146115375760405162461bcd60e51b815260040161087890612301565b600e548161154460015490565b61154e919061234c565b11156115935760405162461bcd60e51b815260206004820152601460248201527310dc9e5c1d1bd99c9a595ccbdcdbdb190b5bdd5d60621b6044820152606401610878565b6108b08282611b19565b6008546001600160a01b031633146115c75760405162461bcd60e51b815260040161087890612301565b600d805460ff1916911515919091179055565b6008546001600160a01b031633146116045760405162461bcd60e51b815260040161087890612301565b80516108b090600c906020840190611f09565b6008546001600160a01b031633146116415760405162461bcd60e51b815260040161087890612301565b6001600160a01b0381166116a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610878565b610ca281611ac7565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611716826119f0565b80519091506000906001600160a01b0316336001600160a01b0316148061174d575033611742846108b4565b6001600160a01b0316145b8061175f5750815161175f90336106d8565b9050806117c95760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610878565b846001600160a01b031682600001516001600160a01b03161461183d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610878565b6001600160a01b0384166118a15760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610878565b6118b160008484600001516116af565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166119a657611959816001541190565b156119a6578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611a0f826001541190565b611a6e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610878565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611abd579392505050565b5060001901611a70565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108b0828260405180602001604052806000815250611d3f565b60006001600160a01b0384163b15611c2657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b77903390899088908890600401612423565b6020604051808303816000875af1925050508015611bb2575060408051601f3d908101601f19168201909252611baf91810190612460565b60015b611c0c573d808015611be0576040519150601f19603f3d011682016040523d82523d6000602084013e611be5565b606091505b508051611c045760405162461bcd60e51b8152600401610878906123a1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c2a565b5060015b949350505050565b6060600b80546107cb906122c6565b606081611c655750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c8f5780611c798161247d565b9150611c889050600a836124ae565b9150611c69565b60008167ffffffffffffffff811115611caa57611caa6120ed565b6040519080825280601f01601f191660200182016040528015611cd4576020820181803683370190505b5090505b8415611c2a57611ce96001836124c2565b9150611cf6600a866124d9565b611d0190603061234c565b60f81b818381518110611d1657611d166124ed565b60200101906001600160f81b031916908160001a905350611d38600a866124ae565b9450611cd8565b610a52838383600180546001600160a01b038516611da95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610878565b83611e075760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610878565b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611f005760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611ef457611ed86000888488611b33565b611ef45760405162461bcd60e51b8152600401610878906123a1565b60019182019101611e85565b506001556119e9565b828054611f15906122c6565b90600052602060002090601f016020900481019282611f375760008555611f7d565b82601f10611f5057805160ff1916838001178555611f7d565b82800160010185558215611f7d579182015b82811115611f7d578251825591602001919060010190611f62565b50610d549291505b80821115610d545760008155600101611f85565b6001600160e01b031981168114610ca257600080fd5b600060208284031215611fc157600080fd5b813561150681611f99565b60005b83811015611fe7578181015183820152602001611fcf565b838111156113105750506000910152565b60008151808452612010816020860160208601611fcc565b601f01601f19169290920160200192915050565b6020815260006115066020830184611ff8565b60006020828403121561204957600080fd5b5035919050565b80356001600160a01b038116811461206757600080fd5b919050565b6000806040838503121561207f57600080fd5b61208883612050565b946020939093013593505050565b6000806000606084860312156120ab57600080fd5b6120b484612050565b92506120c260208501612050565b9150604084013590509250925092565b6000602082840312156120e457600080fd5b61150682612050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561211e5761211e6120ed565b604051601f8501601f19908116603f01168101908282118183101715612146576121466120ed565b8160405280935085815286868601111561215f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561218b57600080fd5b813567ffffffffffffffff8111156121a257600080fd5b8201601f810184136121b357600080fd5b611c2a84823560208401612103565b8035801515811461206757600080fd5b6000602082840312156121e457600080fd5b611506826121c2565b6000806040838503121561220057600080fd5b61220983612050565b9150612217602084016121c2565b90509250929050565b6000806000806080858703121561223657600080fd5b61223f85612050565b935061224d60208601612050565b925060408501359150606085013567ffffffffffffffff81111561227057600080fd5b8501601f8101871361228157600080fd5b61229087823560208401612103565b91505092959194509250565b600080604083850312156122af57600080fd5b6122b883612050565b915061221760208401612050565b600181811c908216806122da57607f821691505b602082108114156122fb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561235f5761235f612336565b500190565b6020808252600490820152631350561360e21b604082015260600190565b600081600019048311821515161561239c5761239c612336565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612406818460208801611fcc565b83519083019061241a818360208801611fcc565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061245690830184611ff8565b9695505050505050565b60006020828403121561247257600080fd5b815161150681611f99565b600060001982141561249157612491612336565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124bd576124bd612498565b500490565b6000828210156124d4576124d4612336565b500390565b6000826124e8576124e8612498565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202349e18c7a96f465b8dd967bccb411b3672b4da6555ffe9bbaa18d1ade32dfde64736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5937646851414e477078785a47314c4a584c455958786e3150504d785a37796539583669534b46313842576a0000000000000000000000
Deployed Bytecode
0x6080604052600436106102515760003560e01c806370a0823111610139578063a591252d116100b6578063cc47a40b1161007a578063cc47a40b14610667578063d5abeb0114610687578063e0a808531461069d578063e985e9c5146106bd578063f2c4ce1e14610706578063f2fde38b1461072657600080fd5b8063a591252d146105e6578063b88d4fde146105fc578063c285e1071461061c578063c668286214610632578063c87b56dd1461064757600080fd5b80638da5cb5b116100fd5780638da5cb5b1461056a57806395d89b41146105885780639853b6ae1461059d578063a0712d68146105b3578063a22cb465146105c657600080fd5b806370a08231146104e0578063715018a6146105005780637b2f159514610515578063853828b6146105355780638aca408c1461054a57600080fd5b80632d380242116101d25780633f2981cf116101965780633f2981cf1461042c57806342842e0e1461044657806344a0d68a146104665780634f6ccce71461048657806351830227146104a65780636352211e146104c057600080fd5b80632d380242146103b85780632f745c59146103ce57806330176e13146103ee5780633bfaa33d1461040e5780633ccfd60b1461042457600080fd5b806313faede61161021957806313faede61461031c57806318160ddd1461034057806323b872dd146103555780632927be08146103755780632a5543bc1461038b57600080fd5b806301ffc9a71461025657806306fdde031461028b578063077af430146102ad578063081812fc146102c4578063095ea7b3146102fc575b600080fd5b34801561026257600080fd5b50610276610271366004611faf565b610746565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107bc565b6040516102829190612024565b3480156102b957600080fd5b506102c261084e565b005b3480156102d057600080fd5b506102e46102df366004612037565b6108b4565b6040516001600160a01b039091168152602001610282565b34801561030857600080fd5b506102c261031736600461206c565b61093f565b34801561032857600080fd5b50610332600a5481565b604051908152602001610282565b34801561034c57600080fd5b50600154610332565b34801561036157600080fd5b506102c2610370366004612096565b610a57565b34801561038157600080fd5b5061033260115481565b34801561039757600080fd5b506103326103a63660046120d2565b60166020526000908152604090205481565b3480156103c457600080fd5b5061033260145481565b3480156103da57600080fd5b506103326103e936600461206c565b610a62565b3480156103fa57600080fd5b506102c2610409366004612179565b610bca565b34801561041a57600080fd5b5061033260105481565b6102c2610c07565b34801561043857600080fd5b506015546102769060ff1681565b34801561045257600080fd5b506102c2610461366004612096565b610ca5565b34801561047257600080fd5b506102c2610481366004612037565b610cc0565b34801561049257600080fd5b506103326104a1366004612037565b610cef565b3480156104b257600080fd5b50600d546102769060ff1681565b3480156104cc57600080fd5b506102e46104db366004612037565b610d58565b3480156104ec57600080fd5b506103326104fb3660046120d2565b610d6a565b34801561050c57600080fd5b506102c2610dfb565b34801561052157600080fd5b506102c2610530366004612037565b610e31565b34801561054157600080fd5b506102c2610e60565b34801561055657600080fd5b506102c26105653660046121d2565b610eef565b34801561057657600080fd5b506008546001600160a01b03166102e4565b34801561059457600080fd5b506102a0610f2c565b3480156105a957600080fd5b5061033260135481565b6102c26105c1366004612037565b610f3b565b3480156105d257600080fd5b506102c26105e13660046121ed565b611218565b3480156105f257600080fd5b50610332600f5481565b34801561060857600080fd5b506102c2610617366004612220565b6112dd565b34801561062857600080fd5b5061033260125481565b34801561063e57600080fd5b506102a0611316565b34801561065357600080fd5b506102a0610662366004612037565b6113a4565b34801561067357600080fd5b506102c261068236600461206c565b61150d565b34801561069357600080fd5b50610332600e5481565b3480156106a957600080fd5b506102c26106b83660046121d2565b61159d565b3480156106c957600080fd5b506102766106d836600461229c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561071257600080fd5b506102c2610721366004612179565b6115da565b34801561073257600080fd5b506102c26107413660046120d2565b611617565b60006001600160e01b031982166380ac58cd60e01b148061077757506001600160e01b03198216635b5e139f60e01b145b8061079257506001600160e01b0319821663780e9d6360e01b145b806107b657506001600160e01b0319821660009081526020819052604090205460ff165b92915050565b6060600280546107cb906122c6565b80601f01602080910402602001604051908101604052809291908181526020018280546107f7906122c6565b80156108445780601f1061081957610100808354040283529160200191610844565b820191906000526020600020905b81548152906001019060200180831161082757829003601f168201915b5050505050905090565b6008546001600160a01b031633146108815760405162461bcd60e51b815260040161087890612301565b60405180910390fd5b6040514790339082156108fc029083906000818181858888f193505050501580156108b0573d6000803e3d6000fd5b5050565b60006108c1826001541190565b6109235760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610878565b506000908152600660205260409020546001600160a01b031690565b600061094a82610d58565b9050806001600160a01b0316836001600160a01b031614156109b95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610878565b336001600160a01b03821614806109d557506109d581336106d8565b610a475760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610878565b610a528383836116af565b505050565b610a5283838361170b565b6000610a6d83610d6a565b8210610ac65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610878565b6000610ad160015490565b905060008060005b83811015610b6a576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b2c57805192505b876001600160a01b0316836001600160a01b03161415610b615786841415610b5a575093506107b692505050565b6001909301925b50600101610ad9565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610878565b6008546001600160a01b03163314610bf45760405162461bcd60e51b815260040161087890612301565b80516108b090600b906020840190611f09565b6008546001600160a01b03163314610c315760405162461bcd60e51b815260040161087890612301565b6000610c456008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c8f576040519150601f19603f3d011682016040523d82523d6000602084013e610c94565b606091505b5050905080610ca257600080fd5b50565b610a52838383604051806020016040528060008152506112dd565b6008546001600160a01b03163314610cea5760405162461bcd60e51b815260040161087890612301565b600a55565b6000610cfa60015490565b8210610d545760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610878565b5090565b6000610d63826119f0565b5192915050565b60006001600160a01b038216610dd65760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610878565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6008546001600160a01b03163314610e255760405162461bcd60e51b815260040161087890612301565b610e2f6000611ac7565b565b6008546001600160a01b03163314610e5b5760405162461bcd60e51b815260040161087890612301565b601355565b6008546001600160a01b03163314610e8a5760405162461bcd60e51b815260040161087890612301565b60004711610ec35760405162461bcd60e51b8152600401610878906020808252600490820152635a45524f60e01b604082015260600190565b60405133904780156108fc02916000818181858888f19350505050158015610ca2573d6000803e3d6000fd5b6008546001600160a01b03163314610f195760405162461bcd60e51b815260040161087890612301565b6015805460ff1916911515919091179055565b6060600380546107cb906122c6565b60155460ff16610f975760405162461bcd60e51b815260206004820152602160248201527f53616c65206d7573742062652061637469766520746f206d696e7420612046726044820152607960f81b6064820152608401610878565b600f54601454101561110857601354610faf33610d6a565b101561103e57600f5481601454610fc6919061234c565b1115610fe45760405162461bcd60e51b815260040161087890612364565b6013543360009081526016602052604090205461100290839061234c565b11156110395760405162461bcd60e51b81526004016108789060208082526004908201526326a0ac2360e11b604082015260600190565b6111d2565b6012548160145461104f919061234c565b111561106d5760405162461bcd60e51b815260040161087890612364565b6011543360009081526016602052604090205461108b90839061234c565b11156110c25760405162461bcd60e51b81526004016108789060208082526004908201526304d4158560e41b604082015260600190565b80600a546110d09190612382565b3410156110395760405162461bcd60e51b8152600401610878906020808252600490820152630a68aa8960e31b604082015260600190565b60125481601454611119919061234c565b11156111375760405162461bcd60e51b815260040161087890612364565b6011543360009081526016602052604090205461115590839061234c565b111561118c5760405162461bcd60e51b81526004016108789060208082526004908201526304d4158560e41b604082015260600190565b80600a5461119a9190612382565b3410156111d25760405162461bcd60e51b8152600401610878906020808252600490820152630a68aa8960e31b604082015260600190565b80601460008282546111e4919061234c565b9091555050336000908152601660205260408120805483929061120890849061234c565b90915550610ca290503382611b19565b6001600160a01b0382163314156112715760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610878565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112e884848461170b565b6112f484848484611b33565b6113105760405162461bcd60e51b8152600401610878906123a1565b50505050565b60098054611323906122c6565b80601f016020809104026020016040519081016040528092919081815260200182805461134f906122c6565b801561139c5780601f106113715761010080835404028352916020019161139c565b820191906000526020600020905b81548152906001019060200180831161137f57829003601f168201915b505050505081565b60606113b1826001541190565b6114155760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610878565b600d5460ff166114b157600c805461142c906122c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611458906122c6565b80156114a55780601f1061147a576101008083540402835291602001916114a5565b820191906000526020600020905b81548152906001019060200180831161148857829003601f168201915b50505050509050919050565b60006114bb611c32565b905060008151116114db5760405180602001604052806000815250611506565b806114e584611c41565b6040516020016114f69291906123f4565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146115375760405162461bcd60e51b815260040161087890612301565b600e548161154460015490565b61154e919061234c565b11156115935760405162461bcd60e51b815260206004820152601460248201527310dc9e5c1d1bd99c9a595ccbdcdbdb190b5bdd5d60621b6044820152606401610878565b6108b08282611b19565b6008546001600160a01b031633146115c75760405162461bcd60e51b815260040161087890612301565b600d805460ff1916911515919091179055565b6008546001600160a01b031633146116045760405162461bcd60e51b815260040161087890612301565b80516108b090600c906020840190611f09565b6008546001600160a01b031633146116415760405162461bcd60e51b815260040161087890612301565b6001600160a01b0381166116a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610878565b610ca281611ac7565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611716826119f0565b80519091506000906001600160a01b0316336001600160a01b0316148061174d575033611742846108b4565b6001600160a01b0316145b8061175f5750815161175f90336106d8565b9050806117c95760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610878565b846001600160a01b031682600001516001600160a01b03161461183d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610878565b6001600160a01b0384166118a15760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610878565b6118b160008484600001516116af565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166119a657611959816001541190565b156119a6578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611a0f826001541190565b611a6e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610878565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611abd579392505050565b5060001901611a70565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108b0828260405180602001604052806000815250611d3f565b60006001600160a01b0384163b15611c2657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b77903390899088908890600401612423565b6020604051808303816000875af1925050508015611bb2575060408051601f3d908101601f19168201909252611baf91810190612460565b60015b611c0c573d808015611be0576040519150601f19603f3d011682016040523d82523d6000602084013e611be5565b606091505b508051611c045760405162461bcd60e51b8152600401610878906123a1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c2a565b5060015b949350505050565b6060600b80546107cb906122c6565b606081611c655750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c8f5780611c798161247d565b9150611c889050600a836124ae565b9150611c69565b60008167ffffffffffffffff811115611caa57611caa6120ed565b6040519080825280601f01601f191660200182016040528015611cd4576020820181803683370190505b5090505b8415611c2a57611ce96001836124c2565b9150611cf6600a866124d9565b611d0190603061234c565b60f81b818381518110611d1657611d166124ed565b60200101906001600160f81b031916908160001a905350611d38600a866124ae565b9450611cd8565b610a52838383600180546001600160a01b038516611da95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610878565b83611e075760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610878565b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611f005760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611ef457611ed86000888488611b33565b611ef45760405162461bcd60e51b8152600401610878906123a1565b60019182019101611e85565b506001556119e9565b828054611f15906122c6565b90600052602060002090601f016020900481019282611f375760008555611f7d565b82601f10611f5057805160ff1916838001178555611f7d565b82800160010185558215611f7d579182015b82811115611f7d578251825591602001919060010190611f62565b50610d549291505b80821115610d545760008155600101611f85565b6001600160e01b031981168114610ca257600080fd5b600060208284031215611fc157600080fd5b813561150681611f99565b60005b83811015611fe7578181015183820152602001611fcf565b838111156113105750506000910152565b60008151808452612010816020860160208601611fcc565b601f01601f19169290920160200192915050565b6020815260006115066020830184611ff8565b60006020828403121561204957600080fd5b5035919050565b80356001600160a01b038116811461206757600080fd5b919050565b6000806040838503121561207f57600080fd5b61208883612050565b946020939093013593505050565b6000806000606084860312156120ab57600080fd5b6120b484612050565b92506120c260208501612050565b9150604084013590509250925092565b6000602082840312156120e457600080fd5b61150682612050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561211e5761211e6120ed565b604051601f8501601f19908116603f01168101908282118183101715612146576121466120ed565b8160405280935085815286868601111561215f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561218b57600080fd5b813567ffffffffffffffff8111156121a257600080fd5b8201601f810184136121b357600080fd5b611c2a84823560208401612103565b8035801515811461206757600080fd5b6000602082840312156121e457600080fd5b611506826121c2565b6000806040838503121561220057600080fd5b61220983612050565b9150612217602084016121c2565b90509250929050565b6000806000806080858703121561223657600080fd5b61223f85612050565b935061224d60208601612050565b925060408501359150606085013567ffffffffffffffff81111561227057600080fd5b8501601f8101871361228157600080fd5b61229087823560208401612103565b91505092959194509250565b600080604083850312156122af57600080fd5b6122b883612050565b915061221760208401612050565b600181811c908216806122da57607f821691505b602082108114156122fb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561235f5761235f612336565b500190565b6020808252600490820152631350561360e21b604082015260600190565b600081600019048311821515161561239c5761239c612336565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612406818460208801611fcc565b83519083019061241a818360208801611fcc565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061245690830184611ff8565b9695505050505050565b60006020828403121561247257600080fd5b815161150681611f99565b600060001982141561249157612491612336565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124bd576124bd612498565b500490565b6000828210156124d4576124d4612336565b500390565b6000826124e8576124e8612498565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202349e18c7a96f465b8dd967bccb411b3672b4da6555ffe9bbaa18d1ade32dfde64736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5937646851414e477078785a47314c4a584c455958786e3150504d785a37796539583669534b46313842576a0000000000000000000000
-----Decoded View---------------
Arg [0] : _notRevealedUri (string): ipfs://QmY7dhQANGpxxZG1LJXLEYXxn1PPMxZ7ye9X6iSKF18BWj
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d5937646851414e477078785a47314c4a584c455958786e
Arg [3] : 3150504d785a37796539583669534b46313842576a0000000000000000000000
Deployed Bytecode Sourcemap
46600:4536:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31041:372;;;;;;;;;;-1:-1:-1;31041:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;31041:372:0;;;;;;;;32927:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50645:153::-;;;;;;;;;;;;;:::i;:::-;;34489:214;;;;;;;;;;-1:-1:-1;34489:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;34489:214:0;1528:203:1;34010:413:0;;;;;;;;;;-1:-1:-1;34010:413:0;;;;;:::i;:::-;;:::i;46694:33::-;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;46694:33:0;2173:177:1;29298:100:0;;;;;;;;;;-1:-1:-1;29378:12:0;;29298:100;;35365:162;;;;;;;;;;-1:-1:-1;35365:162:0;;;;;:::i;:::-;;:::i;46963:35::-;;;;;;;;;;;;;;;;47217:54;;;;;;;;;;-1:-1:-1;47217:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;47128:31;;;;;;;;;;;;;;;;29962:1007;;;;;;;;;;-1:-1:-1;29962:1007:0;;;;;:::i;:::-;;:::i;49172:120::-;;;;;;;;;;-1:-1:-1;49172:120:0;;;;;:::i;:::-;;:::i;46922:33::-;;;;;;;;;;;;;;;;50984:145;;;:::i;47169:32::-;;;;;;;;;;-1:-1:-1;47169:32:0;;;;;;;;35598:177;;;;;;;;;;-1:-1:-1;35598:177:0;;;;;:::i;:::-;;:::i;50555:82::-;;;;;;;;;;-1:-1:-1;50555:82:0;;;;;:::i;:::-;;:::i;29475:187::-;;;;;;;;;;-1:-1:-1;29475:187:0;;;;;:::i;:::-;;:::i;46807:28::-;;;;;;;;;;-1:-1:-1;46807:28:0;;;;;;;;32736:124;;;;;;;;;;-1:-1:-1;32736:124:0;;;;;:::i;:::-;;:::i;31477:221::-;;;;;;;;;;-1:-1:-1;31477:221:0;;;;;:::i;:::-;;:::i;45739:103::-;;;;;;;;;;;;;:::i;50301:134::-;;;;;;;;;;-1:-1:-1;50301:134:0;;;;;:::i;:::-;;:::i;50806:165::-;;;;;;;;;;;;;:::i;50443:103::-;;;;;;;;;;-1:-1:-1;50443:103:0;;;;;:::i;:::-;;:::i;45088:87::-;;;;;;;;;;-1:-1:-1;45161:6:0;;-1:-1:-1;;;;;45161:6:0;45088:87;;33096:104;;;;;;;;;;;;;:::i;47079:41::-;;;;;;;;;;;;;;;;47463:1564;;;;;;:::i;:::-;;:::i;34775:288::-;;;;;;;;;;-1:-1:-1;34775:288:0;;;;;:::i;:::-;;:::i;46882:32::-;;;;;;;;;;;;;;;;35846:355;;;;;;;;;;-1:-1:-1;35846:355:0;;;;;:::i;:::-;;:::i;47006:65::-;;;;;;;;;;;;;;;;46649:37;;;;;;;;;;;;;:::i;49735:551::-;;;;;;;;;;-1:-1:-1;49735:551:0;;;;;:::i;:::-;;:::i;49524:199::-;;;;;;;;;;-1:-1:-1;49524:199:0;;;;;:::i;:::-;;:::i;46843:31::-;;;;;;;;;;;;;;;;49419:90;;;;;;;;;;-1:-1:-1;49419:90:0;;;;;:::i;:::-;;:::i;35134:164::-;;;;;;;;;;-1:-1:-1;35134:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35255:25:0;;;35231:4;35255:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35134:164;49035:128;;;;;;;;;;-1:-1:-1;49035:128:0;;;;;:::i;:::-;;:::i;45997:201::-;;;;;;;;;;-1:-1:-1;45997:201:0;;;;;:::i;:::-;;:::i;31041:372::-;31143:4;-1:-1:-1;;;;;;31180:40:0;;-1:-1:-1;;;31180:40:0;;:105;;-1:-1:-1;;;;;;;31237:48:0;;-1:-1:-1;;;31237:48:0;31180:105;:172;;;-1:-1:-1;;;;;;;31302:50:0;;-1:-1:-1;;;31302:50:0;31180:172;:225;;;-1:-1:-1;;;;;;;8765:33:0;;8741:4;8765:33;;;;;;;;;;;;;31369:36;31160:245;31041:372;-1:-1:-1;;31041:372:0:o;32927:100::-;32981:13;33014:5;33007:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32927:100;:::o;50645:153::-;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;;;;;;;;;50753:37:::1;::::0;50721:21:::1;::::0;50761:10:::1;::::0;50753:37;::::1;;;::::0;50721:21;;50703:15:::1;50753:37:::0;50703:15;50753:37;50721:21;50761:10;50753:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50692:106;50645:153::o:0;34489:214::-;34557:7;34585:16;34593:7;36547:12;;-1:-1:-1;36537:22:0;36456:111;34585:16;34577:74;;;;-1:-1:-1;;;34577:74:0;;6598:2:1;34577:74:0;;;6580:21:1;6637:2;6617:18;;;6610:30;6676:34;6656:18;;;6649:62;-1:-1:-1;;;6727:18:1;;;6720:43;6780:19;;34577:74:0;6396:409:1;34577:74:0;-1:-1:-1;34671:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34671:24:0;;34489:214::o;34010:413::-;34083:13;34099:24;34115:7;34099:15;:24::i;:::-;34083:40;;34148:5;-1:-1:-1;;;;;34142:11:0;:2;-1:-1:-1;;;;;34142:11:0;;;34134:58;;;;-1:-1:-1;;;34134:58:0;;7012:2:1;34134:58:0;;;6994:21:1;7051:2;7031:18;;;7024:30;7090:34;7070:18;;;7063:62;-1:-1:-1;;;7141:18:1;;;7134:32;7183:19;;34134:58:0;6810:398:1;34134:58:0;686:10;-1:-1:-1;;;;;34227:21:0;;;;:62;;-1:-1:-1;34252:37:0;34269:5;686:10;35134:164;:::i;34252:37::-;34205:169;;;;-1:-1:-1;;;34205:169:0;;7415:2:1;34205:169:0;;;7397:21:1;7454:2;7434:18;;;7427:30;7493:34;7473:18;;;7466:62;7564:27;7544:18;;;7537:55;7609:19;;34205:169:0;7213:421:1;34205:169:0;34387:28;34396:2;34400:7;34409:5;34387:8;:28::i;:::-;34072:351;34010:413;;:::o;35365:162::-;35491:28;35501:4;35507:2;35511:7;35491:9;:28::i;29962:1007::-;30051:7;30087:16;30097:5;30087:9;:16::i;:::-;30079:5;:24;30071:71;;;;-1:-1:-1;;;30071:71:0;;7841:2:1;30071:71:0;;;7823:21:1;7880:2;7860:18;;;7853:30;7919:34;7899:18;;;7892:62;-1:-1:-1;;;7970:18:1;;;7963:32;8012:19;;30071:71:0;7639:398:1;30071:71:0;30153:22;30178:13;29378:12;;;29298:100;30178:13;30153:38;;30202:19;30232:25;30421:9;30416:466;30436:14;30432:1;:18;30416:466;;;30476:31;30510:14;;;:11;:14;;;;;;;;;30476:48;;;;;;;;;-1:-1:-1;;;;;30476:48:0;;;;;-1:-1:-1;;;30476:48:0;;;;;;;;;;;;30547:28;30543:111;;30620:14;;;-1:-1:-1;30543:111:0;30697:5;-1:-1:-1;;;;;30676:26:0;:17;-1:-1:-1;;;;;30676:26:0;;30672:195;;;30746:5;30731:11;:20;30727:85;;;-1:-1:-1;30787:1:0;-1:-1:-1;30780:8:0;;-1:-1:-1;;;30780:8:0;30727:85;30834:13;;;;;30672:195;-1:-1:-1;30452:3:0;;30416:466;;;-1:-1:-1;30905:56:0;;-1:-1:-1;;;30905:56:0;;8244:2:1;30905:56:0;;;8226:21:1;8283:2;8263:18;;;8256:30;8322:34;8302:18;;;8295:62;-1:-1:-1;;;8373:18:1;;;8366:44;8427:19;;30905:56:0;8042:410:1;49172:120:0;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;49256:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;50984:145::-:0;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;51037:7:::1;51058;45161:6:::0;;-1:-1:-1;;;;;45161:6:0;;45088:87;51058:7:::1;-1:-1:-1::0;;;;;51050:21:0::1;51079;51050:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51036:69;;;51120:2;51112:11;;;::::0;::::1;;51029:100;50984:145::o:0;35598:177::-;35728:39;35745:4;35751:2;35755:7;35728:39;;;;;;;;;;;;:16;:39::i;50555:82::-;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;50614:4:::1;:15:::0;50555:82::o;29475:187::-;29542:7;29578:13;29378:12;;;29298:100;29578:13;29570:5;:21;29562:69;;;;-1:-1:-1;;;29562:69:0;;8869:2:1;29562:69:0;;;8851:21:1;8908:2;8888:18;;;8881:30;8947:34;8927:18;;;8920:62;-1:-1:-1;;;8998:18:1;;;8991:33;9041:19;;29562:69:0;8667:399:1;29562:69:0;-1:-1:-1;29649:5:0;29475:187::o;32736:124::-;32800:7;32827:20;32839:7;32827:11;:20::i;:::-;:25;;32736:124;-1:-1:-1;;32736:124:0:o;31477:221::-;31541:7;-1:-1:-1;;;;;31569:19:0;;31561:75;;;;-1:-1:-1;;;31561:75:0;;9273:2:1;31561:75:0;;;9255:21:1;9312:2;9292:18;;;9285:30;9351:34;9331:18;;;9324:62;-1:-1:-1;;;9402:18:1;;;9395:41;9453:19;;31561:75:0;9071:407:1;31561:75:0;-1:-1:-1;;;;;;31662:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31662:27:0;;31477:221::o;45739:103::-;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;45804:30:::1;45831:1;45804:18;:30::i;:::-;45739:103::o:0;50301:134::-;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;50387:22:::1;:40:::0;50301:134::o;50806:165::-;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;50891:1:::1;50867:21;:25;50859:42;;;;-1:-1:-1::0;;;50859:42:0::1;;;;;;9685:2:1::0;9667:21;;;9724:1;9704:18;;;9697:29;-1:-1:-1;;;9757:2:1;9742:18;;9735:34;9801:2;9786:18;;9483:327;50859:42:0::1;50912:51;::::0;50920:10:::1;::::0;50941:21:::1;50912:51:::0;::::1;;;::::0;::::1;::::0;;;50941:21;50920:10;50912:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;50443:103:::0;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;50514:12:::1;:24:::0;;-1:-1:-1;;50514:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50443:103::o;33096:104::-;33152:13;33185:7;33178:14;;;;;:::i;47463:1564::-;47539:12;;;;47531:58;;;;-1:-1:-1;;;47531:58:0;;10017:2:1;47531:58:0;;;9999:21:1;10056:2;10036:18;;;10029:30;10095:34;10075:18;;;10068:62;-1:-1:-1;;;10146:18:1;;;10139:31;10187:19;;47531:58:0;9815:397:1;47531:58:0;47619:11;;47604:12;;:26;47600:1275;;;47740:22;;47716:21;47726:10;47716:9;:21::i;:::-;:46;47713:793;;;47928:11;;47916:8;47901:12;;:23;;;;:::i;:::-;:38;;47893:55;;;;-1:-1:-1;;;47893:55:0;;;;;;;:::i;:::-;48043:22;;48017:10;47997:31;;;;:19;:31;;;;;;:42;;48031:8;;47997:42;:::i;:::-;:68;;47967:146;;;;-1:-1:-1;;;47967:146:0;;;;;;11016:2:1;10998:21;;;11055:1;11035:18;;;11028:29;-1:-1:-1;;;11088:2:1;11073:18;;11066:34;11132:2;11117:18;;10814:327;47967:146:0;47600:1275;;47713:793;48246:13;;48234:8;48219:12;;:23;;;;:::i;:::-;:40;;48211:57;;;;-1:-1:-1;;;48211:57:0;;;;;;;:::i;:::-;48363:15;;48337:10;48317:31;;;;:19;:31;;;;;;:42;;48351:8;;48317:42;:::i;:::-;:61;;48287:139;;;;-1:-1:-1;;;48287:139:0;;;;;;11348:2:1;11330:21;;;11387:1;11367:18;;;11360:29;-1:-1:-1;;;11420:2:1;11405:18;;11398:34;11464:2;11449:18;;11146:327;48287:139:0;48473:8;48466:4;;:15;;;;:::i;:::-;48453:9;:28;;48445:45;;;;-1:-1:-1;;;48445:45:0;;;;;;11853:2:1;11835:21;;;11892:1;11872:18;;;11865:29;-1:-1:-1;;;11925:2:1;11910:18;;11903:34;11969:2;11954:18;;11651:327;47600:1275:0;48639:13;;48627:8;48612:12;;:23;;;;:::i;:::-;:40;;48604:57;;;;-1:-1:-1;;;48604:57:0;;;;;;;:::i;:::-;48748:15;;48722:10;48702:31;;;;:19;:31;;;;;;:42;;48736:8;;48702:42;:::i;:::-;:61;;48676:127;;;;-1:-1:-1;;;48676:127:0;;;;;;11348:2:1;11330:21;;;11387:1;11367:18;;;11360:29;-1:-1:-1;;;11420:2:1;11405:18;;11398:34;11464:2;11449:18;;11146:327;48676:127:0;48846:8;48839:4;;:15;;;;:::i;:::-;48826:9;:28;;48818:45;;;;-1:-1:-1;;;48818:45:0;;;;;;11853:2:1;11835:21;;;11892:1;11872:18;;;11865:29;-1:-1:-1;;;11925:2:1;11910:18;;11903:34;11969:2;11954:18;;11651:327;48818:45:0;48905:8;48889:12;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;;48944:10:0;48924:31;;;;:19;:31;;;;;:43;;48959:8;;48924:31;:43;;48959:8;;48924:43;:::i;:::-;;;;-1:-1:-1;48978:31:0;;-1:-1:-1;48988:10:0;49000:8;48978:9;:31::i;34775:288::-;-1:-1:-1;;;;;34870:24:0;;686:10;34870:24;;34862:63;;;;-1:-1:-1;;;34862:63:0;;12185:2:1;34862:63:0;;;12167:21:1;12224:2;12204:18;;;12197:30;12263:28;12243:18;;;12236:56;12309:18;;34862:63:0;11983:350:1;34862:63:0;686:10;34938:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34938:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34938:53:0;;;;;;;;;;35007:48;;540:41:1;;;34938:42:0;;686:10;35007:48;;513:18:1;35007:48:0;;;;;;;34775:288;;:::o;35846:355::-;36005:28;36015:4;36021:2;36025:7;36005:9;:28::i;:::-;36066:48;36089:4;36095:2;36099:7;36108:5;36066:22;:48::i;:::-;36044:149;;;;-1:-1:-1;;;36044:149:0;;;;;;;:::i;:::-;35846:355;;;;:::o;46649:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49735:551::-;49853:13;49902:16;49910:7;36547:12;;-1:-1:-1;36537:22:0;36456:111;49902:16;49884:105;;;;-1:-1:-1;;;49884:105:0;;12960:2:1;49884:105:0;;;12942:21:1;12999:2;12979:18;;;12972:30;13038:34;13018:18;;;13011:62;-1:-1:-1;;;13089:18:1;;;13082:45;13144:19;;49884:105:0;12758:411:1;49884:105:0;50014:8;;;;50010:62;;50046:14;50039:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49735:551;;;:::o;50010:62::-;50084:28;50115:10;:8;:10::i;:::-;50084:41;;50176:1;50151:14;50145:28;:32;:133;;;;;;;;;;;;;;;;;50217:14;50233:25;50250:7;50233:16;:25::i;:::-;50200:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50145:133;50138:140;49735:551;-1:-1:-1;;;49735:551:0:o;49524:199::-;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;49641:9:::1;;49629:8;49613:13;29378:12:::0;;;29298:100;49613:13:::1;:24;;;;:::i;:::-;:37;;49605:70;;;::::0;-1:-1:-1;;;49605:70:0;;13851:2:1;49605:70:0::1;::::0;::::1;13833:21:1::0;13890:2;13870:18;;;13863:30;-1:-1:-1;;;13909:18:1;;;13902:50;13969:18;;49605:70:0::1;13649:344:1::0;49605:70:0::1;49688:27;49698:6;49706:8;49688:9;:27::i;49419:90::-:0;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;49484:8:::1;:17:::0;;-1:-1:-1;;49484:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49419:90::o;49035:128::-;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;49123:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;45997:201::-:0;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46086:22:0;::::1;46078:73;;;::::0;-1:-1:-1;;;46078:73:0;;14200:2:1;46078:73:0::1;::::0;::::1;14182:21:1::0;14239:2;14219:18;;;14212:30;14278:34;14258:18;;;14251:62;-1:-1:-1;;;14329:18:1;;;14322:36;14375:19;;46078:73:0::1;13998:402:1::0;46078:73:0::1;46162:28;46181:8;46162:18;:28::i;41378:196::-:0;41493:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41493:29:0;-1:-1:-1;;;;;41493:29:0;;;;;;;;;41538:28;;41493:24;;41538:28;;;;;;;41378:196;;;:::o;39258:2002::-;39373:35;39411:20;39423:7;39411:11;:20::i;:::-;39486:18;;39373:58;;-1:-1:-1;39444:22:0;;-1:-1:-1;;;;;39470:34:0;686:10;-1:-1:-1;;;;;39470:34:0;;:87;;;-1:-1:-1;686:10:0;39521:20;39533:7;39521:11;:20::i;:::-;-1:-1:-1;;;;;39521:36:0;;39470:87;:154;;;-1:-1:-1;39591:18:0;;39574:50;;686:10;35134:164;:::i;39574:50::-;39444:181;;39646:17;39638:80;;;;-1:-1:-1;;;39638:80:0;;14607:2:1;39638:80:0;;;14589:21:1;14646:2;14626:18;;;14619:30;14685:34;14665:18;;;14658:62;-1:-1:-1;;;14736:18:1;;;14729:48;14794:19;;39638:80:0;14405:414:1;39638:80:0;39761:4;-1:-1:-1;;;;;39739:26:0;:13;:18;;;-1:-1:-1;;;;;39739:26:0;;39731:77;;;;-1:-1:-1;;;39731:77:0;;15026:2:1;39731:77:0;;;15008:21:1;15065:2;15045:18;;;15038:30;15104:34;15084:18;;;15077:62;-1:-1:-1;;;15155:18:1;;;15148:36;15201:19;;39731:77:0;14824:402:1;39731:77:0;-1:-1:-1;;;;;39827:16:0;;39819:66;;;;-1:-1:-1;;;39819:66:0;;15433:2:1;39819:66:0;;;15415:21:1;15472:2;15452:18;;;15445:30;15511:34;15491:18;;;15484:62;-1:-1:-1;;;15562:18:1;;;15555:35;15607:19;;39819:66:0;15231:401:1;39819:66:0;40006:49;40023:1;40027:7;40036:13;:18;;;40006:8;:49::i;:::-;-1:-1:-1;;;;;40351:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;40351:31:0;;;-1:-1:-1;;;;;40351:31:0;;;-1:-1:-1;;40351:31:0;;;;;;;40397:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40397:29:0;;;;;;;;;;;;;40443:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;40488:61:0;;;;-1:-1:-1;;;40533:15:0;40488:61;;;;;;40823:11;;;40853:24;;;;;:29;40823:11;;40853:29;40849:295;;40921:20;40929:11;36547:12;;-1:-1:-1;36537:22:0;36456:111;40921:20;40917:212;;;40998:18;;;40966:24;;;:11;:24;;;;;;;;:50;;41081:28;;;;41039:70;;-1:-1:-1;;;41039:70:0;-1:-1:-1;;;;;;41039:70:0;;;-1:-1:-1;;;;;40966:50:0;;;41039:70;;;;;;;40917:212;40326:829;41191:7;41187:2;-1:-1:-1;;;;;41172:27:0;41181:4;-1:-1:-1;;;;;41172:27:0;;;;;;;;;;;41210:42;39362:1898;;39258:2002;;;:::o;32137:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;32240:16:0;32248:7;36547:12;;-1:-1:-1;36537:22:0;36456:111;32240:16;32232:71;;;;-1:-1:-1;;;32232:71:0;;15839:2:1;32232:71:0;;;15821:21:1;15878:2;15858:18;;;15851:30;15917:34;15897:18;;;15890:62;-1:-1:-1;;;15968:18:1;;;15961:40;16018:19;;32232:71:0;15637:406:1;32232:71:0;32361:7;32341:245;32408:31;32442:17;;;:11;:17;;;;;;;;;32408:51;;;;;;;;;-1:-1:-1;;;;;32408:51:0;;;;;-1:-1:-1;;;32408:51:0;;;;;;;;;;;;32482:28;32478:93;;32542:9;32137:537;-1:-1:-1;;;32137:537:0:o;32478:93::-;-1:-1:-1;;;32381:6:0;32341:245;;46358:191;46451:6;;;-1:-1:-1;;;;;46468:17:0;;;-1:-1:-1;;;;;;46468:17:0;;;;;;;46501:40;;46451:6;;;46468:17;46451:6;;46501:40;;46432:16;;46501:40;46421:128;46358:191;:::o;36575:104::-;36644:27;36654:2;36658:8;36644:27;;;;;;;;;;;;:9;:27::i;42139:804::-;42294:4;-1:-1:-1;;;;;42315:13:0;;17844:20;17883:8;42311:625;;42351:72;;-1:-1:-1;;;42351:72:0;;-1:-1:-1;;;;;42351:36:0;;;;;:72;;686:10;;42402:4;;42408:7;;42417:5;;42351:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42351:72:0;;;;;;;;-1:-1:-1;;42351:72:0;;;;;;;;;;;;:::i;:::-;;;42347:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42597:13:0;;42593:273;;42640:61;;-1:-1:-1;;;42640:61:0;;;;;;;:::i;42593:273::-;42816:6;42810:13;42801:6;42797:2;42793:15;42786:38;42347:534;-1:-1:-1;;;;;;42474:55:0;-1:-1:-1;;;42474:55:0;;-1:-1:-1;42467:62:0;;42311:625;-1:-1:-1;42920:4:0;42311:625;42139:804;;;;;;:::o;49301:107::-;49361:13;49391:12;49384:19;;;;;:::i;24961:723::-;25017:13;25238:10;25234:53;;-1:-1:-1;;25265:10:0;;;;;;;;;;;;-1:-1:-1;;;25265:10:0;;;;;24961:723::o;25234:53::-;25312:5;25297:12;25353:78;25360:9;;25353:78;;25386:8;;;;:::i;:::-;;-1:-1:-1;25409:10:0;;-1:-1:-1;25417:2:0;25409:10;;:::i;:::-;;;25353:78;;;25441:19;25473:6;25463:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25463:17:0;;25441:39;;25491:154;25498:10;;25491:154;;25525:11;25535:1;25525:11;;:::i;:::-;;-1:-1:-1;25594:10:0;25602:2;25594:5;:10;:::i;:::-;25581:24;;:2;:24;:::i;:::-;25568:39;;25551:6;25558;25551:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;25551:56:0;;;;;;;;-1:-1:-1;25622:11:0;25631:2;25622:11;;:::i;:::-;;;25491:154;;37042:163;37165:32;37171:2;37175:8;37185:5;37192:4;37628:12;;-1:-1:-1;;;;;37659:16:0;;37651:62;;;;-1:-1:-1;;;37651:62:0;;18190:2:1;37651:62:0;;;18172:21:1;18229:2;18209:18;;;18202:30;18268:34;18248:18;;;18241:62;-1:-1:-1;;;18319:18:1;;;18312:31;18360:19;;37651:62:0;17988:397:1;37651:62:0;37732:13;37724:66;;;;-1:-1:-1;;;37724:66:0;;18592:2:1;37724:66:0;;;18574:21:1;18631:2;18611:18;;;18604:30;18670:34;18650:18;;;18643:62;-1:-1:-1;;;18721:18:1;;;18714:38;18769:19;;37724:66:0;18390:404:1;37724:66:0;-1:-1:-1;;;;;38142:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;38142:45:0;;-1:-1:-1;;;;;38142:45:0;;;;;;;;;;38202:50;;;;;;;;;;;;;;38269:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;38319:66:0;;;;-1:-1:-1;;;38369:15:0;38319:66;;;;;;;38269:25;;38454:415;38474:8;38470:1;:12;38454:415;;;38513:38;;38538:12;;-1:-1:-1;;;;;38513:38:0;;;38530:1;;38513:38;;38530:1;;38513:38;38574:4;38570:249;;;38637:59;38668:1;38672:2;38676:12;38690:5;38637:22;:59::i;:::-;38603:196;;;;-1:-1:-1;;;38603:196:0;;;;;;;:::i;:::-;38839:14;;;;;38484:3;38454:415;;;-1:-1:-1;38885:12:0;:27;38936:60;35846:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:160::-;4169:20;;4225:13;;4218:21;4208:32;;4198:60;;4254:1;4251;4244:12;4269:180;4325:6;4378:2;4366:9;4357:7;4353:23;4349:32;4346:52;;;4394:1;4391;4384:12;4346:52;4417:26;4433:9;4417:26;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;6035:356::-;6237:2;6219:21;;;6256:18;;;6249:30;6315:34;6310:2;6295:18;;6288:62;6382:2;6367:18;;6035:356::o;10217:127::-;10278:10;10273:3;10269:20;10266:1;10259:31;10309:4;10306:1;10299:15;10333:4;10330:1;10323:15;10349:128;10389:3;10420:1;10416:6;10413:1;10410:13;10407:39;;;10426:18;;:::i;:::-;-1:-1:-1;10462:9:1;;10349:128::o;10482:327::-;10684:2;10666:21;;;10723:1;10703:18;;;10696:29;-1:-1:-1;;;10756:2:1;10741:18;;10734:34;10800:2;10785:18;;10482:327::o;11478:168::-;11518:7;11584:1;11580;11576:6;11572:14;11569:1;11566:21;11561:1;11554:9;11547:17;11543:45;11540:71;;;11591:18;;:::i;:::-;-1:-1:-1;11631:9:1;;11478:168::o;12338:415::-;12540:2;12522:21;;;12579:2;12559:18;;;12552:30;12618:34;12613:2;12598:18;;12591:62;-1:-1:-1;;;12684:2:1;12669:18;;12662:49;12743:3;12728:19;;12338:415::o;13174:470::-;13353:3;13391:6;13385:13;13407:53;13453:6;13448:3;13441:4;13433:6;13429:17;13407:53;:::i;:::-;13523:13;;13482:16;;;;13545:57;13523:13;13482:16;13579:4;13567:17;;13545:57;:::i;:::-;13618:20;;13174:470;-1:-1:-1;;;;13174:470:1:o;16464:489::-;-1:-1:-1;;;;;16733:15:1;;;16715:34;;16785:15;;16780:2;16765:18;;16758:43;16832:2;16817:18;;16810:34;;;16880:3;16875:2;16860:18;;16853:31;;;16658:4;;16901:46;;16927:19;;16919:6;16901:46;:::i;:::-;16893:54;16464:489;-1:-1:-1;;;;;;16464:489:1:o;16958:249::-;17027:6;17080:2;17068:9;17059:7;17055:23;17051:32;17048:52;;;17096:1;17093;17086:12;17048:52;17128:9;17122:16;17147:30;17171:5;17147:30;:::i;17212:135::-;17251:3;-1:-1:-1;;17272:17:1;;17269:43;;;17292:18;;:::i;:::-;-1:-1:-1;17339:1:1;17328:13;;17212:135::o;17352:127::-;17413:10;17408:3;17404:20;17401:1;17394:31;17444:4;17441:1;17434:15;17468:4;17465:1;17458:15;17484:120;17524:1;17550;17540:35;;17555:18;;:::i;:::-;-1:-1:-1;17589:9:1;;17484:120::o;17609:125::-;17649:4;17677:1;17674;17671:8;17668:34;;;17682:18;;:::i;:::-;-1:-1:-1;17719:9:1;;17609:125::o;17739:112::-;17771:1;17797;17787:35;;17802:18;;:::i;:::-;-1:-1:-1;17836:9:1;;17739:112::o;17856:127::-;17917:10;17912:3;17908:20;17905:1;17898:31;17948:4;17945:1;17938:15;17972:4;17969:1;17962:15
Swarm Source
ipfs://2349e18c7a96f465b8dd967bccb411b3672b4da6555ffe9bbaa18d1ade32dfde
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.