ETH Price: $2,447.03 (+6.18%)

Token

Come To Daddy (C2D)
 

Overview

Max Total Supply

66 C2D

Holders

36

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 C2D
0xe59b87e987a813d479a6e897c28aa6132a4e94cc
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ComeToDaddyToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 18 : ComeToDaddyToken.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

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";

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

  uint256 public constant TOKEN_LIMIT = 8888;

  uint256 private _maxTokensAtOnce;

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

  uint256 private _tokenPrice;
  uint256[] private _teamShares = [60, 40];
  address[] private _team = [0xa42124D4C69a23602114bF8a61a4d2f081C8Af59, 0xa1c8049521f2b1e6FCC165cFB6E456E195D78699];

  string private __baseURI;

  constructor()
    PaymentSplitter(_team, _teamShares)
    ERC721("Come To Daddy", "C2D")
  {
    setBaseURI("https://api.cometodaddy.io/metadata/");
    setTokenPrice(4e16);
    setMaxTokensAtOnce(20);
  }

  function mintMany(uint256 _amount) public payable nonReentrant whenNotPaused {
    require(totalSupply().add(_amount) <= TOKEN_LIMIT, "Purchase would exceed available supply of tokens");
    require(_amount <= _maxTokensAtOnce, "Too many tokens at once");
    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 devMint(uint256 _amount) public nonReentrant onlyOwner {
    for(uint256 i = 0; i < _amount; i++) {
      _mintOne(msg.sender);
    }
  }

  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 maxTokensAtOnce() public view returns (uint256) {
    return _maxTokensAtOnce;
  }

  function setMaxTokensAtOnce(uint256 _count) public onlyOwner {
    _maxTokensAtOnce = _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 _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",
        "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":"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":"_amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_price","type":"uint256"}],"name":"setTokenPrice","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"}]

