ETH Price: $2,421.58 (+2.79%)

Token

Balot (BALOT)
 

Overview

Max Total Supply

0 BALOT

Holders

32

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BALOT
0x2047d1a3d03722760b1eb4b4cdee392957d4f72d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Balot

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-10
*/

// hevm: flattened sources of src/Balot.sol
// SPDX-License-Identifier: MIT AND GPL-3.0-or-later
pragma solidity >=0.8.0 <0.9.0 >=0.8.6 <0.9.0;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

////// lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

////// lib/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

/* pragma solidity ^0.8.0; */

/* import "../../utils/introspection/IERC165.sol"; */

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

////// lib/openzeppelin-contracts/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

/* pragma solidity ^0.8.0; */

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

////// lib/openzeppelin-contracts/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC721.sol"; */

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

////// lib/openzeppelin-contracts/contracts/utils/Address.sol
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

////// lib/openzeppelin-contracts/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

////// lib/openzeppelin-contracts/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC165.sol"; */

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC721.sol"; */
/* import "./IERC721Receiver.sol"; */
/* import "./extensions/IERC721Metadata.sol"; */
/* import "../../utils/Address.sol"; */
/* import "../../utils/Context.sol"; */
/* import "../../utils/Strings.sol"; */
/* import "../../utils/introspection/ERC165.sol"; */

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

////// lib/openzeppelin-contracts/contracts/token/ERC721/extensions/ERC721URIStorage.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)

/* pragma solidity ^0.8.0; */

/* import "../ERC721.sol"; */

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

////// lib/openzeppelin-contracts/contracts/utils/Counters.sol
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

/* pragma solidity ^0.8.0; */

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

////// src/BaseURIStorage.sol
/* pragma solidity ^0.8.6; */

/* import {ERC721} from "openzeppelin-contracts/token/ERC721/ERC721.sol"; */

/// @title Adds storage for BaseURI to ERC721
/// @author Tim Daubenschütz
/// @custom:security-contact [email protected]
abstract contract BaseURIStorage is ERC721 {
  string public baseURI;

  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  /// @notice Allows the owner to set all tokens' `_baseURI` value
  /// @param uri The HTTP URL portion that hosts the NFT's metadata.
  function _setBaseURI(
    string memory uri
  ) internal virtual {
    require(bytes(uri).length != 0, "uri empty");
    baseURI = uri;
  }
}

////// src/Balot.sol
/* pragma solidity ^0.8.6; */

/* import {ERC721} from "openzeppelin-contracts/token/ERC721/ERC721.sol"; */
/* import {ERC721URIStorage} from "openzeppelin-contracts/token/ERC721/extensions/ERC721URIStorage.sol"; */
/* import {Ownable} from "openzeppelin-contracts/access/Ownable.sol"; */
/* import {Counters} from "openzeppelin-contracts/utils/Counters.sol"; */

/* import {BaseURIStorage} from "./BaseURIStorage.sol"; */

