ETH Price: $2,938.89 (-6.91%)
Gas: 8 Gwei

Token

The Exotic Gentlemen Society (EGS)
 

Overview

Max Total Supply

1,896 EGS

Holders

683

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
xitangfuxi.eth
Balance
2 EGS
0x685f02f75e82260d43554927fe32d8836053b238
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Exotic Gentlemen's Society is a collection of 2500 unique gentleman NFTs comprised of 6 different species and their rare counterparts.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EGSToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 18 : EGSToken.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

interface ISpacePunksTreasureKeys {
  function burnKeyForAddress(uint256 typeId, address burnTokenAddress) external;
  function balanceOf(address account, uint256 id) external view returns (uint256);
}

contract EGSToken is ERC721, ERC721URIStorage, ERC721Enumerable, Ownable, Pausable, PaymentSplitter, ReentrancyGuard {
  using SafeMath for uint256;

  uint256 public constant TOKEN_LIMIT = 10001;
  uint256 public constant KEYS_LIMIT = 1000;
  uint256 public constant LAUNCHPAD_PROJECT_ID = 9;

  uint256 public maxTokensAtOnce = 6;
  uint256 public maxTokensPerWallet = 6;

  address private _treasureKeys;

  uint internal nonce = 0;
  uint[TOKEN_LIMIT] internal indices;

  uint256 private _tokenPrice;
  uint256[] private _teamShares = [95, 5];
  address[] private _team = [0xBB8456D66feEba4E81240f9D9B4696e6088CFDd9, 0x10Ed692665Cbe4AA26332d9484765e61dCbFC8a5];

  string private __baseURI;

  constructor()
    PaymentSplitter(_team, _teamShares)
    ERC721("The Exotic Gentlemen Society", "EGS")
  {
    setBaseURI("https://egs-api.herokuapp.com/metadata/");
    setTreasureKeys(0x4bc87F553fcE25bd613a7C31b17d6D224A84c7bF);
    setTokenPrice(2e16);
    _pause();
  }

  function mintWithTreasureKey(uint256 _amount) external nonReentrant whenNotPaused {
    ISpacePunksTreasureKeys keys = ISpacePunksTreasureKeys(_treasureKeys);

    require(keys.balanceOf(msg.sender, LAUNCHPAD_PROJECT_ID) >= _amount, "SPC Treasure Keys: not enough keys");

    for(uint256 i = 0; i < _amount; i++) {
      keys.burnKeyForAddress(LAUNCHPAD_PROJECT_ID, msg.sender);
      _mintOne(msg.sender);
    }
  }

  function mint(uint256 _amount) public payable nonReentrant whenNotPaused {
    require(totalSupply().add(_amount) <= TOKEN_LIMIT - KEYS_LIMIT, "Purchase would exceed available supply of tokens");
    require(_amount <= maxTokensAtOnce, "Too many tokens at once");
    require(balanceOf(msg.sender) <= maxTokensPerWallet, "You can't mint more tokens");
    require(getTokenPrice().mul(_amount) == msg.value, "You need to pay the exact price");

    for(uint256 i = 0; i < _amount; i++) {
      _mintOne(msg.sender);
    }
  }

  function _mintOne(address _to) private {
    uint _tokenID = randomIndex();
    _safeMint(_to, _tokenID);
  }

  function randomIndex() internal returns (uint256) {
    uint256 totalSize = TOKEN_LIMIT - totalSupply();
    uint256 index = uint(keccak256(abi.encodePacked(nonce, msg.sender, block.difficulty, block.timestamp))) % totalSize;
    uint256 value = 0;

    if (indices[index] != 0) {
      value = indices[index];
    } else {
      value = index;
    }

    if (indices[totalSize - 1] == 0) {
      indices[index] = totalSize - 1;
    } else {
      indices[index] = indices[totalSize - 1];
    }

    nonce++;

    return value.add(1);
  }

  function setMaxTokensAtOnce(uint256 _count) public onlyOwner {
    maxTokensAtOnce = _count;
  }

  function setMaxTokensPerWallet(uint256 _count) public onlyOwner {
    maxTokensPerWallet = _count;
  }

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

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

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

  function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
    return super.supportsInterface(interfaceId);
  }

  function togglePaused() public onlyOwner {
    if (paused()) {
      _unpause();
    } else {
      _pause();
    }
  }

  function getTokenPrice() public view returns(uint256) {
    return _tokenPrice;
  }

  function setTokenPrice(uint256 _price) public onlyOwner {
    _tokenPrice = _price;
  }

  function setTreasureKeys(address _keys) public onlyOwner {
    _treasureKeys = _keys;
  }

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

  function setBaseURI(string memory _value) public onlyOwner {
    __baseURI = _value;
  }
}

File 2 of 18 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 18 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 4 of 18 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 18 : Strings.sol
// SPDX-License-Identifier: MIT

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 6 of 18 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 18 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 18 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 9 of 18 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 18 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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

File 11 of 18 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 18 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 13 of 18 : IERC721.sol
// SPDX-License-Identifier: MIT

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 14 of 18 : ERC721.sol
// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 16 of 18 : Pausable.sol
// SPDX-License-Identifier: MIT

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 17 of 18 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Address.sol";
import "../utils/Context.sol";
import "../utils/math/SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 18 of 18 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"KEYS_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LAUNCHPAD_PROJECT_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensAtOnce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintWithTreasureKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","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":"_value","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxTokensAtOnce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keys","type":"address"}],"name":"setTreasureKeys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]

