ETH Price: $3,253.70 (-0.20%)
Gas: 2 Gwei

Token

SubwayApeClub (SWAC)
 

Overview

Max Total Supply

1,927 SWAC

Holders

324

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 SWAC
0x605519CF79a14018359F42BE1edb571e011A0905
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:
SubwayApeClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 15 of 15: SubwayApeClub.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.7.0 <0.9.0;

import "./ERC721.sol";
import "./Counters.sol";
import "./Ownable.sol";
import "./SafeMath.sol";

contract SubwayApeClub is ERC721, Ownable {
    using SafeMath for uint256;
    using Address for address;
    mapping(address => uint256) mintPassAddresses;

    string private _baseURIextended;

    uint256 public tokenSupply;

    uint256 private maxMintSupply;
    bool public publicSale = false;
    bool public mintPassSale = false;
    uint256 public price = 0.15 ether;

    constructor() ERC721("SubwayApeClub", "SWAC") {}

    function totalSupply() external view returns (uint256) {
        return tokenSupply;
    }

    function mint(uint256 _mintAmount) public payable {
        require(msg.value >= price * _mintAmount, "Insuffcient amount sent");
        require(
            tokenSupply + _mintAmount <= maxMintSupply,
            "Purchase would exceed max supply"
        );
        require(publicSale, "Sale is not active");
        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(msg.sender, tokenSupply + 1);
            tokenSupply++;
        }
    }

    function mintPass(uint256 _mintAmount) public payable {
        require(msg.value >= price * _mintAmount, "Insuffcient amount sent");
        require(
            tokenSupply + _mintAmount <= maxMintSupply,
            "Purchase would exceed max supply"
        );
        require(
            mintPassAddresses[msg.sender] >= 1,
            "Address exceeds max alloted per address or not on whitelist"
        );
        require(mintPassSale == true, "Sale is not active");
        for (uint256 i = 0; i < _mintAmount; i++) {
            mintPassAddresses[msg.sender] = mintPassAddresses[msg.sender].sub(
                1
            );
            _safeMint(msg.sender, tokenSupply + i);
            tokenSupply++;
        }
    }

    function setMaxSupply(uint256 _setMaxSupply) public onlyOwner {
        maxMintSupply = _setMaxSupply;
    }

    function setPublicSaleStatus() external onlyOwner {
        publicSale = !publicSale;
    }

    function setMintPassSaleStatus() external onlyOwner {
        mintPassSale = !mintPassSale;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

    function setPrice(uint256 _priceInWei) external onlyOwner {
        price = _priceInWei;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

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

    function populateMintPass(address[] memory _mintPassAddresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _mintPassAddresses.length; i++) {
            mintPassAddresses[_mintPassAddresses[i]] = mintPassAddresses[
                _mintPassAddresses[i]
            ].add(2);
        }
    }

    function viewMintPassForAddress(address _address)
        external
        view
        returns (uint256)
    {
        return mintPassAddresses[_address];
    }
}

