ETH Price: $3,430.11 (+2.41%)
Gas: 9.95 Gwei

Token

A6 Experiment (A6EX)
 

Overview

Max Total Supply

4,200 A6EX

Holders

104

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 A6EX
0xa3b9bcef0a60819cc951461977b7b2cf17521b74
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:
AvastarRemix

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Avastar.sol
// SPDX-License-Identifier: GPL-3.0
// solhint-disable-next-line
pragma solidity ^0.8.12;

import "./ERC721A.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol";

contract AvastarRemix is ERC721A, ReentrancyGuard {
  using Strings for uint256;

  // Public attributes for Manageable interface
  string public project;
  uint256 public totalSupply;
  uint256 public mintingPrice;
  uint256 public mintingMax;
  uint256 public holdingMax;
  bool public open;
  string public baseURI;
  bool public whitelisted;
  address public withdrawAddress;
  address public secret;

  struct SignatureStruct {
    address sender;
    uint256 tokenAmount;
    uint256 redeem;
  }
  
  // Project specific
  address public vaultAddress;
  uint256 public presaleMaximum;
  bool public preminted;
  mapping(address => bool) public redeemed;

  // solhint-disable-next-line
  constructor(
    string memory _project,
    string memory _name,
    string memory _symbol
  ) ERC721A(_name, _symbol) {
    project = _project;
    mintingPrice = 69000000000000000;
    mintingMax = 10;
    holdingMax = 420;
    open = false;
    whitelisted = true;
    presaleMaximum = 10;
    preminted = false;
    totalSupply = 4200;
    vaultAddress = 0x9a30D1D71DdFe4d6362a983C70C56d55b1C3d299;
    withdrawAddress = 0x6C184c2A60Dc0D8962bc439D748De9d3d929CbFe;
  }

  /**
   *  Minting function
   */
  function mint(bytes memory signature, uint256 tokenAmount, uint256 redeem) public payable nonReentrant {
    require(open, "Contract closed");
    require(verifyTransactionAmount(tokenAmount), "Insufficient ETH");
    require(verifyWhitelisting(signature, tokenAmount, redeem), 'Not whitelisted');
    require(verifyTokensAvailability(tokenAmount), "Supply limit");
    require(verifyTransactionLimit(tokenAmount), "Too many tokens");

    if (whitelisted && redeem > 0) {
      require(verifyRedeem(msg.sender), "Already redeemed");
      tokenAmount += 1;
      redeemed[msg.sender] = true;
    }
    buy(msg.sender, tokenAmount);
  }

  function premint() public onlyOwner nonReentrant {
    require(preminted == false, "Already preminted");
    buy(vaultAddress, 42);
    preminted = true;
  }

  /**
   *  Minting function by owner
   */
  function mintByOwner(address receiver, uint256 tokenAmount) public onlyOwner nonReentrant {
    require(verifyTokensAvailability(tokenAmount), "Supply limit");
    buy(receiver, tokenAmount);
  }

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

  /*
   * Owner can withdraw the contract's ETH to an external address
   */
  function withdrawETH(address depositAddress, uint256 amount) public onlyOwner {
    uint256 currentBalance = address(this).balance;
    require(amount <= currentBalance, "Insufficient funds");
    if (depositAddress == address(0)) {
      revert("Withdrawing to address(0)");
    } else {
      payable(depositAddress).transfer(amount);
    }
  }
  function distribute(address [] memory _holders, uint256 [] memory _amounts) public onlyOwner () {
    require (_holders.length == _amounts.length, "Holders distribution error");
    require(_holders.length > 0, "Holders not set");
    for (uint i = 0;i<_holders.length;i++){
       if(_amounts[i]>0) {
           payable(_holders[i]).transfer(_amounts[i]);
       }
    }
 }

  function verifyRedeem(address sender) internal view returns (bool) {
    return redeemed[sender] == false;
  }

  function verifyTransactionAmount(uint256 tokenAmount) internal view returns (bool) {
    return msg.value >= tokenAmount * mintingPrice;
  }

  function verifyTokensAvailability(uint256 tokenAmount) internal view returns (bool) {
    return totalSupply >= tokenAmount + _totalMinted();
  }

  function verifyTransactionLimit(uint256 tokenAmount) internal view returns (bool) {
    return mintingMax >= tokenAmount;
  }

  /**
  * Verify if the sender wallet is whitelisted
  */
  function verifyWhitelisting(bytes memory signature, uint256 tokenAmount, uint256 redeem) internal view returns (bool) {
    if (!whitelisted) {
      return true;
    }
    SignatureStruct memory payload = SignatureStruct(msg.sender, tokenAmount, redeem);
    // Pack the payload
    bytes32 freshHash = keccak256(abi.encode(payload.sender, payload.tokenAmount, payload.redeem));
    // Get the packed payload hash
    bytes32 candidateHash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", freshHash));
    // Verify if the fresh hash is signed with the provided signature 
    return verifyHashSignature(candidateHash, signature);
  }

  /**
  * Verify if signature is authentic and matches the request context 
  */
  function verifyHashSignature(bytes32 hash, bytes memory signature) internal view returns (bool) {
    if (!whitelisted) {
      return true;
    }
    bytes32 r;
    bytes32 s;
    uint8 v;

    // Check the signature length
    if (signature.length != 65) {
      return false;
    }

    // Divide the signature in r, s and v variables
    // ecrecover takes the signature parameters, and the only way to get them
    // currently is to use assembly.
    // solium-disable-next-line security/no-inline-assembly
    assembly {
      r := mload(add(signature, 32))
      s := mload(add(signature, 64))
      v := byte(0, mload(add(signature, 96)))
    }

    // Version of signature should be 27 or 28, but 0 and 1 are also possible versions
    if (v < 27) {
      v += 27;
    }

    address signer = address(0);
    // If the version is correct, gather info
    if (v == 27 || v == 28) {
      // solium-disable-next-line arg-overflow
      signer = ecrecover(hash, v, r, s);
    }
    return secret == signer;
  }

  function minted() external view returns (uint256) {
    return _totalMinted();
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function setMintingPrice(uint256 _mintingPrice) external onlyOwner {
    mintingPrice = _mintingPrice;
    open = false;
  }

  function setMintingMax(uint256 _mintingMax) external onlyOwner {
    mintingMax = _mintingMax;
  }

  function setHoldingMax(uint256 _holdingMax) external onlyOwner {
    holdingMax = _holdingMax;
  }

  function setOpen(bool _open) external onlyOwner {
    open = _open;
  }

  function setBaseURI(string memory _baseURI) external onlyOwner {
    baseURI = _baseURI;
  }

  function setWithdrawAddress(address _withdrawAddress) external onlyOwner {
    withdrawAddress = _withdrawAddress;
  }

  function setSecret(address  _secret) external onlyOwner {
    secret = _secret;
  }

  function setWhitelisted(bool _whitelisted) external onlyOwner {
    whitelisted = _whitelisted;
  }

  function tokenURI(uint256 tokenId) public view override returns (string memory) {
    require(_exists(tokenId), "Invalid token request");
    string memory base = baseURI;
    // If there is no base URI, return the token URI.
    if (bytes(base).length == 0) {
      return "";
    }

    return string(abi.encodePacked(base, tokenId.toString()));
  }

  function setMultiple(
    uint256 _totalSupply,
    uint256 _mintingPrice,
    uint256 _mintingMax,
    uint256 _holdingMax
  ) external onlyOwner {
    require(_totalSupply > _totalMinted(), "Total supply too low");
    totalSupply = _totalSupply;
    mintingPrice = _mintingPrice;
    open = (mintingPrice == _mintingPrice);
    mintingMax = _mintingMax;
    holdingMax = _holdingMax;
  }
}

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 3 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';
import '@openzeppelin/contracts/access/Ownable.sol';


error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Ownable, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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) internal _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;

    constructor(string memory name_, string memory symbol_) Ownable() {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = 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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 11 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_project","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_holders","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"distribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdingMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"uint256","name":"redeem","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingPrice","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":"open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"preminted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaximum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"project","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"redeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"secret","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_holdingMax","type":"uint256"}],"name":"setHoldingMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintingMax","type":"uint256"}],"name":"setMintingMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintingPrice","type":"uint256"}],"name":"setMintingPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_mintingPrice","type":"uint256"},{"internalType":"uint256","name":"_mintingMax","type":"uint256"},{"internalType":"uint256","name":"_holdingMax","type":"uint256"}],"name":"setMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"}],"name":"setOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_secret","type":"address"}],"name":"setSecret","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_whitelisted","type":"bool"}],"name":"setWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawAddress","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vaultAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"depositAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200550a3803806200550a83398181016040528101906200003791906200051a565b8181620000596200004d620001f860201b60201c565b6200020060201b60201c565b816003908051906020019062000071929190620002cd565b5080600490805190602001906200008a929190620002cd565b506200009b620002c460201b60201c565b6001819055505050600160098190555082600a9080519060200190620000c3929190620002cd565b5066f5232269808000600c81905550600a600d819055506101a4600e819055506000600f60006101000a81548160ff0219169083151502179055506001601160006101000a81548160ff021916908315150217905550600a6014819055506000601560006101000a81548160ff021916908315150217905550611068600b81905550739a30d1d71ddfe4d6362a983c70c56d55b1c3d299601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736c184c2a60dc0d8962bc439d748de9d3d929cbfe601160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000637565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b828054620002db9062000602565b90600052602060002090601f016020900481019282620002ff57600085556200034b565b82601f106200031a57805160ff19168380011785556200034b565b828001600101855582156200034b579182015b828111156200034a5782518255916020019190600101906200032d565b5b5090506200035a91906200035e565b5090565b5b80821115620003795760008160009055506001016200035f565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003e6826200039b565b810181811067ffffffffffffffff82111715620004085762000407620003ac565b5b80604052505050565b60006200041d6200037d565b90506200042b8282620003db565b919050565b600067ffffffffffffffff8211156200044e576200044d620003ac565b5b62000459826200039b565b9050602081019050919050565b60005b838110156200048657808201518184015260208101905062000469565b8381111562000496576000848401525b50505050565b6000620004b3620004ad8462000430565b62000411565b905082815260208101848484011115620004d257620004d162000396565b5b620004df84828562000466565b509392505050565b600082601f830112620004ff57620004fe62000391565b5b8151620005118482602086016200049c565b91505092915050565b60008060006060848603121562000536576200053562000387565b5b600084015167ffffffffffffffff8111156200055757620005566200038c565b5b6200056586828701620004e7565b935050602084015167ffffffffffffffff8111156200058957620005886200038c565b5b6200059786828701620004e7565b925050604084015167ffffffffffffffff811115620005bb57620005ba6200038c565b5b620005c986828701620004e7565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200061b57607f821691505b602082108103620006315762000630620005d3565b5b50919050565b614ec380620006476000396000f3fe6080604052600436106102725760003560e01c80636fdca5e01161014f578063b88d4fde116100c1578063e6b7354e1161007a578063e6b7354e1461091b578063e985e9c514610944578063e9a7484c14610981578063f2fde38b146109aa578063f60ca60d146109d3578063fcfff16f146109fe57610272565b8063b88d4fde1461080b578063bb77aa3e14610834578063c5f71da51461085d578063c87b56dd14610888578063d1efd30d146108c5578063da52c522146108f057610272565b80638417b47f116101135780638417b47f146106fd578063859c263a146107265780638da5cb5b1461074f57806395d89b411461077a5780639f4568ef146107a5578063a22cb465146107e257610272565b80636fdca5e01461063b57806370a082311461066457806370f93ede146106a1578063715018a6146106bd5780637b789204146106d457610272565b806335db70b5116101e85780634782f779116101ac5780634782f7791461053f57806348a1e66b146105685780634f02c4201461057f57806355f804b3146105aa5780636352211e146105d35780636c0360eb1461061057610272565b806335db70b51461046c5780633ab1a494146104975780633d9287fa146104c057806342842e0e146104eb578063430bf08a1461051457610272565b806318160ddd1161023a57806318160ddd1461037057806323b872dd1461039b57806328cd8ef1146103c45780632929abe6146103ef5780633542aee214610418578063357b794e1461044157610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780631581b60014610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613927565b610a29565b6040516102ab919061396f565b60405180910390f35b3480156102c057600080fd5b506102c9610b0b565b6040516102d69190613a23565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613a7b565b610b9d565b6040516103139190613ae9565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613b30565b610c19565b005b34801561035157600080fd5b5061035a610d23565b6040516103679190613ae9565b60405180910390f35b34801561037c57600080fd5b50610385610d49565b6040516103929190613b7f565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613b9a565b610d4f565b005b3480156103d057600080fd5b506103d9610d5f565b6040516103e69190613b7f565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190613df8565b610d65565b005b34801561042457600080fd5b5061043f600480360381019061043a9190613b30565b610f2c565b005b34801561044d57600080fd5b50610456611053565b604051610463919061396f565b60405180910390f35b34801561047857600080fd5b50610481611066565b60405161048e9190613b7f565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190613e70565b61106c565b005b3480156104cc57600080fd5b506104d561112c565b6040516104e2919061396f565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190613b9a565b61113f565b005b34801561052057600080fd5b5061052961115f565b6040516105369190613ae9565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190613b30565b611185565b005b34801561057457600080fd5b5061057d611304565b005b34801561058b57600080fd5b50610594611475565b6040516105a19190613b7f565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc9190613f52565b611484565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190613a7b565b61151a565b6040516106079190613ae9565b60405180910390f35b34801561061c57600080fd5b50610625611530565b6040516106329190613a23565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190613fc7565b6115be565b005b34801561067057600080fd5b5061068b60048036038101906106869190613e70565b611657565b6040516106989190613b7f565b60405180910390f35b6106bb60048036038101906106b69190614095565b611726565b005b3480156106c957600080fd5b506106d26119cc565b005b3480156106e057600080fd5b506106fb60048036038101906106f69190613fc7565b611a54565b005b34801561070957600080fd5b50610724600480360381019061071f9190613a7b565b611aed565b005b34801561073257600080fd5b5061074d60048036038101906107489190614104565b611b8e565b005b34801561075b57600080fd5b50610764611c93565b6040516107719190613ae9565b60405180910390f35b34801561078657600080fd5b5061078f611cbc565b60405161079c9190613a23565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190613e70565b611d4e565b6040516107d9919061396f565b60405180910390f35b3480156107ee57600080fd5b506108096004803603810190610804919061416b565b611d6e565b005b34801561081757600080fd5b50610832600480360381019061082d91906141ab565b611ee5565b005b34801561084057600080fd5b5061085b60048036038101906108569190613a7b565b611f61565b005b34801561086957600080fd5b50610872611fe7565b60405161087f9190613b7f565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613a7b565b611fed565b6040516108bc9190613a23565b60405180910390f35b3480156108d157600080fd5b506108da61211a565b6040516108e79190613ae9565b60405180910390f35b3480156108fc57600080fd5b50610905612140565b6040516109129190613b7f565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d9190613a7b565b612146565b005b34801561095057600080fd5b5061096b6004803603810190610966919061422e565b6121cc565b604051610978919061396f565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190613e70565b612260565b005b3480156109b657600080fd5b506109d160048036038101906109cc9190613e70565b612320565b005b3480156109df57600080fd5b506109e8612417565b6040516109f59190613a23565b60405180910390f35b348015610a0a57600080fd5b50610a136124a5565b604051610a20919061396f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b045750610b03826124b8565b5b9050919050565b606060038054610b1a9061429d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b469061429d565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b6000610ba882612522565b610bde576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c248261151a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c8b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610caa612570565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cdc5750610cda81610cd5612570565b6121cc565b155b15610d13576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d1e838383612578565b505050565b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b610d5a83838361262a565b505050565b600e5481565b610d6d612570565b73ffffffffffffffffffffffffffffffffffffffff16610d8b611c93565b73ffffffffffffffffffffffffffffffffffffffff1614610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd89061431a565b60405180910390fd5b8051825114610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90614386565b60405180910390fd5b6000825111610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e60906143f2565b60405180910390fd5b60005b8251811015610f27576000828281518110610e8a57610e89614412565b5b60200260200101511115610f1457828181518110610eab57610eaa614412565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff166108fc838381518110610edf57610ede614412565b5b60200260200101519081150290604051600060405180830381858888f19350505050158015610f12573d6000803e3d6000fd5b505b8080610f1f90614470565b915050610e6c565b505050565b610f34612570565b73ffffffffffffffffffffffffffffffffffffffff16610f52611c93565b73ffffffffffffffffffffffffffffffffffffffff1614610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f9061431a565b60405180910390fd5b600260095403610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490614504565b60405180910390fd5b6002600981905550610ffe81612ade565b61103d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103490614570565b60405180910390fd5b6110478282612aff565b60016009819055505050565b601560009054906101000a900460ff1681565b600c5481565b611074612570565b73ffffffffffffffffffffffffffffffffffffffff16611092611c93565b73ffffffffffffffffffffffffffffffffffffffff16146110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df9061431a565b60405180910390fd5b80601160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601160009054906101000a900460ff1681565b61115a83838360405180602001604052806000815250611ee5565b505050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61118d612570565b73ffffffffffffffffffffffffffffffffffffffff166111ab611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f89061431a565b60405180910390fd5b600047905080821115611249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611240906145dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af90614648565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156112fe573d6000803e3d6000fd5b50505050565b61130c612570565b73ffffffffffffffffffffffffffffffffffffffff1661132a611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611380576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113779061431a565b60405180910390fd5b6002600954036113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc90614504565b60405180910390fd5b600260098190555060001515601560009054906101000a900460ff16151514611423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141a906146b4565b60405180910390fd5b611450601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16602a612aff565b6001601560006101000a81548160ff0219169083151502179055506001600981905550565b600061147f612b0d565b905090565b61148c612570565b73ffffffffffffffffffffffffffffffffffffffff166114aa611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f79061431a565b60405180910390fd5b80601090805190602001906115169291906137d5565b5050565b600061152582612b20565b600001519050919050565b6010805461153d9061429d565b80601f01602080910402602001604051908101604052809291908181526020018280546115699061429d565b80156115b65780601f1061158b576101008083540402835291602001916115b6565b820191906000526020600020905b81548152906001019060200180831161159957829003601f168201915b505050505081565b6115c6612570565b73ffffffffffffffffffffffffffffffffffffffff166115e4611c93565b73ffffffffffffffffffffffffffffffffffffffff161461163a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116319061431a565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116be576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60026009540361176b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176290614504565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff166117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b990614720565b60405180910390fd5b6117cb82612daf565b61180a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118019061478c565b60405180910390fd5b611815838383612dc9565b611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b906147f8565b60405180910390fd5b61185d82612ade565b61189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390614570565b60405180910390fd5b6118a582612e9a565b6118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db90614864565b60405180910390fd5b601160009054906101000a900460ff1680156119005750600081115b156119b55761190e33612ea9565b61194d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611944906148d0565b60405180910390fd5b60018261195a91906148f0565b91506001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6119bf3383612aff565b6001600981905550505050565b6119d4612570565b73ffffffffffffffffffffffffffffffffffffffff166119f2611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f9061431a565b60405180910390fd5b611a526000612f05565b565b611a5c612570565b73ffffffffffffffffffffffffffffffffffffffff16611a7a611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac79061431a565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b611af5612570565b73ffffffffffffffffffffffffffffffffffffffff16611b13611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b609061431a565b60405180910390fd5b80600c819055506000600f60006101000a81548160ff02191690831515021790555050565b611b96612570565b73ffffffffffffffffffffffffffffffffffffffff16611bb4611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c019061431a565b60405180910390fd5b611c12612b0d565b8411611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a90614992565b60405180910390fd5b83600b8190555082600c8190555082600c5414600f60006101000a81548160ff02191690831515021790555081600d8190555080600e8190555050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611ccb9061429d565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf79061429d565b8015611d445780601f10611d1957610100808354040283529160200191611d44565b820191906000526020600020905b815481529060010190602001808311611d2757829003601f168201915b5050505050905090565b60166020528060005260406000206000915054906101000a900460ff1681565b611d76612570565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dda576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611de7612570565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e94612570565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ed9919061396f565b60405180910390a35050565b611ef084848461262a565b611f0f8373ffffffffffffffffffffffffffffffffffffffff16612fc9565b8015611f245750611f2284848484612fdc565b155b15611f5b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611f69612570565b73ffffffffffffffffffffffffffffffffffffffff16611f87611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd49061431a565b60405180910390fd5b80600d8190555050565b60145481565b6060611ff882612522565b612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e906149fe565b60405180910390fd5b6000601080546120469061429d565b80601f01602080910402602001604051908101604052809291908181526020018280546120729061429d565b80156120bf5780601f10612094576101008083540402835291602001916120bf565b820191906000526020600020905b8154815290600101906020018083116120a257829003601f168201915b5050505050905060008151036120e75760405180602001604052806000815250915050612115565b806120f18461312c565b604051602001612102929190614a5a565b6040516020818303038152906040529150505b919050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b61214e612570565b73ffffffffffffffffffffffffffffffffffffffff1661216c611c93565b73ffffffffffffffffffffffffffffffffffffffff16146121c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b99061431a565b60405180910390fd5b80600e8190555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612268612570565b73ffffffffffffffffffffffffffffffffffffffff16612286611c93565b73ffffffffffffffffffffffffffffffffffffffff16146122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d39061431a565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612328612570565b73ffffffffffffffffffffffffffffffffffffffff16612346611c93565b73ffffffffffffffffffffffffffffffffffffffff161461239c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123939061431a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361240b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240290614af0565b60405180910390fd5b61241481612f05565b50565b600a80546124249061429d565b80601f01602080910402602001604051908101604052809291908181526020018280546124509061429d565b801561249d5780601f106124725761010080835404028352916020019161249d565b820191906000526020600020905b81548152906001019060200180831161248057829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161252d61328c565b1115801561253c575060015482105b8015612569575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061263582612b20565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126a0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166126c1612570565b73ffffffffffffffffffffffffffffffffffffffff1614806126f057506126ef856126ea612570565b6121cc565b5b8061273557506126fe612570565b73ffffffffffffffffffffffffffffffffffffffff1661271d84610b9d565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061276e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036127d4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127e18585856001613295565b6127ed60008487612578565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612a6c576001548214612a6b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ad7858585600161329b565b5050505050565b6000612ae8612b0d565b82612af391906148f0565b600b5410159050919050565b612b0982826132a1565b5050565b6000612b1761328c565b60015403905090565b612b2861385b565b600082905080612b3661328c565b11158015612b45575060015481105b15612d78576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612d7657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c5a578092505050612daa565b5b600115612d7557818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d70578092505050612daa565b612c5b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600c5482612dbf9190614b10565b3410159050919050565b6000601160009054906101000a900460ff16612de85760019050612e93565b600060405180606001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018481525090506000816000015182602001518360400151604051602001612e4093929190614b6a565b604051602081830303815290604052805190602001209050600081604051602001612e6b9190614c18565b604051602081830303815290604052805190602001209050612e8d81886132bf565b93505050505b9392505050565b600081600d5410159050919050565b6000801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515149050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613002612570565b8786866040518563ffffffff1660e01b81526004016130249493929190614c93565b6020604051808303816000875af192505050801561306057506040513d601f19601f8201168201806040525081019061305d9190614cf4565b60015b6130d9573d8060008114613090576040519150601f19603f3d011682016040523d82523d6000602084013e613095565b606091505b5060008151036130d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203613173576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613287565b600082905060005b600082146131a557808061318e90614470565b915050600a8261319e9190614d50565b915061317b565b60008167ffffffffffffffff8111156131c1576131c0613bf2565b5b6040519080825280601f01601f1916602001820160405280156131f35781602001600182028036833780820191505090505b5090505b600085146132805760018261320c9190614d81565b9150600a8561321b9190614db5565b603061322791906148f0565b60f81b81838151811061323d5761323c614412565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132799190614d50565b94506131f7565b8093505050505b919050565b60006001905090565b50505050565b50505050565b6132bb8282604051806020016040528060008152506133f8565b5050565b6000601160009054906101000a900460ff166132de57600190506133f2565b600080600060418551146132f857600093505050506133f2565b6020850151925060408501519150606085015160001a9050601b8160ff16101561332c57601b816133299190614df3565b90505b6000601b8260ff1614806133435750601c8260ff16145b1561339a576001878386866040516000815260200160405260405161336b9493929190614e48565b6020604051602081039080840390855afa15801561338d573d6000803e3d6000fd5b5050506020604051035190505b8073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149450505050505b92915050565b613405838383600161340a565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613477576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036134b1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134be6000868387613295565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561368857506136878773ffffffffffffffffffffffffffffffffffffffff16612fc9565b5b1561374d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136fd6000888480600101955088612fdc565b613733576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361368e57826001541461374857600080fd5b6137b8565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361374e575b8160018190555050506137ce600086838761329b565b5050505050565b8280546137e19061429d565b90600052602060002090601f016020900481019282613803576000855561384a565b82601f1061381c57805160ff191683800117855561384a565b8280016001018555821561384a579182015b8281111561384957825182559160200191906001019061382e565b5b509050613857919061389e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156138b757600081600090555060010161389f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613904816138cf565b811461390f57600080fd5b50565b600081359050613921816138fb565b92915050565b60006020828403121561393d5761393c6138c5565b5b600061394b84828501613912565b91505092915050565b60008115159050919050565b61396981613954565b82525050565b60006020820190506139846000830184613960565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139c45780820151818401526020810190506139a9565b838111156139d3576000848401525b50505050565b6000601f19601f8301169050919050565b60006139f58261398a565b6139ff8185613995565b9350613a0f8185602086016139a6565b613a18816139d9565b840191505092915050565b60006020820190508181036000830152613a3d81846139ea565b905092915050565b6000819050919050565b613a5881613a45565b8114613a6357600080fd5b50565b600081359050613a7581613a4f565b92915050565b600060208284031215613a9157613a906138c5565b5b6000613a9f84828501613a66565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ad382613aa8565b9050919050565b613ae381613ac8565b82525050565b6000602082019050613afe6000830184613ada565b92915050565b613b0d81613ac8565b8114613b1857600080fd5b50565b600081359050613b2a81613b04565b92915050565b60008060408385031215613b4757613b466138c5565b5b6000613b5585828601613b1b565b9250506020613b6685828601613a66565b9150509250929050565b613b7981613a45565b82525050565b6000602082019050613b946000830184613b70565b92915050565b600080600060608486031215613bb357613bb26138c5565b5b6000613bc186828701613b1b565b9350506020613bd286828701613b1b565b9250506040613be386828701613a66565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c2a826139d9565b810181811067ffffffffffffffff82111715613c4957613c48613bf2565b5b80604052505050565b6000613c5c6138bb565b9050613c688282613c21565b919050565b600067ffffffffffffffff821115613c8857613c87613bf2565b5b602082029050602081019050919050565b600080fd5b6000613cb1613cac84613c6d565b613c52565b90508083825260208201905060208402830185811115613cd457613cd3613c99565b5b835b81811015613cfd5780613ce98882613b1b565b845260208401935050602081019050613cd6565b5050509392505050565b600082601f830112613d1c57613d1b613bed565b5b8135613d2c848260208601613c9e565b91505092915050565b600067ffffffffffffffff821115613d5057613d4f613bf2565b5b602082029050602081019050919050565b6000613d74613d6f84613d35565b613c52565b90508083825260208201905060208402830185811115613d9757613d96613c99565b5b835b81811015613dc05780613dac8882613a66565b845260208401935050602081019050613d99565b5050509392505050565b600082601f830112613ddf57613dde613bed565b5b8135613def848260208601613d61565b91505092915050565b60008060408385031215613e0f57613e0e6138c5565b5b600083013567ffffffffffffffff811115613e2d57613e2c6138ca565b5b613e3985828601613d07565b925050602083013567ffffffffffffffff811115613e5a57613e596138ca565b5b613e6685828601613dca565b9150509250929050565b600060208284031215613e8657613e856138c5565b5b6000613e9484828501613b1b565b91505092915050565b600080fd5b600067ffffffffffffffff821115613ebd57613ebc613bf2565b5b613ec6826139d9565b9050602081019050919050565b82818337600083830152505050565b6000613ef5613ef084613ea2565b613c52565b905082815260208101848484011115613f1157613f10613e9d565b5b613f1c848285613ed3565b509392505050565b600082601f830112613f3957613f38613bed565b5b8135613f49848260208601613ee2565b91505092915050565b600060208284031215613f6857613f676138c5565b5b600082013567ffffffffffffffff811115613f8657613f856138ca565b5b613f9284828501613f24565b91505092915050565b613fa481613954565b8114613faf57600080fd5b50565b600081359050613fc181613f9b565b92915050565b600060208284031215613fdd57613fdc6138c5565b5b6000613feb84828501613fb2565b91505092915050565b600067ffffffffffffffff82111561400f5761400e613bf2565b5b614018826139d9565b9050602081019050919050565b600061403861403384613ff4565b613c52565b90508281526020810184848401111561405457614053613e9d565b5b61405f848285613ed3565b509392505050565b600082601f83011261407c5761407b613bed565b5b813561408c848260208601614025565b91505092915050565b6000806000606084860312156140ae576140ad6138c5565b5b600084013567ffffffffffffffff8111156140cc576140cb6138ca565b5b6140d886828701614067565b93505060206140e986828701613a66565b92505060406140fa86828701613a66565b9150509250925092565b6000806000806080858703121561411e5761411d6138c5565b5b600061412c87828801613a66565b945050602061413d87828801613a66565b935050604061414e87828801613a66565b925050606061415f87828801613a66565b91505092959194509250565b60008060408385031215614182576141816138c5565b5b600061419085828601613b1b565b92505060206141a185828601613fb2565b9150509250929050565b600080600080608085870312156141c5576141c46138c5565b5b60006141d387828801613b1b565b94505060206141e487828801613b1b565b93505060406141f587828801613a66565b925050606085013567ffffffffffffffff811115614216576142156138ca565b5b61422287828801614067565b91505092959194509250565b60008060408385031215614245576142446138c5565b5b600061425385828601613b1b565b925050602061426485828601613b1b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142b557607f821691505b6020821081036142c8576142c761426e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614304602083613995565b915061430f826142ce565b602082019050919050565b60006020820190508181036000830152614333816142f7565b9050919050565b7f486f6c6465727320646973747269627574696f6e206572726f72000000000000600082015250565b6000614370601a83613995565b915061437b8261433a565b602082019050919050565b6000602082019050818103600083015261439f81614363565b9050919050565b7f486f6c64657273206e6f74207365740000000000000000000000000000000000600082015250565b60006143dc600f83613995565b91506143e7826143a6565b602082019050919050565b6000602082019050818103600083015261440b816143cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061447b82613a45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036144ad576144ac614441565b5b600182019050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006144ee601f83613995565b91506144f9826144b8565b602082019050919050565b6000602082019050818103600083015261451d816144e1565b9050919050565b7f537570706c79206c696d69740000000000000000000000000000000000000000600082015250565b600061455a600c83613995565b915061456582614524565b602082019050919050565b600060208201905081810360008301526145898161454d565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006145c6601283613995565b91506145d182614590565b602082019050919050565b600060208201905081810360008301526145f5816145b9565b9050919050565b7f5769746864726177696e6720746f206164647265737328302900000000000000600082015250565b6000614632601983613995565b915061463d826145fc565b602082019050919050565b6000602082019050818103600083015261466181614625565b9050919050565b7f416c7265616479207072656d696e746564000000000000000000000000000000600082015250565b600061469e601183613995565b91506146a982614668565b602082019050919050565b600060208201905081810360008301526146cd81614691565b9050919050565b7f436f6e747261637420636c6f7365640000000000000000000000000000000000600082015250565b600061470a600f83613995565b9150614715826146d4565b602082019050919050565b60006020820190508181036000830152614739816146fd565b9050919050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b6000614776601083613995565b915061478182614740565b602082019050919050565b600060208201905081810360008301526147a581614769565b9050919050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b60006147e2600f83613995565b91506147ed826147ac565b602082019050919050565b60006020820190508181036000830152614811816147d5565b9050919050565b7f546f6f206d616e7920746f6b656e730000000000000000000000000000000000600082015250565b600061484e600f83613995565b915061485982614818565b602082019050919050565b6000602082019050818103600083015261487d81614841565b9050919050565b7f416c72656164792072656465656d656400000000000000000000000000000000600082015250565b60006148ba601083613995565b91506148c582614884565b602082019050919050565b600060208201905081810360008301526148e9816148ad565b9050919050565b60006148fb82613a45565b915061490683613a45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561493b5761493a614441565b5b828201905092915050565b7f546f74616c20737570706c7920746f6f206c6f77000000000000000000000000600082015250565b600061497c601483613995565b915061498782614946565b602082019050919050565b600060208201905081810360008301526149ab8161496f565b9050919050565b7f496e76616c696420746f6b656e20726571756573740000000000000000000000600082015250565b60006149e8601583613995565b91506149f3826149b2565b602082019050919050565b60006020820190508181036000830152614a17816149db565b9050919050565b600081905092915050565b6000614a348261398a565b614a3e8185614a1e565b9350614a4e8185602086016139a6565b80840191505092915050565b6000614a668285614a29565b9150614a728284614a29565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ada602683613995565b9150614ae582614a7e565b604082019050919050565b60006020820190508181036000830152614b0981614acd565b9050919050565b6000614b1b82613a45565b9150614b2683613a45565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b5f57614b5e614441565b5b828202905092915050565b6000606082019050614b7f6000830186613ada565b614b8c6020830185613b70565b614b996040830184613b70565b949350505050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614bd7601c83614a1e565b9150614be282614ba1565b601c82019050919050565b6000819050919050565b6000819050919050565b614c12614c0d82614bed565b614bf7565b82525050565b6000614c2382614bca565b9150614c2f8284614c01565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000614c6582614c3e565b614c6f8185614c49565b9350614c7f8185602086016139a6565b614c88816139d9565b840191505092915050565b6000608082019050614ca86000830187613ada565b614cb56020830186613ada565b614cc26040830185613b70565b8181036060830152614cd48184614c5a565b905095945050505050565b600081519050614cee816138fb565b92915050565b600060208284031215614d0a57614d096138c5565b5b6000614d1884828501614cdf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d5b82613a45565b9150614d6683613a45565b925082614d7657614d75614d21565b5b828204905092915050565b6000614d8c82613a45565b9150614d9783613a45565b925082821015614daa57614da9614441565b5b828203905092915050565b6000614dc082613a45565b9150614dcb83613a45565b925082614ddb57614dda614d21565b5b828206905092915050565b600060ff82169050919050565b6000614dfe82614de6565b9150614e0983614de6565b92508260ff03821115614e1f57614e1e614441565b5b828201905092915050565b614e3381614bed565b82525050565b614e4281614de6565b82525050565b6000608082019050614e5d6000830187614e2a565b614e6a6020830186614e39565b614e776040830185614e2a565b614e846060830184614e2a565b9594505050505056fea264697066735822122011585b9f3d1cff34d3c6dcafa162718ed618681b6b925434d170f66115495c7c64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d4136204578706572696d656e7400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4136204578706572696d656e740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044136455800000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636fdca5e01161014f578063b88d4fde116100c1578063e6b7354e1161007a578063e6b7354e1461091b578063e985e9c514610944578063e9a7484c14610981578063f2fde38b146109aa578063f60ca60d146109d3578063fcfff16f146109fe57610272565b8063b88d4fde1461080b578063bb77aa3e14610834578063c5f71da51461085d578063c87b56dd14610888578063d1efd30d146108c5578063da52c522146108f057610272565b80638417b47f116101135780638417b47f146106fd578063859c263a146107265780638da5cb5b1461074f57806395d89b411461077a5780639f4568ef146107a5578063a22cb465146107e257610272565b80636fdca5e01461063b57806370a082311461066457806370f93ede146106a1578063715018a6146106bd5780637b789204146106d457610272565b806335db70b5116101e85780634782f779116101ac5780634782f7791461053f57806348a1e66b146105685780634f02c4201461057f57806355f804b3146105aa5780636352211e146105d35780636c0360eb1461061057610272565b806335db70b51461046c5780633ab1a494146104975780633d9287fa146104c057806342842e0e146104eb578063430bf08a1461051457610272565b806318160ddd1161023a57806318160ddd1461037057806323b872dd1461039b57806328cd8ef1146103c45780632929abe6146103ef5780633542aee214610418578063357b794e1461044157610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780631581b60014610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613927565b610a29565b6040516102ab919061396f565b60405180910390f35b3480156102c057600080fd5b506102c9610b0b565b6040516102d69190613a23565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613a7b565b610b9d565b6040516103139190613ae9565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613b30565b610c19565b005b34801561035157600080fd5b5061035a610d23565b6040516103679190613ae9565b60405180910390f35b34801561037c57600080fd5b50610385610d49565b6040516103929190613b7f565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613b9a565b610d4f565b005b3480156103d057600080fd5b506103d9610d5f565b6040516103e69190613b7f565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190613df8565b610d65565b005b34801561042457600080fd5b5061043f600480360381019061043a9190613b30565b610f2c565b005b34801561044d57600080fd5b50610456611053565b604051610463919061396f565b60405180910390f35b34801561047857600080fd5b50610481611066565b60405161048e9190613b7f565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190613e70565b61106c565b005b3480156104cc57600080fd5b506104d561112c565b6040516104e2919061396f565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190613b9a565b61113f565b005b34801561052057600080fd5b5061052961115f565b6040516105369190613ae9565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190613b30565b611185565b005b34801561057457600080fd5b5061057d611304565b005b34801561058b57600080fd5b50610594611475565b6040516105a19190613b7f565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc9190613f52565b611484565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190613a7b565b61151a565b6040516106079190613ae9565b60405180910390f35b34801561061c57600080fd5b50610625611530565b6040516106329190613a23565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190613fc7565b6115be565b005b34801561067057600080fd5b5061068b60048036038101906106869190613e70565b611657565b6040516106989190613b7f565b60405180910390f35b6106bb60048036038101906106b69190614095565b611726565b005b3480156106c957600080fd5b506106d26119cc565b005b3480156106e057600080fd5b506106fb60048036038101906106f69190613fc7565b611a54565b005b34801561070957600080fd5b50610724600480360381019061071f9190613a7b565b611aed565b005b34801561073257600080fd5b5061074d60048036038101906107489190614104565b611b8e565b005b34801561075b57600080fd5b50610764611c93565b6040516107719190613ae9565b60405180910390f35b34801561078657600080fd5b5061078f611cbc565b60405161079c9190613a23565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190613e70565b611d4e565b6040516107d9919061396f565b60405180910390f35b3480156107ee57600080fd5b506108096004803603810190610804919061416b565b611d6e565b005b34801561081757600080fd5b50610832600480360381019061082d91906141ab565b611ee5565b005b34801561084057600080fd5b5061085b60048036038101906108569190613a7b565b611f61565b005b34801561086957600080fd5b50610872611fe7565b60405161087f9190613b7f565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613a7b565b611fed565b6040516108bc9190613a23565b60405180910390f35b3480156108d157600080fd5b506108da61211a565b6040516108e79190613ae9565b60405180910390f35b3480156108fc57600080fd5b50610905612140565b6040516109129190613b7f565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d9190613a7b565b612146565b005b34801561095057600080fd5b5061096b6004803603810190610966919061422e565b6121cc565b604051610978919061396f565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190613e70565b612260565b005b3480156109b657600080fd5b506109d160048036038101906109cc9190613e70565b612320565b005b3480156109df57600080fd5b506109e8612417565b6040516109f59190613a23565b60405180910390f35b348015610a0a57600080fd5b50610a136124a5565b604051610a20919061396f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b045750610b03826124b8565b5b9050919050565b606060038054610b1a9061429d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b469061429d565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b6000610ba882612522565b610bde576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c248261151a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c8b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610caa612570565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cdc5750610cda81610cd5612570565b6121cc565b155b15610d13576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d1e838383612578565b505050565b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b610d5a83838361262a565b505050565b600e5481565b610d6d612570565b73ffffffffffffffffffffffffffffffffffffffff16610d8b611c93565b73ffffffffffffffffffffffffffffffffffffffff1614610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd89061431a565b60405180910390fd5b8051825114610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90614386565b60405180910390fd5b6000825111610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e60906143f2565b60405180910390fd5b60005b8251811015610f27576000828281518110610e8a57610e89614412565b5b60200260200101511115610f1457828181518110610eab57610eaa614412565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff166108fc838381518110610edf57610ede614412565b5b60200260200101519081150290604051600060405180830381858888f19350505050158015610f12573d6000803e3d6000fd5b505b8080610f1f90614470565b915050610e6c565b505050565b610f34612570565b73ffffffffffffffffffffffffffffffffffffffff16610f52611c93565b73ffffffffffffffffffffffffffffffffffffffff1614610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f9061431a565b60405180910390fd5b600260095403610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490614504565b60405180910390fd5b6002600981905550610ffe81612ade565b61103d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103490614570565b60405180910390fd5b6110478282612aff565b60016009819055505050565b601560009054906101000a900460ff1681565b600c5481565b611074612570565b73ffffffffffffffffffffffffffffffffffffffff16611092611c93565b73ffffffffffffffffffffffffffffffffffffffff16146110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df9061431a565b60405180910390fd5b80601160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601160009054906101000a900460ff1681565b61115a83838360405180602001604052806000815250611ee5565b505050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61118d612570565b73ffffffffffffffffffffffffffffffffffffffff166111ab611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f89061431a565b60405180910390fd5b600047905080821115611249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611240906145dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af90614648565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156112fe573d6000803e3d6000fd5b50505050565b61130c612570565b73ffffffffffffffffffffffffffffffffffffffff1661132a611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611380576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113779061431a565b60405180910390fd5b6002600954036113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc90614504565b60405180910390fd5b600260098190555060001515601560009054906101000a900460ff16151514611423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141a906146b4565b60405180910390fd5b611450601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16602a612aff565b6001601560006101000a81548160ff0219169083151502179055506001600981905550565b600061147f612b0d565b905090565b61148c612570565b73ffffffffffffffffffffffffffffffffffffffff166114aa611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f79061431a565b60405180910390fd5b80601090805190602001906115169291906137d5565b5050565b600061152582612b20565b600001519050919050565b6010805461153d9061429d565b80601f01602080910402602001604051908101604052809291908181526020018280546115699061429d565b80156115b65780601f1061158b576101008083540402835291602001916115b6565b820191906000526020600020905b81548152906001019060200180831161159957829003601f168201915b505050505081565b6115c6612570565b73ffffffffffffffffffffffffffffffffffffffff166115e4611c93565b73ffffffffffffffffffffffffffffffffffffffff161461163a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116319061431a565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116be576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60026009540361176b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176290614504565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff166117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b990614720565b60405180910390fd5b6117cb82612daf565b61180a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118019061478c565b60405180910390fd5b611815838383612dc9565b611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b906147f8565b60405180910390fd5b61185d82612ade565b61189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390614570565b60405180910390fd5b6118a582612e9a565b6118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db90614864565b60405180910390fd5b601160009054906101000a900460ff1680156119005750600081115b156119b55761190e33612ea9565b61194d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611944906148d0565b60405180910390fd5b60018261195a91906148f0565b91506001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6119bf3383612aff565b6001600981905550505050565b6119d4612570565b73ffffffffffffffffffffffffffffffffffffffff166119f2611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f9061431a565b60405180910390fd5b611a526000612f05565b565b611a5c612570565b73ffffffffffffffffffffffffffffffffffffffff16611a7a611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac79061431a565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b611af5612570565b73ffffffffffffffffffffffffffffffffffffffff16611b13611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b609061431a565b60405180910390fd5b80600c819055506000600f60006101000a81548160ff02191690831515021790555050565b611b96612570565b73ffffffffffffffffffffffffffffffffffffffff16611bb4611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c019061431a565b60405180910390fd5b611c12612b0d565b8411611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a90614992565b60405180910390fd5b83600b8190555082600c8190555082600c5414600f60006101000a81548160ff02191690831515021790555081600d8190555080600e8190555050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611ccb9061429d565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf79061429d565b8015611d445780601f10611d1957610100808354040283529160200191611d44565b820191906000526020600020905b815481529060010190602001808311611d2757829003601f168201915b5050505050905090565b60166020528060005260406000206000915054906101000a900460ff1681565b611d76612570565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dda576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611de7612570565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e94612570565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ed9919061396f565b60405180910390a35050565b611ef084848461262a565b611f0f8373ffffffffffffffffffffffffffffffffffffffff16612fc9565b8015611f245750611f2284848484612fdc565b155b15611f5b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611f69612570565b73ffffffffffffffffffffffffffffffffffffffff16611f87611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd49061431a565b60405180910390fd5b80600d8190555050565b60145481565b6060611ff882612522565b612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e906149fe565b60405180910390fd5b6000601080546120469061429d565b80601f01602080910402602001604051908101604052809291908181526020018280546120729061429d565b80156120bf5780601f10612094576101008083540402835291602001916120bf565b820191906000526020600020905b8154815290600101906020018083116120a257829003601f168201915b5050505050905060008151036120e75760405180602001604052806000815250915050612115565b806120f18461312c565b604051602001612102929190614a5a565b6040516020818303038152906040529150505b919050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b61214e612570565b73ffffffffffffffffffffffffffffffffffffffff1661216c611c93565b73ffffffffffffffffffffffffffffffffffffffff16146121c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b99061431a565b60405180910390fd5b80600e8190555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612268612570565b73ffffffffffffffffffffffffffffffffffffffff16612286611c93565b73ffffffffffffffffffffffffffffffffffffffff16146122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d39061431a565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612328612570565b73ffffffffffffffffffffffffffffffffffffffff16612346611c93565b73ffffffffffffffffffffffffffffffffffffffff161461239c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123939061431a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361240b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240290614af0565b60405180910390fd5b61241481612f05565b50565b600a80546124249061429d565b80601f01602080910402602001604051908101604052809291908181526020018280546124509061429d565b801561249d5780601f106124725761010080835404028352916020019161249d565b820191906000526020600020905b81548152906001019060200180831161248057829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161252d61328c565b1115801561253c575060015482105b8015612569575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061263582612b20565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126a0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166126c1612570565b73ffffffffffffffffffffffffffffffffffffffff1614806126f057506126ef856126ea612570565b6121cc565b5b8061273557506126fe612570565b73ffffffffffffffffffffffffffffffffffffffff1661271d84610b9d565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061276e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036127d4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127e18585856001613295565b6127ed60008487612578565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612a6c576001548214612a6b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ad7858585600161329b565b5050505050565b6000612ae8612b0d565b82612af391906148f0565b600b5410159050919050565b612b0982826132a1565b5050565b6000612b1761328c565b60015403905090565b612b2861385b565b600082905080612b3661328c565b11158015612b45575060015481105b15612d78576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612d7657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c5a578092505050612daa565b5b600115612d7557818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d70578092505050612daa565b612c5b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600c5482612dbf9190614b10565b3410159050919050565b6000601160009054906101000a900460ff16612de85760019050612e93565b600060405180606001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018481525090506000816000015182602001518360400151604051602001612e4093929190614b6a565b604051602081830303815290604052805190602001209050600081604051602001612e6b9190614c18565b604051602081830303815290604052805190602001209050612e8d81886132bf565b93505050505b9392505050565b600081600d5410159050919050565b6000801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515149050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613002612570565b8786866040518563ffffffff1660e01b81526004016130249493929190614c93565b6020604051808303816000875af192505050801561306057506040513d601f19601f8201168201806040525081019061305d9190614cf4565b60015b6130d9573d8060008114613090576040519150601f19603f3d011682016040523d82523d6000602084013e613095565b606091505b5060008151036130d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203613173576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613287565b600082905060005b600082146131a557808061318e90614470565b915050600a8261319e9190614d50565b915061317b565b60008167ffffffffffffffff8111156131c1576131c0613bf2565b5b6040519080825280601f01601f1916602001820160405280156131f35781602001600182028036833780820191505090505b5090505b600085146132805760018261320c9190614d81565b9150600a8561321b9190614db5565b603061322791906148f0565b60f81b81838151811061323d5761323c614412565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132799190614d50565b94506131f7565b8093505050505b919050565b60006001905090565b50505050565b50505050565b6132bb8282604051806020016040528060008152506133f8565b5050565b6000601160009054906101000a900460ff166132de57600190506133f2565b600080600060418551146132f857600093505050506133f2565b6020850151925060408501519150606085015160001a9050601b8160ff16101561332c57601b816133299190614df3565b90505b6000601b8260ff1614806133435750601c8260ff16145b1561339a576001878386866040516000815260200160405260405161336b9493929190614e48565b6020604051602081039080840390855afa15801561338d573d6000803e3d6000fd5b5050506020604051035190505b8073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149450505050505b92915050565b613405838383600161340a565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613477576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036134b1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134be6000868387613295565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561368857506136878773ffffffffffffffffffffffffffffffffffffffff16612fc9565b5b1561374d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136fd6000888480600101955088612fdc565b613733576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361368e57826001541461374857600080fd5b6137b8565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361374e575b8160018190555050506137ce600086838761329b565b5050505050565b8280546137e19061429d565b90600052602060002090601f016020900481019282613803576000855561384a565b82601f1061381c57805160ff191683800117855561384a565b8280016001018555821561384a579182015b8281111561384957825182559160200191906001019061382e565b5b509050613857919061389e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156138b757600081600090555060010161389f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613904816138cf565b811461390f57600080fd5b50565b600081359050613921816138fb565b92915050565b60006020828403121561393d5761393c6138c5565b5b600061394b84828501613912565b91505092915050565b60008115159050919050565b61396981613954565b82525050565b60006020820190506139846000830184613960565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139c45780820151818401526020810190506139a9565b838111156139d3576000848401525b50505050565b6000601f19601f8301169050919050565b60006139f58261398a565b6139ff8185613995565b9350613a0f8185602086016139a6565b613a18816139d9565b840191505092915050565b60006020820190508181036000830152613a3d81846139ea565b905092915050565b6000819050919050565b613a5881613a45565b8114613a6357600080fd5b50565b600081359050613a7581613a4f565b92915050565b600060208284031215613a9157613a906138c5565b5b6000613a9f84828501613a66565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ad382613aa8565b9050919050565b613ae381613ac8565b82525050565b6000602082019050613afe6000830184613ada565b92915050565b613b0d81613ac8565b8114613b1857600080fd5b50565b600081359050613b2a81613b04565b92915050565b60008060408385031215613b4757613b466138c5565b5b6000613b5585828601613b1b565b9250506020613b6685828601613a66565b9150509250929050565b613b7981613a45565b82525050565b6000602082019050613b946000830184613b70565b92915050565b600080600060608486031215613bb357613bb26138c5565b5b6000613bc186828701613b1b565b9350506020613bd286828701613b1b565b9250506040613be386828701613a66565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c2a826139d9565b810181811067ffffffffffffffff82111715613c4957613c48613bf2565b5b80604052505050565b6000613c5c6138bb565b9050613c688282613c21565b919050565b600067ffffffffffffffff821115613c8857613c87613bf2565b5b602082029050602081019050919050565b600080fd5b6000613cb1613cac84613c6d565b613c52565b90508083825260208201905060208402830185811115613cd457613cd3613c99565b5b835b81811015613cfd5780613ce98882613b1b565b845260208401935050602081019050613cd6565b5050509392505050565b600082601f830112613d1c57613d1b613bed565b5b8135613d2c848260208601613c9e565b91505092915050565b600067ffffffffffffffff821115613d5057613d4f613bf2565b5b602082029050602081019050919050565b6000613d74613d6f84613d35565b613c52565b90508083825260208201905060208402830185811115613d9757613d96613c99565b5b835b81811015613dc05780613dac8882613a66565b845260208401935050602081019050613d99565b5050509392505050565b600082601f830112613ddf57613dde613bed565b5b8135613def848260208601613d61565b91505092915050565b60008060408385031215613e0f57613e0e6138c5565b5b600083013567ffffffffffffffff811115613e2d57613e2c6138ca565b5b613e3985828601613d07565b925050602083013567ffffffffffffffff811115613e5a57613e596138ca565b5b613e6685828601613dca565b9150509250929050565b600060208284031215613e8657613e856138c5565b5b6000613e9484828501613b1b565b91505092915050565b600080fd5b600067ffffffffffffffff821115613ebd57613ebc613bf2565b5b613ec6826139d9565b9050602081019050919050565b82818337600083830152505050565b6000613ef5613ef084613ea2565b613c52565b905082815260208101848484011115613f1157613f10613e9d565b5b613f1c848285613ed3565b509392505050565b600082601f830112613f3957613f38613bed565b5b8135613f49848260208601613ee2565b91505092915050565b600060208284031215613f6857613f676138c5565b5b600082013567ffffffffffffffff811115613f8657613f856138ca565b5b613f9284828501613f24565b91505092915050565b613fa481613954565b8114613faf57600080fd5b50565b600081359050613fc181613f9b565b92915050565b600060208284031215613fdd57613fdc6138c5565b5b6000613feb84828501613fb2565b91505092915050565b600067ffffffffffffffff82111561400f5761400e613bf2565b5b614018826139d9565b9050602081019050919050565b600061403861403384613ff4565b613c52565b90508281526020810184848401111561405457614053613e9d565b5b61405f848285613ed3565b509392505050565b600082601f83011261407c5761407b613bed565b5b813561408c848260208601614025565b91505092915050565b6000806000606084860312156140ae576140ad6138c5565b5b600084013567ffffffffffffffff8111156140cc576140cb6138ca565b5b6140d886828701614067565b93505060206140e986828701613a66565b92505060406140fa86828701613a66565b9150509250925092565b6000806000806080858703121561411e5761411d6138c5565b5b600061412c87828801613a66565b945050602061413d87828801613a66565b935050604061414e87828801613a66565b925050606061415f87828801613a66565b91505092959194509250565b60008060408385031215614182576141816138c5565b5b600061419085828601613b1b565b92505060206141a185828601613fb2565b9150509250929050565b600080600080608085870312156141c5576141c46138c5565b5b60006141d387828801613b1b565b94505060206141e487828801613b1b565b93505060406141f587828801613a66565b925050606085013567ffffffffffffffff811115614216576142156138ca565b5b61422287828801614067565b91505092959194509250565b60008060408385031215614245576142446138c5565b5b600061425385828601613b1b565b925050602061426485828601613b1b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142b557607f821691505b6020821081036142c8576142c761426e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614304602083613995565b915061430f826142ce565b602082019050919050565b60006020820190508181036000830152614333816142f7565b9050919050565b7f486f6c6465727320646973747269627574696f6e206572726f72000000000000600082015250565b6000614370601a83613995565b915061437b8261433a565b602082019050919050565b6000602082019050818103600083015261439f81614363565b9050919050565b7f486f6c64657273206e6f74207365740000000000000000000000000000000000600082015250565b60006143dc600f83613995565b91506143e7826143a6565b602082019050919050565b6000602082019050818103600083015261440b816143cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061447b82613a45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036144ad576144ac614441565b5b600182019050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006144ee601f83613995565b91506144f9826144b8565b602082019050919050565b6000602082019050818103600083015261451d816144e1565b9050919050565b7f537570706c79206c696d69740000000000000000000000000000000000000000600082015250565b600061455a600c83613995565b915061456582614524565b602082019050919050565b600060208201905081810360008301526145898161454d565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006145c6601283613995565b91506145d182614590565b602082019050919050565b600060208201905081810360008301526145f5816145b9565b9050919050565b7f5769746864726177696e6720746f206164647265737328302900000000000000600082015250565b6000614632601983613995565b915061463d826145fc565b602082019050919050565b6000602082019050818103600083015261466181614625565b9050919050565b7f416c7265616479207072656d696e746564000000000000000000000000000000600082015250565b600061469e601183613995565b91506146a982614668565b602082019050919050565b600060208201905081810360008301526146cd81614691565b9050919050565b7f436f6e747261637420636c6f7365640000000000000000000000000000000000600082015250565b600061470a600f83613995565b9150614715826146d4565b602082019050919050565b60006020820190508181036000830152614739816146fd565b9050919050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b6000614776601083613995565b915061478182614740565b602082019050919050565b600060208201905081810360008301526147a581614769565b9050919050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b60006147e2600f83613995565b91506147ed826147ac565b602082019050919050565b60006020820190508181036000830152614811816147d5565b9050919050565b7f546f6f206d616e7920746f6b656e730000000000000000000000000000000000600082015250565b600061484e600f83613995565b915061485982614818565b602082019050919050565b6000602082019050818103600083015261487d81614841565b9050919050565b7f416c72656164792072656465656d656400000000000000000000000000000000600082015250565b60006148ba601083613995565b91506148c582614884565b602082019050919050565b600060208201905081810360008301526148e9816148ad565b9050919050565b60006148fb82613a45565b915061490683613a45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561493b5761493a614441565b5b828201905092915050565b7f546f74616c20737570706c7920746f6f206c6f77000000000000000000000000600082015250565b600061497c601483613995565b915061498782614946565b602082019050919050565b600060208201905081810360008301526149ab8161496f565b9050919050565b7f496e76616c696420746f6b656e20726571756573740000000000000000000000600082015250565b60006149e8601583613995565b91506149f3826149b2565b602082019050919050565b60006020820190508181036000830152614a17816149db565b9050919050565b600081905092915050565b6000614a348261398a565b614a3e8185614a1e565b9350614a4e8185602086016139a6565b80840191505092915050565b6000614a668285614a29565b9150614a728284614a29565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ada602683613995565b9150614ae582614a7e565b604082019050919050565b60006020820190508181036000830152614b0981614acd565b9050919050565b6000614b1b82613a45565b9150614b2683613a45565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b5f57614b5e614441565b5b828202905092915050565b6000606082019050614b7f6000830186613ada565b614b8c6020830185613b70565b614b996040830184613b70565b949350505050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614bd7601c83614a1e565b9150614be282614ba1565b601c82019050919050565b6000819050919050565b6000819050919050565b614c12614c0d82614bed565b614bf7565b82525050565b6000614c2382614bca565b9150614c2f8284614c01565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000614c6582614c3e565b614c6f8185614c49565b9350614c7f8185602086016139a6565b614c88816139d9565b840191505092915050565b6000608082019050614ca86000830187613ada565b614cb56020830186613ada565b614cc26040830185613b70565b8181036060830152614cd48184614c5a565b905095945050505050565b600081519050614cee816138fb565b92915050565b600060208284031215614d0a57614d096138c5565b5b6000614d1884828501614cdf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d5b82613a45565b9150614d6683613a45565b925082614d7657614d75614d21565b5b828204905092915050565b6000614d8c82613a45565b9150614d9783613a45565b925082821015614daa57614da9614441565b5b828203905092915050565b6000614dc082613a45565b9150614dcb83613a45565b925082614ddb57614dda614d21565b5b828206905092915050565b600060ff82169050919050565b6000614dfe82614de6565b9150614e0983614de6565b92508260ff03821115614e1f57614e1e614441565b5b828201905092915050565b614e3381614bed565b82525050565b614e4281614de6565b82525050565b6000608082019050614e5d6000830187614e2a565b614e6a6020830186614e39565b614e776040830185614e2a565b614e846060830184614e2a565b9594505050505056fea264697066735822122011585b9f3d1cff34d3c6dcafa162718ed618681b6b925434d170f66115495c7c64736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d4136204578706572696d656e7400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4136204578706572696d656e740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044136455800000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _project (string): A6 Experiment
Arg [1] : _name (string): A6 Experiment
Arg [2] : _symbol (string): A6EX

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 4136204578706572696d656e7400000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [6] : 4136204578706572696d656e7400000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 4136455800000000000000000000000000000000000000000000000000000000


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.