ETH Price: $3,276.47 (+0.78%)
Gas: 1 Gwei

Token

pixelbeans (PXB)
 

Overview

Max Total Supply

22 PXB

Holders

8

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 PXB
0xded6b343a584cb52cbb230e1fcd876011fc92d1a
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:
pixelbeans

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : pixelbeans.sol
// SPDX-License-Identifier: MIT

import "./ERC721A.sol";

pragma solidity ^0.8.15;

contract pixelbeans is ERC721A
{

    using Strings for uint256;

    bool public mintStatus;
    uint256 public _paidMintStart;
    uint256 public _mintPrice;
    address public owner;
    string public _baseTokenUri;
    string public _defaultURI;
    mapping(address => uint256) public minters;

    constructor(
        string memory name,
        string memory symbol,
        string memory baseTokenURI,
        string memory defaultURI,
        uint256 maxBatch,
        uint256 collectionSize,
        uint256 paidMintStart,
        uint256 mintPrice
    ) ERC721A(name, symbol, maxBatch, collectionSize) {

        _baseTokenUri = baseTokenURI;
        owner = _msgSender();
        _defaultURI = defaultURI;
        _paidMintStart = paidMintStart;
        _mintPrice = mintPrice;
    }

    function mint(uint256 amount) external payable {

        require(mintStatus, "mint: minting not yet started.");
        require(totalSupply() + amount <= collectionSize, "mint: max. supply reached.");
        uint256 minterMinted = minters[_msgSender()];
        require(minterMinted + amount <= maxBatchSize, "mint: max. mint per wallet reached.");

        if(totalSupply() + amount >= _paidMintStart){
        
            require(msg.value == amount * _mintPrice, "mint: please send the exact eth amount.");
        }

        minters[_msgSender()] += amount;
        _safeMint(_msgSender(), amount, "");
    }

    function _baseURI() internal view virtual override returns (string memory) {

        return _baseTokenUri;
    }
    
    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(), ".json")) : _defaultURI;
    }
    
    function setBaseUri(string calldata baseTokenURI) public virtual {

        require(_msgSender() == owner, "setBaseUri: must be owner to set base uri.");

        _baseTokenUri = baseTokenURI;
    }

    function setMintStatus(bool status) external
    {
        require(_msgSender() == owner, "setMintStatus: not the owner");

        mintStatus = status;
    }

    function setMintPrice(uint256 price) external
    {
        require(_msgSender() == owner, "setMintPrice: not the owner");

        _mintPrice = price;
    }

    function setPaidMintStart(uint256 fromAmount) external
    {
        require(_msgSender() == owner, "setPaidMintStart: not the owner");

        _paidMintStart = fromAmount;
    }

    function performEthRecover(uint256 amount, address receiver) external
    {
        require(_msgSender() == owner, "performEthRecover: Not the owner");

        (bool success,) = payable(receiver).call{value: amount}("");
    }

    function transferOwnership(address newOwner) external
    {
        require(_msgSender() == owner, "transferOwnership: not the owner");

        owner = newOwner;
    }
}

