ETH Price: $3,332.76 (+3.40%)
Gas: 10.1 Gwei

Token

AnimeAztecs (AZTECS)
 

Overview

Max Total Supply

203 AZTECS

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tcvdh.eth
Balance
4 AZTECS
0x28557f28711948d46f5336181ca96ff8f304e186
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:
AnimeAztecs

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-16
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/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);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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);
            }
        }
    }
}

// File: @openzeppelin/contracts/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);
}

// File: @openzeppelin/contracts/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);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @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 {}
}

pragma solidity >=0.7.0 <0.9.0;
 
contract AnimeAztecs is ERC721, Ownable {
  using Strings for uint256;
 
  string public baseURI;
  mapping(address => uint256) public freeMintWhitelist;
  uint256 public cost = 0.033 ether;
  uint256 public maxSupply = 3780;
  uint256 public partialSupply = 300;
  uint256 public maxMintAmount = 20;
  uint256 public totalSupply = 0;
  bool public paused = false;
 
  constructor(
    string memory _initBaseURI
  ) ERC721("AnimeAztecs", "AZTECS") {
    setBaseURI(_initBaseURI);
    for (uint256 i = 1; i <= 10; i++) {
      _safeMint(msg.sender, totalSupply + i);
    }
    totalSupply += 10;
  }
 
  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
 
  // modifiers
  modifier onlyFreeMint() {
    require(freeMintWhitelist[msg.sender] > 0);
    _;
  }
 
  // public
  function mint(address _to, uint256 _mintAmount) payable public {
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(totalSupply + _mintAmount <= maxSupply);
    require(totalSupply + _mintAmount <= partialSupply);   
 
    if (msg.sender != owner()) {
        require(msg.value >= cost * _mintAmount);
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, totalSupply + i);
    }
    totalSupply += _mintAmount;
  }
 
  function freeMint(address _to, uint256 _mintAmount) public onlyFreeMint() {
    require(!paused);
    require(_mintAmount > 0);
    require(totalSupply + _mintAmount <= maxSupply);
    require(totalSupply + _mintAmount <= partialSupply); 
    require(_mintAmount <= freeMintWhitelist[_to]);
 
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, totalSupply + i);
      freeMintWhitelist[_to] = freeMintWhitelist[_to] - 1;
    }
    totalSupply += _mintAmount;
  }
 
  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);
      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;
        ownedTokenIndex++;
      }
      currentTokenId++;
    }
    return ownedTokenIds;
  }
 
  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
 
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
        : "";
  }
 
  //only owner
  function addFreeMint(address addr, uint256 amount) onlyOwner public returns(bool success) {
    freeMintWhitelist[addr] = amount;
    success = true;
  }
 
  function addFreeMints(address[] memory addrs, uint256 amount) onlyOwner public returns(bool success) {
    for (uint256 i = 0; i < addrs.length; i++) {
      if (addFreeMint(addrs[i], amount)) {
        success = true;
      }
    }    
  }
 
  function setCost(uint256 _newCost) public onlyOwner() {
    cost = _newCost;
  }
 
  function setPartialSupply(uint256 _newPartialSupply) public onlyOwner() {
    partialSupply = _newPartialSupply;
  }
 
  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }
 
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
 
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addFreeMint","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addFreeMints","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPartialSupply","type":"uint256"}],"name":"setPartialSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266753d533d968000600955610ec4600a5561012c600b556014600c556000600d55600e805460ff191690553480156200003c57600080fd5b50604051620029b2380380620029b28339810160408190526200005f916200064c565b604080518082018252600b81526a416e696d65417a7465637360a81b602080830191825283518085019094526006845265415a5445435360d01b908401528151919291620000b0916000916200055d565b508051620000c69060019060208401906200055d565b505050620000e3620000dd6200014d60201b60201c565b62000151565b620000ee81620001a3565b60015b600a81116200012a57620001153382600d546200010f91906200071a565b6200021c565b80620001218162000735565b915050620000f1565b50600a600d60008282546200014091906200071a565b9091555062000819915050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620002189060079060208401906200055d565b5050565b620002188282604051806020016040528060008152506200023e60201b60201c565b6200024a8383620002b6565b620002596000848484620003fe565b620002b15760405162461bcd60e51b815260206004820152603260248201526000805160206200299283398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001fa565b505050565b6001600160a01b0382166200030e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001fa565b6000818152600260205260409020546001600160a01b031615620003755760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001fa565b6001600160a01b0382166000908152600360205260408120805460019290620003a09084906200071a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006200041f846001600160a01b03166200055760201b620011fb1760201c565b156200054b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200045990339089908890889060040162000753565b6020604051808303816000875af192505050801562000497575060408051601f3d908101601f191682019092526200049491810190620007a9565b60015b62000530573d808015620004c8576040519150601f19603f3d011682016040523d82523d6000602084013e620004cd565b606091505b508051620005285760405162461bcd60e51b815260206004820152603260248201526000805160206200299283398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001fa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200054f565b5060015b949350505050565b3b151590565b8280546200056b90620007dc565b90600052602060002090601f0160209004810192826200058f5760008555620005da565b82601f10620005aa57805160ff1916838001178555620005da565b82800160010185558215620005da579182015b82811115620005da578251825591602001919060010190620005bd565b50620005e8929150620005ec565b5090565b5b80821115620005e85760008155600101620005ed565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620006365781810151838201526020016200061c565b8381111562000646576000848401525b50505050565b6000602082840312156200065f57600080fd5b81516001600160401b03808211156200067757600080fd5b818401915084601f8301126200068c57600080fd5b815181811115620006a157620006a162000603565b604051601f8201601f19908116603f01168101908382118183101715620006cc57620006cc62000603565b81604052828152876020848701011115620006e657600080fd5b620006f983602083016020880162000619565b979650505050505050565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000730576200073062000704565b500190565b60006000198214156200074c576200074c62000704565b5060010190565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007928160a085016020870162000619565b601f01601f19169190910160a00195945050505050565b600060208284031215620007bc57600080fd5b81516001600160e01b031981168114620007d557600080fd5b9392505050565b600181811c90821680620007f157607f821691505b602082108114156200081357634e487b7160e01b600052602260045260246000fd5b50919050565b61216980620008296000396000f3fe6080604052600436106102045760003560e01c806355f804b3116101185780639883566e116100a0578063c87b56dd1161006f578063c87b56dd146105b9578063d5abeb01146105d9578063d8c718a8146105ef578063e985e9c51461060f578063f2fde38b1461065857600080fd5b80639883566e14610539578063a22cb46514610559578063b88d4fde14610579578063bd4ec2b21461059957600080fd5b806370a08231116100e757806370a08231146104b1578063715018a6146104d15780637f00c7a6146104e65780638da5cb5b1461050657806395d89b411461052457600080fd5b806355f804b3146104425780635c975abb146104625780636352211e1461047c5780636c0360eb1461049c57600080fd5b8063239c70ae1161019b5780633ccfd60b1161016a5780633ccfd60b146103ad57806340c10f19146103c257806342842e0e146103d5578063438b6300146103f557806344a0d68a1461042257600080fd5b8063239c70ae1461034157806323b872dd146103575780632b54f7361461037757806333bbcc791461038d57600080fd5b8063092ca2d0116101d7578063092ca2d0146102ba578063095ea7b3146102f557806313faede61461031557806318160ddd1461032b57600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611aa3565b610678565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611ad5565b6106ca565b005b34801561026c57600080fd5b50610275610710565b6040516102359190611b48565b34801561028e57600080fd5b506102a261029d366004611b5b565b6107a2565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b506102e76102d5366004611b8b565b60086020526000908152604090205481565b604051908152602001610235565b34801561030157600080fd5b5061025e610310366004611ba6565b610837565b34801561032157600080fd5b506102e760095481565b34801561033757600080fd5b506102e7600d5481565b34801561034d57600080fd5b506102e7600c5481565b34801561036357600080fd5b5061025e610372366004611bd0565b61094d565b34801561038357600080fd5b506102e7600b5481565b34801561039957600080fd5b5061025e6103a8366004611b5b565b61097e565b3480156103b957600080fd5b5061025e6109ad565b61025e6103d0366004611ba6565b610a2f565b3480156103e157600080fd5b5061025e6103f0366004611bd0565b610b0e565b34801561040157600080fd5b50610415610410366004611b8b565b610b29565b6040516102359190611c0c565b34801561042e57600080fd5b5061025e61043d366004611b5b565b610c0a565b34801561044e57600080fd5b5061025e61045d366004611cef565b610c39565b34801561046e57600080fd5b50600e546102299060ff1681565b34801561048857600080fd5b506102a2610497366004611b5b565b610c7a565b3480156104a857600080fd5b50610275610cf1565b3480156104bd57600080fd5b506102e76104cc366004611b8b565b610d7f565b3480156104dd57600080fd5b5061025e610e06565b3480156104f257600080fd5b5061025e610501366004611b5b565b610e3c565b34801561051257600080fd5b506006546001600160a01b03166102a2565b34801561053057600080fd5b50610275610e6b565b34801561054557600080fd5b5061025e610554366004611ba6565b610e7a565b34801561056557600080fd5b5061025e610574366004611d38565b610f79565b34801561058557600080fd5b5061025e610594366004611d6b565b610f84565b3480156105a557600080fd5b506102296105b4366004611ba6565b610fbc565b3480156105c557600080fd5b506102756105d4366004611b5b565b611009565b3480156105e557600080fd5b506102e7600a5481565b3480156105fb57600080fd5b5061022961060a366004611de7565b6110e4565b34801561061b57600080fd5b5061022961062a366004611e9a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066457600080fd5b5061025e610673366004611b8b565b611163565b60006001600160e01b031982166380ac58cd60e01b14806106a957506001600160e01b03198216635b5e139f60e01b145b806106c457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106fd5760405162461bcd60e51b81526004016106f490611ec4565b60405180910390fd5b600e805460ff1916911515919091179055565b60606000805461071f90611ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461074b90611ef9565b80156107985780601f1061076d57610100808354040283529160200191610798565b820191906000526020600020905b81548152906001019060200180831161077b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661081b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f4565b506000908152600460205260409020546001600160a01b031690565b600061084282610c7a565b9050806001600160a01b0316836001600160a01b031614156108b05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f4565b336001600160a01b03821614806108cc57506108cc813361062a565b61093e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f4565b6109488383611201565b505050565b610957338261126f565b6109735760405162461bcd60e51b81526004016106f490611f34565b610948838383611366565b6006546001600160a01b031633146109a85760405162461bcd60e51b81526004016106f490611ec4565b600b55565b6006546001600160a01b031633146109d75760405162461bcd60e51b81526004016106f490611ec4565b604051600090339047908381818185875af1925050503d8060008114610a19576040519150601f19603f3d011682016040523d82523d6000602084013e610a1e565b606091505b5050905080610a2c57600080fd5b50565b600e5460ff1615610a3f57600080fd5b60008111610a4c57600080fd5b600c54811115610a5b57600080fd5b600a5481600d54610a6c9190611f9b565b1115610a7757600080fd5b600b5481600d54610a889190611f9b565b1115610a9357600080fd5b6006546001600160a01b03163314610abf5780600954610ab39190611fb3565b341015610abf57600080fd5b60015b818111610af257610ae08382600d54610adb9190611f9b565b611506565b80610aea81611fd2565b915050610ac2565b5080600d6000828254610b059190611f9b565b90915550505050565b61094883838360405180602001604052806000815250610f84565b60606000610b3683610d7f565b905060008167ffffffffffffffff811115610b5357610b53611c50565b604051908082528060200260200182016040528015610b7c578160200160208202803683370190505b509050600160005b8381108015610b955750600a548211155b15610c00576000610ba583610c7a565b9050866001600160a01b0316816001600160a01b03161415610bed5782848381518110610bd457610bd4611fed565b602090810291909101015281610be981611fd2565b9250505b82610bf781611fd2565b93505050610b84565b5090949350505050565b6006546001600160a01b03163314610c345760405162461bcd60e51b81526004016106f490611ec4565b600955565b6006546001600160a01b03163314610c635760405162461bcd60e51b81526004016106f490611ec4565b8051610c769060079060208401906119f4565b5050565b6000818152600260205260408120546001600160a01b0316806106c45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106f4565b60078054610cfe90611ef9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2a90611ef9565b8015610d775780601f10610d4c57610100808354040283529160200191610d77565b820191906000526020600020905b815481529060010190602001808311610d5a57829003601f168201915b505050505081565b60006001600160a01b038216610dea5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f4565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e305760405162461bcd60e51b81526004016106f490611ec4565b610e3a6000611520565b565b6006546001600160a01b03163314610e665760405162461bcd60e51b81526004016106f490611ec4565b600c55565b60606001805461071f90611ef9565b33600090815260086020526040902054610e9357600080fd5b600e5460ff1615610ea357600080fd5b60008111610eb057600080fd5b600a5481600d54610ec19190611f9b565b1115610ecc57600080fd5b600b5481600d54610edd9190611f9b565b1115610ee857600080fd5b6001600160a01b038216600090815260086020526040902054811115610f0d57600080fd5b60015b818111610af257610f298382600d54610adb9190611f9b565b6001600160a01b038316600090815260086020526040902054610f4e90600190612003565b6001600160a01b03841660009081526008602052604090205580610f7181611fd2565b915050610f10565b610c76338383611572565b610f8e338361126f565b610faa5760405162461bcd60e51b81526004016106f490611f34565b610fb684848484611641565b50505050565b6006546000906001600160a01b03163314610fe95760405162461bcd60e51b81526004016106f490611ec4565b506001600160a01b03909116600090815260086020526040902055600190565b6000818152600260205260409020546060906001600160a01b03166110885760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f4565b6000611092611674565b905060008151116110b257604051806020016040528060008152506110dd565b806110bc84611683565b6040516020016110cd92919061201a565b6040516020818303038152906040525b9392505050565b6006546000906001600160a01b031633146111115760405162461bcd60e51b81526004016106f490611ec4565b60005b835181101561115c5761114084828151811061113257611132611fed565b602002602001015184610fbc565b1561114a57600191505b8061115481611fd2565b915050611114565b5092915050565b6006546001600160a01b0316331461118d5760405162461bcd60e51b81526004016106f490611ec4565b6001600160a01b0381166111f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f4565b610a2c81611520565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061123682610c7a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112e85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f4565b60006112f383610c7a565b9050806001600160a01b0316846001600160a01b0316148061132e5750836001600160a01b0316611323846107a2565b6001600160a01b0316145b8061135e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661137982610c7a565b6001600160a01b0316146113e15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f4565b6001600160a01b0382166114435760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f4565b61144e600082611201565b6001600160a01b0383166000908152600360205260408120805460019290611477908490612003565b90915550506001600160a01b03821660009081526003602052604081208054600192906114a5908490611f9b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c76828260405180602001604052806000815250611781565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115d45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61164c848484611366565b611658848484846117b4565b610fb65760405162461bcd60e51b81526004016106f490612049565b60606007805461071f90611ef9565b6060816116a75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116d157806116bb81611fd2565b91506116ca9050600a836120b1565b91506116ab565b60008167ffffffffffffffff8111156116ec576116ec611c50565b6040519080825280601f01601f191660200182016040528015611716576020820181803683370190505b5090505b841561135e5761172b600183612003565b9150611738600a866120c5565b611743906030611f9b565b60f81b81838151811061175857611758611fed565b60200101906001600160f81b031916908160001a90535061177a600a866120b1565b945061171a565b61178b83836118b2565b61179860008484846117b4565b6109485760405162461bcd60e51b81526004016106f490612049565b60006001600160a01b0384163b156118a757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117f89033908990889088906004016120d9565b6020604051808303816000875af1925050508015611833575060408051601f3d908101601f1916820190925261183091810190612116565b60015b61188d573d808015611861576040519150601f19603f3d011682016040523d82523d6000602084013e611866565b606091505b5080516118855760405162461bcd60e51b81526004016106f490612049565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061135e565b506001949350505050565b6001600160a01b0382166119085760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f4565b6000818152600260205260409020546001600160a01b03161561196d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f4565b6001600160a01b0382166000908152600360205260408120805460019290611996908490611f9b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a0090611ef9565b90600052602060002090601f016020900481019282611a225760008555611a68565b82601f10611a3b57805160ff1916838001178555611a68565b82800160010185558215611a68579182015b82811115611a68578251825591602001919060010190611a4d565b50611a74929150611a78565b5090565b5b80821115611a745760008155600101611a79565b6001600160e01b031981168114610a2c57600080fd5b600060208284031215611ab557600080fd5b81356110dd81611a8d565b80358015158114611ad057600080fd5b919050565b600060208284031215611ae757600080fd5b6110dd82611ac0565b60005b83811015611b0b578181015183820152602001611af3565b83811115610fb65750506000910152565b60008151808452611b34816020860160208601611af0565b601f01601f19169290920160200192915050565b6020815260006110dd6020830184611b1c565b600060208284031215611b6d57600080fd5b5035919050565b80356001600160a01b0381168114611ad057600080fd5b600060208284031215611b9d57600080fd5b6110dd82611b74565b60008060408385031215611bb957600080fd5b611bc283611b74565b946020939093013593505050565b600080600060608486031215611be557600080fd5b611bee84611b74565b9250611bfc60208501611b74565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015611c4457835183529284019291840191600101611c28565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611c8f57611c8f611c50565b604052919050565b600067ffffffffffffffff831115611cb157611cb1611c50565b611cc4601f8401601f1916602001611c66565b9050828152838383011115611cd857600080fd5b828260208301376000602084830101529392505050565b600060208284031215611d0157600080fd5b813567ffffffffffffffff811115611d1857600080fd5b8201601f81018413611d2957600080fd5b61135e84823560208401611c97565b60008060408385031215611d4b57600080fd5b611d5483611b74565b9150611d6260208401611ac0565b90509250929050565b60008060008060808587031215611d8157600080fd5b611d8a85611b74565b9350611d9860208601611b74565b925060408501359150606085013567ffffffffffffffff811115611dbb57600080fd5b8501601f81018713611dcc57600080fd5b611ddb87823560208401611c97565b91505092959194509250565b60008060408385031215611dfa57600080fd5b823567ffffffffffffffff80821115611e1257600080fd5b818501915085601f830112611e2657600080fd5b8135602082821115611e3a57611e3a611c50565b8160051b9250611e4b818401611c66565b8281529284018101928181019089851115611e6557600080fd5b948201945b84861015611e8a57611e7b86611b74565b82529482019490820190611e6a565b9997909101359750505050505050565b60008060408385031215611ead57600080fd5b611eb683611b74565b9150611d6260208401611b74565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f0d57607f821691505b60208210811415611f2e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fae57611fae611f85565b500190565b6000816000190483118215151615611fcd57611fcd611f85565b500290565b6000600019821415611fe657611fe6611f85565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008282101561201557612015611f85565b500390565b6000835161202c818460208801611af0565b835190830190612040818360208801611af0565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826120c0576120c061209b565b500490565b6000826120d4576120d461209b565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061210c90830184611b1c565b9695505050505050565b60006020828403121561212857600080fd5b81516110dd81611a8d56fea2646970667358221220fa8abd98da6052d24489e534f5a681eba423ef405bd1db8905b94871d4e83adc64736f6c634300080b00334552433732313a207472616e7366657220746f206e6f6e20455243373231526500000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806355f804b3116101185780639883566e116100a0578063c87b56dd1161006f578063c87b56dd146105b9578063d5abeb01146105d9578063d8c718a8146105ef578063e985e9c51461060f578063f2fde38b1461065857600080fd5b80639883566e14610539578063a22cb46514610559578063b88d4fde14610579578063bd4ec2b21461059957600080fd5b806370a08231116100e757806370a08231146104b1578063715018a6146104d15780637f00c7a6146104e65780638da5cb5b1461050657806395d89b411461052457600080fd5b806355f804b3146104425780635c975abb146104625780636352211e1461047c5780636c0360eb1461049c57600080fd5b8063239c70ae1161019b5780633ccfd60b1161016a5780633ccfd60b146103ad57806340c10f19146103c257806342842e0e146103d5578063438b6300146103f557806344a0d68a1461042257600080fd5b8063239c70ae1461034157806323b872dd146103575780632b54f7361461037757806333bbcc791461038d57600080fd5b8063092ca2d0116101d7578063092ca2d0146102ba578063095ea7b3146102f557806313faede61461031557806318160ddd1461032b57600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611aa3565b610678565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611ad5565b6106ca565b005b34801561026c57600080fd5b50610275610710565b6040516102359190611b48565b34801561028e57600080fd5b506102a261029d366004611b5b565b6107a2565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b506102e76102d5366004611b8b565b60086020526000908152604090205481565b604051908152602001610235565b34801561030157600080fd5b5061025e610310366004611ba6565b610837565b34801561032157600080fd5b506102e760095481565b34801561033757600080fd5b506102e7600d5481565b34801561034d57600080fd5b506102e7600c5481565b34801561036357600080fd5b5061025e610372366004611bd0565b61094d565b34801561038357600080fd5b506102e7600b5481565b34801561039957600080fd5b5061025e6103a8366004611b5b565b61097e565b3480156103b957600080fd5b5061025e6109ad565b61025e6103d0366004611ba6565b610a2f565b3480156103e157600080fd5b5061025e6103f0366004611bd0565b610b0e565b34801561040157600080fd5b50610415610410366004611b8b565b610b29565b6040516102359190611c0c565b34801561042e57600080fd5b5061025e61043d366004611b5b565b610c0a565b34801561044e57600080fd5b5061025e61045d366004611cef565b610c39565b34801561046e57600080fd5b50600e546102299060ff1681565b34801561048857600080fd5b506102a2610497366004611b5b565b610c7a565b3480156104a857600080fd5b50610275610cf1565b3480156104bd57600080fd5b506102e76104cc366004611b8b565b610d7f565b3480156104dd57600080fd5b5061025e610e06565b3480156104f257600080fd5b5061025e610501366004611b5b565b610e3c565b34801561051257600080fd5b506006546001600160a01b03166102a2565b34801561053057600080fd5b50610275610e6b565b34801561054557600080fd5b5061025e610554366004611ba6565b610e7a565b34801561056557600080fd5b5061025e610574366004611d38565b610f79565b34801561058557600080fd5b5061025e610594366004611d6b565b610f84565b3480156105a557600080fd5b506102296105b4366004611ba6565b610fbc565b3480156105c557600080fd5b506102756105d4366004611b5b565b611009565b3480156105e557600080fd5b506102e7600a5481565b3480156105fb57600080fd5b5061022961060a366004611de7565b6110e4565b34801561061b57600080fd5b5061022961062a366004611e9a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066457600080fd5b5061025e610673366004611b8b565b611163565b60006001600160e01b031982166380ac58cd60e01b14806106a957506001600160e01b03198216635b5e139f60e01b145b806106c457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106fd5760405162461bcd60e51b81526004016106f490611ec4565b60405180910390fd5b600e805460ff1916911515919091179055565b60606000805461071f90611ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461074b90611ef9565b80156107985780601f1061076d57610100808354040283529160200191610798565b820191906000526020600020905b81548152906001019060200180831161077b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661081b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f4565b506000908152600460205260409020546001600160a01b031690565b600061084282610c7a565b9050806001600160a01b0316836001600160a01b031614156108b05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f4565b336001600160a01b03821614806108cc57506108cc813361062a565b61093e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f4565b6109488383611201565b505050565b610957338261126f565b6109735760405162461bcd60e51b81526004016106f490611f34565b610948838383611366565b6006546001600160a01b031633146109a85760405162461bcd60e51b81526004016106f490611ec4565b600b55565b6006546001600160a01b031633146109d75760405162461bcd60e51b81526004016106f490611ec4565b604051600090339047908381818185875af1925050503d8060008114610a19576040519150601f19603f3d011682016040523d82523d6000602084013e610a1e565b606091505b5050905080610a2c57600080fd5b50565b600e5460ff1615610a3f57600080fd5b60008111610a4c57600080fd5b600c54811115610a5b57600080fd5b600a5481600d54610a6c9190611f9b565b1115610a7757600080fd5b600b5481600d54610a889190611f9b565b1115610a9357600080fd5b6006546001600160a01b03163314610abf5780600954610ab39190611fb3565b341015610abf57600080fd5b60015b818111610af257610ae08382600d54610adb9190611f9b565b611506565b80610aea81611fd2565b915050610ac2565b5080600d6000828254610b059190611f9b565b90915550505050565b61094883838360405180602001604052806000815250610f84565b60606000610b3683610d7f565b905060008167ffffffffffffffff811115610b5357610b53611c50565b604051908082528060200260200182016040528015610b7c578160200160208202803683370190505b509050600160005b8381108015610b955750600a548211155b15610c00576000610ba583610c7a565b9050866001600160a01b0316816001600160a01b03161415610bed5782848381518110610bd457610bd4611fed565b602090810291909101015281610be981611fd2565b9250505b82610bf781611fd2565b93505050610b84565b5090949350505050565b6006546001600160a01b03163314610c345760405162461bcd60e51b81526004016106f490611ec4565b600955565b6006546001600160a01b03163314610c635760405162461bcd60e51b81526004016106f490611ec4565b8051610c769060079060208401906119f4565b5050565b6000818152600260205260408120546001600160a01b0316806106c45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106f4565b60078054610cfe90611ef9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2a90611ef9565b8015610d775780601f10610d4c57610100808354040283529160200191610d77565b820191906000526020600020905b815481529060010190602001808311610d5a57829003601f168201915b505050505081565b60006001600160a01b038216610dea5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f4565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e305760405162461bcd60e51b81526004016106f490611ec4565b610e3a6000611520565b565b6006546001600160a01b03163314610e665760405162461bcd60e51b81526004016106f490611ec4565b600c55565b60606001805461071f90611ef9565b33600090815260086020526040902054610e9357600080fd5b600e5460ff1615610ea357600080fd5b60008111610eb057600080fd5b600a5481600d54610ec19190611f9b565b1115610ecc57600080fd5b600b5481600d54610edd9190611f9b565b1115610ee857600080fd5b6001600160a01b038216600090815260086020526040902054811115610f0d57600080fd5b60015b818111610af257610f298382600d54610adb9190611f9b565b6001600160a01b038316600090815260086020526040902054610f4e90600190612003565b6001600160a01b03841660009081526008602052604090205580610f7181611fd2565b915050610f10565b610c76338383611572565b610f8e338361126f565b610faa5760405162461bcd60e51b81526004016106f490611f34565b610fb684848484611641565b50505050565b6006546000906001600160a01b03163314610fe95760405162461bcd60e51b81526004016106f490611ec4565b506001600160a01b03909116600090815260086020526040902055600190565b6000818152600260205260409020546060906001600160a01b03166110885760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f4565b6000611092611674565b905060008151116110b257604051806020016040528060008152506110dd565b806110bc84611683565b6040516020016110cd92919061201a565b6040516020818303038152906040525b9392505050565b6006546000906001600160a01b031633146111115760405162461bcd60e51b81526004016106f490611ec4565b60005b835181101561115c5761114084828151811061113257611132611fed565b602002602001015184610fbc565b1561114a57600191505b8061115481611fd2565b915050611114565b5092915050565b6006546001600160a01b0316331461118d5760405162461bcd60e51b81526004016106f490611ec4565b6001600160a01b0381166111f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f4565b610a2c81611520565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061123682610c7a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112e85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f4565b60006112f383610c7a565b9050806001600160a01b0316846001600160a01b0316148061132e5750836001600160a01b0316611323846107a2565b6001600160a01b0316145b8061135e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661137982610c7a565b6001600160a01b0316146113e15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f4565b6001600160a01b0382166114435760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f4565b61144e600082611201565b6001600160a01b0383166000908152600360205260408120805460019290611477908490612003565b90915550506001600160a01b03821660009081526003602052604081208054600192906114a5908490611f9b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c76828260405180602001604052806000815250611781565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115d45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61164c848484611366565b611658848484846117b4565b610fb65760405162461bcd60e51b81526004016106f490612049565b60606007805461071f90611ef9565b6060816116a75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116d157806116bb81611fd2565b91506116ca9050600a836120b1565b91506116ab565b60008167ffffffffffffffff8111156116ec576116ec611c50565b6040519080825280601f01601f191660200182016040528015611716576020820181803683370190505b5090505b841561135e5761172b600183612003565b9150611738600a866120c5565b611743906030611f9b565b60f81b81838151811061175857611758611fed565b60200101906001600160f81b031916908160001a90535061177a600a866120b1565b945061171a565b61178b83836118b2565b61179860008484846117b4565b6109485760405162461bcd60e51b81526004016106f490612049565b60006001600160a01b0384163b156118a757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117f89033908990889088906004016120d9565b6020604051808303816000875af1925050508015611833575060408051601f3d908101601f1916820190925261183091810190612116565b60015b61188d573d808015611861576040519150601f19603f3d011682016040523d82523d6000602084013e611866565b606091505b5080516118855760405162461bcd60e51b81526004016106f490612049565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061135e565b506001949350505050565b6001600160a01b0382166119085760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f4565b6000818152600260205260409020546001600160a01b03161561196d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f4565b6001600160a01b0382166000908152600360205260408120805460019290611996908490611f9b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a0090611ef9565b90600052602060002090601f016020900481019282611a225760008555611a68565b82601f10611a3b57805160ff1916838001178555611a68565b82800160010185558215611a68579182015b82811115611a68578251825591602001919060010190611a4d565b50611a74929150611a78565b5090565b5b80821115611a745760008155600101611a79565b6001600160e01b031981168114610a2c57600080fd5b600060208284031215611ab557600080fd5b81356110dd81611a8d565b80358015158114611ad057600080fd5b919050565b600060208284031215611ae757600080fd5b6110dd82611ac0565b60005b83811015611b0b578181015183820152602001611af3565b83811115610fb65750506000910152565b60008151808452611b34816020860160208601611af0565b601f01601f19169290920160200192915050565b6020815260006110dd6020830184611b1c565b600060208284031215611b6d57600080fd5b5035919050565b80356001600160a01b0381168114611ad057600080fd5b600060208284031215611b9d57600080fd5b6110dd82611b74565b60008060408385031215611bb957600080fd5b611bc283611b74565b946020939093013593505050565b600080600060608486031215611be557600080fd5b611bee84611b74565b9250611bfc60208501611b74565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015611c4457835183529284019291840191600101611c28565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611c8f57611c8f611c50565b604052919050565b600067ffffffffffffffff831115611cb157611cb1611c50565b611cc4601f8401601f1916602001611c66565b9050828152838383011115611cd857600080fd5b828260208301376000602084830101529392505050565b600060208284031215611d0157600080fd5b813567ffffffffffffffff811115611d1857600080fd5b8201601f81018413611d2957600080fd5b61135e84823560208401611c97565b60008060408385031215611d4b57600080fd5b611d5483611b74565b9150611d6260208401611ac0565b90509250929050565b60008060008060808587031215611d8157600080fd5b611d8a85611b74565b9350611d9860208601611b74565b925060408501359150606085013567ffffffffffffffff811115611dbb57600080fd5b8501601f81018713611dcc57600080fd5b611ddb87823560208401611c97565b91505092959194509250565b60008060408385031215611dfa57600080fd5b823567ffffffffffffffff80821115611e1257600080fd5b818501915085601f830112611e2657600080fd5b8135602082821115611e3a57611e3a611c50565b8160051b9250611e4b818401611c66565b8281529284018101928181019089851115611e6557600080fd5b948201945b84861015611e8a57611e7b86611b74565b82529482019490820190611e6a565b9997909101359750505050505050565b60008060408385031215611ead57600080fd5b611eb683611b74565b9150611d6260208401611b74565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f0d57607f821691505b60208210811415611f2e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fae57611fae611f85565b500190565b6000816000190483118215151615611fcd57611fcd611f85565b500290565b6000600019821415611fe657611fe6611f85565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008282101561201557612015611f85565b500390565b6000835161202c818460208801611af0565b835190830190612040818360208801611af0565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826120c0576120c061209b565b500490565b6000826120d4576120d461209b565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061210c90830184611b1c565b9695505050505050565b60006020828403121561212857600080fd5b81516110dd81611a8d56fea2646970667358221220fa8abd98da6052d24489e534f5a681eba423ef405bd1db8905b94871d4e83adc64736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