60806040526006601255600660135560006015556040518060400160405280605f60ff168152602001600560ff168152506127289060026200004392919062000a53565b50604051806040016040528073bb8456d66feeba4e81240f9d9b4696e6088cfdd973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017310ed692665cbe4aa26332d9484765e61dcbfc8a573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250612729906002620000ec92919062000aaa565b50348015620000fa57600080fd5b506127298054806020026020016040519081016040528092919081815260200182805480156200018057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831162000135575b5050505050612728805480602002602001604051908101604052809291908181526020018280548015620001d457602002820191906000526020600020905b815481526020019060010190808311620001bf575b50505050506040518060400160405280601c81526020017f5468652045786f7469632047656e746c656d656e20536f6369657479000000008152506040518060400160405280600381526020017f454753000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200025d92919062000b39565b5080600190805190602001906200027692919062000b39565b505050620002996200028d6200043960201b60201c565b6200044160201b60201c565b6000600b60146101000a81548160ff0219169083151502179055508051825114620002fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f29062000c70565b60405180910390fd5b600082511162000342576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003399062000ce2565b60405180910390fd5b60005b8251811015620003b1576200039b83828151811062000369576200036862000d04565b5b602002602001015183838151811062000387576200038662000d04565b5b60200260200101516200050760201b60201c565b8080620003a89062000d6c565b91505062000345565b5050506001601181905550620003e66040518060600160405280602781526020016200662f602791396200074160201b60201c565b6200040b734bc87f553fce25bd613a7c31b17d6d224a84c7bf620007ed60201b60201c565b6200042366470de4df820000620008c060201b60201c565b620004336200095a60201b60201c565b620011a2565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200057a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005719062000e30565b60405180910390fd5b60008111620005c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b79062000ea2565b60405180910390fd5b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000645576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063c9062000f3a565b60405180910390fd5b6010829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c54620006fc919062000f5c565b600c819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac8282604051620007359291906200100f565b60405180910390a15050565b620007516200043960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200077762000a1260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c7906200108c565b60405180910390fd5b8061272a9080519060200190620007e992919062000b39565b5050565b620007fd6200043960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200082362000a1260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200087c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000873906200108c565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620008d06200043960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008f662000a1260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000946906200108c565b60405180910390fd5b806127278190555050565b6200096a62000a3c60201b60201c565b15620009ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009a490620010fe565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620009f96200043960201b60201c565b60405162000a08919062001120565b60405180910390a1565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60149054906101000a900460ff16905090565b82805482825590600052602060002090810192821562000a97579160200282015b8281111562000a96578251829060ff1690559160200191906001019062000a74565b5b50905062000aa6919062000bca565b5090565b82805482825590600052602060002090810192821562000b26579160200282015b8281111562000b255782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000acb565b5b50905062000b35919062000bca565b5090565b82805462000b47906200116c565b90600052602060002090601f01602090048101928262000b6b576000855562000bb7565b82601f1062000b8657805160ff191683800117855562000bb7565b8280016001018555821562000bb7579182015b8281111562000bb657825182559160200191906001019062000b99565b5b50905062000bc6919062000bca565b5090565b5b8082111562000be557600081600090555060010162000bcb565b5090565b600082825260208201905092915050565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b600062000c5860328362000be9565b915062000c658262000bfa565b604082019050919050565b6000602082019050818103600083015262000c8b8162000c49565b9050919050565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b600062000cca601a8362000be9565b915062000cd78262000c92565b602082019050919050565b6000602082019050818103600083015262000cfd8162000cbb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b600062000d798262000d62565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000daf5762000dae62000d33565b5b600182019050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600062000e18602c8362000be9565b915062000e258262000dba565b604082019050919050565b6000602082019050818103600083015262000e4b8162000e09565b9050919050565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b600062000e8a601d8362000be9565b915062000e978262000e52565b602082019050919050565b6000602082019050818103600083015262000ebd8162000e7b565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b600062000f22602b8362000be9565b915062000f2f8262000ec4565b604082019050919050565b6000602082019050818103600083015262000f558162000f13565b9050919050565b600062000f698262000d62565b915062000f768362000d62565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000fae5762000fad62000d33565b5b828201905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fe68262000fb9565b9050919050565b62000ff88162000fd9565b82525050565b620010098162000d62565b82525050565b600060408201905062001026600083018562000fed565b62001035602083018462000ffe565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200107460208362000be9565b915062001081826200103c565b602082019050919050565b60006020820190508181036000830152620010a78162001065565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000620010e660108362000be9565b9150620010f382620010ae565b602082019050919050565b600060208201905081810360008301526200111981620010d7565b9050919050565b600060208201905062001137600083018462000fed565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200118557607f821691505b602082108114156200119c576200119b6200113d565b5b50919050565b61547d80620011b26000396000f3fe60806040526004361061023f5760003560e01c80636a61e5fc1161012e578063a22cb465116100ab578063e33b7de31161006f578063e33b7de3146108d3578063e985e9c5146108fe578063f2fde38b1461093b578063f4340a2f14610964578063fc6f77e61461098f57610286565b8063a22cb465146107de578063aac5d69f14610807578063b88d4fde14610830578063c87b56dd14610859578063ce7c2ac21461089657610286565b80638da5cb5b116100f25780638da5cb5b146107045780639041c5c61461072f57806395d89b411461075a5780639852595c14610785578063a0712d68146107c257610286565b80636a61e5fc1461062157806370a082311461064a578063715018a614610687578063765823a71461069e5780638b83209b146106c757610286565b806330571c58116101bc5780634b94f50e116101805780634b94f50e146105285780634f6ccce71461055357806355f804b3146105905780635c975abb146105b95780636352211e146105e457610286565b806330571c581461046957806336566f06146104925780633a98ef39146104a957806342842e0e146104d4578063469132ce146104fd57610286565b806318160ddd1161020357806318160ddd1461038457806319165587146103af57806322a7cf5f146103d857806323b872dd146104035780632f745c591461042c57610286565b806301ffc9a71461028b578063031bd4c4146102c857806306fdde03146102f3578063081812fc1461031e578063095ea7b31461035b57610286565b36610286577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061026d6109b8565b3460405161027c929190613775565b60405180910390a1005b600080fd5b34801561029757600080fd5b506102b260048036038101906102ad919061380a565b6109c0565b6040516102bf9190613852565b60405180910390f35b3480156102d457600080fd5b506102dd6109d2565b6040516102ea919061386d565b60405180910390f35b3480156102ff57600080fd5b506103086109d8565b6040516103159190613921565b60405180910390f35b34801561032a57600080fd5b506103456004803603810190610340919061396f565b610a6a565b604051610352919061399c565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d91906139e3565b610aef565b005b34801561039057600080fd5b50610399610c07565b6040516103a6919061386d565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613a61565b610c14565b005b3480156103e457600080fd5b506103ed610e7c565b6040516103fa919061386d565b60405180910390f35b34801561040f57600080fd5b5061042a60048036038101906104259190613a8e565b610e82565b005b34801561043857600080fd5b50610453600480360381019061044e91906139e3565b610ee2565b604051610460919061386d565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b919061396f565b610f87565b005b34801561049e57600080fd5b506104a761100d565b005b3480156104b557600080fd5b506104be6110ae565b6040516104cb919061386d565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190613a8e565b6110b8565b005b34801561050957600080fd5b506105126110d8565b60405161051f919061386d565b60405180910390f35b34801561053457600080fd5b5061053d6110de565b60405161054a919061386d565b60405180910390f35b34801561055f57600080fd5b5061057a6004803603810190610575919061396f565b6110e9565b604051610587919061386d565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b29190613c16565b61115a565b005b3480156105c557600080fd5b506105ce6111f1565b6040516105db9190613852565b60405180910390f35b3480156105f057600080fd5b5061060b6004803603810190610606919061396f565b611208565b604051610618919061399c565b60405180910390f35b34801561062d57600080fd5b506106486004803603810190610643919061396f565b6112ba565b005b34801561065657600080fd5b50610671600480360381019061066c9190613c5f565b611341565b60405161067e919061386d565b60405180910390f35b34801561069357600080fd5b5061069c6113f9565b005b3480156106aa57600080fd5b506106c560048036038101906106c0919061396f565b611481565b005b3480156106d357600080fd5b506106ee60048036038101906106e9919061396f565b6116ad565b6040516106fb919061399c565b60405180910390f35b34801561071057600080fd5b506107196116f5565b604051610726919061399c565b60405180910390f35b34801561073b57600080fd5b5061074461171f565b604051610751919061386d565b60405180910390f35b34801561076657600080fd5b5061076f611724565b60405161077c9190613921565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190613c5f565b6117b6565b6040516107b9919061386d565b60405180910390f35b6107dc60048036038101906107d7919061396f565b6117ff565b005b3480156107ea57600080fd5b5061080560048036038101906108009190613cb8565b611a20565b005b34801561081357600080fd5b5061082e6004803603810190610829919061396f565b611ba1565b005b34801561083c57600080fd5b5061085760048036038101906108529190613d99565b611c27565b005b34801561086557600080fd5b50610880600480360381019061087b919061396f565b611c89565b60405161088d9190613921565b60405180910390f35b3480156108a257600080fd5b506108bd60048036038101906108b89190613c5f565b611c9b565b6040516108ca919061386d565b60405180910390f35b3480156108df57600080fd5b506108e8611ce4565b6040516108f5919061386d565b60405180910390f35b34801561090a57600080fd5b5061092560048036038101906109209190613e1c565b611cee565b6040516109329190613852565b60405180910390f35b34801561094757600080fd5b50610962600480360381019061095d9190613c5f565b611d82565b005b34801561097057600080fd5b50610979611e7a565b604051610986919061386d565b60405180910390f35b34801561099b57600080fd5b506109b660048036038101906109b19190613c5f565b611e80565b005b600033905090565b60006109cb82611f40565b9050919050565b61271181565b6060600080546109e790613e8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1390613e8b565b8015610a605780601f10610a3557610100808354040283529160200191610a60565b820191906000526020600020905b815481529060010190602001808311610a4357829003601f168201915b5050505050905090565b6000610a7582611fba565b610ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aab90613f2f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610afa82611208565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290613fc1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8a6109b8565b73ffffffffffffffffffffffffffffffffffffffff161480610bb95750610bb881610bb36109b8565b611cee565b5b610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90614053565b60405180910390fd5b610c028383612026565b505050565b6000600980549050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d906140e5565b60405180910390fd5b6000600d5447610ca69190614134565b90506000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610d38919061418a565b610d429190614213565b610d4c9190614244565b90506000811415610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d89906142ea565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ddd9190614134565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d54610e2e9190614134565b600d81905550610e3e83826120df565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610e6f929190614369565b60405180910390a1505050565b60125481565b610e93610e8d6109b8565b826121d3565b610ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec990614404565b60405180910390fd5b610edd8383836122b1565b505050565b6000610eed83611341565b8210610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590614496565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f8f6109b8565b73ffffffffffffffffffffffffffffffffffffffff16610fad6116f5565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90614502565b60405180910390fd5b8060128190555050565b6110156109b8565b73ffffffffffffffffffffffffffffffffffffffff166110336116f5565b73ffffffffffffffffffffffffffffffffffffffff1614611089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108090614502565b60405180910390fd5b6110916111f1565b156110a35761109e61250d565b6110ac565b6110ab6125af565b5b565b6000600c54905090565b6110d383838360405180602001604052806000815250611c27565b505050565b60135481565b600061272754905090565b60006110f3610c07565b8210611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90614594565b60405180910390fd5b60098281548110611148576111476145b4565b5b90600052602060002001549050919050565b6111626109b8565b73ffffffffffffffffffffffffffffffffffffffff166111806116f5565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90614502565b60405180910390fd5b8061272a90805190602001906111ed929190613678565b5050565b6000600b60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890614655565b60405180910390fd5b80915050919050565b6112c26109b8565b73ffffffffffffffffffffffffffffffffffffffff166112e06116f5565b73ffffffffffffffffffffffffffffffffffffffff1614611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90614502565b60405180910390fd5b806127278190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a9906146e7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114016109b8565b73ffffffffffffffffffffffffffffffffffffffff1661141f6116f5565b73ffffffffffffffffffffffffffffffffffffffff1614611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90614502565b60405180910390fd5b61147f6000612652565b565b600260115414156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90614753565b60405180910390fd5b60026011819055506114d76111f1565b15611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e906147bf565b60405180910390fd5b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050818173ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360096040518363ffffffff1660e01b815260040161157a929190613775565b60206040518083038186803b15801561159257600080fd5b505afa1580156115a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ca91906147f4565b101561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290614893565b60405180910390fd5b60005b828110156116a0578173ffffffffffffffffffffffffffffffffffffffff166316ed917a6009336040518363ffffffff1660e01b81526004016116529291906148b3565b600060405180830381600087803b15801561166c57600080fd5b505af1158015611680573d6000803e3d6000fd5b5050505061168d33612718565b8080611698906148dc565b91505061160e565b5050600160118190555050565b6000601082815481106116c3576116c26145b4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600981565b60606001805461173390613e8b565b80601f016020809104026020016040519081016040528092919081815260200182805461175f90613e8b565b80156117ac5780601f10611781576101008083540402835291602001916117ac565b820191906000526020600020905b81548152906001019060200180831161178f57829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60026011541415611845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183c90614753565b60405180910390fd5b60026011819055506118556111f1565b15611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c906147bf565b60405180910390fd5b6103e86127116118a59190614244565b6118bf826118b1610c07565b61273290919063ffffffff16565b1115611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790614997565b60405180910390fd5b601254811115611945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c90614a03565b60405180910390fd5b60135461195133611341565b1115611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990614a6f565b60405180910390fd5b346119ad8261199f6110de565b61274890919063ffffffff16565b146119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490614adb565b60405180910390fd5b60005b81811015611a1457611a0133612718565b8080611a0c906148dc565b9150506119f0565b50600160118190555050565b611a286109b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d90614b47565b60405180910390fd5b8060056000611aa36109b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b506109b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b959190613852565b60405180910390a35050565b611ba96109b8565b73ffffffffffffffffffffffffffffffffffffffff16611bc76116f5565b73ffffffffffffffffffffffffffffffffffffffff1614611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1490614502565b60405180910390fd5b8060138190555050565b611c38611c326109b8565b836121d3565b611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90614404565b60405180910390fd5b611c838484848461275e565b50505050565b6060611c94826127ba565b9050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d8a6109b8565b73ffffffffffffffffffffffffffffffffffffffff16611da86116f5565b73ffffffffffffffffffffffffffffffffffffffff1614611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df590614502565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6590614bd9565b60405180910390fd5b611e7781612652565b50565b6103e881565b611e886109b8565b73ffffffffffffffffffffffffffffffffffffffff16611ea66116f5565b73ffffffffffffffffffffffffffffffffffffffff1614611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390614502565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fb35750611fb28261290c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661209983611208565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211990614c45565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161214890614c96565b60006040518083038185875af1925050503d8060008114612185576040519150601f19603f3d011682016040523d82523d6000602084013e61218a565b606091505b50509050806121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c590614d1d565b60405180910390fd5b505050565b60006121de82611fba565b61221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490614daf565b60405180910390fd5b600061222883611208565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229757508373ffffffffffffffffffffffffffffffffffffffff1661227f84610a6a565b73ffffffffffffffffffffffffffffffffffffffff16145b806122a857506122a78185611cee565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122d182611208565b73ffffffffffffffffffffffffffffffffffffffff1614612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e90614e41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238e90614ed3565b60405180910390fd5b6123a28383836129ee565b6123ad600082612026565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123fd9190614244565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124549190614134565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125156111f1565b612554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254b90614f3f565b60405180910390fd5b6000600b60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6125986109b8565b6040516125a5919061399c565b60405180910390a1565b6125b76111f1565b156125f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ee906147bf565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861263b6109b8565b604051612648919061399c565b60405180910390a1565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006127226129fe565b905061272e8282612b63565b5050565b600081836127409190614134565b905092915050565b60008183612756919061418a565b905092915050565b6127698484846122b1565b61277584848484612b81565b6127b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ab90614fd1565b60405180910390fd5b50505050565b60606127c582611fba565b612804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fb90615063565b60405180910390fd5b600060066000848152602001908152602001600020805461282490613e8b565b80601f016020809104026020016040519081016040528092919081815260200182805461285090613e8b565b801561289d5780601f106128725761010080835404028352916020019161289d565b820191906000526020600020905b81548152906001019060200180831161288057829003601f168201915b5050505050905060006128ae612d18565b90506000815114156128c4578192505050612907565b6000825111156128f95780826040516020016128e19291906150bf565b60405160208183030381529060405292505050612907565b61290284612dab565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129d757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129e757506129e682612e52565b5b9050919050565b6129f9838383612ebc565b505050565b600080612a09610c07565b612711612a169190614244565b9050600081601554334442604051602001612a34949392919061514c565b6040516020818303038152906040528051906020012060001c612a57919061519a565b90506000806016836127118110612a7157612a706145b4565b5b015414612a96576016826127118110612a8d57612a8c6145b4565b5b01549050612a9a565b8190505b60006016600185612aab9190614244565b6127118110612abd57612abc6145b4565b5b01541415612af157600183612ad29190614244565b6016836127118110612ae757612ae66145b4565b5b0181905550612b2f565b6016600184612b009190614244565b6127118110612b1257612b116145b4565b5b01546016836127118110612b2957612b286145b4565b5b01819055505b60156000815480929190612b42906148dc565b9190505550612b5b60018261273290919063ffffffff16565b935050505090565b612b7d828260405180602001604052806000815250612fd0565b5050565b6000612ba28473ffffffffffffffffffffffffffffffffffffffff1661302b565b15612d0b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bcb6109b8565b8786866040518563ffffffff1660e01b8152600401612bed9493929190615220565b602060405180830381600087803b158015612c0757600080fd5b505af1925050508015612c3857506040513d601f19601f82011682018060405250810190612c359190615281565b60015b612cbb573d8060008114612c68576040519150601f19603f3d011682016040523d82523d6000602084013e612c6d565b606091505b50600081511415612cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caa90614fd1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d10565b600190505b949350505050565b606061272a8054612d2890613e8b565b80601f0160208091040260200160405190810160405280929190818152602001828054612d5490613e8b565b8015612da15780601f10612d7657610100808354040283529160200191612da1565b820191906000526020600020905b815481529060010190602001808311612d8457829003601f168201915b5050505050905090565b6060612db682611fba565b612df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dec90615320565b60405180910390fd5b6000612dff612d18565b90506000815111612e1f5760405180602001604052806000815250612e4a565b80612e298461303e565b604051602001612e3a9291906150bf565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ec783838361319f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f0a57612f05816131a4565b612f49565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f4857612f4783826131ed565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f8c57612f878161335a565b612fcb565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612fca57612fc9828261342b565b5b5b505050565b612fda83836134aa565b612fe76000848484612b81565b613026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301d90614fd1565b60405180910390fd5b505050565b600080823b905060008111915050919050565b60606000821415613086576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061319a565b600082905060005b600082146130b85780806130a1906148dc565b915050600a826130b19190614213565b915061308e565b60008167ffffffffffffffff8111156130d4576130d3613aeb565b5b6040519080825280601f01601f1916602001820160405280156131065781602001600182028036833780820191505090505b5090505b600085146131935760018261311f9190614244565b9150600a8561312e919061519a565b603061313a9190614134565b60f81b8183815181106131505761314f6145b4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561318c9190614213565b945061310a565b8093505050505b919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131fa84611341565b6132049190614244565b90506000600860008481526020019081526020016000205490508181146132e9576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061336e9190614244565b90506000600a600084815260200190815260200160002054905060006009838154811061339e5761339d6145b4565b5b9060005260206000200154905080600983815481106133c0576133bf6145b4565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061340f5761340e615340565b5b6001900381819060005260206000200160009055905550505050565b600061343683611341565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561351a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613511906153bb565b60405180910390fd5b61352381611fba565b15613563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355a90615427565b60405180910390fd5b61356f600083836129ee565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135bf9190614134565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461368490613e8b565b90600052602060002090601f0160209004810192826136a657600085556136ed565b82601f106136bf57805160ff19168380011785556136ed565b828001600101855582156136ed579182015b828111156136ec5782518255916020019190600101906136d1565b5b5090506136fa91906136fe565b5090565b5b808211156137175760008160009055506001016136ff565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137468261371b565b9050919050565b6137568161373b565b82525050565b6000819050919050565b61376f8161375c565b82525050565b600060408201905061378a600083018561374d565b6137976020830184613766565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137e7816137b2565b81146137f257600080fd5b50565b600081359050613804816137de565b92915050565b6000602082840312156138205761381f6137a8565b5b600061382e848285016137f5565b91505092915050565b60008115159050919050565b61384c81613837565b82525050565b60006020820190506138676000830184613843565b92915050565b60006020820190506138826000830184613766565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138c25780820151818401526020810190506138a7565b838111156138d1576000848401525b50505050565b6000601f19601f8301169050919050565b60006138f382613888565b6138fd8185613893565b935061390d8185602086016138a4565b613916816138d7565b840191505092915050565b6000602082019050818103600083015261393b81846138e8565b905092915050565b61394c8161375c565b811461395757600080fd5b50565b60008135905061396981613943565b92915050565b600060208284031215613985576139846137a8565b5b60006139938482850161395a565b91505092915050565b60006020820190506139b1600083018461374d565b92915050565b6139c08161373b565b81146139cb57600080fd5b50565b6000813590506139dd816139b7565b92915050565b600080604083850312156139fa576139f96137a8565b5b6000613a08858286016139ce565b9250506020613a198582860161395a565b9150509250929050565b6000613a2e8261371b565b9050919050565b613a3e81613a23565b8114613a4957600080fd5b50565b600081359050613a5b81613a35565b92915050565b600060208284031215613a7757613a766137a8565b5b6000613a8584828501613a4c565b91505092915050565b600080600060608486031215613aa757613aa66137a8565b5b6000613ab5868287016139ce565b9350506020613ac6868287016139ce565b9250506040613ad78682870161395a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b23826138d7565b810181811067ffffffffffffffff82111715613b4257613b41613aeb565b5b80604052505050565b6000613b5561379e565b9050613b618282613b1a565b919050565b600067ffffffffffffffff821115613b8157613b80613aeb565b5b613b8a826138d7565b9050602081019050919050565b82818337600083830152505050565b6000613bb9613bb484613b66565b613b4b565b905082815260208101848484011115613bd557613bd4613ae6565b5b613be0848285613b97565b509392505050565b600082601f830112613bfd57613bfc613ae1565b5b8135613c0d848260208601613ba6565b91505092915050565b600060208284031215613c2c57613c2b6137a8565b5b600082013567ffffffffffffffff811115613c4a57613c496137ad565b5b613c5684828501613be8565b91505092915050565b600060208284031215613c7557613c746137a8565b5b6000613c83848285016139ce565b91505092915050565b613c9581613837565b8114613ca057600080fd5b50565b600081359050613cb281613c8c565b92915050565b60008060408385031215613ccf57613cce6137a8565b5b6000613cdd858286016139ce565b9250506020613cee85828601613ca3565b9150509250929050565b600067ffffffffffffffff821115613d1357613d12613aeb565b5b613d1c826138d7565b9050602081019050919050565b6000613d3c613d3784613cf8565b613b4b565b905082815260208101848484011115613d5857613d57613ae6565b5b613d63848285613b97565b509392505050565b600082601f830112613d8057613d7f613ae1565b5b8135613d90848260208601613d29565b91505092915050565b60008060008060808587031215613db357613db26137a8565b5b6000613dc1878288016139ce565b9450506020613dd2878288016139ce565b9350506040613de38782880161395a565b925050606085013567ffffffffffffffff811115613e0457613e036137ad565b5b613e1087828801613d6b565b91505092959194509250565b60008060408385031215613e3357613e326137a8565b5b6000613e41858286016139ce565b9250506020613e52858286016139ce565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ea357607f821691505b60208210811415613eb757613eb6613e5c565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613f19602c83613893565b9150613f2482613ebd565b604082019050919050565b60006020820190508181036000830152613f4881613f0c565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fab602183613893565b9150613fb682613f4f565b604082019050919050565b60006020820190508181036000830152613fda81613f9e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061403d603883613893565b915061404882613fe1565b604082019050919050565b6000602082019050818103600083015261406c81614030565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b60006140cf602683613893565b91506140da82614073565b604082019050919050565b600060208201905081810360008301526140fe816140c2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061413f8261375c565b915061414a8361375c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561417f5761417e614105565b5b828201905092915050565b60006141958261375c565b91506141a08361375c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141d9576141d8614105565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061421e8261375c565b91506142298361375c565b925082614239576142386141e4565b5b828204905092915050565b600061424f8261375c565b915061425a8361375c565b92508282101561426d5761426c614105565b5b828203905092915050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b60006142d4602b83613893565b91506142df82614278565b604082019050919050565b60006020820190508181036000830152614303816142c7565b9050919050565b6000819050919050565b600061432f61432a6143258461371b565b61430a565b61371b565b9050919050565b600061434182614314565b9050919050565b600061435382614336565b9050919050565b61436381614348565b82525050565b600060408201905061437e600083018561435a565b61438b6020830184613766565b9392505050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006143ee603183613893565b91506143f982614392565b604082019050919050565b6000602082019050818103600083015261441d816143e1565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614480602b83613893565b915061448b82614424565b604082019050919050565b600060208201905081810360008301526144af81614473565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144ec602083613893565b91506144f7826144b6565b602082019050919050565b6000602082019050818103600083015261451b816144df565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061457e602c83613893565b915061458982614522565b604082019050919050565b600060208201905081810360008301526145ad81614571565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061463f602983613893565b915061464a826145e3565b604082019050919050565b6000602082019050818103600083015261466e81614632565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006146d1602a83613893565b91506146dc82614675565b604082019050919050565b60006020820190508181036000830152614700816146c4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061473d601f83613893565b915061474882614707565b602082019050919050565b6000602082019050818103600083015261476c81614730565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006147a9601083613893565b91506147b482614773565b602082019050919050565b600060208201905081810360008301526147d88161479c565b9050919050565b6000815190506147ee81613943565b92915050565b60006020828403121561480a576148096137a8565b5b6000614818848285016147df565b91505092915050565b7f535043205472656173757265204b6579733a206e6f7420656e6f756768206b6560008201527f7973000000000000000000000000000000000000000000000000000000000000602082015250565b600061487d602283613893565b915061488882614821565b604082019050919050565b600060208201905081810360008301526148ac81614870565b9050919050565b60006040820190506148c86000830185613766565b6148d5602083018461374d565b9392505050565b60006148e78261375c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561491a57614919614105565b5b600182019050919050565b7f507572636861736520776f756c642065786365656420617661696c61626c652060008201527f737570706c79206f6620746f6b656e7300000000000000000000000000000000602082015250565b6000614981603083613893565b915061498c82614925565b604082019050919050565b600060208201905081810360008301526149b081614974565b9050919050565b7f546f6f206d616e7920746f6b656e73206174206f6e6365000000000000000000600082015250565b60006149ed601783613893565b91506149f8826149b7565b602082019050919050565b60006020820190508181036000830152614a1c816149e0565b9050919050565b7f596f752063616e2774206d696e74206d6f726520746f6b656e73000000000000600082015250565b6000614a59601a83613893565b9150614a6482614a23565b602082019050919050565b60006020820190508181036000830152614a8881614a4c565b9050919050565b7f596f75206e65656420746f207061792074686520657861637420707269636500600082015250565b6000614ac5601f83613893565b9150614ad082614a8f565b602082019050919050565b60006020820190508181036000830152614af481614ab8565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614b31601983613893565b9150614b3c82614afb565b602082019050919050565b60006020820190508181036000830152614b6081614b24565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614bc3602683613893565b9150614bce82614b67565b604082019050919050565b60006020820190508181036000830152614bf281614bb6565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614c2f601d83613893565b9150614c3a82614bf9565b602082019050919050565b60006020820190508181036000830152614c5e81614c22565b9050919050565b600081905092915050565b50565b6000614c80600083614c65565b9150614c8b82614c70565b600082019050919050565b6000614ca182614c73565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614d07603a83613893565b9150614d1282614cab565b604082019050919050565b60006020820190508181036000830152614d3681614cfa565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614d99602c83613893565b9150614da482614d3d565b604082019050919050565b60006020820190508181036000830152614dc881614d8c565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614e2b602983613893565b9150614e3682614dcf565b604082019050919050565b60006020820190508181036000830152614e5a81614e1e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614ebd602483613893565b9150614ec882614e61565b604082019050919050565b60006020820190508181036000830152614eec81614eb0565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614f29601483613893565b9150614f3482614ef3565b602082019050919050565b60006020820190508181036000830152614f5881614f1c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614fbb603283613893565b9150614fc682614f5f565b604082019050919050565b60006020820190508181036000830152614fea81614fae565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b600061504d603183613893565b915061505882614ff1565b604082019050919050565b6000602082019050818103600083015261507c81615040565b9050919050565b600081905092915050565b600061509982613888565b6150a38185615083565b93506150b38185602086016138a4565b80840191505092915050565b60006150cb828561508e565b91506150d7828461508e565b91508190509392505050565b6000819050919050565b6150fe6150f98261375c565b6150e3565b82525050565b60008160601b9050919050565b600061511c82615104565b9050919050565b600061512e82615111565b9050919050565b6151466151418261373b565b615123565b82525050565b600061515882876150ed565b6020820191506151688286615135565b60148201915061517882856150ed565b60208201915061518882846150ed565b60208201915081905095945050505050565b60006151a58261375c565b91506151b08361375c565b9250826151c0576151bf6141e4565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006151f2826151cb565b6151fc81856151d6565b935061520c8185602086016138a4565b615215816138d7565b840191505092915050565b6000608082019050615235600083018761374d565b615242602083018661374d565b61524f6040830185613766565b818103606083015261526181846151e7565b905095945050505050565b60008151905061527b816137de565b92915050565b600060208284031215615297576152966137a8565b5b60006152a58482850161526c565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061530a602f83613893565b9150615315826152ae565b604082019050919050565b60006020820190508181036000830152615339816152fd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006153a5602083613893565b91506153b08261536f565b602082019050919050565b600060208201905081810360008301526153d481615398565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615411601c83613893565b915061541c826153db565b602082019050919050565b6000602082019050818103600083015261544081615404565b905091905056fea26469706673582212202da20ff505cf440370042e50c9c02f491acaf3903c94e22328bd46c0e9c942fb64736f6c6343000809003368747470733a2f2f6567732d6170692e6865726f6b756170702e636f6d2f6d657461646174612f

