Contract Overview
Balance:
0 MATIC
MATIC Value:
$0.00
[ Download CSV Export ]
Contract Name:
Emojiiis
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-02-21 */ /* Emojiiis Website: https://emojiiis.co */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @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 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); } /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: 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 virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } contract Emojiiis is ERC721, Ownable { uint public maxItems = 10000; uint public totalMinted = 0; uint public maxItemsPerTx = 5; string public _baseTokenURI; event Mint(address indexed owner, uint indexed tokenId); constructor() ERC721("Emojiiis", "EMOJIIIS") {} function mint(address to, uint amount) external { require(totalMinted + amount <= maxItems, "mintWithoutValidation: Sold out"); require(amount <= maxItemsPerTx, "preMint: Max 5 per tx"); for (uint i = 0; i < amount; i++) { totalMinted += 1; _mint(to, totalMinted); emit Mint(to, totalMinted); } } function setBaseTokenURI(string memory __baseTokenURI) external onlyOwner { _baseTokenURI = __baseTokenURI; } function withdraw() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } function tokenURI(uint256 _tokenId) public view override returns (string memory) { return string(abi.encodePacked(_baseTokenURI, Strings.toString(_tokenId))); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"maxItems","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItemsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","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":"nonpayable","type":"function"}]
Contract Creation Code
6080604052612710600755600060085560056009553480156200002157600080fd5b5060405180604001604052806008815260200167456d6f6a6969697360c01b81525060405180604001604052806008815260200167454d4f4a4949495360c01b81525081600090805190602001906200007c9291906200010b565b508051620000929060019060208401906200010b565b505050620000af620000a9620000b560201b60201c565b620000b9565b620001ee565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011990620001b1565b90600052602060002090601f0160209004810192826200013d576000855562000188565b82601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b5b808211156200019657600081556001016200019b565b600181811c90821680620001c657607f821691505b60208210811415620001e857634e487b7160e01b600052602260045260246000fd5b50919050565b6118f080620001fe6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80636352211e116100c3578063a2309ff81161007c578063a2309ff81461029d578063b88d4fde146102a6578063c87b56dd146102b9578063cfc86f7b146102cc578063e985e9c5146102d4578063f2fde38b1461031057600080fd5b80636352211e1461024357806370a0823114610256578063715018a6146102695780638da5cb5b1461027157806395d89b4114610282578063a22cb4651461028a57600080fd5b806330176e131161011557806330176e13146101e257806330666a4d146101f55780633c010a3e1461020c5780633ccfd60b1461021557806340c10f191461021d57806342842e0e1461023057600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba57806323b872dd146101cf575b600080fd5b6101656101603660046112d1565b610323565b60405190151581526020015b60405180910390f35b610182610375565b604051610171919061134d565b6101a261019d366004611360565b610407565b6040516001600160a01b039091168152602001610171565b6101cd6101c8366004611395565b6104a1565b005b6101cd6101dd3660046113bf565b6105b7565b6101cd6101f0366004611487565b6105e8565b6101fe60095481565b604051908152602001610171565b6101fe60075481565b6101cd610629565b6101cd61022b366004611395565b610682565b6101cd61023e3660046113bf565b6107a5565b6101a2610251366004611360565b6107c0565b6101fe6102643660046114d0565b610837565b6101cd6108be565b6006546001600160a01b03166101a2565b6101826108f4565b6101cd6102983660046114eb565b610903565b6101fe60085481565b6101cd6102b4366004611527565b6109c8565b6101826102c7366004611360565b610a00565b610182610a34565b6101656102e23660046115a3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101cd61031e3660046114d0565b610ac2565b60006001600160e01b031982166380ac58cd60e01b148061035457506001600160e01b03198216635b5e139f60e01b145b8061036f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610384906115d6565b80601f01602080910402602001604051908101604052809291908181526020018280546103b0906115d6565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104ac826107c0565b9050806001600160a01b0316836001600160a01b0316141561051a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161047c565b336001600160a01b0382161480610536575061053681336102e2565b6105a85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161047c565b6105b28383610b5a565b505050565b6105c13382610bc8565b6105dd5760405162461bcd60e51b815260040161047c90611611565b6105b2838383610cbf565b6006546001600160a01b031633146106125760405162461bcd60e51b815260040161047c90611662565b805161062590600a906020840190611222565b5050565b6006546001600160a01b031633146106535760405162461bcd60e51b815260040161047c90611662565b60405133904780156108fc02916000818181858888f1935050505015801561067f573d6000803e3d6000fd5b50565b6007548160085461069391906116ad565b11156106e15760405162461bcd60e51b815260206004820152601f60248201527f6d696e74576974686f757456616c69646174696f6e3a20536f6c64206f757400604482015260640161047c565b60095481111561072b5760405162461bcd60e51b81526020600482015260156024820152740e0e4ca9ad2dce874409ac2f0406a40e0cae440e8f605b1b604482015260640161047c565b60005b818110156105b25760016008600082825461074991906116ad565b9250508190555061075c83600854610e5f565b6008546040516001600160a01b038516907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a38061079d816116c5565b91505061072e565b6105b2838383604051806020016040528060008152506109c8565b6000818152600260205260408120546001600160a01b03168061036f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161047c565b60006001600160a01b0382166108a25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161047c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108e85760405162461bcd60e51b815260040161047c90611662565b6108f26000610fa1565b565b606060018054610384906115d6565b6001600160a01b03821633141561095c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161047c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109d23383610bc8565b6109ee5760405162461bcd60e51b815260040161047c90611611565b6109fa84848484610ff3565b50505050565b6060600a610a0d83611026565b604051602001610a1e9291906116fc565b6040516020818303038152906040529050919050565b600a8054610a41906115d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6d906115d6565b8015610aba5780601f10610a8f57610100808354040283529160200191610aba565b820191906000526020600020905b815481529060010190602001808311610a9d57829003601f168201915b505050505081565b6006546001600160a01b03163314610aec5760405162461bcd60e51b815260040161047c90611662565b6001600160a01b038116610b515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161047c565b61067f81610fa1565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b8f826107c0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610c415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161047c565b6000610c4c836107c0565b9050806001600160a01b0316846001600160a01b03161480610c875750836001600160a01b0316610c7c84610407565b6001600160a01b0316145b80610cb757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610cd2826107c0565b6001600160a01b031614610d3a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161047c565b6001600160a01b038216610d9c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161047c565b610da7600082610b5a565b6001600160a01b0383166000908152600360205260408120805460019290610dd09084906117a3565b90915550506001600160a01b0382166000908152600360205260408120805460019290610dfe9084906116ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216610eb55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161047c565b6000818152600260205260409020546001600160a01b031615610f1a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161047c565b6001600160a01b0382166000908152600360205260408120805460019290610f439084906116ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ffe848484610cbf565b61100a84848484611124565b6109fa5760405162461bcd60e51b815260040161047c906117ba565b60608161104a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611074578061105e816116c5565b915061106d9050600a83611822565b915061104e565b60008167ffffffffffffffff81111561108f5761108f6113fb565b6040519080825280601f01601f1916602001820160405280156110b9576020820181803683370190505b5090505b8415610cb7576110ce6001836117a3565b91506110db600a86611836565b6110e69060306116ad565b60f81b8183815181106110fb576110fb61184a565b60200101906001600160f81b031916908160001a90535061111d600a86611822565b94506110bd565b60006001600160a01b0384163b1561121757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611168903390899088908890600401611860565b6020604051808303816000875af19250505080156111a3575060408051601f3d908101601f191682019092526111a09181019061189d565b60015b6111fd573d8080156111d1576040519150601f19603f3d011682016040523d82523d6000602084013e6111d6565b606091505b5080516111f55760405162461bcd60e51b815260040161047c906117ba565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610cb7565b506001949350505050565b82805461122e906115d6565b90600052602060002090601f0160209004810192826112505760008555611296565b82601f1061126957805160ff1916838001178555611296565b82800160010185558215611296579182015b8281111561129657825182559160200191906001019061127b565b506112a29291506112a6565b5090565b5b808211156112a257600081556001016112a7565b6001600160e01b03198116811461067f57600080fd5b6000602082840312156112e357600080fd5b81356112ee816112bb565b9392505050565b60005b838110156113105781810151838201526020016112f8565b838111156109fa5750506000910152565b600081518084526113398160208601602086016112f5565b601f01601f19169290920160200192915050565b6020815260006112ee6020830184611321565b60006020828403121561137257600080fd5b5035919050565b80356001600160a01b038116811461139057600080fd5b919050565b600080604083850312156113a857600080fd5b6113b183611379565b946020939093013593505050565b6000806000606084860312156113d457600080fd5b6113dd84611379565b92506113eb60208501611379565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561142c5761142c6113fb565b604051601f8501601f19908116603f01168101908282118183101715611454576114546113fb565b8160405280935085815286868601111561146d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561149957600080fd5b813567ffffffffffffffff8111156114b057600080fd5b8201601f810184136114c157600080fd5b610cb784823560208401611411565b6000602082840312156114e257600080fd5b6112ee82611379565b600080604083850312156114fe57600080fd5b61150783611379565b91506020830135801515811461151c57600080fd5b809150509250929050565b6000806000806080858703121561153d57600080fd5b61154685611379565b935061155460208601611379565b925060408501359150606085013567ffffffffffffffff81111561157757600080fd5b8501601f8101871361158857600080fd5b61159787823560208401611411565b91505092959194509250565b600080604083850312156115b657600080fd5b6115bf83611379565b91506115cd60208401611379565b90509250929050565b600181811c908216806115ea57607f821691505b6020821081141561160b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156116c0576116c0611697565b500190565b60006000198214156116d9576116d9611697565b5060010190565b600081516116f28185602086016112f5565b9290920192915050565b600080845481600182811c91508083168061171857607f831692505b602080841082141561173857634e487b7160e01b86526022600452602486fd5b81801561174c576001811461175d5761178a565b60ff1986168952848901965061178a565b60008b81526020902060005b868110156117825781548b820152908501908301611769565b505084890196505b50505050505061179a81856116e0565b95945050505050565b6000828210156117b5576117b5611697565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826118315761183161180c565b500490565b6000826118455761184561180c565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061189390830184611321565b9695505050505050565b6000602082840312156118af57600080fd5b81516112ee816112bb56fea2646970667358221220cc11d6ad494297f15ec704c901b5e233c96aa3647db248a31707609129a8d8e764736f6c634300080c0033
Deployed ByteCode Sourcemap
34227:1123:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22100:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;22100:305:0;;;;;;;;23045:100;;;:::i;:::-;;;;;;;:::i;24604:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;24604:221:0;1550:203:1;24127:411:0;;;;;;:::i;:::-;;:::i;:::-;;25494:339;;;;;;:::i;:::-;;:::i;34923:123::-;;;;;;:::i;:::-;;:::i;34340:29::-;;;;;;;;;3899:25:1;;;3887:2;3872:18;34340:29:0;3753:177:1;34271:28:0;;;;;;35054:107;;;:::i;34531:384::-;;;;;;:::i;:::-;;:::i;25904:185::-;;;;;;:::i;:::-;;:::i;22739:239::-;;;;;;:::i;:::-;;:::i;22469:208::-;;;;;;:::i;:::-;;:::i;2428:94::-;;;:::i;1777:87::-;1850:6;;-1:-1:-1;;;;;1850:6:0;1777:87;;23214:104;;;:::i;24897:295::-;;;;;;:::i;:::-;;:::i;34306:27::-;;;;;;26160:328;;;;;;:::i;:::-;;:::i;35173:174::-;;;;;;:::i;:::-;;:::i;34376:27::-;;;:::i;25263:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25384:25:0;;;25360:4;25384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25263:164;2677:192;;;;;;:::i;:::-;;:::i;22100:305::-;22202:4;-1:-1:-1;;;;;;22239:40:0;;-1:-1:-1;;;22239:40:0;;:105;;-1:-1:-1;;;;;;;22296:48:0;;-1:-1:-1;;;22296:48:0;22239:105;:158;;;-1:-1:-1;;;;;;;;;;20816:40:0;;;22361:36;22219:178;22100:305;-1:-1:-1;;22100:305:0:o;23045:100::-;23099:13;23132:5;23125:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23045:100;:::o;24604:221::-;24680:7;28087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28087:16:0;24700:73;;;;-1:-1:-1;;;24700:73:0;;6002:2:1;24700:73:0;;;5984:21:1;6041:2;6021:18;;;6014:30;6080:34;6060:18;;;6053:62;-1:-1:-1;;;6131:18:1;;;6124:42;6183:19;;24700:73:0;;;;;;;;;-1:-1:-1;24793:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24793:24:0;;24604:221::o;24127:411::-;24208:13;24224:23;24239:7;24224:14;:23::i;:::-;24208:39;;24272:5;-1:-1:-1;;;;;24266:11:0;:2;-1:-1:-1;;;;;24266:11:0;;;24258:57;;;;-1:-1:-1;;;24258:57:0;;6415:2:1;24258:57:0;;;6397:21:1;6454:2;6434:18;;;6427:30;6493:34;6473:18;;;6466:62;-1:-1:-1;;;6544:18:1;;;6537:31;6585:19;;24258:57:0;6213:397:1;24258:57:0;733:10;-1:-1:-1;;;;;24350:21:0;;;;:62;;-1:-1:-1;24375:37:0;24392:5;733:10;25263:164;:::i;24375:37::-;24328:168;;;;-1:-1:-1;;;24328:168:0;;6817:2:1;24328:168:0;;;6799:21:1;6856:2;6836:18;;;6829:30;6895:34;6875:18;;;6868:62;6966:26;6946:18;;;6939:54;7010:19;;24328:168:0;6615:420:1;24328:168:0;24509:21;24518:2;24522:7;24509:8;:21::i;:::-;24197:341;24127:411;;:::o;25494:339::-;25689:41;733:10;25722:7;25689:18;:41::i;:::-;25681:103;;;;-1:-1:-1;;;25681:103:0;;;;;;;:::i;:::-;25797:28;25807:4;25813:2;25817:7;25797:9;:28::i;34923:123::-;1850:6;;-1:-1:-1;;;;;1850:6:0;733:10;1997:23;1989:68;;;;-1:-1:-1;;;1989:68:0;;;;;;;:::i;:::-;35008:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;:::-;;34923:123:::0;:::o;35054:107::-;1850:6;;-1:-1:-1;;;;;1850:6:0;733:10;1997:23;1989:68;;;;-1:-1:-1;;;1989:68:0;;;;;;;:::i;:::-;35102:51:::1;::::0;35110:10:::1;::::0;35131:21:::1;35102:51:::0;::::1;;;::::0;::::1;::::0;;;35131:21;35110:10;35102:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;35054:107::o:0;34531:384::-;34622:8;;34612:6;34598:11;;:20;;;;:::i;:::-;:32;;34590:76;;;;-1:-1:-1;;;34590:76:0;;8286:2:1;34590:76:0;;;8268:21:1;8325:2;8305:18;;;8298:30;8364:33;8344:18;;;8337:61;8415:18;;34590:76:0;8084:355:1;34590:76:0;34695:13;;34685:6;:23;;34677:57;;;;-1:-1:-1;;;34677:57:0;;8646:2:1;34677:57:0;;;8628:21:1;8685:2;8665:18;;;8658:30;-1:-1:-1;;;8704:18:1;;;8697:51;8765:18;;34677:57:0;8444:345:1;34677:57:0;34758:6;34753:155;34774:6;34770:1;:10;34753:155;;;34817:1;34802:11;;:16;;;;;;;:::i;:::-;;;;;;;;34833:22;34839:2;34843:11;;34833:5;:22::i;:::-;34884:11;;34875:21;;-1:-1:-1;;;;;34875:21:0;;;;;;;;34782:3;;;;:::i;:::-;;;;34753:155;;25904:185;26042:39;26059:4;26065:2;26069:7;26042:39;;;;;;;;;;;;:16;:39::i;22739:239::-;22811:7;22847:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22847:16:0;22882:19;22874:73;;;;-1:-1:-1;;;22874:73:0;;9136:2:1;22874:73:0;;;9118:21:1;9175:2;9155:18;;;9148:30;9214:34;9194:18;;;9187:62;-1:-1:-1;;;9265:18:1;;;9258:39;9314:19;;22874:73:0;8934:405:1;22469:208:0;22541:7;-1:-1:-1;;;;;22569:19:0;;22561:74;;;;-1:-1:-1;;;22561:74:0;;9546:2:1;22561:74:0;;;9528:21:1;9585:2;9565:18;;;9558:30;9624:34;9604:18;;;9597:62;-1:-1:-1;;;9675:18:1;;;9668:40;9725:19;;22561:74:0;9344:406:1;22561:74:0;-1:-1:-1;;;;;;22653:16:0;;;;;:9;:16;;;;;;;22469:208::o;2428:94::-;1850:6;;-1:-1:-1;;;;;1850:6:0;733:10;1997:23;1989:68;;;;-1:-1:-1;;;1989:68:0;;;;;;;:::i;:::-;2493:21:::1;2511:1;2493:9;:21::i;:::-;2428:94::o:0;23214:104::-;23270:13;23303:7;23296:14;;;;;:::i;24897:295::-;-1:-1:-1;;;;;25000:24:0;;733:10;25000:24;;24992:62;;;;-1:-1:-1;;;24992:62:0;;9957:2:1;24992:62:0;;;9939:21:1;9996:2;9976:18;;;9969:30;10035:27;10015:18;;;10008:55;10080:18;;24992:62:0;9755:349:1;24992:62:0;733:10;25067:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25067:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25067:53:0;;;;;;;;;;25136:48;;540:41:1;;;25067:42:0;;733:10;25136:48;;513:18:1;25136:48:0;;;;;;;24897:295;;:::o;26160:328::-;26335:41;733:10;26368:7;26335:18;:41::i;:::-;26327:103;;;;-1:-1:-1;;;26327:103:0;;;;;;;:::i;:::-;26441:39;26455:4;26461:2;26465:7;26474:5;26441:13;:39::i;:::-;26160:328;;;;:::o;35173:174::-;35239:13;35296;35311:26;35328:8;35311:16;:26::i;:::-;35279:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35265:74;;35173:174;;;:::o;34376:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2677:192::-;1850:6;;-1:-1:-1;;;;;1850:6:0;733:10;1997:23;1989:68;;;;-1:-1:-1;;;1989:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2766:22:0;::::1;2758:73;;;::::0;-1:-1:-1;;;2758:73:0;;11806:2:1;2758:73:0::1;::::0;::::1;11788:21:1::0;11845:2;11825:18;;;11818:30;11884:34;11864:18;;;11857:62;-1:-1:-1;;;11935:18:1;;;11928:36;11981:19;;2758:73:0::1;11604:402:1::0;2758:73:0::1;2842:19;2852:8;2842:9;:19::i;31980:174::-:0;32055:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32055:29:0;-1:-1:-1;;;;;32055:29:0;;;;;;;;:24;;32109:23;32055:24;32109:14;:23::i;:::-;-1:-1:-1;;;;;32100:46:0;;;;;;;;;;;31980:174;;:::o;28292:348::-;28385:4;28087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28087:16:0;28402:73;;;;-1:-1:-1;;;28402:73:0;;12213:2:1;28402:73:0;;;12195:21:1;12252:2;12232:18;;;12225:30;12291:34;12271:18;;;12264:62;-1:-1:-1;;;12342:18:1;;;12335:42;12394:19;;28402:73:0;12011:408:1;28402:73:0;28486:13;28502:23;28517:7;28502:14;:23::i;:::-;28486:39;;28555:5;-1:-1:-1;;;;;28544:16:0;:7;-1:-1:-1;;;;;28544:16:0;;:51;;;;28588:7;-1:-1:-1;;;;;28564:31:0;:20;28576:7;28564:11;:20::i;:::-;-1:-1:-1;;;;;28564:31:0;;28544:51;:87;;;-1:-1:-1;;;;;;25384:25:0;;;25360:4;25384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28599:32;28536:96;28292:348;-1:-1:-1;;;;28292:348:0:o;31284:578::-;31443:4;-1:-1:-1;;;;;31416:31:0;:23;31431:7;31416:14;:23::i;:::-;-1:-1:-1;;;;;31416:31:0;;31408:85;;;;-1:-1:-1;;;31408:85:0;;12626:2:1;31408:85:0;;;12608:21:1;12665:2;12645:18;;;12638:30;12704:34;12684:18;;;12677:62;-1:-1:-1;;;12755:18:1;;;12748:39;12804:19;;31408:85:0;12424:405:1;31408:85:0;-1:-1:-1;;;;;31512:16:0;;31504:65;;;;-1:-1:-1;;;31504:65:0;;13036:2:1;31504:65:0;;;13018:21:1;13075:2;13055:18;;;13048:30;13114:34;13094:18;;;13087:62;-1:-1:-1;;;13165:18:1;;;13158:34;13209:19;;31504:65:0;12834:400:1;31504:65:0;31686:29;31703:1;31707:7;31686:8;:29::i;:::-;-1:-1:-1;;;;;31728:15:0;;;;;;:9;:15;;;;;:20;;31747:1;;31728:15;:20;;31747:1;;31728:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31759:13:0;;;;;;:9;:13;;;;;:18;;31776:1;;31759:13;:18;;31776:1;;31759:18;:::i;:::-;;;;-1:-1:-1;;31788:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31788:21:0;-1:-1:-1;;;;;31788:21:0;;;;;;;;;31827:27;;31788:16;;31827:27;;;;;;;31284:578;;;:::o;29976:382::-;-1:-1:-1;;;;;30056:16:0;;30048:61;;;;-1:-1:-1;;;30048:61:0;;13571:2:1;30048:61:0;;;13553:21:1;;;13590:18;;;13583:30;13649:34;13629:18;;;13622:62;13701:18;;30048:61:0;13369:356:1;30048:61:0;28063:4;28087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28087:16:0;:30;30120:58;;;;-1:-1:-1;;;30120:58:0;;13932:2:1;30120:58:0;;;13914:21:1;13971:2;13951:18;;;13944:30;14010;13990:18;;;13983:58;14058:18;;30120:58:0;13730:352:1;30120:58:0;-1:-1:-1;;;;;30249:13:0;;;;;;:9;:13;;;;;:18;;30266:1;;30249:13;:18;;30266:1;;30249:18;:::i;:::-;;;;-1:-1:-1;;30278:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30278:21:0;-1:-1:-1;;;;;30278:21:0;;;;;;;;30317:33;;30278:16;;;30317:33;;30278:16;;30317:33;29976:382;;:::o;2877:173::-;2952:6;;;-1:-1:-1;;;;;2969:17:0;;;-1:-1:-1;;;;;;2969:17:0;;;;;;;3002:40;;2952:6;;;2969:17;2952:6;;3002:40;;2933:16;;3002:40;2922:128;2877:173;:::o;27370:315::-;27527:28;27537:4;27543:2;27547:7;27527:9;:28::i;:::-;27574:48;27597:4;27603:2;27607:7;27616:5;27574:22;:48::i;:::-;27566:111;;;;-1:-1:-1;;;27566:111:0;;;;;;;:::i;18248:723::-;18304:13;18525:10;18521:53;;-1:-1:-1;;18552:10:0;;;;;;;;;;;;-1:-1:-1;;;18552:10:0;;;;;18248:723::o;18521:53::-;18599:5;18584:12;18640:78;18647:9;;18640:78;;18673:8;;;;:::i;:::-;;-1:-1:-1;18696:10:0;;-1:-1:-1;18704:2:0;18696:10;;:::i;:::-;;;18640:78;;;18728:19;18760:6;18750:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18750:17:0;;18728:39;;18778:154;18785:10;;18778:154;;18812:11;18822:1;18812:11;;:::i;:::-;;-1:-1:-1;18881:10:0;18889:2;18881:5;:10;:::i;:::-;18868:24;;:2;:24;:::i;:::-;18855:39;;18838:6;18845;18838:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18838:56:0;;;;;;;;-1:-1:-1;18909:11:0;18918:2;18909:11;;:::i;:::-;;;18778:154;;32719:799;32874:4;-1:-1:-1;;;;;32895:13:0;;11012:20;11060:8;32891:620;;32931:72;;-1:-1:-1;;;32931:72:0;;-1:-1:-1;;;;;32931:36:0;;;;;:72;;733:10;;32982:4;;32988:7;;32997:5;;32931:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32931:72:0;;;;;;;;-1:-1:-1;;32931:72:0;;;;;;;;;;;;:::i;:::-;;;32927:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33173:13:0;;33169:272;;33216:60;;-1:-1:-1;;;33216:60:0;;;;;;;:::i;33169:272::-;33391:6;33385:13;33376:6;33372:2;33368:15;33361:38;32927:529;-1:-1:-1;;;;;;33054:51:0;-1:-1:-1;;;33054:51:0;;-1:-1:-1;33047:58:0;;32891:620;-1:-1:-1;33495:4:0;32719:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;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:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2195:328::-;2272:6;2280;2288;2341:2;2329:9;2320:7;2316:23;2312:32;2309:52;;;2357:1;2354;2347:12;2309:52;2380:29;2399:9;2380:29;:::i;:::-;2370:39;;2428:38;2462:2;2451:9;2447:18;2428:38;:::i;:::-;2418:48;;2513:2;2502:9;2498:18;2485:32;2475:42;;2195:328;;;;;:::o;2528:127::-;2589:10;2584:3;2580:20;2577:1;2570:31;2620:4;2617:1;2610:15;2644:4;2641:1;2634:15;2660:632;2725:5;2755:18;2796:2;2788:6;2785:14;2782:40;;;2802:18;;:::i;:::-;2877:2;2871:9;2845:2;2931:15;;-1:-1:-1;;2927:24:1;;;2953:2;2923:33;2919:42;2907:55;;;2977:18;;;2997:22;;;2974:46;2971:72;;;3023:18;;:::i;:::-;3063:10;3059:2;3052:22;3092:6;3083:15;;3122:6;3114;3107:22;3162:3;3153:6;3148:3;3144:16;3141:25;3138:45;;;3179:1;3176;3169:12;3138:45;3229:6;3224:3;3217:4;3209:6;3205:17;3192:44;3284:1;3277:4;3268:6;3260;3256:19;3252:30;3245:41;;;;2660:632;;;;;:::o;3297:451::-;3366:6;3419:2;3407:9;3398:7;3394:23;3390:32;3387:52;;;3435:1;3432;3425:12;3387:52;3475:9;3462:23;3508:18;3500:6;3497:30;3494:50;;;3540:1;3537;3530:12;3494:50;3563:22;;3616:4;3608:13;;3604:27;-1:-1:-1;3594:55:1;;3645:1;3642;3635:12;3594:55;3668:74;3734:7;3729:2;3716:16;3711:2;3707;3703:11;3668:74;:::i;3935:186::-;3994:6;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4086:29;4105:9;4086:29;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;4905:18;4897:6;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:260::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5150:260;;;;;:::o;5415:380::-;5494:1;5490:12;;;;5537;;;5558:61;;5612:4;5604:6;5600:17;5590:27;;5558:61;5665:2;5657:6;5654:14;5634:18;5631:38;5628:161;;;5711:10;5706:3;5702:20;5699:1;5692:31;5746:4;5743:1;5736:15;5774:4;5771:1;5764:15;5628:161;;5415:380;;;:::o;7040:413::-;7242:2;7224:21;;;7281:2;7261:18;;;7254:30;7320:34;7315:2;7300:18;;7293:62;-1:-1:-1;;;7386:2:1;7371:18;;7364:47;7443:3;7428:19;;7040:413::o;7458:356::-;7660:2;7642:21;;;7679:18;;;7672:30;7738:34;7733:2;7718:18;;7711:62;7805:2;7790:18;;7458:356::o;7819:127::-;7880:10;7875:3;7871:20;7868:1;7861:31;7911:4;7908:1;7901:15;7935:4;7932:1;7925:15;7951:128;7991:3;8022:1;8018:6;8015:1;8012:13;8009:39;;;8028:18;;:::i;:::-;-1:-1:-1;8064:9:1;;7951:128::o;8794:135::-;8833:3;-1:-1:-1;;8854:17:1;;8851:43;;;8874:18;;:::i;:::-;-1:-1:-1;8921:1:1;8910:13;;8794:135::o;10235:185::-;10277:3;10315:5;10309:12;10330:52;10375:6;10370:3;10363:4;10356:5;10352:16;10330:52;:::i;:::-;10398:16;;;;;10235:185;-1:-1:-1;;10235:185:1:o;10425:1174::-;10601:3;10630:1;10663:6;10657:13;10693:3;10715:1;10743:9;10739:2;10735:18;10725:28;;10803:2;10792:9;10788:18;10825;10815:61;;10869:4;10861:6;10857:17;10847:27;;10815:61;10895:2;10943;10935:6;10932:14;10912:18;10909:38;10906:165;;;-1:-1:-1;;;10970:33:1;;11026:4;11023:1;11016:15;11056:4;10977:3;11044:17;10906:165;11087:18;11114:104;;;;11232:1;11227:320;;;;11080:467;;11114:104;-1:-1:-1;;11147:24:1;;11135:37;;11192:16;;;;-1:-1:-1;11114:104:1;;11227:320;10182:1;10175:14;;;10219:4;10206:18;;11322:1;11336:165;11350:6;11347:1;11344:13;11336:165;;;11428:14;;11415:11;;;11408:35;11471:16;;;;11365:10;;11336:165;;;11340:3;;11530:6;11525:3;11521:16;11514:23;;11080:467;;;;;;;11563:30;11589:3;11581:6;11563:30;:::i;:::-;11556:37;10425:1174;-1:-1:-1;;;;;10425:1174:1:o;13239:125::-;13279:4;13307:1;13304;13301:8;13298:34;;;13312:18;;:::i;:::-;-1:-1:-1;13349:9:1;;13239:125::o;14087:414::-;14289:2;14271:21;;;14328:2;14308:18;;;14301:30;14367:34;14362:2;14347:18;;14340:62;-1:-1:-1;;;14433:2:1;14418:18;;14411:48;14491:3;14476:19;;14087:414::o;14506:127::-;14567:10;14562:3;14558:20;14555:1;14548:31;14598:4;14595:1;14588:15;14622:4;14619:1;14612:15;14638:120;14678:1;14704;14694:35;;14709:18;;:::i;:::-;-1:-1:-1;14743:9:1;;14638:120::o;14763:112::-;14795:1;14821;14811:35;;14826:18;;:::i;:::-;-1:-1:-1;14860:9:1;;14763:112::o;14880:127::-;14941:10;14936:3;14932:20;14929:1;14922:31;14972:4;14969:1;14962:15;14996:4;14993:1;14986:15;15012:500;-1:-1:-1;;;;;15281:15:1;;;15263:34;;15333:15;;15328:2;15313:18;;15306:43;15380:2;15365:18;;15358:34;;;15428:3;15423:2;15408:18;;15401:31;;;15206:4;;15449:57;;15486:19;;15478:6;15449:57;:::i;:::-;15441:65;15012:500;-1:-1:-1;;;;;;15012:500:1:o;15517:249::-;15586:6;15639:2;15627:9;15618:7;15614:23;15610:32;15607:52;;;15655:1;15652;15645:12;15607:52;15687:9;15681:16;15706:30;15730:5;15706:30;:::i
Swarm Source
ipfs://cc11d6ad494297f15ec704c901b5e233c96aa3647db248a31707609129a8d8e7
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.