35555:3985:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23079:305;;;;;;;;;;-1:-1:-1;23079:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23079:305:0;;;;;;;;39307:73;;;;;;;;;;-1:-1:-1;39307:73:0;;;;;:::i;:::-;;:::i;:::-;;24024:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25583:221::-;;;;;;;;;;-1:-1:-1;25583:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;25583:221:0;1878:203:1;35659:52:0;;;;;;;;;;-1:-1:-1;35659:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2601:25:1;;;2589:2;2574:18;35659:52:0;2455:177:1;25106:411:0;;;;;;;;;;-1:-1:-1;25106:411:0;;;;;:::i;:::-;;:::i;35716:33::-;;;;;;;;;;;;;;;;35867:30;;;;;;;;;;;;;;;;35829:33;;;;;;;;;;;;;;;;26333:339;;;;;;;;;;-1:-1:-1;26333:339:0;;;;;:::i;:::-;;:::i;35790:34::-;;;;;;;;;;;;;;;;38952:118;;;;;;;;;;-1:-1:-1;38952:118:0;;;;;:::i;:::-;;:::i;39387:150::-;;;;;;;;;;;;;:::i;36428:513::-;;;;;;:::i;:::-;;:::i;26743:185::-;;;;;;;;;;-1:-1:-1;26743:185:0;;;;;:::i;:::-;;:::i;37448:609::-;;;;;;;;;;-1:-1:-1;37448:609:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;38863:82::-;;;;;;;;;;-1:-1:-1;38863:82:0;;;;;:::i;:::-;;:::i;39202:98::-;;;;;;;;;;-1:-1:-1;39202:98:0;;;;;:::i;:::-;;:::i;35902:26::-;;;;;;;;;;-1:-1:-1;35902:26:0;;;;;;;;23718:239;;;;;;;;;;-1:-1:-1;23718:239:0;;;;;:::i;:::-;;:::i;35633:21::-;;;;;;;;;;;;;:::i;23448:208::-;;;;;;;;;;-1:-1:-1;23448:208:0;;;;;:::i;:::-;;:::i;4584:103::-;;;;;;;;;;;;;:::i;39077:118::-;;;;;;;;;;-1:-1:-1;39077:118:0;;;;;:::i;:::-;;:::i;3933:87::-;;;;;;;;;;-1:-1:-1;4006:6:0;;-1:-1:-1;;;;;4006:6:0;3933:87;;24193:104;;;;;;;;;;;;;:::i;36948:493::-;;;;;;;;;;-1:-1:-1;36948:493:0;;;;;:::i;:::-;;:::i;25876:155::-;;;;;;;;;;-1:-1:-1;25876:155:0;;;;;:::i;:::-;;:::i;26999:328::-;;;;;;;;;;-1:-1:-1;26999:328:0;;;;;:::i;:::-;;:::i;38447:156::-;;;;;;;;;;-1:-1:-1;38447:156:0;;;;;:::i;:::-;;:::i;38064:360::-;;;;;;;;;;-1:-1:-1;38064:360:0;;;;;:::i;:::-;;:::i;35754:31::-;;;;;;;;;;;;;;;;38610:246;;;;;;;;;;-1:-1:-1;38610:246:0;;;;;:::i;:::-;;:::i;26102:164::-;;;;;;;;;;-1:-1:-1;26102:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26223:25:0;;;26199:4;26223:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26102:164;4842:201;;;;;;;;;;-1:-1:-1;4842:201:0;;;;;:::i;:::-;;:::i;23079:305::-;23181:4;-1:-1:-1;;;;;;23218:40:0;;-1:-1:-1;;;23218:40:0;;:105;;-1:-1:-1;;;;;;;23275:48:0;;-1:-1:-1;;;23275:48:0;23218:105;:158;;;-1:-1:-1;;;;;;;;;;16192:40:0;;;23340:36;23198:178;23079:305;-1:-1:-1;;23079:305:0:o;39307:73::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;;;;;;;;;39359:6:::1;:15:::0;;-1:-1:-1;;39359:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39307:73::o;24024:100::-;24078:13;24111:5;24104:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24024:100;:::o;25583:221::-;25659:7;28926:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28926:16:0;25679:73;;;;-1:-1:-1;;;25679:73:0;;8317:2:1;25679:73:0;;;8299:21:1;8356:2;8336:18;;;8329:30;8395:34;8375:18;;;8368:62;-1:-1:-1;;;8446:18:1;;;8439:42;8498:19;;25679:73:0;8115:408:1;25679:73:0;-1:-1:-1;25772:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25772:24:0;;25583:221::o;25106:411::-;25187:13;25203:23;25218:7;25203:14;:23::i;:::-;25187:39;;25251:5;-1:-1:-1;;;;;25245:11:0;:2;-1:-1:-1;;;;;25245:11:0;;;25237:57;;;;-1:-1:-1;;;25237:57:0;;8730:2:1;25237:57:0;;;8712:21:1;8769:2;8749:18;;;8742:30;8808:34;8788:18;;;8781:62;-1:-1:-1;;;8859:18:1;;;8852:31;8900:19;;25237:57:0;8528:397:1;25237:57:0;2798:10;-1:-1:-1;;;;;25329:21:0;;;;:62;;-1:-1:-1;25354:37:0;25371:5;2798:10;26102:164;:::i;25354:37::-;25307:168;;;;-1:-1:-1;;;25307:168:0;;9132:2:1;25307:168:0;;;9114:21:1;9171:2;9151:18;;;9144:30;9210:34;9190:18;;;9183:62;9281:26;9261:18;;;9254:54;9325:19;;25307:168:0;8930:420:1;25307:168:0;25488:21;25497:2;25501:7;25488:8;:21::i;:::-;25176:341;25106:411;;:::o;26333:339::-;26528:41;2798:10;26561:7;26528:18;:41::i;:::-;26520:103;;;;-1:-1:-1;;;26520:103:0;;;;;;;:::i;:::-;26636:28;26646:4;26652:2;26656:7;26636:9;:28::i;38952:118::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;39031:13:::1;:33:::0;38952:118::o;39387:150::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;39450:58:::1;::::0;39432:12:::1;::::0;39458:10:::1;::::0;39482:21:::1;::::0;39432:12;39450:58;39432:12;39450:58;39482:21;39458:10;39450:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39431:77;;;39523:7;39515:16;;;::::0;::::1;;39424:113;39387:150::o:0;36428:513::-;36507:6;;;;36506:7;36498:16;;;;;;36543:1;36529:11;:15;36521:24;;;;;;36575:13;;36560:11;:28;;36552:37;;;;;;36633:9;;36618:11;36604;;:25;;;;:::i;:::-;:38;;36596:47;;;;;;36687:13;;36672:11;36658;;:25;;;;:::i;:::-;:42;;36650:51;;;;;;4006:6;;-1:-1:-1;;;;;4006:6:0;36718:10;:21;36714:86;;36780:11;36773:4;;:18;;;;:::i;:::-;36760:9;:31;;36752:40;;;;;;36829:1;36812:91;36837:11;36832:1;:16;36812:91;;36864:31;36874:3;36893:1;36879:11;;:15;;;;:::i;:::-;36864:9;:31::i;:::-;36850:3;;;;:::i;:::-;;;;36812:91;;;;36924:11;36909;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;36428:513:0:o;26743:185::-;26881:39;26898:4;26904:2;26908:7;26881:39;;;;;;;;;;;;:16;:39::i;37448:609::-;37508:16;37533:23;37559:17;37569:6;37559:9;:17::i;:::-;37533:43;;37583:30;37630:15;37616:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37616:30:0;-1:-1:-1;37583:63:0;-1:-1:-1;37678:1:0;37653:22;37722:303;37747:15;37729;:33;:64;;;;;37784:9;;37766:14;:27;;37729:64;37722:303;;;37804:25;37832:23;37840:14;37832:7;:23::i;:::-;37804:51;;37889:6;-1:-1:-1;;;;;37868:27:0;:17;-1:-1:-1;;;;;37868:27:0;;37864:129;;;37941:14;37908:13;37922:15;37908:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;37966:17;;;;:::i;:::-;;;;37864:129;38001:16;;;;:::i;:::-;;;;37795:230;37722:303;;;-1:-1:-1;38038:13:0;;37448:609;-1:-1:-1;;;;37448:609:0:o;38863:82::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;38924:4:::1;:15:::0;38863:82::o;39202:98::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;39273:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39202:98:::0;:::o;23718:239::-;23790:7;23826:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23826:16:0;23861:19;23853:73;;;;-1:-1:-1;;;23853:73:0;;10895:2:1;23853:73:0;;;10877:21:1;10934:2;10914:18;;;10907:30;10973:34;10953:18;;;10946:62;-1:-1:-1;;;11024:18:1;;;11017:39;11073:19;;23853:73:0;10693:405:1;35633:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23448:208::-;23520:7;-1:-1:-1;;;;;23548:19:0;;23540:74;;;;-1:-1:-1;;;23540:74:0;;11305:2:1;23540:74:0;;;11287:21:1;11344:2;11324:18;;;11317:30;11383:34;11363:18;;;11356:62;-1:-1:-1;;;11434:18:1;;;11427:40;11484:19;;23540:74:0;11103:406:1;23540:74:0;-1:-1:-1;;;;;;23632:16:0;;;;;:9;:16;;;;;;;23448:208::o;4584:103::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;4649:30:::1;4676:1;4649:18;:30::i;:::-;4584:103::o:0;39077:118::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;39156:13:::1;:33:::0;39077:118::o;24193:104::-;24249:13;24282:7;24275:14;;;;;:::i;36948:493::-;36378:10;36392:1;36360:29;;;:17;:29;;;;;;36352:42;;;;;;37038:6:::1;::::0;::::1;;37037:7;37029:16;;;::::0;::::1;;37074:1;37060:11;:15;37052:24;;;::::0;::::1;;37120:9;;37105:11;37091;;:25;;;;:::i;:::-;:38;;37083:47;;;::::0;::::1;;37174:13;;37159:11;37145;;:25;;;;:::i;:::-;:42;;37137:51;;;::::0;::::1;;-1:-1:-1::0;;;;;37219:22:0;::::1;;::::0;;;:17:::1;:22;::::0;;;;;37204:37;::::1;;37196:46;;;::::0;::::1;;37269:1;37252:151;37277:11;37272:1;:16;37252:151;;37304:31;37314:3;37333:1;37319:11;;:15;;;;:::i;37304:31::-;-1:-1:-1::0;;;;;37369:22:0;::::1;;::::0;;;:17:::1;:22;::::0;;;;;:26:::1;::::0;37394:1:::1;::::0;37369:26:::1;:::i;:::-;-1:-1:-1::0;;;;;37344:22:0;::::1;;::::0;;;:17:::1;:22;::::0;;;;:51;37290:3;::::1;::::0;::::1;:::i;:::-;;;;37252:151;;25876:155:::0;25971:52;2798:10;26004:8;26014;25971:18;:52::i;26999:328::-;27174:41;2798:10;27207:7;27174:18;:41::i;:::-;27166:103;;;;-1:-1:-1;;;27166:103:0;;;;;;;:::i;:::-;27280:39;27294:4;27300:2;27304:7;27313:5;27280:13;:39::i;:::-;26999:328;;;;:::o;38447:156::-;4006:6;;38523:12;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;38544:23:0;;::::1;;::::0;;;:17:::1;:23;::::0;;;;:32;38593:4:::1;::::0;38447:156::o;38064:360::-;28902:4;28926:16;;;:7;:16;;;;;;38137:13;;-1:-1:-1;;;;;28926:16:0;38159:76;;;;-1:-1:-1;;;38159:76:0;;11846:2:1;38159:76:0;;;11828:21:1;11885:2;11865:18;;;11858:30;11924:34;11904:18;;;11897:62;-1:-1:-1;;;11975:18:1;;;11968:45;12030:19;;38159:76:0;11644:411:1;38159:76:0;38245:28;38276:10;:8;:10::i;:::-;38245:41;;38331:1;38306:14;38300:28;:32;:118;;;;;;;;;;;;;;;;;38368:14;38384:18;:7;:16;:18::i;:::-;38351:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38300:118;38293:125;38064:360;-1:-1:-1;;;38064:360:0:o;38610:246::-;4006:6;;38697:12;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;38723:9:::1;38718:129;38742:5;:12;38738:1;:16;38718:129;;;38774:29;38786:5;38792:1;38786:8;;;;;;;;:::i;:::-;;;;;;;38796:6;38774:11;:29::i;:::-;38770:70;;;38826:4;38816:14;;38770:70;38756:3:::0;::::1;::::0;::::1;:::i;:::-;;;;38718:129;;;;38610:246:::0;;;;:::o;4842:201::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4931:22:0;::::1;4923:73;;;::::0;-1:-1:-1;;;4923:73:0;;12737:2:1;4923:73:0::1;::::0;::::1;12719:21:1::0;12776:2;12756:18;;;12749:30;12815:34;12795:18;;;12788:62;-1:-1:-1;;;12866:18:1;;;12859:36;12912:19;;4923:73:0::1;12535:402:1::0;4923:73:0::1;5007:28;5026:8;5007:18;:28::i;6161:387::-:0;6484:20;6532:8;;;6161:387::o;32819:174::-;32894:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32894:29:0;-1:-1:-1;;;;;32894:29:0;;;;;;;;:24;;32948:23;32894:24;32948:14;:23::i;:::-;-1:-1:-1;;;;;32939:46:0;;;;;;;;;;;32819:174;;:::o;29131:348::-;29224:4;28926:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28926:16:0;29241:73;;;;-1:-1:-1;;;29241:73:0;;13144:2:1;29241:73:0;;;13126:21:1;13183:2;13163:18;;;13156:30;13222:34;13202:18;;;13195:62;-1:-1:-1;;;13273:18:1;;;13266:42;13325:19;;29241:73:0;12942:408:1;29241:73:0;29325:13;29341:23;29356:7;29341:14;:23::i;:::-;29325:39;;29394:5;-1:-1:-1;;;;;29383:16:0;:7;-1:-1:-1;;;;;29383:16:0;;:51;;;;29427:7;-1:-1:-1;;;;;29403:31:0;:20;29415:7;29403:11;:20::i;:::-;-1:-1:-1;;;;;29403:31:0;;29383:51;:87;;;-1:-1:-1;;;;;;26223:25:0;;;26199:4;26223:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29438:32;29375:96;29131:348;-1:-1:-1;;;;29131:348:0:o;32123:578::-;32282:4;-1:-1:-1;;;;;32255:31:0;:23;32270:7;32255:14;:23::i;:::-;-1:-1:-1;;;;;32255:31:0;;32247:85;;;;-1:-1:-1;;;32247:85:0;;13557:2:1;32247:85:0;;;13539:21:1;13596:2;13576:18;;;13569:30;13635:34;13615:18;;;13608:62;-1:-1:-1;;;13686:18:1;;;13679:39;13735:19;;32247:85:0;13355:405:1;32247:85:0;-1:-1:-1;;;;;32351:16:0;;32343:65;;;;-1:-1:-1;;;32343:65:0;;13967:2:1;32343:65:0;;;13949:21:1;14006:2;13986:18;;;13979:30;14045:34;14025:18;;;14018:62;-1:-1:-1;;;14096:18:1;;;14089:34;14140:19;;32343:65:0;13765:400:1;32343:65:0;32525:29;32542:1;32546:7;32525:8;:29::i;:::-;-1:-1:-1;;;;;32567:15:0;;;;;;:9;:15;;;;;:20;;32586:1;;32567:15;:20;;32586:1;;32567:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32598:13:0;;;;;;:9;:13;;;;;:18;;32615:1;;32598:13;:18;;32615:1;;32598:18;:::i;:::-;;;;-1:-1:-1;;32627:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32627:21:0;-1:-1:-1;;;;;32627:21:0;;;;;;;;;32666:27;;32627:16;;32666:27;;;;;;;32123:578;;;:::o;29821:110::-;29897:26;29907:2;29911:7;29897:26;;;;;;;;;;;;:9;:26::i;5203:191::-;5296:6;;;-1:-1:-1;;;;;5313:17:0;;;-1:-1:-1;;;;;;5313:17:0;;;;;;;5346:40;;5296:6;;;5313:17;5296:6;;5346:40;;5277:16;;5346:40;5266:128;5203:191;:::o;33135:315::-;33290:8;-1:-1:-1;;;;;33281:17:0;:5;-1:-1:-1;;;;;33281:17:0;;;33273:55;;;;-1:-1:-1;;;33273:55:0;;14372:2:1;33273:55:0;;;14354:21:1;14411:2;14391:18;;;14384:30;14450:27;14430:18;;;14423:55;14495:18;;33273:55:0;14170:349:1;33273:55:0;-1:-1:-1;;;;;33339:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33339:46:0;;;;;;;;;;33401:41;;540::1;;;33401::0;;513:18:1;33401:41:0;;;;;;;33135:315;;;:::o;28209:::-;28366:28;28376:4;28382:2;28386:7;28366:9;:28::i;:::-;28413:48;28436:4;28442:2;28446:7;28455:5;28413:22;:48::i;:::-;28405:111;;;;-1:-1:-1;;;28405:111:0;;;;;;;:::i;36196:102::-;36256:13;36285:7;36278:14;;;;;:::i;340:723::-;396:13;617:10;613:53;;-1:-1:-1;;644:10:0;;;;;;;;;;;;-1:-1:-1;;;644:10:0;;;;;340:723::o;613:53::-;691:5;676:12;732:78;739:9;;732:78;;765:8;;;;:::i;:::-;;-1:-1:-1;788:10:0;;-1:-1:-1;796:2:0;788:10;;:::i;:::-;;;732:78;;;820:19;852:6;842:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;842:17:0;;820:39;;870:154;877:10;;870:154;;904:11;914:1;904:11;;:::i;:::-;;-1:-1:-1;973:10:0;981:2;973:5;:10;:::i;:::-;960:24;;:2;:24;:::i;:::-;947:39;;930:6;937;930:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;930:56:0;;;;;;;;-1:-1:-1;1001:11:0;1010:2;1001:11;;:::i;:::-;;;870:154;;30158:321;30288:18;30294:2;30298:7;30288:5;:18::i;:::-;30339:54;30370:1;30374:2;30378:7;30387:5;30339:22;:54::i;:::-;30317:154;;;;-1:-1:-1;;;30317:154:0;;;;;;;:::i;34015:799::-;34170:4;-1:-1:-1;;;;;34191:13:0;;6484:20;6532:8;34187:620;;34227:72;;-1:-1:-1;;;34227:72:0;;-1:-1:-1;;;;;34227:36:0;;;;;:72;;2798:10;;34278:4;;34284:7;;34293:5;;34227:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34227:72:0;;;;;;;;-1:-1:-1;;34227:72:0;;;;;;;;;;;;:::i;:::-;;;34223:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34469:13:0;;34465:272;;34512:60;;-1:-1:-1;;;34512:60:0;;;;;;;:::i;34465:272::-;34687:6;34681:13;34672:6;34668:2;34664:15;34657:38;34223:529;-1:-1:-1;;;;;;34350:51:0;-1:-1:-1;;;34350:51:0;;-1:-1:-1;34343:58:0;;34187:620;-1:-1:-1;34791:4:0;34015:799;;;;;;:::o;30815:382::-;-1:-1:-1;;;;;30895:16:0;;30887:61;;;;-1:-1:-1;;;30887:61:0;;16267:2:1;30887:61:0;;;16249:21:1;;;16286:18;;;16279:30;16345:34;16325:18;;;16318:62;16397:18;;30887:61:0;16065:356:1;30887:61:0;28902:4;28926:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28926:16:0;:30;30959:58;;;;-1:-1:-1;;;30959:58:0;;16628:2:1;30959:58:0;;;16610:21:1;16667:2;16647:18;;;16640:30;16706;16686:18;;;16679:58;16754:18;;30959:58:0;16426:352:1;30959:58:0;-1:-1:-1;;;;;31088:13:0;;;;;;:9;:13;;;;;:18;;31105:1;;31088:13;:18;;31105:1;;31088:18;:::i;:::-;;;;-1:-1:-1;;31117:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31117:21:0;-1:-1:-1;;;;;31117:21:0;;;;;;;;31156:33;;31117:16;;;31156:33;;31117:16;;31156:33;30815:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:186;2323:6;2376:2;2364:9;2355:7;2351:23;2347:32;2344:52;;;2392:1;2389;2382:12;2344:52;2415:29;2434:9;2415:29;:::i;2637:254::-;2705:6;2713;2766:2;2754:9;2745:7;2741:23;2737:32;2734:52;;;2782:1;2779;2772:12;2734:52;2805:29;2824:9;2805:29;:::i;:::-;2795:39;2881:2;2866:18;;;;2853:32;;-1:-1:-1;;;2637:254:1:o;2896:328::-;2973:6;2981;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3214:2;3203:9;3199:18;3186:32;3176:42;;2896:328;;;;;:::o;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:275;4069:2;4063:9;4134:2;4115:13;;-1:-1:-1;;4111:27:1;4099:40;;4169:18;4154:34;;4190:22;;;4151:62;4148:88;;;4216:18;;:::i;:::-;4252:2;4245:22;3998:275;;-1:-1:-1;3998:275:1:o;4278:407::-;4343:5;4377:18;4369:6;4366:30;4363:56;;;4399:18;;:::i;:::-;4437:57;4482:2;4461:15;;-1:-1:-1;;4457:29:1;4488:4;4453:40;4437:57;:::i;:::-;4428:66;;4517:6;4510:5;4503:21;4557:3;4548:6;4543:3;4539:16;4536:25;4533:45;;;4574:1;4571;4564:12;4533:45;4623:6;4618:3;4611:4;4604:5;4600:16;4587:43;4677:1;4670:4;4661:6;4654:5;4650:18;4646:29;4639:40;4278:407;;;;;:::o;4690:451::-;4759:6;4812:2;4800:9;4791:7;4787:23;4783:32;4780:52;;;4828:1;4825;4818:12;4780:52;4868:9;4855:23;4901:18;4893:6;4890:30;4887:50;;;4933:1;4930;4923:12;4887:50;4956:22;;5009:4;5001:13;;4997:27;-1:-1:-1;4987:55:1;;5038:1;5035;5028:12;4987:55;5061:74;5127:7;5122:2;5109:16;5104:2;5100;5096:11;5061:74;:::i;5146:254::-;5211:6;5219;5272:2;5260:9;5251:7;5247:23;5243:32;5240:52;;;5288:1;5285;5278:12;5240:52;5311:29;5330:9;5311:29;:::i;:::-;5301:39;;5359:35;5390:2;5379:9;5375:18;5359:35;:::i;:::-;5349:45;;5146:254;;;;;:::o;5405:667::-;5500:6;5508;5516;5524;5577:3;5565:9;5556:7;5552:23;5548:33;5545:53;;;5594:1;5591;5584:12;5545:53;5617:29;5636:9;5617:29;:::i;:::-;5607:39;;5665:38;5699:2;5688:9;5684:18;5665:38;:::i;:::-;5655:48;;5750:2;5739:9;5735:18;5722:32;5712:42;;5805:2;5794:9;5790:18;5777:32;5832:18;5824:6;5821:30;5818:50;;;5864:1;5861;5854:12;5818:50;5887:22;;5940:4;5932:13;;5928:27;-1:-1:-1;5918:55:1;;5969:1;5966;5959:12;5918:55;5992:74;6058:7;6053:2;6040:16;6035:2;6031;6027:11;5992:74;:::i;:::-;5982:84;;;5405:667;;;;;;;:::o;6077:1022::-;6170:6;6178;6231:2;6219:9;6210:7;6206:23;6202:32;6199:52;;;6247:1;6244;6237:12;6199:52;6287:9;6274:23;6316:18;6357:2;6349:6;6346:14;6343:34;;;6373:1;6370;6363:12;6343:34;6411:6;6400:9;6396:22;6386:32;;6456:7;6449:4;6445:2;6441:13;6437:27;6427:55;;6478:1;6475;6468:12;6427:55;6514:2;6501:16;6536:4;6559:2;6555;6552:10;6549:36;;;6565:18;;:::i;:::-;6611:2;6608:1;6604:10;6594:20;;6634:28;6658:2;6654;6650:11;6634:28;:::i;:::-;6696:15;;;6766:11;;;6762:20;;;6727:12;;;;6794:19;;;6791:39;;;6826:1;6823;6816:12;6791:39;6850:11;;;;6870:148;6886:6;6881:3;6878:15;6870:148;;;6952:23;6971:3;6952:23;:::i;:::-;6940:36;;6903:12;;;;6996;;;;6870:148;;;7037:5;7074:18;;;;7061:32;;-1:-1:-1;;;;;;;6077:1022:1:o;7104:260::-;7172:6;7180;7233:2;7221:9;7212:7;7208:23;7204:32;7201:52;;;7249:1;7246;7239:12;7201:52;7272:29;7291:9;7272:29;:::i;:::-;7262:39;;7320:38;7354:2;7343:9;7339:18;7320:38;:::i;7369:356::-;7571:2;7553:21;;;7590:18;;;7583:30;7649:34;7644:2;7629:18;;7622:62;7716:2;7701:18;;7369:356::o;7730:380::-;7809:1;7805:12;;;;7852;;;7873:61;;7927:4;7919:6;7915:17;7905:27;;7873:61;7980:2;7972:6;7969:14;7949:18;7946:38;7943:161;;;8026:10;8021:3;8017:20;8014:1;8007:31;8061:4;8058:1;8051:15;8089:4;8086:1;8079:15;7943:161;;7730:380;;;:::o;9355:413::-;9557:2;9539:21;;;9596:2;9576:18;;;9569:30;9635:34;9630:2;9615:18;;9608:62;-1:-1:-1;;;9701:2:1;9686:18;;9679:47;9758:3;9743:19;;9355:413::o;9983:127::-;10044:10;10039:3;10035:20;10032:1;10025:31;10075:4;10072:1;10065:15;10099:4;10096:1;10089:15;10115:128;10155:3;10186:1;10182:6;10179:1;10176:13;10173:39;;;10192:18;;:::i;:::-;-1:-1:-1;10228:9:1;;10115:128::o;10248:168::-;10288:7;10354:1;10350;10346:6;10342:14;10339:1;10336:21;10331:1;10324:9;10317:17;10313:45;10310:71;;;10361:18;;:::i;:::-;-1:-1:-1;10401:9:1;;10248:168::o;10421:135::-;10460:3;-1:-1:-1;;10481:17:1;;10478:43;;;10501:18;;:::i;:::-;-1:-1:-1;10548:1:1;10537:13;;10421:135::o;10561:127::-;10622:10;10617:3;10613:20;10610:1;10603:31;10653:4;10650:1;10643:15;10677:4;10674:1;10667:15;11514:125;11554:4;11582:1;11579;11576:8;11573:34;;;11587:18;;:::i;:::-;-1:-1:-1;11624:9:1;;11514:125::o;12060:470::-;12239:3;12277:6;12271:13;12293:53;12339:6;12334:3;12327:4;12319:6;12315:17;12293:53;:::i;:::-;12409:13;;12368:16;;;;12431:57;12409:13;12368:16;12465:4;12453:17;;12431:57;:::i;:::-;12504:20;;12060:470;-1:-1:-1;;;;12060:470:1:o;14524:414::-;14726:2;14708:21;;;14765:2;14745:18;;;14738:30;14804:34;14799:2;14784:18;;14777:62;-1:-1:-1;;;14870:2:1;14855:18;;14848:48;14928:3;14913:19;;14524:414::o;14943:127::-;15004:10;14999:3;14995:20;14992:1;14985:31;15035:4;15032:1;15025:15;15059:4;15056:1;15049:15;15075:120;15115:1;15141;15131:35;;15146:18;;:::i;:::-;-1:-1:-1;15180:9:1;;15075:120::o;15200:112::-;15232:1;15258;15248:35;;15263:18;;:::i;:::-;-1:-1:-1;15297:9:1;;15200:112::o;15317:489::-;-1:-1:-1;;;;;15586:15:1;;;15568:34;;15638:15;;15633:2;15618:18;;15611:43;15685:2;15670:18;;15663:34;;;15733:3;15728:2;15713:18;;15706:31;;;15511:4;;15754:46;;15780:19;;15772:6;15754:46;:::i;:::-;15746:54;15317:489;-1:-1:-1;;;;;;15317:489:1:o;15811:249::-;15880:6;15933:2;15921:9;15912:7;15908:23;15904:32;15901:52;;;15949:1;15946;15939:12;15901:52;15981:9;15975:16;16000:30;16024:5;16000:30;:::i

Swarm Source

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