File 2 of 11 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.15;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 11 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

    /**
     * @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 8 of 11 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"string","name":"defaultURI","type":"string"},{"internalType":"uint256","name":"maxBatch","type":"uint256"},{"internalType":"uint256","name":"collectionSize","type":"uint256"},{"internalType":"uint256","name":"paidMintStart","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_defaultURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paidMintStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"performEthRecover","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":"baseTokenURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fromAmount","type":"uint256"}],"name":"setPaidMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"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"}]

60c06040526000805560006007553480156200001a57600080fd5b506040516200538338038062005383833981810160405281019062000040919062000378565b87878585600081116200008a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000819062000544565b60405180910390fd5b60008211620000d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000c790620005dc565b60405180910390fd5b8360019081620000e191906200083f565b508260029081620000f391906200083f565b508160a0818152505080608081815250505050505085600c90816200011991906200083f565b506200012a6200019860201b60201c565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600d90816200017b91906200083f565b508160098190555080600a81905550505050505050505062000926565b600033905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200020982620001be565b810181811067ffffffffffffffff821117156200022b576200022a620001cf565b5b80604052505050565b600062000240620001a0565b90506200024e8282620001fe565b919050565b600067ffffffffffffffff821115620002715762000270620001cf565b5b6200027c82620001be565b9050602081019050919050565b60005b83811015620002a95780820151818401526020810190506200028c565b83811115620002b9576000848401525b50505050565b6000620002d6620002d08462000253565b62000234565b905082815260208101848484011115620002f557620002f4620001b9565b5b6200030284828562000289565b509392505050565b600082601f830112620003225762000321620001b4565b5b815162000334848260208601620002bf565b91505092915050565b6000819050919050565b62000352816200033d565b81146200035e57600080fd5b50565b600081519050620003728162000347565b92915050565b600080600080600080600080610100898b0312156200039c576200039b620001aa565b5b600089015167ffffffffffffffff811115620003bd57620003bc620001af565b5b620003cb8b828c016200030a565b985050602089015167ffffffffffffffff811115620003ef57620003ee620001af565b5b620003fd8b828c016200030a565b975050604089015167ffffffffffffffff811115620004215762000420620001af565b5b6200042f8b828c016200030a565b965050606089015167ffffffffffffffff811115620004535762000452620001af565b5b620004618b828c016200030a565b9550506080620004748b828c0162000361565b94505060a0620004878b828c0162000361565b93505060c06200049a8b828c0162000361565b92505060e0620004ad8b828c0162000361565b9150509295985092959890939650565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60006200052c602e83620004bd565b91506200053982620004ce565b604082019050919050565b600060208201905081810360008301526200055f816200051d565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6000620005c4602783620004bd565b9150620005d18262000566565b604082019050919050565b60006020820190508181036000830152620005f781620005b5565b9050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200065157607f821691505b60208210810362000667576200066662000609565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006d17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000692565b620006dd868362000692565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007206200071a62000714846200033d565b620006f5565b6200033d565b9050919050565b6000819050919050565b6200073c83620006ff565b620007546200074b8262000727565b8484546200069f565b825550505050565b600090565b6200076b6200075c565b6200077881848462000731565b505050565b5b81811015620007a0576200079460008262000761565b6001810190506200077e565b5050565b601f821115620007ef57620007b9816200066d565b620007c48462000682565b81016020851015620007d4578190505b620007ec620007e38562000682565b8301826200077d565b50505b505050565b600082821c905092915050565b60006200081460001984600802620007f4565b1980831691505092915050565b60006200082f838362000801565b9150826002028217905092915050565b6200084a82620005fe565b67ffffffffffffffff811115620008665762000865620001cf565b5b62000872825462000638565b6200087f828285620007a4565b600060209050601f831160018114620008b75760008415620008a2578287015190505b620008ae858262000821565b8655506200091e565b601f198416620008c7866200066d565b60005b82811015620008f157848901518255600182019150602085019450602081019050620008ca565b868310156200091157848901516200090d601f89168262000801565b8355505b6001600288020188555050505b505050505050565b60805160a051614a2262000961600039600081816113ef0152818161225d0152818161228601526124cc0152600061132f0152614a226000f3fe6080604052600436106101d85760003560e01c806356c4aedd11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c5146106c3578063f2fde38b14610700578063f46eccc414610729578063f4a0a52814610766576101d8565b8063a22cb46514610609578063b88d4fde14610632578063c87b56dd1461065b578063d7224ba014610698576101d8565b806395d89b41116100d157806395d89b411461056e5780639da3f8fd14610599578063a0712d68146105c4578063a0bcfc7f146105e0576101d8565b806356c4aedd1461049e5780636352211e146104c957806370a08231146105065780638da5cb5b14610543576101d8565b806318160ddd1161017a5780632f745c59116101495780632f745c59146103d057806342842e0e1461040d57806348200604146104365780634f6ccce714610461576101d8565b806318160ddd1461032a5780631f85e3ca1461035557806323b872dd1461037e57806324eedb01146103a7576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad5780630c0367ff146102d657806316f242b914610301576101d8565b806301ffc9a7146101dd5780630387da421461021a57806306fdde0314610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612d38565b61078f565b6040516102119190612d80565b60405180910390f35b34801561022657600080fd5b5061022f6108d9565b60405161023c9190612db4565b60405180910390f35b34801561025157600080fd5b5061025a6108df565b6040516102679190612e68565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190612eb6565b610971565b6040516102a49190612f24565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612f6b565b6109f6565b005b3480156102e257600080fd5b506102eb610b0e565b6040516102f89190612db4565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612fab565b610b14565b005b34801561033657600080fd5b5061033f610c1c565b60405161034c9190612db4565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613017565b610c25565b005b34801561038a57600080fd5b506103a560048036038101906103a09190613044565b610cd9565b005b3480156103b357600080fd5b506103ce60048036038101906103c99190612eb6565b610ce9565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190612f6b565b610d8a565b6040516104049190612db4565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f9190613044565b610f86565b005b34801561044257600080fd5b5061044b610fa6565b6040516104589190612e68565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190612eb6565b611034565b6040516104959190612db4565b60405180910390f35b3480156104aa57600080fd5b506104b3611087565b6040516104c09190612e68565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190612eb6565b611115565b6040516104fd9190612f24565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190613097565b61112b565b60405161053a9190612db4565b60405180910390f35b34801561054f57600080fd5b50610558611213565b6040516105659190612f24565b60405180910390f35b34801561057a57600080fd5b50610583611239565b6040516105909190612e68565b60405180910390f35b3480156105a557600080fd5b506105ae6112cb565b6040516105bb9190612d80565b60405180910390f35b6105de60048036038101906105d99190612eb6565b6112de565b005b3480156105ec57600080fd5b5061060760048036038101906106029190613129565b611548565b005b34801561061557600080fd5b50610630600480360381019061062b9190613176565b6115f5565b005b34801561063e57600080fd5b50610659600480360381019061065491906132e6565b611775565b005b34801561066757600080fd5b50610682600480360381019061067d9190612eb6565b6117d1565b60405161068f9190612e68565b60405180910390f35b3480156106a457600080fd5b506106ad6118f3565b6040516106ba9190612db4565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190613369565b6118f9565b6040516106f79190612d80565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190613097565b61198d565b005b34801561073557600080fd5b50610750600480360381019061074b9190613097565b611a68565b60405161075d9190612db4565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612eb6565b611a80565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d257506108d182611b21565b5b9050919050565b600a5481565b6060600180546108ee906133d8565b80601f016020809104026020016040519081016040528092919081815260200182805461091a906133d8565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b600061097c82611b8b565b6109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b29061347b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0182611115565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a689061350d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a90611b98565b73ffffffffffffffffffffffffffffffffffffffff161480610abf5750610abe81610ab9611b98565b6118f9565b5b610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af59061359f565b60405180910390fd5b610b09838383611ba0565b505050565b60095481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b55611b98565b73ffffffffffffffffffffffffffffffffffffffff1614610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba29061360b565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1683604051610bd19061365c565b60006040518083038185875af1925050503d8060008114610c0e576040519150601f19603f3d011682016040523d82523d6000602084013e610c13565b606091505b50509050505050565b60008054905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c66611b98565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906136bd565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b610ce4838383611c52565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d2a611b98565b73ffffffffffffffffffffffffffffffffffffffff1614610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613729565b60405180910390fd5b8060098190555050565b6000610d958361112b565b8210610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd906137bb565b60405180910390fd5b6000610de0610c1c565b905060008060005b83811015610f44576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eda57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3057868403610f21578195505050505050610f80565b8380610f2c9061380a565b9450505b508080610f3c9061380a565b915050610de8565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f77906138c4565b60405180910390fd5b92915050565b610fa183838360405180602001604052806000815250611775565b505050565b600c8054610fb3906133d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdf906133d8565b801561102c5780601f106110015761010080835404028352916020019161102c565b820191906000526020600020905b81548152906001019060200180831161100f57829003601f168201915b505050505081565b600061103e610c1c565b821061107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690613956565b60405180910390fd5b819050919050565b600d8054611094906133d8565b80601f01602080910402602001604051908101604052809291908181526020018280546110c0906133d8565b801561110d5780601f106110e25761010080835404028352916020019161110d565b820191906000526020600020905b8154815290600101906020018083116110f057829003601f168201915b505050505081565b600061112082612209565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906139e8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060028054611248906133d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611274906133d8565b80156112c15780601f10611296576101008083540402835291602001916112c1565b820191906000526020600020905b8154815290600101906020018083116112a457829003601f168201915b5050505050905090565b600860009054906101000a900460ff1681565b600860009054906101000a900460ff1661132d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132490613a54565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081611357610c1c565b6113619190613a74565b11156113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990613b16565b60405180910390fd5b6000600e60006113b0611b98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507f0000000000000000000000000000000000000000000000000000000000000000828261141a9190613a74565b111561145b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145290613ba8565b60405180910390fd5b60095482611467610c1c565b6114719190613a74565b106114c657600a54826114849190613bc8565b34146114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90613c94565b60405180910390fd5b5b81600e60006114d3611b98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151c9190613a74565b9250508190555061154461152e611b98565b836040518060200160405280600081525061240c565b5050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611589611b98565b73ffffffffffffffffffffffffffffffffffffffff16146115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690613d26565b60405180910390fd5b8181600c91826115f0929190613efd565b505050565b6115fd611b98565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361166a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166190614019565b60405180910390fd5b8060066000611677611b98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611724611b98565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117699190612d80565b60405180910390a35050565b611780848484611c52565b61178c848484846128ea565b6117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c2906140ab565b60405180910390fd5b50505050565b60606117dc82611b8b565b61181b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118129061413d565b60405180910390fd5b6000611825612a71565b905060008151116118c057600d805461183d906133d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611869906133d8565b80156118b65780601f1061188b576101008083540402835291602001916118b6565b820191906000526020600020905b81548152906001019060200180831161189957829003601f168201915b50505050506118eb565b806118ca84612b03565b6040516020016118db9291906141e5565b6040516020818303038152906040525b915050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166119ce611b98565b73ffffffffffffffffffffffffffffffffffffffff1614611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90614260565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e6020528060005260406000206000915090505481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611ac1611b98565b73ffffffffffffffffffffffffffffffffffffffff1614611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e906142cc565b60405180910390fd5b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c5d82612209565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c84611b98565b73ffffffffffffffffffffffffffffffffffffffff161480611ce05750611ca9611b98565b73ffffffffffffffffffffffffffffffffffffffff16611cc884610971565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cfc5750611cfb8260000151611cf6611b98565b6118f9565b5b905080611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d359061435e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da7906143f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690614482565b60405180910390fd5b611e2c8585856001612c63565b611e3c6000848460000151611ba0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611eaa91906144be565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f4e91906144f2565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120549190613a74565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612199576120c981611b8b565b15612198576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122018686866001612c69565b505050505050565b612211612c92565b61221a82611b8b565b612259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612250906145aa565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106122bd5760017f0000000000000000000000000000000000000000000000000000000000000000846122b091906145ca565b6122ba9190613a74565b90505b60008390505b8181106123cb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123b757809350505050612407565b5080806123c3906145fe565b9150506122c3565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe90614699565b60405180910390fd5b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612481576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124789061472b565b60405180910390fd5b61248a81611b8b565b156124ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c190614797565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561252d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252490614829565b60405180910390fd5b61253a6000858386612c63565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161263791906144f2565b6fffffffffffffffffffffffffffffffff16815260200185836020015161265e91906144f2565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156128cd57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461286d60008884886128ea565b6128ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a3906140ab565b60405180910390fd5b81806128b79061380a565b92505080806128c59061380a565b9150506127fc565b50806000819055506128e26000878588612c69565b505050505050565b600061290b8473ffffffffffffffffffffffffffffffffffffffff16612c6f565b15612a64578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612934611b98565b8786866040518563ffffffff1660e01b8152600401612956949392919061489e565b6020604051808303816000875af192505050801561299257506040513d601f19601f8201168201806040525081019061298f91906148ff565b60015b612a14573d80600081146129c2576040519150601f19603f3d011682016040523d82523d6000602084013e6129c7565b606091505b506000815103612a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a03906140ab565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a69565b600190505b949350505050565b6060600c8054612a80906133d8565b80601f0160208091040260200160405190810160405280929190818152602001828054612aac906133d8565b8015612af95780601f10612ace57610100808354040283529160200191612af9565b820191906000526020600020905b815481529060010190602001808311612adc57829003601f168201915b5050505050905090565b606060008203612b4a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c5e565b600082905060005b60008214612b7c578080612b659061380a565b915050600a82612b75919061495b565b9150612b52565b60008167ffffffffffffffff811115612b9857612b976131bb565b5b6040519080825280601f01601f191660200182016040528015612bca5781602001600182028036833780820191505090505b5090505b60008514612c5757600182612be391906145ca565b9150600a85612bf2919061498c565b6030612bfe9190613a74565b60f81b818381518110612c1457612c136149bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c50919061495b565b9450612bce565b8093505050505b919050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d1581612ce0565b8114612d2057600080fd5b50565b600081359050612d3281612d0c565b92915050565b600060208284031215612d4e57612d4d612cd6565b5b6000612d5c84828501612d23565b91505092915050565b60008115159050919050565b612d7a81612d65565b82525050565b6000602082019050612d956000830184612d71565b92915050565b6000819050919050565b612dae81612d9b565b82525050565b6000602082019050612dc96000830184612da5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e09578082015181840152602081019050612dee565b83811115612e18576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e3a82612dcf565b612e448185612dda565b9350612e54818560208601612deb565b612e5d81612e1e565b840191505092915050565b60006020820190508181036000830152612e828184612e2f565b905092915050565b612e9381612d9b565b8114612e9e57600080fd5b50565b600081359050612eb081612e8a565b92915050565b600060208284031215612ecc57612ecb612cd6565b5b6000612eda84828501612ea1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f0e82612ee3565b9050919050565b612f1e81612f03565b82525050565b6000602082019050612f396000830184612f15565b92915050565b612f4881612f03565b8114612f5357600080fd5b50565b600081359050612f6581612f3f565b92915050565b60008060408385031215612f8257612f81612cd6565b5b6000612f9085828601612f56565b9250506020612fa185828601612ea1565b9150509250929050565b60008060408385031215612fc257612fc1612cd6565b5b6000612fd085828601612ea1565b9250506020612fe185828601612f56565b9150509250929050565b612ff481612d65565b8114612fff57600080fd5b50565b60008135905061301181612feb565b92915050565b60006020828403121561302d5761302c612cd6565b5b600061303b84828501613002565b91505092915050565b60008060006060848603121561305d5761305c612cd6565b5b600061306b86828701612f56565b935050602061307c86828701612f56565b925050604061308d86828701612ea1565b9150509250925092565b6000602082840312156130ad576130ac612cd6565b5b60006130bb84828501612f56565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126130e9576130e86130c4565b5b8235905067ffffffffffffffff811115613106576131056130c9565b5b602083019150836001820283011115613122576131216130ce565b5b9250929050565b600080602083850312156131405761313f612cd6565b5b600083013567ffffffffffffffff81111561315e5761315d612cdb565b5b61316a858286016130d3565b92509250509250929050565b6000806040838503121561318d5761318c612cd6565b5b600061319b85828601612f56565b92505060206131ac85828601613002565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131f382612e1e565b810181811067ffffffffffffffff82111715613212576132116131bb565b5b80604052505050565b6000613225612ccc565b905061323182826131ea565b919050565b600067ffffffffffffffff821115613251576132506131bb565b5b61325a82612e1e565b9050602081019050919050565b82818337600083830152505050565b600061328961328484613236565b61321b565b9050828152602081018484840111156132a5576132a46131b6565b5b6132b0848285613267565b509392505050565b600082601f8301126132cd576132cc6130c4565b5b81356132dd848260208601613276565b91505092915050565b60008060008060808587031215613300576132ff612cd6565b5b600061330e87828801612f56565b945050602061331f87828801612f56565b935050604061333087828801612ea1565b925050606085013567ffffffffffffffff81111561335157613350612cdb565b5b61335d878288016132b8565b91505092959194509250565b600080604083850312156133805761337f612cd6565b5b600061338e85828601612f56565b925050602061339f85828601612f56565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133f057607f821691505b602082108103613403576134026133a9565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613465602d83612dda565b915061347082613409565b604082019050919050565b6000602082019050818103600083015261349481613458565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006134f7602283612dda565b91506135028261349b565b604082019050919050565b60006020820190508181036000830152613526816134ea565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613589603983612dda565b91506135948261352d565b604082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b7f706572666f726d4574685265636f7665723a204e6f7420746865206f776e6572600082015250565b60006135f5602083612dda565b9150613600826135bf565b602082019050919050565b60006020820190508181036000830152613624816135e8565b9050919050565b600081905092915050565b50565b600061364660008361362b565b915061365182613636565b600082019050919050565b600061366782613639565b9150819050919050565b7f7365744d696e745374617475733a206e6f7420746865206f776e657200000000600082015250565b60006136a7601c83612dda565b91506136b282613671565b602082019050919050565b600060208201905081810360008301526136d68161369a565b9050919050565b7f736574506169644d696e7453746172743a206e6f7420746865206f776e657200600082015250565b6000613713601f83612dda565b915061371e826136dd565b602082019050919050565b6000602082019050818103600083015261374281613706565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006137a5602283612dda565b91506137b082613749565b604082019050919050565b600060208201905081810360008301526137d481613798565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061381582612d9b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613847576138466137db565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006138ae602e83612dda565b91506138b982613852565b604082019050919050565b600060208201905081810360008301526138dd816138a1565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613940602383612dda565b915061394b826138e4565b604082019050919050565b6000602082019050818103600083015261396f81613933565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006139d2602b83612dda565b91506139dd82613976565b604082019050919050565b60006020820190508181036000830152613a01816139c5565b9050919050565b7f6d696e743a206d696e74696e67206e6f742079657420737461727465642e0000600082015250565b6000613a3e601e83612dda565b9150613a4982613a08565b602082019050919050565b60006020820190508181036000830152613a6d81613a31565b9050919050565b6000613a7f82612d9b565b9150613a8a83612d9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613abf57613abe6137db565b5b828201905092915050565b7f6d696e743a206d61782e20737570706c7920726561636865642e000000000000600082015250565b6000613b00601a83612dda565b9150613b0b82613aca565b602082019050919050565b60006020820190508181036000830152613b2f81613af3565b9050919050565b7f6d696e743a206d61782e206d696e74207065722077616c6c657420726561636860008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b6000613b92602383612dda565b9150613b9d82613b36565b604082019050919050565b60006020820190508181036000830152613bc181613b85565b9050919050565b6000613bd382612d9b565b9150613bde83612d9b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c1757613c166137db565b5b828202905092915050565b7f6d696e743a20706c656173652073656e6420746865206578616374206574682060008201527f616d6f756e742e00000000000000000000000000000000000000000000000000602082015250565b6000613c7e602783612dda565b9150613c8982613c22565b604082019050919050565b60006020820190508181036000830152613cad81613c71565b9050919050565b7f736574426173655572693a206d757374206265206f776e657220746f2073657460008201527f2062617365207572692e00000000000000000000000000000000000000000000602082015250565b6000613d10602a83612dda565b9150613d1b82613cb4565b604082019050919050565b60006020820190508181036000830152613d3f81613d03565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613db37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613d76565b613dbd8683613d76565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613dfa613df5613df084612d9b565b613dd5565b612d9b565b9050919050565b6000819050919050565b613e1483613ddf565b613e28613e2082613e01565b848454613d83565b825550505050565b600090565b613e3d613e30565b613e48818484613e0b565b505050565b5b81811015613e6c57613e61600082613e35565b600181019050613e4e565b5050565b601f821115613eb157613e8281613d51565b613e8b84613d66565b81016020851015613e9a578190505b613eae613ea685613d66565b830182613e4d565b50505b505050565b600082821c905092915050565b6000613ed460001984600802613eb6565b1980831691505092915050565b6000613eed8383613ec3565b9150826002028217905092915050565b613f078383613d46565b67ffffffffffffffff811115613f2057613f1f6131bb565b5b613f2a82546133d8565b613f35828285613e70565b6000601f831160018114613f645760008415613f52578287013590505b613f5c8582613ee1565b865550613fc4565b601f198416613f7286613d51565b60005b82811015613f9a57848901358255600182019150602085019450602081019050613f75565b86831015613fb75784890135613fb3601f891682613ec3565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614003601a83612dda565b915061400e82613fcd565b602082019050919050565b6000602082019050818103600083015261403281613ff6565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614095603383612dda565b91506140a082614039565b604082019050919050565b600060208201905081810360008301526140c481614088565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614127602f83612dda565b9150614132826140cb565b604082019050919050565b600060208201905081810360008301526141568161411a565b9050919050565b600081905092915050565b600061417382612dcf565b61417d818561415d565b935061418d818560208601612deb565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006141cf60058361415d565b91506141da82614199565b600582019050919050565b60006141f18285614168565b91506141fd8284614168565b9150614208826141c2565b91508190509392505050565b7f7472616e736665724f776e6572736869703a206e6f7420746865206f776e6572600082015250565b600061424a602083612dda565b915061425582614214565b602082019050919050565b600060208201905081810360008301526142798161423d565b9050919050565b7f7365744d696e7450726963653a206e6f7420746865206f776e65720000000000600082015250565b60006142b6601b83612dda565b91506142c182614280565b602082019050919050565b600060208201905081810360008301526142e5816142a9565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614348603283612dda565b9150614353826142ec565b604082019050919050565b600060208201905081810360008301526143778161433b565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006143da602683612dda565b91506143e58261437e565b604082019050919050565b60006020820190508181036000830152614409816143cd565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061446c602583612dda565b915061447782614410565b604082019050919050565b6000602082019050818103600083015261449b8161445f565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006144c9826144a2565b91506144d4836144a2565b9250828210156144e7576144e66137db565b5b828203905092915050565b60006144fd826144a2565b9150614508836144a2565b9250826fffffffffffffffffffffffffffffffff0382111561452d5761452c6137db565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614594602a83612dda565b915061459f82614538565b604082019050919050565b600060208201905081810360008301526145c381614587565b9050919050565b60006145d582612d9b565b91506145e083612d9b565b9250828210156145f3576145f26137db565b5b828203905092915050565b600061460982612d9b565b91506000820361461c5761461b6137db565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614683602f83612dda565b915061468e82614627565b604082019050919050565b600060208201905081810360008301526146b281614676565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614715602183612dda565b9150614720826146b9565b604082019050919050565b6000602082019050818103600083015261474481614708565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614781601d83612dda565b915061478c8261474b565b602082019050919050565b600060208201905081810360008301526147b081614774565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614813602283612dda565b915061481e826147b7565b604082019050919050565b6000602082019050818103600083015261484281614806565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061487082614849565b61487a8185614854565b935061488a818560208601612deb565b61489381612e1e565b840191505092915050565b60006080820190506148b36000830187612f15565b6148c06020830186612f15565b6148cd6040830185612da5565b81810360608301526148df8184614865565b905095945050505050565b6000815190506148f981612d0c565b92915050565b60006020828403121561491557614914612cd6565b5b6000614923848285016148ea565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061496682612d9b565b915061497183612d9b565b9250826149815761498061492c565b5b828204905092915050565b600061499782612d9b565b91506149a283612d9b565b9250826149b2576149b161492c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220c0e409f1630b06a94ac9d2934c87892b3ff55a94853b2af60eeebf5a269c395c64736f6c634300080f003300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000a706978656c6265616e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003505842000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5756794c52386143656b327141767138705861756f7041776e696b434a616977556270586f67774c6d5079340000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806356c4aedd11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c5146106c3578063f2fde38b14610700578063f46eccc414610729578063f4a0a52814610766576101d8565b8063a22cb46514610609578063b88d4fde14610632578063c87b56dd1461065b578063d7224ba014610698576101d8565b806395d89b41116100d157806395d89b411461056e5780639da3f8fd14610599578063a0712d68146105c4578063a0bcfc7f146105e0576101d8565b806356c4aedd1461049e5780636352211e146104c957806370a08231146105065780638da5cb5b14610543576101d8565b806318160ddd1161017a5780632f745c59116101495780632f745c59146103d057806342842e0e1461040d57806348200604146104365780634f6ccce714610461576101d8565b806318160ddd1461032a5780631f85e3ca1461035557806323b872dd1461037e57806324eedb01146103a7576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad5780630c0367ff146102d657806316f242b914610301576101d8565b806301ffc9a7146101dd5780630387da421461021a57806306fdde0314610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612d38565b61078f565b6040516102119190612d80565b60405180910390f35b34801561022657600080fd5b5061022f6108d9565b60405161023c9190612db4565b60405180910390f35b34801561025157600080fd5b5061025a6108df565b6040516102679190612e68565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190612eb6565b610971565b6040516102a49190612f24565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612f6b565b6109f6565b005b3480156102e257600080fd5b506102eb610b0e565b6040516102f89190612db4565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612fab565b610b14565b005b34801561033657600080fd5b5061033f610c1c565b60405161034c9190612db4565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613017565b610c25565b005b34801561038a57600080fd5b506103a560048036038101906103a09190613044565b610cd9565b005b3480156103b357600080fd5b506103ce60048036038101906103c99190612eb6565b610ce9565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190612f6b565b610d8a565b6040516104049190612db4565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f9190613044565b610f86565b005b34801561044257600080fd5b5061044b610fa6565b6040516104589190612e68565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190612eb6565b611034565b6040516104959190612db4565b60405180910390f35b3480156104aa57600080fd5b506104b3611087565b6040516104c09190612e68565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190612eb6565b611115565b6040516104fd9190612f24565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190613097565b61112b565b60405161053a9190612db4565b60405180910390f35b34801561054f57600080fd5b50610558611213565b6040516105659190612f24565b60405180910390f35b34801561057a57600080fd5b50610583611239565b6040516105909190612e68565b60405180910390f35b3480156105a557600080fd5b506105ae6112cb565b6040516105bb9190612d80565b60405180910390f35b6105de60048036038101906105d99190612eb6565b6112de565b005b3480156105ec57600080fd5b5061060760048036038101906106029190613129565b611548565b005b34801561061557600080fd5b50610630600480360381019061062b9190613176565b6115f5565b005b34801561063e57600080fd5b50610659600480360381019061065491906132e6565b611775565b005b34801561066757600080fd5b50610682600480360381019061067d9190612eb6565b6117d1565b60405161068f9190612e68565b60405180910390f35b3480156106a457600080fd5b506106ad6118f3565b6040516106ba9190612db4565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190613369565b6118f9565b6040516106f79190612d80565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190613097565b61198d565b005b34801561073557600080fd5b50610750600480360381019061074b9190613097565b611a68565b60405161075d9190612db4565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612eb6565b611a80565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d257506108d182611b21565b5b9050919050565b600a5481565b6060600180546108ee906133d8565b80601f016020809104026020016040519081016040528092919081815260200182805461091a906133d8565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b600061097c82611b8b565b6109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b29061347b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0182611115565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a689061350d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a90611b98565b73ffffffffffffffffffffffffffffffffffffffff161480610abf5750610abe81610ab9611b98565b6118f9565b5b610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af59061359f565b60405180910390fd5b610b09838383611ba0565b505050565b60095481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b55611b98565b73ffffffffffffffffffffffffffffffffffffffff1614610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba29061360b565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1683604051610bd19061365c565b60006040518083038185875af1925050503d8060008114610c0e576040519150601f19603f3d011682016040523d82523d6000602084013e610c13565b606091505b50509050505050565b60008054905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c66611b98565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906136bd565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b610ce4838383611c52565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d2a611b98565b73ffffffffffffffffffffffffffffffffffffffff1614610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613729565b60405180910390fd5b8060098190555050565b6000610d958361112b565b8210610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd906137bb565b60405180910390fd5b6000610de0610c1c565b905060008060005b83811015610f44576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eda57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3057868403610f21578195505050505050610f80565b8380610f2c9061380a565b9450505b508080610f3c9061380a565b915050610de8565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f77906138c4565b60405180910390fd5b92915050565b610fa183838360405180602001604052806000815250611775565b505050565b600c8054610fb3906133d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdf906133d8565b801561102c5780601f106110015761010080835404028352916020019161102c565b820191906000526020600020905b81548152906001019060200180831161100f57829003601f168201915b505050505081565b600061103e610c1c565b821061107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690613956565b60405180910390fd5b819050919050565b600d8054611094906133d8565b80601f01602080910402602001604051908101604052809291908181526020018280546110c0906133d8565b801561110d5780601f106110e25761010080835404028352916020019161110d565b820191906000526020600020905b8154815290600101906020018083116110f057829003601f168201915b505050505081565b600061112082612209565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906139e8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060028054611248906133d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611274906133d8565b80156112c15780601f10611296576101008083540402835291602001916112c1565b820191906000526020600020905b8154815290600101906020018083116112a457829003601f168201915b5050505050905090565b600860009054906101000a900460ff1681565b600860009054906101000a900460ff1661132d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132490613a54565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000007d081611357610c1c565b6113619190613a74565b11156113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990613b16565b60405180910390fd5b6000600e60006113b0611b98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507f0000000000000000000000000000000000000000000000000000000000000003828261141a9190613a74565b111561145b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145290613ba8565b60405180910390fd5b60095482611467610c1c565b6114719190613a74565b106114c657600a54826114849190613bc8565b34146114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90613c94565b60405180910390fd5b5b81600e60006114d3611b98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151c9190613a74565b9250508190555061154461152e611b98565b836040518060200160405280600081525061240c565b5050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611589611b98565b73ffffffffffffffffffffffffffffffffffffffff16146115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690613d26565b60405180910390fd5b8181600c91826115f0929190613efd565b505050565b6115fd611b98565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361166a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166190614019565b60405180910390fd5b8060066000611677611b98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611724611b98565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117699190612d80565b60405180910390a35050565b611780848484611c52565b61178c848484846128ea565b6117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c2906140ab565b60405180910390fd5b50505050565b60606117dc82611b8b565b61181b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118129061413d565b60405180910390fd5b6000611825612a71565b905060008151116118c057600d805461183d906133d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611869906133d8565b80156118b65780601f1061188b576101008083540402835291602001916118b6565b820191906000526020600020905b81548152906001019060200180831161189957829003601f168201915b50505050506118eb565b806118ca84612b03565b6040516020016118db9291906141e5565b6040516020818303038152906040525b915050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166119ce611b98565b73ffffffffffffffffffffffffffffffffffffffff1614611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90614260565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e6020528060005260406000206000915090505481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611ac1611b98565b73ffffffffffffffffffffffffffffffffffffffff1614611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e906142cc565b60405180910390fd5b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c5d82612209565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c84611b98565b73ffffffffffffffffffffffffffffffffffffffff161480611ce05750611ca9611b98565b73ffffffffffffffffffffffffffffffffffffffff16611cc884610971565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cfc5750611cfb8260000151611cf6611b98565b6118f9565b5b905080611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d359061435e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da7906143f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690614482565b60405180910390fd5b611e2c8585856001612c63565b611e3c6000848460000151611ba0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611eaa91906144be565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f4e91906144f2565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120549190613a74565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612199576120c981611b8b565b15612198576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122018686866001612c69565b505050505050565b612211612c92565b61221a82611b8b565b612259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612250906145aa565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000383106122bd5760017f0000000000000000000000000000000000000000000000000000000000000003846122b091906145ca565b6122ba9190613a74565b90505b60008390505b8181106123cb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123b757809350505050612407565b5080806123c3906145fe565b9150506122c3565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe90614699565b60405180910390fd5b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612481576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124789061472b565b60405180910390fd5b61248a81611b8b565b156124ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c190614797565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000383111561252d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252490614829565b60405180910390fd5b61253a6000858386612c63565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161263791906144f2565b6fffffffffffffffffffffffffffffffff16815260200185836020015161265e91906144f2565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156128cd57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461286d60008884886128ea565b6128ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a3906140ab565b60405180910390fd5b81806128b79061380a565b92505080806128c59061380a565b9150506127fc565b50806000819055506128e26000878588612c69565b505050505050565b600061290b8473ffffffffffffffffffffffffffffffffffffffff16612c6f565b15612a64578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612934611b98565b8786866040518563ffffffff1660e01b8152600401612956949392919061489e565b6020604051808303816000875af192505050801561299257506040513d601f19601f8201168201806040525081019061298f91906148ff565b60015b612a14573d80600081146129c2576040519150601f19603f3d011682016040523d82523d6000602084013e6129c7565b606091505b506000815103612a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a03906140ab565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a69565b600190505b949350505050565b6060600c8054612a80906133d8565b80601f0160208091040260200160405190810160405280929190818152602001828054612aac906133d8565b8015612af95780601f10612ace57610100808354040283529160200191612af9565b820191906000526020600020905b815481529060010190602001808311612adc57829003601f168201915b5050505050905090565b606060008203612b4a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c5e565b600082905060005b60008214612b7c578080612b659061380a565b915050600a82612b75919061495b565b9150612b52565b60008167ffffffffffffffff811115612b9857612b976131bb565b5b6040519080825280601f01601f191660200182016040528015612bca5781602001600182028036833780820191505090505b5090505b60008514612c5757600182612be391906145ca565b9150600a85612bf2919061498c565b6030612bfe9190613a74565b60f81b818381518110612c1457612c136149bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c50919061495b565b9450612bce565b8093505050505b919050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d1581612ce0565b8114612d2057600080fd5b50565b600081359050612d3281612d0c565b92915050565b600060208284031215612d4e57612d4d612cd6565b5b6000612d5c84828501612d23565b91505092915050565b60008115159050919050565b612d7a81612d65565b82525050565b6000602082019050612d956000830184612d71565b92915050565b6000819050919050565b612dae81612d9b565b82525050565b6000602082019050612dc96000830184612da5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e09578082015181840152602081019050612dee565b83811115612e18576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e3a82612dcf565b612e448185612dda565b9350612e54818560208601612deb565b612e5d81612e1e565b840191505092915050565b60006020820190508181036000830152612e828184612e2f565b905092915050565b612e9381612d9b565b8114612e9e57600080fd5b50565b600081359050612eb081612e8a565b92915050565b600060208284031215612ecc57612ecb612cd6565b5b6000612eda84828501612ea1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f0e82612ee3565b9050919050565b612f1e81612f03565b82525050565b6000602082019050612f396000830184612f15565b92915050565b612f4881612f03565b8114612f5357600080fd5b50565b600081359050612f6581612f3f565b92915050565b60008060408385031215612f8257612f81612cd6565b5b6000612f9085828601612f56565b9250506020612fa185828601612ea1565b9150509250929050565b60008060408385031215612fc257612fc1612cd6565b5b6000612fd085828601612ea1565b9250506020612fe185828601612f56565b9150509250929050565b612ff481612d65565b8114612fff57600080fd5b50565b60008135905061301181612feb565b92915050565b60006020828403121561302d5761302c612cd6565b5b600061303b84828501613002565b91505092915050565b60008060006060848603121561305d5761305c612cd6565b5b600061306b86828701612f56565b935050602061307c86828701612f56565b925050604061308d86828701612ea1565b9150509250925092565b6000602082840312156130ad576130ac612cd6565b5b60006130bb84828501612f56565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126130e9576130e86130c4565b5b8235905067ffffffffffffffff811115613106576131056130c9565b5b602083019150836001820283011115613122576131216130ce565b5b9250929050565b600080602083850312156131405761313f612cd6565b5b600083013567ffffffffffffffff81111561315e5761315d612cdb565b5b61316a858286016130d3565b92509250509250929050565b6000806040838503121561318d5761318c612cd6565b5b600061319b85828601612f56565b92505060206131ac85828601613002565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131f382612e1e565b810181811067ffffffffffffffff82111715613212576132116131bb565b5b80604052505050565b6000613225612ccc565b905061323182826131ea565b919050565b600067ffffffffffffffff821115613251576132506131bb565b5b61325a82612e1e565b9050602081019050919050565b82818337600083830152505050565b600061328961328484613236565b61321b565b9050828152602081018484840111156132a5576132a46131b6565b5b6132b0848285613267565b509392505050565b600082601f8301126132cd576132cc6130c4565b5b81356132dd848260208601613276565b91505092915050565b60008060008060808587031215613300576132ff612cd6565b5b600061330e87828801612f56565b945050602061331f87828801612f56565b935050604061333087828801612ea1565b925050606085013567ffffffffffffffff81111561335157613350612cdb565b5b61335d878288016132b8565b91505092959194509250565b600080604083850312156133805761337f612cd6565b5b600061338e85828601612f56565b925050602061339f85828601612f56565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133f057607f821691505b602082108103613403576134026133a9565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613465602d83612dda565b915061347082613409565b604082019050919050565b6000602082019050818103600083015261349481613458565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006134f7602283612dda565b91506135028261349b565b604082019050919050565b60006020820190508181036000830152613526816134ea565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613589603983612dda565b91506135948261352d565b604082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b7f706572666f726d4574685265636f7665723a204e6f7420746865206f776e6572600082015250565b60006135f5602083612dda565b9150613600826135bf565b602082019050919050565b60006020820190508181036000830152613624816135e8565b9050919050565b600081905092915050565b50565b600061364660008361362b565b915061365182613636565b600082019050919050565b600061366782613639565b9150819050919050565b7f7365744d696e745374617475733a206e6f7420746865206f776e657200000000600082015250565b60006136a7601c83612dda565b91506136b282613671565b602082019050919050565b600060208201905081810360008301526136d68161369a565b9050919050565b7f736574506169644d696e7453746172743a206e6f7420746865206f776e657200600082015250565b6000613713601f83612dda565b915061371e826136dd565b602082019050919050565b6000602082019050818103600083015261374281613706565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006137a5602283612dda565b91506137b082613749565b604082019050919050565b600060208201905081810360008301526137d481613798565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061381582612d9b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613847576138466137db565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006138ae602e83612dda565b91506138b982613852565b604082019050919050565b600060208201905081810360008301526138dd816138a1565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613940602383612dda565b915061394b826138e4565b604082019050919050565b6000602082019050818103600083015261396f81613933565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006139d2602b83612dda565b91506139dd82613976565b604082019050919050565b60006020820190508181036000830152613a01816139c5565b9050919050565b7f6d696e743a206d696e74696e67206e6f742079657420737461727465642e0000600082015250565b6000613a3e601e83612dda565b9150613a4982613a08565b602082019050919050565b60006020820190508181036000830152613a6d81613a31565b9050919050565b6000613a7f82612d9b565b9150613a8a83612d9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613abf57613abe6137db565b5b828201905092915050565b7f6d696e743a206d61782e20737570706c7920726561636865642e000000000000600082015250565b6000613b00601a83612dda565b9150613b0b82613aca565b602082019050919050565b60006020820190508181036000830152613b2f81613af3565b9050919050565b7f6d696e743a206d61782e206d696e74207065722077616c6c657420726561636860008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b6000613b92602383612dda565b9150613b9d82613b36565b604082019050919050565b60006020820190508181036000830152613bc181613b85565b9050919050565b6000613bd382612d9b565b9150613bde83612d9b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c1757613c166137db565b5b828202905092915050565b7f6d696e743a20706c656173652073656e6420746865206578616374206574682060008201527f616d6f756e742e00000000000000000000000000000000000000000000000000602082015250565b6000613c7e602783612dda565b9150613c8982613c22565b604082019050919050565b60006020820190508181036000830152613cad81613c71565b9050919050565b7f736574426173655572693a206d757374206265206f776e657220746f2073657460008201527f2062617365207572692e00000000000000000000000000000000000000000000602082015250565b6000613d10602a83612dda565b9150613d1b82613cb4565b604082019050919050565b60006020820190508181036000830152613d3f81613d03565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613db37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613d76565b613dbd8683613d76565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613dfa613df5613df084612d9b565b613dd5565b612d9b565b9050919050565b6000819050919050565b613e1483613ddf565b613e28613e2082613e01565b848454613d83565b825550505050565b600090565b613e3d613e30565b613e48818484613e0b565b505050565b5b81811015613e6c57613e61600082613e35565b600181019050613e4e565b5050565b601f821115613eb157613e8281613d51565b613e8b84613d66565b81016020851015613e9a578190505b613eae613ea685613d66565b830182613e4d565b50505b505050565b600082821c905092915050565b6000613ed460001984600802613eb6565b1980831691505092915050565b6000613eed8383613ec3565b9150826002028217905092915050565b613f078383613d46565b67ffffffffffffffff811115613f2057613f1f6131bb565b5b613f2a82546133d8565b613f35828285613e70565b6000601f831160018114613f645760008415613f52578287013590505b613f5c8582613ee1565b865550613fc4565b601f198416613f7286613d51565b60005b82811015613f9a57848901358255600182019150602085019450602081019050613f75565b86831015613fb75784890135613fb3601f891682613ec3565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614003601a83612dda565b915061400e82613fcd565b602082019050919050565b6000602082019050818103600083015261403281613ff6565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614095603383612dda565b91506140a082614039565b604082019050919050565b600060208201905081810360008301526140c481614088565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614127602f83612dda565b9150614132826140cb565b604082019050919050565b600060208201905081810360008301526141568161411a565b9050919050565b600081905092915050565b600061417382612dcf565b61417d818561415d565b935061418d818560208601612deb565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006141cf60058361415d565b91506141da82614199565b600582019050919050565b60006141f18285614168565b91506141fd8284614168565b9150614208826141c2565b91508190509392505050565b7f7472616e736665724f776e6572736869703a206e6f7420746865206f776e6572600082015250565b600061424a602083612dda565b915061425582614214565b602082019050919050565b600060208201905081810360008301526142798161423d565b9050919050565b7f7365744d696e7450726963653a206e6f7420746865206f776e65720000000000600082015250565b60006142b6601b83612dda565b91506142c182614280565b602082019050919050565b600060208201905081810360008301526142e5816142a9565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614348603283612dda565b9150614353826142ec565b604082019050919050565b600060208201905081810360008301526143778161433b565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006143da602683612dda565b91506143e58261437e565b604082019050919050565b60006020820190508181036000830152614409816143cd565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061446c602583612dda565b915061447782614410565b604082019050919050565b6000602082019050818103600083015261449b8161445f565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006144c9826144a2565b91506144d4836144a2565b9250828210156144e7576144e66137db565b5b828203905092915050565b60006144fd826144a2565b9150614508836144a2565b9250826fffffffffffffffffffffffffffffffff0382111561452d5761452c6137db565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614594602a83612dda565b915061459f82614538565b604082019050919050565b600060208201905081810360008301526145c381614587565b9050919050565b60006145d582612d9b565b91506145e083612d9b565b9250828210156145f3576145f26137db565b5b828203905092915050565b600061460982612d9b565b91506000820361461c5761461b6137db565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614683602f83612dda565b915061468e82614627565b604082019050919050565b600060208201905081810360008301526146b281614676565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614715602183612dda565b9150614720826146b9565b604082019050919050565b6000602082019050818103600083015261474481614708565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614781601d83612dda565b915061478c8261474b565b602082019050919050565b600060208201905081810360008301526147b081614774565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614813602283612dda565b915061481e826147b7565b604082019050919050565b6000602082019050818103600083015261484281614806565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061487082614849565b61487a8185614854565b935061488a818560208601612deb565b61489381612e1e565b840191505092915050565b60006080820190506148b36000830187612f15565b6148c06020830186612f15565b6148cd6040830185612da5565b81810360608301526148df8184614865565b905095945050505050565b6000815190506148f981612d0c565b92915050565b60006020828403121561491557614914612cd6565b5b6000614923848285016148ea565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061496682612d9b565b915061497183612d9b565b9250826149815761498061492c565b5b828204905092915050565b600061499782612d9b565b91506149a283612d9b565b9250826149b2576149b161492c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220c0e409f1630b06a94ac9d2934c87892b3ff55a94853b2af60eeebf5a269c395c64736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000a706978656c6265616e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003505842000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5756794c52386143656b327141767138705861756f7041776e696b434a616977556270586f67774c6d5079340000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): pixelbeans
Arg [1] : symbol (string): PXB
Arg [2] : baseTokenURI (string):
Arg [3] : defaultURI (string): ipfs://QmWVyLR8aCek2qAvq8pXauopAwnikCJaiwUbpXogwLmPy4
Arg [4] : maxBatch (uint256): 3
Arg [5] : collectionSize (uint256): 2000
Arg [6] : paidMintStart (uint256): 1000
Arg [7] : mintPrice (uint256): 10000000000000000

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [6] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [7] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [9] : 706978656c6265616e7300000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 5058420000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [14] : 697066733a2f2f516d5756794c52386143656b327141767138705861756f7041
Arg [15] : 776e696b434a616977556270586f67774c6d5079340000000000000000000000


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.