608060405260006013556040518060400160405280603c60ff168152602001602860ff168152506122cd906002620000399291906200091d565b50604051806040016040528073a42124d4c69a23602114bf8a61a4d2f081c8af5973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173a1c8049521f2b1e6fcc165cfb6e456e195d7869973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152506122ce906002620000e292919062000974565b50348015620000f057600080fd5b506122ce8054806020026020016040519081016040528092919081815260200182805480156200017657602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116200012b575b50505050506122cd805480602002602001604051908101604052809291908181526020018280548015620001ca57602002820191906000526020600020905b815481526020019060010190808311620001b5575b50505050506040518060400160405280600d81526020017f436f6d6520546f204461646479000000000000000000000000000000000000008152506040518060400160405280600381526020017f433244000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200025392919062000a03565b5080600190805190602001906200026c92919062000a03565b5050506200028f620002836200040c60201b60201c565b6200041460201b60201c565b6000600b60146101000a81548160ff0219169083151502179055508051825114620002f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e89062000b3a565b60405180910390fd5b600082511162000338576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032f9062000bac565b60405180910390fd5b60005b8251811015620003a757620003918382815181106200035f576200035e62000bce565b5b60200260200101518383815181106200037d576200037c62000bce565b5b6020026020010151620004da60201b60201c565b80806200039e9062000c36565b9150506200033b565b5050506001601181905550620003dc60405180606001604052806024815260200162005f1b602491396200071460201b60201c565b620003f4668e1bc9bf040000620007c060201b60201c565b6200040660146200085a60201b60201c565b62000fdd565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200054d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005449062000cfa565b60405180910390fd5b6000811162000593576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058a9062000d6c565b60405180910390fd5b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000618576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200060f9062000e04565b60405180910390fd5b6010829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c54620006cf919062000e26565b600c819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200070892919062000ed9565b60405180910390a15050565b620007246200040c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200074a620008f360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200079a9062000f56565b60405180910390fd5b806122cf9080519060200190620007bc92919062000a03565b5050565b620007d06200040c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007f6620008f360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200084f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008469062000f56565b60405180910390fd5b806122cc8190555050565b6200086a6200040c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000890620008f360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e09062000f56565b60405180910390fd5b8060128190555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805482825590600052602060002090810192821562000961579160200282015b8281111562000960578251829060ff169055916020019190600101906200093e565b5b50905062000970919062000a94565b5090565b828054828255906000526020600020908101928215620009f0579160200282015b82811115620009ef5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000995565b5b509050620009ff919062000a94565b5090565b82805462000a119062000fa7565b90600052602060002090601f01602090048101928262000a35576000855562000a81565b82601f1062000a5057805160ff191683800117855562000a81565b8280016001018555821562000a81579182015b8281111562000a8057825182559160200191906001019062000a63565b5b50905062000a90919062000a94565b5090565b5b8082111562000aaf57600081600090555060010162000a95565b5090565b600082825260208201905092915050565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b600062000b2260328362000ab3565b915062000b2f8262000ac4565b604082019050919050565b6000602082019050818103600083015262000b558162000b13565b9050919050565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b600062000b94601a8362000ab3565b915062000ba18262000b5c565b602082019050919050565b6000602082019050818103600083015262000bc78162000b85565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b600062000c438262000c2c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000c795762000c7862000bfd565b5b600182019050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600062000ce2602c8362000ab3565b915062000cef8262000c84565b604082019050919050565b6000602082019050818103600083015262000d158162000cd3565b9050919050565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b600062000d54601d8362000ab3565b915062000d618262000d1c565b602082019050919050565b6000602082019050818103600083015262000d878162000d45565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b600062000dec602b8362000ab3565b915062000df98262000d8e565b604082019050919050565b6000602082019050818103600083015262000e1f8162000ddd565b9050919050565b600062000e338262000c2c565b915062000e408362000c2c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e785762000e7762000bfd565b5b828201905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000eb08262000e83565b9050919050565b62000ec28162000ea3565b82525050565b62000ed38162000c2c565b82525050565b600060408201905062000ef0600083018562000eb7565b62000eff602083018462000ec8565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f3e60208362000ab3565b915062000f4b8262000f06565b602082019050919050565b6000602082019050818103600083015262000f718162000f2f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fc057607f821691505b6020821081141562000fd75762000fd662000f78565b5b50919050565b614f2e8062000fed6000396000f3fe6080604052600436106102085760003560e01c80634f6ccce71161011857806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd146107a3578063ce7c2ac2146107e0578063e33b7de31461081d578063e985e9c514610848578063f2fde38b146108855761024f565b806395d89b41146106e95780639852595c14610714578063a22cb46514610751578063b88d4fde1461077a5761024f565b80636a61e5fc116100e75780636a61e5fc1461060457806370a082311461062d578063715018a61461066a5780638b83209b146106815780638da5cb5b146106be5761024f565b80634f6ccce71461053657806355f804b3146105735780635c975abb1461059c5780636352211e146105c75761024f565b806322a7cf5f1161019b57806336566f061161016a57806336566f0614610477578063375a069a1461048e5780633a98ef39146104b757806342842e0e146104e25780634b94f50e1461050b5761024f565b806322a7cf5f146103bd57806323b872dd146103e85780632f745c591461041157806330571c581461044e5761024f565b8063081812fc116101d7578063081812fc14610303578063095ea7b31461034057806318160ddd1461036957806319165587146103945761024f565b806301ffc9a714610254578063031bd4c414610291578063059513a6146102bc57806306fdde03146102d85761024f565b3661024f577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102366108ae565b3460405161024592919061338f565b60405180910390a1005b600080fd5b34801561026057600080fd5b5061027b60048036038101906102769190613424565b6108b6565b604051610288919061346c565b60405180910390f35b34801561029d57600080fd5b506102a66108c8565b6040516102b39190613487565b60405180910390f35b6102d660048036038101906102d191906134ce565b6108ce565b005b3480156102e457600080fd5b506102ed610a95565b6040516102fa9190613594565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906134ce565b610b27565b60405161033791906135b6565b60405180910390f35b34801561034c57600080fd5b50610367600480360381019061036291906135fd565b610bac565b005b34801561037557600080fd5b5061037e610cc4565b60405161038b9190613487565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b6919061367b565b610cd1565b005b3480156103c957600080fd5b506103d2610f39565b6040516103df9190613487565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906136a8565b610f43565b005b34801561041d57600080fd5b50610438600480360381019061043391906135fd565b610fa3565b6040516104459190613487565b60405180910390f35b34801561045a57600080fd5b50610475600480360381019061047091906134ce565b611048565b005b34801561048357600080fd5b5061048c6110ce565b005b34801561049a57600080fd5b506104b560048036038101906104b091906134ce565b61116f565b005b3480156104c357600080fd5b506104cc61126c565b6040516104d99190613487565b60405180910390f35b3480156104ee57600080fd5b50610509600480360381019061050491906136a8565b611276565b005b34801561051757600080fd5b50610520611296565b60405161052d9190613487565b60405180910390f35b34801561054257600080fd5b5061055d600480360381019061055891906134ce565b6112a1565b60405161056a9190613487565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190613830565b611312565b005b3480156105a857600080fd5b506105b16113a9565b6040516105be919061346c565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e991906134ce565b6113c0565b6040516105fb91906135b6565b60405180910390f35b34801561061057600080fd5b5061062b600480360381019061062691906134ce565b611472565b005b34801561063957600080fd5b50610654600480360381019061064f9190613879565b6114f9565b6040516106619190613487565b60405180910390f35b34801561067657600080fd5b5061067f6115b1565b005b34801561068d57600080fd5b506106a860048036038101906106a391906134ce565b611639565b6040516106b591906135b6565b60405180910390f35b3480156106ca57600080fd5b506106d3611681565b6040516106e091906135b6565b60405180910390f35b3480156106f557600080fd5b506106fe6116ab565b60405161070b9190613594565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190613879565b61173d565b6040516107489190613487565b60405180910390f35b34801561075d57600080fd5b50610778600480360381019061077391906138d2565b611786565b005b34801561078657600080fd5b506107a1600480360381019061079c91906139b3565b611907565b005b3480156107af57600080fd5b506107ca60048036038101906107c591906134ce565b611969565b6040516107d79190613594565b60405180910390f35b3480156107ec57600080fd5b5061080760048036038101906108029190613879565b61197b565b6040516108149190613487565b60405180910390f35b34801561082957600080fd5b506108326119c4565b60405161083f9190613487565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a9190613a36565b6119ce565b60405161087c919061346c565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190613879565b611a62565b005b600033905090565b60006108c182611b5a565b9050919050565b6122b881565b60026011541415610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b90613ac2565b60405180910390fd5b60026011819055506109246113a9565b15610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90613b2e565b60405180910390fd5b6122b861098182610973610cc4565b611bd490919063ffffffff16565b11156109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b990613bc0565b60405180910390fd5b601254811115610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90613c2c565b60405180910390fd5b34610a2282610a14611296565b611bea90919063ffffffff16565b14610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990613c98565b60405180910390fd5b60005b81811015610a8957610a7633611c00565b8080610a8190613ce7565b915050610a65565b50600160118190555050565b606060008054610aa490613d5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad090613d5f565b8015610b1d5780601f10610af257610100808354040283529160200191610b1d565b820191906000526020600020905b815481529060010190602001808311610b0057829003601f168201915b5050505050905090565b6000610b3282611c1a565b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890613e03565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb7826113c0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90613e95565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c476108ae565b73ffffffffffffffffffffffffffffffffffffffff161480610c765750610c7581610c706108ae565b6119ce565b5b610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac90613f27565b60405180910390fd5b610cbf8383611c86565b505050565b6000600980549050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90613fb9565b60405180910390fd5b6000600d5447610d639190613fd9565b90506000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610df5919061402f565b610dff91906140b8565b610e0991906140e9565b90506000811415610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e469061418f565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e9a9190613fd9565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d54610eeb9190613fd9565b600d81905550610efb8382611d3f565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610f2c92919061420e565b60405180910390a1505050565b6000601254905090565b610f54610f4e6108ae565b82611e33565b610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a906142a9565b60405180910390fd5b610f9e838383611f11565b505050565b6000610fae836114f9565b8210610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe69061433b565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110506108ae565b73ffffffffffffffffffffffffffffffffffffffff1661106e611681565b73ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb906143a7565b60405180910390fd5b8060128190555050565b6110d66108ae565b73ffffffffffffffffffffffffffffffffffffffff166110f4611681565b73ffffffffffffffffffffffffffffffffffffffff161461114a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611141906143a7565b60405180910390fd5b6111526113a9565b156111645761115f61216d565b61116d565b61116c61220f565b5b565b600260115414156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90613ac2565b60405180910390fd5b60026011819055506111c56108ae565b73ffffffffffffffffffffffffffffffffffffffff166111e3611681565b73ffffffffffffffffffffffffffffffffffffffff1614611239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611230906143a7565b60405180910390fd5b60005b818110156112605761124d33611c00565b808061125890613ce7565b91505061123c565b50600160118190555050565b6000600c54905090565b61129183838360405180602001604052806000815250611907565b505050565b60006122cc54905090565b60006112ab610cc4565b82106112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390614439565b60405180910390fd5b60098281548110611300576112ff614459565b5b90600052602060002001549050919050565b61131a6108ae565b73ffffffffffffffffffffffffffffffffffffffff16611338611681565b73ffffffffffffffffffffffffffffffffffffffff161461138e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611385906143a7565b60405180910390fd5b806122cf90805190602001906113a5929190613292565b5050565b6000600b60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611469576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611460906144fa565b60405180910390fd5b80915050919050565b61147a6108ae565b73ffffffffffffffffffffffffffffffffffffffff16611498611681565b73ffffffffffffffffffffffffffffffffffffffff16146114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e5906143a7565b60405180910390fd5b806122cc8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561156a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115619061458c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115b96108ae565b73ffffffffffffffffffffffffffffffffffffffff166115d7611681565b73ffffffffffffffffffffffffffffffffffffffff161461162d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611624906143a7565b60405180910390fd5b61163760006122b2565b565b60006010828154811061164f5761164e614459565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116ba90613d5f565b80601f01602080910402602001604051908101604052809291908181526020018280546116e690613d5f565b80156117335780601f1061170857610100808354040283529160200191611733565b820191906000526020600020905b81548152906001019060200180831161171657829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61178e6108ae565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f3906145f8565b60405180910390fd5b80600560006118096108ae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118b66108ae565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118fb919061346c565b60405180910390a35050565b6119186119126108ae565b83611e33565b611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e906142a9565b60405180910390fd5b61196384848484612378565b50505050565b6060611974826123d4565b9050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a6a6108ae565b73ffffffffffffffffffffffffffffffffffffffff16611a88611681565b73ffffffffffffffffffffffffffffffffffffffff1614611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad5906143a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b459061468a565b60405180910390fd5b611b57816122b2565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bcd5750611bcc82612526565b5b9050919050565b60008183611be29190613fd9565b905092915050565b60008183611bf8919061402f565b905092915050565b6000611c0a612608565b9050611c16828261276d565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cf9836113c0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d79906146f6565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611da890614747565b60006040518083038185875af1925050503d8060008114611de5576040519150601f19603f3d011682016040523d82523d6000602084013e611dea565b606091505b5050905080611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e25906147ce565b60405180910390fd5b505050565b6000611e3e82611c1a565b611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490614860565b60405180910390fd5b6000611e88836113c0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ef757508373ffffffffffffffffffffffffffffffffffffffff16611edf84610b27565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f085750611f0781856119ce565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f31826113c0565b73ffffffffffffffffffffffffffffffffffffffff1614611f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7e906148f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee90614984565b60405180910390fd5b61200283838361278b565b61200d600082611c86565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205d91906140e9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120b49190613fd9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6121756113a9565b6121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab906149f0565b60405180910390fd5b6000600b60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121f86108ae565b60405161220591906135b6565b60405180910390a1565b6122176113a9565b15612257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224e90613b2e565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861229b6108ae565b6040516122a891906135b6565b60405180910390a1565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612383848484611f11565b61238f8484848461279b565b6123ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c590614a82565b60405180910390fd5b50505050565b60606123df82611c1a565b61241e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241590614b14565b60405180910390fd5b600060066000848152602001908152602001600020805461243e90613d5f565b80601f016020809104026020016040519081016040528092919081815260200182805461246a90613d5f565b80156124b75780601f1061248c576101008083540402835291602001916124b7565b820191906000526020600020905b81548152906001019060200180831161249a57829003601f168201915b5050505050905060006124c8612932565b90506000815114156124de578192505050612521565b6000825111156125135780826040516020016124fb929190614b70565b60405160208183030381529060405292505050612521565b61251c846129c5565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125f157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612601575061260082612a6c565b5b9050919050565b600080612613610cc4565b6122b861262091906140e9565b905060008160135433444260405160200161263e9493929190614bfd565b6040516020818303038152906040528051906020012060001c6126619190614c4b565b90506000806014836122b8811061267b5761267a614459565b5b0154146126a0576014826122b8811061269757612696614459565b5b015490506126a4565b8190505b600060146001856126b591906140e9565b6122b881106126c7576126c6614459565b5b015414156126fb576001836126dc91906140e9565b6014836122b881106126f1576126f0614459565b5b0181905550612739565b601460018461270a91906140e9565b6122b8811061271c5761271b614459565b5b01546014836122b8811061273357612732614459565b5b01819055505b6013600081548092919061274c90613ce7565b9190505550612765600182611bd490919063ffffffff16565b935050505090565b612787828260405180602001604052806000815250612ad6565b5050565b612796838383612b31565b505050565b60006127bc8473ffffffffffffffffffffffffffffffffffffffff16612c45565b15612925578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127e56108ae565b8786866040518563ffffffff1660e01b81526004016128079493929190614cd1565b602060405180830381600087803b15801561282157600080fd5b505af192505050801561285257506040513d601f19601f8201168201806040525081019061284f9190614d32565b60015b6128d5573d8060008114612882576040519150601f19603f3d011682016040523d82523d6000602084013e612887565b606091505b506000815114156128cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c490614a82565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061292a565b600190505b949350505050565b60606122cf805461294290613d5f565b80601f016020809104026020016040519081016040528092919081815260200182805461296e90613d5f565b80156129bb5780601f10612990576101008083540402835291602001916129bb565b820191906000526020600020905b81548152906001019060200180831161299e57829003601f168201915b5050505050905090565b60606129d082611c1a565b612a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0690614dd1565b60405180910390fd5b6000612a19612932565b90506000815111612a395760405180602001604052806000815250612a64565b80612a4384612c58565b604051602001612a54929190614b70565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ae08383612db9565b612aed600084848461279b565b612b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2390614a82565b60405180910390fd5b505050565b612b3c838383612f87565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b7f57612b7a81612f8c565b612bbe565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bbd57612bbc8382612fd5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c0157612bfc81613142565b612c40565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c3f57612c3e8282613213565b5b5b505050565b600080823b905060008111915050919050565b60606000821415612ca0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612db4565b600082905060005b60008214612cd2578080612cbb90613ce7565b915050600a82612ccb91906140b8565b9150612ca8565b60008167ffffffffffffffff811115612cee57612ced613705565b5b6040519080825280601f01601f191660200182016040528015612d205781602001600182028036833780820191505090505b5090505b60008514612dad57600182612d3991906140e9565b9150600a85612d489190614c4b565b6030612d549190613fd9565b60f81b818381518110612d6a57612d69614459565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612da691906140b8565b9450612d24565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2090614e3d565b60405180910390fd5b612e3281611c1a565b15612e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6990614ea9565b60405180910390fd5b612e7e6000838361278b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ece9190613fd9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612fe2846114f9565b612fec91906140e9565b90506000600860008481526020019081526020016000205490508181146130d1576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061315691906140e9565b90506000600a600084815260200190815260200160002054905060006009838154811061318657613185614459565b5b9060005260206000200154905080600983815481106131a8576131a7614459565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806131f7576131f6614ec9565b5b6001900381819060005260206000200160009055905550505050565b600061321e836114f9565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b82805461329e90613d5f565b90600052602060002090601f0160209004810192826132c05760008555613307565b82601f106132d957805160ff1916838001178555613307565b82800160010185558215613307579182015b828111156133065782518255916020019190600101906132eb565b5b5090506133149190613318565b5090565b5b80821115613331576000816000905550600101613319565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061336082613335565b9050919050565b61337081613355565b82525050565b6000819050919050565b61338981613376565b82525050565b60006040820190506133a46000830185613367565b6133b16020830184613380565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613401816133cc565b811461340c57600080fd5b50565b60008135905061341e816133f8565b92915050565b60006020828403121561343a576134396133c2565b5b60006134488482850161340f565b91505092915050565b60008115159050919050565b61346681613451565b82525050565b6000602082019050613481600083018461345d565b92915050565b600060208201905061349c6000830184613380565b92915050565b6134ab81613376565b81146134b657600080fd5b50565b6000813590506134c8816134a2565b92915050565b6000602082840312156134e4576134e36133c2565b5b60006134f2848285016134b9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561353557808201518184015260208101905061351a565b83811115613544576000848401525b50505050565b6000601f19601f8301169050919050565b6000613566826134fb565b6135708185613506565b9350613580818560208601613517565b6135898161354a565b840191505092915050565b600060208201905081810360008301526135ae818461355b565b905092915050565b60006020820190506135cb6000830184613367565b92915050565b6135da81613355565b81146135e557600080fd5b50565b6000813590506135f7816135d1565b92915050565b60008060408385031215613614576136136133c2565b5b6000613622858286016135e8565b9250506020613633858286016134b9565b9150509250929050565b600061364882613335565b9050919050565b6136588161363d565b811461366357600080fd5b50565b6000813590506136758161364f565b92915050565b600060208284031215613691576136906133c2565b5b600061369f84828501613666565b91505092915050565b6000806000606084860312156136c1576136c06133c2565b5b60006136cf868287016135e8565b93505060206136e0868287016135e8565b92505060406136f1868287016134b9565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61373d8261354a565b810181811067ffffffffffffffff8211171561375c5761375b613705565b5b80604052505050565b600061376f6133b8565b905061377b8282613734565b919050565b600067ffffffffffffffff82111561379b5761379a613705565b5b6137a48261354a565b9050602081019050919050565b82818337600083830152505050565b60006137d36137ce84613780565b613765565b9050828152602081018484840111156137ef576137ee613700565b5b6137fa8482856137b1565b509392505050565b600082601f830112613817576138166136fb565b5b81356138278482602086016137c0565b91505092915050565b600060208284031215613846576138456133c2565b5b600082013567ffffffffffffffff811115613864576138636133c7565b5b61387084828501613802565b91505092915050565b60006020828403121561388f5761388e6133c2565b5b600061389d848285016135e8565b91505092915050565b6138af81613451565b81146138ba57600080fd5b50565b6000813590506138cc816138a6565b92915050565b600080604083850312156138e9576138e86133c2565b5b60006138f7858286016135e8565b9250506020613908858286016138bd565b9150509250929050565b600067ffffffffffffffff82111561392d5761392c613705565b5b6139368261354a565b9050602081019050919050565b600061395661395184613912565b613765565b90508281526020810184848401111561397257613971613700565b5b61397d8482856137b1565b509392505050565b600082601f83011261399a576139996136fb565b5b81356139aa848260208601613943565b91505092915050565b600080600080608085870312156139cd576139cc6133c2565b5b60006139db878288016135e8565b94505060206139ec878288016135e8565b93505060406139fd878288016134b9565b925050606085013567ffffffffffffffff811115613a1e57613a1d6133c7565b5b613a2a87828801613985565b91505092959194509250565b60008060408385031215613a4d57613a4c6133c2565b5b6000613a5b858286016135e8565b9250506020613a6c858286016135e8565b9150509250929050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613aac601f83613506565b9150613ab782613a76565b602082019050919050565b60006020820190508181036000830152613adb81613a9f565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613b18601083613506565b9150613b2382613ae2565b602082019050919050565b60006020820190508181036000830152613b4781613b0b565b9050919050565b7f507572636861736520776f756c642065786365656420617661696c61626c652060008201527f737570706c79206f6620746f6b656e7300000000000000000000000000000000602082015250565b6000613baa603083613506565b9150613bb582613b4e565b604082019050919050565b60006020820190508181036000830152613bd981613b9d565b9050919050565b7f546f6f206d616e7920746f6b656e73206174206f6e6365000000000000000000600082015250565b6000613c16601783613506565b9150613c2182613be0565b602082019050919050565b60006020820190508181036000830152613c4581613c09565b9050919050565b7f596f75206e65656420746f207061792074686520657861637420707269636500600082015250565b6000613c82601f83613506565b9150613c8d82613c4c565b602082019050919050565b60006020820190508181036000830152613cb181613c75565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cf282613376565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d2557613d24613cb8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d7757607f821691505b60208210811415613d8b57613d8a613d30565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613ded602c83613506565b9150613df882613d91565b604082019050919050565b60006020820190508181036000830152613e1c81613de0565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e7f602183613506565b9150613e8a82613e23565b604082019050919050565b60006020820190508181036000830152613eae81613e72565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613f11603883613506565b9150613f1c82613eb5565b604082019050919050565b60006020820190508181036000830152613f4081613f04565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b6000613fa3602683613506565b9150613fae82613f47565b604082019050919050565b60006020820190508181036000830152613fd281613f96565b9050919050565b6000613fe482613376565b9150613fef83613376565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402457614023613cb8565b5b828201905092915050565b600061403a82613376565b915061404583613376565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561407e5761407d613cb8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140c382613376565b91506140ce83613376565b9250826140de576140dd614089565b5b828204905092915050565b60006140f482613376565b91506140ff83613376565b92508282101561411257614111613cb8565b5b828203905092915050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000614179602b83613506565b91506141848261411d565b604082019050919050565b600060208201905081810360008301526141a88161416c565b9050919050565b6000819050919050565b60006141d46141cf6141ca84613335565b6141af565b613335565b9050919050565b60006141e6826141b9565b9050919050565b60006141f8826141db565b9050919050565b614208816141ed565b82525050565b600060408201905061422360008301856141ff565b6142306020830184613380565b9392505050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614293603183613506565b915061429e82614237565b604082019050919050565b600060208201905081810360008301526142c281614286565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614325602b83613506565b9150614330826142c9565b604082019050919050565b6000602082019050818103600083015261435481614318565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614391602083613506565b915061439c8261435b565b602082019050919050565b600060208201905081810360008301526143c081614384565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614423602c83613506565b915061442e826143c7565b604082019050919050565b6000602082019050818103600083015261445281614416565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006144e4602983613506565b91506144ef82614488565b604082019050919050565b60006020820190508181036000830152614513816144d7565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614576602a83613506565b91506145818261451a565b604082019050919050565b600060208201905081810360008301526145a581614569565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006145e2601983613506565b91506145ed826145ac565b602082019050919050565b60006020820190508181036000830152614611816145d5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614674602683613506565b915061467f82614618565b604082019050919050565b600060208201905081810360008301526146a381614667565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006146e0601d83613506565b91506146eb826146aa565b602082019050919050565b6000602082019050818103600083015261470f816146d3565b9050919050565b600081905092915050565b50565b6000614731600083614716565b915061473c82614721565b600082019050919050565b600061475282614724565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006147b8603a83613506565b91506147c38261475c565b604082019050919050565b600060208201905081810360008301526147e7816147ab565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061484a602c83613506565b9150614855826147ee565b604082019050919050565b600060208201905081810360008301526148798161483d565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006148dc602983613506565b91506148e782614880565b604082019050919050565b6000602082019050818103600083015261490b816148cf565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061496e602483613506565b915061497982614912565b604082019050919050565b6000602082019050818103600083015261499d81614961565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006149da601483613506565b91506149e5826149a4565b602082019050919050565b60006020820190508181036000830152614a09816149cd565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614a6c603283613506565b9150614a7782614a10565b604082019050919050565b60006020820190508181036000830152614a9b81614a5f565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000614afe603183613506565b9150614b0982614aa2565b604082019050919050565b60006020820190508181036000830152614b2d81614af1565b9050919050565b600081905092915050565b6000614b4a826134fb565b614b548185614b34565b9350614b64818560208601613517565b80840191505092915050565b6000614b7c8285614b3f565b9150614b888284614b3f565b91508190509392505050565b6000819050919050565b614baf614baa82613376565b614b94565b82525050565b60008160601b9050919050565b6000614bcd82614bb5565b9050919050565b6000614bdf82614bc2565b9050919050565b614bf7614bf282613355565b614bd4565b82525050565b6000614c098287614b9e565b602082019150614c198286614be6565b601482019150614c298285614b9e565b602082019150614c398284614b9e565b60208201915081905095945050505050565b6000614c5682613376565b9150614c6183613376565b925082614c7157614c70614089565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614ca382614c7c565b614cad8185614c87565b9350614cbd818560208601613517565b614cc68161354a565b840191505092915050565b6000608082019050614ce66000830187613367565b614cf36020830186613367565b614d006040830185613380565b8181036060830152614d128184614c98565b905095945050505050565b600081519050614d2c816133f8565b92915050565b600060208284031215614d4857614d476133c2565b5b6000614d5684828501614d1d565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614dbb602f83613506565b9150614dc682614d5f565b604082019050919050565b60006020820190508181036000830152614dea81614dae565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e27602083613506565b9150614e3282614df1565b602082019050919050565b60006020820190508181036000830152614e5681614e1a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614e93601c83613506565b9150614e9e82614e5d565b602082019050919050565b60006020820190508181036000830152614ec281614e86565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220ca5ecafd270336ff64ddd2ee710eeb6ce9909460e4ed34b308713ae1354d686864736f6c6343000809003368747470733a2f2f6170692e636f6d65746f64616464792e696f2f6d657461646174612f