File 1 of 15: Address.sol
// SPDX-License-Identifier: MIT

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 2 of 15: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 15: Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 15: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 15: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 6 of 15: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 7 of 15: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 8 of 15: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 15: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 10 of 15: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 15: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 12 of 15: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 13 of 15: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 14 of 15: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPassSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_mintPassAddresses","type":"address[]"}],"name":"populateMintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_setMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMintPassSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicSaleStatus","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":[],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"viewMintPassForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b805461ffff19169055670214e8348c4f0000600c553480156200002857600080fd5b50604080518082018252600d81526c29bab13bb0bca0b832a1b63ab160991b6020808301918252835180850190945260048452635357414360e01b9084015281519192916200007a9160009162000109565b5080516200009090600190602084019062000109565b505050620000ad620000a7620000b360201b60201c565b620000b7565b620001ec565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011790620001af565b90600052602060002090601f0160209004810192826200013b576000855562000186565b82601f106200015657805160ff191683800117855562000186565b8280016001018555821562000186579182015b828111156200018657825182559160200191906001019062000169565b506200019492915062000198565b5090565b5b8082111562000194576000815560010162000199565b600181811c90821680620001c457607f821691505b60208210811415620001e657634e487b7160e01b600052602260045260246000fd5b50919050565b61209780620001fc6000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063a035b1fe11610095578063be109bb411610064578063be109bb414610520578063c87b56dd14610535578063e985e9c514610555578063f2fde38b1461059e57600080fd5b8063a035b1fe146104b7578063a0712d68146104cd578063a22cb465146104e0578063b88d4fde1461050057600080fd5b80638da5cb5b116100d15780638da5cb5b1461042e578063905b094f1461044c57806391b7f5ed1461048257806395d89b41146104a257600080fd5b8063715018a6146103ce5780637824407f146103e35780637dfed9fe146103f95780638403b39e1461040e57600080fd5b806333bc1c5c1161017a57806355f804b31161014957806355f804b31461034e5780636352211e1461036e5780636f8b44b01461038e57806370a08231146103ae57600080fd5b806333bc1c5c146102ec5780633ccfd60b1461030657806342842e0e1461031b5780634f28e6801461033b57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806315ee7d4e1461028e57806318160ddd146102ad57806323b872dd146102cc57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611cab565b6105be565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610610565b6040516102099190611ddf565b34801561024057600080fd5b5061025461024f366004611d2e565b6106a2565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611bcd565b61073c565b005b34801561029a57600080fd5b50600b546101fd90610100900460ff1681565b3480156102b957600080fd5b506009545b604051908152602001610209565b3480156102d857600080fd5b5061028c6102e7366004611ad9565b610852565b3480156102f857600080fd5b50600b546101fd9060ff1681565b34801561031257600080fd5b5061028c610883565b34801561032757600080fd5b5061028c610336366004611ad9565b610905565b61028c610349366004611d2e565b610920565b34801561035a57600080fd5b5061028c610369366004611ce5565b610b2b565b34801561037a57600080fd5b50610254610389366004611d2e565b610b68565b34801561039a57600080fd5b5061028c6103a9366004611d2e565b610bdf565b3480156103ba57600080fd5b506102be6103c9366004611a8b565b610c0e565b3480156103da57600080fd5b5061028c610c95565b3480156103ef57600080fd5b506102be60095481565b34801561040557600080fd5b5061028c610ccb565b34801561041a57600080fd5b5061028c610429366004611bf7565b610d09565b34801561043a57600080fd5b506006546001600160a01b0316610254565b34801561045857600080fd5b506102be610467366004611a8b565b6001600160a01b031660009081526007602052604090205490565b34801561048e57600080fd5b5061028c61049d366004611d2e565b610de6565b3480156104ae57600080fd5b50610227610e15565b3480156104c357600080fd5b506102be600c5481565b61028c6104db366004611d2e565b610e24565b3480156104ec57600080fd5b5061028c6104fb366004611b91565b610f67565b34801561050c57600080fd5b5061028c61051b366004611b15565b610f72565b34801561052c57600080fd5b5061028c610faa565b34801561054157600080fd5b50610227610550366004611d2e565b610ff1565b34801561056157600080fd5b506101fd610570366004611aa6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105aa57600080fd5b5061028c6105b9366004611a8b565b6110cc565b60006001600160e01b031982166380ac58cd60e01b14806105ef57506001600160e01b03198216635b5e139f60e01b145b8061060a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461061f90611f89565b80601f016020809104026020016040519081016040528092919081815260200182805461064b90611f89565b80156106985780601f1061066d57610100808354040283529160200191610698565b820191906000526020600020905b81548152906001019060200180831161067b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107205760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074782610b68565b9050806001600160a01b0316836001600160a01b031614156107b55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610717565b336001600160a01b03821614806107d157506107d18133610570565b6108435760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610717565b61084d8383611164565b505050565b61085c33826111d2565b6108785760405162461bcd60e51b815260040161071790611e79565b61084d8383836112c9565b6006546001600160a01b031633146108ad5760405162461bcd60e51b815260040161071790611e44565b604051600090339047908381818185875af1925050503d80600081146108ef576040519150601f19603f3d011682016040523d82523d6000602084013e6108f4565b606091505b505090508061090257600080fd5b50565b61084d83838360405180602001604052806000815250610f72565b80600c5461092e9190611f27565b3410156109775760405162461bcd60e51b8152602060048201526017602482015276125b9cdd599998da595b9d08185b5bdd5b9d081cd95b9d604a1b6044820152606401610717565b600a54816009546109889190611efb565b11156109d65760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610717565b3360009081526007602052604090205460011115610a5c5760405162461bcd60e51b815260206004820152603b60248201527f416464726573732065786365656473206d617820616c6c6f746564207065722060448201527f61646472657373206f72206e6f74206f6e2077686974656c69737400000000006064820152608401610717565b600b5460ff610100909104161515600114610aae5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610717565b60005b81811015610b275733600090815260076020526040902054610ad4906001611469565b33600081815260076020526040902091909155600954610aff9190610afa908490611efb565b611475565b60098054906000610b0f83611fc4565b91905055508080610b1f90611fc4565b915050610ab1565b5050565b6006546001600160a01b03163314610b555760405162461bcd60e51b815260040161071790611e44565b8051610b2790600890602084019061197e565b6000818152600260205260408120546001600160a01b03168061060a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610717565b6006546001600160a01b03163314610c095760405162461bcd60e51b815260040161071790611e44565b600a55565b60006001600160a01b038216610c795760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610717565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610cbf5760405162461bcd60e51b815260040161071790611e44565b610cc9600061148f565b565b6006546001600160a01b03163314610cf55760405162461bcd60e51b815260040161071790611e44565b600b805460ff19811660ff90911615179055565b6006546001600160a01b03163314610d335760405162461bcd60e51b815260040161071790611e44565b60005b8151811015610b2757610d91600260076000858581518110610d5a57610d5a61201f565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546114e190919063ffffffff16565b60076000848481518110610da757610da761201f565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610dde90611fc4565b915050610d36565b6006546001600160a01b03163314610e105760405162461bcd60e51b815260040161071790611e44565b600c55565b60606001805461061f90611f89565b80600c54610e329190611f27565b341015610e7b5760405162461bcd60e51b8152602060048201526017602482015276125b9cdd599998da595b9d08185b5bdd5b9d081cd95b9d604a1b6044820152606401610717565b600a5481600954610e8c9190611efb565b1115610eda5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610717565b600b5460ff16610f215760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610717565b60005b81811015610b2757610f3f336009546001610afa9190611efb565b60098054906000610f4f83611fc4565b91905055508080610f5f90611fc4565b915050610f24565b610b273383836114ed565b610f7c33836111d2565b610f985760405162461bcd60e51b815260040161071790611e79565b610fa4848484846115bc565b50505050565b6006546001600160a01b03163314610fd45760405162461bcd60e51b815260040161071790611e44565b600b805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260409020546060906001600160a01b03166110705760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610717565b600061107a6115ef565b9050600081511161109a57604051806020016040528060008152506110c5565b806110a4846115fe565b6040516020016110b5929190611d73565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146110f65760405162461bcd60e51b815260040161071790611e44565b6001600160a01b03811661115b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610717565b6109028161148f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061119982610b68565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661124b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610717565b600061125683610b68565b9050806001600160a01b0316846001600160a01b031614806112915750836001600160a01b0316611286846106a2565b6001600160a01b0316145b806112c157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112dc82610b68565b6001600160a01b0316146113445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610717565b6001600160a01b0382166113a65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610717565b6113b1600082611164565b6001600160a01b03831660009081526003602052604081208054600192906113da908490611f46565b90915550506001600160a01b0382166000908152600360205260408120805460019290611408908490611efb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006110c58284611f46565b610b278282604051806020016040528060008152506116fc565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006110c58284611efb565b816001600160a01b0316836001600160a01b0316141561154f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610717565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115c78484846112c9565b6115d38484848461172f565b610fa45760405162461bcd60e51b815260040161071790611df2565b60606008805461061f90611f89565b6060816116225750506040805180820190915260018152600360fc1b602082015290565b8160005b811561164c578061163681611fc4565b91506116459050600a83611f13565b9150611626565b60008167ffffffffffffffff81111561166757611667612035565b6040519080825280601f01601f191660200182016040528015611691576020820181803683370190505b5090505b84156112c1576116a6600183611f46565b91506116b3600a86611fdf565b6116be906030611efb565b60f81b8183815181106116d3576116d361201f565b60200101906001600160f81b031916908160001a9053506116f5600a86611f13565b9450611695565b611706838361183c565b611713600084848461172f565b61084d5760405162461bcd60e51b815260040161071790611df2565b60006001600160a01b0384163b1561183157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611773903390899088908890600401611da2565b602060405180830381600087803b15801561178d57600080fd5b505af19250505080156117bd575060408051601f3d908101601f191682019092526117ba91810190611cc8565b60015b611817573d8080156117eb576040519150601f19603f3d011682016040523d82523d6000602084013e6117f0565b606091505b50805161180f5760405162461bcd60e51b815260040161071790611df2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c1565b506001949350505050565b6001600160a01b0382166118925760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610717565b6000818152600260205260409020546001600160a01b0316156118f75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610717565b6001600160a01b0382166000908152600360205260408120805460019290611920908490611efb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461198a90611f89565b90600052602060002090601f0160209004810192826119ac57600085556119f2565b82601f106119c557805160ff19168380011785556119f2565b828001600101855582156119f2579182015b828111156119f25782518255916020019190600101906119d7565b506119fe929150611a02565b5090565b5b808211156119fe5760008155600101611a03565b600067ffffffffffffffff831115611a3157611a31612035565b611a44601f8401601f1916602001611eca565b9050828152838383011115611a5857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a8657600080fd5b919050565b600060208284031215611a9d57600080fd5b6110c582611a6f565b60008060408385031215611ab957600080fd5b611ac283611a6f565b9150611ad060208401611a6f565b90509250929050565b600080600060608486031215611aee57600080fd5b611af784611a6f565b9250611b0560208501611a6f565b9150604084013590509250925092565b60008060008060808587031215611b2b57600080fd5b611b3485611a6f565b9350611b4260208601611a6f565b925060408501359150606085013567ffffffffffffffff811115611b6557600080fd5b8501601f81018713611b7657600080fd5b611b8587823560208401611a17565b91505092959194509250565b60008060408385031215611ba457600080fd5b611bad83611a6f565b915060208301358015158114611bc257600080fd5b809150509250929050565b60008060408385031215611be057600080fd5b611be983611a6f565b946020939093013593505050565b60006020808385031215611c0a57600080fd5b823567ffffffffffffffff80821115611c2257600080fd5b818501915085601f830112611c3657600080fd5b813581811115611c4857611c48612035565b8060051b9150611c59848301611eca565b8181528481019084860184860187018a1015611c7457600080fd5b600095505b83861015611c9e57611c8a81611a6f565b835260019590950194918601918601611c79565b5098975050505050505050565b600060208284031215611cbd57600080fd5b81356110c58161204b565b600060208284031215611cda57600080fd5b81516110c58161204b565b600060208284031215611cf757600080fd5b813567ffffffffffffffff811115611d0e57600080fd5b8201601f81018413611d1f57600080fd5b6112c184823560208401611a17565b600060208284031215611d4057600080fd5b5035919050565b60008151808452611d5f816020860160208601611f5d565b601f01601f19169290920160200192915050565b60008351611d85818460208801611f5d565b835190830190611d99818360208801611f5d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dd590830184611d47565b9695505050505050565b6020815260006110c56020830184611d47565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611ef357611ef3612035565b604052919050565b60008219821115611f0e57611f0e611ff3565b500190565b600082611f2257611f22612009565b500490565b6000816000190483118215151615611f4157611f41611ff3565b500290565b600082821015611f5857611f58611ff3565b500390565b60005b83811015611f78578181015183820152602001611f60565b83811115610fa45750506000910152565b600181811c90821680611f9d57607f821691505b60208210811415611fbe57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fd857611fd8611ff3565b5060010190565b600082611fee57611fee612009565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461090257600080fdfea26469706673582212207d6c5a459df3e0ba769378e8a3be3998ddd63856e65b436e8b0203a09456b9a664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063715018a611610102578063a035b1fe11610095578063be109bb411610064578063be109bb414610520578063c87b56dd14610535578063e985e9c514610555578063f2fde38b1461059e57600080fd5b8063a035b1fe146104b7578063a0712d68146104cd578063a22cb465146104e0578063b88d4fde1461050057600080fd5b80638da5cb5b116100d15780638da5cb5b1461042e578063905b094f1461044c57806391b7f5ed1461048257806395d89b41146104a257600080fd5b8063715018a6146103ce5780637824407f146103e35780637dfed9fe146103f95780638403b39e1461040e57600080fd5b806333bc1c5c1161017a57806355f804b31161014957806355f804b31461034e5780636352211e1461036e5780636f8b44b01461038e57806370a08231146103ae57600080fd5b806333bc1c5c146102ec5780633ccfd60b1461030657806342842e0e1461031b5780634f28e6801461033b57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806315ee7d4e1461028e57806318160ddd146102ad57806323b872dd146102cc57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611cab565b6105be565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610610565b6040516102099190611ddf565b34801561024057600080fd5b5061025461024f366004611d2e565b6106a2565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611bcd565b61073c565b005b34801561029a57600080fd5b50600b546101fd90610100900460ff1681565b3480156102b957600080fd5b506009545b604051908152602001610209565b3480156102d857600080fd5b5061028c6102e7366004611ad9565b610852565b3480156102f857600080fd5b50600b546101fd9060ff1681565b34801561031257600080fd5b5061028c610883565b34801561032757600080fd5b5061028c610336366004611ad9565b610905565b61028c610349366004611d2e565b610920565b34801561035a57600080fd5b5061028c610369366004611ce5565b610b2b565b34801561037a57600080fd5b50610254610389366004611d2e565b610b68565b34801561039a57600080fd5b5061028c6103a9366004611d2e565b610bdf565b3480156103ba57600080fd5b506102be6103c9366004611a8b565b610c0e565b3480156103da57600080fd5b5061028c610c95565b3480156103ef57600080fd5b506102be60095481565b34801561040557600080fd5b5061028c610ccb565b34801561041a57600080fd5b5061028c610429366004611bf7565b610d09565b34801561043a57600080fd5b506006546001600160a01b0316610254565b34801561045857600080fd5b506102be610467366004611a8b565b6001600160a01b031660009081526007602052604090205490565b34801561048e57600080fd5b5061028c61049d366004611d2e565b610de6565b3480156104ae57600080fd5b50610227610e15565b3480156104c357600080fd5b506102be600c5481565b61028c6104db366004611d2e565b610e24565b3480156104ec57600080fd5b5061028c6104fb366004611b91565b610f67565b34801561050c57600080fd5b5061028c61051b366004611b15565b610f72565b34801561052c57600080fd5b5061028c610faa565b34801561054157600080fd5b50610227610550366004611d2e565b610ff1565b34801561056157600080fd5b506101fd610570366004611aa6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105aa57600080fd5b5061028c6105b9366004611a8b565b6110cc565b60006001600160e01b031982166380ac58cd60e01b14806105ef57506001600160e01b03198216635b5e139f60e01b145b8061060a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461061f90611f89565b80601f016020809104026020016040519081016040528092919081815260200182805461064b90611f89565b80156106985780601f1061066d57610100808354040283529160200191610698565b820191906000526020600020905b81548152906001019060200180831161067b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107205760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074782610b68565b9050806001600160a01b0316836001600160a01b031614156107b55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610717565b336001600160a01b03821614806107d157506107d18133610570565b6108435760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610717565b61084d8383611164565b505050565b61085c33826111d2565b6108785760405162461bcd60e51b815260040161071790611e79565b61084d8383836112c9565b6006546001600160a01b031633146108ad5760405162461bcd60e51b815260040161071790611e44565b604051600090339047908381818185875af1925050503d80600081146108ef576040519150601f19603f3d011682016040523d82523d6000602084013e6108f4565b606091505b505090508061090257600080fd5b50565b61084d83838360405180602001604052806000815250610f72565b80600c5461092e9190611f27565b3410156109775760405162461bcd60e51b8152602060048201526017602482015276125b9cdd599998da595b9d08185b5bdd5b9d081cd95b9d604a1b6044820152606401610717565b600a54816009546109889190611efb565b11156109d65760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610717565b3360009081526007602052604090205460011115610a5c5760405162461bcd60e51b815260206004820152603b60248201527f416464726573732065786365656473206d617820616c6c6f746564207065722060448201527f61646472657373206f72206e6f74206f6e2077686974656c69737400000000006064820152608401610717565b600b5460ff610100909104161515600114610aae5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610717565b60005b81811015610b275733600090815260076020526040902054610ad4906001611469565b33600081815260076020526040902091909155600954610aff9190610afa908490611efb565b611475565b60098054906000610b0f83611fc4565b91905055508080610b1f90611fc4565b915050610ab1565b5050565b6006546001600160a01b03163314610b555760405162461bcd60e51b815260040161071790611e44565b8051610b2790600890602084019061197e565b6000818152600260205260408120546001600160a01b03168061060a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610717565b6006546001600160a01b03163314610c095760405162461bcd60e51b815260040161071790611e44565b600a55565b60006001600160a01b038216610c795760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610717565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610cbf5760405162461bcd60e51b815260040161071790611e44565b610cc9600061148f565b565b6006546001600160a01b03163314610cf55760405162461bcd60e51b815260040161071790611e44565b600b805460ff19811660ff90911615179055565b6006546001600160a01b03163314610d335760405162461bcd60e51b815260040161071790611e44565b60005b8151811015610b2757610d91600260076000858581518110610d5a57610d5a61201f565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546114e190919063ffffffff16565b60076000848481518110610da757610da761201f565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610dde90611fc4565b915050610d36565b6006546001600160a01b03163314610e105760405162461bcd60e51b815260040161071790611e44565b600c55565b60606001805461061f90611f89565b80600c54610e329190611f27565b341015610e7b5760405162461bcd60e51b8152602060048201526017602482015276125b9cdd599998da595b9d08185b5bdd5b9d081cd95b9d604a1b6044820152606401610717565b600a5481600954610e8c9190611efb565b1115610eda5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610717565b600b5460ff16610f215760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610717565b60005b81811015610b2757610f3f336009546001610afa9190611efb565b60098054906000610f4f83611fc4565b91905055508080610f5f90611fc4565b915050610f24565b610b273383836114ed565b610f7c33836111d2565b610f985760405162461bcd60e51b815260040161071790611e79565b610fa4848484846115bc565b50505050565b6006546001600160a01b03163314610fd45760405162461bcd60e51b815260040161071790611e44565b600b805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260409020546060906001600160a01b03166110705760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610717565b600061107a6115ef565b9050600081511161109a57604051806020016040528060008152506110c5565b806110a4846115fe565b6040516020016110b5929190611d73565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146110f65760405162461bcd60e51b815260040161071790611e44565b6001600160a01b03811661115b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610717565b6109028161148f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061119982610b68565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661124b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610717565b600061125683610b68565b9050806001600160a01b0316846001600160a01b031614806112915750836001600160a01b0316611286846106a2565b6001600160a01b0316145b806112c157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112dc82610b68565b6001600160a01b0316146113445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610717565b6001600160a01b0382166113a65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610717565b6113b1600082611164565b6001600160a01b03831660009081526003602052604081208054600192906113da908490611f46565b90915550506001600160a01b0382166000908152600360205260408120805460019290611408908490611efb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006110c58284611f46565b610b278282604051806020016040528060008152506116fc565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006110c58284611efb565b816001600160a01b0316836001600160a01b0316141561154f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610717565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115c78484846112c9565b6115d38484848461172f565b610fa45760405162461bcd60e51b815260040161071790611df2565b60606008805461061f90611f89565b6060816116225750506040805180820190915260018152600360fc1b602082015290565b8160005b811561164c578061163681611fc4565b91506116459050600a83611f13565b9150611626565b60008167ffffffffffffffff81111561166757611667612035565b6040519080825280601f01601f191660200182016040528015611691576020820181803683370190505b5090505b84156112c1576116a6600183611f46565b91506116b3600a86611fdf565b6116be906030611efb565b60f81b8183815181106116d3576116d361201f565b60200101906001600160f81b031916908160001a9053506116f5600a86611f13565b9450611695565b611706838361183c565b611713600084848461172f565b61084d5760405162461bcd60e51b815260040161071790611df2565b60006001600160a01b0384163b1561183157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611773903390899088908890600401611da2565b602060405180830381600087803b15801561178d57600080fd5b505af19250505080156117bd575060408051601f3d908101601f191682019092526117ba91810190611cc8565b60015b611817573d8080156117eb576040519150601f19603f3d011682016040523d82523d6000602084013e6117f0565b606091505b50805161180f5760405162461bcd60e51b815260040161071790611df2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c1565b506001949350505050565b6001600160a01b0382166118925760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610717565b6000818152600260205260409020546001600160a01b0316156118f75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610717565b6001600160a01b0382166000908152600360205260408120805460019290611920908490611efb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461198a90611f89565b90600052602060002090601f0160209004810192826119ac57600085556119f2565b82601f106119c557805160ff19168380011785556119f2565b828001600101855582156119f2579182015b828111156119f25782518255916020019190600101906119d7565b506119fe929150611a02565b5090565b5b808211156119fe5760008155600101611a03565b600067ffffffffffffffff831115611a3157611a31612035565b611a44601f8401601f1916602001611eca565b9050828152838383011115611a5857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a8657600080fd5b919050565b600060208284031215611a9d57600080fd5b6110c582611a6f565b60008060408385031215611ab957600080fd5b611ac283611a6f565b9150611ad060208401611a6f565b90509250929050565b600080600060608486031215611aee57600080fd5b611af784611a6f565b9250611b0560208501611a6f565b9150604084013590509250925092565b60008060008060808587031215611b2b57600080fd5b611b3485611a6f565b9350611b4260208601611a6f565b925060408501359150606085013567ffffffffffffffff811115611b6557600080fd5b8501601f81018713611b7657600080fd5b611b8587823560208401611a17565b91505092959194509250565b60008060408385031215611ba457600080fd5b611bad83611a6f565b915060208301358015158114611bc257600080fd5b809150509250929050565b60008060408385031215611be057600080fd5b611be983611a6f565b946020939093013593505050565b60006020808385031215611c0a57600080fd5b823567ffffffffffffffff80821115611c2257600080fd5b818501915085601f830112611c3657600080fd5b813581811115611c4857611c48612035565b8060051b9150611c59848301611eca565b8181528481019084860184860187018a1015611c7457600080fd5b600095505b83861015611c9e57611c8a81611a6f565b835260019590950194918601918601611c79565b5098975050505050505050565b600060208284031215611cbd57600080fd5b81356110c58161204b565b600060208284031215611cda57600080fd5b81516110c58161204b565b600060208284031215611cf757600080fd5b813567ffffffffffffffff811115611d0e57600080fd5b8201601f81018413611d1f57600080fd5b6112c184823560208401611a17565b600060208284031215611d4057600080fd5b5035919050565b60008151808452611d5f816020860160208601611f5d565b601f01601f19169290920160200192915050565b60008351611d85818460208801611f5d565b835190830190611d99818360208801611f5d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dd590830184611d47565b9695505050505050565b6020815260006110c56020830184611d47565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611ef357611ef3612035565b604052919050565b60008219821115611f0e57611f0e611ff3565b500190565b600082611f2257611f22612009565b500490565b6000816000190483118215151615611f4157611f41611ff3565b500290565b600082821015611f5857611f58611ff3565b500390565b60005b83811015611f78578181015183820152602001611f60565b83811115610fa45750506000910152565b600181811c90821680611f9d57607f821691505b60208210811415611fbe57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fd857611fd8611ff3565b5060010190565b600082611fee57611fee612009565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461090257600080fdfea26469706673582212207d6c5a459df3e0ba769378e8a3be3998ddd63856e65b436e8b0203a09456b9a664736f6c63430008070033