/// @title Balot is an NFT collection
/// @author Tim Daubenschütz
/// @custom:security-contact [email protected]
contract Balot is ERC721, ERC721URIStorage, Ownable, BaseURIStorage {
  using Counters for Counters.Counter;
  Counters.Counter private _tokenIds;

  /// @notice Upon initialization, ownership of the contract is immediately transferred
  /// @param nextOwner The address the contract ownership is transferred to
  /// @param uri The `baseURI` that is used to construct the final `tokenURI`
  constructor(address nextOwner, string memory uri) ERC721("Balot", "BALOT") {
    transferOwnership(nextOwner);
    _setBaseURI(uri);
  }

  /// @notice Overrides ERC721's `_baseURI` function such that `tokenURI` start using it
  function _baseURI() internal view override(ERC721, BaseURIStorage) returns (string memory) {
    return super._baseURI();
  }

  /// @notice Allows the owner to set all tokens' `_baseURI` value
  /// @param uri The HTTP URL portion that hosts the NFT's metadata.
  function setBaseURI(
    string calldata uri
  ) external onlyOwner {
    super._setBaseURI(uri);
  }

  /// @notice Allows the owner to safely mint an NFT to an address and given a `uri`
  /// @dev Requires ownership of the contract
  /// @param to The address that owns the NFT
  /// @param uri The path portion of an URL that specifies the location of the metadata
  function safeMint(
    address to,
    string calldata uri
  ) external onlyOwner returns (uint256) {
    uint256 newTokenId = _tokenIds.current();
    _safeMint(to, newTokenId);
    _setTokenURI(newTokenId, uri);
    _tokenIds.increment();
    return newTokenId;
  }

  /// @notice Allows the owner to set each `tokenId`'s `uri`
  /// @dev Requires ownership of the contract
  /// @param tokenId The id of the token to change
  /// @param uri The HTTP URL that hosts the NFT's metadata.json
  function setTokenURI(
    uint256 tokenId,
    string calldata uri
  ) external onlyOwner {
    _setTokenURI(tokenId, uri);
  }

  function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
    super._burn(tokenId);
  }

  function tokenURI(
    uint256 tokenId
  ) public view override(ERC721, ERC721URIStorage) returns (string memory) {
    return super.tokenURI(tokenId);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"nextOwner","type":"address"},{"internalType":"string","name":"uri","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":"to","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"safeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"setTokenURI","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":[{"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"}]

60806040523480156200001157600080fd5b5060405162002b0638038062002b068339810160408190526200003491620002ff565b6040518060400160405280600581526020016410985b1bdd60da1b8152506040518060400160405280600581526020016410905313d560da1b81525081600090805190602001906200008892919062000259565b5080516200009e90600190602084019062000259565b505050620000bb620000b5620000d960201b60201c565b620000dd565b620000c6826200012f565b620000d18162000204565b505062000452565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b031633146200018f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038116620001f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000186565b6200020181620000dd565b50565b8051620002405760405162461bcd60e51b815260206004820152600960248201526875726920656d70747960b81b604482015260640162000186565b80516200025590600890602084019062000259565b5050565b8280546200026790620003ff565b90600052602060002090601f0160209004810192826200028b5760008555620002d6565b82601f10620002a657805160ff1916838001178555620002d6565b82800160010185558215620002d6579182015b82811115620002d6578251825591602001919060010190620002b9565b50620002e4929150620002e8565b5090565b5b80821115620002e45760008155600101620002e9565b600080604083850312156200031357600080fd5b82516001600160a01b03811681146200032b57600080fd5b602084810151919350906001600160401b03808211156200034b57600080fd5b818601915086601f8301126200036057600080fd5b8151818111156200037557620003756200043c565b604051601f8201601f19908116603f01168101908382118183101715620003a057620003a06200043c565b816040528281528986848701011115620003b957600080fd5b600093505b82841015620003dd5784840186015181850187015292850192620003be565b82841115620003ef5760008684830101525b8096505050505050509250929050565b600181811c908216806200041457607f821691505b602082108114156200043657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6126a480620004626000396000f3fe608060405234801561001057600080fd5b506004361061016c5760003560e01c806370a08231116100cd578063b88d4fde11610081578063d204c45e11610066578063d204c45e146102ea578063e985e9c5146102fd578063f2fde38b1461034657600080fd5b8063b88d4fde146102c4578063c87b56dd146102d757600080fd5b80638da5cb5b116100b25780638da5cb5b1461028b57806395d89b41146102a9578063a22cb465146102b157600080fd5b806370a0823114610262578063715018a61461028357600080fd5b806323b872dd1161012457806355f804b31161010957806355f804b3146102345780636352211e146102475780636c0360eb1461025a57600080fd5b806323b872dd1461020e57806342842e0e1461022157600080fd5b8063081812fc11610155578063081812fc146101ae578063095ea7b3146101e6578063162094c4146101fb57600080fd5b806301ffc9a71461017157806306fdde0314610199575b600080fd5b61018461017f3660046122d7565b610359565b60405190151581526020015b60405180910390f35b6101a161043e565b6040516101909190612461565b6101c16101bc366004612353565b6104d0565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610190565b6101f96101f43660046122ad565b6105af565b005b6101f961020936600461236c565b61073c565b6101f961021c3660046120e8565b6107fd565b6101f961022f3660046120e8565b61089e565b6101f9610242366004612311565b6108b9565b6101c1610255366004612353565b61097d565b6101a1610a2f565b61027561027036600461209a565b610abd565b604051908152602001610190565b6101f9610b8b565b60075473ffffffffffffffffffffffffffffffffffffffff166101c1565b6101a1610c18565b6101f96102bf36600461221e565b610c27565b6101f96102d2366004612124565b610c32565b6101a16102e5366004612353565b610cda565b6102756102f836600461225a565b610ce5565b61018461030b3660046120b5565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101f961035436600461209a565b610dd6565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806103ec57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061043857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606000805461044d906124e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610479906124e3565b80156104c65780601f1061049b576101008083540402835291602001916104c6565b820191906000526020600020905b8154815290600101906020018083116104a957829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006105ba8261097d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161057d565b3373ffffffffffffffffffffffffffffffffffffffff821614806106a157506106a1813361030b565b61072d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161057d565b6107378383610f06565b505050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146107bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161057d565b6107378383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610fa692505050565b6108073382611076565b610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161057d565b6107378383836111e2565b61073783838360405180602001604052806000815250610c32565b60075473ffffffffffffffffffffffffffffffffffffffff16331461093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161057d565b61097982828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061144992505050565b5050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161057d565b60088054610a3c906124e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a68906124e3565b8015610ab55780601f10610a8a57610100808354040283529160200191610ab5565b820191906000526020600020905b815481529060010190602001808311610a9857829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216610b62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161057d565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b60075473ffffffffffffffffffffffffffffffffffffffff163314610c0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161057d565b610c1660006114c4565b565b60606001805461044d906124e3565b61097933838361153b565b610c3c3383611076565b610cc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161057d565b610cd484848484611669565b50505050565b60606104388261170c565b60075460009073ffffffffffffffffffffffffffffffffffffffff163314610d69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161057d565b6000610d7460095490565b9050610d8085826118b1565b610dc08185858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610fa692505050565b610dce600980546001019055565b949350505050565b60075473ffffffffffffffffffffffffffffffffffffffff163314610e57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161057d565b73ffffffffffffffffffffffffffffffffffffffff8116610efa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161057d565b610f03816114c4565b50565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190610f608261097d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008281526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201527f6578697374656e7420746f6b656e000000000000000000000000000000000000606482015260840161057d565b6000828152600660209081526040909120825161073792840190611f8f565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161057d565b60006111328361097d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111a157508373ffffffffffffffffffffffffffffffffffffffff16611189846104d0565b73ffffffffffffffffffffffffffffffffffffffff16145b80610dce575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff16610dce565b8273ffffffffffffffffffffffffffffffffffffffff166112028261097d565b73ffffffffffffffffffffffffffffffffffffffff16146112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161057d565b73ffffffffffffffffffffffffffffffffffffffff8216611347576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161057d565b611352600082610f06565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602052604081208054600192906113889084906124a0565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906113c3908490612474565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b80516114b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f75726920656d7074790000000000000000000000000000000000000000000000604482015260640161057d565b8051610979906008906020840190611f8f565b6007805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161057d565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116748484846111e2565b611680848484846118cb565b610cd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161057d565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166117c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f722060448201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000606482015260840161057d565b600082815260066020526040812080546117d9906124e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611805906124e3565b80156118525780601f1061182757610100808354040283529160200191611852565b820191906000526020600020905b81548152906001019060200180831161183557829003601f168201915b505050505090506000611863611aca565b9050805160001415611876575092915050565b8151156118a85780826040516020016118909291906123e9565b60405160208183030381529060405292505050919050565b610dce84611ad9565b610979828260405180602001604052806000815250611be9565b600073ffffffffffffffffffffffffffffffffffffffff84163b15611abf576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611942903390899088908890600401612418565b602060405180830381600087803b15801561195c57600080fd5b505af19250505080156119aa575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526119a7918101906122f4565b60015b611a74573d8080156119d8576040519150601f19603f3d011682016040523d82523d6000602084013e6119dd565b606091505b508051611a6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161057d565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610dce565b506001949350505050565b6060611ad4611c8c565b905090565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611b8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161057d565b6000611b97611aca565b90506000815111611bb75760405180602001604052806000815250611be2565b80611bc184611c9b565b604051602001611bd29291906123e9565b6040516020818303038152906040525b9392505050565b611bf38383611dcd565b611c0060008484846118cb565b610737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161057d565b60606008805461044d906124e3565b606081611cdb57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611d055780611cef81612537565b9150611cfe9050600a8361248c565b9150611cdf565b60008167ffffffffffffffff811115611d2057611d20612611565b6040519080825280601f01601f191660200182016040528015611d4a576020820181803683370190505b5090505b8415610dce57611d5f6001836124a0565b9150611d6c600a86612570565b611d77906030612474565b60f81b818381518110611d8c57611d8c6125e2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611dc6600a8661248c565b9450611d4e565b73ffffffffffffffffffffffffffffffffffffffff8216611e4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161057d565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611ed6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161057d565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611f0c908490612474565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f9b906124e3565b90600052602060002090601f016020900481019282611fbd5760008555612003565b82601f10611fd657805160ff1916838001178555612003565b82800160010185558215612003579182015b82811115612003578251825591602001919060010190611fe8565b5061200f929150612013565b5090565b5b8082111561200f5760008155600101612014565b803573ffffffffffffffffffffffffffffffffffffffff8116811461204c57600080fd5b919050565b60008083601f84011261206357600080fd5b50813567ffffffffffffffff81111561207b57600080fd5b60208301915083602082850101111561209357600080fd5b9250929050565b6000602082840312156120ac57600080fd5b611be282612028565b600080604083850312156120c857600080fd5b6120d183612028565b91506120df60208401612028565b90509250929050565b6000806000606084860312156120fd57600080fd5b61210684612028565b925061211460208501612028565b9150604084013590509250925092565b6000806000806080858703121561213a57600080fd5b61214385612028565b935061215160208601612028565b925060408501359150606085013567ffffffffffffffff8082111561217557600080fd5b818701915087601f83011261218957600080fd5b81358181111561219b5761219b612611565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156121e1576121e1612611565b816040528281528a60208487010111156121fa57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561223157600080fd5b61223a83612028565b91506020830135801515811461224f57600080fd5b809150509250929050565b60008060006040848603121561226f57600080fd5b61227884612028565b9250602084013567ffffffffffffffff81111561229457600080fd5b6122a086828701612051565b9497909650939450505050565b600080604083850312156122c057600080fd5b6122c983612028565b946020939093013593505050565b6000602082840312156122e957600080fd5b8135611be281612640565b60006020828403121561230657600080fd5b8151611be281612640565b6000806020838503121561232457600080fd5b823567ffffffffffffffff81111561233b57600080fd5b61234785828601612051565b90969095509350505050565b60006020828403121561236557600080fd5b5035919050565b60008060006040848603121561238157600080fd5b83359250602084013567ffffffffffffffff81111561229457600080fd5b600081518084526123b78160208601602086016124b7565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516123fb8184602088016124b7565b83519083019061240f8183602088016124b7565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612457608083018461239f565b9695505050505050565b602081526000611be2602083018461239f565b6000821982111561248757612487612584565b500190565b60008261249b5761249b6125b3565b500490565b6000828210156124b2576124b2612584565b500390565b60005b838110156124d25781810151838201526020016124ba565b83811115610cd45750506000910152565b600181811c908216806124f757607f821691505b60208210811415612531577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561256957612569612584565b5060010190565b60008261257f5761257f6125b3565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610f0357600080fdfea2646970667358221220bcf7ca0871110508ab7611d231f81b378e798bcb0b9daf7132219432b37ba4ea64736f6c63430008060033000000000000000000000000f078544e774faf5d10dd04c43f443a80c917c49c0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f7777772e68756d616e616374697669746965732e6f72672f6e6674732f62616c6f742f000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061016c5760003560e01c806370a08231116100cd578063b88d4fde11610081578063d204c45e11610066578063d204c45e146102ea578063e985e9c5146102fd578063f2fde38b1461034657600080fd5b8063b88d4fde146102c4578063c87b56dd146102d757600080fd5b80638da5cb5b116100b25780638da5cb5b1461028b57806395d89b41146102a9578063a22cb465146102b157600080fd5b806370a0823114610262578063715018a61461028357600080fd5b806323b872dd1161012457806355f804b31161010957806355f804b3146102345780636352211e146102475780636c0360eb1461025a57600080fd5b806323b872dd1461020e57806342842e0e1461022157600080fd5b8063081812fc11610155578063081812fc146101ae578063095ea7b3146101e6578063162094c4146101fb57600080fd5b806301ffc9a71461017157806306fdde0314610199575b600080fd5b61018461017f3660046122d7565b610359565b60405190151581526020015b60405180910390f35b6101a161043e565b6040516101909190612461565b6101c16101bc366004612353565b6104d0565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610190565b6101f96101f43660046122ad565b6105af565b005b6101f961020936600461236c565b61073c565b6101f961021c3660046120e8565b6107fd565b6101f961022f3660046120e8565b61089e565b6101f9610242366004612311565b6108b9565b6101c1610255366004612353565b61097d565b6101a1610a2f565b61027561027036600461209a565b610abd565b604051908152602001610190565b6101f9610b8b565b60075473ffffffffffffffffffffffffffffffffffffffff166101c1565b6101a1610c18565b6101f96102bf36600461221e565b610c27565b6101f96102d2366004612124565b610c32565b6101a16102e5366004612353565b610cda565b6102756102f836600461225a565b610ce5565b61018461030b3660046120b5565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101f961035436600461209a565b610dd6565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806103ec57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061043857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606000805461044d906124e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610479906124e3565b80156104c65780601f1061049b576101008083540402835291602001916104c6565b820191906000526020600020905b8154815290600101906020018083116104a957829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006105ba8261097d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161057d565b3373ffffffffffffffffffffffffffffffffffffffff821614806106a157506106a1813361030b565b61072d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161057d565b6107378383610f06565b505050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146107bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161057d565b6107378383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610fa692505050565b6108073382611076565b610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161057d565b6107378383836111e2565b61073783838360405180602001604052806000815250610c32565b60075473ffffffffffffffffffffffffffffffffffffffff16331461093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161057d565b61097982828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061144992505050565b5050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161057d565b60088054610a3c906124e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a68906124e3565b8015610ab55780601f10610a8a57610100808354040283529160200191610ab5565b820191906000526020600020905b815481529060010190602001808311610a9857829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216610b62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161057d565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b60075473ffffffffffffffffffffffffffffffffffffffff163314610c0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161057d565b610c1660006114c4565b565b60606001805461044d906124e3565b61097933838361153b565b610c3c3383611076565b610cc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161057d565b610cd484848484611669565b50505050565b60606104388261170c565b60075460009073ffffffffffffffffffffffffffffffffffffffff163314610d69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161057d565b6000610d7460095490565b9050610d8085826118b1565b610dc08185858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610fa692505050565b610dce600980546001019055565b949350505050565b60075473ffffffffffffffffffffffffffffffffffffffff163314610e57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161057d565b73ffffffffffffffffffffffffffffffffffffffff8116610efa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161057d565b610f03816114c4565b50565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190610f608261097d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008281526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201527f6578697374656e7420746f6b656e000000000000000000000000000000000000606482015260840161057d565b6000828152600660209081526040909120825161073792840190611f8f565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161057d565b60006111328361097d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111a157508373ffffffffffffffffffffffffffffffffffffffff16611189846104d0565b73ffffffffffffffffffffffffffffffffffffffff16145b80610dce575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff16610dce565b8273ffffffffffffffffffffffffffffffffffffffff166112028261097d565b73ffffffffffffffffffffffffffffffffffffffff16146112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161057d565b73ffffffffffffffffffffffffffffffffffffffff8216611347576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161057d565b611352600082610f06565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602052604081208054600192906113889084906124a0565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906113c3908490612474565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b80516114b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f75726920656d7074790000000000000000000000000000000000000000000000604482015260640161057d565b8051610979906008906020840190611f8f565b6007805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161057d565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116748484846111e2565b611680848484846118cb565b610cd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161057d565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166117c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f722060448201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000606482015260840161057d565b600082815260066020526040812080546117d9906124e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611805906124e3565b80156118525780601f1061182757610100808354040283529160200191611852565b820191906000526020600020905b81548152906001019060200180831161183557829003601f168201915b505050505090506000611863611aca565b9050805160001415611876575092915050565b8151156118a85780826040516020016118909291906123e9565b60405160208183030381529060405292505050919050565b610dce84611ad9565b610979828260405180602001604052806000815250611be9565b600073ffffffffffffffffffffffffffffffffffffffff84163b15611abf576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611942903390899088908890600401612418565b602060405180830381600087803b15801561195c57600080fd5b505af19250505080156119aa575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526119a7918101906122f4565b60015b611a74573d8080156119d8576040519150601f19603f3d011682016040523d82523d6000602084013e6119dd565b606091505b508051611a6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161057d565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610dce565b506001949350505050565b6060611ad4611c8c565b905090565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611b8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161057d565b6000611b97611aca565b90506000815111611bb75760405180602001604052806000815250611be2565b80611bc184611c9b565b604051602001611bd29291906123e9565b6040516020818303038152906040525b9392505050565b611bf38383611dcd565b611c0060008484846118cb565b610737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161057d565b60606008805461044d906124e3565b606081611cdb57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611d055780611cef81612537565b9150611cfe9050600a8361248c565b9150611cdf565b60008167ffffffffffffffff811115611d2057611d20612611565b6040519080825280601f01601f191660200182016040528015611d4a576020820181803683370190505b5090505b8415610dce57611d5f6001836124a0565b9150611d6c600a86612570565b611d77906030612474565b60f81b818381518110611d8c57611d8c6125e2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611dc6600a8661248c565b9450611d4e565b73ffffffffffffffffffffffffffffffffffffffff8216611e4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161057d565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611ed6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161057d565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611f0c908490612474565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f9b906124e3565b90600052602060002090601f016020900481019282611fbd5760008555612003565b82601f10611fd657805160ff1916838001178555612003565b82800160010185558215612003579182015b82811115612003578251825591602001919060010190611fe8565b5061200f929150612013565b5090565b5b8082111561200f5760008155600101612014565b803573ffffffffffffffffffffffffffffffffffffffff8116811461204c57600080fd5b919050565b60008083601f84011261206357600080fd5b50813567ffffffffffffffff81111561207b57600080fd5b60208301915083602082850101111561209357600080fd5b9250929050565b6000602082840312156120ac57600080fd5b611be282612028565b600080604083850312156120c857600080fd5b6120d183612028565b91506120df60208401612028565b90509250929050565b6000806000606084860312156120fd57600080fd5b61210684612028565b925061211460208501612028565b9150604084013590509250925092565b6000806000806080858703121561213a57600080fd5b61214385612028565b935061215160208601612028565b925060408501359150606085013567ffffffffffffffff8082111561217557600080fd5b818701915087601f83011261218957600080fd5b81358181111561219b5761219b612611565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156121e1576121e1612611565b816040528281528a60208487010111156121fa57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561223157600080fd5b61223a83612028565b91506020830135801515811461224f57600080fd5b809150509250929050565b60008060006040848603121561226f57600080fd5b61227884612028565b9250602084013567ffffffffffffffff81111561229457600080fd5b6122a086828701612051565b9497909650939450505050565b600080604083850312156122c057600080fd5b6122c983612028565b946020939093013593505050565b6000602082840312156122e957600080fd5b8135611be281612640565b60006020828403121561230657600080fd5b8151611be281612640565b6000806020838503121561232457600080fd5b823567ffffffffffffffff81111561233b57600080fd5b61234785828601612051565b90969095509350505050565b60006020828403121561236557600080fd5b5035919050565b60008060006040848603121561238157600080fd5b83359250602084013567ffffffffffffffff81111561229457600080fd5b600081518084526123b78160208601602086016124b7565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516123fb8184602088016124b7565b83519083019061240f8183602088016124b7565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612457608083018461239f565b9695505050505050565b602081526000611be2602083018461239f565b6000821982111561248757612487612584565b500190565b60008261249b5761249b6125b3565b500490565b6000828210156124b2576124b2612584565b500390565b60005b838110156124d25781810151838201526020016124ba565b83811115610cd45750506000910152565b600181811c908216806124f757607f821691505b60208210811415612531577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561256957612569612584565b5060010190565b60008261257f5761257f6125b3565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610f0357600080fdfea2646970667358221220bcf7ca0871110508ab7611d231f81b378e798bcb0b9daf7132219432b37ba4ea64736f6c63430008060033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000f078544e774faf5d10dd04c43f443a80c917c49c0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f7777772e68756d616e616374697669746965732e6f72672f6e6674732f62616c6f742f000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : nextOwner (address): 0xF078544e774Faf5D10dD04C43F443A80C917C49c
Arg [1] : uri (string): https://www.humanactivities.org/nfts/balot/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000f078544e774faf5d10dd04c43f443a80c917c49c
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [3] : 68747470733a2f2f7777772e68756d616e616374697669746965732e6f72672f
Arg [4] : 6e6674732f62616c6f742f000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

41751:2209:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24462:305;;;;;;:::i;:::-;;:::i;:::-;;;6957:14:1;;6950:22;6932:41;;6920:2;6905:18;24462:305:0;;;;;;;;25407:100;;;:::i;:::-;;;;;;;:::i;26966:221::-;;;;;;:::i;:::-;;:::i;:::-;;;6221:42:1;6209:55;;;6191:74;;6179:2;6164:18;26966:221:0;6146:125:1;26489:411:0;;;;;;:::i;:::-;;:::i;:::-;;43545:132;;;;;;:::i;:::-;;:::i;27716:339::-;;;;;;:::i;:::-;;:::i;28126:185::-;;;;;;:::i;:::-;;:::i;42656:105::-;;;;;;:::i;:::-;;:::i;25101:239::-;;;;;;:::i;:::-;;:::i;40750:21::-;;;:::i;24831:208::-;;;;;;:::i;:::-;;:::i;:::-;;;14906:25:1;;;14894:2;14879:18;24831:208:0;14861:76:1;2819:103:0;;;:::i;2168:87::-;2241:6;;;;2168:87;;25576:104;;;:::i;27259:155::-;;;;;;:::i;:::-;;:::i;28382:328::-;;;;;;:::i;:::-;;:::i;43798:159::-;;;;;;:::i;:::-;;:::i;43036:276::-;;;;;;:::i;:::-;;:::i;27485:164::-;;;;;;:::i;:::-;27606:25;;;;27582:4;27606:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27485:164;3077:201;;;;;;:::i;:::-;;:::i;24462:305::-;24564:4;24601:40;;;24616:25;24601:40;;:105;;-1:-1:-1;24658:48:0;;;24673:33;24658:48;24601:105;:158;;;-1:-1:-1;22732:25:0;22717:40;;;;24723:36;24581:178;24462:305;-1:-1:-1;;24462:305:0:o;25407:100::-;25461:13;25494:5;25487:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25407:100;:::o;26966:221::-;27042:7;30309:16;;;:7;:16;;;;;;:30;:16;27062:73;;;;;;;12542:2:1;27062:73:0;;;12524:21:1;12581:2;12561:18;;;12554:30;12620:34;12600:18;;;12593:62;12691:14;12671:18;;;12664:42;12723:19;;27062:73:0;;;;;;;;;-1:-1:-1;27155:24:0;;;;:15;:24;;;;;;;;;26966:221::o;26489:411::-;26570:13;26586:23;26601:7;26586:14;:23::i;:::-;26570:39;;26634:5;26628:11;;:2;:11;;;;26620:57;;;;;;;14142:2:1;26620:57:0;;;14124:21:1;14181:2;14161:18;;;14154:30;14220:34;14200:18;;;14193:62;14291:3;14271:18;;;14264:31;14312:19;;26620:57:0;14114:223:1;26620:57:0;921:10;26712:21;;;;;:62;;-1:-1:-1;26737:37:0;26754:5;921:10;27485:164;:::i;26737:37::-;26690:168;;;;;;;9765:2:1;26690:168:0;;;9747:21:1;9804:2;9784:18;;;9777:30;9843:34;9823:18;;;9816:62;9914:26;9894:18;;;9887:54;9958:19;;26690:168:0;9737:246:1;26690:168:0;26871:21;26880:2;26884:7;26871:8;:21::i;:::-;26559:341;26489:411;;:::o;43545:132::-;2241:6;;2388:23;2241:6;921:10;2388:23;2380:68;;;;;;;12955:2:1;2380:68:0;;;12937:21:1;;;12974:18;;;12967:30;13033:34;13013:18;;;13006:62;13085:18;;2380:68:0;12927:182:1;2380:68:0;43645:26:::1;43658:7;43667:3;;43645:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;43645:12:0::1;::::0;-1:-1:-1;;;43645:26:0:i:1;27716:339::-:0;27911:41;921:10;27944:7;27911:18;:41::i;:::-;27903:103;;;;;;;14544:2:1;27903:103:0;;;14526:21:1;14583:2;14563:18;;;14556:30;14622:34;14602:18;;;14595:62;14693:19;14673:18;;;14666:47;14730:19;;27903:103:0;14516:239:1;27903:103:0;28019:28;28029:4;28035:2;28039:7;28019:9;:28::i;28126:185::-;28264:39;28281:4;28287:2;28291:7;28264:39;;;;;;;;;;;;:16;:39::i;42656:105::-;2241:6;;2388:23;2241:6;921:10;2388:23;2380:68;;;;;;;12955:2:1;2380:68:0;;;12937:21:1;;;12974:18;;;12967:30;13033:34;13013:18;;;13006:62;13085:18;;2380:68:0;12927:182:1;2380:68:0;42733:22:::1;42751:3;;42733:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;42733:17:0::1;::::0;-1:-1:-1;;;42733:22:0:i:1;:::-;42656:105:::0;;:::o;25101:239::-;25173:7;25209:16;;;:7;:16;;;;;;;;25244:19;25236:73;;;;;;;10601:2:1;25236:73:0;;;10583:21:1;10640:2;10620:18;;;10613:30;10679:34;10659:18;;;10652:62;10750:11;10730:18;;;10723:39;10779:19;;25236:73:0;10573:231:1;40750:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24831:208::-;24903:7;24931:19;;;24923:74;;;;;;;10190:2:1;24923:74:0;;;10172:21:1;10229:2;10209:18;;;10202:30;10268:34;10248:18;;;10241:62;10339:12;10319:18;;;10312:40;10369:19;;24923:74:0;10162:232:1;24923:74:0;-1:-1:-1;25015:16:0;;;;;;:9;:16;;;;;;;24831:208::o;2819:103::-;2241:6;;2388:23;2241:6;921:10;2388:23;2380:68;;;;;;;12955:2:1;2380:68:0;;;12937:21:1;;;12974:18;;;12967:30;13033:34;13013:18;;;13006:62;13085:18;;2380:68:0;12927:182:1;2380:68:0;2884:30:::1;2911:1;2884:18;:30::i;:::-;2819:103::o:0;25576:104::-;25632:13;25665:7;25658:14;;;;;:::i;27259:155::-;27354:52;921:10;27387:8;27397;27354:18;:52::i;28382:328::-;28557:41;921:10;28590:7;28557:18;:41::i;:::-;28549:103;;;;;;;14544:2:1;28549:103:0;;;14526:21:1;14583:2;14563:18;;;14556:30;14622:34;14602:18;;;14595:62;14693:19;14673:18;;;14666:47;14730:19;;28549:103:0;14516:239:1;28549:103:0;28663:39;28677:4;28683:2;28687:7;28696:5;28663:13;:39::i;:::-;28382:328;;;;:::o;43798:159::-;43899:13;43928:23;43943:7;43928:14;:23::i;43036:276::-;2241:6;;43130:7;;2388:23;2241:6;921:10;2388:23;2380:68;;;;;;;12955:2:1;2380:68:0;;;12937:21:1;;;12974:18;;;12967:30;13033:34;13013:18;;;13006:62;13085:18;;2380:68:0;12927:182:1;2380:68:0;43146:18:::1;43167:19;:9;39928:14:::0;;39836:114;43167:19:::1;43146:40;;43193:25;43203:2;43207:10;43193:9;:25::i;:::-;43225:29;43238:10;43250:3;;43225:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;43225:12:0::1;::::0;-1:-1:-1;;;43225:29:0:i:1;:::-;43261:21;:9;40047:19:::0;;40065:1;40047:19;;;39958:127;43261:21:::1;43296:10:::0;43036:276;-1:-1:-1;;;;43036:276:0:o;3077:201::-;2241:6;;2388:23;2241:6;921:10;2388:23;2380:68;;;;;;;12955:2:1;2380:68:0;;;12937:21:1;;;12974:18;;;12967:30;13033:34;13013:18;;;13006:62;13085:18;;2380:68:0;12927:182:1;2380:68:0;3166:22:::1;::::0;::::1;3158:73;;;::::0;::::1;::::0;;7829:2:1;3158:73:0::1;::::0;::::1;7811:21:1::0;7868:2;7848:18;;;7841:30;7907:34;7887:18;;;7880:62;7978:8;7958:18;;;7951:36;8004:19;;3158:73:0::1;7801:228:1::0;3158:73:0::1;3242:28;3261:8;3242:18;:28::i;:::-;3077:201:::0;:::o;34202:174::-;34277:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;34331:23;34277:24;34331:14;:23::i;:::-;34322:46;;;;;;;;;;;;34202:174;;:::o;38292:217::-;30285:4;30309:16;;;:7;:16;;;;;;:30;:16;38384:75;;;;;;;11011:2:1;38384:75:0;;;10993:21:1;11050:2;11030:18;;;11023:30;11089:34;11069:18;;;11062:62;11160:16;11140:18;;;11133:44;11194:19;;38384:75:0;10983:236:1;38384:75:0;38470:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;30514:348::-;30607:4;30309:16;;;:7;:16;;;;;;:30;:16;30624:73;;;;;;;9352:2:1;30624:73:0;;;9334:21:1;9391:2;9371:18;;;9364:30;9430:34;9410:18;;;9403:62;9501:14;9481:18;;;9474:42;9533:19;;30624:73:0;9324:234:1;30624:73:0;30708:13;30724:23;30739:7;30724:14;:23::i;:::-;30708:39;;30777:5;30766:16;;:7;:16;;;:51;;;;30810:7;30786:31;;:20;30798:7;30786:11;:20::i;:::-;:31;;;30766:51;:87;;;-1:-1:-1;27606:25:0;;;;27582:4;27606:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30821:32;27485:164;33506:578;33665:4;33638:31;;:23;33653:7;33638:14;:23::i;:::-;:31;;;33630:85;;;;;;;13316:2:1;33630:85:0;;;13298:21:1;13355:2;13335:18;;;13328:30;13394:34;13374:18;;;13367:62;13465:11;13445:18;;;13438:39;13494:19;;33630:85:0;13288:231:1;33630:85:0;33734:16;;;33726:65;;;;;;;8593:2:1;33726:65:0;;;8575:21:1;8632:2;8612:18;;;8605:30;8671:34;8651:18;;;8644:62;8742:6;8722:18;;;8715:34;8766:19;;33726:65:0;8565:226:1;33726:65:0;33908:29;33925:1;33929:7;33908:8;:29::i;:::-;33950:15;;;;;;;:9;:15;;;;;:20;;33969:1;;33950:15;:20;;33969:1;;33950:20;:::i;:::-;;;;-1:-1:-1;;33981:13:0;;;;;;;:9;:13;;;;;:18;;33998:1;;33981:13;:18;;33998:1;;33981:18;:::i;:::-;;;;-1:-1:-1;;34010:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;34049:27;;34010:16;;34049:27;;;;;;;33506:578;;;:::o;41024:144::-;41106:17;;41098:44;;;;;;;11426:2:1;41098:44:0;;;11408:21:1;11465:1;11445:18;;;11438:29;11503:11;11483:18;;;11476:39;11532:18;;41098:44:0;11398:158:1;41098:44:0;41149:13;;;;:7;;:13;;;;;:::i;3438:191::-;3531:6;;;;3548:17;;;;;;;;;;;3581:40;;3531:6;;;3548:17;3531:6;;3581:40;;3512:16;;3581:40;3501:128;3438:191;:::o;34518:315::-;34673:8;34664:17;;:5;:17;;;;34656:55;;;;;;;8998:2:1;34656:55:0;;;8980:21:1;9037:2;9017:18;;;9010:30;9076:27;9056:18;;;9049:55;9121:18;;34656:55:0;8970:175:1;34656:55:0;34722:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;34784:41;;6932::1;;;34784::0;;6905:18:1;34784:41:0;;;;;;;34518:315;;;:::o;29592:::-;29749:28;29759:4;29765:2;29769:7;29749:9;:28::i;:::-;29796:48;29819:4;29825:2;29829:7;29838:5;29796:22;:48::i;:::-;29788:111;;;;;;;7410:2:1;29788:111:0;;;7392:21:1;7449:2;7429:18;;;7422:30;7488:34;7468:18;;;7461:62;7559:20;7539:18;;;7532:48;7597:19;;29788:111:0;7382:240:1;37457:679:0;30285:4;30309:16;;;:7;:16;;;;;;37530:13;;30309:30;:16;37556:78;;;;;;;12124:2:1;37556:78:0;;;12106:21:1;12163:2;12143:18;;;12136:30;12202:34;12182:18;;;12175:62;12273:19;12253:18;;;12246:47;12310:19;;37556:78:0;12096:239:1;37556:78:0;37647:23;37673:19;;;:10;:19;;;;;37647:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37703:18;37724:10;:8;:10::i;:::-;37703:31;;37816:4;37810:18;37832:1;37810:23;37806:72;;;-1:-1:-1;37857:9:0;37457:679;-1:-1:-1;;37457:679:0:o;37806:72::-;37982:23;;:27;37978:108;;38057:4;38063:9;38040:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38026:48;;;;37457:679;;;:::o;37978:108::-;38105:23;38120:7;38105:14;:23::i;31204:110::-;31280:26;31290:2;31294:7;31280:26;;;;;;;;;;;;:9;:26::i;35398:799::-;35553:4;35574:13;;;12554:20;12602:8;35570:620;;35610:72;;;;;:36;;;;;;:72;;921:10;;35661:4;;35667:7;;35676:5;;35610:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35610:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35606:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35852:13:0;;35848:272;;35895:60;;;;;7410:2:1;35895:60:0;;;7392:21:1;7449:2;7429:18;;;7422:30;7488:34;7468:18;;;7461:62;7559:20;7539:18;;;7532:48;7597:19;;35895:60:0;7382:240:1;35848:272:0;36070:6;36064:13;36055:6;36051:2;36047:15;36040:38;35606:529;35733:51;;35743:41;35733:51;;-1:-1:-1;35726:58:0;;35570:620;-1:-1:-1;36174:4:0;35398:799;;;;;;:::o;42385:127::-;42461:13;42490:16;:14;:16::i;:::-;42483:23;;42385:127;:::o;25751:334::-;30285:4;30309:16;;;:7;:16;;;;;;25824:13;;30309:30;:16;25850:76;;;;;;;13726:2:1;25850:76:0;;;13708:21:1;13765:2;13745:18;;;13738:30;13804:34;13784:18;;;13777:62;13875:17;13855:18;;;13848:45;13910:19;;25850:76:0;13698:237:1;25850:76:0;25939:21;25963:10;:8;:10::i;:::-;25939:34;;26015:1;25997:7;25991:21;:25;:86;;;;;;;;;;;;;;;;;26043:7;26052:18;:7;:16;:18::i;:::-;26026:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25991:86;25984:93;25751:334;-1:-1:-1;;;25751:334:0:o;31541:321::-;31671:18;31677:2;31681:7;31671:5;:18::i;:::-;31722:54;31753:1;31757:2;31761:7;31770:5;31722:22;:54::i;:::-;31700:154;;;;;;;7410:2:1;31700:154:0;;;7392:21:1;7449:2;7429:18;;;7422:30;7488:34;7468:18;;;7461:62;7559:20;7539:18;;;7532:48;7597:19;;31700:154:0;7382:240:1;40778:102:0;40838:13;40867:7;40860:14;;;;;:::i;19940:723::-;19996:13;20217:10;20213:53;;-1:-1:-1;;20244:10:0;;;;;;;;;;;;;;;;;;19940:723::o;20213:53::-;20291:5;20276:12;20332:78;20339:9;;20332:78;;20365:8;;;;:::i;:::-;;-1:-1:-1;20388:10:0;;-1:-1:-1;20396:2:0;20388:10;;:::i;:::-;;;20332:78;;;20420:19;20452:6;20442:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20442:17:0;;20420:39;;20470:154;20477:10;;20470:154;;20504:11;20514:1;20504:11;;:::i;:::-;;-1:-1:-1;20573:10:0;20581:2;20573:5;:10;:::i;:::-;20560:24;;:2;:24;:::i;:::-;20547:39;;20530:6;20537;20530:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;20601:11:0;20610:2;20601:11;;:::i;:::-;;;20470:154;;32198:382;32278:16;;;32270:61;;;;;;;11763:2:1;32270:61:0;;;11745:21:1;;;11782:18;;;11775:30;11841:34;11821:18;;;11814:62;11893:18;;32270:61:0;11735:182:1;32270:61:0;30285:4;30309:16;;;:7;:16;;;;;;:30;:16;:30;32342:58;;;;;;;8236:2:1;32342:58:0;;;8218:21:1;8275:2;8255:18;;;8248:30;8314;8294:18;;;8287:58;8362:18;;32342:58:0;8208:178:1;32342:58:0;32471:13;;;;;;;:9;:13;;;;;:18;;32488:1;;32471:13;:18;;32488:1;;32471:18;:::i;:::-;;;;-1:-1:-1;;32500:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;32539:33;;32500:16;;;32539:33;;32500:16;;32539:33;32198:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:348::-;267:8;277:6;331:3;324:4;316:6;312:17;308:27;298:2;;349:1;346;339:12;298:2;-1:-1:-1;372:20:1;;415:18;404:30;;401:2;;;447:1;444;437:12;401:2;484:4;476:6;472:17;460:29;;536:3;529:4;520:6;512;508:19;504:30;501:39;498:2;;;553:1;550;543:12;498:2;288:275;;;;;:::o;568:186::-;627:6;680:2;668:9;659:7;655:23;651:32;648:2;;;696:1;693;686:12;648:2;719:29;738:9;719:29;:::i;759:260::-;827:6;835;888:2;876:9;867:7;863:23;859:32;856:2;;;904:1;901;894:12;856:2;927:29;946:9;927:29;:::i;:::-;917:39;;975:38;1009:2;998:9;994:18;975:38;:::i;:::-;965:48;;846:173;;;;;:::o;1024:328::-;1101:6;1109;1117;1170:2;1158:9;1149:7;1145:23;1141:32;1138:2;;;1186:1;1183;1176:12;1138:2;1209:29;1228:9;1209:29;:::i;:::-;1199:39;;1257:38;1291:2;1280:9;1276:18;1257:38;:::i;:::-;1247:48;;1342:2;1331:9;1327:18;1314:32;1304:42;;1128:224;;;;;:::o;1357:1197::-;1452:6;1460;1468;1476;1529:3;1517:9;1508:7;1504:23;1500:33;1497:2;;;1546:1;1543;1536:12;1497:2;1569:29;1588:9;1569:29;:::i;:::-;1559:39;;1617:38;1651:2;1640:9;1636:18;1617:38;:::i;:::-;1607:48;;1702:2;1691:9;1687:18;1674:32;1664:42;;1757:2;1746:9;1742:18;1729:32;1780:18;1821:2;1813:6;1810:14;1807:2;;;1837:1;1834;1827:12;1807:2;1875:6;1864:9;1860:22;1850:32;;1920:7;1913:4;1909:2;1905:13;1901:27;1891:2;;1942:1;1939;1932:12;1891:2;1978;1965:16;2000:2;1996;1993:10;1990:2;;;2006:18;;:::i;:::-;2140:2;2134:9;2202:4;2194:13;;2045:66;2190:22;;;2214:2;2186:31;2182:40;2170:53;;;2238:18;;;2258:22;;;2235:46;2232:2;;;2284:18;;:::i;:::-;2324:10;2320:2;2313:22;2359:2;2351:6;2344:18;2399:7;2394:2;2389;2385;2381:11;2377:20;2374:33;2371:2;;;2420:1;2417;2410:12;2371:2;2476;2471;2467;2463:11;2458:2;2450:6;2446:15;2433:46;2521:1;2516:2;2511;2503:6;2499:15;2495:24;2488:35;2542:6;2532:16;;;;;;;1487:1067;;;;;;;:::o;2559:347::-;2624:6;2632;2685:2;2673:9;2664:7;2660:23;2656:32;2653:2;;;2701:1;2698;2691:12;2653:2;2724:29;2743:9;2724:29;:::i;:::-;2714:39;;2803:2;2792:9;2788:18;2775:32;2850:5;2843:13;2836:21;2829:5;2826:32;2816:2;;2872:1;2869;2862:12;2816:2;2895:5;2885:15;;;2643:263;;;;;:::o;2911:485::-;2991:6;2999;3007;3060:2;3048:9;3039:7;3035:23;3031:32;3028:2;;;3076:1;3073;3066:12;3028:2;3099:29;3118:9;3099:29;:::i;:::-;3089:39;;3179:2;3168:9;3164:18;3151:32;3206:18;3198:6;3195:30;3192:2;;;3238:1;3235;3228:12;3192:2;3277:59;3328:7;3319:6;3308:9;3304:22;3277:59;:::i;:::-;3018:378;;3355:8;;-1:-1:-1;3251:85:1;;-1:-1:-1;;;;3018:378:1:o;3401:254::-;3469:6;3477;3530:2;3518:9;3509:7;3505:23;3501:32;3498:2;;;3546:1;3543;3536:12;3498:2;3569:29;3588:9;3569:29;:::i;:::-;3559:39;3645:2;3630:18;;;;3617:32;;-1:-1:-1;;;3488:167:1:o;3660:245::-;3718:6;3771:2;3759:9;3750:7;3746:23;3742:32;3739:2;;;3787:1;3784;3777:12;3739:2;3826:9;3813:23;3845:30;3869:5;3845:30;:::i;3910:249::-;3979:6;4032:2;4020:9;4011:7;4007:23;4003:32;4000:2;;;4048:1;4045;4038:12;4000:2;4080:9;4074:16;4099:30;4123:5;4099:30;:::i;4164:411::-;4235:6;4243;4296:2;4284:9;4275:7;4271:23;4267:32;4264:2;;;4312:1;4309;4302:12;4264:2;4352:9;4339:23;4385:18;4377:6;4374:30;4371:2;;;4417:1;4414;4407:12;4371:2;4456:59;4507:7;4498:6;4487:9;4483:22;4456:59;:::i;:::-;4534:8;;4430:85;;-1:-1:-1;4254:321:1;-1:-1:-1;;;;4254:321:1:o;4580:180::-;4639:6;4692:2;4680:9;4671:7;4667:23;4663:32;4660:2;;;4708:1;4705;4698:12;4660:2;-1:-1:-1;4731:23:1;;4650:110;-1:-1:-1;4650:110:1:o;4765:479::-;4845:6;4853;4861;4914:2;4902:9;4893:7;4889:23;4885:32;4882:2;;;4930:1;4927;4920:12;4882:2;4966:9;4953:23;4943:33;;5027:2;5016:9;5012:18;4999:32;5054:18;5046:6;5043:30;5040:2;;;5086:1;5083;5076:12;5249:316;5290:3;5328:5;5322:12;5355:6;5350:3;5343:19;5371:63;5427:6;5420:4;5415:3;5411:14;5404:4;5397:5;5393:16;5371:63;:::i;:::-;5479:2;5467:15;5484:66;5463:88;5454:98;;;;5554:4;5450:109;;5298:267;-1:-1:-1;;5298:267:1:o;5570:470::-;5749:3;5787:6;5781:13;5803:53;5849:6;5844:3;5837:4;5829:6;5825:17;5803:53;:::i;:::-;5919:13;;5878:16;;;;5941:57;5919:13;5878:16;5975:4;5963:17;;5941:57;:::i;:::-;6014:20;;5757:283;-1:-1:-1;;;;5757:283:1:o;6276:511::-;6470:4;6499:42;6580:2;6572:6;6568:15;6557:9;6550:34;6632:2;6624:6;6620:15;6615:2;6604:9;6600:18;6593:43;;6672:6;6667:2;6656:9;6652:18;6645:34;6715:3;6710:2;6699:9;6695:18;6688:31;6736:45;6776:3;6765:9;6761:19;6753:6;6736:45;:::i;:::-;6728:53;6479:308;-1:-1:-1;;;;;;6479:308:1:o;6984:219::-;7133:2;7122:9;7115:21;7096:4;7153:44;7193:2;7182:9;7178:18;7170:6;7153:44;:::i;14942:128::-;14982:3;15013:1;15009:6;15006:1;15003:13;15000:2;;;15019:18;;:::i;:::-;-1:-1:-1;15055:9:1;;14990:80::o;15075:120::-;15115:1;15141;15131:2;;15146:18;;:::i;:::-;-1:-1:-1;15180:9:1;;15121:74::o;15200:125::-;15240:4;15268:1;15265;15262:8;15259:2;;;15273:18;;:::i;:::-;-1:-1:-1;15310:9:1;;15249:76::o;15330:258::-;15402:1;15412:113;15426:6;15423:1;15420:13;15412:113;;;15502:11;;;15496:18;15483:11;;;15476:39;15448:2;15441:10;15412:113;;;15543:6;15540:1;15537:13;15534:2;;;-1:-1:-1;;15578:1:1;15560:16;;15553:27;15383:205::o;15593:437::-;15672:1;15668:12;;;;15715;;;15736:2;;15790:4;15782:6;15778:17;15768:27;;15736:2;15843;15835:6;15832:14;15812:18;15809:38;15806:2;;;15880:77;15877:1;15870:88;15981:4;15978:1;15971:15;16009:4;16006:1;15999:15;15806:2;;15648:382;;;:::o;16035:195::-;16074:3;16105:66;16098:5;16095:77;16092:2;;;16175:18;;:::i;:::-;-1:-1:-1;16222:1:1;16211:13;;16082:148::o;16235:112::-;16267:1;16293;16283:2;;16298:18;;:::i;:::-;-1:-1:-1;16332:9:1;;16273:74::o;16352:184::-;16404:77;16401:1;16394:88;16501:4;16498:1;16491:15;16525:4;16522:1;16515:15;16541:184;16593:77;16590:1;16583:88;16690:4;16687:1;16680:15;16714:4;16711:1;16704:15;16730:184;16782:77;16779:1;16772:88;16879:4;16876:1;16869:15;16903:4;16900:1;16893:15;16919:184;16971:77;16968:1;16961:88;17068:4;17065:1;17058:15;17092:4;17089:1;17082:15;17108:177;17193:66;17186:5;17182:78;17175:5;17172:89;17162:2;;17275:1;17272;17265:12

Swarm Source

ipfs://bcf7ca0871110508ab7611d231f81b378e798bcb0b9daf7132219432b37ba4ea
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.