Deployed Bytecode

0x6080604052600436106102085760003560e01c80634f6ccce71161011857806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd146107a3578063ce7c2ac2146107e0578063e33b7de31461081d578063e985e9c514610848578063f2fde38b146108855761024f565b806395d89b41146106e95780639852595c14610714578063a22cb46514610751578063b88d4fde1461077a5761024f565b80636a61e5fc116100e75780636a61e5fc1461060457806370a082311461062d578063715018a61461066a5780638b83209b146106815780638da5cb5b146106be5761024f565b80634f6ccce71461053657806355f804b3146105735780635c975abb1461059c5780636352211e146105c75761024f565b806322a7cf5f1161019b57806336566f061161016a57806336566f0614610477578063375a069a1461048e5780633a98ef39146104b757806342842e0e146104e25780634b94f50e1461050b5761024f565b806322a7cf5f146103bd57806323b872dd146103e85780632f745c591461041157806330571c581461044e5761024f565b8063081812fc116101d7578063081812fc14610303578063095ea7b31461034057806318160ddd1461036957806319165587146103945761024f565b806301ffc9a714610254578063031bd4c414610291578063059513a6146102bc57806306fdde03146102d85761024f565b3661024f577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102366108ae565b3460405161024592919061338f565b60405180910390a1005b600080fd5b34801561026057600080fd5b5061027b60048036038101906102769190613424565b6108b6565b604051610288919061346c565b60405180910390f35b34801561029d57600080fd5b506102a66108c8565b6040516102b39190613487565b60405180910390f35b6102d660048036038101906102d191906134ce565b6108ce565b005b3480156102e457600080fd5b506102ed610a95565b6040516102fa9190613594565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906134ce565b610b27565b60405161033791906135b6565b60405180910390f35b34801561034c57600080fd5b50610367600480360381019061036291906135fd565b610bac565b005b34801561037557600080fd5b5061037e610cc4565b60405161038b9190613487565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b6919061367b565b610cd1565b005b3480156103c957600080fd5b506103d2610f39565b6040516103df9190613487565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906136a8565b610f43565b005b34801561041d57600080fd5b50610438600480360381019061043391906135fd565b610fa3565b6040516104459190613487565b60405180910390f35b34801561045a57600080fd5b50610475600480360381019061047091906134ce565b611048565b005b34801561048357600080fd5b5061048c6110ce565b005b34801561049a57600080fd5b506104b560048036038101906104b091906134ce565b61116f565b005b3480156104c357600080fd5b506104cc61126c565b6040516104d99190613487565b60405180910390f35b3480156104ee57600080fd5b50610509600480360381019061050491906136a8565b611276565b005b34801561051757600080fd5b50610520611296565b60405161052d9190613487565b60405180910390f35b34801561054257600080fd5b5061055d600480360381019061055891906134ce565b6112a1565b60405161056a9190613487565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190613830565b611312565b005b3480156105a857600080fd5b506105b16113a9565b6040516105be919061346c565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e991906134ce565b6113c0565b6040516105fb91906135b6565b60405180910390f35b34801561061057600080fd5b5061062b600480360381019061062691906134ce565b611472565b005b34801561063957600080fd5b50610654600480360381019061064f9190613879565b6114f9565b6040516106619190613487565b60405180910390f35b34801561067657600080fd5b5061067f6115b1565b005b34801561068d57600080fd5b506106a860048036038101906106a391906134ce565b611639565b6040516106b591906135b6565b60405180910390f35b3480156106ca57600080fd5b506106d3611681565b6040516106e091906135b6565b60405180910390f35b3480156106f557600080fd5b506106fe6116ab565b60405161070b9190613594565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190613879565b61173d565b6040516107489190613487565b60405180910390f35b34801561075d57600080fd5b50610778600480360381019061077391906138d2565b611786565b005b34801561078657600080fd5b506107a1600480360381019061079c91906139b3565b611907565b005b3480156107af57600080fd5b506107ca60048036038101906107c591906134ce565b611969565b6040516107d79190613594565b60405180910390f35b3480156107ec57600080fd5b5061080760048036038101906108029190613879565b61197b565b6040516108149190613487565b60405180910390f35b34801561082957600080fd5b506108326119c4565b60405161083f9190613487565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a9190613a36565b6119ce565b60405161087c919061346c565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190613879565b611a62565b005b600033905090565b60006108c182611b5a565b9050919050565b6122b881565b60026011541415610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b90613ac2565b60405180910390fd5b60026011819055506109246113a9565b15610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90613b2e565b60405180910390fd5b6122b861098182610973610cc4565b611bd490919063ffffffff16565b11156109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b990613bc0565b60405180910390fd5b601254811115610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90613c2c565b60405180910390fd5b34610a2282610a14611296565b611bea90919063ffffffff16565b14610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990613c98565b60405180910390fd5b60005b81811015610a8957610a7633611c00565b8080610a8190613ce7565b915050610a65565b50600160118190555050565b606060008054610aa490613d5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad090613d5f565b8015610b1d5780601f10610af257610100808354040283529160200191610b1d565b820191906000526020600020905b815481529060010190602001808311610b0057829003601f168201915b5050505050905090565b6000610b3282611c1a565b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890613e03565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb7826113c0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90613e95565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c476108ae565b73ffffffffffffffffffffffffffffffffffffffff161480610c765750610c7581610c706108ae565b6119ce565b5b610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac90613f27565b60405180910390fd5b610cbf8383611c86565b505050565b6000600980549050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90613fb9565b60405180910390fd5b6000600d5447610d639190613fd9565b90506000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610df5919061402f565b610dff91906140b8565b610e0991906140e9565b90506000811415610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e469061418f565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e9a9190613fd9565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d54610eeb9190613fd9565b600d81905550610efb8382611d3f565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610f2c92919061420e565b60405180910390a1505050565b6000601254905090565b610f54610f4e6108ae565b82611e33565b610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a906142a9565b60405180910390fd5b610f9e838383611f11565b505050565b6000610fae836114f9565b8210610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe69061433b565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110506108ae565b73ffffffffffffffffffffffffffffffffffffffff1661106e611681565b73ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb906143a7565b60405180910390fd5b8060128190555050565b6110d66108ae565b73ffffffffffffffffffffffffffffffffffffffff166110f4611681565b73ffffffffffffffffffffffffffffffffffffffff161461114a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611141906143a7565b60405180910390fd5b6111526113a9565b156111645761115f61216d565b61116d565b61116c61220f565b5b565b600260115414156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90613ac2565b60405180910390fd5b60026011819055506111c56108ae565b73ffffffffffffffffffffffffffffffffffffffff166111e3611681565b73ffffffffffffffffffffffffffffffffffffffff1614611239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611230906143a7565b60405180910390fd5b60005b818110156112605761124d33611c00565b808061125890613ce7565b91505061123c565b50600160118190555050565b6000600c54905090565b61129183838360405180602001604052806000815250611907565b505050565b60006122cc54905090565b60006112ab610cc4565b82106112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390614439565b60405180910390fd5b60098281548110611300576112ff614459565b5b90600052602060002001549050919050565b61131a6108ae565b73ffffffffffffffffffffffffffffffffffffffff16611338611681565b73ffffffffffffffffffffffffffffffffffffffff161461138e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611385906143a7565b60405180910390fd5b806122cf90805190602001906113a5929190613292565b5050565b6000600b60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611469576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611460906144fa565b60405180910390fd5b80915050919050565b61147a6108ae565b73ffffffffffffffffffffffffffffffffffffffff16611498611681565b73ffffffffffffffffffffffffffffffffffffffff16146114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e5906143a7565b60405180910390fd5b806122cc8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561156a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115619061458c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115b96108ae565b73ffffffffffffffffffffffffffffffffffffffff166115d7611681565b73ffffffffffffffffffffffffffffffffffffffff161461162d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611624906143a7565b60405180910390fd5b61163760006122b2565b565b60006010828154811061164f5761164e614459565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116ba90613d5f565b80601f01602080910402602001604051908101604052809291908181526020018280546116e690613d5f565b80156117335780601f1061170857610100808354040283529160200191611733565b820191906000526020600020905b81548152906001019060200180831161171657829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61178e6108ae565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f3906145f8565b60405180910390fd5b80600560006118096108ae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118b66108ae565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118fb919061346c565b60405180910390a35050565b6119186119126108ae565b83611e33565b611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e906142a9565b60405180910390fd5b61196384848484612378565b50505050565b6060611974826123d4565b9050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a6a6108ae565b73ffffffffffffffffffffffffffffffffffffffff16611a88611681565b73ffffffffffffffffffffffffffffffffffffffff1614611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad5906143a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b459061468a565b60405180910390fd5b611b57816122b2565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bcd5750611bcc82612526565b5b9050919050565b60008183611be29190613fd9565b905092915050565b60008183611bf8919061402f565b905092915050565b6000611c0a612608565b9050611c16828261276d565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cf9836113c0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d79906146f6565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611da890614747565b60006040518083038185875af1925050503d8060008114611de5576040519150601f19603f3d011682016040523d82523d6000602084013e611dea565b606091505b5050905080611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e25906147ce565b60405180910390fd5b505050565b6000611e3e82611c1a565b611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490614860565b60405180910390fd5b6000611e88836113c0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ef757508373ffffffffffffffffffffffffffffffffffffffff16611edf84610b27565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f085750611f0781856119ce565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f31826113c0565b73ffffffffffffffffffffffffffffffffffffffff1614611f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7e906148f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee90614984565b60405180910390fd5b61200283838361278b565b61200d600082611c86565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205d91906140e9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120b49190613fd9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6121756113a9565b6121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab906149f0565b60405180910390fd5b6000600b60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121f86108ae565b60405161220591906135b6565b60405180910390a1565b6122176113a9565b15612257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224e90613b2e565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861229b6108ae565b6040516122a891906135b6565b60405180910390a1565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612383848484611f11565b61238f8484848461279b565b6123ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c590614a82565b60405180910390fd5b50505050565b60606123df82611c1a565b61241e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241590614b14565b60405180910390fd5b600060066000848152602001908152602001600020805461243e90613d5f565b80601f016020809104026020016040519081016040528092919081815260200182805461246a90613d5f565b80156124b75780601f1061248c576101008083540402835291602001916124b7565b820191906000526020600020905b81548152906001019060200180831161249a57829003601f168201915b5050505050905060006124c8612932565b90506000815114156124de578192505050612521565b6000825111156125135780826040516020016124fb929190614b70565b60405160208183030381529060405292505050612521565b61251c846129c5565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125f157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612601575061260082612a6c565b5b9050919050565b600080612613610cc4565b6122b861262091906140e9565b905060008160135433444260405160200161263e9493929190614bfd565b6040516020818303038152906040528051906020012060001c6126619190614c4b565b90506000806014836122b8811061267b5761267a614459565b5b0154146126a0576014826122b8811061269757612696614459565b5b015490506126a4565b8190505b600060146001856126b591906140e9565b6122b881106126c7576126c6614459565b5b015414156126fb576001836126dc91906140e9565b6014836122b881106126f1576126f0614459565b5b0181905550612739565b601460018461270a91906140e9565b6122b8811061271c5761271b614459565b5b01546014836122b8811061273357612732614459565b5b01819055505b6013600081548092919061274c90613ce7565b9190505550612765600182611bd490919063ffffffff16565b935050505090565b612787828260405180602001604052806000815250612ad6565b5050565b612796838383612b31565b505050565b60006127bc8473ffffffffffffffffffffffffffffffffffffffff16612c45565b15612925578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127e56108ae565b8786866040518563ffffffff1660e01b81526004016128079493929190614cd1565b602060405180830381600087803b15801561282157600080fd5b505af192505050801561285257506040513d601f19601f8201168201806040525081019061284f9190614d32565b60015b6128d5573d8060008114612882576040519150601f19603f3d011682016040523d82523d6000602084013e612887565b606091505b506000815114156128cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c490614a82565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061292a565b600190505b949350505050565b60606122cf805461294290613d5f565b80601f016020809104026020016040519081016040528092919081815260200182805461296e90613d5f565b80156129bb5780601f10612990576101008083540402835291602001916129bb565b820191906000526020600020905b81548152906001019060200180831161299e57829003601f168201915b5050505050905090565b60606129d082611c1a565b612a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0690614dd1565b60405180910390fd5b6000612a19612932565b90506000815111612a395760405180602001604052806000815250612a64565b80612a4384612c58565b604051602001612a54929190614b70565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ae08383612db9565b612aed600084848461279b565b612b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2390614a82565b60405180910390fd5b505050565b612b3c838383612f87565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b7f57612b7a81612f8c565b612bbe565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bbd57612bbc8382612fd5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c0157612bfc81613142565b612c40565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c3f57612c3e8282613213565b5b5b505050565b600080823b905060008111915050919050565b60606000821415612ca0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612db4565b600082905060005b60008214612cd2578080612cbb90613ce7565b915050600a82612ccb91906140b8565b9150612ca8565b60008167ffffffffffffffff811115612cee57612ced613705565b5b6040519080825280601f01601f191660200182016040528015612d205781602001600182028036833780820191505090505b5090505b60008514612dad57600182612d3991906140e9565b9150600a85612d489190614c4b565b6030612d549190613fd9565b60f81b818381518110612d6a57612d69614459565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612da691906140b8565b9450612d24565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2090614e3d565b60405180910390fd5b612e3281611c1a565b15612e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6990614ea9565b60405180910390fd5b612e7e6000838361278b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ece9190613fd9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612fe2846114f9565b612fec91906140e9565b90506000600860008481526020019081526020016000205490508181146130d1576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061315691906140e9565b90506000600a600084815260200190815260200160002054905060006009838154811061318657613185614459565b5b9060005260206000200154905080600983815481106131a8576131a7614459565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806131f7576131f6614ec9565b5b6001900381819060005260206000200160009055905550505050565b600061321e836114f9565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b82805461329e90613d5f565b90600052602060002090601f0160209004810192826132c05760008555613307565b82601f106132d957805160ff1916838001178555613307565b82800160010185558215613307579182015b828111156133065782518255916020019190600101906132eb565b5b5090506133149190613318565b5090565b5b80821115613331576000816000905550600101613319565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061336082613335565b9050919050565b61337081613355565b82525050565b6000819050919050565b61338981613376565b82525050565b60006040820190506133a46000830185613367565b6133b16020830184613380565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613401816133cc565b811461340c57600080fd5b50565b60008135905061341e816133f8565b92915050565b60006020828403121561343a576134396133c2565b5b60006134488482850161340f565b91505092915050565b60008115159050919050565b61346681613451565b82525050565b6000602082019050613481600083018461345d565b92915050565b600060208201905061349c6000830184613380565b92915050565b6134ab81613376565b81146134b657600080fd5b50565b6000813590506134c8816134a2565b92915050565b6000602082840312156134e4576134e36133c2565b5b60006134f2848285016134b9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561353557808201518184015260208101905061351a565b83811115613544576000848401525b50505050565b6000601f19601f8301169050919050565b6000613566826134fb565b6135708185613506565b9350613580818560208601613517565b6135898161354a565b840191505092915050565b600060208201905081810360008301526135ae818461355b565b905092915050565b60006020820190506135cb6000830184613367565b92915050565b6135da81613355565b81146135e557600080fd5b50565b6000813590506135f7816135d1565b92915050565b60008060408385031215613614576136136133c2565b5b6000613622858286016135e8565b9250506020613633858286016134b9565b9150509250929050565b600061364882613335565b9050919050565b6136588161363d565b811461366357600080fd5b50565b6000813590506136758161364f565b92915050565b600060208284031215613691576136906133c2565b5b600061369f84828501613666565b91505092915050565b6000806000606084860312156136c1576136c06133c2565b5b60006136cf868287016135e8565b93505060206136e0868287016135e8565b92505060406136f1868287016134b9565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61373d8261354a565b810181811067ffffffffffffffff8211171561375c5761375b613705565b5b80604052505050565b600061376f6133b8565b905061377b8282613734565b919050565b600067ffffffffffffffff82111561379b5761379a613705565b5b6137a48261354a565b9050602081019050919050565b82818337600083830152505050565b60006137d36137ce84613780565b613765565b9050828152602081018484840111156137ef576137ee613700565b5b6137fa8482856137b1565b509392505050565b600082601f830112613817576138166136fb565b5b81356138278482602086016137c0565b91505092915050565b600060208284031215613846576138456133c2565b5b600082013567ffffffffffffffff811115613864576138636133c7565b5b61387084828501613802565b91505092915050565b60006020828403121561388f5761388e6133c2565b5b600061389d848285016135e8565b91505092915050565b6138af81613451565b81146138ba57600080fd5b50565b6000813590506138cc816138a6565b92915050565b600080604083850312156138e9576138e86133c2565b5b60006138f7858286016135e8565b9250506020613908858286016138bd565b9150509250929050565b600067ffffffffffffffff82111561392d5761392c613705565b5b6139368261354a565b9050602081019050919050565b600061395661395184613912565b613765565b90508281526020810184848401111561397257613971613700565b5b61397d8482856137b1565b509392505050565b600082601f83011261399a576139996136fb565b5b81356139aa848260208601613943565b91505092915050565b600080600080608085870312156139cd576139cc6133c2565b5b60006139db878288016135e8565b94505060206139ec878288016135e8565b93505060406139fd878288016134b9565b925050606085013567ffffffffffffffff811115613a1e57613a1d6133c7565b5b613a2a87828801613985565b91505092959194509250565b60008060408385031215613a4d57613a4c6133c2565b5b6000613a5b858286016135e8565b9250506020613a6c858286016135e8565b9150509250929050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613aac601f83613506565b9150613ab782613a76565b602082019050919050565b60006020820190508181036000830152613adb81613a9f565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613b18601083613506565b9150613b2382613ae2565b602082019050919050565b60006020820190508181036000830152613b4781613b0b565b9050919050565b7f507572636861736520776f756c642065786365656420617661696c61626c652060008201527f737570706c79206f6620746f6b656e7300000000000000000000000000000000602082015250565b6000613baa603083613506565b9150613bb582613b4e565b604082019050919050565b60006020820190508181036000830152613bd981613b9d565b9050919050565b7f546f6f206d616e7920746f6b656e73206174206f6e6365000000000000000000600082015250565b6000613c16601783613506565b9150613c2182613be0565b602082019050919050565b60006020820190508181036000830152613c4581613c09565b9050919050565b7f596f75206e65656420746f207061792074686520657861637420707269636500600082015250565b6000613c82601f83613506565b9150613c8d82613c4c565b602082019050919050565b60006020820190508181036000830152613cb181613c75565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cf282613376565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d2557613d24613cb8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d7757607f821691505b60208210811415613d8b57613d8a613d30565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613ded602c83613506565b9150613df882613d91565b604082019050919050565b60006020820190508181036000830152613e1c81613de0565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e7f602183613506565b9150613e8a82613e23565b604082019050919050565b60006020820190508181036000830152613eae81613e72565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613f11603883613506565b9150613f1c82613eb5565b604082019050919050565b60006020820190508181036000830152613f4081613f04565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b6000613fa3602683613506565b9150613fae82613f47565b604082019050919050565b60006020820190508181036000830152613fd281613f96565b9050919050565b6000613fe482613376565b9150613fef83613376565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402457614023613cb8565b5b828201905092915050565b600061403a82613376565b915061404583613376565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561407e5761407d613cb8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140c382613376565b91506140ce83613376565b9250826140de576140dd614089565b5b828204905092915050565b60006140f482613376565b91506140ff83613376565b92508282101561411257614111613cb8565b5b828203905092915050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000614179602b83613506565b91506141848261411d565b604082019050919050565b600060208201905081810360008301526141a88161416c565b9050919050565b6000819050919050565b60006141d46141cf6141ca84613335565b6141af565b613335565b9050919050565b60006141e6826141b9565b9050919050565b60006141f8826141db565b9050919050565b614208816141ed565b82525050565b600060408201905061422360008301856141ff565b6142306020830184613380565b9392505050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614293603183613506565b915061429e82614237565b604082019050919050565b600060208201905081810360008301526142c281614286565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614325602b83613506565b9150614330826142c9565b604082019050919050565b6000602082019050818103600083015261435481614318565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614391602083613506565b915061439c8261435b565b602082019050919050565b600060208201905081810360008301526143c081614384565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614423602c83613506565b915061442e826143c7565b604082019050919050565b6000602082019050818103600083015261445281614416565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006144e4602983613506565b91506144ef82614488565b604082019050919050565b60006020820190508181036000830152614513816144d7565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614576602a83613506565b91506145818261451a565b604082019050919050565b600060208201905081810360008301526145a581614569565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006145e2601983613506565b91506145ed826145ac565b602082019050919050565b60006020820190508181036000830152614611816145d5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614674602683613506565b915061467f82614618565b604082019050919050565b600060208201905081810360008301526146a381614667565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006146e0601d83613506565b91506146eb826146aa565b602082019050919050565b6000602082019050818103600083015261470f816146d3565b9050919050565b600081905092915050565b50565b6000614731600083614716565b915061473c82614721565b600082019050919050565b600061475282614724565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006147b8603a83613506565b91506147c38261475c565b604082019050919050565b600060208201905081810360008301526147e7816147ab565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061484a602c83613506565b9150614855826147ee565b604082019050919050565b600060208201905081810360008301526148798161483d565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006148dc602983613506565b91506148e782614880565b604082019050919050565b6000602082019050818103600083015261490b816148cf565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061496e602483613506565b915061497982614912565b604082019050919050565b6000602082019050818103600083015261499d81614961565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006149da601483613506565b91506149e5826149a4565b602082019050919050565b60006020820190508181036000830152614a09816149cd565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614a6c603283613506565b9150614a7782614a10565b604082019050919050565b60006020820190508181036000830152614a9b81614a5f565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000614afe603183613506565b9150614b0982614aa2565b604082019050919050565b60006020820190508181036000830152614b2d81614af1565b9050919050565b600081905092915050565b6000614b4a826134fb565b614b548185614b34565b9350614b64818560208601613517565b80840191505092915050565b6000614b7c8285614b3f565b9150614b888284614b3f565b91508190509392505050565b6000819050919050565b614baf614baa82613376565b614b94565b82525050565b60008160601b9050919050565b6000614bcd82614bb5565b9050919050565b6000614bdf82614bc2565b9050919050565b614bf7614bf282613355565b614bd4565b82525050565b6000614c098287614b9e565b602082019150614c198286614be6565b601482019150614c298285614b9e565b602082019150614c398284614b9e565b60208201915081905095945050505050565b6000614c5682613376565b9150614c6183613376565b925082614c7157614c70614089565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614ca382614c7c565b614cad8185614c87565b9350614cbd818560208601613517565b614cc68161354a565b840191505092915050565b6000608082019050614ce66000830187613367565b614cf36020830186613367565b614d006040830185613380565b8181036060830152614d128184614c98565b905095945050505050565b600081519050614d2c816133f8565b92915050565b600060208284031215614d4857614d476133c2565b5b6000614d5684828501614d1d565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614dbb602f83613506565b9150614dc682614d5f565b604082019050919050565b60006020820190508181036000830152614dea81614dae565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e27602083613506565b9150614e3282614df1565b602082019050919050565b60006020820190508181036000830152614e5681614e1a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614e93601c83613506565b9150614e9e82614e5d565b602082019050919050565b60006020820190508181036000830152614ec281614e86565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220ca5ecafd270336ff64ddd2ee710eeb6ce9909460e4ed34b308713ae1354d686864736f6c63430008090033

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.