Deployed Bytecode

0x60806040526004361061023f5760003560e01c80636a61e5fc1161012e578063a22cb465116100ab578063e33b7de31161006f578063e33b7de3146108d3578063e985e9c5146108fe578063f2fde38b1461093b578063f4340a2f14610964578063fc6f77e61461098f57610286565b8063a22cb465146107de578063aac5d69f14610807578063b88d4fde14610830578063c87b56dd14610859578063ce7c2ac21461089657610286565b80638da5cb5b116100f25780638da5cb5b146107045780639041c5c61461072f57806395d89b411461075a5780639852595c14610785578063a0712d68146107c257610286565b80636a61e5fc1461062157806370a082311461064a578063715018a614610687578063765823a71461069e5780638b83209b146106c757610286565b806330571c58116101bc5780634b94f50e116101805780634b94f50e146105285780634f6ccce71461055357806355f804b3146105905780635c975abb146105b95780636352211e146105e457610286565b806330571c581461046957806336566f06146104925780633a98ef39146104a957806342842e0e146104d4578063469132ce146104fd57610286565b806318160ddd1161020357806318160ddd1461038457806319165587146103af57806322a7cf5f146103d857806323b872dd146104035780632f745c591461042c57610286565b806301ffc9a71461028b578063031bd4c4146102c857806306fdde03146102f3578063081812fc1461031e578063095ea7b31461035b57610286565b36610286577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061026d6109b8565b3460405161027c929190613775565b60405180910390a1005b600080fd5b34801561029757600080fd5b506102b260048036038101906102ad919061380a565b6109c0565b6040516102bf9190613852565b60405180910390f35b3480156102d457600080fd5b506102dd6109d2565b6040516102ea919061386d565b60405180910390f35b3480156102ff57600080fd5b506103086109d8565b6040516103159190613921565b60405180910390f35b34801561032a57600080fd5b506103456004803603810190610340919061396f565b610a6a565b604051610352919061399c565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d91906139e3565b610aef565b005b34801561039057600080fd5b50610399610c07565b6040516103a6919061386d565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613a61565b610c14565b005b3480156103e457600080fd5b506103ed610e7c565b6040516103fa919061386d565b60405180910390f35b34801561040f57600080fd5b5061042a60048036038101906104259190613a8e565b610e82565b005b34801561043857600080fd5b50610453600480360381019061044e91906139e3565b610ee2565b604051610460919061386d565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b919061396f565b610f87565b005b34801561049e57600080fd5b506104a761100d565b005b3480156104b557600080fd5b506104be6110ae565b6040516104cb919061386d565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190613a8e565b6110b8565b005b34801561050957600080fd5b506105126110d8565b60405161051f919061386d565b60405180910390f35b34801561053457600080fd5b5061053d6110de565b60405161054a919061386d565b60405180910390f35b34801561055f57600080fd5b5061057a6004803603810190610575919061396f565b6110e9565b604051610587919061386d565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b29190613c16565b61115a565b005b3480156105c557600080fd5b506105ce6111f1565b6040516105db9190613852565b60405180910390f35b3480156105f057600080fd5b5061060b6004803603810190610606919061396f565b611208565b604051610618919061399c565b60405180910390f35b34801561062d57600080fd5b506106486004803603810190610643919061396f565b6112ba565b005b34801561065657600080fd5b50610671600480360381019061066c9190613c5f565b611341565b60405161067e919061386d565b60405180910390f35b34801561069357600080fd5b5061069c6113f9565b005b3480156106aa57600080fd5b506106c560048036038101906106c0919061396f565b611481565b005b3480156106d357600080fd5b506106ee60048036038101906106e9919061396f565b6116ad565b6040516106fb919061399c565b60405180910390f35b34801561071057600080fd5b506107196116f5565b604051610726919061399c565b60405180910390f35b34801561073b57600080fd5b5061074461171f565b604051610751919061386d565b60405180910390f35b34801561076657600080fd5b5061076f611724565b60405161077c9190613921565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190613c5f565b6117b6565b6040516107b9919061386d565b60405180910390f35b6107dc60048036038101906107d7919061396f565b6117ff565b005b3480156107ea57600080fd5b5061080560048036038101906108009190613cb8565b611a20565b005b34801561081357600080fd5b5061082e6004803603810190610829919061396f565b611ba1565b005b34801561083c57600080fd5b5061085760048036038101906108529190613d99565b611c27565b005b34801561086557600080fd5b50610880600480360381019061087b919061396f565b611c89565b60405161088d9190613921565b60405180910390f35b3480156108a257600080fd5b506108bd60048036038101906108b89190613c5f565b611c9b565b6040516108ca919061386d565b60405180910390f35b3480156108df57600080fd5b506108e8611ce4565b6040516108f5919061386d565b60405180910390f35b34801561090a57600080fd5b5061092560048036038101906109209190613e1c565b611cee565b6040516109329190613852565b60405180910390f35b34801561094757600080fd5b50610962600480360381019061095d9190613c5f565b611d82565b005b34801561097057600080fd5b50610979611e7a565b604051610986919061386d565b60405180910390f35b34801561099b57600080fd5b506109b660048036038101906109b19190613c5f565b611e80565b005b600033905090565b60006109cb82611f40565b9050919050565b61271181565b6060600080546109e790613e8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1390613e8b565b8015610a605780601f10610a3557610100808354040283529160200191610a60565b820191906000526020600020905b815481529060010190602001808311610a4357829003601f168201915b5050505050905090565b6000610a7582611fba565b610ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aab90613f2f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610afa82611208565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290613fc1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8a6109b8565b73ffffffffffffffffffffffffffffffffffffffff161480610bb95750610bb881610bb36109b8565b611cee565b5b610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90614053565b60405180910390fd5b610c028383612026565b505050565b6000600980549050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d906140e5565b60405180910390fd5b6000600d5447610ca69190614134565b90506000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610d38919061418a565b610d429190614213565b610d4c9190614244565b90506000811415610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d89906142ea565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ddd9190614134565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d54610e2e9190614134565b600d81905550610e3e83826120df565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610e6f929190614369565b60405180910390a1505050565b60125481565b610e93610e8d6109b8565b826121d3565b610ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec990614404565b60405180910390fd5b610edd8383836122b1565b505050565b6000610eed83611341565b8210610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590614496565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f8f6109b8565b73ffffffffffffffffffffffffffffffffffffffff16610fad6116f5565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90614502565b60405180910390fd5b8060128190555050565b6110156109b8565b73ffffffffffffffffffffffffffffffffffffffff166110336116f5565b73ffffffffffffffffffffffffffffffffffffffff1614611089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108090614502565b60405180910390fd5b6110916111f1565b156110a35761109e61250d565b6110ac565b6110ab6125af565b5b565b6000600c54905090565b6110d383838360405180602001604052806000815250611c27565b505050565b60135481565b600061272754905090565b60006110f3610c07565b8210611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90614594565b60405180910390fd5b60098281548110611148576111476145b4565b5b90600052602060002001549050919050565b6111626109b8565b73ffffffffffffffffffffffffffffffffffffffff166111806116f5565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90614502565b60405180910390fd5b8061272a90805190602001906111ed929190613678565b5050565b6000600b60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890614655565b60405180910390fd5b80915050919050565b6112c26109b8565b73ffffffffffffffffffffffffffffffffffffffff166112e06116f5565b73ffffffffffffffffffffffffffffffffffffffff1614611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90614502565b60405180910390fd5b806127278190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a9906146e7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114016109b8565b73ffffffffffffffffffffffffffffffffffffffff1661141f6116f5565b73ffffffffffffffffffffffffffffffffffffffff1614611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90614502565b60405180910390fd5b61147f6000612652565b565b600260115414156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90614753565b60405180910390fd5b60026011819055506114d76111f1565b15611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e906147bf565b60405180910390fd5b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050818173ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360096040518363ffffffff1660e01b815260040161157a929190613775565b60206040518083038186803b15801561159257600080fd5b505afa1580156115a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ca91906147f4565b101561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290614893565b60405180910390fd5b60005b828110156116a0578173ffffffffffffffffffffffffffffffffffffffff166316ed917a6009336040518363ffffffff1660e01b81526004016116529291906148b3565b600060405180830381600087803b15801561166c57600080fd5b505af1158015611680573d6000803e3d6000fd5b5050505061168d33612718565b8080611698906148dc565b91505061160e565b5050600160118190555050565b6000601082815481106116c3576116c26145b4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600981565b60606001805461173390613e8b565b80601f016020809104026020016040519081016040528092919081815260200182805461175f90613e8b565b80156117ac5780601f10611781576101008083540402835291602001916117ac565b820191906000526020600020905b81548152906001019060200180831161178f57829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60026011541415611845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183c90614753565b60405180910390fd5b60026011819055506118556111f1565b15611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c906147bf565b60405180910390fd5b6103e86127116118a59190614244565b6118bf826118b1610c07565b61273290919063ffffffff16565b1115611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790614997565b60405180910390fd5b601254811115611945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c90614a03565b60405180910390fd5b60135461195133611341565b1115611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990614a6f565b60405180910390fd5b346119ad8261199f6110de565b61274890919063ffffffff16565b146119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490614adb565b60405180910390fd5b60005b81811015611a1457611a0133612718565b8080611a0c906148dc565b9150506119f0565b50600160118190555050565b611a286109b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d90614b47565b60405180910390fd5b8060056000611aa36109b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b506109b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b959190613852565b60405180910390a35050565b611ba96109b8565b73ffffffffffffffffffffffffffffffffffffffff16611bc76116f5565b73ffffffffffffffffffffffffffffffffffffffff1614611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1490614502565b60405180910390fd5b8060138190555050565b611c38611c326109b8565b836121d3565b611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90614404565b60405180910390fd5b611c838484848461275e565b50505050565b6060611c94826127ba565b9050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d8a6109b8565b73ffffffffffffffffffffffffffffffffffffffff16611da86116f5565b73ffffffffffffffffffffffffffffffffffffffff1614611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df590614502565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6590614bd9565b60405180910390fd5b611e7781612652565b50565b6103e881565b611e886109b8565b73ffffffffffffffffffffffffffffffffffffffff16611ea66116f5565b73ffffffffffffffffffffffffffffffffffffffff1614611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390614502565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fb35750611fb28261290c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661209983611208565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211990614c45565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161214890614c96565b60006040518083038185875af1925050503d8060008114612185576040519150601f19603f3d011682016040523d82523d6000602084013e61218a565b606091505b50509050806121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c590614d1d565b60405180910390fd5b505050565b60006121de82611fba565b61221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490614daf565b60405180910390fd5b600061222883611208565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229757508373ffffffffffffffffffffffffffffffffffffffff1661227f84610a6a565b73ffffffffffffffffffffffffffffffffffffffff16145b806122a857506122a78185611cee565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122d182611208565b73ffffffffffffffffffffffffffffffffffffffff1614612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e90614e41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238e90614ed3565b60405180910390fd5b6123a28383836129ee565b6123ad600082612026565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123fd9190614244565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124549190614134565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125156111f1565b612554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254b90614f3f565b60405180910390fd5b6000600b60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6125986109b8565b6040516125a5919061399c565b60405180910390a1565b6125b76111f1565b156125f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ee906147bf565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861263b6109b8565b604051612648919061399c565b60405180910390a1565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006127226129fe565b905061272e8282612b63565b5050565b600081836127409190614134565b905092915050565b60008183612756919061418a565b905092915050565b6127698484846122b1565b61277584848484612b81565b6127b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ab90614fd1565b60405180910390fd5b50505050565b60606127c582611fba565b612804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fb90615063565b60405180910390fd5b600060066000848152602001908152602001600020805461282490613e8b565b80601f016020809104026020016040519081016040528092919081815260200182805461285090613e8b565b801561289d5780601f106128725761010080835404028352916020019161289d565b820191906000526020600020905b81548152906001019060200180831161288057829003601f168201915b5050505050905060006128ae612d18565b90506000815114156128c4578192505050612907565b6000825111156128f95780826040516020016128e19291906150bf565b60405160208183030381529060405292505050612907565b61290284612dab565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129d757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129e757506129e682612e52565b5b9050919050565b6129f9838383612ebc565b505050565b600080612a09610c07565b612711612a169190614244565b9050600081601554334442604051602001612a34949392919061514c565b6040516020818303038152906040528051906020012060001c612a57919061519a565b90506000806016836127118110612a7157612a706145b4565b5b015414612a96576016826127118110612a8d57612a8c6145b4565b5b01549050612a9a565b8190505b60006016600185612aab9190614244565b6127118110612abd57612abc6145b4565b5b01541415612af157600183612ad29190614244565b6016836127118110612ae757612ae66145b4565b5b0181905550612b2f565b6016600184612b009190614244565b6127118110612b1257612b116145b4565b5b01546016836127118110612b2957612b286145b4565b5b01819055505b60156000815480929190612b42906148dc565b9190505550612b5b60018261273290919063ffffffff16565b935050505090565b612b7d828260405180602001604052806000815250612fd0565b5050565b6000612ba28473ffffffffffffffffffffffffffffffffffffffff1661302b565b15612d0b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bcb6109b8565b8786866040518563ffffffff1660e01b8152600401612bed9493929190615220565b602060405180830381600087803b158015612c0757600080fd5b505af1925050508015612c3857506040513d601f19601f82011682018060405250810190612c359190615281565b60015b612cbb573d8060008114612c68576040519150601f19603f3d011682016040523d82523d6000602084013e612c6d565b606091505b50600081511415612cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caa90614fd1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d10565b600190505b949350505050565b606061272a8054612d2890613e8b565b80601f0160208091040260200160405190810160405280929190818152602001828054612d5490613e8b565b8015612da15780601f10612d7657610100808354040283529160200191612da1565b820191906000526020600020905b815481529060010190602001808311612d8457829003601f168201915b5050505050905090565b6060612db682611fba565b612df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dec90615320565b60405180910390fd5b6000612dff612d18565b90506000815111612e1f5760405180602001604052806000815250612e4a565b80612e298461303e565b604051602001612e3a9291906150bf565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ec783838361319f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f0a57612f05816131a4565b612f49565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f4857612f4783826131ed565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f8c57612f878161335a565b612fcb565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612fca57612fc9828261342b565b5b5b505050565b612fda83836134aa565b612fe76000848484612b81565b613026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301d90614fd1565b60405180910390fd5b505050565b600080823b905060008111915050919050565b60606000821415613086576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061319a565b600082905060005b600082146130b85780806130a1906148dc565b915050600a826130b19190614213565b915061308e565b60008167ffffffffffffffff8111156130d4576130d3613aeb565b5b6040519080825280601f01601f1916602001820160405280156131065781602001600182028036833780820191505090505b5090505b600085146131935760018261311f9190614244565b9150600a8561312e919061519a565b603061313a9190614134565b60f81b8183815181106131505761314f6145b4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561318c9190614213565b945061310a565b8093505050505b919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131fa84611341565b6132049190614244565b90506000600860008481526020019081526020016000205490508181146132e9576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061336e9190614244565b90506000600a600084815260200190815260200160002054905060006009838154811061339e5761339d6145b4565b5b9060005260206000200154905080600983815481106133c0576133bf6145b4565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061340f5761340e615340565b5b6001900381819060005260206000200160009055905550505050565b600061343683611341565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561351a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613511906153bb565b60405180910390fd5b61352381611fba565b15613563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355a90615427565b60405180910390fd5b61356f600083836129ee565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135bf9190614134565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461368490613e8b565b90600052602060002090601f0160209004810192826136a657600085556136ed565b82601f106136bf57805160ff19168380011785556136ed565b828001600101855582156136ed579182015b828111156136ec5782518255916020019190600101906136d1565b5b5090506136fa91906136fe565b5090565b5b808211156137175760008160009055506001016136ff565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137468261371b565b9050919050565b6137568161373b565b82525050565b6000819050919050565b61376f8161375c565b82525050565b600060408201905061378a600083018561374d565b6137976020830184613766565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137e7816137b2565b81146137f257600080fd5b50565b600081359050613804816137de565b92915050565b6000602082840312156138205761381f6137a8565b5b600061382e848285016137f5565b91505092915050565b60008115159050919050565b61384c81613837565b82525050565b60006020820190506138676000830184613843565b92915050565b60006020820190506138826000830184613766565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138c25780820151818401526020810190506138a7565b838111156138d1576000848401525b50505050565b6000601f19601f8301169050919050565b60006138f382613888565b6138fd8185613893565b935061390d8185602086016138a4565b613916816138d7565b840191505092915050565b6000602082019050818103600083015261393b81846138e8565b905092915050565b61394c8161375c565b811461395757600080fd5b50565b60008135905061396981613943565b92915050565b600060208284031215613985576139846137a8565b5b60006139938482850161395a565b91505092915050565b60006020820190506139b1600083018461374d565b92915050565b6139c08161373b565b81146139cb57600080fd5b50565b6000813590506139dd816139b7565b92915050565b600080604083850312156139fa576139f96137a8565b5b6000613a08858286016139ce565b9250506020613a198582860161395a565b9150509250929050565b6000613a2e8261371b565b9050919050565b613a3e81613a23565b8114613a4957600080fd5b50565b600081359050613a5b81613a35565b92915050565b600060208284031215613a7757613a766137a8565b5b6000613a8584828501613a4c565b91505092915050565b600080600060608486031215613aa757613aa66137a8565b5b6000613ab5868287016139ce565b9350506020613ac6868287016139ce565b9250506040613ad78682870161395a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b23826138d7565b810181811067ffffffffffffffff82111715613b4257613b41613aeb565b5b80604052505050565b6000613b5561379e565b9050613b618282613b1a565b919050565b600067ffffffffffffffff821115613b8157613b80613aeb565b5b613b8a826138d7565b9050602081019050919050565b82818337600083830152505050565b6000613bb9613bb484613b66565b613b4b565b905082815260208101848484011115613bd557613bd4613ae6565b5b613be0848285613b97565b509392505050565b600082601f830112613bfd57613bfc613ae1565b5b8135613c0d848260208601613ba6565b91505092915050565b600060208284031215613c2c57613c2b6137a8565b5b600082013567ffffffffffffffff811115613c4a57613c496137ad565b5b613c5684828501613be8565b91505092915050565b600060208284031215613c7557613c746137a8565b5b6000613c83848285016139ce565b91505092915050565b613c9581613837565b8114613ca057600080fd5b50565b600081359050613cb281613c8c565b92915050565b60008060408385031215613ccf57613cce6137a8565b5b6000613cdd858286016139ce565b9250506020613cee85828601613ca3565b9150509250929050565b600067ffffffffffffffff821115613d1357613d12613aeb565b5b613d1c826138d7565b9050602081019050919050565b6000613d3c613d3784613cf8565b613b4b565b905082815260208101848484011115613d5857613d57613ae6565b5b613d63848285613b97565b509392505050565b600082601f830112613d8057613d7f613ae1565b5b8135613d90848260208601613d29565b91505092915050565b60008060008060808587031215613db357613db26137a8565b5b6000613dc1878288016139ce565b9450506020613dd2878288016139ce565b9350506040613de38782880161395a565b925050606085013567ffffffffffffffff811115613e0457613e036137ad565b5b613e1087828801613d6b565b91505092959194509250565b60008060408385031215613e3357613e326137a8565b5b6000613e41858286016139ce565b9250506020613e52858286016139ce565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ea357607f821691505b60208210811415613eb757613eb6613e5c565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613f19602c83613893565b9150613f2482613ebd565b604082019050919050565b60006020820190508181036000830152613f4881613f0c565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fab602183613893565b9150613fb682613f4f565b604082019050919050565b60006020820190508181036000830152613fda81613f9e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061403d603883613893565b915061404882613fe1565b604082019050919050565b6000602082019050818103600083015261406c81614030565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b60006140cf602683613893565b91506140da82614073565b604082019050919050565b600060208201905081810360008301526140fe816140c2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061413f8261375c565b915061414a8361375c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561417f5761417e614105565b5b828201905092915050565b60006141958261375c565b91506141a08361375c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141d9576141d8614105565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061421e8261375c565b91506142298361375c565b925082614239576142386141e4565b5b828204905092915050565b600061424f8261375c565b915061425a8361375c565b92508282101561426d5761426c614105565b5b828203905092915050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b60006142d4602b83613893565b91506142df82614278565b604082019050919050565b60006020820190508181036000830152614303816142c7565b9050919050565b6000819050919050565b600061432f61432a6143258461371b565b61430a565b61371b565b9050919050565b600061434182614314565b9050919050565b600061435382614336565b9050919050565b61436381614348565b82525050565b600060408201905061437e600083018561435a565b61438b6020830184613766565b9392505050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006143ee603183613893565b91506143f982614392565b604082019050919050565b6000602082019050818103600083015261441d816143e1565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614480602b83613893565b915061448b82614424565b604082019050919050565b600060208201905081810360008301526144af81614473565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144ec602083613893565b91506144f7826144b6565b602082019050919050565b6000602082019050818103600083015261451b816144df565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061457e602c83613893565b915061458982614522565b604082019050919050565b600060208201905081810360008301526145ad81614571565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061463f602983613893565b915061464a826145e3565b604082019050919050565b6000602082019050818103600083015261466e81614632565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006146d1602a83613893565b91506146dc82614675565b604082019050919050565b60006020820190508181036000830152614700816146c4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061473d601f83613893565b915061474882614707565b602082019050919050565b6000602082019050818103600083015261476c81614730565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006147a9601083613893565b91506147b482614773565b602082019050919050565b600060208201905081810360008301526147d88161479c565b9050919050565b6000815190506147ee81613943565b92915050565b60006020828403121561480a576148096137a8565b5b6000614818848285016147df565b91505092915050565b7f535043205472656173757265204b6579733a206e6f7420656e6f756768206b6560008201527f7973000000000000000000000000000000000000000000000000000000000000602082015250565b600061487d602283613893565b915061488882614821565b604082019050919050565b600060208201905081810360008301526148ac81614870565b9050919050565b60006040820190506148c86000830185613766565b6148d5602083018461374d565b9392505050565b60006148e78261375c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561491a57614919614105565b5b600182019050919050565b7f507572636861736520776f756c642065786365656420617661696c61626c652060008201527f737570706c79206f6620746f6b656e7300000000000000000000000000000000602082015250565b6000614981603083613893565b915061498c82614925565b604082019050919050565b600060208201905081810360008301526149b081614974565b9050919050565b7f546f6f206d616e7920746f6b656e73206174206f6e6365000000000000000000600082015250565b60006149ed601783613893565b91506149f8826149b7565b602082019050919050565b60006020820190508181036000830152614a1c816149e0565b9050919050565b7f596f752063616e2774206d696e74206d6f726520746f6b656e73000000000000600082015250565b6000614a59601a83613893565b9150614a6482614a23565b602082019050919050565b60006020820190508181036000830152614a8881614a4c565b9050919050565b7f596f75206e65656420746f207061792074686520657861637420707269636500600082015250565b6000614ac5601f83613893565b9150614ad082614a8f565b602082019050919050565b60006020820190508181036000830152614af481614ab8565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614b31601983613893565b9150614b3c82614afb565b602082019050919050565b60006020820190508181036000830152614b6081614b24565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614bc3602683613893565b9150614bce82614b67565b604082019050919050565b60006020820190508181036000830152614bf281614bb6565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614c2f601d83613893565b9150614c3a82614bf9565b602082019050919050565b60006020820190508181036000830152614c5e81614c22565b9050919050565b600081905092915050565b50565b6000614c80600083614c65565b9150614c8b82614c70565b600082019050919050565b6000614ca182614c73565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614d07603a83613893565b9150614d1282614cab565b604082019050919050565b60006020820190508181036000830152614d3681614cfa565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614d99602c83613893565b9150614da482614d3d565b604082019050919050565b60006020820190508181036000830152614dc881614d8c565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614e2b602983613893565b9150614e3682614dcf565b604082019050919050565b60006020820190508181036000830152614e5a81614e1e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614ebd602483613893565b9150614ec882614e61565b604082019050919050565b60006020820190508181036000830152614eec81614eb0565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614f29601483613893565b9150614f3482614ef3565b602082019050919050565b60006020820190508181036000830152614f5881614f1c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614fbb603283613893565b9150614fc682614f5f565b604082019050919050565b60006020820190508181036000830152614fea81614fae565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b600061504d603183613893565b915061505882614ff1565b604082019050919050565b6000602082019050818103600083015261507c81615040565b9050919050565b600081905092915050565b600061509982613888565b6150a38185615083565b93506150b38185602086016138a4565b80840191505092915050565b60006150cb828561508e565b91506150d7828461508e565b91508190509392505050565b6000819050919050565b6150fe6150f98261375c565b6150e3565b82525050565b60008160601b9050919050565b600061511c82615104565b9050919050565b600061512e82615111565b9050919050565b6151466151418261373b565b615123565b82525050565b600061515882876150ed565b6020820191506151688286615135565b60148201915061517882856150ed565b60208201915061518882846150ed565b60208201915081905095945050505050565b60006151a58261375c565b91506151b08361375c565b9250826151c0576151bf6141e4565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006151f2826151cb565b6151fc81856151d6565b935061520c8185602086016138a4565b615215816138d7565b840191505092915050565b6000608082019050615235600083018761374d565b615242602083018661374d565b61524f6040830185613766565b818103606083015261526181846151e7565b905095945050505050565b60008151905061527b816137de565b92915050565b600060208284031215615297576152966137a8565b5b60006152a58482850161526c565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061530a602f83613893565b9150615315826152ae565b604082019050919050565b60006020820190508181036000830152615339816152fd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006153a5602083613893565b91506153b08261536f565b602082019050919050565b600060208201905081810360008301526153d481615398565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615411601c83613893565b915061541c826153db565b602082019050919050565b6000602082019050818103600083015261544081615404565b905091905056fea26469706673582212202da20ff505cf440370042e50c9c02f491acaf3903c94e22328bd46c0e9c942fb64736f6c63430008090033

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.