Deployed Bytecode Sourcemap

173:3162:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1490:300:4;;;;;;;;;;-1:-1:-1;1490:300:4;;;;;:::i;:::-;;:::i;:::-;;;6599:14:15;;6592:22;6574:41;;6562:2;6547:18;1490:300:4;;;;;;;;2408:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3919:217::-;;;;;;;;;;-1:-1:-1;3919:217:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5897:32:15;;;5879:51;;5867:2;5852:18;3919:217:4;5733:203:15;3457:401:4;;;;;;;;;;-1:-1:-1;3457:401:4;;;;;:::i;:::-;;:::i;:::-;;489:32:14;;;;;;;;;;-1:-1:-1;489:32:14;;;;;;;;;;;626:92;;;;;;;;;;-1:-1:-1;699:11:14;;626:92;;;14866:25:15;;;14854:2;14839:18;626:92:14;14720:177:15;4646:330:4;;;;;;;;;;-1:-1:-1;4646:330:4;;;;;:::i;:::-;;:::i;452:30:14:-;;;;;;;;;;-1:-1:-1;452:30:14;;;;;;;;2510:186;;;;;;;;;;;;;:::i;5042:179:4:-;;;;;;;;;;-1:-1:-1;5042:179:4;;;;;:::i;:::-;;:::i;1203:752:14:-;;;;;;:::i;:::-;;:::i;2289:109::-;;;;;;;;;;-1:-1:-1;2289:109:14;;;;;:::i;:::-;;:::i;2111:235:4:-;;;;;;;;;;-1:-1:-1;2111:235:4;;;;;:::i;:::-;;:::i;1963:110:14:-;;;;;;;;;;-1:-1:-1;1963:110:14;;;;;:::i;:::-;;:::i;1849:205:4:-;;;;;;;;;;-1:-1:-1;1849:205:4;;;;;:::i;:::-;;:::i;1661:101:11:-;;;;;;;;;;;;;:::i;381:26:14:-;;;;;;;;;;;;;;;;2081:93;;;;;;;;;;;;;:::i;2829:328::-;;;;;;;;;;-1:-1:-1;2829:328:14;;;;;:::i;:::-;;:::i;1029:85:11:-;;;;;;;;;;-1:-1:-1;1101:6:11;;-1:-1:-1;;;;;1101:6:11;1029:85;;3165:167:14;;;;;;;;;;-1:-1:-1;3165:167:14;;;;;:::i;:::-;-1:-1:-1;;;;;3297:27:14;3265:7;3297:27;;;:17;:27;;;;;;;3165:167;2406:96;;;;;;;;;;-1:-1:-1;2406:96:14;;;;;:::i;:::-;;:::i;2570:102:4:-;;;;;;;;;;;;;:::i;528:33:14:-;;;;;;;;;;;;;;;;726:469;;;;;;:::i;:::-;;:::i;4203:153:4:-;;;;;;;;;;-1:-1:-1;4203:153:4;;;;;:::i;:::-;;:::i;5287:320::-;;;;;;;;;;-1:-1:-1;5287:320:4;;;;;:::i;:::-;;:::i;2182:99:14:-;;;;;;;;;;;;;:::i;2738:329:4:-;;;;;;;;;;-1:-1:-1;2738:329:4;;;;;:::i;:::-;;:::i;4422:162::-;;;;;;;;;;-1:-1:-1;4422:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;4542:25:4;;;4519:4;4542:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4422:162;1911:198:11;;;;;;;;;;-1:-1:-1;1911:198:11;;;;;:::i;:::-;;:::i;1490:300:4:-;1592:4;-1:-1:-1;;;;;;1627:40:4;;-1:-1:-1;;;1627:40:4;;:104;;-1:-1:-1;;;;;;;1683:48:4;;-1:-1:-1;;;1683:48:4;1627:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:3;;;1747:36:4;1608:175;1490:300;-1:-1:-1;;1490:300:4:o;2408:98::-;2462:13;2494:5;2487:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408:98;:::o;3919:217::-;3995:7;7167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7167:16:4;4014:73;;;;-1:-1:-1;;;4014:73:4;;12074:2:15;4014:73:4;;;12056:21:15;12113:2;12093:18;;;12086:30;12152:34;12132:18;;;12125:62;-1:-1:-1;;;12203:18:15;;;12196:42;12255:19;;4014:73:4;;;;;;;;;-1:-1:-1;4105:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4105:24:4;;3919:217::o;3457:401::-;3537:13;3553:23;3568:7;3553:14;:23::i;:::-;3537:39;;3600:5;-1:-1:-1;;;;;3594:11:4;:2;-1:-1:-1;;;;;3594:11:4;;;3586:57;;;;-1:-1:-1;;;3586:57:4;;14102:2:15;3586:57:4;;;14084:21:15;14141:2;14121:18;;;14114:30;14180:34;14160:18;;;14153:62;-1:-1:-1;;;14231:18:15;;;14224:31;14272:19;;3586:57:4;13900:397:15;3586:57:4;719:10:1;-1:-1:-1;;;;;3675:21:4;;;;:62;;-1:-1:-1;3700:37:4;3717:5;719:10:1;4422:162:4;:::i;3700:37::-;3654:165;;;;-1:-1:-1;;;3654:165:4;;10106:2:15;3654:165:4;;;10088:21:15;10145:2;10125:18;;;10118:30;10184:34;10164:18;;;10157:62;10255:26;10235:18;;;10228:54;10299:19;;3654:165:4;9904:420:15;3654:165:4;3830:21;3839:2;3843:7;3830:8;:21::i;:::-;3527:331;3457:401;;:::o;4646:330::-;4835:41;719:10:1;4868:7:4;4835:18;:41::i;:::-;4827:103;;;;-1:-1:-1;;;4827:103:4;;;;;;;:::i;:::-;4941:28;4951:4;4957:2;4961:7;4941:9;:28::i;2510:186:14:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;2579:82:14::1;::::0;2561:12:::1;::::0;2587:10:::1;::::0;2625:21:::1;::::0;2561:12;2579:82;2561:12;2579:82;2625:21;2587:10;2579:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2560:101;;;2680:7;2672:16;;;::::0;::::1;;2549:147;2510:186::o:0;5042:179:4:-;5175:39;5192:4;5198:2;5202:7;5175:39;;;;;;;;;;;;:16;:39::i;1203:752:14:-;1297:11;1289:5;;:19;;;;:::i;:::-;1276:9;:32;;1268:68;;;;-1:-1:-1;;;1268:68:14;;7471:2:15;1268:68:14;;;7453:21:15;7510:2;7490:18;;;7483:30;-1:-1:-1;;;7529:18:15;;;7522:53;7592:18;;1268:68:14;7269:347:15;1268:68:14;1398:13;;1383:11;1369;;:25;;;;:::i;:::-;:42;;1347:124;;;;-1:-1:-1;;;1347:124:14;;11352:2:15;1347:124:14;;;11334:21:15;;;11371:18;;;11364:30;11430:34;11410:18;;;11403:62;11482:18;;1347:124:14;11150:356:15;1347:124:14;1522:10;1504:29;;;;:17;:29;;;;;;1537:1;-1:-1:-1;1504:34:14;1482:143;;;;-1:-1:-1;;;1482:143:14;;12487:2:15;1482:143:14;;;12469:21:15;12526:2;12506:18;;;12499:30;12565:34;12545:18;;;12538:62;12636:29;12616:18;;;12609:57;12683:19;;1482:143:14;12285:423:15;1482:143:14;1644:12;;;;;;;;:20;;:12;:20;1636:51;;;;-1:-1:-1;;;1636:51:14;;9346:2:15;1636:51:14;;;9328:21:15;9385:2;9365:18;;;9358:30;-1:-1:-1;;;9404:18:15;;;9397:48;9462:18;;1636:51:14;9144:342:15;1636:51:14;1703:9;1698:250;1722:11;1718:1;:15;1698:250;;;1805:10;1787:29;;;;:17;:29;;;;;;:68;;1839:1;1787:33;:68::i;:::-;1773:10;1755:29;;;;:17;:29;;;;;:100;;;;1892:11;;1870:38;;1773:10;1892:15;;1906:1;;1892:15;:::i;:::-;1870:9;:38::i;:::-;1923:11;:13;;;:11;:13;;;:::i;:::-;;;;;;1735:3;;;;;:::i;:::-;;;;1698:250;;;;1203:752;:::o;2289:109::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;2363:27:14;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;2111:235:4:-:0;2183:7;2218:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2218:16:4;2252:19;2244:73;;;;-1:-1:-1;;;2244:73:4;;10942:2:15;2244:73:4;;;10924:21:15;10981:2;10961:18;;;10954:30;11020:34;11000:18;;;10993:62;-1:-1:-1;;;11071:18:15;;;11064:39;11120:19;;2244:73:4;10740:405:15;1963:110:14;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;2036:13:14::1;:29:::0;1963:110::o;1849:205:4:-;1921:7;-1:-1:-1;;;;;1948:19:4;;1940:74;;;;-1:-1:-1;;;1940:74:4;;10531:2:15;1940:74:4;;;10513:21:15;10570:2;10550:18;;;10543:30;10609:34;10589:18;;;10582:62;-1:-1:-1;;;10660:18:15;;;10653:40;10710:19;;1940:74:4;10329:406:15;1940:74:4;-1:-1:-1;;;;;;2031:16:4;;;;;:9;:16;;;;;;;1849:205::o;1661:101:11:-;1101:6;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;2081:93:14:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;2156:10:14::1;::::0;;-1:-1:-1;;2142:24:14;::::1;2156:10;::::0;;::::1;2155:11;2142:24;::::0;;2081:93::o;2829:328::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;2950:9:14::1;2945:205;2969:18;:25;2965:1;:29;2945:205;;;3059:79;3136:1;3059:17;:72;3095:18;3114:1;3095:21;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3059:72:14::1;-1:-1:-1::0;;;;;3059:72:14::1;;;;;;;;;;;;;:76;;:79;;;;:::i;:::-;3016:17;:40;3034:18;3053:1;3034:21;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3016:40:14::1;-1:-1:-1::0;;;;;3016:40:14::1;;;;;;;;;;;;:122;;;;2996:3;;;;;:::i;:::-;;;;2945:205;;2406:96:::0;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;2475:5:14::1;:19:::0;2406:96::o;2570:102:4:-;2626:13;2658:7;2651:14;;;;;:::i;726:469:14:-;816:11;808:5;;:19;;;;:::i;:::-;795:9;:32;;787:68;;;;-1:-1:-1;;;787:68:14;;7471:2:15;787:68:14;;;7453:21:15;7510:2;7490:18;;;7483:30;-1:-1:-1;;;7529:18:15;;;7522:53;7592:18;;787:68:14;7269:347:15;787:68:14;917:13;;902:11;888;;:25;;;;:::i;:::-;:42;;866:124;;;;-1:-1:-1;;;866:124:14;;11352:2:15;866:124:14;;;11334:21:15;;;11371:18;;;11364:30;11430:34;11410:18;;;11403:62;11482:18;;866:124:14;11150:356:15;866:124:14;1009:10;;;;1001:41;;;;-1:-1:-1;;;1001:41:14;;9346:2:15;1001:41:14;;;9328:21:15;9385:2;9365:18;;;9358:30;-1:-1:-1;;;9404:18:15;;;9397:48;9462:18;;1001:41:14;9144:342:15;1001:41:14;1058:9;1053:135;1077:11;1073:1;:15;1053:135;;;1110:38;1120:10;1132:11;;1146:1;1132:15;;;;:::i;1110:38::-;1163:11;:13;;;:11;:13;;;:::i;:::-;;;;;;1090:3;;;;;:::i;:::-;;;;1053:135;;4203:153:4;4297:52;719:10:1;4330:8:4;4340;4297:18;:52::i;5287:320::-;5456:41;719:10:1;5489:7:4;5456:18;:41::i;:::-;5448:103;;;;-1:-1:-1;;;5448:103:4;;;;;;;:::i;:::-;5561:39;5575:4;5581:2;5585:7;5594:5;5561:13;:39::i;:::-;5287:320;;;;:::o;2182:99:14:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;2261:12:14::1;::::0;;-1:-1:-1;;2245:28:14;::::1;2261:12;::::0;;;::::1;;;2260:13;2245:28:::0;;::::1;;::::0;;2182:99::o;2738:329:4:-;7144:4;7167:16;;;:7;:16;;;;;;2811:13;;-1:-1:-1;;;;;7167:16:4;2836:76;;;;-1:-1:-1;;;2836:76:4;;13686:2:15;2836:76:4;;;13668:21:15;13725:2;13705:18;;;13698:30;13764:34;13744:18;;;13737:62;-1:-1:-1;;;13815:18:15;;;13808:45;13870:19;;2836:76:4;13484:411:15;2836:76:4;2923:21;2947:10;:8;:10::i;:::-;2923:34;;2998:1;2980:7;2974:21;:25;:86;;;;;;;;;;;;;;;;;3026:7;3035:18;:7;:16;:18::i;:::-;3009:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2974:86;2967:93;2738:329;-1:-1:-1;;;2738:329:4:o;1911:198:11:-;1101:6;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:11;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:11;;7823:2:15;1991:73:11::1;::::0;::::1;7805:21:15::0;7862:2;7842:18;;;7835:30;7901:34;7881:18;;;7874:62;-1:-1:-1;;;7952:18:15;;;7945:36;7998:19;;1991:73:11::1;7621:402:15::0;1991:73:11::1;2074:28;2093:8;2074:18;:28::i;10930:171:4:-:0;11004:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11004:29:4;-1:-1:-1;;;;;11004:29:4;;;;;;;;:24;;11057:23;11004:24;11057:14;:23::i;:::-;-1:-1:-1;;;;;11048:46:4;;;;;;;;;;;10930:171;;:::o;7362:344::-;7455:4;7167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7167:16:4;7471:73;;;;-1:-1:-1;;;7471:73:4;;9693:2:15;7471:73:4;;;9675:21:15;9732:2;9712:18;;;9705:30;9771:34;9751:18;;;9744:62;-1:-1:-1;;;9822:18:15;;;9815:42;9874:19;;7471:73:4;9491:408:15;7471:73:4;7554:13;7570:23;7585:7;7570:14;:23::i;:::-;7554:39;;7622:5;-1:-1:-1;;;;;7611:16:4;:7;-1:-1:-1;;;;;7611:16:4;;:51;;;;7655:7;-1:-1:-1;;;;;7631:31:4;:20;7643:7;7631:11;:20::i;:::-;-1:-1:-1;;;;;7631:31:4;;7611:51;:87;;;-1:-1:-1;;;;;;4542:25:4;;;4519:4;4542:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7666:32;7603:96;7362:344;-1:-1:-1;;;;7362:344:4:o;10259:560::-;10413:4;-1:-1:-1;;;;;10386:31:4;:23;10401:7;10386:14;:23::i;:::-;-1:-1:-1;;;;;10386:31:4;;10378:85;;;;-1:-1:-1;;;10378:85:4;;13276:2:15;10378:85:4;;;13258:21:15;13315:2;13295:18;;;13288:30;13354:34;13334:18;;;13327:62;-1:-1:-1;;;13405:18:15;;;13398:39;13454:19;;10378:85:4;13074:405:15;10378:85:4;-1:-1:-1;;;;;10481:16:4;;10473:65;;;;-1:-1:-1;;;10473:65:4;;8587:2:15;10473:65:4;;;8569:21:15;8626:2;8606:18;;;8599:30;8665:34;8645:18;;;8638:62;-1:-1:-1;;;8716:18:15;;;8709:34;8760:19;;10473:65:4;8385:400:15;10473:65:4;10650:29;10667:1;10671:7;10650:8;:29::i;:::-;-1:-1:-1;;;;;10690:15:4;;;;;;:9;:15;;;;;:20;;10709:1;;10690:15;:20;;10709:1;;10690:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10720:13:4;;;;;;:9;:13;;;;;:18;;10737:1;;10720:13;:18;;10737:1;;10720:18;:::i;:::-;;;;-1:-1:-1;;10748:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10748:21:4;-1:-1:-1;;;;;10748:21:4;;;;;;;;;10785:27;;10748:16;;10785:27;;;;;;;10259:560;;;:::o;3108:96:12:-;3166:7;3192:5;3196:1;3192;:5;:::i;8036:108:4:-;8111:26;8121:2;8125:7;8111:26;;;;;;;;;;;;:9;:26::i;2263:187:11:-;2355:6;;;-1:-1:-1;;;;;2371:17:11;;;-1:-1:-1;;;;;;2371:17:11;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;2741:96:12:-;2799:7;2825:5;2829:1;2825;:5;:::i;11236:307:4:-;11386:8;-1:-1:-1;;;;;11377:17:4;:5;-1:-1:-1;;;;;11377:17:4;;;11369:55;;;;-1:-1:-1;;;11369:55:4;;8992:2:15;11369:55:4;;;8974:21:15;9031:2;9011:18;;;9004:30;9070:27;9050:18;;;9043:55;9115:18;;11369:55:4;8790:349:15;11369:55:4;-1:-1:-1;;;;;11434:25:4;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11434:46:4;;;;;;;;;;11495:41;;6574::15;;;11495::4;;6547:18:15;11495:41:4;;;;;;;11236:307;;;:::o;6469:::-;6620:28;6630:4;6636:2;6640:7;6620:9;:28::i;:::-;6666:48;6689:4;6695:2;6699:7;6708:5;6666:22;:48::i;:::-;6658:111;;;;-1:-1:-1;;;6658:111:4;;;;;;;:::i;2704:117:14:-;2764:13;2797:16;2790:23;;;;;:::i;328:703:13:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:13;;;;;;;;;;;;-1:-1:-1;;;627:10:13;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:13;;-1:-1:-1;773:2:13;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:13;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:13;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:13;;;;;;;;-1:-1:-1;972:11:13;981:2;972:11;;:::i;:::-;;;844:150;;8365:311:4;8490:18;8496:2;8500:7;8490:5;:18::i;:::-;8539:54;8570:1;8574:2;8578:7;8587:5;8539:22;:54::i;:::-;8518:151;;;;-1:-1:-1;;;8518:151:4;;;;;;;:::i;12096:778::-;12246:4;-1:-1:-1;;;;;12266:13:4;;1066:20:0;1114:8;12262:606:4;;12301:72;;-1:-1:-1;;;12301:72:4;;-1:-1:-1;;;;;12301:36:4;;;;;:72;;719:10:1;;12352:4:4;;12358:7;;12367:5;;12301:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12301:72:4;;;;;;;;-1:-1:-1;;12301:72:4;;;;;;;;;;;;:::i;:::-;;;12297:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12540:13:4;;12536:266;;12582:60;;-1:-1:-1;;;12582:60:4;;;;;;;:::i;12536:266::-;12754:6;12748:13;12739:6;12735:2;12731:15;12724:38;12297:519;-1:-1:-1;;;;;;12423:51:4;-1:-1:-1;;;12423:51:4;;-1:-1:-1;12416:58:4;;12262:606;-1:-1:-1;12853:4:4;12096:778;;;;;;:::o;8998:372::-;-1:-1:-1;;;;;9077:16:4;;9069:61;;;;-1:-1:-1;;;9069:61:4;;11713:2:15;9069:61:4;;;11695:21:15;;;11732:18;;;11725:30;11791:34;11771:18;;;11764:62;11843:18;;9069:61:4;11511:356:15;9069:61:4;7144:4;7167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7167:16:4;:30;9140:58;;;;-1:-1:-1;;;9140:58:4;;8230:2:15;9140:58:4;;;8212:21:15;8269:2;8249:18;;;8242:30;8308;8288:18;;;8281:58;8356:18;;9140:58:4;8028:352:15;9140:58:4;-1:-1:-1;;;;;9265:13:4;;;;;;:9;:13;;;;;:18;;9282:1;;9265:13;:18;;9282:1;;9265:18;:::i;:::-;;;;-1:-1:-1;;9293:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9293:21:4;-1:-1:-1;;;;;9293:21:4;;;;;;;;9330:33;;9293:16;;;9330:33;;9293:16;;9330:33;8998:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:15;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:15;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:15;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:15;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:15:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:15;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:15;2674:963;-1:-1:-1;;;;;;;;2674:963:15:o;3642:245::-;3700:6;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:30;3851:5;3827:30;:::i;3892:249::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4062:9;4056:16;4081:30;4105:5;4081:30;:::i;4146:450::-;4215:6;4268:2;4256:9;4247:7;4243:23;4239:32;4236:52;;;4284:1;4281;4274:12;4236:52;4324:9;4311:23;4357:18;4349:6;4346:30;4343:50;;;4389:1;4386;4379:12;4343:50;4412:22;;4465:4;4457:13;;4453:27;-1:-1:-1;4443:55:15;;4494:1;4491;4484:12;4443:55;4517:73;4582:7;4577:2;4564:16;4559:2;4555;4551:11;4517:73;:::i;4601:180::-;4660:6;4713:2;4701:9;4692:7;4688:23;4684:32;4681:52;;;4729:1;4726;4719:12;4681:52;-1:-1:-1;4752:23:15;;4601:180;-1:-1:-1;4601:180:15:o;4786:257::-;4827:3;4865:5;4859:12;4892:6;4887:3;4880:19;4908:63;4964:6;4957:4;4952:3;4948:14;4941:4;4934:5;4930:16;4908:63;:::i;:::-;5025:2;5004:15;-1:-1:-1;;5000:29:15;4991:39;;;;5032:4;4987:50;;4786:257;-1:-1:-1;;4786:257:15:o;5048:470::-;5227:3;5265:6;5259:13;5281:53;5327:6;5322:3;5315:4;5307:6;5303:17;5281:53;:::i;:::-;5397:13;;5356:16;;;;5419:57;5397:13;5356:16;5453:4;5441:17;;5419:57;:::i;:::-;5492:20;;5048:470;-1:-1:-1;;;;5048:470:15:o;5941:488::-;-1:-1:-1;;;;;6210:15:15;;;6192:34;;6262:15;;6257:2;6242:18;;6235:43;6309:2;6294:18;;6287:34;;;6357:3;6352:2;6337:18;;6330:31;;;6135:4;;6378:45;;6403:19;;6395:6;6378:45;:::i;:::-;6370:53;5941:488;-1:-1:-1;;;;;;5941:488:15:o;6626:219::-;6775:2;6764:9;6757:21;6738:4;6795:44;6835:2;6824:9;6820:18;6812:6;6795:44;:::i;6850:414::-;7052:2;7034:21;;;7091:2;7071:18;;;7064:30;7130:34;7125:2;7110:18;;7103:62;-1:-1:-1;;;7196:2:15;7181:18;;7174:48;7254:3;7239:19;;6850:414::o;12713:356::-;12915:2;12897:21;;;12934:18;;;12927:30;12993:34;12988:2;12973:18;;12966:62;13060:2;13045:18;;12713:356::o;14302:413::-;14504:2;14486:21;;;14543:2;14523:18;;;14516:30;14582:34;14577:2;14562:18;;14555:62;-1:-1:-1;;;14648:2:15;14633:18;;14626:47;14705:3;14690:19;;14302:413::o;14902:275::-;14973:2;14967:9;15038:2;15019:13;;-1:-1:-1;;15015:27:15;15003:40;;15073:18;15058:34;;15094:22;;;15055:62;15052:88;;;15120:18;;:::i;:::-;15156:2;15149:22;14902:275;;-1:-1:-1;14902:275:15:o;15182:128::-;15222:3;15253:1;15249:6;15246:1;15243:13;15240:39;;;15259:18;;:::i;:::-;-1:-1:-1;15295:9:15;;15182:128::o;15315:120::-;15355:1;15381;15371:35;;15386:18;;:::i;:::-;-1:-1:-1;15420:9:15;;15315:120::o;15440:168::-;15480:7;15546:1;15542;15538:6;15534:14;15531:1;15528:21;15523:1;15516:9;15509:17;15505:45;15502:71;;;15553:18;;:::i;:::-;-1:-1:-1;15593:9:15;;15440:168::o;15613:125::-;15653:4;15681:1;15678;15675:8;15672:34;;;15686:18;;:::i;:::-;-1:-1:-1;15723:9:15;;15613:125::o;15743:258::-;15815:1;15825:113;15839:6;15836:1;15833:13;15825:113;;;15915:11;;;15909:18;15896:11;;;15889:39;15861:2;15854:10;15825:113;;;15956:6;15953:1;15950:13;15947:48;;;-1:-1:-1;;15991:1:15;15973:16;;15966:27;15743:258::o;16006:380::-;16085:1;16081:12;;;;16128;;;16149:61;;16203:4;16195:6;16191:17;16181:27;;16149:61;16256:2;16248:6;16245:14;16225:18;16222:38;16219:161;;;16302:10;16297:3;16293:20;16290:1;16283:31;16337:4;16334:1;16327:15;16365:4;16362:1;16355:15;16219:161;;16006:380;;;:::o;16391:135::-;16430:3;-1:-1:-1;;16451:17:15;;16448:43;;;16471:18;;:::i;:::-;-1:-1:-1;16518:1:15;16507:13;;16391:135::o;16531:112::-;16563:1;16589;16579:35;;16594:18;;:::i;:::-;-1:-1:-1;16628:9:15;;16531:112::o;16648:127::-;16709:10;16704:3;16700:20;16697:1;16690:31;16740:4;16737:1;16730:15;16764:4;16761:1;16754:15;16780:127;16841:10;16836:3;16832:20;16829:1;16822:31;16872:4;16869:1;16862:15;16896:4;16893:1;16886:15;16912:127;16973:10;16968:3;16964:20;16961:1;16954:31;17004:4;17001:1;16994:15;17028:4;17025:1;17018:15;17044:127;17105:10;17100:3;17096:20;17093:1;17086:31;17136:4;17133:1;17126:15;17160:4;17157:1;17150:15;17176:131;-1:-1:-1;;;;;;17250:32:15;;17240:43;;17230:71;;17297:1;17294;17287:12

Swarm Source

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