ETH Price: $3,455.14 (+1.87%)
Gas: 3 Gwei

Token

Bored Ape Yacht Club (BAYC)
 

Overview

Max Total Supply

10,000 BAYC

Holders

836

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rocketgirlnft.eth
Balance
2 BAYC
0x3e0914fc2b3b67a476142020b7d6990d01ad234e
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:
BoredApeYachtClub

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : MasterchefMasatoshiJuniorX.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "./ERC721.sol";


//  _____ _     _       _                   _     _ _                   _   
// /__   \ |__ (_)___  (_)___    __ _   ___| |__ (_) |_ _ __   ___  ___| |_ 
//   / /\/ '_ \| / __| | / __|  / _` | / __| '_ \| | __| '_ \ / _ \/ __| __|
//  / /  | | | | \__ \ | \__ \ | (_| | \__ \ | | | | |_| |_) | (_) \__ \ |_ 
//  \/   |_| |_|_|___/ |_|___/  \__,_| |___/_| |_|_|\__| .__/ \___/|___/\__|
//                                                     |_|                  
//  _                                    __       _                         
// | |__  _   _  /\_/\___   __ _  __ _  / /  __ _| |__  ___                 
// | '_ \| | | | \_ _/ _ \ / _` |/ _` |/ /  / _` | '_ \/ __|                
// | |_) | |_| |  / \ (_) | (_| | (_| / /__| (_| | |_) \__ \                
// |_.__/ \__, |  \_/\___/ \__, |\__,_\____/\__,_|_.__/|___/                
//        |___/            |___/                                  


       
contract BoredApeYachtClub is ERC721, Ownable {
  using ECDSA for bytes32;
  string public PROVENANCE;
  bool provenanceSet;

  uint256 public mintPrice;
  uint256 public maxPossibleSupply;
  uint256 public allowListMintPrice;
  uint256 public maxAllowedMints;

  address public immutable currency;
  address immutable wrappedNativeCoinAddress;

  address private signerAddress;
  bool public paused;

  enum MintStatus {
    PreMint,
    AllowList,
    Public,
    Finished
  }

  MintStatus public mintStatus = MintStatus.PreMint;

  mapping (address => uint256) public totalMintsPerAddress;

  constructor(
      string memory _name,
      string memory _symbol,
      uint256 _maxPossibleSupply,
      uint256 _mintPrice,
      uint256 _allowListMintPrice,
      uint256 _maxAllowedMints,
      address _signerAddress,
      address _currency,
      address _wrappedNativeCoinAddress
  ) ERC721(_name, _symbol, _maxAllowedMints) {
    maxPossibleSupply = _maxPossibleSupply;
    mintPrice = _mintPrice;
    allowListMintPrice = _allowListMintPrice;
    maxAllowedMints = _maxAllowedMints;
    signerAddress = _signerAddress;
    currency = _currency;
    wrappedNativeCoinAddress = _wrappedNativeCoinAddress;
  }

  function flipPaused() external onlyOwner {
    paused = !paused;
  }

  function preMint(uint amount) public onlyOwner {
    require(mintStatus == MintStatus.PreMint, "s");
    require(totalSupply() + amount <= maxPossibleSupply, "m");  
    _safeMint(msg.sender, amount);
  }

  function setProvenanceHash(string memory provenanceHash) public onlyOwner {
    require(!provenanceSet);
    PROVENANCE = provenanceHash;
    provenanceSet = true;
  }

  function setBaseURI(string memory baseURI) public onlyOwner {
    _setBaseURI(baseURI);
  }
  
  function changeMintStatus(MintStatus _status) external onlyOwner {
    require(_status != MintStatus.PreMint);
    if (mintStatus == MintStatus.Public) {
      require(_status != MintStatus.AllowList);
    }
    mintStatus = _status;
  }

  function mintAllowList(
    bytes32 messageHash,
    bytes calldata signature,
    uint amount
  ) public payable {
    require(mintStatus == MintStatus.AllowList && !paused, "s");
    require(totalSupply() + amount <= maxPossibleSupply, "m");
    require(hashMessage(msg.sender, address(this)) == messageHash, "i");
    require(verifyAddressSigner(messageHash, signature), "f");
    require(totalMintsPerAddress[msg.sender] + amount <= maxAllowedMints, "l");

    if (currency == wrappedNativeCoinAddress) {
      require(allowListMintPrice * amount <= msg.value, "a");
    } else {
      IERC20 _currency = IERC20(currency);
      _currency.transferFrom(msg.sender, address(this), amount * allowListMintPrice);
    }

    totalMintsPerAddress[msg.sender] = totalMintsPerAddress[msg.sender] + amount;
    _safeMint(msg.sender, amount);
  }

  function mintPublic(uint amount) public payable {
    require(mintStatus == MintStatus.Public && !paused, "s");
    require(totalSupply() + amount <= maxPossibleSupply, "m");
    require(totalMintsPerAddress[msg.sender] + amount <= maxAllowedMints, "l");

    if (currency == wrappedNativeCoinAddress) {
      require(mintPrice * amount <= msg.value, "a");
    } else {
      IERC20 _currency = IERC20(currency);
      _currency.transferFrom(msg.sender, address(this), amount * mintPrice);
    }

    totalMintsPerAddress[msg.sender] = totalMintsPerAddress[msg.sender] + amount;
    _safeMint(msg.sender, amount);

    if (totalSupply() == maxPossibleSupply) {
      mintStatus = MintStatus.Finished;
    }
  }

  function verifyAddressSigner(bytes32 messageHash, bytes memory signature) private view returns (bool) {
    return signerAddress == messageHash.toEthSignedMessageHash().recover(signature);
  }

  function hashMessage(address sender, address thisContract) public pure returns (bytes32) {
    return keccak256(abi.encodePacked(sender, thisContract));
  }

  receive() external payable {
    mintPublic(msg.value / mintPrice);
  }

  function withdraw() external onlyOwner() {
    uint balance = address(this).balance;
    payable(msg.sender).transfer(balance);
  }

  function withdrawTokens(address tokenAddress) external onlyOwner() {
    IERC20(tokenAddress).transfer(msg.sender, IERC20(tokenAddress).balanceOf(address(this)));
  }
}

File 2 of 14 : 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 3 of 14 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 4 of 14 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.10;

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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Base URI
    string private _baseURI;

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

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

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

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, "b");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), "g");
        return index;
    }

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

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "0");
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "t");

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

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

        revert("o");
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "z");

        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() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }



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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "a"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "a");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "a");

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "z"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "z"
            );
            updatedIndex++;
        }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

        require(isApprovedOrOwner, "a");

        require(prevOwnership.addr == from, "o");
        require(to != address(0), "0");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

