ETH Price: $3,080.11 (-4.01%)
Gas: 8 Gwei

Token

Paper Chasers (PCS)
 

Overview

Max Total Supply

2,021 PCS

Holders

454

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
intoodeep.eth
Balance
5 PCS
0x0ff62862437c0492a6680150f6877b02b2f22515
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:
PaperChasers

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : PAPERCHASERS.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.7.0 <0.9.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract PaperChasers is ERC721, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.04 ether;
  uint256 public maxSupply = 2021;
  uint256 public maxMintAmount = 5;
  uint256 public maxPerAddress = 20;
  uint256 public maxPerWhitelist = 1;
  uint256 public totalSupply;
  bool public paused = false;
  bool public whitelistOn = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  address payable private dev = payable(0xB7ec69A5e0640f3b0445EBfcC9D1573d23B4737c);
  address payable private marketing = payable(0xE810AdaaFD0079252495a71930f58AF21388209f);
  address payable private community = payable(0x1ed56307238F5Ce968dD7f5dEd5F84627BfD2FDf);

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "sale is not active");
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(totalSupply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
      uint256 ownerMintCount = addressMintedBalance[msg.sender];
      require(ownerMintCount + _mintAmount <= maxPerAddress, "max nft per address reached");
      if (!isWhitelisted(msg.sender)) {
        require(msg.value >= cost * _mintAmount, "insufficient funds");
      } else {
        if (whitelistOn) {
          require(ownerMintCount + _mintAmount <= maxPerWhitelist, "whitelist only allowed to mint 1");
        } else {
          require(msg.value >= cost * _mintAmount, "insufficient funds");
        }
      }
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, totalSupply + i);
      addressMintedBalance[msg.sender]++;
    }

    totalSupply += _mintAmount;

    if (totalSupply == maxSupply) {
      pause(true);
    }
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i <whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
        return true;
      }
    }
    return false;
  }

  //only owner
  function setMaxPerAddress(uint256 _limit) public onlyOwner {
    maxPerAddress = _limit;
  }

  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

  function setWhitelistOn(bool _state) public onlyOwner {
    whitelistOn = _state;
  }
 
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }

    function accountBalance() public onlyOwner view returns(uint) {
      return address(this).balance;
  }

  function withdrawFunds() public onlyOwner {
    uint256 balance = accountBalance();
    require(balance > 0, "No funds to retrieve");

    _withdraw(community, (balance * 340)/1000);
    _withdraw(dev, (balance * 330)/1000);
    _withdraw(marketing, (balance * 330)/1000);
  }

  function _withdraw(address payable account, uint256 amount) internal {
    (bool sent, ) = account.call{value: amount}("");
    require(sent, "Failed to withdraw Ether");
  }

  function withdrawToOwner() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 3 of 11 : 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 4 of 11 : 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 5 of 11 : 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 6 of 11 : 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 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 11 : 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 9 of 11 : 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 10 of 11 : 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 11 of 11 : 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"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"accountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"whitelistOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawToOwner","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506008908051906020019062000051929190620003ed565b50668e1bc9bf0400006009556107e5600a556005600b556014600c556001600d556000600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff02191690831515021790555073b7ec69a5e0640f3b0445ebfcc9d1573d23b4737c601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e810adaafd0079252495a71930f58af21388209f601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731ed56307238f5ce968dd7f5ded5f84627bfd2fdf601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001b457600080fd5b5060405162004c6438038062004c648339818101604052810190620001da91906200050f565b82828160009080519060200190620001f4929190620003ed565b5080600190805190602001906200020d929190620003ed565b50505062000230620002246200024a60201b60201c565b6200025260201b60201c565b62000241816200031860201b60201c565b50505062000756565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003286200024a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200034e620003c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039e90620005f2565b60405180910390fd5b8060079080519060200190620003bf929190620003ed565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003fb90620006c2565b90600052602060002090601f0160209004810192826200041f57600085556200046b565b82601f106200043a57805160ff19168380011785556200046b565b828001600101855582156200046b579182015b828111156200046a5782518255916020019190600101906200044d565b5b5090506200047a91906200047e565b5090565b5b80821115620004995760008160009055506001016200047f565b5090565b6000620004b4620004ae8462000648565b62000614565b905082815260208101848484011115620004cd57600080fd5b620004da8482856200068c565b509392505050565b600082601f830112620004f457600080fd5b8151620005068482602086016200049d565b91505092915050565b6000806000606084860312156200052557600080fd5b600084015167ffffffffffffffff8111156200054057600080fd5b6200054e86828701620004e2565b935050602084015167ffffffffffffffff8111156200056c57600080fd5b6200057a86828701620004e2565b925050604084015167ffffffffffffffff8111156200059857600080fd5b620005a686828701620004e2565b9150509250925092565b6000620005bf6020836200067b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200060d81620005b0565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200063e576200063d62000727565b5b8060405250919050565b600067ffffffffffffffff82111562000666576200066562000727565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b83811015620006ac5780820151818401526020810190506200068f565b83811115620006bc576000848401525b50505050565b60006002820490506001821680620006db57607f821691505b60208210811415620006f257620006f1620006f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6144fe80620007666000396000f3fe6080604052600436106102465760003560e01c806366cc5f0d11610139578063b0a1c1c4116100b6578063d5abeb011161007a578063d5abeb0114610850578063da3ef23f1461087b578063e8ec856a146108a4578063e985e9c5146108cd578063edec5f271461090a578063f2fde38b1461093357610246565b8063b0a1c1c414610757578063b88d4fde14610782578063ba4e5c49146107ab578063c6682862146107e8578063c87b56dd1461081357610246565b80637f00c7a6116100fd5780637f00c7a6146106935780638da5cb5b146106bc57806395d89b41146106e7578063a0712d6814610712578063a22cb4651461072e57610246565b806366cc5f0d146105c05780636c0360eb146105eb57806370a0823114610616578063715018a6146106535780637bddd65b1461066a57610246565b806324600fc3116101c75780634917aa3f1161018b5780634917aa3f146104d957806355f804b3146105045780635c975abb1461052d5780636352211e14610558578063639814e01461059557610246565b806324600fc3146104295780633af32abf146104405780633cb40e161461047d57806342842e0e1461048757806344a0d68a146104b057610246565b806313faede61161020e57806313faede61461034257806318160ddd1461036d57806318cae26914610398578063239c70ae146103d557806323b872dd1461040057610246565b806301ffc9a71461024b57806302329a291461028857806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613302565b61095c565b60405161027f9190613d1c565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa91906132d9565b610a3e565b005b3480156102bd57600080fd5b506102c6610ad7565b6040516102d39190613d37565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613395565b610b69565b6040516103109190613cb5565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190613258565b610bee565b005b34801561034e57600080fd5b50610357610d06565b6040516103649190614019565b60405180910390f35b34801561037957600080fd5b50610382610d0c565b60405161038f9190614019565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba91906130ed565b610d12565b6040516103cc9190614019565b60405180910390f35b3480156103e157600080fd5b506103ea610d2a565b6040516103f79190614019565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190613152565b610d30565b005b34801561043557600080fd5b5061043e610d90565b005b34801561044c57600080fd5b50610467600480360381019061046291906130ed565b610f30565b6040516104749190613d1c565b60405180910390f35b610485611005565b005b34801561049357600080fd5b506104ae60048036038101906104a99190613152565b611101565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190613395565b611121565b005b3480156104e557600080fd5b506104ee6111a7565b6040516104fb9190613d1c565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613354565b6111ba565b005b34801561053957600080fd5b50610542611250565b60405161054f9190613d1c565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190613395565b611263565b60405161058c9190613cb5565b60405180910390f35b3480156105a157600080fd5b506105aa611315565b6040516105b79190614019565b60405180910390f35b3480156105cc57600080fd5b506105d561131b565b6040516105e29190614019565b60405180910390f35b3480156105f757600080fd5b50610600611321565b60405161060d9190613d37565b60405180910390f35b34801561062257600080fd5b5061063d600480360381019061063891906130ed565b6113af565b60405161064a9190614019565b60405180910390f35b34801561065f57600080fd5b50610668611467565b005b34801561067657600080fd5b50610691600480360381019061068c9190613395565b6114ef565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190613395565b611575565b005b3480156106c857600080fd5b506106d16115fb565b6040516106de9190613cb5565b60405180910390f35b3480156106f357600080fd5b506106fc611625565b6040516107099190613d37565b60405180910390f35b61072c60048036038101906107279190613395565b6116b7565b005b34801561073a57600080fd5b506107556004803603810190610750919061321c565b6119ee565b005b34801561076357600080fd5b5061076c611b6f565b6040516107799190614019565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a491906131a1565b611bf3565b005b3480156107b757600080fd5b506107d260048036038101906107cd9190613395565b611c55565b6040516107df9190613cb5565b60405180910390f35b3480156107f457600080fd5b506107fd611c94565b60405161080a9190613d37565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190613395565b611d22565b6040516108479190613d37565b60405180910390f35b34801561085c57600080fd5b50610865611dcc565b6040516108729190614019565b60405180910390f35b34801561088757600080fd5b506108a2600480360381019061089d9190613354565b611dd2565b005b3480156108b057600080fd5b506108cb60048036038101906108c691906132d9565b611e68565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190613116565b611f01565b6040516109019190613d1c565b60405180910390f35b34801561091657600080fd5b50610931600480360381019061092c9190613294565b611f95565b005b34801561093f57600080fd5b5061095a600480360381019061095591906130ed565b612035565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a375750610a368261212d565b5b9050919050565b610a46612197565b73ffffffffffffffffffffffffffffffffffffffff16610a646115fb565b73ffffffffffffffffffffffffffffffffffffffff1614610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190613f19565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060008054610ae6906142f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b12906142f3565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b6000610b748261219f565b610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa90613ef9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf982611263565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6190613fb9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c89612197565b73ffffffffffffffffffffffffffffffffffffffff161480610cb85750610cb781610cb2612197565b611f01565b5b610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee90613e59565b60405180910390fd5b610d01838361220b565b505050565b60095481565b600e5481565b60116020528060005260406000206000915090505481565b600b5481565b610d41610d3b612197565b826122c4565b610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613ff9565b60405180910390fd5b610d8b8383836123a2565b505050565b610d98612197565b73ffffffffffffffffffffffffffffffffffffffff16610db66115fb565b73ffffffffffffffffffffffffffffffffffffffff1614610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390613f19565b60405180910390fd5b6000610e16611b6f565b905060008111610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290613eb9565b60405180910390fd5b610ea1601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e861015484610e9291906141af565b610e9c919061417e565b6125fe565b610ee7601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e861014a84610ed891906141af565b610ee2919061417e565b6125fe565b610f2d601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e861014a84610f1e91906141af565b610f28919061417e565b6125fe565b50565b600080600090505b601080549050811015610ffa578273ffffffffffffffffffffffffffffffffffffffff1660108281548110610f96577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610fe7576001915050611000565b8080610ff290614325565b915050610f38565b50600090505b919050565b61100d612197565b73ffffffffffffffffffffffffffffffffffffffff1661102b6115fb565b73ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890613f19565b60405180910390fd5b600061108b6115fb565b73ffffffffffffffffffffffffffffffffffffffff16476040516110ae90613ca0565b60006040518083038185875af1925050503d80600081146110eb576040519150601f19603f3d011682016040523d82523d6000602084013e6110f0565b606091505b50509050806110fe57600080fd5b50565b61111c83838360405180602001604052806000815250611bf3565b505050565b611129612197565b73ffffffffffffffffffffffffffffffffffffffff166111476115fb565b73ffffffffffffffffffffffffffffffffffffffff161461119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490613f19565b60405180910390fd5b8060098190555050565b600f60019054906101000a900460ff1681565b6111c2612197565b73ffffffffffffffffffffffffffffffffffffffff166111e06115fb565b73ffffffffffffffffffffffffffffffffffffffff1614611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90613f19565b60405180910390fd5b806007908051906020019061124c929190612e06565b5050565b600f60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390613e99565b60405180910390fd5b80915050919050565b600c5481565b600d5481565b6007805461132e906142f3565b80601f016020809104026020016040519081016040528092919081815260200182805461135a906142f3565b80156113a75780601f1061137c576101008083540402835291602001916113a7565b820191906000526020600020905b81548152906001019060200180831161138a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790613e79565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146f612197565b73ffffffffffffffffffffffffffffffffffffffff1661148d6115fb565b73ffffffffffffffffffffffffffffffffffffffff16146114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90613f19565b60405180910390fd5b6114ed60006126af565b565b6114f7612197565b73ffffffffffffffffffffffffffffffffffffffff166115156115fb565b73ffffffffffffffffffffffffffffffffffffffff161461156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156290613f19565b60405180910390fd5b80600c8190555050565b61157d612197565b73ffffffffffffffffffffffffffffffffffffffff1661159b6115fb565b73ffffffffffffffffffffffffffffffffffffffff16146115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890613f19565b60405180910390fd5b80600b8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611634906142f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611660906142f3565b80156116ad5780601f10611682576101008083540402835291602001916116ad565b820191906000526020600020905b81548152906001019060200180831161169057829003601f168201915b5050505050905090565b600f60009054906101000a900460ff1615611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90613e19565b60405180910390fd5b6000811161171457600080fd5b600b5481111561172357600080fd5b600a5481600e546117349190614128565b111561173f57600080fd5b6117476115fb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461192d576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c5482826117cc9190614128565b111561180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490613e39565b60405180910390fd5b61181633610f30565b61186f578160095461182891906141af565b34101561186a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186190613fd9565b60405180910390fd5b61192b565b600f60019054906101000a900460ff16156118d957600d5482826118939190614128565b11156118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb90613f39565b60405180910390fd5b61192a565b816009546118e791906141af565b341015611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090613fd9565b60405180910390fd5b5b5b505b6000600190505b8181116119ba576119523382600e5461194d9190614128565b612775565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906119a290614325565b919050555080806119b290614325565b915050611934565b5080600e60008282546119cd9190614128565b92505081905550600a54600e5414156119eb576119ea6001610a3e565b5b50565b6119f6612197565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90613dd9565b60405180910390fd5b8060056000611a71612197565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b1e612197565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b639190613d1c565b60405180910390a35050565b6000611b79612197565b73ffffffffffffffffffffffffffffffffffffffff16611b976115fb565b73ffffffffffffffffffffffffffffffffffffffff1614611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490613f19565b60405180910390fd5b47905090565b611c04611bfe612197565b836122c4565b611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90613ff9565b60405180910390fd5b611c4f84848484612793565b50505050565b60108181548110611c6557600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60088054611ca1906142f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611ccd906142f3565b8015611d1a5780601f10611cef57610100808354040283529160200191611d1a565b820191906000526020600020905b815481529060010190602001808311611cfd57829003601f168201915b505050505081565b6060611d2d8261219f565b611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6390613f79565b60405180910390fd5b6000611d766127ef565b90506000815111611d965760405180602001604052806000815250611dc4565b80611da084612881565b6008604051602001611db493929190613c6f565b6040516020818303038152906040525b915050919050565b600a5481565b611dda612197565b73ffffffffffffffffffffffffffffffffffffffff16611df86115fb565b73ffffffffffffffffffffffffffffffffffffffff1614611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4590613f19565b60405180910390fd5b8060089080519060200190611e64929190612e06565b5050565b611e70612197565b73ffffffffffffffffffffffffffffffffffffffff16611e8e6115fb565b73ffffffffffffffffffffffffffffffffffffffff1614611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90613f19565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f9d612197565b73ffffffffffffffffffffffffffffffffffffffff16611fbb6115fb565b73ffffffffffffffffffffffffffffffffffffffff1614612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200890613f19565b60405180910390fd5b6010600061201f9190612e8c565b818160109190612030929190612ead565b505050565b61203d612197565b73ffffffffffffffffffffffffffffffffffffffff1661205b6115fb565b73ffffffffffffffffffffffffffffffffffffffff16146120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890613f19565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211890613d79565b60405180910390fd5b61212a816126af565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661227e83611263565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122cf8261219f565b61230e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230590613df9565b60405180910390fd5b600061231983611263565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061238857508373ffffffffffffffffffffffffffffffffffffffff1661237084610b69565b73ffffffffffffffffffffffffffffffffffffffff16145b8061239957506123988185611f01565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123c282611263565b73ffffffffffffffffffffffffffffffffffffffff1614612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f90613f59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247f90613db9565b60405180910390fd5b612493838383612a2e565b61249e60008261220b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ee9190614209565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125459190614128565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161262490613ca0565b60006040518083038185875af1925050503d8060008114612661576040519150601f19603f3d011682016040523d82523d6000602084013e612666565b606091505b50509050806126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a190613f99565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61278f828260405180602001604052806000815250612a33565b5050565b61279e8484846123a2565b6127aa84848484612a8e565b6127e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e090613d59565b60405180910390fd5b50505050565b6060600780546127fe906142f3565b80601f016020809104026020016040519081016040528092919081815260200182805461282a906142f3565b80156128775780601f1061284c57610100808354040283529160200191612877565b820191906000526020600020905b81548152906001019060200180831161285a57829003601f168201915b5050505050905090565b606060008214156128c9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a29565b600082905060005b600082146128fb5780806128e490614325565b915050600a826128f4919061417e565b91506128d1565b60008167ffffffffffffffff81111561293d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561296f5781602001600182028036833780820191505090505b5090505b60008514612a22576001826129889190614209565b9150600a85612997919061436e565b60306129a39190614128565b60f81b8183815181106129df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a1b919061417e565b9450612973565b8093505050505b919050565b505050565b612a3d8383612c25565b612a4a6000848484612a8e565b612a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8090613d59565b60405180910390fd5b505050565b6000612aaf8473ffffffffffffffffffffffffffffffffffffffff16612df3565b15612c18578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ad8612197565b8786866040518563ffffffff1660e01b8152600401612afa9493929190613cd0565b602060405180830381600087803b158015612b1457600080fd5b505af1925050508015612b4557506040513d601f19601f82011682018060405250810190612b42919061332b565b60015b612bc8573d8060008114612b75576040519150601f19603f3d011682016040523d82523d6000602084013e612b7a565b606091505b50600081511415612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb790613d59565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c1d565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90613ed9565b60405180910390fd5b612c9e8161219f565b15612cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd590613d99565b60405180910390fd5b612cea60008383612a2e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d3a9190614128565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e12906142f3565b90600052602060002090601f016020900481019282612e345760008555612e7b565b82601f10612e4d57805160ff1916838001178555612e7b565b82800160010185558215612e7b579182015b82811115612e7a578251825591602001919060010190612e5f565b5b509050612e889190612f4d565b5090565b5080546000825590600052602060002090810190612eaa9190612f4d565b50565b828054828255906000526020600020908101928215612f3c579160200282015b82811115612f3b57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612ecd565b5b509050612f499190612f4d565b5090565b5b80821115612f66576000816000905550600101612f4e565b5090565b6000612f7d612f7884614065565b614034565b905082815260208101848484011115612f9557600080fd5b612fa08482856142b1565b509392505050565b6000612fbb612fb684614095565b614034565b905082815260208101848484011115612fd357600080fd5b612fde8482856142b1565b509392505050565b600081359050612ff58161446c565b92915050565b60008083601f84011261300d57600080fd5b8235905067ffffffffffffffff81111561302657600080fd5b60208301915083602082028301111561303e57600080fd5b9250929050565b60008135905061305481614483565b92915050565b6000813590506130698161449a565b92915050565b60008151905061307e8161449a565b92915050565b600082601f83011261309557600080fd5b81356130a5848260208601612f6a565b91505092915050565b600082601f8301126130bf57600080fd5b81356130cf848260208601612fa8565b91505092915050565b6000813590506130e7816144b1565b92915050565b6000602082840312156130ff57600080fd5b600061310d84828501612fe6565b91505092915050565b6000806040838503121561312957600080fd5b600061313785828601612fe6565b925050602061314885828601612fe6565b9150509250929050565b60008060006060848603121561316757600080fd5b600061317586828701612fe6565b935050602061318686828701612fe6565b9250506040613197868287016130d8565b9150509250925092565b600080600080608085870312156131b757600080fd5b60006131c587828801612fe6565b94505060206131d687828801612fe6565b93505060406131e7878288016130d8565b925050606085013567ffffffffffffffff81111561320457600080fd5b61321087828801613084565b91505092959194509250565b6000806040838503121561322f57600080fd5b600061323d85828601612fe6565b925050602061324e85828601613045565b9150509250929050565b6000806040838503121561326b57600080fd5b600061327985828601612fe6565b925050602061328a858286016130d8565b9150509250929050565b600080602083850312156132a757600080fd5b600083013567ffffffffffffffff8111156132c157600080fd5b6132cd85828601612ffb565b92509250509250929050565b6000602082840312156132eb57600080fd5b60006132f984828501613045565b91505092915050565b60006020828403121561331457600080fd5b60006133228482850161305a565b91505092915050565b60006020828403121561333d57600080fd5b600061334b8482850161306f565b91505092915050565b60006020828403121561336657600080fd5b600082013567ffffffffffffffff81111561338057600080fd5b61338c848285016130ae565b91505092915050565b6000602082840312156133a757600080fd5b60006133b5848285016130d8565b91505092915050565b6133c78161423d565b82525050565b6133d68161424f565b82525050565b60006133e7826140da565b6133f181856140f0565b93506134018185602086016142c0565b61340a8161445b565b840191505092915050565b6000613420826140e5565b61342a818561410c565b935061343a8185602086016142c0565b6134438161445b565b840191505092915050565b6000613459826140e5565b613463818561411d565b93506134738185602086016142c0565b80840191505092915050565b6000815461348c816142f3565b613496818661411d565b945060018216600081146134b157600181146134c2576134f5565b60ff198316865281860193506134f5565b6134cb856140c5565b60005b838110156134ed578154818901526001820191506020810190506134ce565b838801955050505b50505092915050565b600061350b60328361410c565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061357160268361410c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135d7601c8361410c565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061361760248361410c565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061367d60198361410c565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006136bd602c8361410c565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061372360128361410c565b91507f73616c65206973206e6f742061637469766500000000000000000000000000006000830152602082019050919050565b6000613763601b8361410c565b91507f6d6178206e6674207065722061646472657373207265616368656400000000006000830152602082019050919050565b60006137a360388361410c565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613809602a8361410c565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061386f60298361410c565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006138d560148361410c565b91507f4e6f2066756e647320746f2072657472696576650000000000000000000000006000830152602082019050919050565b600061391560208361410c565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613955602c8361410c565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139bb60208361410c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006139fb60208361410c565b91507f77686974656c697374206f6e6c7920616c6c6f77656420746f206d696e7420316000830152602082019050919050565b6000613a3b60298361410c565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aa1602f8361410c565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613b0760188361410c565b91507f4661696c656420746f20776974686472617720457468657200000000000000006000830152602082019050919050565b6000613b4760218361410c565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bad600083614101565b9150600082019050919050565b6000613bc760128361410c565b91507f696e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b6000613c0760318361410c565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b613c69816142a7565b82525050565b6000613c7b828661344e565b9150613c87828561344e565b9150613c93828461347f565b9150819050949350505050565b6000613cab82613ba0565b9150819050919050565b6000602082019050613cca60008301846133be565b92915050565b6000608082019050613ce560008301876133be565b613cf260208301866133be565b613cff6040830185613c60565b8181036060830152613d1181846133dc565b905095945050505050565b6000602082019050613d3160008301846133cd565b92915050565b60006020820190508181036000830152613d518184613415565b905092915050565b60006020820190508181036000830152613d72816134fe565b9050919050565b60006020820190508181036000830152613d9281613564565b9050919050565b60006020820190508181036000830152613db2816135ca565b9050919050565b60006020820190508181036000830152613dd28161360a565b9050919050565b60006020820190508181036000830152613df281613670565b9050919050565b60006020820190508181036000830152613e12816136b0565b9050919050565b60006020820190508181036000830152613e3281613716565b9050919050565b60006020820190508181036000830152613e5281613756565b9050919050565b60006020820190508181036000830152613e7281613796565b9050919050565b60006020820190508181036000830152613e92816137fc565b9050919050565b60006020820190508181036000830152613eb281613862565b9050919050565b60006020820190508181036000830152613ed2816138c8565b9050919050565b60006020820190508181036000830152613ef281613908565b9050919050565b60006020820190508181036000830152613f1281613948565b9050919050565b60006020820190508181036000830152613f32816139ae565b9050919050565b60006020820190508181036000830152613f52816139ee565b9050919050565b60006020820190508181036000830152613f7281613a2e565b9050919050565b60006020820190508181036000830152613f9281613a94565b9050919050565b60006020820190508181036000830152613fb281613afa565b9050919050565b60006020820190508181036000830152613fd281613b3a565b9050919050565b60006020820190508181036000830152613ff281613bba565b9050919050565b6000602082019050818103600083015261401281613bfa565b9050919050565b600060208201905061402e6000830184613c60565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561405b5761405a61442c565b5b8060405250919050565b600067ffffffffffffffff8211156140805761407f61442c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156140b0576140af61442c565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614133826142a7565b915061413e836142a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141735761417261439f565b5b828201905092915050565b6000614189826142a7565b9150614194836142a7565b9250826141a4576141a36143ce565b5b828204905092915050565b60006141ba826142a7565b91506141c5836142a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141fe576141fd61439f565b5b828202905092915050565b6000614214826142a7565b915061421f836142a7565b9250828210156142325761423161439f565b5b828203905092915050565b600061424882614287565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142de5780820151818401526020810190506142c3565b838111156142ed576000848401525b50505050565b6000600282049050600182168061430b57607f821691505b6020821081141561431f5761431e6143fd565b5b50919050565b6000614330826142a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143635761436261439f565b5b600182019050919050565b6000614379826142a7565b9150614384836142a7565b925082614394576143936143ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6144758161423d565b811461448057600080fd5b50565b61448c8161424f565b811461449757600080fd5b50565b6144a38161425b565b81146144ae57600080fd5b50565b6144ba816142a7565b81146144c557600080fd5b5056fea26469706673582212200ebaf6c08ddcbc59977baa98d7ecda041de1e91bf40857181e96a6e93457bccd64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d5061706572204368617365727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000350435300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d626862687a4d5945366f434c524441367954726b587141617378474161474253443756436e62436253796a532f00000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c806366cc5f0d11610139578063b0a1c1c4116100b6578063d5abeb011161007a578063d5abeb0114610850578063da3ef23f1461087b578063e8ec856a146108a4578063e985e9c5146108cd578063edec5f271461090a578063f2fde38b1461093357610246565b8063b0a1c1c414610757578063b88d4fde14610782578063ba4e5c49146107ab578063c6682862146107e8578063c87b56dd1461081357610246565b80637f00c7a6116100fd5780637f00c7a6146106935780638da5cb5b146106bc57806395d89b41146106e7578063a0712d6814610712578063a22cb4651461072e57610246565b806366cc5f0d146105c05780636c0360eb146105eb57806370a0823114610616578063715018a6146106535780637bddd65b1461066a57610246565b806324600fc3116101c75780634917aa3f1161018b5780634917aa3f146104d957806355f804b3146105045780635c975abb1461052d5780636352211e14610558578063639814e01461059557610246565b806324600fc3146104295780633af32abf146104405780633cb40e161461047d57806342842e0e1461048757806344a0d68a146104b057610246565b806313faede61161020e57806313faede61461034257806318160ddd1461036d57806318cae26914610398578063239c70ae146103d557806323b872dd1461040057610246565b806301ffc9a71461024b57806302329a291461028857806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613302565b61095c565b60405161027f9190613d1c565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa91906132d9565b610a3e565b005b3480156102bd57600080fd5b506102c6610ad7565b6040516102d39190613d37565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613395565b610b69565b6040516103109190613cb5565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190613258565b610bee565b005b34801561034e57600080fd5b50610357610d06565b6040516103649190614019565b60405180910390f35b34801561037957600080fd5b50610382610d0c565b60405161038f9190614019565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba91906130ed565b610d12565b6040516103cc9190614019565b60405180910390f35b3480156103e157600080fd5b506103ea610d2a565b6040516103f79190614019565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190613152565b610d30565b005b34801561043557600080fd5b5061043e610d90565b005b34801561044c57600080fd5b50610467600480360381019061046291906130ed565b610f30565b6040516104749190613d1c565b60405180910390f35b610485611005565b005b34801561049357600080fd5b506104ae60048036038101906104a99190613152565b611101565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190613395565b611121565b005b3480156104e557600080fd5b506104ee6111a7565b6040516104fb9190613d1c565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613354565b6111ba565b005b34801561053957600080fd5b50610542611250565b60405161054f9190613d1c565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190613395565b611263565b60405161058c9190613cb5565b60405180910390f35b3480156105a157600080fd5b506105aa611315565b6040516105b79190614019565b60405180910390f35b3480156105cc57600080fd5b506105d561131b565b6040516105e29190614019565b60405180910390f35b3480156105f757600080fd5b50610600611321565b60405161060d9190613d37565b60405180910390f35b34801561062257600080fd5b5061063d600480360381019061063891906130ed565b6113af565b60405161064a9190614019565b60405180910390f35b34801561065f57600080fd5b50610668611467565b005b34801561067657600080fd5b50610691600480360381019061068c9190613395565b6114ef565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190613395565b611575565b005b3480156106c857600080fd5b506106d16115fb565b6040516106de9190613cb5565b60405180910390f35b3480156106f357600080fd5b506106fc611625565b6040516107099190613d37565b60405180910390f35b61072c60048036038101906107279190613395565b6116b7565b005b34801561073a57600080fd5b506107556004803603810190610750919061321c565b6119ee565b005b34801561076357600080fd5b5061076c611b6f565b6040516107799190614019565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a491906131a1565b611bf3565b005b3480156107b757600080fd5b506107d260048036038101906107cd9190613395565b611c55565b6040516107df9190613cb5565b60405180910390f35b3480156107f457600080fd5b506107fd611c94565b60405161080a9190613d37565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190613395565b611d22565b6040516108479190613d37565b60405180910390f35b34801561085c57600080fd5b50610865611dcc565b6040516108729190614019565b60405180910390f35b34801561088757600080fd5b506108a2600480360381019061089d9190613354565b611dd2565b005b3480156108b057600080fd5b506108cb60048036038101906108c691906132d9565b611e68565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190613116565b611f01565b6040516109019190613d1c565b60405180910390f35b34801561091657600080fd5b50610931600480360381019061092c9190613294565b611f95565b005b34801561093f57600080fd5b5061095a600480360381019061095591906130ed565b612035565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a375750610a368261212d565b5b9050919050565b610a46612197565b73ffffffffffffffffffffffffffffffffffffffff16610a646115fb565b73ffffffffffffffffffffffffffffffffffffffff1614610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190613f19565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060008054610ae6906142f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b12906142f3565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b6000610b748261219f565b610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa90613ef9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf982611263565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6190613fb9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c89612197565b73ffffffffffffffffffffffffffffffffffffffff161480610cb85750610cb781610cb2612197565b611f01565b5b610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee90613e59565b60405180910390fd5b610d01838361220b565b505050565b60095481565b600e5481565b60116020528060005260406000206000915090505481565b600b5481565b610d41610d3b612197565b826122c4565b610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613ff9565b60405180910390fd5b610d8b8383836123a2565b505050565b610d98612197565b73ffffffffffffffffffffffffffffffffffffffff16610db66115fb565b73ffffffffffffffffffffffffffffffffffffffff1614610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390613f19565b60405180910390fd5b6000610e16611b6f565b905060008111610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290613eb9565b60405180910390fd5b610ea1601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e861015484610e9291906141af565b610e9c919061417e565b6125fe565b610ee7601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e861014a84610ed891906141af565b610ee2919061417e565b6125fe565b610f2d601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e861014a84610f1e91906141af565b610f28919061417e565b6125fe565b50565b600080600090505b601080549050811015610ffa578273ffffffffffffffffffffffffffffffffffffffff1660108281548110610f96577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610fe7576001915050611000565b8080610ff290614325565b915050610f38565b50600090505b919050565b61100d612197565b73ffffffffffffffffffffffffffffffffffffffff1661102b6115fb565b73ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890613f19565b60405180910390fd5b600061108b6115fb565b73ffffffffffffffffffffffffffffffffffffffff16476040516110ae90613ca0565b60006040518083038185875af1925050503d80600081146110eb576040519150601f19603f3d011682016040523d82523d6000602084013e6110f0565b606091505b50509050806110fe57600080fd5b50565b61111c83838360405180602001604052806000815250611bf3565b505050565b611129612197565b73ffffffffffffffffffffffffffffffffffffffff166111476115fb565b73ffffffffffffffffffffffffffffffffffffffff161461119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490613f19565b60405180910390fd5b8060098190555050565b600f60019054906101000a900460ff1681565b6111c2612197565b73ffffffffffffffffffffffffffffffffffffffff166111e06115fb565b73ffffffffffffffffffffffffffffffffffffffff1614611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90613f19565b60405180910390fd5b806007908051906020019061124c929190612e06565b5050565b600f60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390613e99565b60405180910390fd5b80915050919050565b600c5481565b600d5481565b6007805461132e906142f3565b80601f016020809104026020016040519081016040528092919081815260200182805461135a906142f3565b80156113a75780601f1061137c576101008083540402835291602001916113a7565b820191906000526020600020905b81548152906001019060200180831161138a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790613e79565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146f612197565b73ffffffffffffffffffffffffffffffffffffffff1661148d6115fb565b73ffffffffffffffffffffffffffffffffffffffff16146114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90613f19565b60405180910390fd5b6114ed60006126af565b565b6114f7612197565b73ffffffffffffffffffffffffffffffffffffffff166115156115fb565b73ffffffffffffffffffffffffffffffffffffffff161461156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156290613f19565b60405180910390fd5b80600c8190555050565b61157d612197565b73ffffffffffffffffffffffffffffffffffffffff1661159b6115fb565b73ffffffffffffffffffffffffffffffffffffffff16146115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890613f19565b60405180910390fd5b80600b8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611634906142f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611660906142f3565b80156116ad5780601f10611682576101008083540402835291602001916116ad565b820191906000526020600020905b81548152906001019060200180831161169057829003601f168201915b5050505050905090565b600f60009054906101000a900460ff1615611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90613e19565b60405180910390fd5b6000811161171457600080fd5b600b5481111561172357600080fd5b600a5481600e546117349190614128565b111561173f57600080fd5b6117476115fb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461192d576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c5482826117cc9190614128565b111561180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490613e39565b60405180910390fd5b61181633610f30565b61186f578160095461182891906141af565b34101561186a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186190613fd9565b60405180910390fd5b61192b565b600f60019054906101000a900460ff16156118d957600d5482826118939190614128565b11156118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb90613f39565b60405180910390fd5b61192a565b816009546118e791906141af565b341015611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090613fd9565b60405180910390fd5b5b5b505b6000600190505b8181116119ba576119523382600e5461194d9190614128565b612775565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906119a290614325565b919050555080806119b290614325565b915050611934565b5080600e60008282546119cd9190614128565b92505081905550600a54600e5414156119eb576119ea6001610a3e565b5b50565b6119f6612197565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90613dd9565b60405180910390fd5b8060056000611a71612197565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b1e612197565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b639190613d1c565b60405180910390a35050565b6000611b79612197565b73ffffffffffffffffffffffffffffffffffffffff16611b976115fb565b73ffffffffffffffffffffffffffffffffffffffff1614611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490613f19565b60405180910390fd5b47905090565b611c04611bfe612197565b836122c4565b611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90613ff9565b60405180910390fd5b611c4f84848484612793565b50505050565b60108181548110611c6557600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60088054611ca1906142f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611ccd906142f3565b8015611d1a5780601f10611cef57610100808354040283529160200191611d1a565b820191906000526020600020905b815481529060010190602001808311611cfd57829003601f168201915b505050505081565b6060611d2d8261219f565b611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6390613f79565b60405180910390fd5b6000611d766127ef565b90506000815111611d965760405180602001604052806000815250611dc4565b80611da084612881565b6008604051602001611db493929190613c6f565b6040516020818303038152906040525b915050919050565b600a5481565b611dda612197565b73ffffffffffffffffffffffffffffffffffffffff16611df86115fb565b73ffffffffffffffffffffffffffffffffffffffff1614611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4590613f19565b60405180910390fd5b8060089080519060200190611e64929190612e06565b5050565b611e70612197565b73ffffffffffffffffffffffffffffffffffffffff16611e8e6115fb565b73ffffffffffffffffffffffffffffffffffffffff1614611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90613f19565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f9d612197565b73ffffffffffffffffffffffffffffffffffffffff16611fbb6115fb565b73ffffffffffffffffffffffffffffffffffffffff1614612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200890613f19565b60405180910390fd5b6010600061201f9190612e8c565b818160109190612030929190612ead565b505050565b61203d612197565b73ffffffffffffffffffffffffffffffffffffffff1661205b6115fb565b73ffffffffffffffffffffffffffffffffffffffff16146120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890613f19565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211890613d79565b60405180910390fd5b61212a816126af565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661227e83611263565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122cf8261219f565b61230e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230590613df9565b60405180910390fd5b600061231983611263565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061238857508373ffffffffffffffffffffffffffffffffffffffff1661237084610b69565b73ffffffffffffffffffffffffffffffffffffffff16145b8061239957506123988185611f01565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123c282611263565b73ffffffffffffffffffffffffffffffffffffffff1614612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f90613f59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247f90613db9565b60405180910390fd5b612493838383612a2e565b61249e60008261220b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ee9190614209565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125459190614128565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161262490613ca0565b60006040518083038185875af1925050503d8060008114612661576040519150601f19603f3d011682016040523d82523d6000602084013e612666565b606091505b50509050806126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a190613f99565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61278f828260405180602001604052806000815250612a33565b5050565b61279e8484846123a2565b6127aa84848484612a8e565b6127e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e090613d59565b60405180910390fd5b50505050565b6060600780546127fe906142f3565b80601f016020809104026020016040519081016040528092919081815260200182805461282a906142f3565b80156128775780601f1061284c57610100808354040283529160200191612877565b820191906000526020600020905b81548152906001019060200180831161285a57829003601f168201915b5050505050905090565b606060008214156128c9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a29565b600082905060005b600082146128fb5780806128e490614325565b915050600a826128f4919061417e565b91506128d1565b60008167ffffffffffffffff81111561293d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561296f5781602001600182028036833780820191505090505b5090505b60008514612a22576001826129889190614209565b9150600a85612997919061436e565b60306129a39190614128565b60f81b8183815181106129df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a1b919061417e565b9450612973565b8093505050505b919050565b505050565b612a3d8383612c25565b612a4a6000848484612a8e565b612a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8090613d59565b60405180910390fd5b505050565b6000612aaf8473ffffffffffffffffffffffffffffffffffffffff16612df3565b15612c18578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ad8612197565b8786866040518563ffffffff1660e01b8152600401612afa9493929190613cd0565b602060405180830381600087803b158015612b1457600080fd5b505af1925050508015612b4557506040513d601f19601f82011682018060405250810190612b42919061332b565b60015b612bc8573d8060008114612b75576040519150601f19603f3d011682016040523d82523d6000602084013e612b7a565b606091505b50600081511415612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb790613d59565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c1d565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90613ed9565b60405180910390fd5b612c9e8161219f565b15612cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd590613d99565b60405180910390fd5b612cea60008383612a2e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d3a9190614128565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e12906142f3565b90600052602060002090601f016020900481019282612e345760008555612e7b565b82601f10612e4d57805160ff1916838001178555612e7b565b82800160010185558215612e7b579182015b82811115612e7a578251825591602001919060010190612e5f565b5b509050612e889190612f4d565b5090565b5080546000825590600052602060002090810190612eaa9190612f4d565b50565b828054828255906000526020600020908101928215612f3c579160200282015b82811115612f3b57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612ecd565b5b509050612f499190612f4d565b5090565b5b80821115612f66576000816000905550600101612f4e565b5090565b6000612f7d612f7884614065565b614034565b905082815260208101848484011115612f9557600080fd5b612fa08482856142b1565b509392505050565b6000612fbb612fb684614095565b614034565b905082815260208101848484011115612fd357600080fd5b612fde8482856142b1565b509392505050565b600081359050612ff58161446c565b92915050565b60008083601f84011261300d57600080fd5b8235905067ffffffffffffffff81111561302657600080fd5b60208301915083602082028301111561303e57600080fd5b9250929050565b60008135905061305481614483565b92915050565b6000813590506130698161449a565b92915050565b60008151905061307e8161449a565b92915050565b600082601f83011261309557600080fd5b81356130a5848260208601612f6a565b91505092915050565b600082601f8301126130bf57600080fd5b81356130cf848260208601612fa8565b91505092915050565b6000813590506130e7816144b1565b92915050565b6000602082840312156130ff57600080fd5b600061310d84828501612fe6565b91505092915050565b6000806040838503121561312957600080fd5b600061313785828601612fe6565b925050602061314885828601612fe6565b9150509250929050565b60008060006060848603121561316757600080fd5b600061317586828701612fe6565b935050602061318686828701612fe6565b9250506040613197868287016130d8565b9150509250925092565b600080600080608085870312156131b757600080fd5b60006131c587828801612fe6565b94505060206131d687828801612fe6565b93505060406131e7878288016130d8565b925050606085013567ffffffffffffffff81111561320457600080fd5b61321087828801613084565b91505092959194509250565b6000806040838503121561322f57600080fd5b600061323d85828601612fe6565b925050602061324e85828601613045565b9150509250929050565b6000806040838503121561326b57600080fd5b600061327985828601612fe6565b925050602061328a858286016130d8565b9150509250929050565b600080602083850312156132a757600080fd5b600083013567ffffffffffffffff8111156132c157600080fd5b6132cd85828601612ffb565b92509250509250929050565b6000602082840312156132eb57600080fd5b60006132f984828501613045565b91505092915050565b60006020828403121561331457600080fd5b60006133228482850161305a565b91505092915050565b60006020828403121561333d57600080fd5b600061334b8482850161306f565b91505092915050565b60006020828403121561336657600080fd5b600082013567ffffffffffffffff81111561338057600080fd5b61338c848285016130ae565b91505092915050565b6000602082840312156133a757600080fd5b60006133b5848285016130d8565b91505092915050565b6133c78161423d565b82525050565b6133d68161424f565b82525050565b60006133e7826140da565b6133f181856140f0565b93506134018185602086016142c0565b61340a8161445b565b840191505092915050565b6000613420826140e5565b61342a818561410c565b935061343a8185602086016142c0565b6134438161445b565b840191505092915050565b6000613459826140e5565b613463818561411d565b93506134738185602086016142c0565b80840191505092915050565b6000815461348c816142f3565b613496818661411d565b945060018216600081146134b157600181146134c2576134f5565b60ff198316865281860193506134f5565b6134cb856140c5565b60005b838110156134ed578154818901526001820191506020810190506134ce565b838801955050505b50505092915050565b600061350b60328361410c565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061357160268361410c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135d7601c8361410c565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061361760248361410c565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061367d60198361410c565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006136bd602c8361410c565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061372360128361410c565b91507f73616c65206973206e6f742061637469766500000000000000000000000000006000830152602082019050919050565b6000613763601b8361410c565b91507f6d6178206e6674207065722061646472657373207265616368656400000000006000830152602082019050919050565b60006137a360388361410c565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613809602a8361410c565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061386f60298361410c565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006138d560148361410c565b91507f4e6f2066756e647320746f2072657472696576650000000000000000000000006000830152602082019050919050565b600061391560208361410c565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613955602c8361410c565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139bb60208361410c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006139fb60208361410c565b91507f77686974656c697374206f6e6c7920616c6c6f77656420746f206d696e7420316000830152602082019050919050565b6000613a3b60298361410c565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aa1602f8361410c565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613b0760188361410c565b91507f4661696c656420746f20776974686472617720457468657200000000000000006000830152602082019050919050565b6000613b4760218361410c565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bad600083614101565b9150600082019050919050565b6000613bc760128361410c565b91507f696e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b6000613c0760318361410c565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b613c69816142a7565b82525050565b6000613c7b828661344e565b9150613c87828561344e565b9150613c93828461347f565b9150819050949350505050565b6000613cab82613ba0565b9150819050919050565b6000602082019050613cca60008301846133be565b92915050565b6000608082019050613ce560008301876133be565b613cf260208301866133be565b613cff6040830185613c60565b8181036060830152613d1181846133dc565b905095945050505050565b6000602082019050613d3160008301846133cd565b92915050565b60006020820190508181036000830152613d518184613415565b905092915050565b60006020820190508181036000830152613d72816134fe565b9050919050565b60006020820190508181036000830152613d9281613564565b9050919050565b60006020820190508181036000830152613db2816135ca565b9050919050565b60006020820190508181036000830152613dd28161360a565b9050919050565b60006020820190508181036000830152613df281613670565b9050919050565b60006020820190508181036000830152613e12816136b0565b9050919050565b60006020820190508181036000830152613e3281613716565b9050919050565b60006020820190508181036000830152613e5281613756565b9050919050565b60006020820190508181036000830152613e7281613796565b9050919050565b60006020820190508181036000830152613e92816137fc565b9050919050565b60006020820190508181036000830152613eb281613862565b9050919050565b60006020820190508181036000830152613ed2816138c8565b9050919050565b60006020820190508181036000830152613ef281613908565b9050919050565b60006020820190508181036000830152613f1281613948565b9050919050565b60006020820190508181036000830152613f32816139ae565b9050919050565b60006020820190508181036000830152613f52816139ee565b9050919050565b60006020820190508181036000830152613f7281613a2e565b9050919050565b60006020820190508181036000830152613f9281613a94565b9050919050565b60006020820190508181036000830152613fb281613afa565b9050919050565b60006020820190508181036000830152613fd281613b3a565b9050919050565b60006020820190508181036000830152613ff281613bba565b9050919050565b6000602082019050818103600083015261401281613bfa565b9050919050565b600060208201905061402e6000830184613c60565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561405b5761405a61442c565b5b8060405250919050565b600067ffffffffffffffff8211156140805761407f61442c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156140b0576140af61442c565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614133826142a7565b915061413e836142a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141735761417261439f565b5b828201905092915050565b6000614189826142a7565b9150614194836142a7565b9250826141a4576141a36143ce565b5b828204905092915050565b60006141ba826142a7565b91506141c5836142a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141fe576141fd61439f565b5b828202905092915050565b6000614214826142a7565b915061421f836142a7565b9250828210156142325761423161439f565b5b828203905092915050565b600061424882614287565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142de5780820151818401526020810190506142c3565b838111156142ed576000848401525b50505050565b6000600282049050600182168061430b57607f821691505b6020821081141561431f5761431e6143fd565b5b50919050565b6000614330826142a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143635761436261439f565b5b600182019050919050565b6000614379826142a7565b9150614384836142a7565b925082614394576143936143ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6144758161423d565b811461448057600080fd5b50565b61448c8161424f565b811461449757600080fd5b50565b6144a38161425b565b81146144ae57600080fd5b50565b6144ba816142a7565b81146144c557600080fd5b5056fea26469706673582212200ebaf6c08ddcbc59977baa98d7ecda041de1e91bf40857181e96a6e93457bccd64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d5061706572204368617365727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000350435300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d626862687a4d5945366f434c524441367954726b587141617378474161474253443756436e62436253796a532f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Paper Chasers
Arg [1] : _symbol (string): PCS
Arg [2] : _initBaseURI (string): ipfs://QmbhbhzMYE6oCLRDA6yTrkXqAasxGAaGBSD7VCnbCbSyjS/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 5061706572204368617365727300000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5043530000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d626862687a4d5945366f434c524441367954726b587141
Arg [9] : 617378474161474253443756436e62436253796a532f00000000000000000000


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.