ETH Price: $3,490.27 (+0.06%)
Gas: 2 Gwei

Token

Tigers Crypto Club (TCC)
 

Overview

Max Total Supply

175 TCC

Holders

104

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 TCC
0xdfed0b8f2b80c2a8a7253929190ca3abe2b88c58
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:
TigersCryptoClub

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : TigersCryptoClub.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract TigersCryptoClub is ERC721, Pausable, Ownable {
    using Address for address payable;
    using Strings for uint256;

    enum SalePhase {
        paused,
        open
    }

    // 0.19 ETH for the whitelist
    uint256 public constant WHITELIST_PRICE = 190000000000000000;
    // Max supply of 5555 tokens
    uint256 public constant MAX_SUPPLY = 5555;

    address private constant DEV_TEAM =
        0xB2952D78f6bE9170Ca9116AC1994F18016603c29;
    address private constant S_ADDRESS =
        0xfb6af20D25C173fF8Bf5117b8b0e377320c69884;
    address private constant FUNDS_RECIPIENT =
        0x78732fCC62D3A6dA09F00b28A8073Dc81613c5cF;

    // How many tokens have been minted
    uint256 public totalSupply;
    // 0.19 ETH but can be altered
    uint256 public regularPrice = 190000000000000000;

    // The baseURI where the metadata files are located
    string public baseURI;

    // Default to 0, so to paused
    SalePhase public currentPhase;

    // Address => how many NFTs this address has minted
    // Unlike the balance this quantity will not change after
    // a token transfer which is the desired behavior
    mapping(address => uint256) private mintCount;

    constructor() ERC721("Tigers Crypto Club", "TCC") {}

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    /**
     * @dev Mint tokens for a given address
     * @param to Address that will receive the tokens
     * @param count number of tokens to mint
     */
    function mintTo(address to, uint256 count) external payable {
        // Check that the mint is open
        require(currentPhase == SalePhase.open, "Mint not open");
        // An address can mint only up to 3 NFTs during public sale
        require(mintCount[to] + count <= 3, "Only up to 3 NFTs per address");
        // Check that there's still supply left
        require(totalSupply + count <= MAX_SUPPLY, "Not enough supply left");
        // Check that the ETH provided is enough
        require(msg.value == regularPrice * count, "Invalid value");
        // Proceed to mint the tokens
        _mintTo(to, count);
    }

    function airdrop(address[] memory addrs, uint256[] memory counts)
        external
        onlyOwner
    {
        require(addrs.length == counts.length, "Arrays mismatch");
        for (uint256 i = 0; i < addrs.length; i++) {
            _mintTo(addrs[i], counts[i]);
        }
    }

    function _mintTo(address to, uint256 count) private {
        // Mint all the tokens requested
        for (uint256 i = 1; i <= count; i++) {
            _safeMint(to, totalSupply + i);
        }
        // Update the total supply accordingly
        totalSupply += count;
        // We update the mint count for that address
        mintCount[to] += count;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Set the current phase of the sale
     * @param _phase The phase to switch to.
     * Either 0 (= paused), 1 (= presale) or 2 (= open)
     */
    function setPhase(SalePhase _phase) external onlyOwner {
        currentPhase = _phase;
    }

    /**
     * @dev Set the baseURI used to store the metadata
     * @param _uri The new URI for the baseURI
     */
    function setBaseURI(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

    /**
     * @dev Set the price for the regular mint
     * @param _price Price at which the mint should be set
     */
    function setPrice(uint256 _price) external onlyOwner {
        regularPrice = _price;
    }

    /**
     * @dev Withdraw the funds held by this contract to the address specified
     */
    function withdrawFunds() external onlyOwner {
        // Takes some fees for the people who worked on this smart contract
        uint256 fees = (address(this).balance * 4) / 100;
        // 2 thirds of the fees
        payable(DEV_TEAM).sendValue((fees * 2) / 3);
        // 1 third of the fees
        payable(S_ADDRESS).sendValue(fees / 3);
        // Sends the rest of the balance to the address specified
        payable(FUNDS_RECIPIENT).sendValue(address(this).balance);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        // Concatenate the baseURI and the tokenId as the tokenId should
        // just be appended at the end to access the token metadata
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 12 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 6 of 12 : 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);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 12 : 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 9 of 12 : 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 10 of 12 : 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 11 of 12 : 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 12 of 12 : 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256[]","name":"counts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPhase","outputs":[{"internalType":"enum TigersCryptoClub.SalePhase","name":"","type":"uint8"}],"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"regularPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TigersCryptoClub.SalePhase","name":"_phase","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526702a303fe4b5300006008553480156200001d57600080fd5b506040518060400160405280601281526020017f5469676572732043727970746f20436c756200000000000000000000000000008152506040518060400160405280600381526020017f54434300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000a2929190620001cd565b508060019080519060200190620000bb929190620001cd565b5050506000600660006101000a81548160ff021916908315150217905550620000f9620000ed620000ff60201b60201c565b6200010760201b60201c565b620002e2565b600033905090565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001db906200027d565b90600052602060002090601f016020900481019282620001ff57600085556200024b565b82601f106200021a57805160ff19168380011785556200024b565b828001600101855582156200024b579182015b828111156200024a5782518255916020019190600101906200022d565b5b5090506200025a91906200025e565b5090565b5b80821115620002795760008160009055506001016200025f565b5090565b600060028204905060018216806200029657607f821691505b60208210811415620002ad57620002ac620002b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61442480620002f26000396000f3fe6080604052600436106101d85760003560e01c80636352211e1161010257806391b7f5ed11610095578063c03afb5911610064578063c03afb591461063f578063c87b56dd14610668578063e985e9c5146106a5578063f2fde38b146106e2576101d8565b806391b7f5ed1461059957806395d89b41146105c2578063a22cb465146105ed578063b88d4fde14610616576101d8565b806370a08231116100d157806370a0823114610503578063715018a6146105405780638456cb59146105575780638da5cb5b1461056e576101d8565b80636352211e14610447578063672434821461048457806368cccfb5146104ad5780636c0360eb146104d8576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103ae578063449a52f8146103d757806355f804b3146103f35780635c975abb1461041c576101d8565b806323b872dd1461032c57806324600fc31461035557806332cb6b0c1461036c5780633f4ba83a14610397576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806317e7f295146102d657806318160ddd14610301576101d8565b806301ffc9a7146101dd578063055ad42e1461021a57806306fdde0314610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612e16565b61070b565b60405161021191906134b5565b60405180910390f35b34801561022657600080fd5b5061022f6107ed565b60405161023c91906134d0565b60405180910390f35b34801561025157600080fd5b5061025a610800565b60405161026791906134eb565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190612ed2565b610892565b6040516102a4919061344e565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612d6e565b610917565b005b3480156102e257600080fd5b506102eb610a2f565b6040516102f8919061382d565b60405180910390f35b34801561030d57600080fd5b50610316610a3b565b604051610323919061382d565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612c68565b610a41565b005b34801561036157600080fd5b5061036a610aa1565b005b34801561037857600080fd5b50610381610c18565b60405161038e919061382d565b60405180910390f35b3480156103a357600080fd5b506103ac610c1e565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190612c68565b610ca4565b005b6103f160048036038101906103ec9190612d6e565b610cc4565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612e91565b610ec2565b005b34801561042857600080fd5b50610431610f58565b60405161043e91906134b5565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190612ed2565b610f6f565b60405161047b919061344e565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a69190612daa565b611021565b005b3480156104b957600080fd5b506104c261118f565b6040516104cf919061382d565b60405180910390f35b3480156104e457600080fd5b506104ed611195565b6040516104fa91906134eb565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190612c03565b611223565b604051610537919061382d565b60405180910390f35b34801561054c57600080fd5b506105556112db565b005b34801561056357600080fd5b5061056c611363565b005b34801561057a57600080fd5b506105836113e9565b604051610590919061344e565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612ed2565b611413565b005b3480156105ce57600080fd5b506105d7611499565b6040516105e491906134eb565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190612d32565b61152b565b005b34801561062257600080fd5b5061063d60048036038101906106389190612cb7565b611541565b005b34801561064b57600080fd5b5061066660048036038101906106619190612e68565b6115a3565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612ed2565b611672565b60405161069c91906134eb565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c79190612c2c565b6116ee565b6040516106d991906134b5565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190612c03565b611782565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e657506107e58261187a565b5b9050919050565b600a60009054906101000a900460ff1681565b60606000805461080f90613b7a565b80601f016020809104026020016040519081016040528092919081815260200182805461083b90613b7a565b80156108885780601f1061085d57610100808354040283529160200191610888565b820191906000526020600020905b81548152906001019060200180831161086b57829003601f168201915b5050505050905090565b600061089d826118e4565b6108dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d39061372d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092282610f6f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a906137cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b2611950565b73ffffffffffffffffffffffffffffffffffffffff1614806109e157506109e0816109db611950565b6116ee565b5b610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a179061368d565b60405180910390fd5b610a2a8383611958565b505050565b6702a303fe4b53000081565b60075481565b610a52610a4c611950565b82611a11565b610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a889061380d565b60405180910390fd5b610a9c838383611aef565b505050565b610aa9611950565b73ffffffffffffffffffffffffffffffffffffffff16610ac76113e9565b73ffffffffffffffffffffffffffffffffffffffff1614610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b149061374d565b60405180910390fd5b60006064600447610b2e9190613a11565b610b3891906139e0565b9050610b8f6003600283610b4c9190613a11565b610b5691906139e0565b73b2952d78f6be9170ca9116ac1994f18016603c2973ffffffffffffffffffffffffffffffffffffffff16611d5690919063ffffffff16565b610bd8600382610b9f91906139e0565b73fb6af20d25c173ff8bf5117b8b0e377320c6988473ffffffffffffffffffffffffffffffffffffffff16611d5690919063ffffffff16565b610c15477378732fcc62d3a6da09f00b28a8073dc81613c5cf73ffffffffffffffffffffffffffffffffffffffff16611d5690919063ffffffff16565b50565b6115b381565b610c26611950565b73ffffffffffffffffffffffffffffffffffffffff16610c446113e9565b73ffffffffffffffffffffffffffffffffffffffff1614610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c919061374d565b60405180910390fd5b610ca2611e4a565b565b610cbf83838360405180602001604052806000815250611541565b505050565b600180811115610cfd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166001811115610d45577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c906137ed565b60405180910390fd5b600381600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dd2919061398a565b1115610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a906136ad565b60405180910390fd5b6115b381600754610e24919061398a565b1115610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c906135ad565b60405180910390fd5b80600854610e739190613a11565b3414610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab9061376d565b60405180910390fd5b610ebe8282611eec565b5050565b610eca611950565b73ffffffffffffffffffffffffffffffffffffffff16610ee86113e9565b73ffffffffffffffffffffffffffffffffffffffff1614610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f359061374d565b60405180910390fd5b8060099080519060200190610f549291906128e6565b5050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f906136ed565b60405180910390fd5b80915050919050565b611029611950565b73ffffffffffffffffffffffffffffffffffffffff166110476113e9565b73ffffffffffffffffffffffffffffffffffffffff161461109d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110949061374d565b60405180910390fd5b80518251146110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d8906137ad565b60405180910390fd5b60005b825181101561118a57611177838281518110611129577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183838151811061116a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611eec565b808061118290613bdd565b9150506110e4565b505050565b60085481565b600980546111a290613b7a565b80601f01602080910402602001604051908101604052809291908181526020018280546111ce90613b7a565b801561121b5780601f106111f05761010080835404028352916020019161121b565b820191906000526020600020905b8154815290600101906020018083116111fe57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b906136cd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112e3611950565b73ffffffffffffffffffffffffffffffffffffffff166113016113e9565b73ffffffffffffffffffffffffffffffffffffffff1614611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e9061374d565b60405180910390fd5b6113616000611f98565b565b61136b611950565b73ffffffffffffffffffffffffffffffffffffffff166113896113e9565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d69061374d565b60405180910390fd5b6113e761205e565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61141b611950565b73ffffffffffffffffffffffffffffffffffffffff166114396113e9565b73ffffffffffffffffffffffffffffffffffffffff161461148f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114869061374d565b60405180910390fd5b8060088190555050565b6060600180546114a890613b7a565b80601f01602080910402602001604051908101604052809291908181526020018280546114d490613b7a565b80156115215780601f106114f657610100808354040283529160200191611521565b820191906000526020600020905b81548152906001019060200180831161150457829003601f168201915b5050505050905090565b61153d611536611950565b8383612101565b5050565b61155261154c611950565b83611a11565b611591576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115889061380d565b60405180910390fd5b61159d8484848461226e565b50505050565b6115ab611950565b73ffffffffffffffffffffffffffffffffffffffff166115c96113e9565b73ffffffffffffffffffffffffffffffffffffffff161461161f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116169061374d565b60405180910390fd5b80600a60006101000a81548160ff0219169083600181111561166a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b606061167d826118e4565b6116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b39061378d565b60405180910390fd5b60096116c7836122ca565b6040516020016116d892919061340a565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61178a611950565b73ffffffffffffffffffffffffffffffffffffffff166117a86113e9565b73ffffffffffffffffffffffffffffffffffffffff16146117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f59061374d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561186e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118659061354d565b60405180910390fd5b61187781611f98565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119cb83610f6f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a1c826118e4565b611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a529061364d565b60405180910390fd5b6000611a6683610f6f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ad557508373ffffffffffffffffffffffffffffffffffffffff16611abd84610892565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ae65750611ae581856116ee565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b0f82610f6f565b73ffffffffffffffffffffffffffffffffffffffff1614611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c9061356d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc906135cd565b60405180910390fd5b611be0838383612477565b611beb600082611958565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c3b9190613a6b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c92919061398a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d518383836124cf565b505050565b80471015611d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d909061362d565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611dbf90613439565b60006040518083038185875af1925050503d8060008114611dfc576040519150601f19603f3d011682016040523d82523d6000602084013e611e01565b606091505b5050905080611e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3c9061360d565b60405180910390fd5b505050565b611e52610f58565b611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e889061350d565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ed5611950565b604051611ee2919061344e565b60405180910390a1565b6000600190505b818111611f2457611f118382600754611f0c919061398a565b6124d4565b8080611f1c90613bdd565b915050611ef3565b508060076000828254611f37919061398a565b9250508190555080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8d919061398a565b925050819055505050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612066610f58565b156120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d9061366d565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120ea611950565b6040516120f7919061344e565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612170576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612167906135ed565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161226191906134b5565b60405180910390a3505050565b612279848484611aef565b612285848484846124f2565b6122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb9061352d565b60405180910390fd5b50505050565b60606000821415612312576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612472565b600082905060005b6000821461234457808061232d90613bdd565b915050600a8261233d91906139e0565b915061231a565b60008167ffffffffffffffff811115612386577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123b85781602001600182028036833780820191505090505b5090505b6000851461246b576001826123d19190613a6b565b9150600a856123e09190613c26565b60306123ec919061398a565b60f81b818381518110612428577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561246491906139e0565b94506123bc565b8093505050505b919050565b61247f610f58565b156124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b69061366d565b60405180910390fd5b6124ca838383612689565b505050565b505050565b6124ee82826040518060200160405280600081525061268e565b5050565b60006125138473ffffffffffffffffffffffffffffffffffffffff166126e9565b1561267c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253c611950565b8786866040518563ffffffff1660e01b815260040161255e9493929190613469565b602060405180830381600087803b15801561257857600080fd5b505af19250505080156125a957506040513d601f19601f820116820180604052508101906125a69190612e3f565b60015b61262c573d80600081146125d9576040519150601f19603f3d011682016040523d82523d6000602084013e6125de565b606091505b50600081511415612624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261b9061352d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612681565b600190505b949350505050565b505050565b612698838361270c565b6126a560008484846124f2565b6126e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126db9061352d565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127739061370d565b60405180910390fd5b612785816118e4565b156127c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bc9061358d565b60405180910390fd5b6127d160008383612477565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612821919061398a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128e2600083836124cf565b5050565b8280546128f290613b7a565b90600052602060002090601f016020900481019282612914576000855561295b565b82601f1061292d57805160ff191683800117855561295b565b8280016001018555821561295b579182015b8281111561295a57825182559160200191906001019061293f565b5b509050612968919061296c565b5090565b5b8082111561298557600081600090555060010161296d565b5090565b600061299c6129978461386d565b613848565b905080838252602082019050828560208602820111156129bb57600080fd5b60005b858110156129eb57816129d18882612add565b8452602084019350602083019250506001810190506129be565b5050509392505050565b6000612a08612a0384613899565b613848565b90508083825260208201905082856020860282011115612a2757600080fd5b60005b85811015612a575781612a3d8882612bee565b845260208401935060208301925050600181019050612a2a565b5050509392505050565b6000612a74612a6f846138c5565b613848565b905082815260208101848484011115612a8c57600080fd5b612a97848285613b38565b509392505050565b6000612ab2612aad846138f6565b613848565b905082815260208101848484011115612aca57600080fd5b612ad5848285613b38565b509392505050565b600081359050612aec81614382565b92915050565b600082601f830112612b0357600080fd5b8135612b13848260208601612989565b91505092915050565b600082601f830112612b2d57600080fd5b8135612b3d8482602086016129f5565b91505092915050565b600081359050612b5581614399565b92915050565b600081359050612b6a816143b0565b92915050565b600081519050612b7f816143b0565b92915050565b600082601f830112612b9657600080fd5b8135612ba6848260208601612a61565b91505092915050565b600081359050612bbe816143c7565b92915050565b600082601f830112612bd557600080fd5b8135612be5848260208601612a9f565b91505092915050565b600081359050612bfd816143d7565b92915050565b600060208284031215612c1557600080fd5b6000612c2384828501612add565b91505092915050565b60008060408385031215612c3f57600080fd5b6000612c4d85828601612add565b9250506020612c5e85828601612add565b9150509250929050565b600080600060608486031215612c7d57600080fd5b6000612c8b86828701612add565b9350506020612c9c86828701612add565b9250506040612cad86828701612bee565b9150509250925092565b60008060008060808587031215612ccd57600080fd5b6000612cdb87828801612add565b9450506020612cec87828801612add565b9350506040612cfd87828801612bee565b925050606085013567ffffffffffffffff811115612d1a57600080fd5b612d2687828801612b85565b91505092959194509250565b60008060408385031215612d4557600080fd5b6000612d5385828601612add565b9250506020612d6485828601612b46565b9150509250929050565b60008060408385031215612d8157600080fd5b6000612d8f85828601612add565b9250506020612da085828601612bee565b9150509250929050565b60008060408385031215612dbd57600080fd5b600083013567ffffffffffffffff811115612dd757600080fd5b612de385828601612af2565b925050602083013567ffffffffffffffff811115612e0057600080fd5b612e0c85828601612b1c565b9150509250929050565b600060208284031215612e2857600080fd5b6000612e3684828501612b5b565b91505092915050565b600060208284031215612e5157600080fd5b6000612e5f84828501612b70565b91505092915050565b600060208284031215612e7a57600080fd5b6000612e8884828501612baf565b91505092915050565b600060208284031215612ea357600080fd5b600082013567ffffffffffffffff811115612ebd57600080fd5b612ec984828501612bc4565b91505092915050565b600060208284031215612ee457600080fd5b6000612ef284828501612bee565b91505092915050565b612f0481613a9f565b82525050565b612f1381613ab1565b82525050565b6000612f248261393c565b612f2e8185613952565b9350612f3e818560208601613b47565b612f4781613d42565b840191505092915050565b612f5b81613b26565b82525050565b6000612f6c82613947565b612f76818561396e565b9350612f86818560208601613b47565b612f8f81613d42565b840191505092915050565b6000612fa582613947565b612faf818561397f565b9350612fbf818560208601613b47565b80840191505092915050565b60008154612fd881613b7a565b612fe2818661397f565b94506001821660008114612ffd576001811461300e57613041565b60ff19831686528186019350613041565b61301785613927565b60005b838110156130395781548189015260018201915060208101905061301a565b838801955050505b50505092915050565b600061305760148361396e565b915061306282613d53565b602082019050919050565b600061307a60328361396e565b915061308582613d7c565b604082019050919050565b600061309d60268361396e565b91506130a882613dcb565b604082019050919050565b60006130c060258361396e565b91506130cb82613e1a565b604082019050919050565b60006130e3601c8361396e565b91506130ee82613e69565b602082019050919050565b600061310660168361396e565b915061311182613e92565b602082019050919050565b600061312960248361396e565b915061313482613ebb565b604082019050919050565b600061314c60198361396e565b915061315782613f0a565b602082019050919050565b600061316f603a8361396e565b915061317a82613f33565b604082019050919050565b6000613192601d8361396e565b915061319d82613f82565b602082019050919050565b60006131b5602c8361396e565b91506131c082613fab565b604082019050919050565b60006131d860108361396e565b91506131e382613ffa565b602082019050919050565b60006131fb60388361396e565b915061320682614023565b604082019050919050565b600061321e601d8361396e565b915061322982614072565b602082019050919050565b6000613241602a8361396e565b915061324c8261409b565b604082019050919050565b600061326460298361396e565b915061326f826140ea565b604082019050919050565b600061328760208361396e565b915061329282614139565b602082019050919050565b60006132aa602c8361396e565b91506132b582614162565b604082019050919050565b60006132cd60058361397f565b91506132d8826141b1565b600582019050919050565b60006132f060208361396e565b91506132fb826141da565b602082019050919050565b6000613313600d8361396e565b915061331e82614203565b602082019050919050565b6000613336602f8361396e565b91506133418261422c565b604082019050919050565b6000613359600f8361396e565b91506133648261427b565b602082019050919050565b600061337c60218361396e565b9150613387826142a4565b604082019050919050565b600061339f600d8361396e565b91506133aa826142f3565b602082019050919050565b60006133c2600083613963565b91506133cd8261431c565b600082019050919050565b60006133e560318361396e565b91506133f08261431f565b604082019050919050565b61340481613b1c565b82525050565b60006134168285612fcb565b91506134228284612f9a565b915061342d826132c0565b91508190509392505050565b6000613444826133b5565b9150819050919050565b60006020820190506134636000830184612efb565b92915050565b600060808201905061347e6000830187612efb565b61348b6020830186612efb565b61349860408301856133fb565b81810360608301526134aa8184612f19565b905095945050505050565b60006020820190506134ca6000830184612f0a565b92915050565b60006020820190506134e56000830184612f52565b92915050565b600060208201905081810360008301526135058184612f61565b905092915050565b600060208201905081810360008301526135268161304a565b9050919050565b600060208201905081810360008301526135468161306d565b9050919050565b6000602082019050818103600083015261356681613090565b9050919050565b60006020820190508181036000830152613586816130b3565b9050919050565b600060208201905081810360008301526135a6816130d6565b9050919050565b600060208201905081810360008301526135c6816130f9565b9050919050565b600060208201905081810360008301526135e68161311c565b9050919050565b600060208201905081810360008301526136068161313f565b9050919050565b6000602082019050818103600083015261362681613162565b9050919050565b6000602082019050818103600083015261364681613185565b9050919050565b60006020820190508181036000830152613666816131a8565b9050919050565b60006020820190508181036000830152613686816131cb565b9050919050565b600060208201905081810360008301526136a6816131ee565b9050919050565b600060208201905081810360008301526136c681613211565b9050919050565b600060208201905081810360008301526136e681613234565b9050919050565b6000602082019050818103600083015261370681613257565b9050919050565b600060208201905081810360008301526137268161327a565b9050919050565b600060208201905081810360008301526137468161329d565b9050919050565b60006020820190508181036000830152613766816132e3565b9050919050565b6000602082019050818103600083015261378681613306565b9050919050565b600060208201905081810360008301526137a681613329565b9050919050565b600060208201905081810360008301526137c68161334c565b9050919050565b600060208201905081810360008301526137e68161336f565b9050919050565b6000602082019050818103600083015261380681613392565b9050919050565b60006020820190508181036000830152613826816133d8565b9050919050565b600060208201905061384260008301846133fb565b92915050565b6000613852613863565b905061385e8282613bac565b919050565b6000604051905090565b600067ffffffffffffffff82111561388857613887613d13565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156138b4576138b3613d13565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156138e0576138df613d13565b5b6138e982613d42565b9050602081019050919050565b600067ffffffffffffffff82111561391157613910613d13565b5b61391a82613d42565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061399582613b1c565b91506139a083613b1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139d5576139d4613c57565b5b828201905092915050565b60006139eb82613b1c565b91506139f683613b1c565b925082613a0657613a05613c86565b5b828204905092915050565b6000613a1c82613b1c565b9150613a2783613b1c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a6057613a5f613c57565b5b828202905092915050565b6000613a7682613b1c565b9150613a8183613b1c565b925082821015613a9457613a93613c57565b5b828203905092915050565b6000613aaa82613afc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613af78261436e565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613b3182613ae9565b9050919050565b82818337600083830152505050565b60005b83811015613b65578082015181840152602081019050613b4a565b83811115613b74576000848401525b50505050565b60006002820490506001821680613b9257607f821691505b60208210811415613ba657613ba5613ce4565b5b50919050565b613bb582613d42565b810181811067ffffffffffffffff82111715613bd457613bd3613d13565b5b80604052505050565b6000613be882613b1c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1b57613c1a613c57565b5b600182019050919050565b6000613c3182613b1c565b9150613c3c83613b1c565b925082613c4c57613c4b613c86565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820737570706c79206c65667400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4f6e6c7920757020746f2033204e465473207065722061646472657373000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642076616c756500000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f417272617973206d69736d617463680000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206e6f74206f70656e00000000000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6002811061437f5761437e613cb5565b5b50565b61438b81613a9f565b811461439657600080fd5b50565b6143a281613ab1565b81146143ad57600080fd5b50565b6143b981613abd565b81146143c457600080fd5b50565b600281106143d457600080fd5b50565b6143e081613b1c565b81146143eb57600080fd5b5056fea2646970667358221220c6fab5a2f028e583d199dead2bd26ce93faed85118fcde55406746ac1fbe141364736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e1161010257806391b7f5ed11610095578063c03afb5911610064578063c03afb591461063f578063c87b56dd14610668578063e985e9c5146106a5578063f2fde38b146106e2576101d8565b806391b7f5ed1461059957806395d89b41146105c2578063a22cb465146105ed578063b88d4fde14610616576101d8565b806370a08231116100d157806370a0823114610503578063715018a6146105405780638456cb59146105575780638da5cb5b1461056e576101d8565b80636352211e14610447578063672434821461048457806368cccfb5146104ad5780636c0360eb146104d8576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103ae578063449a52f8146103d757806355f804b3146103f35780635c975abb1461041c576101d8565b806323b872dd1461032c57806324600fc31461035557806332cb6b0c1461036c5780633f4ba83a14610397576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806317e7f295146102d657806318160ddd14610301576101d8565b806301ffc9a7146101dd578063055ad42e1461021a57806306fdde0314610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612e16565b61070b565b60405161021191906134b5565b60405180910390f35b34801561022657600080fd5b5061022f6107ed565b60405161023c91906134d0565b60405180910390f35b34801561025157600080fd5b5061025a610800565b60405161026791906134eb565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190612ed2565b610892565b6040516102a4919061344e565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612d6e565b610917565b005b3480156102e257600080fd5b506102eb610a2f565b6040516102f8919061382d565b60405180910390f35b34801561030d57600080fd5b50610316610a3b565b604051610323919061382d565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612c68565b610a41565b005b34801561036157600080fd5b5061036a610aa1565b005b34801561037857600080fd5b50610381610c18565b60405161038e919061382d565b60405180910390f35b3480156103a357600080fd5b506103ac610c1e565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190612c68565b610ca4565b005b6103f160048036038101906103ec9190612d6e565b610cc4565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612e91565b610ec2565b005b34801561042857600080fd5b50610431610f58565b60405161043e91906134b5565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190612ed2565b610f6f565b60405161047b919061344e565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a69190612daa565b611021565b005b3480156104b957600080fd5b506104c261118f565b6040516104cf919061382d565b60405180910390f35b3480156104e457600080fd5b506104ed611195565b6040516104fa91906134eb565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190612c03565b611223565b604051610537919061382d565b60405180910390f35b34801561054c57600080fd5b506105556112db565b005b34801561056357600080fd5b5061056c611363565b005b34801561057a57600080fd5b506105836113e9565b604051610590919061344e565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612ed2565b611413565b005b3480156105ce57600080fd5b506105d7611499565b6040516105e491906134eb565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190612d32565b61152b565b005b34801561062257600080fd5b5061063d60048036038101906106389190612cb7565b611541565b005b34801561064b57600080fd5b5061066660048036038101906106619190612e68565b6115a3565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612ed2565b611672565b60405161069c91906134eb565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c79190612c2c565b6116ee565b6040516106d991906134b5565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190612c03565b611782565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e657506107e58261187a565b5b9050919050565b600a60009054906101000a900460ff1681565b60606000805461080f90613b7a565b80601f016020809104026020016040519081016040528092919081815260200182805461083b90613b7a565b80156108885780601f1061085d57610100808354040283529160200191610888565b820191906000526020600020905b81548152906001019060200180831161086b57829003601f168201915b5050505050905090565b600061089d826118e4565b6108dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d39061372d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092282610f6f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a906137cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b2611950565b73ffffffffffffffffffffffffffffffffffffffff1614806109e157506109e0816109db611950565b6116ee565b5b610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a179061368d565b60405180910390fd5b610a2a8383611958565b505050565b6702a303fe4b53000081565b60075481565b610a52610a4c611950565b82611a11565b610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a889061380d565b60405180910390fd5b610a9c838383611aef565b505050565b610aa9611950565b73ffffffffffffffffffffffffffffffffffffffff16610ac76113e9565b73ffffffffffffffffffffffffffffffffffffffff1614610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b149061374d565b60405180910390fd5b60006064600447610b2e9190613a11565b610b3891906139e0565b9050610b8f6003600283610b4c9190613a11565b610b5691906139e0565b73b2952d78f6be9170ca9116ac1994f18016603c2973ffffffffffffffffffffffffffffffffffffffff16611d5690919063ffffffff16565b610bd8600382610b9f91906139e0565b73fb6af20d25c173ff8bf5117b8b0e377320c6988473ffffffffffffffffffffffffffffffffffffffff16611d5690919063ffffffff16565b610c15477378732fcc62d3a6da09f00b28a8073dc81613c5cf73ffffffffffffffffffffffffffffffffffffffff16611d5690919063ffffffff16565b50565b6115b381565b610c26611950565b73ffffffffffffffffffffffffffffffffffffffff16610c446113e9565b73ffffffffffffffffffffffffffffffffffffffff1614610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c919061374d565b60405180910390fd5b610ca2611e4a565b565b610cbf83838360405180602001604052806000815250611541565b505050565b600180811115610cfd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166001811115610d45577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c906137ed565b60405180910390fd5b600381600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dd2919061398a565b1115610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a906136ad565b60405180910390fd5b6115b381600754610e24919061398a565b1115610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c906135ad565b60405180910390fd5b80600854610e739190613a11565b3414610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab9061376d565b60405180910390fd5b610ebe8282611eec565b5050565b610eca611950565b73ffffffffffffffffffffffffffffffffffffffff16610ee86113e9565b73ffffffffffffffffffffffffffffffffffffffff1614610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f359061374d565b60405180910390fd5b8060099080519060200190610f549291906128e6565b5050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f906136ed565b60405180910390fd5b80915050919050565b611029611950565b73ffffffffffffffffffffffffffffffffffffffff166110476113e9565b73ffffffffffffffffffffffffffffffffffffffff161461109d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110949061374d565b60405180910390fd5b80518251146110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d8906137ad565b60405180910390fd5b60005b825181101561118a57611177838281518110611129577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183838151811061116a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611eec565b808061118290613bdd565b9150506110e4565b505050565b60085481565b600980546111a290613b7a565b80601f01602080910402602001604051908101604052809291908181526020018280546111ce90613b7a565b801561121b5780601f106111f05761010080835404028352916020019161121b565b820191906000526020600020905b8154815290600101906020018083116111fe57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b906136cd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112e3611950565b73ffffffffffffffffffffffffffffffffffffffff166113016113e9565b73ffffffffffffffffffffffffffffffffffffffff1614611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e9061374d565b60405180910390fd5b6113616000611f98565b565b61136b611950565b73ffffffffffffffffffffffffffffffffffffffff166113896113e9565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d69061374d565b60405180910390fd5b6113e761205e565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61141b611950565b73ffffffffffffffffffffffffffffffffffffffff166114396113e9565b73ffffffffffffffffffffffffffffffffffffffff161461148f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114869061374d565b60405180910390fd5b8060088190555050565b6060600180546114a890613b7a565b80601f01602080910402602001604051908101604052809291908181526020018280546114d490613b7a565b80156115215780601f106114f657610100808354040283529160200191611521565b820191906000526020600020905b81548152906001019060200180831161150457829003601f168201915b5050505050905090565b61153d611536611950565b8383612101565b5050565b61155261154c611950565b83611a11565b611591576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115889061380d565b60405180910390fd5b61159d8484848461226e565b50505050565b6115ab611950565b73ffffffffffffffffffffffffffffffffffffffff166115c96113e9565b73ffffffffffffffffffffffffffffffffffffffff161461161f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116169061374d565b60405180910390fd5b80600a60006101000a81548160ff0219169083600181111561166a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b606061167d826118e4565b6116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b39061378d565b60405180910390fd5b60096116c7836122ca565b6040516020016116d892919061340a565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61178a611950565b73ffffffffffffffffffffffffffffffffffffffff166117a86113e9565b73ffffffffffffffffffffffffffffffffffffffff16146117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f59061374d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561186e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118659061354d565b60405180910390fd5b61187781611f98565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119cb83610f6f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a1c826118e4565b611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a529061364d565b60405180910390fd5b6000611a6683610f6f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ad557508373ffffffffffffffffffffffffffffffffffffffff16611abd84610892565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ae65750611ae581856116ee565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b0f82610f6f565b73ffffffffffffffffffffffffffffffffffffffff1614611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c9061356d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc906135cd565b60405180910390fd5b611be0838383612477565b611beb600082611958565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c3b9190613a6b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c92919061398a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d518383836124cf565b505050565b80471015611d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d909061362d565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611dbf90613439565b60006040518083038185875af1925050503d8060008114611dfc576040519150601f19603f3d011682016040523d82523d6000602084013e611e01565b606091505b5050905080611e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3c9061360d565b60405180910390fd5b505050565b611e52610f58565b611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e889061350d565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ed5611950565b604051611ee2919061344e565b60405180910390a1565b6000600190505b818111611f2457611f118382600754611f0c919061398a565b6124d4565b8080611f1c90613bdd565b915050611ef3565b508060076000828254611f37919061398a565b9250508190555080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8d919061398a565b925050819055505050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612066610f58565b156120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d9061366d565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120ea611950565b6040516120f7919061344e565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612170576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612167906135ed565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161226191906134b5565b60405180910390a3505050565b612279848484611aef565b612285848484846124f2565b6122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb9061352d565b60405180910390fd5b50505050565b60606000821415612312576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612472565b600082905060005b6000821461234457808061232d90613bdd565b915050600a8261233d91906139e0565b915061231a565b60008167ffffffffffffffff811115612386577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123b85781602001600182028036833780820191505090505b5090505b6000851461246b576001826123d19190613a6b565b9150600a856123e09190613c26565b60306123ec919061398a565b60f81b818381518110612428577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561246491906139e0565b94506123bc565b8093505050505b919050565b61247f610f58565b156124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b69061366d565b60405180910390fd5b6124ca838383612689565b505050565b505050565b6124ee82826040518060200160405280600081525061268e565b5050565b60006125138473ffffffffffffffffffffffffffffffffffffffff166126e9565b1561267c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253c611950565b8786866040518563ffffffff1660e01b815260040161255e9493929190613469565b602060405180830381600087803b15801561257857600080fd5b505af19250505080156125a957506040513d601f19601f820116820180604052508101906125a69190612e3f565b60015b61262c573d80600081146125d9576040519150601f19603f3d011682016040523d82523d6000602084013e6125de565b606091505b50600081511415612624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261b9061352d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612681565b600190505b949350505050565b505050565b612698838361270c565b6126a560008484846124f2565b6126e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126db9061352d565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127739061370d565b60405180910390fd5b612785816118e4565b156127c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bc9061358d565b60405180910390fd5b6127d160008383612477565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612821919061398a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128e2600083836124cf565b5050565b8280546128f290613b7a565b90600052602060002090601f016020900481019282612914576000855561295b565b82601f1061292d57805160ff191683800117855561295b565b8280016001018555821561295b579182015b8281111561295a57825182559160200191906001019061293f565b5b509050612968919061296c565b5090565b5b8082111561298557600081600090555060010161296d565b5090565b600061299c6129978461386d565b613848565b905080838252602082019050828560208602820111156129bb57600080fd5b60005b858110156129eb57816129d18882612add565b8452602084019350602083019250506001810190506129be565b5050509392505050565b6000612a08612a0384613899565b613848565b90508083825260208201905082856020860282011115612a2757600080fd5b60005b85811015612a575781612a3d8882612bee565b845260208401935060208301925050600181019050612a2a565b5050509392505050565b6000612a74612a6f846138c5565b613848565b905082815260208101848484011115612a8c57600080fd5b612a97848285613b38565b509392505050565b6000612ab2612aad846138f6565b613848565b905082815260208101848484011115612aca57600080fd5b612ad5848285613b38565b509392505050565b600081359050612aec81614382565b92915050565b600082601f830112612b0357600080fd5b8135612b13848260208601612989565b91505092915050565b600082601f830112612b2d57600080fd5b8135612b3d8482602086016129f5565b91505092915050565b600081359050612b5581614399565b92915050565b600081359050612b6a816143b0565b92915050565b600081519050612b7f816143b0565b92915050565b600082601f830112612b9657600080fd5b8135612ba6848260208601612a61565b91505092915050565b600081359050612bbe816143c7565b92915050565b600082601f830112612bd557600080fd5b8135612be5848260208601612a9f565b91505092915050565b600081359050612bfd816143d7565b92915050565b600060208284031215612c1557600080fd5b6000612c2384828501612add565b91505092915050565b60008060408385031215612c3f57600080fd5b6000612c4d85828601612add565b9250506020612c5e85828601612add565b9150509250929050565b600080600060608486031215612c7d57600080fd5b6000612c8b86828701612add565b9350506020612c9c86828701612add565b9250506040612cad86828701612bee565b9150509250925092565b60008060008060808587031215612ccd57600080fd5b6000612cdb87828801612add565b9450506020612cec87828801612add565b9350506040612cfd87828801612bee565b925050606085013567ffffffffffffffff811115612d1a57600080fd5b612d2687828801612b85565b91505092959194509250565b60008060408385031215612d4557600080fd5b6000612d5385828601612add565b9250506020612d6485828601612b46565b9150509250929050565b60008060408385031215612d8157600080fd5b6000612d8f85828601612add565b9250506020612da085828601612bee565b9150509250929050565b60008060408385031215612dbd57600080fd5b600083013567ffffffffffffffff811115612dd757600080fd5b612de385828601612af2565b925050602083013567ffffffffffffffff811115612e0057600080fd5b612e0c85828601612b1c565b9150509250929050565b600060208284031215612e2857600080fd5b6000612e3684828501612b5b565b91505092915050565b600060208284031215612e5157600080fd5b6000612e5f84828501612b70565b91505092915050565b600060208284031215612e7a57600080fd5b6000612e8884828501612baf565b91505092915050565b600060208284031215612ea357600080fd5b600082013567ffffffffffffffff811115612ebd57600080fd5b612ec984828501612bc4565b91505092915050565b600060208284031215612ee457600080fd5b6000612ef284828501612bee565b91505092915050565b612f0481613a9f565b82525050565b612f1381613ab1565b82525050565b6000612f248261393c565b612f2e8185613952565b9350612f3e818560208601613b47565b612f4781613d42565b840191505092915050565b612f5b81613b26565b82525050565b6000612f6c82613947565b612f76818561396e565b9350612f86818560208601613b47565b612f8f81613d42565b840191505092915050565b6000612fa582613947565b612faf818561397f565b9350612fbf818560208601613b47565b80840191505092915050565b60008154612fd881613b7a565b612fe2818661397f565b94506001821660008114612ffd576001811461300e57613041565b60ff19831686528186019350613041565b61301785613927565b60005b838110156130395781548189015260018201915060208101905061301a565b838801955050505b50505092915050565b600061305760148361396e565b915061306282613d53565b602082019050919050565b600061307a60328361396e565b915061308582613d7c565b604082019050919050565b600061309d60268361396e565b91506130a882613dcb565b604082019050919050565b60006130c060258361396e565b91506130cb82613e1a565b604082019050919050565b60006130e3601c8361396e565b91506130ee82613e69565b602082019050919050565b600061310660168361396e565b915061311182613e92565b602082019050919050565b600061312960248361396e565b915061313482613ebb565b604082019050919050565b600061314c60198361396e565b915061315782613f0a565b602082019050919050565b600061316f603a8361396e565b915061317a82613f33565b604082019050919050565b6000613192601d8361396e565b915061319d82613f82565b602082019050919050565b60006131b5602c8361396e565b91506131c082613fab565b604082019050919050565b60006131d860108361396e565b91506131e382613ffa565b602082019050919050565b60006131fb60388361396e565b915061320682614023565b604082019050919050565b600061321e601d8361396e565b915061322982614072565b602082019050919050565b6000613241602a8361396e565b915061324c8261409b565b604082019050919050565b600061326460298361396e565b915061326f826140ea565b604082019050919050565b600061328760208361396e565b915061329282614139565b602082019050919050565b60006132aa602c8361396e565b91506132b582614162565b604082019050919050565b60006132cd60058361397f565b91506132d8826141b1565b600582019050919050565b60006132f060208361396e565b91506132fb826141da565b602082019050919050565b6000613313600d8361396e565b915061331e82614203565b602082019050919050565b6000613336602f8361396e565b91506133418261422c565b604082019050919050565b6000613359600f8361396e565b91506133648261427b565b602082019050919050565b600061337c60218361396e565b9150613387826142a4565b604082019050919050565b600061339f600d8361396e565b91506133aa826142f3565b602082019050919050565b60006133c2600083613963565b91506133cd8261431c565b600082019050919050565b60006133e560318361396e565b91506133f08261431f565b604082019050919050565b61340481613b1c565b82525050565b60006134168285612fcb565b91506134228284612f9a565b915061342d826132c0565b91508190509392505050565b6000613444826133b5565b9150819050919050565b60006020820190506134636000830184612efb565b92915050565b600060808201905061347e6000830187612efb565b61348b6020830186612efb565b61349860408301856133fb565b81810360608301526134aa8184612f19565b905095945050505050565b60006020820190506134ca6000830184612f0a565b92915050565b60006020820190506134e56000830184612f52565b92915050565b600060208201905081810360008301526135058184612f61565b905092915050565b600060208201905081810360008301526135268161304a565b9050919050565b600060208201905081810360008301526135468161306d565b9050919050565b6000602082019050818103600083015261356681613090565b9050919050565b60006020820190508181036000830152613586816130b3565b9050919050565b600060208201905081810360008301526135a6816130d6565b9050919050565b600060208201905081810360008301526135c6816130f9565b9050919050565b600060208201905081810360008301526135e68161311c565b9050919050565b600060208201905081810360008301526136068161313f565b9050919050565b6000602082019050818103600083015261362681613162565b9050919050565b6000602082019050818103600083015261364681613185565b9050919050565b60006020820190508181036000830152613666816131a8565b9050919050565b60006020820190508181036000830152613686816131cb565b9050919050565b600060208201905081810360008301526136a6816131ee565b9050919050565b600060208201905081810360008301526136c681613211565b9050919050565b600060208201905081810360008301526136e681613234565b9050919050565b6000602082019050818103600083015261370681613257565b9050919050565b600060208201905081810360008301526137268161327a565b9050919050565b600060208201905081810360008301526137468161329d565b9050919050565b60006020820190508181036000830152613766816132e3565b9050919050565b6000602082019050818103600083015261378681613306565b9050919050565b600060208201905081810360008301526137a681613329565b9050919050565b600060208201905081810360008301526137c68161334c565b9050919050565b600060208201905081810360008301526137e68161336f565b9050919050565b6000602082019050818103600083015261380681613392565b9050919050565b60006020820190508181036000830152613826816133d8565b9050919050565b600060208201905061384260008301846133fb565b92915050565b6000613852613863565b905061385e8282613bac565b919050565b6000604051905090565b600067ffffffffffffffff82111561388857613887613d13565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156138b4576138b3613d13565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156138e0576138df613d13565b5b6138e982613d42565b9050602081019050919050565b600067ffffffffffffffff82111561391157613910613d13565b5b61391a82613d42565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061399582613b1c565b91506139a083613b1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139d5576139d4613c57565b5b828201905092915050565b60006139eb82613b1c565b91506139f683613b1c565b925082613a0657613a05613c86565b5b828204905092915050565b6000613a1c82613b1c565b9150613a2783613b1c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a6057613a5f613c57565b5b828202905092915050565b6000613a7682613b1c565b9150613a8183613b1c565b925082821015613a9457613a93613c57565b5b828203905092915050565b6000613aaa82613afc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613af78261436e565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613b3182613ae9565b9050919050565b82818337600083830152505050565b60005b83811015613b65578082015181840152602081019050613b4a565b83811115613b74576000848401525b50505050565b60006002820490506001821680613b9257607f821691505b60208210811415613ba657613ba5613ce4565b5b50919050565b613bb582613d42565b810181811067ffffffffffffffff82111715613bd457613bd3613d13565b5b80604052505050565b6000613be882613b1c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1b57613c1a613c57565b5b600182019050919050565b6000613c3182613b1c565b9150613c3c83613b1c565b925082613c4c57613c4b613c86565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820737570706c79206c65667400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4f6e6c7920757020746f2033204e465473207065722061646472657373000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642076616c756500000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f417272617973206d69736d617463680000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206e6f74206f70656e00000000000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6002811061437f5761437e613cb5565b5b50565b61438b81613a9f565b811461439657600080fd5b50565b6143a281613ab1565b81146143ad57600080fd5b50565b6143b981613abd565b81146143c457600080fd5b50565b600281106143d457600080fd5b50565b6143e081613b1c565b81146143eb57600080fd5b5056fea2646970667358221220c6fab5a2f028e583d199dead2bd26ce93faed85118fcde55406746ac1fbe141364736f6c63430008040033

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.