File 6 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 14 : 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 8 of 14 : 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 9 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 14 : 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 12 of 14 : 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 13 of 14 : 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 14 of 14 : 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":"uint256","name":"_maxPossibleSupply","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_allowListMintPrice","type":"uint256"},{"internalType":"uint256","name":"_maxAllowedMints","type":"uint256"},{"internalType":"address","name":"_signerAddress","type":"address"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"address","name":"_wrappedNativeCoinAddress","type":"address"}],"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":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMintPrice","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum BoredApeYachtClub.MintStatus","name":"_status","type":"uint8"}],"name":"changeMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"thisContract","type":"address"}],"name":"hashMessage","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAllowedMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPossibleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"messageHash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"enum BoredApeYachtClub.MintStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"nonpayable","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalMintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e06040526000805560006008556000601060156101000a81548160ff0219169083600381111562000036576200003562000366565b5b02179055503480156200004857600080fd5b5060405162005ed038038062005ed083398181016040528101906200006e9190620005d2565b88888560008111620000b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ae9062000750565b60405180910390fd5b8260019080519060200190620000cf929190620002b6565b508160029080519060200190620000e8929190620002b6565b5080608081815250505050506200011462000108620001e860201b60201c565b620001f060201b60201c565b86600d8190555085600c8190555084600e8190555083600f8190555082601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050505050505050505050620007d7565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c490620007a1565b90600052602060002090601f016020900481019282620002e8576000855562000334565b82601f106200030357805160ff191683800117855562000334565b8280016001018555821562000334579182015b828111156200033357825182559160200191906001019062000316565b5b50905062000343919062000347565b5090565b5b808211156200036257600081600090555060010162000348565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003fe82620003b3565b810181811067ffffffffffffffff8211171562000420576200041f620003c4565b5b80604052505050565b60006200043562000395565b9050620004438282620003f3565b919050565b600067ffffffffffffffff821115620004665762000465620003c4565b5b6200047182620003b3565b9050602081019050919050565b60005b838110156200049e57808201518184015260208101905062000481565b83811115620004ae576000848401525b50505050565b6000620004cb620004c58462000448565b62000429565b905082815260208101848484011115620004ea57620004e9620003ae565b5b620004f78482856200047e565b509392505050565b600082601f830112620005175762000516620003a9565b5b815162000529848260208601620004b4565b91505092915050565b6000819050919050565b620005478162000532565b81146200055357600080fd5b50565b60008151905062000567816200053c565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200059a826200056d565b9050919050565b620005ac816200058d565b8114620005b857600080fd5b50565b600081519050620005cc81620005a1565b92915050565b60008060008060008060008060006101208a8c031215620005f857620005f76200039f565b5b60008a015167ffffffffffffffff811115620006195762000618620003a4565b5b620006278c828d01620004ff565b99505060208a015167ffffffffffffffff8111156200064b576200064a620003a4565b5b620006598c828d01620004ff565b98505060406200066c8c828d0162000556565b97505060606200067f8c828d0162000556565b9650506080620006928c828d0162000556565b95505060a0620006a58c828d0162000556565b94505060c0620006b88c828d01620005bb565b93505060e0620006cb8c828d01620005bb565b925050610100620006df8c828d01620005bb565b9150509295985092959850929598565b600082825260208201905092915050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b600062000738600183620006ef565b9150620007458262000700565b602082019050919050565b600060208201905081810360008301526200076b8162000729565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007ba57607f821691505b60208210811415620007d157620007d062000772565b5b50919050565b60805160a05160c0516156986200083860003960008181610ad401526121ad015260008181610b0b01528181610b9f015281816121e40152818161227801526124eb015260008181612e0f01528181612e3801526134a301526156986000f3fe60806040526004361061023f5760003560e01c806368855b641161012e578063a22cb465116100ab578063d7224ba01161006f578063d7224ba014610885578063e5a6b10f146108b0578063e985e9c5146108db578063efd0cbf914610918578063f2fde38b146109345761025c565b8063a22cb4651461079d578063a9cbd06d146107c6578063b88d4fde146107e2578063b9bd28011461080b578063c87b56dd146108485761025c565b80637cac2602116100f25780637cac2602146106ca5780638ad433ac146106f35780638da5cb5b1461071c57806395d89b41146107475780639da3f8fd146107725761025c565b806368855b64146105e35780636c0360eb1461060e5780636c82054b1461063957806370a0823114610676578063715018a6146106b35761025c565b80633ccfd60b116101bc57806355f804b31161018057806355f804b3146104fc5780635c975abb146105255780636352211e146105505780636373a6b11461058d5780636817c76c146105b85761025c565b80633ccfd60b1461042b57806342842e0e1461044257806344fead9e1461046b57806349df728c146104965780634f6ccce7146104bf5761025c565b806318160ddd1161020357806318160ddd1461035857806323b872dd146103835780632f745c59146103ac578063333171bb146103e9578063386b7691146104005761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b314610306578063109695231461032f5761025c565b3661025c5761025a600c54346102559190613e2f565b61095d565b005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613ecc565b610d28565b6040516102959190613f14565b60405180910390f35b3480156102aa57600080fd5b506102b3610e72565b6040516102c09190613fc8565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190614016565b610f04565b6040516102fd9190614084565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906140cb565b610f89565b005b34801561033b57600080fd5b5061035660048036038101906103519190614240565b6110a2565b005b34801561036457600080fd5b5061036d61116d565b60405161037a9190614298565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a591906142b3565b611176565b005b3480156103b857600080fd5b506103d360048036038101906103ce91906140cb565b611186565b6040516103e09190614298565b60405180910390f35b3480156103f557600080fd5b506103fe611384565b005b34801561040c57600080fd5b5061041561142c565b6040516104229190614298565b60405180910390f35b34801561043757600080fd5b50610440611432565b005b34801561044e57600080fd5b50610469600480360381019061046491906142b3565b6114fd565b005b34801561047757600080fd5b5061048061151d565b60405161048d9190614298565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190614306565b611523565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190614016565b61169a565b6040516104f39190614298565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190614240565b6116ed565b005b34801561053157600080fd5b5061053a611775565b6040516105479190613f14565b60405180910390f35b34801561055c57600080fd5b5061057760048036038101906105729190614016565b611788565b6040516105849190614084565b60405180910390f35b34801561059957600080fd5b506105a261179e565b6040516105af9190613fc8565b60405180910390f35b3480156105c457600080fd5b506105cd61182c565b6040516105da9190614298565b60405180910390f35b3480156105ef57600080fd5b506105f8611832565b6040516106059190614298565b60405180910390f35b34801561061a57600080fd5b50610623611838565b6040516106309190613fc8565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b9190614333565b6118ca565b60405161066d919061438c565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190614306565b6118fd565b6040516106aa9190614298565b60405180910390f35b3480156106bf57600080fd5b506106c86119e6565b005b3480156106d657600080fd5b506106f160048036038101906106ec91906143cc565b611a6e565b005b3480156106ff57600080fd5b5061071a60048036038101906107159190614016565b611bb8565b005b34801561072857600080fd5b50610731611d0e565b60405161073e9190614084565b60405180910390f35b34801561075357600080fd5b5061075c611d38565b6040516107699190613fc8565b60405180910390f35b34801561077e57600080fd5b50610787611dca565b6040516107949190614470565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf91906144b7565b611ddd565b005b6107e060048036038101906107db9190614583565b611f5e565b005b3480156107ee57600080fd5b5061080960048036038101906108049190614698565b6123c7565b005b34801561081757600080fd5b50610832600480360381019061082d9190614306565b612423565b60405161083f9190614298565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a9190614016565b61243b565b60405161087c9190613fc8565b60405180910390f35b34801561089157600080fd5b5061089a6124e3565b6040516108a79190614298565b60405180910390f35b3480156108bc57600080fd5b506108c56124e9565b6040516108d29190614084565b60405180910390f35b3480156108e757600080fd5b5061090260048036038101906108fd9190614333565b61250d565b60405161090f9190613f14565b60405180910390f35b610932600480360381019061092d9190614016565b61095d565b005b34801561094057600080fd5b5061095b60048036038101906109569190614306565b6125a1565b005b60026003811115610971576109706143f9565b5b601060159054906101000a900460ff166003811115610993576109926143f9565b5b1480156109ad5750601060149054906101000a900460ff16155b6109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390614767565b60405180910390fd5b600d54816109f861116d565b610a029190614787565b1115610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90614829565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a919190614787565b1115610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990614895565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff161415610b9b573481600c54610b5591906148b5565b1115610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d9061495b565b60405180910390fd5b610c50565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600c5486610bec91906148b5565b6040518463ffffffff1660e01b8152600401610c0a9392919061497b565b6020604051808303816000875af1158015610c29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4d91906149c7565b50505b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9b9190614787565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ce83382612699565b600d54610cf361116d565b1415610d25576003601060156101000a81548160ff02191690836003811115610d1f57610d1e6143f9565b5b02179055505b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610df357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e5b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e6b5750610e6a826126b7565b5b9050919050565b606060018054610e8190614a23565b80601f0160208091040260200160405190810160405280929190818152602001828054610ead90614a23565b8015610efa5780601f10610ecf57610100808354040283529160200191610efa565b820191906000526020600020905b815481529060010190602001808311610edd57829003601f168201915b5050505050905090565b6000610f0f82612721565b610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f459061495b565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f9482611788565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90614aa1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661102461272e565b73ffffffffffffffffffffffffffffffffffffffff16148061105357506110528161104d61272e565b61250d565b5b611092576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110899061495b565b60405180910390fd5b61109d838383612736565b505050565b6110aa61272e565b73ffffffffffffffffffffffffffffffffffffffff166110c8611d0e565b73ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590614b0d565b60405180910390fd5b600b60009054906101000a900460ff161561113857600080fd5b80600a908051906020019061114e929190613cea565b506001600b60006101000a81548160ff02191690831515021790555050565b60008054905090565b6111818383836127e8565b505050565b6000611191836118fd565b82106111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990614b79565b60405180910390fd5b60006111dc61116d565b905060008060005b83811015611342576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146112d657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561132e578684141561131f57819550505050505061137e565b838061132a90614b99565b9450505b50808061133a90614b99565b9150506111e4565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590614c2e565b60405180910390fd5b92915050565b61138c61272e565b73ffffffffffffffffffffffffffffffffffffffff166113aa611d0e565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790614b0d565b60405180910390fd5b601060149054906101000a900460ff1615601060146101000a81548160ff021916908315150217905550565b600d5481565b61143a61272e565b73ffffffffffffffffffffffffffffffffffffffff16611458611d0e565b73ffffffffffffffffffffffffffffffffffffffff16146114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590614b0d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156114f9573d6000803e3d6000fd5b5050565b611518838383604051806020016040528060008152506123c7565b505050565b600f5481565b61152b61272e565b73ffffffffffffffffffffffffffffffffffffffff16611549611d0e565b73ffffffffffffffffffffffffffffffffffffffff161461159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690614b0d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115f59190614084565b602060405180830381865afa158015611612573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116369190614c63565b6040518363ffffffff1660e01b8152600401611653929190614c90565b6020604051808303816000875af1158015611672573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169691906149c7565b5050565b60006116a461116d565b82106116e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dc90614d05565b60405180910390fd5b819050919050565b6116f561272e565b73ffffffffffffffffffffffffffffffffffffffff16611713611d0e565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090614b0d565b60405180910390fd5b61177281612da1565b50565b601060149054906101000a900460ff1681565b600061179382612dbb565b600001519050919050565b600a80546117ab90614a23565b80601f01602080910402602001604051908101604052809291908181526020018280546117d790614a23565b80156118245780601f106117f957610100808354040283529160200191611824565b820191906000526020600020905b81548152906001019060200180831161180757829003601f168201915b505050505081565b600c5481565b600e5481565b60606003805461184790614a23565b80601f016020809104026020016040519081016040528092919081815260200182805461187390614a23565b80156118c05780601f10611895576101008083540402835291602001916118c0565b820191906000526020600020905b8154815290600101906020018083116118a357829003601f168201915b5050505050905090565b600082826040516020016118df929190614d6d565b60405160208183030381529060405280519060200120905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196590614de5565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6119ee61272e565b73ffffffffffffffffffffffffffffffffffffffff16611a0c611d0e565b73ffffffffffffffffffffffffffffffffffffffff1614611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990614b0d565b60405180910390fd5b611a6c6000612fbe565b565b611a7661272e565b73ffffffffffffffffffffffffffffffffffffffff16611a94611d0e565b73ffffffffffffffffffffffffffffffffffffffff1614611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190614b0d565b60405180910390fd5b60006003811115611afe57611afd6143f9565b5b816003811115611b1157611b106143f9565b5b1415611b1c57600080fd5b60026003811115611b3057611b2f6143f9565b5b601060159054906101000a900460ff166003811115611b5257611b516143f9565b5b1415611b8b5760016003811115611b6c57611b6b6143f9565b5b816003811115611b7f57611b7e6143f9565b5b1415611b8a57600080fd5b5b80601060156101000a81548160ff02191690836003811115611bb057611baf6143f9565b5b021790555050565b611bc061272e565b73ffffffffffffffffffffffffffffffffffffffff16611bde611d0e565b73ffffffffffffffffffffffffffffffffffffffff1614611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90614b0d565b60405180910390fd5b60006003811115611c4857611c476143f9565b5b601060159054906101000a900460ff166003811115611c6a57611c696143f9565b5b14611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca190614767565b60405180910390fd5b600d5481611cb661116d565b611cc09190614787565b1115611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf890614829565b60405180910390fd5b611d0b3382612699565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611d4790614a23565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7390614a23565b8015611dc05780601f10611d9557610100808354040283529160200191611dc0565b820191906000526020600020905b815481529060010190602001808311611da357829003601f168201915b5050505050905090565b601060159054906101000a900460ff1681565b611de561272e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a9061495b565b60405180910390fd5b8060076000611e6061272e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f0d61272e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f529190613f14565b60405180910390a35050565b60016003811115611f7257611f716143f9565b5b601060159054906101000a900460ff166003811115611f9457611f936143f9565b5b148015611fae5750601060149054906101000a900460ff16155b611fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe490614767565b60405180910390fd5b600d5481611ff961116d565b6120039190614787565b1115612044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203b90614829565b60405180910390fd5b8361204f33306118ca565b1461208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614e51565b60405180910390fd5b6120dd8484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050613084565b61211c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211390614ebd565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461216a9190614787565b11156121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a290614895565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff161415612274573481600e5461222e91906148b5565b111561226f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122669061495b565b60405180910390fd5b612329565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600e54866122c591906148b5565b6040518463ffffffff1660e01b81526004016122e39392919061497b565b6020604051808303816000875af1158015612302573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061232691906149c7565b50505b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123749190614787565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123c13382612699565b50505050565b6123d28484846127e8565b6123de848484846130f9565b61241d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241490614f29565b60405180910390fd5b50505050565b60116020528060005260406000206000915090505481565b606061244682612721565b612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c90614f29565b60405180910390fd5b60006003805461249490614a23565b9050116124b057604051806020016040528060008152506124dc565b60036124bb83613281565b6040516020016124cc929190615019565b6040516020818303038152906040525b9050919050565b60085481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125a961272e565b73ffffffffffffffffffffffffffffffffffffffff166125c7611d0e565b73ffffffffffffffffffffffffffffffffffffffff161461261d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261490614b0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561268d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612684906150af565b60405180910390fd5b61269681612fbe565b50565b6126b38282604051806020016040528060008152506133e2565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006127f382612dbb565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661281a61272e565b73ffffffffffffffffffffffffffffffffffffffff161480612876575061283f61272e565b73ffffffffffffffffffffffffffffffffffffffff1661285e84610f04565b73ffffffffffffffffffffffffffffffffffffffff16145b806128925750612891826000015161288c61272e565b61250d565b5b9050806128d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cb9061495b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293d90614aa1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90614de5565b60405180910390fd5b6129c385858560016138c1565b6129d36000848460000151612736565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612a4191906150eb565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612ae5919061511f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612beb9190614787565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d3157612c6181612721565b15612d30576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d9986868660016138c7565b505050505050565b8060039080519060200190612db7929190613cea565b5050565b612dc3613d70565b612dcc82612721565b612e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e02906151b1565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612e6f5760017f000000000000000000000000000000000000000000000000000000000000000084612e6291906151d1565b612e6c9190614787565b90505b60008390505b818110612f7d576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f6957809350505050612fb9565b508080612f7590615205565b915050612e75565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb090614aa1565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006130a182613093856138cd565b6138fd90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b600061311a8473ffffffffffffffffffffffffffffffffffffffff16613924565b15613274578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261314361272e565b8786866040518563ffffffff1660e01b81526004016131659493929190615284565b6020604051808303816000875af19250505080156131a157506040513d601f19601f8201168201806040525081019061319e91906152e5565b60015b613224573d80600081146131d1576040519150601f19603f3d011682016040523d82523d6000602084013e6131d6565b606091505b5060008151141561321c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321390614f29565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613279565b600190505b949350505050565b606060008214156132c9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133dd565b600082905060005b600082146132fb5780806132e490614b99565b915050600a826132f49190613e2f565b91506132d1565b60008167ffffffffffffffff81111561331757613316614115565b5b6040519080825280601f01601f1916602001820160405280156133495781602001600182028036833780820191505090505b5090505b600085146133d65760018261336291906151d1565b9150600a856133719190615312565b603061337d9190614787565b60f81b81838151811061339357613392615343565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133cf9190613e2f565b945061334d565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344f90614de5565b60405180910390fd5b61346181612721565b156134a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134989061495b565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fb90614829565b60405180910390fd5b61351160008583866138c1565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161360e919061511f565b6fffffffffffffffffffffffffffffffff168152602001858360200151613635919061511f565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156138a457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461384460008884886130f9565b613883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387a90614f29565b60405180910390fd5b818061388e90614b99565b925050808061389c90614b99565b9150506137d3565b50806000819055506138b960008785886138c7565b505050505050565b50505050565b50505050565b6000816040516020016138e091906153df565b604051602081830303815290604052805190602001209050919050565b600080600061390c8585613937565b91509150613919816139ba565b819250505092915050565b600080823b905060008111915050919050565b6000806041835114156139795760008060006020860151925060408601519150606086015160001a905061396d87828585613b8f565b945094505050506139b3565b6040835114156139aa57600080602085015191506040850151905061399f868383613c9c565b9350935050506139b3565b60006002915091505b9250929050565b600060048111156139ce576139cd6143f9565b5b8160048111156139e1576139e06143f9565b5b14156139ec57613b8c565b60016004811115613a00576139ff6143f9565b5b816004811115613a1357613a126143f9565b5b1415613a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4b90615451565b60405180910390fd5b60026004811115613a6857613a676143f9565b5b816004811115613a7b57613a7a6143f9565b5b1415613abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab3906154bd565b60405180910390fd5b60036004811115613ad057613acf6143f9565b5b816004811115613ae357613ae26143f9565b5b1415613b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1b9061554f565b60405180910390fd5b600480811115613b3757613b366143f9565b5b816004811115613b4a57613b496143f9565b5b1415613b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b82906155e1565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613bca576000600391509150613c93565b601b8560ff1614158015613be25750601c8560ff1614155b15613bf4576000600491509150613c93565b600060018787878760405160008152602001604052604051613c19949392919061561d565b6020604051602081039080840390855afa158015613c3b573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613c8a57600060019250925050613c93565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613cdc87828885613b8f565b935093505050935093915050565b828054613cf690614a23565b90600052602060002090601f016020900481019282613d185760008555613d5f565b82601f10613d3157805160ff1916838001178555613d5f565b82800160010185558215613d5f579182015b82811115613d5e578251825591602001919060010190613d43565b5b509050613d6c9190613daa565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613dc3576000816000905550600101613dab565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e3a82613dc7565b9150613e4583613dc7565b925082613e5557613e54613dd1565b5b828204905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ea981613e74565b8114613eb457600080fd5b50565b600081359050613ec681613ea0565b92915050565b600060208284031215613ee257613ee1613e6a565b5b6000613ef084828501613eb7565b91505092915050565b60008115159050919050565b613f0e81613ef9565b82525050565b6000602082019050613f296000830184613f05565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f69578082015181840152602081019050613f4e565b83811115613f78576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f9a82613f2f565b613fa48185613f3a565b9350613fb4818560208601613f4b565b613fbd81613f7e565b840191505092915050565b60006020820190508181036000830152613fe28184613f8f565b905092915050565b613ff381613dc7565b8114613ffe57600080fd5b50565b60008135905061401081613fea565b92915050565b60006020828403121561402c5761402b613e6a565b5b600061403a84828501614001565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061406e82614043565b9050919050565b61407e81614063565b82525050565b60006020820190506140996000830184614075565b92915050565b6140a881614063565b81146140b357600080fd5b50565b6000813590506140c58161409f565b92915050565b600080604083850312156140e2576140e1613e6a565b5b60006140f0858286016140b6565b925050602061410185828601614001565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61414d82613f7e565b810181811067ffffffffffffffff8211171561416c5761416b614115565b5b80604052505050565b600061417f613e60565b905061418b8282614144565b919050565b600067ffffffffffffffff8211156141ab576141aa614115565b5b6141b482613f7e565b9050602081019050919050565b82818337600083830152505050565b60006141e36141de84614190565b614175565b9050828152602081018484840111156141ff576141fe614110565b5b61420a8482856141c1565b509392505050565b600082601f8301126142275761422661410b565b5b81356142378482602086016141d0565b91505092915050565b60006020828403121561425657614255613e6a565b5b600082013567ffffffffffffffff81111561427457614273613e6f565b5b61428084828501614212565b91505092915050565b61429281613dc7565b82525050565b60006020820190506142ad6000830184614289565b92915050565b6000806000606084860312156142cc576142cb613e6a565b5b60006142da868287016140b6565b93505060206142eb868287016140b6565b92505060406142fc86828701614001565b9150509250925092565b60006020828403121561431c5761431b613e6a565b5b600061432a848285016140b6565b91505092915050565b6000806040838503121561434a57614349613e6a565b5b6000614358858286016140b6565b9250506020614369858286016140b6565b9150509250929050565b6000819050919050565b61438681614373565b82525050565b60006020820190506143a1600083018461437d565b92915050565b600481106143b457600080fd5b50565b6000813590506143c6816143a7565b92915050565b6000602082840312156143e2576143e1613e6a565b5b60006143f0848285016143b7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60048110614439576144386143f9565b5b50565b600081905061444a82614428565b919050565b600061445a8261443c565b9050919050565b61446a8161444f565b82525050565b60006020820190506144856000830184614461565b92915050565b61449481613ef9565b811461449f57600080fd5b50565b6000813590506144b18161448b565b92915050565b600080604083850312156144ce576144cd613e6a565b5b60006144dc858286016140b6565b92505060206144ed858286016144a2565b9150509250929050565b61450081614373565b811461450b57600080fd5b50565b60008135905061451d816144f7565b92915050565b600080fd5b600080fd5b60008083601f8401126145435761454261410b565b5b8235905067ffffffffffffffff8111156145605761455f614523565b5b60208301915083600182028301111561457c5761457b614528565b5b9250929050565b6000806000806060858703121561459d5761459c613e6a565b5b60006145ab8782880161450e565b945050602085013567ffffffffffffffff8111156145cc576145cb613e6f565b5b6145d88782880161452d565b935093505060406145eb87828801614001565b91505092959194509250565b600067ffffffffffffffff82111561461257614611614115565b5b61461b82613f7e565b9050602081019050919050565b600061463b614636846145f7565b614175565b90508281526020810184848401111561465757614656614110565b5b6146628482856141c1565b509392505050565b600082601f83011261467f5761467e61410b565b5b813561468f848260208601614628565b91505092915050565b600080600080608085870312156146b2576146b1613e6a565b5b60006146c0878288016140b6565b94505060206146d1878288016140b6565b93505060406146e287828801614001565b925050606085013567ffffffffffffffff81111561470357614702613e6f565b5b61470f8782880161466a565b91505092959194509250565b7f7300000000000000000000000000000000000000000000000000000000000000600082015250565b6000614751600183613f3a565b915061475c8261471b565b602082019050919050565b6000602082019050818103600083015261478081614744565b9050919050565b600061479282613dc7565b915061479d83613dc7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147d2576147d1613e00565b5b828201905092915050565b7f6d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614813600183613f3a565b915061481e826147dd565b602082019050919050565b6000602082019050818103600083015261484281614806565b9050919050565b7f6c00000000000000000000000000000000000000000000000000000000000000600082015250565b600061487f600183613f3a565b915061488a82614849565b602082019050919050565b600060208201905081810360008301526148ae81614872565b9050919050565b60006148c082613dc7565b91506148cb83613dc7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561490457614903613e00565b5b828202905092915050565b7f6100000000000000000000000000000000000000000000000000000000000000600082015250565b6000614945600183613f3a565b91506149508261490f565b602082019050919050565b6000602082019050818103600083015261497481614938565b9050919050565b60006060820190506149906000830186614075565b61499d6020830185614075565b6149aa6040830184614289565b949350505050565b6000815190506149c18161448b565b92915050565b6000602082840312156149dd576149dc613e6a565b5b60006149eb848285016149b2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a3b57607f821691505b60208210811415614a4f57614a4e6149f4565b5b50919050565b7f6f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614a8b600183613f3a565b9150614a9682614a55565b602082019050919050565b60006020820190508181036000830152614aba81614a7e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614af7602083613f3a565b9150614b0282614ac1565b602082019050919050565b60006020820190508181036000830152614b2681614aea565b9050919050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b6000614b63600183613f3a565b9150614b6e82614b2d565b602082019050919050565b60006020820190508181036000830152614b9281614b56565b9050919050565b6000614ba482613dc7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bd757614bd6613e00565b5b600182019050919050565b7f7500000000000000000000000000000000000000000000000000000000000000600082015250565b6000614c18600183613f3a565b9150614c2382614be2565b602082019050919050565b60006020820190508181036000830152614c4781614c0b565b9050919050565b600081519050614c5d81613fea565b92915050565b600060208284031215614c7957614c78613e6a565b5b6000614c8784828501614c4e565b91505092915050565b6000604082019050614ca56000830185614075565b614cb26020830184614289565b9392505050565b7f6700000000000000000000000000000000000000000000000000000000000000600082015250565b6000614cef600183613f3a565b9150614cfa82614cb9565b602082019050919050565b60006020820190508181036000830152614d1e81614ce2565b9050919050565b60008160601b9050919050565b6000614d3d82614d25565b9050919050565b6000614d4f82614d32565b9050919050565b614d67614d6282614063565b614d44565b82525050565b6000614d798285614d56565b601482019150614d898284614d56565b6014820191508190509392505050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b6000614dcf600183613f3a565b9150614dda82614d99565b602082019050919050565b60006020820190508181036000830152614dfe81614dc2565b9050919050565b7f6900000000000000000000000000000000000000000000000000000000000000600082015250565b6000614e3b600183613f3a565b9150614e4682614e05565b602082019050919050565b60006020820190508181036000830152614e6a81614e2e565b9050919050565b7f6600000000000000000000000000000000000000000000000000000000000000600082015250565b6000614ea7600183613f3a565b9150614eb282614e71565b602082019050919050565b60006020820190508181036000830152614ed681614e9a565b9050919050565b7f7a00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614f13600183613f3a565b9150614f1e82614edd565b602082019050919050565b60006020820190508181036000830152614f4281614f06565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614f7681614a23565b614f808186614f49565b94506001821660008114614f9b5760018114614fac57614fdf565b60ff19831686528186019350614fdf565b614fb585614f54565b60005b83811015614fd757815481890152600182019150602081019050614fb8565b838801955050505b50505092915050565b6000614ff382613f2f565b614ffd8185614f49565b935061500d818560208601613f4b565b80840191505092915050565b60006150258285614f69565b91506150318284614fe8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615099602683613f3a565b91506150a48261503d565b604082019050919050565b600060208201905081810360008301526150c88161508c565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006150f6826150cf565b9150615101836150cf565b92508282101561511457615113613e00565b5b828203905092915050565b600061512a826150cf565b9150615135836150cf565b9250826fffffffffffffffffffffffffffffffff0382111561515a57615159613e00565b5b828201905092915050565b7f7400000000000000000000000000000000000000000000000000000000000000600082015250565b600061519b600183613f3a565b91506151a682615165565b602082019050919050565b600060208201905081810360008301526151ca8161518e565b9050919050565b60006151dc82613dc7565b91506151e783613dc7565b9250828210156151fa576151f9613e00565b5b828203905092915050565b600061521082613dc7565b9150600082141561522457615223613e00565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b60006152568261522f565b615260818561523a565b9350615270818560208601613f4b565b61527981613f7e565b840191505092915050565b60006080820190506152996000830187614075565b6152a66020830186614075565b6152b36040830185614289565b81810360608301526152c5818461524b565b905095945050505050565b6000815190506152df81613ea0565b92915050565b6000602082840312156152fb576152fa613e6a565b5b6000615309848285016152d0565b91505092915050565b600061531d82613dc7565b915061532883613dc7565b92508261533857615337613dd1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006153a8601c83614f49565b91506153b382615372565b601c82019050919050565b6000819050919050565b6153d96153d482614373565b6153be565b82525050565b60006153ea8261539b565b91506153f682846153c8565b60208201915081905092915050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b600061543b601883613f3a565b915061544682615405565b602082019050919050565b6000602082019050818103600083015261546a8161542e565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006154a7601f83613f3a565b91506154b282615471565b602082019050919050565b600060208201905081810360008301526154d68161549a565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615539602283613f3a565b9150615544826154dd565b604082019050919050565b600060208201905081810360008301526155688161552c565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006155cb602283613f3a565b91506155d68261556f565b604082019050919050565b600060208201905081810360008301526155fa816155be565b9050919050565b600060ff82169050919050565b61561781615601565b82525050565b6000608082019050615632600083018761437d565b61563f602083018661560e565b61564c604083018561437d565b615659606083018461437d565b9594505050505056fea2646970667358221220542c800dd2077fec5159a677603ae35322432c615463e48b33cf91d1672e3ca364736f6c634300080a003300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000e9a347e4bfbe5a219f3497b1ca3ac8568a99ed6c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000014426f7265642041706520596163687420436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000044241594300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806368855b641161012e578063a22cb465116100ab578063d7224ba01161006f578063d7224ba014610885578063e5a6b10f146108b0578063e985e9c5146108db578063efd0cbf914610918578063f2fde38b146109345761025c565b8063a22cb4651461079d578063a9cbd06d146107c6578063b88d4fde146107e2578063b9bd28011461080b578063c87b56dd146108485761025c565b80637cac2602116100f25780637cac2602146106ca5780638ad433ac146106f35780638da5cb5b1461071c57806395d89b41146107475780639da3f8fd146107725761025c565b806368855b64146105e35780636c0360eb1461060e5780636c82054b1461063957806370a0823114610676578063715018a6146106b35761025c565b80633ccfd60b116101bc57806355f804b31161018057806355f804b3146104fc5780635c975abb146105255780636352211e146105505780636373a6b11461058d5780636817c76c146105b85761025c565b80633ccfd60b1461042b57806342842e0e1461044257806344fead9e1461046b57806349df728c146104965780634f6ccce7146104bf5761025c565b806318160ddd1161020357806318160ddd1461035857806323b872dd146103835780632f745c59146103ac578063333171bb146103e9578063386b7691146104005761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b314610306578063109695231461032f5761025c565b3661025c5761025a600c54346102559190613e2f565b61095d565b005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613ecc565b610d28565b6040516102959190613f14565b60405180910390f35b3480156102aa57600080fd5b506102b3610e72565b6040516102c09190613fc8565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190614016565b610f04565b6040516102fd9190614084565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906140cb565b610f89565b005b34801561033b57600080fd5b5061035660048036038101906103519190614240565b6110a2565b005b34801561036457600080fd5b5061036d61116d565b60405161037a9190614298565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a591906142b3565b611176565b005b3480156103b857600080fd5b506103d360048036038101906103ce91906140cb565b611186565b6040516103e09190614298565b60405180910390f35b3480156103f557600080fd5b506103fe611384565b005b34801561040c57600080fd5b5061041561142c565b6040516104229190614298565b60405180910390f35b34801561043757600080fd5b50610440611432565b005b34801561044e57600080fd5b50610469600480360381019061046491906142b3565b6114fd565b005b34801561047757600080fd5b5061048061151d565b60405161048d9190614298565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190614306565b611523565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190614016565b61169a565b6040516104f39190614298565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190614240565b6116ed565b005b34801561053157600080fd5b5061053a611775565b6040516105479190613f14565b60405180910390f35b34801561055c57600080fd5b5061057760048036038101906105729190614016565b611788565b6040516105849190614084565b60405180910390f35b34801561059957600080fd5b506105a261179e565b6040516105af9190613fc8565b60405180910390f35b3480156105c457600080fd5b506105cd61182c565b6040516105da9190614298565b60405180910390f35b3480156105ef57600080fd5b506105f8611832565b6040516106059190614298565b60405180910390f35b34801561061a57600080fd5b50610623611838565b6040516106309190613fc8565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b9190614333565b6118ca565b60405161066d919061438c565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190614306565b6118fd565b6040516106aa9190614298565b60405180910390f35b3480156106bf57600080fd5b506106c86119e6565b005b3480156106d657600080fd5b506106f160048036038101906106ec91906143cc565b611a6e565b005b3480156106ff57600080fd5b5061071a60048036038101906107159190614016565b611bb8565b005b34801561072857600080fd5b50610731611d0e565b60405161073e9190614084565b60405180910390f35b34801561075357600080fd5b5061075c611d38565b6040516107699190613fc8565b60405180910390f35b34801561077e57600080fd5b50610787611dca565b6040516107949190614470565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf91906144b7565b611ddd565b005b6107e060048036038101906107db9190614583565b611f5e565b005b3480156107ee57600080fd5b5061080960048036038101906108049190614698565b6123c7565b005b34801561081757600080fd5b50610832600480360381019061082d9190614306565b612423565b60405161083f9190614298565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a9190614016565b61243b565b60405161087c9190613fc8565b60405180910390f35b34801561089157600080fd5b5061089a6124e3565b6040516108a79190614298565b60405180910390f35b3480156108bc57600080fd5b506108c56124e9565b6040516108d29190614084565b60405180910390f35b3480156108e757600080fd5b5061090260048036038101906108fd9190614333565b61250d565b60405161090f9190613f14565b60405180910390f35b610932600480360381019061092d9190614016565b61095d565b005b34801561094057600080fd5b5061095b60048036038101906109569190614306565b6125a1565b005b60026003811115610971576109706143f9565b5b601060159054906101000a900460ff166003811115610993576109926143f9565b5b1480156109ad5750601060149054906101000a900460ff16155b6109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390614767565b60405180910390fd5b600d54816109f861116d565b610a029190614787565b1115610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90614829565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a919190614787565b1115610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990614895565b60405180910390fd5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff161415610b9b573481600c54610b5591906148b5565b1115610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d9061495b565b60405180910390fd5b610c50565b60007f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290508073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600c5486610bec91906148b5565b6040518463ffffffff1660e01b8152600401610c0a9392919061497b565b6020604051808303816000875af1158015610c29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4d91906149c7565b50505b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9b9190614787565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ce83382612699565b600d54610cf361116d565b1415610d25576003601060156101000a81548160ff02191690836003811115610d1f57610d1e6143f9565b5b02179055505b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610df357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e5b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e6b5750610e6a826126b7565b5b9050919050565b606060018054610e8190614a23565b80601f0160208091040260200160405190810160405280929190818152602001828054610ead90614a23565b8015610efa5780601f10610ecf57610100808354040283529160200191610efa565b820191906000526020600020905b815481529060010190602001808311610edd57829003601f168201915b5050505050905090565b6000610f0f82612721565b610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f459061495b565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f9482611788565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90614aa1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661102461272e565b73ffffffffffffffffffffffffffffffffffffffff16148061105357506110528161104d61272e565b61250d565b5b611092576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110899061495b565b60405180910390fd5b61109d838383612736565b505050565b6110aa61272e565b73ffffffffffffffffffffffffffffffffffffffff166110c8611d0e565b73ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590614b0d565b60405180910390fd5b600b60009054906101000a900460ff161561113857600080fd5b80600a908051906020019061114e929190613cea565b506001600b60006101000a81548160ff02191690831515021790555050565b60008054905090565b6111818383836127e8565b505050565b6000611191836118fd565b82106111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990614b79565b60405180910390fd5b60006111dc61116d565b905060008060005b83811015611342576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146112d657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561132e578684141561131f57819550505050505061137e565b838061132a90614b99565b9450505b50808061133a90614b99565b9150506111e4565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590614c2e565b60405180910390fd5b92915050565b61138c61272e565b73ffffffffffffffffffffffffffffffffffffffff166113aa611d0e565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790614b0d565b60405180910390fd5b601060149054906101000a900460ff1615601060146101000a81548160ff021916908315150217905550565b600d5481565b61143a61272e565b73ffffffffffffffffffffffffffffffffffffffff16611458611d0e565b73ffffffffffffffffffffffffffffffffffffffff16146114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590614b0d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156114f9573d6000803e3d6000fd5b5050565b611518838383604051806020016040528060008152506123c7565b505050565b600f5481565b61152b61272e565b73ffffffffffffffffffffffffffffffffffffffff16611549611d0e565b73ffffffffffffffffffffffffffffffffffffffff161461159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690614b0d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115f59190614084565b602060405180830381865afa158015611612573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116369190614c63565b6040518363ffffffff1660e01b8152600401611653929190614c90565b6020604051808303816000875af1158015611672573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169691906149c7565b5050565b60006116a461116d565b82106116e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dc90614d05565b60405180910390fd5b819050919050565b6116f561272e565b73ffffffffffffffffffffffffffffffffffffffff16611713611d0e565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090614b0d565b60405180910390fd5b61177281612da1565b50565b601060149054906101000a900460ff1681565b600061179382612dbb565b600001519050919050565b600a80546117ab90614a23565b80601f01602080910402602001604051908101604052809291908181526020018280546117d790614a23565b80156118245780601f106117f957610100808354040283529160200191611824565b820191906000526020600020905b81548152906001019060200180831161180757829003601f168201915b505050505081565b600c5481565b600e5481565b60606003805461184790614a23565b80601f016020809104026020016040519081016040528092919081815260200182805461187390614a23565b80156118c05780601f10611895576101008083540402835291602001916118c0565b820191906000526020600020905b8154815290600101906020018083116118a357829003601f168201915b5050505050905090565b600082826040516020016118df929190614d6d565b60405160208183030381529060405280519060200120905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196590614de5565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6119ee61272e565b73ffffffffffffffffffffffffffffffffffffffff16611a0c611d0e565b73ffffffffffffffffffffffffffffffffffffffff1614611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990614b0d565b60405180910390fd5b611a6c6000612fbe565b565b611a7661272e565b73ffffffffffffffffffffffffffffffffffffffff16611a94611d0e565b73ffffffffffffffffffffffffffffffffffffffff1614611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190614b0d565b60405180910390fd5b60006003811115611afe57611afd6143f9565b5b816003811115611b1157611b106143f9565b5b1415611b1c57600080fd5b60026003811115611b3057611b2f6143f9565b5b601060159054906101000a900460ff166003811115611b5257611b516143f9565b5b1415611b8b5760016003811115611b6c57611b6b6143f9565b5b816003811115611b7f57611b7e6143f9565b5b1415611b8a57600080fd5b5b80601060156101000a81548160ff02191690836003811115611bb057611baf6143f9565b5b021790555050565b611bc061272e565b73ffffffffffffffffffffffffffffffffffffffff16611bde611d0e565b73ffffffffffffffffffffffffffffffffffffffff1614611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90614b0d565b60405180910390fd5b60006003811115611c4857611c476143f9565b5b601060159054906101000a900460ff166003811115611c6a57611c696143f9565b5b14611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca190614767565b60405180910390fd5b600d5481611cb661116d565b611cc09190614787565b1115611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf890614829565b60405180910390fd5b611d0b3382612699565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611d4790614a23565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7390614a23565b8015611dc05780601f10611d9557610100808354040283529160200191611dc0565b820191906000526020600020905b815481529060010190602001808311611da357829003601f168201915b5050505050905090565b601060159054906101000a900460ff1681565b611de561272e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a9061495b565b60405180910390fd5b8060076000611e6061272e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f0d61272e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f529190613f14565b60405180910390a35050565b60016003811115611f7257611f716143f9565b5b601060159054906101000a900460ff166003811115611f9457611f936143f9565b5b148015611fae5750601060149054906101000a900460ff16155b611fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe490614767565b60405180910390fd5b600d5481611ff961116d565b6120039190614787565b1115612044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203b90614829565b60405180910390fd5b8361204f33306118ca565b1461208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614e51565b60405180910390fd5b6120dd8484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050613084565b61211c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211390614ebd565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461216a9190614787565b11156121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a290614895565b60405180910390fd5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff161415612274573481600e5461222e91906148b5565b111561226f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122669061495b565b60405180910390fd5b612329565b60007f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290508073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600e54866122c591906148b5565b6040518463ffffffff1660e01b81526004016122e39392919061497b565b6020604051808303816000875af1158015612302573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061232691906149c7565b50505b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123749190614787565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123c13382612699565b50505050565b6123d28484846127e8565b6123de848484846130f9565b61241d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241490614f29565b60405180910390fd5b50505050565b60116020528060005260406000206000915090505481565b606061244682612721565b612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c90614f29565b60405180910390fd5b60006003805461249490614a23565b9050116124b057604051806020016040528060008152506124dc565b60036124bb83613281565b6040516020016124cc929190615019565b6040516020818303038152906040525b9050919050565b60085481565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125a961272e565b73ffffffffffffffffffffffffffffffffffffffff166125c7611d0e565b73ffffffffffffffffffffffffffffffffffffffff161461261d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261490614b0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561268d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612684906150af565b60405180910390fd5b61269681612fbe565b50565b6126b38282604051806020016040528060008152506133e2565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006127f382612dbb565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661281a61272e565b73ffffffffffffffffffffffffffffffffffffffff161480612876575061283f61272e565b73ffffffffffffffffffffffffffffffffffffffff1661285e84610f04565b73ffffffffffffffffffffffffffffffffffffffff16145b806128925750612891826000015161288c61272e565b61250d565b5b9050806128d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cb9061495b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293d90614aa1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90614de5565b60405180910390fd5b6129c385858560016138c1565b6129d36000848460000151612736565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612a4191906150eb565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612ae5919061511f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612beb9190614787565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d3157612c6181612721565b15612d30576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d9986868660016138c7565b505050505050565b8060039080519060200190612db7929190613cea565b5050565b612dc3613d70565b612dcc82612721565b612e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e02906151b1565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000648310612e6f5760017f000000000000000000000000000000000000000000000000000000000000006484612e6291906151d1565b612e6c9190614787565b90505b60008390505b818110612f7d576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f6957809350505050612fb9565b508080612f7590615205565b915050612e75565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb090614aa1565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006130a182613093856138cd565b6138fd90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b600061311a8473ffffffffffffffffffffffffffffffffffffffff16613924565b15613274578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261314361272e565b8786866040518563ffffffff1660e01b81526004016131659493929190615284565b6020604051808303816000875af19250505080156131a157506040513d601f19601f8201168201806040525081019061319e91906152e5565b60015b613224573d80600081146131d1576040519150601f19603f3d011682016040523d82523d6000602084013e6131d6565b606091505b5060008151141561321c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321390614f29565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613279565b600190505b949350505050565b606060008214156132c9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133dd565b600082905060005b600082146132fb5780806132e490614b99565b915050600a826132f49190613e2f565b91506132d1565b60008167ffffffffffffffff81111561331757613316614115565b5b6040519080825280601f01601f1916602001820160405280156133495781602001600182028036833780820191505090505b5090505b600085146133d65760018261336291906151d1565b9150600a856133719190615312565b603061337d9190614787565b60f81b81838151811061339357613392615343565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133cf9190613e2f565b945061334d565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344f90614de5565b60405180910390fd5b61346181612721565b156134a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134989061495b565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000064831115613504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fb90614829565b60405180910390fd5b61351160008583866138c1565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161360e919061511f565b6fffffffffffffffffffffffffffffffff168152602001858360200151613635919061511f565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156138a457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461384460008884886130f9565b613883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387a90614f29565b60405180910390fd5b818061388e90614b99565b925050808061389c90614b99565b9150506137d3565b50806000819055506138b960008785886138c7565b505050505050565b50505050565b50505050565b6000816040516020016138e091906153df565b604051602081830303815290604052805190602001209050919050565b600080600061390c8585613937565b91509150613919816139ba565b819250505092915050565b600080823b905060008111915050919050565b6000806041835114156139795760008060006020860151925060408601519150606086015160001a905061396d87828585613b8f565b945094505050506139b3565b6040835114156139aa57600080602085015191506040850151905061399f868383613c9c565b9350935050506139b3565b60006002915091505b9250929050565b600060048111156139ce576139cd6143f9565b5b8160048111156139e1576139e06143f9565b5b14156139ec57613b8c565b60016004811115613a00576139ff6143f9565b5b816004811115613a1357613a126143f9565b5b1415613a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4b90615451565b60405180910390fd5b60026004811115613a6857613a676143f9565b5b816004811115613a7b57613a7a6143f9565b5b1415613abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab3906154bd565b60405180910390fd5b60036004811115613ad057613acf6143f9565b5b816004811115613ae357613ae26143f9565b5b1415613b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1b9061554f565b60405180910390fd5b600480811115613b3757613b366143f9565b5b816004811115613b4a57613b496143f9565b5b1415613b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b82906155e1565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613bca576000600391509150613c93565b601b8560ff1614158015613be25750601c8560ff1614155b15613bf4576000600491509150613c93565b600060018787878760405160008152602001604052604051613c19949392919061561d565b6020604051602081039080840390855afa158015613c3b573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613c8a57600060019250925050613c93565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613cdc87828885613b8f565b935093505050935093915050565b828054613cf690614a23565b90600052602060002090601f016020900481019282613d185760008555613d5f565b82601f10613d3157805160ff1916838001178555613d5f565b82800160010185558215613d5f579182015b82811115613d5e578251825591602001919060010190613d43565b5b509050613d6c9190613daa565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613dc3576000816000905550600101613dab565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e3a82613dc7565b9150613e4583613dc7565b925082613e5557613e54613dd1565b5b828204905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ea981613e74565b8114613eb457600080fd5b50565b600081359050613ec681613ea0565b92915050565b600060208284031215613ee257613ee1613e6a565b5b6000613ef084828501613eb7565b91505092915050565b60008115159050919050565b613f0e81613ef9565b82525050565b6000602082019050613f296000830184613f05565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f69578082015181840152602081019050613f4e565b83811115613f78576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f9a82613f2f565b613fa48185613f3a565b9350613fb4818560208601613f4b565b613fbd81613f7e565b840191505092915050565b60006020820190508181036000830152613fe28184613f8f565b905092915050565b613ff381613dc7565b8114613ffe57600080fd5b50565b60008135905061401081613fea565b92915050565b60006020828403121561402c5761402b613e6a565b5b600061403a84828501614001565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061406e82614043565b9050919050565b61407e81614063565b82525050565b60006020820190506140996000830184614075565b92915050565b6140a881614063565b81146140b357600080fd5b50565b6000813590506140c58161409f565b92915050565b600080604083850312156140e2576140e1613e6a565b5b60006140f0858286016140b6565b925050602061410185828601614001565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61414d82613f7e565b810181811067ffffffffffffffff8211171561416c5761416b614115565b5b80604052505050565b600061417f613e60565b905061418b8282614144565b919050565b600067ffffffffffffffff8211156141ab576141aa614115565b5b6141b482613f7e565b9050602081019050919050565b82818337600083830152505050565b60006141e36141de84614190565b614175565b9050828152602081018484840111156141ff576141fe614110565b5b61420a8482856141c1565b509392505050565b600082601f8301126142275761422661410b565b5b81356142378482602086016141d0565b91505092915050565b60006020828403121561425657614255613e6a565b5b600082013567ffffffffffffffff81111561427457614273613e6f565b5b61428084828501614212565b91505092915050565b61429281613dc7565b82525050565b60006020820190506142ad6000830184614289565b92915050565b6000806000606084860312156142cc576142cb613e6a565b5b60006142da868287016140b6565b93505060206142eb868287016140b6565b92505060406142fc86828701614001565b9150509250925092565b60006020828403121561431c5761431b613e6a565b5b600061432a848285016140b6565b91505092915050565b6000806040838503121561434a57614349613e6a565b5b6000614358858286016140b6565b9250506020614369858286016140b6565b9150509250929050565b6000819050919050565b61438681614373565b82525050565b60006020820190506143a1600083018461437d565b92915050565b600481106143b457600080fd5b50565b6000813590506143c6816143a7565b92915050565b6000602082840312156143e2576143e1613e6a565b5b60006143f0848285016143b7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60048110614439576144386143f9565b5b50565b600081905061444a82614428565b919050565b600061445a8261443c565b9050919050565b61446a8161444f565b82525050565b60006020820190506144856000830184614461565b92915050565b61449481613ef9565b811461449f57600080fd5b50565b6000813590506144b18161448b565b92915050565b600080604083850312156144ce576144cd613e6a565b5b60006144dc858286016140b6565b92505060206144ed858286016144a2565b9150509250929050565b61450081614373565b811461450b57600080fd5b50565b60008135905061451d816144f7565b92915050565b600080fd5b600080fd5b60008083601f8401126145435761454261410b565b5b8235905067ffffffffffffffff8111156145605761455f614523565b5b60208301915083600182028301111561457c5761457b614528565b5b9250929050565b6000806000806060858703121561459d5761459c613e6a565b5b60006145ab8782880161450e565b945050602085013567ffffffffffffffff8111156145cc576145cb613e6f565b5b6145d88782880161452d565b935093505060406145eb87828801614001565b91505092959194509250565b600067ffffffffffffffff82111561461257614611614115565b5b61461b82613f7e565b9050602081019050919050565b600061463b614636846145f7565b614175565b90508281526020810184848401111561465757614656614110565b5b6146628482856141c1565b509392505050565b600082601f83011261467f5761467e61410b565b5b813561468f848260208601614628565b91505092915050565b600080600080608085870312156146b2576146b1613e6a565b5b60006146c0878288016140b6565b94505060206146d1878288016140b6565b93505060406146e287828801614001565b925050606085013567ffffffffffffffff81111561470357614702613e6f565b5b61470f8782880161466a565b91505092959194509250565b7f7300000000000000000000000000000000000000000000000000000000000000600082015250565b6000614751600183613f3a565b915061475c8261471b565b602082019050919050565b6000602082019050818103600083015261478081614744565b9050919050565b600061479282613dc7565b915061479d83613dc7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147d2576147d1613e00565b5b828201905092915050565b7f6d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614813600183613f3a565b915061481e826147dd565b602082019050919050565b6000602082019050818103600083015261484281614806565b9050919050565b7f6c00000000000000000000000000000000000000000000000000000000000000600082015250565b600061487f600183613f3a565b915061488a82614849565b602082019050919050565b600060208201905081810360008301526148ae81614872565b9050919050565b60006148c082613dc7565b91506148cb83613dc7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561490457614903613e00565b5b828202905092915050565b7f6100000000000000000000000000000000000000000000000000000000000000600082015250565b6000614945600183613f3a565b91506149508261490f565b602082019050919050565b6000602082019050818103600083015261497481614938565b9050919050565b60006060820190506149906000830186614075565b61499d6020830185614075565b6149aa6040830184614289565b949350505050565b6000815190506149c18161448b565b92915050565b6000602082840312156149dd576149dc613e6a565b5b60006149eb848285016149b2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a3b57607f821691505b60208210811415614a4f57614a4e6149f4565b5b50919050565b7f6f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614a8b600183613f3a565b9150614a9682614a55565b602082019050919050565b60006020820190508181036000830152614aba81614a7e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614af7602083613f3a565b9150614b0282614ac1565b602082019050919050565b60006020820190508181036000830152614b2681614aea565b9050919050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b6000614b63600183613f3a565b9150614b6e82614b2d565b602082019050919050565b60006020820190508181036000830152614b9281614b56565b9050919050565b6000614ba482613dc7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bd757614bd6613e00565b5b600182019050919050565b7f7500000000000000000000000000000000000000000000000000000000000000600082015250565b6000614c18600183613f3a565b9150614c2382614be2565b602082019050919050565b60006020820190508181036000830152614c4781614c0b565b9050919050565b600081519050614c5d81613fea565b92915050565b600060208284031215614c7957614c78613e6a565b5b6000614c8784828501614c4e565b91505092915050565b6000604082019050614ca56000830185614075565b614cb26020830184614289565b9392505050565b7f6700000000000000000000000000000000000000000000000000000000000000600082015250565b6000614cef600183613f3a565b9150614cfa82614cb9565b602082019050919050565b60006020820190508181036000830152614d1e81614ce2565b9050919050565b60008160601b9050919050565b6000614d3d82614d25565b9050919050565b6000614d4f82614d32565b9050919050565b614d67614d6282614063565b614d44565b82525050565b6000614d798285614d56565b601482019150614d898284614d56565b6014820191508190509392505050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b6000614dcf600183613f3a565b9150614dda82614d99565b602082019050919050565b60006020820190508181036000830152614dfe81614dc2565b9050919050565b7f6900000000000000000000000000000000000000000000000000000000000000600082015250565b6000614e3b600183613f3a565b9150614e4682614e05565b602082019050919050565b60006020820190508181036000830152614e6a81614e2e565b9050919050565b7f6600000000000000000000000000000000000000000000000000000000000000600082015250565b6000614ea7600183613f3a565b9150614eb282614e71565b602082019050919050565b60006020820190508181036000830152614ed681614e9a565b9050919050565b7f7a00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614f13600183613f3a565b9150614f1e82614edd565b602082019050919050565b60006020820190508181036000830152614f4281614f06565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614f7681614a23565b614f808186614f49565b94506001821660008114614f9b5760018114614fac57614fdf565b60ff19831686528186019350614fdf565b614fb585614f54565b60005b83811015614fd757815481890152600182019150602081019050614fb8565b838801955050505b50505092915050565b6000614ff382613f2f565b614ffd8185614f49565b935061500d818560208601613f4b565b80840191505092915050565b60006150258285614f69565b91506150318284614fe8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615099602683613f3a565b91506150a48261503d565b604082019050919050565b600060208201905081810360008301526150c88161508c565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006150f6826150cf565b9150615101836150cf565b92508282101561511457615113613e00565b5b828203905092915050565b600061512a826150cf565b9150615135836150cf565b9250826fffffffffffffffffffffffffffffffff0382111561515a57615159613e00565b5b828201905092915050565b7f7400000000000000000000000000000000000000000000000000000000000000600082015250565b600061519b600183613f3a565b91506151a682615165565b602082019050919050565b600060208201905081810360008301526151ca8161518e565b9050919050565b60006151dc82613dc7565b91506151e783613dc7565b9250828210156151fa576151f9613e00565b5b828203905092915050565b600061521082613dc7565b9150600082141561522457615223613e00565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b60006152568261522f565b615260818561523a565b9350615270818560208601613f4b565b61527981613f7e565b840191505092915050565b60006080820190506152996000830187614075565b6152a66020830186614075565b6152b36040830185614289565b81810360608301526152c5818461524b565b905095945050505050565b6000815190506152df81613ea0565b92915050565b6000602082840312156152fb576152fa613e6a565b5b6000615309848285016152d0565b91505092915050565b600061531d82613dc7565b915061532883613dc7565b92508261533857615337613dd1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006153a8601c83614f49565b91506153b382615372565b601c82019050919050565b6000819050919050565b6153d96153d482614373565b6153be565b82525050565b60006153ea8261539b565b91506153f682846153c8565b60208201915081905092915050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b600061543b601883613f3a565b915061544682615405565b602082019050919050565b6000602082019050818103600083015261546a8161542e565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006154a7601f83613f3a565b91506154b282615471565b602082019050919050565b600060208201905081810360008301526154d68161549a565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615539602283613f3a565b9150615544826154dd565b604082019050919050565b600060208201905081810360008301526155688161552c565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006155cb602283613f3a565b91506155d68261556f565b604082019050919050565b600060208201905081810360008301526155fa816155be565b9050919050565b600060ff82169050919050565b61561781615601565b82525050565b6000608082019050615632600083018761437d565b61563f602083018661560e565b61564c604083018561437d565b615659606083018461437d565b9594505050505056fea2646970667358221220542c800dd2077fec5159a677603ae35322432c615463e48b33cf91d1672e3ca364736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000e9a347e4bfbe5a219f3497b1ca3ac8568a99ed6c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000014426f7265642041706520596163687420436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000044241594300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Bored Ape Yacht Club
Arg [1] : _symbol (string): BAYC
Arg [2] : _maxPossibleSupply (uint256): 10000
Arg [3] : _mintPrice (uint256): 1000000000000000
Arg [4] : _allowListMintPrice (uint256): 0
Arg [5] : _maxAllowedMints (uint256): 100
Arg [6] : _signerAddress (address): 0xe9A347e4bFbe5A219F3497B1CA3Ac8568a99ED6c
Arg [7] : _currency (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [8] : _wrappedNativeCoinAddress (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [3] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [6] : 000000000000000000000000e9a347e4bfbe5a219f3497b1ca3ac8568a99ed6c
Arg [7] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [8] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [10] : 426f7265642041706520596163687420436c7562000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [12] : 4241594300000000000000000000000000000000000000000000000000000000


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.