ETH Price: $3,328.67 (-1.64%)
Gas: 18 Gwei

Token

Boys Club Official (BCO)
 

Overview

Max Total Supply

1,405 BCO

Holders

378

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
thecunninglinguist.eth
Balance
2 BCO
0x0dd43c4672ed77d54a6a2fa4f0878164bfb0980a
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:
BoysClubOfficial

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 13: BoysClubOfficial.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "ERC721A.sol";
import "Ownable.sol";
import "MerkleProof.sol";


contract BoysClubOfficial is ERC721A, Ownable {
    using Strings for uint256;


    string public baseURI;

    bool public paused = false;

    uint256 MAX_SUPPLY = 2222;
    uint256 MAX_PER_WALLET = 20;

    uint256 public whitelistCost = 0.012 ether;
    uint256 public publicSaleCost = 0.02 ether;

    bytes32 public whitelistSigner;

    mapping(address => uint256) public whitelist_claimed;
    mapping(address => uint256) public publicmint_claimed;



    constructor(string memory _initBaseURI) ERC721A("Boys Club Official", "BCO") {
    
    setBaseURI(_initBaseURI);

    }

    function mint(uint256 quantity) public payable  {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");

        if (msg.sender != owner()) {
            require(!paused, "the contract is paused");
            require(balanceOf(msg.sender) + quantity <= MAX_PER_WALLET,"Per wallet limit reached");
            require(msg.value >= (publicSaleCost * quantity), "Not enough ether sent");          
           
        }
        _safeMint(msg.sender, quantity);
         publicmint_claimed[msg.sender] =  publicmint_claimed[msg.sender] + quantity;

    }

   
    // whitelist minting 

   function whitelistMint(bytes32[] calldata  _proof, uint256 quantity) payable public{

   require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
   require(balanceOf(msg.sender) + quantity <= MAX_PER_WALLET,"Per wallet limit reached");


   require(msg.value >= whitelistCost * quantity, "insufficient funds");

   bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
   require(MerkleProof.verify(_proof,leaf,whitelistSigner),"Invalid Proof");

    
   _safeMint(msg.sender, quantity);
   whitelist_claimed[msg.sender] =  whitelist_claimed[msg.sender] + quantity;     

    
  
  }


    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

      
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : '';
    }



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


    //only owner      
    
  
    function setWhitelistSigner(bytes32 newWhitelistSigner) external onlyOwner {
        whitelistSigner = newWhitelistSigner;
    }

   
    function withdraw() public payable onlyOwner {
    (bool community, ) = payable(0xC729B09919125C89da72F8E3c1302E5c9c0910d6).call{value: address(this).balance* 25/100}("");
    require(community);

    (bool main, ) = payable(owner()).call{value: address(this).balance}("");
    require(main);

    }

    function setMaxPerWallet(uint256 _maxperwallet) public onlyOwner {
        MAX_PER_WALLET = _maxperwallet;
    }

    function setWhitelistCost(uint256 _whitelistCost) public onlyOwner {
        whitelistCost = _whitelistCost;
    }
    
    function setPublicSaleCost(uint256 _publicSaleCost) public onlyOwner {
        publicSaleCost = _publicSaleCost;
    }

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "IERC165.sol";

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

File 5 of 13: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import 'IERC721.sol';
import 'IERC721Receiver.sol';
import 'IERC721Metadata.sol';
import 'IERC721Enumerable.sol';
import 'Address.sol';
import 'Context.sol';
import 'Strings.sol';
import 'ERC165.sol';

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

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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * 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 tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @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) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 TransferToNonERC721ReceiverImplementer();
                } 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.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

pragma solidity ^0.8.0;

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

File 7 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "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 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "IERC721.sol";

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

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

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

File 9 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "IERC721.sol";

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

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

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

File 10 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 11 of 13: MerkleProof.sol
// contracts/MerkleProofVerify.sol
// SPDX-License-Identifier: MIT
// based upon https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.1/contracts/mocks/MerkleProofWrapper.sol

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle trees (hash trees),
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] calldata proof, bytes32 leaf, bytes32 root) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}


/*

pragma solidity ^0.8.0;



contract MerkleProofVerify {
    function verify(bytes32[] calldata proof, bytes32 root)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        return MerkleProof.verify(proof, root, leaf);
    }
}
*/

File 12 of 13: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicmint_claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxperwallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistCost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newWhitelistSigner","type":"bytes32"}],"name":"setWhitelistSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSigner","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist_claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600960006101000a81548160ff0219169083151502179055506108ae600a556014600b55662aa1efb94e0000600c5566470de4df820000600d553480156200004d57600080fd5b5060405162004a5838038062004a5883398181016040528101906200007391906200041c565b6040518060400160405280601281526020017f426f797320436c7562204f6666696369616c00000000000000000000000000008152506040518060400160405280600381526020017f42434f00000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000f7929190620002ee565b50806002908051906020019062000110929190620002ee565b50505062000133620001276200014b60201b60201c565b6200015360201b60201c565b62000144816200021960201b60201c565b5062000674565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002296200014b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200024f620002c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029f9062000494565b60405180910390fd5b8060089080519060200190620002c0929190620002ee565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002fc906200055c565b90600052602060002090601f0160209004810192826200032057600085556200036c565b82601f106200033b57805160ff19168380011785556200036c565b828001600101855582156200036c579182015b828111156200036b5782518255916020019190600101906200034e565b5b5090506200037b91906200037f565b5090565b5b808211156200039a57600081600090555060010162000380565b5090565b6000620003b5620003af84620004df565b620004b6565b905082815260208101848484011115620003d457620003d36200062b565b5b620003e184828562000526565b509392505050565b600082601f83011262000401576200040062000626565b5b8151620004138482602086016200039e565b91505092915050565b60006020828403121562000435576200043462000635565b5b600082015167ffffffffffffffff81111562000456576200045562000630565b5b6200046484828501620003e9565b91505092915050565b60006200047c60208362000515565b915062000489826200064b565b602082019050919050565b60006020820190508181036000830152620004af816200046d565b9050919050565b6000620004c2620004d5565b9050620004d0828262000592565b919050565b6000604051905090565b600067ffffffffffffffff821115620004fd57620004fc620005f7565b5b62000508826200063a565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200054657808201518184015260208101905062000529565b8381111562000556576000848401525b50505050565b600060028204905060018216806200057557607f821691505b602082108114156200058c576200058b620005c8565b5b50919050565b6200059d826200063a565b810181811067ffffffffffffffff82111715620005bf57620005be620005f7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6143d480620006846000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063b88d4fde116100a0578063e7b99ec71161006f578063e7b99ec71461073a578063e985e9c514610765578063ef81b4d4146107a2578063f0d23192146107cd578063f2fde38b1461080a57610204565b8063b88d4fde14610682578063c87b56dd146106ab578063d49479eb146106e8578063e268e4d31461071157610204565b80638da5cb5b116100e75780638da5cb5b146105be5780638dbb7c06146105e957806395d89b4114610612578063a0712d681461063d578063a22cb4651461065957610204565b80636352211e146105025780636c0360eb1461053f57806370a082311461056a578063715018a6146105a757610204565b80632904e6d91161019b57806342842e0e1161016a57806342842e0e1461041d578063453afb0f146104465780634f6ccce71461047157806355f804b3146104ae5780635c975abb146104d757610204565b80632904e6d91461037d5780632f745c591461039957806335ce5395146103d65780633ccfd60b1461041357610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b578063253894211461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613681565b610833565b60405161023d9190613b2d565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190613627565b61097d565b005b34801561027b57600080fd5b50610284610a16565b6040516102919190613b63565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613724565b610aa8565b6040516102ce9190613ac6565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613587565b610b24565b005b34801561030c57600080fd5b50610315610c2f565b6040516103229190613c85565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613471565b610c84565b005b34801561036057600080fd5b5061037b60048036038101906103769190613654565b610c94565b005b610397600480360381019061039291906135c7565b610d1a565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613587565b610f2f565b6040516103cd9190613c85565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f89190613404565b611136565b60405161040a9190613c85565b60405180910390f35b61041b61114e565b005b34801561042957600080fd5b50610444600480360381019061043f9190613471565b6112ed565b005b34801561045257600080fd5b5061045b61130d565b6040516104689190613c85565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613724565b611313565b6040516104a59190613c85565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d091906136db565b611484565b005b3480156104e357600080fd5b506104ec61151a565b6040516104f99190613b2d565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190613724565b61152d565b6040516105369190613ac6565b60405180910390f35b34801561054b57600080fd5b50610554611543565b6040516105619190613b63565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190613404565b6115d1565b60405161059e9190613c85565b60405180910390f35b3480156105b357600080fd5b506105bc6116a1565b005b3480156105ca57600080fd5b506105d3611729565b6040516105e09190613ac6565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b9190613724565b611753565b005b34801561061e57600080fd5b506106276117d9565b6040516106349190613b63565b60405180910390f35b61065760048036038101906106529190613724565b61186b565b005b34801561066557600080fd5b50610680600480360381019061067b9190613547565b611a90565b005b34801561068e57600080fd5b506106a960048036038101906106a491906134c4565b611c08565b005b3480156106b757600080fd5b506106d260048036038101906106cd9190613724565b611c5b565b6040516106df9190613b63565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190613724565b611cfb565b005b34801561071d57600080fd5b5061073860048036038101906107339190613724565b611d81565b005b34801561074657600080fd5b5061074f611e07565b60405161075c9190613c85565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613431565b611e0d565b6040516107999190613b2d565b60405180910390f35b3480156107ae57600080fd5b506107b7611ea1565b6040516107c49190613b48565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190613404565b611ea7565b6040516108019190613c85565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190613404565b611ebf565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610976575061097582611fb7565b5b9050919050565b610985612021565b73ffffffffffffffffffffffffffffffffffffffff166109a3611729565b73ffffffffffffffffffffffffffffffffffffffff16146109f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f090613bc5565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b606060018054610a2590613f5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5190613f5f565b8015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b820191906000526020600020905b815481529060010190602001808311610a8157829003601f168201915b5050505050905090565b6000610ab382612029565b610ae9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2f8261152d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b97576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb6612021565b73ffffffffffffffffffffffffffffffffffffffff1614158015610be85750610be681610be1612021565b611e0d565b155b15610c1f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c2a838383612091565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610c8f838383612143565b505050565b610c9c612021565b73ffffffffffffffffffffffffffffffffffffffff16610cba611729565b73ffffffffffffffffffffffffffffffffffffffff1614610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790613bc5565b60405180910390fd5b80600e8190555050565b600a5481610d26610c2f565b610d309190613d8a565b1115610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890613ba5565b60405180910390fd5b600b5481610d7e336115d1565b610d889190613d8a565b1115610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090613c05565b60405180910390fd5b80600c54610dd79190613e11565b341015610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090613c25565b60405180910390fd5b600033604051602001610e2c9190613a3b565b604051602081830303815290604052805190602001209050610e52848483600e54612660565b610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8890613c65565b60405180910390fd5b610e9b3383612718565b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ee69190613d8a565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b6000610f3a836115d1565b8210610f72576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b8381101561112a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115611089575061111d565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110c957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561111b5786841415611112578195505050505050611130565b83806001019450505b505b8080600101915050610fac565b50600080fd5b92915050565b600f6020528060005260406000206000915090505481565b611156612021565b73ffffffffffffffffffffffffffffffffffffffff16611174611729565b73ffffffffffffffffffffffffffffffffffffffff16146111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190613bc5565b60405180910390fd5b600073c729b09919125c89da72f8e3c1302e5c9c0910d673ffffffffffffffffffffffffffffffffffffffff1660646019476112069190613e11565b6112109190613de0565b60405161121c90613ab1565b60006040518083038185875af1925050503d8060008114611259576040519150601f19603f3d011682016040523d82523d6000602084013e61125e565b606091505b505090508061126c57600080fd5b6000611276611729565b73ffffffffffffffffffffffffffffffffffffffff164760405161129990613ab1565b60006040518083038185875af1925050503d80600081146112d6576040519150601f19603f3d011682016040523d82523d6000602084013e6112db565b606091505b50509050806112e957600080fd5b5050565b61130883838360405180602001604052806000815250611c08565b505050565b600d5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561144c576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161143e5785831415611435578194505050505061147f565b82806001019350505b50808060010191505061134b565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61148c612021565b73ffffffffffffffffffffffffffffffffffffffff166114aa611729565b73ffffffffffffffffffffffffffffffffffffffff1614611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f790613bc5565b60405180910390fd5b806008908051906020019061151692919061316a565b5050565b600960009054906101000a900460ff1681565b600061153882612736565b600001519050919050565b6008805461155090613f5f565b80601f016020809104026020016040519081016040528092919081815260200182805461157c90613f5f565b80156115c95780601f1061159e576101008083540402835291602001916115c9565b820191906000526020600020905b8154815290600101906020018083116115ac57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611639576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6116a9612021565b73ffffffffffffffffffffffffffffffffffffffff166116c7611729565b73ffffffffffffffffffffffffffffffffffffffff161461171d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171490613bc5565b60405180910390fd5b61172760006129de565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61175b612021565b73ffffffffffffffffffffffffffffffffffffffff16611779611729565b73ffffffffffffffffffffffffffffffffffffffff16146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690613bc5565b60405180910390fd5b80600d8190555050565b6060600280546117e890613f5f565b80601f016020809104026020016040519081016040528092919081815260200182805461181490613f5f565b80156118615780601f1061183657610100808354040283529160200191611861565b820191906000526020600020905b81548152906001019060200180831161184457829003601f168201915b5050505050905090565b600a5481611877610c2f565b6118819190613d8a565b11156118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b990613ba5565b60405180910390fd5b6118ca611729565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119f557600960009054906101000a900460ff161561194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390613be5565b60405180910390fd5b600b5481611959336115d1565b6119639190613d8a565b11156119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b90613c05565b60405180910390fd5b80600d546119b29190613e11565b3410156119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613c45565b60405180910390fd5b5b6119ff3382612718565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a4a9190613d8a565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b611a98612021565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611b0a612021565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bb7612021565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bfc9190613b2d565b60405180910390a35050565b611c13848484612143565b611c1f84848484612aa4565b611c55576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611c6682612029565b611c9c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060088054611cab90613f5f565b90501415611cc85760405180602001604052806000815250611cf4565b6008611cd383612c32565b604051602001611ce4929190613a82565b6040516020818303038152906040525b9050919050565b611d03612021565b73ffffffffffffffffffffffffffffffffffffffff16611d21611729565b73ffffffffffffffffffffffffffffffffffffffff1614611d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6e90613bc5565b60405180910390fd5b80600c8190555050565b611d89612021565b73ffffffffffffffffffffffffffffffffffffffff16611da7611729565b73ffffffffffffffffffffffffffffffffffffffff1614611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490613bc5565b60405180910390fd5b80600b8190555050565b600c5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b60106020528060005260406000206000915090505481565b611ec7612021565b73ffffffffffffffffffffffffffffffffffffffff16611ee5611729565b73ffffffffffffffffffffffffffffffffffffffff1614611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3290613bc5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290613b85565b60405180910390fd5b611fb4816129de565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168210801561208a575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061214e82612736565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612175612021565b73ffffffffffffffffffffffffffffffffffffffff1614806121a857506121a782600001516121a2612021565b611e0d565b5b806121ed57506121b6612021565b73ffffffffffffffffffffffffffffffffffffffff166121d584610aa8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612226576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461228f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122f6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123038585856001612d93565b6123136000848460000151612091565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125f05760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156125ef5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126598585856001612d99565b5050505050565b60008083905060005b86869050811015612709576000878783818110612689576126886140f7565b5b9050602002013590508083116126c95782816040516020016126ac929190613a56565b6040516020818303038152906040528051906020012092506126f5565b80836040516020016126dc929190613a56565b6040516020818303038152906040528051906020012092505b50808061270190613fc2565b915050612669565b50828114915050949350505050565b612732828260405180602001604052806000815250612d9f565b5050565b61273e6131f0565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156129a7576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516129a557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128895780925050506129d9565b5b6001156129a457818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461299f5780925050506129d9565b61288a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612ac58473ffffffffffffffffffffffffffffffffffffffff16612db1565b15612c25578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aee612021565b8786866040518563ffffffff1660e01b8152600401612b109493929190613ae1565b602060405180830381600087803b158015612b2a57600080fd5b505af1925050508015612b5b57506040513d601f19601f82011682018060405250810190612b5891906136ae565b60015b612bd5573d8060008114612b8b576040519150601f19603f3d011682016040523d82523d6000602084013e612b90565b606091505b50600081511415612bcd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c2a565b600190505b949350505050565b60606000821415612c7a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d8e565b600082905060005b60008214612cac578080612c9590613fc2565b915050600a82612ca59190613de0565b9150612c82565b60008167ffffffffffffffff811115612cc857612cc7614126565b5b6040519080825280601f01601f191660200182016040528015612cfa5781602001600182028036833780820191505090505b5090505b60008514612d8757600182612d139190613e6b565b9150600a85612d229190614039565b6030612d2e9190613d8a565b60f81b818381518110612d4457612d436140f7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d809190613de0565b9450612cfe565b8093505050505b919050565b50505050565b50505050565b612dac8383836001612dd4565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e6f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612eaa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612eb76000868387612d93565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561311c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156130d057506130ce6000888488612aa4565b155b15613107576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613055565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506131636000868387612d99565b5050505050565b82805461317690613f5f565b90600052602060002090601f01602090048101928261319857600085556131df565b82601f106131b157805160ff19168380011785556131df565b828001600101855582156131df579182015b828111156131de5782518255916020019190600101906131c3565b5b5090506131ec9190613233565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561324c576000816000905550600101613234565b5090565b600061326361325e84613cc5565b613ca0565b90508281526020810184848401111561327f5761327e614164565b5b61328a848285613f1d565b509392505050565b60006132a56132a084613cf6565b613ca0565b9050828152602081018484840111156132c1576132c0614164565b5b6132cc848285613f1d565b509392505050565b6000813590506132e38161432b565b92915050565b60008083601f8401126132ff576132fe61415a565b5b8235905067ffffffffffffffff81111561331c5761331b614155565b5b6020830191508360208202830111156133385761333761415f565b5b9250929050565b60008135905061334e81614342565b92915050565b60008135905061336381614359565b92915050565b60008135905061337881614370565b92915050565b60008151905061338d81614370565b92915050565b600082601f8301126133a8576133a761415a565b5b81356133b8848260208601613250565b91505092915050565b600082601f8301126133d6576133d561415a565b5b81356133e6848260208601613292565b91505092915050565b6000813590506133fe81614387565b92915050565b60006020828403121561341a5761341961416e565b5b6000613428848285016132d4565b91505092915050565b600080604083850312156134485761344761416e565b5b6000613456858286016132d4565b9250506020613467858286016132d4565b9150509250929050565b60008060006060848603121561348a5761348961416e565b5b6000613498868287016132d4565b93505060206134a9868287016132d4565b92505060406134ba868287016133ef565b9150509250925092565b600080600080608085870312156134de576134dd61416e565b5b60006134ec878288016132d4565b94505060206134fd878288016132d4565b935050604061350e878288016133ef565b925050606085013567ffffffffffffffff81111561352f5761352e614169565b5b61353b87828801613393565b91505092959194509250565b6000806040838503121561355e5761355d61416e565b5b600061356c858286016132d4565b925050602061357d8582860161333f565b9150509250929050565b6000806040838503121561359e5761359d61416e565b5b60006135ac858286016132d4565b92505060206135bd858286016133ef565b9150509250929050565b6000806000604084860312156135e0576135df61416e565b5b600084013567ffffffffffffffff8111156135fe576135fd614169565b5b61360a868287016132e9565b9350935050602061361d868287016133ef565b9150509250925092565b60006020828403121561363d5761363c61416e565b5b600061364b8482850161333f565b91505092915050565b60006020828403121561366a5761366961416e565b5b600061367884828501613354565b91505092915050565b6000602082840312156136975761369661416e565b5b60006136a584828501613369565b91505092915050565b6000602082840312156136c4576136c361416e565b5b60006136d28482850161337e565b91505092915050565b6000602082840312156136f1576136f061416e565b5b600082013567ffffffffffffffff81111561370f5761370e614169565b5b61371b848285016133c1565b91505092915050565b60006020828403121561373a5761373961416e565b5b6000613748848285016133ef565b91505092915050565b61375a81613e9f565b82525050565b61377161376c82613e9f565b61400b565b82525050565b61378081613eb1565b82525050565b61378f81613ebd565b82525050565b6137a66137a182613ebd565b61401d565b82525050565b60006137b782613d3c565b6137c18185613d52565b93506137d1818560208601613f2c565b6137da81614173565b840191505092915050565b60006137f082613d47565b6137fa8185613d6e565b935061380a818560208601613f2c565b61381381614173565b840191505092915050565b600061382982613d47565b6138338185613d7f565b9350613843818560208601613f2c565b80840191505092915050565b6000815461385c81613f5f565b6138668186613d7f565b945060018216600081146138815760018114613892576138c5565b60ff198316865281860193506138c5565b61389b85613d27565b60005b838110156138bd5781548189015260018201915060208101905061389e565b838801955050505b50505092915050565b60006138db602683613d6e565b91506138e682614191565b604082019050919050565b60006138fe601683613d6e565b9150613909826141e0565b602082019050919050565b6000613921600583613d7f565b915061392c82614209565b600582019050919050565b6000613944602083613d6e565b915061394f82614232565b602082019050919050565b6000613967601683613d6e565b91506139728261425b565b602082019050919050565b600061398a601883613d6e565b915061399582614284565b602082019050919050565b60006139ad600083613d63565b91506139b8826142ad565b600082019050919050565b60006139d0601283613d6e565b91506139db826142b0565b602082019050919050565b60006139f3601583613d6e565b91506139fe826142d9565b602082019050919050565b6000613a16600d83613d6e565b9150613a2182614302565b602082019050919050565b613a3581613f13565b82525050565b6000613a478284613760565b60148201915081905092915050565b6000613a628285613795565b602082019150613a728284613795565b6020820191508190509392505050565b6000613a8e828561384f565b9150613a9a828461381e565b9150613aa582613914565b91508190509392505050565b6000613abc826139a0565b9150819050919050565b6000602082019050613adb6000830184613751565b92915050565b6000608082019050613af66000830187613751565b613b036020830186613751565b613b106040830185613a2c565b8181036060830152613b2281846137ac565b905095945050505050565b6000602082019050613b426000830184613777565b92915050565b6000602082019050613b5d6000830184613786565b92915050565b60006020820190508181036000830152613b7d81846137e5565b905092915050565b60006020820190508181036000830152613b9e816138ce565b9050919050565b60006020820190508181036000830152613bbe816138f1565b9050919050565b60006020820190508181036000830152613bde81613937565b9050919050565b60006020820190508181036000830152613bfe8161395a565b9050919050565b60006020820190508181036000830152613c1e8161397d565b9050919050565b60006020820190508181036000830152613c3e816139c3565b9050919050565b60006020820190508181036000830152613c5e816139e6565b9050919050565b60006020820190508181036000830152613c7e81613a09565b9050919050565b6000602082019050613c9a6000830184613a2c565b92915050565b6000613caa613cbb565b9050613cb68282613f91565b919050565b6000604051905090565b600067ffffffffffffffff821115613ce057613cdf614126565b5b613ce982614173565b9050602081019050919050565b600067ffffffffffffffff821115613d1157613d10614126565b5b613d1a82614173565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9582613f13565b9150613da083613f13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dd557613dd461406a565b5b828201905092915050565b6000613deb82613f13565b9150613df683613f13565b925082613e0657613e05614099565b5b828204905092915050565b6000613e1c82613f13565b9150613e2783613f13565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6057613e5f61406a565b5b828202905092915050565b6000613e7682613f13565b9150613e8183613f13565b925082821015613e9457613e9361406a565b5b828203905092915050565b6000613eaa82613ef3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f4a578082015181840152602081019050613f2f565b83811115613f59576000848401525b50505050565b60006002820490506001821680613f7757607f821691505b60208210811415613f8b57613f8a6140c8565b5b50919050565b613f9a82614173565b810181811067ffffffffffffffff82111715613fb957613fb8614126565b5b80604052505050565b6000613fcd82613f13565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561400057613fff61406a565b5b600182019050919050565b600061401682614027565b9050919050565b6000819050919050565b600061403282614184565b9050919050565b600061404482613f13565b915061404f83613f13565b92508261405f5761405e614099565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f5065722077616c6c6574206c696d697420726561636865640000000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b61433481613e9f565b811461433f57600080fd5b50565b61434b81613eb1565b811461435657600080fd5b50565b61436281613ebd565b811461436d57600080fd5b50565b61437981613ec7565b811461438457600080fd5b50565b61439081613f13565b811461439b57600080fd5b5056fea2646970667358221220207ca2b9e89aa3b8ce88ad250131e78cbd9fe6a59259c11bb196309512bc624b64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e54796d50644150576e5146644b7564764e6b734770546e50526e41425a4c48504e325476566974646e79792f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063b88d4fde116100a0578063e7b99ec71161006f578063e7b99ec71461073a578063e985e9c514610765578063ef81b4d4146107a2578063f0d23192146107cd578063f2fde38b1461080a57610204565b8063b88d4fde14610682578063c87b56dd146106ab578063d49479eb146106e8578063e268e4d31461071157610204565b80638da5cb5b116100e75780638da5cb5b146105be5780638dbb7c06146105e957806395d89b4114610612578063a0712d681461063d578063a22cb4651461065957610204565b80636352211e146105025780636c0360eb1461053f57806370a082311461056a578063715018a6146105a757610204565b80632904e6d91161019b57806342842e0e1161016a57806342842e0e1461041d578063453afb0f146104465780634f6ccce71461047157806355f804b3146104ae5780635c975abb146104d757610204565b80632904e6d91461037d5780632f745c591461039957806335ce5395146103d65780633ccfd60b1461041357610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b578063253894211461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613681565b610833565b60405161023d9190613b2d565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190613627565b61097d565b005b34801561027b57600080fd5b50610284610a16565b6040516102919190613b63565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613724565b610aa8565b6040516102ce9190613ac6565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613587565b610b24565b005b34801561030c57600080fd5b50610315610c2f565b6040516103229190613c85565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613471565b610c84565b005b34801561036057600080fd5b5061037b60048036038101906103769190613654565b610c94565b005b610397600480360381019061039291906135c7565b610d1a565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613587565b610f2f565b6040516103cd9190613c85565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f89190613404565b611136565b60405161040a9190613c85565b60405180910390f35b61041b61114e565b005b34801561042957600080fd5b50610444600480360381019061043f9190613471565b6112ed565b005b34801561045257600080fd5b5061045b61130d565b6040516104689190613c85565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613724565b611313565b6040516104a59190613c85565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d091906136db565b611484565b005b3480156104e357600080fd5b506104ec61151a565b6040516104f99190613b2d565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190613724565b61152d565b6040516105369190613ac6565b60405180910390f35b34801561054b57600080fd5b50610554611543565b6040516105619190613b63565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190613404565b6115d1565b60405161059e9190613c85565b60405180910390f35b3480156105b357600080fd5b506105bc6116a1565b005b3480156105ca57600080fd5b506105d3611729565b6040516105e09190613ac6565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b9190613724565b611753565b005b34801561061e57600080fd5b506106276117d9565b6040516106349190613b63565b60405180910390f35b61065760048036038101906106529190613724565b61186b565b005b34801561066557600080fd5b50610680600480360381019061067b9190613547565b611a90565b005b34801561068e57600080fd5b506106a960048036038101906106a491906134c4565b611c08565b005b3480156106b757600080fd5b506106d260048036038101906106cd9190613724565b611c5b565b6040516106df9190613b63565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190613724565b611cfb565b005b34801561071d57600080fd5b5061073860048036038101906107339190613724565b611d81565b005b34801561074657600080fd5b5061074f611e07565b60405161075c9190613c85565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613431565b611e0d565b6040516107999190613b2d565b60405180910390f35b3480156107ae57600080fd5b506107b7611ea1565b6040516107c49190613b48565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190613404565b611ea7565b6040516108019190613c85565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190613404565b611ebf565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610976575061097582611fb7565b5b9050919050565b610985612021565b73ffffffffffffffffffffffffffffffffffffffff166109a3611729565b73ffffffffffffffffffffffffffffffffffffffff16146109f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f090613bc5565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b606060018054610a2590613f5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5190613f5f565b8015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b820191906000526020600020905b815481529060010190602001808311610a8157829003601f168201915b5050505050905090565b6000610ab382612029565b610ae9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2f8261152d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b97576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb6612021565b73ffffffffffffffffffffffffffffffffffffffff1614158015610be85750610be681610be1612021565b611e0d565b155b15610c1f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c2a838383612091565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610c8f838383612143565b505050565b610c9c612021565b73ffffffffffffffffffffffffffffffffffffffff16610cba611729565b73ffffffffffffffffffffffffffffffffffffffff1614610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790613bc5565b60405180910390fd5b80600e8190555050565b600a5481610d26610c2f565b610d309190613d8a565b1115610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890613ba5565b60405180910390fd5b600b5481610d7e336115d1565b610d889190613d8a565b1115610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090613c05565b60405180910390fd5b80600c54610dd79190613e11565b341015610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090613c25565b60405180910390fd5b600033604051602001610e2c9190613a3b565b604051602081830303815290604052805190602001209050610e52848483600e54612660565b610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8890613c65565b60405180910390fd5b610e9b3383612718565b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ee69190613d8a565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b6000610f3a836115d1565b8210610f72576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b8381101561112a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115611089575061111d565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110c957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561111b5786841415611112578195505050505050611130565b83806001019450505b505b8080600101915050610fac565b50600080fd5b92915050565b600f6020528060005260406000206000915090505481565b611156612021565b73ffffffffffffffffffffffffffffffffffffffff16611174611729565b73ffffffffffffffffffffffffffffffffffffffff16146111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190613bc5565b60405180910390fd5b600073c729b09919125c89da72f8e3c1302e5c9c0910d673ffffffffffffffffffffffffffffffffffffffff1660646019476112069190613e11565b6112109190613de0565b60405161121c90613ab1565b60006040518083038185875af1925050503d8060008114611259576040519150601f19603f3d011682016040523d82523d6000602084013e61125e565b606091505b505090508061126c57600080fd5b6000611276611729565b73ffffffffffffffffffffffffffffffffffffffff164760405161129990613ab1565b60006040518083038185875af1925050503d80600081146112d6576040519150601f19603f3d011682016040523d82523d6000602084013e6112db565b606091505b50509050806112e957600080fd5b5050565b61130883838360405180602001604052806000815250611c08565b505050565b600d5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561144c576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161143e5785831415611435578194505050505061147f565b82806001019350505b50808060010191505061134b565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61148c612021565b73ffffffffffffffffffffffffffffffffffffffff166114aa611729565b73ffffffffffffffffffffffffffffffffffffffff1614611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f790613bc5565b60405180910390fd5b806008908051906020019061151692919061316a565b5050565b600960009054906101000a900460ff1681565b600061153882612736565b600001519050919050565b6008805461155090613f5f565b80601f016020809104026020016040519081016040528092919081815260200182805461157c90613f5f565b80156115c95780601f1061159e576101008083540402835291602001916115c9565b820191906000526020600020905b8154815290600101906020018083116115ac57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611639576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6116a9612021565b73ffffffffffffffffffffffffffffffffffffffff166116c7611729565b73ffffffffffffffffffffffffffffffffffffffff161461171d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171490613bc5565b60405180910390fd5b61172760006129de565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61175b612021565b73ffffffffffffffffffffffffffffffffffffffff16611779611729565b73ffffffffffffffffffffffffffffffffffffffff16146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690613bc5565b60405180910390fd5b80600d8190555050565b6060600280546117e890613f5f565b80601f016020809104026020016040519081016040528092919081815260200182805461181490613f5f565b80156118615780601f1061183657610100808354040283529160200191611861565b820191906000526020600020905b81548152906001019060200180831161184457829003601f168201915b5050505050905090565b600a5481611877610c2f565b6118819190613d8a565b11156118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b990613ba5565b60405180910390fd5b6118ca611729565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119f557600960009054906101000a900460ff161561194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390613be5565b60405180910390fd5b600b5481611959336115d1565b6119639190613d8a565b11156119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b90613c05565b60405180910390fd5b80600d546119b29190613e11565b3410156119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613c45565b60405180910390fd5b5b6119ff3382612718565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a4a9190613d8a565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b611a98612021565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611b0a612021565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bb7612021565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bfc9190613b2d565b60405180910390a35050565b611c13848484612143565b611c1f84848484612aa4565b611c55576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611c6682612029565b611c9c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060088054611cab90613f5f565b90501415611cc85760405180602001604052806000815250611cf4565b6008611cd383612c32565b604051602001611ce4929190613a82565b6040516020818303038152906040525b9050919050565b611d03612021565b73ffffffffffffffffffffffffffffffffffffffff16611d21611729565b73ffffffffffffffffffffffffffffffffffffffff1614611d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6e90613bc5565b60405180910390fd5b80600c8190555050565b611d89612021565b73ffffffffffffffffffffffffffffffffffffffff16611da7611729565b73ffffffffffffffffffffffffffffffffffffffff1614611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490613bc5565b60405180910390fd5b80600b8190555050565b600c5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b60106020528060005260406000206000915090505481565b611ec7612021565b73ffffffffffffffffffffffffffffffffffffffff16611ee5611729565b73ffffffffffffffffffffffffffffffffffffffff1614611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3290613bc5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290613b85565b60405180910390fd5b611fb4816129de565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168210801561208a575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061214e82612736565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612175612021565b73ffffffffffffffffffffffffffffffffffffffff1614806121a857506121a782600001516121a2612021565b611e0d565b5b806121ed57506121b6612021565b73ffffffffffffffffffffffffffffffffffffffff166121d584610aa8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612226576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461228f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122f6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123038585856001612d93565b6123136000848460000151612091565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125f05760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156125ef5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126598585856001612d99565b5050505050565b60008083905060005b86869050811015612709576000878783818110612689576126886140f7565b5b9050602002013590508083116126c95782816040516020016126ac929190613a56565b6040516020818303038152906040528051906020012092506126f5565b80836040516020016126dc929190613a56565b6040516020818303038152906040528051906020012092505b50808061270190613fc2565b915050612669565b50828114915050949350505050565b612732828260405180602001604052806000815250612d9f565b5050565b61273e6131f0565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156129a7576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516129a557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128895780925050506129d9565b5b6001156129a457818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461299f5780925050506129d9565b61288a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612ac58473ffffffffffffffffffffffffffffffffffffffff16612db1565b15612c25578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aee612021565b8786866040518563ffffffff1660e01b8152600401612b109493929190613ae1565b602060405180830381600087803b158015612b2a57600080fd5b505af1925050508015612b5b57506040513d601f19601f82011682018060405250810190612b5891906136ae565b60015b612bd5573d8060008114612b8b576040519150601f19603f3d011682016040523d82523d6000602084013e612b90565b606091505b50600081511415612bcd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c2a565b600190505b949350505050565b60606000821415612c7a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d8e565b600082905060005b60008214612cac578080612c9590613fc2565b915050600a82612ca59190613de0565b9150612c82565b60008167ffffffffffffffff811115612cc857612cc7614126565b5b6040519080825280601f01601f191660200182016040528015612cfa5781602001600182028036833780820191505090505b5090505b60008514612d8757600182612d139190613e6b565b9150600a85612d229190614039565b6030612d2e9190613d8a565b60f81b818381518110612d4457612d436140f7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d809190613de0565b9450612cfe565b8093505050505b919050565b50505050565b50505050565b612dac8383836001612dd4565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e6f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612eaa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612eb76000868387612d93565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561311c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156130d057506130ce6000888488612aa4565b155b15613107576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613055565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506131636000868387612d99565b5050505050565b82805461317690613f5f565b90600052602060002090601f01602090048101928261319857600085556131df565b82601f106131b157805160ff19168380011785556131df565b828001600101855582156131df579182015b828111156131de5782518255916020019190600101906131c3565b5b5090506131ec9190613233565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561324c576000816000905550600101613234565b5090565b600061326361325e84613cc5565b613ca0565b90508281526020810184848401111561327f5761327e614164565b5b61328a848285613f1d565b509392505050565b60006132a56132a084613cf6565b613ca0565b9050828152602081018484840111156132c1576132c0614164565b5b6132cc848285613f1d565b509392505050565b6000813590506132e38161432b565b92915050565b60008083601f8401126132ff576132fe61415a565b5b8235905067ffffffffffffffff81111561331c5761331b614155565b5b6020830191508360208202830111156133385761333761415f565b5b9250929050565b60008135905061334e81614342565b92915050565b60008135905061336381614359565b92915050565b60008135905061337881614370565b92915050565b60008151905061338d81614370565b92915050565b600082601f8301126133a8576133a761415a565b5b81356133b8848260208601613250565b91505092915050565b600082601f8301126133d6576133d561415a565b5b81356133e6848260208601613292565b91505092915050565b6000813590506133fe81614387565b92915050565b60006020828403121561341a5761341961416e565b5b6000613428848285016132d4565b91505092915050565b600080604083850312156134485761344761416e565b5b6000613456858286016132d4565b9250506020613467858286016132d4565b9150509250929050565b60008060006060848603121561348a5761348961416e565b5b6000613498868287016132d4565b93505060206134a9868287016132d4565b92505060406134ba868287016133ef565b9150509250925092565b600080600080608085870312156134de576134dd61416e565b5b60006134ec878288016132d4565b94505060206134fd878288016132d4565b935050604061350e878288016133ef565b925050606085013567ffffffffffffffff81111561352f5761352e614169565b5b61353b87828801613393565b91505092959194509250565b6000806040838503121561355e5761355d61416e565b5b600061356c858286016132d4565b925050602061357d8582860161333f565b9150509250929050565b6000806040838503121561359e5761359d61416e565b5b60006135ac858286016132d4565b92505060206135bd858286016133ef565b9150509250929050565b6000806000604084860312156135e0576135df61416e565b5b600084013567ffffffffffffffff8111156135fe576135fd614169565b5b61360a868287016132e9565b9350935050602061361d868287016133ef565b9150509250925092565b60006020828403121561363d5761363c61416e565b5b600061364b8482850161333f565b91505092915050565b60006020828403121561366a5761366961416e565b5b600061367884828501613354565b91505092915050565b6000602082840312156136975761369661416e565b5b60006136a584828501613369565b91505092915050565b6000602082840312156136c4576136c361416e565b5b60006136d28482850161337e565b91505092915050565b6000602082840312156136f1576136f061416e565b5b600082013567ffffffffffffffff81111561370f5761370e614169565b5b61371b848285016133c1565b91505092915050565b60006020828403121561373a5761373961416e565b5b6000613748848285016133ef565b91505092915050565b61375a81613e9f565b82525050565b61377161376c82613e9f565b61400b565b82525050565b61378081613eb1565b82525050565b61378f81613ebd565b82525050565b6137a66137a182613ebd565b61401d565b82525050565b60006137b782613d3c565b6137c18185613d52565b93506137d1818560208601613f2c565b6137da81614173565b840191505092915050565b60006137f082613d47565b6137fa8185613d6e565b935061380a818560208601613f2c565b61381381614173565b840191505092915050565b600061382982613d47565b6138338185613d7f565b9350613843818560208601613f2c565b80840191505092915050565b6000815461385c81613f5f565b6138668186613d7f565b945060018216600081146138815760018114613892576138c5565b60ff198316865281860193506138c5565b61389b85613d27565b60005b838110156138bd5781548189015260018201915060208101905061389e565b838801955050505b50505092915050565b60006138db602683613d6e565b91506138e682614191565b604082019050919050565b60006138fe601683613d6e565b9150613909826141e0565b602082019050919050565b6000613921600583613d7f565b915061392c82614209565b600582019050919050565b6000613944602083613d6e565b915061394f82614232565b602082019050919050565b6000613967601683613d6e565b91506139728261425b565b602082019050919050565b600061398a601883613d6e565b915061399582614284565b602082019050919050565b60006139ad600083613d63565b91506139b8826142ad565b600082019050919050565b60006139d0601283613d6e565b91506139db826142b0565b602082019050919050565b60006139f3601583613d6e565b91506139fe826142d9565b602082019050919050565b6000613a16600d83613d6e565b9150613a2182614302565b602082019050919050565b613a3581613f13565b82525050565b6000613a478284613760565b60148201915081905092915050565b6000613a628285613795565b602082019150613a728284613795565b6020820191508190509392505050565b6000613a8e828561384f565b9150613a9a828461381e565b9150613aa582613914565b91508190509392505050565b6000613abc826139a0565b9150819050919050565b6000602082019050613adb6000830184613751565b92915050565b6000608082019050613af66000830187613751565b613b036020830186613751565b613b106040830185613a2c565b8181036060830152613b2281846137ac565b905095945050505050565b6000602082019050613b426000830184613777565b92915050565b6000602082019050613b5d6000830184613786565b92915050565b60006020820190508181036000830152613b7d81846137e5565b905092915050565b60006020820190508181036000830152613b9e816138ce565b9050919050565b60006020820190508181036000830152613bbe816138f1565b9050919050565b60006020820190508181036000830152613bde81613937565b9050919050565b60006020820190508181036000830152613bfe8161395a565b9050919050565b60006020820190508181036000830152613c1e8161397d565b9050919050565b60006020820190508181036000830152613c3e816139c3565b9050919050565b60006020820190508181036000830152613c5e816139e6565b9050919050565b60006020820190508181036000830152613c7e81613a09565b9050919050565b6000602082019050613c9a6000830184613a2c565b92915050565b6000613caa613cbb565b9050613cb68282613f91565b919050565b6000604051905090565b600067ffffffffffffffff821115613ce057613cdf614126565b5b613ce982614173565b9050602081019050919050565b600067ffffffffffffffff821115613d1157613d10614126565b5b613d1a82614173565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9582613f13565b9150613da083613f13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dd557613dd461406a565b5b828201905092915050565b6000613deb82613f13565b9150613df683613f13565b925082613e0657613e05614099565b5b828204905092915050565b6000613e1c82613f13565b9150613e2783613f13565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6057613e5f61406a565b5b828202905092915050565b6000613e7682613f13565b9150613e8183613f13565b925082821015613e9457613e9361406a565b5b828203905092915050565b6000613eaa82613ef3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f4a578082015181840152602081019050613f2f565b83811115613f59576000848401525b50505050565b60006002820490506001821680613f7757607f821691505b60208210811415613f8b57613f8a6140c8565b5b50919050565b613f9a82614173565b810181811067ffffffffffffffff82111715613fb957613fb8614126565b5b80604052505050565b6000613fcd82613f13565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561400057613fff61406a565b5b600182019050919050565b600061401682614027565b9050919050565b6000819050919050565b600061403282614184565b9050919050565b600061404482613f13565b915061404f83613f13565b92508261405f5761405e614099565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f5065722077616c6c6574206c696d697420726561636865640000000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b61433481613e9f565b811461433f57600080fd5b50565b61434b81613eb1565b811461435657600080fd5b50565b61436281613ebd565b811461436d57600080fd5b50565b61437981613ec7565b811461438457600080fd5b50565b61439081613f13565b811461439b57600080fd5b5056fea2646970667358221220207ca2b9e89aa3b8ce88ad250131e78cbd9fe6a59259c11bb196309512bc624b64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e54796d50644150576e5146644b7564764e6b734770546e50526e41425a4c48504e325476566974646e79792f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmNTymPdAPWnQFdKudvNksGpTnPRnABZLHPN2TvVitdnyy/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d4e54796d50644150576e5146644b7564764e6b73477054
Arg [3] : 6e50526e41425a4c48504e325476566974646e79792f00000000000000000000


Deployed Bytecode Sourcemap

137:3444:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6211:372:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3490:79:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8821:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10324:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9887:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3448:280;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11181:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2544:130:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1468:621;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5034:1105:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;498:52:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2687:306;;;:::i;:::-;;11422:185:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;408:42:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4021:713:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3379:103:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;256:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8630:124:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;226:21:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6647:206:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1712:103:11;;;;;;;;;;;;;:::i;:::-;;1061:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3251:120:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8990:104:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;755:672:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10600:279:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11678:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2099:289:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3123:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3001:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;359:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10950:164:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;459:30:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;557:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1970:201:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6211:372:4;6313:4;6365:25;6350:40;;;:11;:40;;;;:105;;;;6422:33;6407:48;;;:11;:48;;;;6350:105;:172;;;;6487:35;6472:50;;;:11;:50;;;;6350:172;:225;;;;6539:36;6563:11;6539:23;:36::i;:::-;6350:225;6330:245;;6211:372;;;:::o;3490:79:1:-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3555:6:1::1;3546;;:15;;;;;;;;;;;;;;;;;;3490:79:::0;:::o;8821:100:4:-;8875:13;8908:5;8901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8821:100;:::o;10324:204::-;10392:7;10417:16;10425:7;10417;:16::i;:::-;10412:64;;10442:34;;;;;;;;;;;;;;10412:64;10496:15;:24;10512:7;10496:24;;;;;;;;;;;;;;;;;;;;;10489:31;;10324:204;;;:::o;9887:371::-;9960:13;9976:24;9992:7;9976:15;:24::i;:::-;9960:40;;10021:5;10015:11;;:2;:11;;;10011:48;;;10035:24;;;;;;;;;;;;;;10011:48;10092:5;10076:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;10102:37;10119:5;10126:12;:10;:12::i;:::-;10102:16;:37::i;:::-;10101:38;10076:63;10072:138;;;10163:35;;;;;;;;;;;;;;10072:138;10222:28;10231:2;10235:7;10244:5;10222:8;:28::i;:::-;9949:309;9887:371;;:::o;3448:280::-;3501:7;3693:12;;;;;;;;;;;3677:13;;;;;;;;;;:28;3670:35;;;;3448:280;:::o;11181:170::-;11315:28;11325:4;11331:2;11335:7;11315:9;:28::i;:::-;11181:170;;;:::o;2544:130:1:-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2648:18:1::1;2630:15;:36;;;;2544:130:::0;:::o;1468:621::-;1595:10;;1583:8;1567:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;1559:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1682:14;;1670:8;1646:21;1656:10;1646:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;1638:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;1771:8;1755:13;;:24;;;;:::i;:::-;1742:9;:37;;1734:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1810:12;1852:10;1835:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;1825:39;;;;;;1810:54;;1878:47;1897:6;;1904:4;1909:15;;1878:18;:47::i;:::-;1870:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;1956:31;1966:10;1978:8;1956:9;:31::i;:::-;2058:8;2026:17;:29;2044:10;2026:29;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;1993:17;:29;2011:10;1993:29;;;;;;;;;;;;;;;:73;;;;1551:538;1468:621;;;:::o;5034:1105:4:-;5123:7;5156:16;5166:5;5156:9;:16::i;:::-;5147:5;:25;5143:61;;5181:23;;;;;;;;;;;;;;5143:61;5215:22;5240:13;;;;;;;;;;;5215:38;;;;5264:19;5294:25;5495:9;5490:557;5510:14;5506:1;:18;5490:557;;;5550:31;5584:11;:14;5596:1;5584:14;;;;;;;;;;;5550:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5621:9;:16;;;5617:73;;;5662:8;;;5617:73;5738:1;5712:28;;:9;:14;;;:28;;;5708:111;;5785:9;:14;;;5765:34;;5708:111;5862:5;5841:26;;:17;:26;;;5837:195;;;5911:5;5896:11;:20;5892:85;;;5952:1;5945:8;;;;;;;;;5892:85;5999:13;;;;;;;5837:195;5531:516;5490:557;5526:3;;;;;;;5490:557;;;;6123:8;;;5034:1105;;;;;:::o;498:52:1:-;;;;;;;;;;;;;;;;;:::o;2687:306::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2740:14:1::1;2768:42;2760:56;;2850:3;2847:2;2824:21;:25;;;;:::i;:::-;:29;;;;:::i;:::-;2760:98;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2739:119;;;2873:9;2865:18;;;::::0;::::1;;2893:9;2916:7;:5;:7::i;:::-;2908:21;;2937;2908:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2892:71;;;2978:4;2970:13;;;::::0;::::1;;2732:261;;2687:306::o:0;11422:185:4:-;11560:39;11577:4;11583:2;11587:7;11560:39;;;;;;;;;;;;:16;:39::i;:::-;11422:185;;;:::o;408:42:1:-;;;;:::o;4021:713:4:-;4088:7;4108:22;4133:13;;;;;;;;;;4108:38;;;;4157:19;4352:9;4347:328;4367:14;4363:1;:18;4347:328;;;4407:31;4441:11;:14;4453:1;4441:14;;;;;;;;;;;4407:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4479:9;:16;;;4474:186;;4539:5;4524:11;:20;4520:85;;;4580:1;4573:8;;;;;;;;4520:85;4627:13;;;;;;;4474:186;4388:287;4383:3;;;;;;;4347:328;;;;4703:23;;;;;;;;;;;;;;4021:713;;;;:::o;3379:103:1:-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3464:11:1::1;3454:7;:21;;;;;;;;;;;;:::i;:::-;;3379:103:::0;:::o;256:26::-;;;;;;;;;;;;;:::o;8630:124:4:-;8694:7;8721:20;8733:7;8721:11;:20::i;:::-;:25;;;8714:32;;8630:124;;;:::o;226:21:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6647:206:4:-;6711:7;6752:1;6735:19;;:5;:19;;;6731:60;;;6763:28;;;;;;;;;;;;;;6731:60;6817:12;:19;6830:5;6817:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6809:36;;6802:43;;6647:206;;;:::o;1712:103:11:-;1292:12;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1777:30:::1;1804:1;1777:18;:30::i;:::-;1712:103::o:0;1061:87::-;1107:7;1134:6;;;;;;;;;;;1127:13;;1061:87;:::o;3251:120:1:-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3348:15:1::1;3331:14;:32;;;;3251:120:::0;:::o;8990:104:4:-;9046:13;9079:7;9072:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8990:104;:::o;755:672:1:-;930:10;;918:8;902:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;894:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;998:7;:5;:7::i;:::-;984:21;;:10;:21;;;980:309;;1031:6;;;;;;;;;;;1030:7;1022:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;1123:14;;1111:8;1087:21;1097:10;1087:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;1079:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;1219:8;1202:14;;:25;;;;:::i;:::-;1188:9;:40;;1180:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;980:309;1299:31;1309:10;1321:8;1299:9;:31::i;:::-;1409:8;1376:18;:30;1395:10;1376:30;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;1342:18;:30;1361:10;1342:30;;;;;;;;;;;;;;;:75;;;;755:672;:::o;10600:279:4:-;10703:12;:10;:12::i;:::-;10691:24;;:8;:24;;;10687:54;;;10724:17;;;;;;;;;;;;;;10687:54;10799:8;10754:18;:32;10773:12;:10;:12::i;:::-;10754:32;;;;;;;;;;;;;;;:42;10787:8;10754:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10852:8;10823:48;;10838:12;:10;:12::i;:::-;10823:48;;;10862:8;10823:48;;;;;;:::i;:::-;;;;;;;;10600:279;;:::o;11678:342::-;11845:28;11855:4;11861:2;11865:7;11845:9;:28::i;:::-;11889:48;11912:4;11918:2;11922:7;11931:5;11889:22;:48::i;:::-;11884:129;;11961:40;;;;;;;;;;;;;;11884:129;11678:342;;;;:::o;2099:289:1:-;2172:13;2203:16;2211:7;2203;:16::i;:::-;2198:59;;2228:29;;;;;;;;;;;;;;2198:59;2310:1;2291:7;2285:21;;;;;:::i;:::-;;;:26;;:95;;;;;;;;;;;;;;;;;2338:7;2347:18;:7;:16;:18::i;:::-;2321:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2285:95;2278:102;;2099:289;;;:::o;3123:116::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3217:14:1::1;3201:13;:30;;;;3123:116:::0;:::o;3001:114::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3094:13:1::1;3077:14;:30;;;;3001:114:::0;:::o;359:42::-;;;;:::o;10950:164:4:-;11047:4;11071:18;:25;11090:5;11071:25;;;;;;;;;;;;;;;:35;11097:8;11071:35;;;;;;;;;;;;;;;;;;;;;;;;;11064:42;;10950:164;;;;:::o;459:30:1:-;;;;:::o;557:53::-;;;;;;;;;;;;;;;;;:::o;1970:201:11:-;1292:12;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2079:1:::1;2059:22;;:8;:22;;;;2051:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2135:28;2154:8;2135:18;:28::i;:::-;1970:201:::0;:::o;852:157:3:-;937:4;976:25;961:40;;;:11;:40;;;;954:47;;852:157;;;:::o;656:98:2:-;709:7;736:10;729:17;;656:98;:::o;12275:144:4:-;12332:4;12366:13;;;;;;;;;;;12356:23;;:7;:23;:55;;;;;12384:11;:20;12396:7;12384:20;;;;;;;;;;;:27;;;;;;;;;;;;12383:28;12356:55;12349:62;;12275:144;;;:::o;19491:196::-;19633:2;19606:15;:24;19622:7;19606:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19671:7;19667:2;19651:28;;19660:5;19651:28;;;;;;;;;;;;19491:196;;;:::o;14992:2112::-;15107:35;15145:20;15157:7;15145:11;:20::i;:::-;15107:58;;15178:22;15220:13;:18;;;15204:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15255:50;15272:13;:18;;;15292:12;:10;:12::i;:::-;15255:16;:50::i;:::-;15204:101;:154;;;;15346:12;:10;:12::i;:::-;15322:36;;:20;15334:7;15322:11;:20::i;:::-;:36;;;15204:154;15178:181;;15377:17;15372:66;;15403:35;;;;;;;;;;;;;;15372:66;15475:4;15453:26;;:13;:18;;;:26;;;15449:67;;15488:28;;;;;;;;;;;;;;15449:67;15545:1;15531:16;;:2;:16;;;15527:52;;;15556:23;;;;;;;;;;;;;;15527:52;15592:43;15614:4;15620:2;15624:7;15633:1;15592:21;:43::i;:::-;15700:49;15717:1;15721:7;15730:13;:18;;;15700:8;:49::i;:::-;16075:1;16045:12;:18;16058:4;16045:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16119:1;16091:12;:16;16104:2;16091:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16165:2;16137:11;:20;16149:7;16137:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16227:15;16182:11;:20;16194:7;16182:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16495:19;16527:1;16517:7;:11;16495:33;;16588:1;16547:43;;:11;:24;16559:11;16547:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16543:445;;;16772:13;;;;;;;;;;16758:27;;:11;:27;16754:219;;;16842:13;:18;;;16810:11;:24;16822:11;16810:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16925:13;:28;;;16883:11;:24;16895:11;16883:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;16754:219;16543:445;16020:979;17035:7;17031:2;17016:27;;17025:4;17016:27;;;;;;;;;;;;17054:42;17075:4;17081:2;17085:7;17094:1;17054:20;:42::i;:::-;15096:2008;;14992:2112;;;:::o;668:798:10:-;761:4;778:20;801:4;778:27;;823:9;818:525;842:5;;:12;;838:1;:16;818:525;;;876:20;899:5;;905:1;899:8;;;;;;;:::i;:::-;;;;;;;;876:31;;944:12;928;:28;924:408;;1098:12;1112;1081:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1071:55;;;;;;1056:70;;924:408;;;1288:12;1302;1271:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1261:55;;;;;;1246:70;;924:408;861:482;856:3;;;;;:::i;:::-;;;;818:525;;;;1454:4;1438:12;:20;1431:27;;;668:798;;;;;;:::o;12427:104:4:-;12496:27;12506:2;12510:8;12496:27;;;;;;;;;;;;:9;:27::i;:::-;12427:104;;:::o;7485:1083::-;7546:21;;:::i;:::-;7580:12;7595:7;7580:22;;7651:13;;;;;;;;;;7644:20;;:4;:20;7640:861;;;7685:31;7719:11;:17;7731:4;7719:17;;;;;;;;;;;7685:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7760:9;:16;;;7755:731;;7831:1;7805:28;;:9;:14;;;:28;;;7801:101;;7869:9;7862:16;;;;;;7801:101;8206:261;8213:4;8206:261;;;8246:6;;;;;;;;8291:11;:17;8303:4;8291:17;;;;;;;;;;;8279:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8365:1;8339:28;;:9;:14;;;:28;;;8335:109;;8407:9;8400:16;;;;;;8335:109;8206:261;;;7755:731;7666:835;7640:861;8529:31;;;;;;;;;;;;;;7485:1083;;;;:::o;2331:191:11:-;2405:16;2424:6;;;;;;;;;;;2405:25;;2450:8;2441:6;;:17;;;;;;;;;;;;;;;;;;2505:8;2474:40;;2495:8;2474:40;;;;;;;;;;;;2394:128;2331:191;:::o;20252:790:4:-;20407:4;20428:15;:2;:13;;;:15::i;:::-;20424:611;;;20480:2;20464:36;;;20501:12;:10;:12::i;:::-;20515:4;20521:7;20530:5;20464:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20460:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20727:1;20710:6;:13;:18;20706:259;;;20760:40;;;;;;;;;;;;;;20706:259;20915:6;20909:13;20900:6;20896:2;20892:15;20885:38;20460:520;20597:45;;;20587:55;;;:6;:55;;;;20580:62;;;;;20424:611;21019:4;21012:11;;20252:790;;;;;;;:::o;342:723:12:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;21690:159:4:-;;;;;:::o;22508:158::-;;;;;:::o;12894:163::-;13017:32;13023:2;13027:8;13037:5;13044:4;13017:5;:32::i;:::-;12894:163;;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;13316:1422:4:-;13455:20;13478:13;;;;;;;;;;;13455:36;;;;13520:1;13506:16;;:2;:16;;;13502:48;;;13531:19;;;;;;;;;;;;;;13502:48;13577:1;13565:8;:13;13561:44;;;13587:18;;;;;;;;;;;;;;13561:44;13618:61;13648:1;13652:2;13656:12;13670:8;13618:21;:61::i;:::-;13992:8;13957:12;:16;13970:2;13957:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14056:8;14016:12;:16;14029:2;14016:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14115:2;14082:11;:25;14094:12;14082:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14182:15;14132:11;:25;14144:12;14132:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14215:20;14238:12;14215:35;;14272:9;14267:328;14287:8;14283:1;:12;14267:328;;;14351:12;14347:2;14326:38;;14343:1;14326:38;;;;;;;;;;;;14387:4;:68;;;;;14396:59;14427:1;14431:2;14435:12;14449:5;14396:22;:59::i;:::-;14395:60;14387:68;14383:164;;;14487:40;;;;;;;;;;;;;;14383:164;14565:14;;;;;;;14297:3;;;;;;;14267:328;;;;14635:12;14611:13;;:37;;;;;;;;;;;;;;;;;;13932:728;14670:60;14699:1;14703:2;14707:12;14721:8;14670:20;:60::i;:::-;13444:1294;13316:1422;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:704::-;6451:6;6459;6467;6516:2;6504:9;6495:7;6491:23;6487:32;6484:119;;;6522:79;;:::i;:::-;6484:119;6670:1;6659:9;6655:17;6642:31;6700:18;6692:6;6689:30;6686:117;;;6722:79;;:::i;:::-;6686:117;6835:80;6907:7;6898:6;6887:9;6883:22;6835:80;:::i;:::-;6817:98;;;;6613:312;6964:2;6990:53;7035:7;7026:6;7015:9;7011:22;6990:53;:::i;:::-;6980:63;;6935:118;6356:704;;;;;:::o;7066:323::-;7122:6;7171:2;7159:9;7150:7;7146:23;7142:32;7139:119;;;7177:79;;:::i;:::-;7139:119;7297:1;7322:50;7364:7;7355:6;7344:9;7340:22;7322:50;:::i;:::-;7312:60;;7268:114;7066:323;;;;:::o;7395:329::-;7454:6;7503:2;7491:9;7482:7;7478:23;7474:32;7471:119;;;7509:79;;:::i;:::-;7471:119;7629:1;7654:53;7699:7;7690:6;7679:9;7675:22;7654:53;:::i;:::-;7644:63;;7600:117;7395:329;;;;:::o;7730:327::-;7788:6;7837:2;7825:9;7816:7;7812:23;7808:32;7805:119;;;7843:79;;:::i;:::-;7805:119;7963:1;7988:52;8032:7;8023:6;8012:9;8008:22;7988:52;:::i;:::-;7978:62;;7934:116;7730:327;;;;:::o;8063:349::-;8132:6;8181:2;8169:9;8160:7;8156:23;8152:32;8149:119;;;8187:79;;:::i;:::-;8149:119;8307:1;8332:63;8387:7;8378:6;8367:9;8363:22;8332:63;:::i;:::-;8322:73;;8278:127;8063:349;;;;:::o;8418:509::-;8487:6;8536:2;8524:9;8515:7;8511:23;8507:32;8504:119;;;8542:79;;:::i;:::-;8504:119;8690:1;8679:9;8675:17;8662:31;8720:18;8712:6;8709:30;8706:117;;;8742:79;;:::i;:::-;8706:117;8847:63;8902:7;8893:6;8882:9;8878:22;8847:63;:::i;:::-;8837:73;;8633:287;8418:509;;;;:::o;8933:329::-;8992:6;9041:2;9029:9;9020:7;9016:23;9012:32;9009:119;;;9047:79;;:::i;:::-;9009:119;9167:1;9192:53;9237:7;9228:6;9217:9;9213:22;9192:53;:::i;:::-;9182:63;;9138:117;8933:329;;;;:::o;9268:118::-;9355:24;9373:5;9355:24;:::i;:::-;9350:3;9343:37;9268:118;;:::o;9392:157::-;9497:45;9517:24;9535:5;9517:24;:::i;:::-;9497:45;:::i;:::-;9492:3;9485:58;9392:157;;:::o;9555:109::-;9636:21;9651:5;9636:21;:::i;:::-;9631:3;9624:34;9555:109;;:::o;9670:118::-;9757:24;9775:5;9757:24;:::i;:::-;9752:3;9745:37;9670:118;;:::o;9794:157::-;9899:45;9919:24;9937:5;9919:24;:::i;:::-;9899:45;:::i;:::-;9894:3;9887:58;9794:157;;:::o;9957:360::-;10043:3;10071:38;10103:5;10071:38;:::i;:::-;10125:70;10188:6;10183:3;10125:70;:::i;:::-;10118:77;;10204:52;10249:6;10244:3;10237:4;10230:5;10226:16;10204:52;:::i;:::-;10281:29;10303:6;10281:29;:::i;:::-;10276:3;10272:39;10265:46;;10047:270;9957:360;;;;:::o;10323:364::-;10411:3;10439:39;10472:5;10439:39;:::i;:::-;10494:71;10558:6;10553:3;10494:71;:::i;:::-;10487:78;;10574:52;10619:6;10614:3;10607:4;10600:5;10596:16;10574:52;:::i;:::-;10651:29;10673:6;10651:29;:::i;:::-;10646:3;10642:39;10635:46;;10415:272;10323:364;;;;:::o;10693:377::-;10799:3;10827:39;10860:5;10827:39;:::i;:::-;10882:89;10964:6;10959:3;10882:89;:::i;:::-;10875:96;;10980:52;11025:6;11020:3;11013:4;11006:5;11002:16;10980:52;:::i;:::-;11057:6;11052:3;11048:16;11041:23;;10803:267;10693:377;;;;:::o;11100:845::-;11203:3;11240:5;11234:12;11269:36;11295:9;11269:36;:::i;:::-;11321:89;11403:6;11398:3;11321:89;:::i;:::-;11314:96;;11441:1;11430:9;11426:17;11457:1;11452:137;;;;11603:1;11598:341;;;;11419:520;;11452:137;11536:4;11532:9;11521;11517:25;11512:3;11505:38;11572:6;11567:3;11563:16;11556:23;;11452:137;;11598:341;11665:38;11697:5;11665:38;:::i;:::-;11725:1;11739:154;11753:6;11750:1;11747:13;11739:154;;;11827:7;11821:14;11817:1;11812:3;11808:11;11801:35;11877:1;11868:7;11864:15;11853:26;;11775:4;11772:1;11768:12;11763:17;;11739:154;;;11922:6;11917:3;11913:16;11906:23;;11605:334;;11419:520;;11207:738;;11100:845;;;;:::o;11951:366::-;12093:3;12114:67;12178:2;12173:3;12114:67;:::i;:::-;12107:74;;12190:93;12279:3;12190:93;:::i;:::-;12308:2;12303:3;12299:12;12292:19;;11951:366;;;:::o;12323:::-;12465:3;12486:67;12550:2;12545:3;12486:67;:::i;:::-;12479:74;;12562:93;12651:3;12562:93;:::i;:::-;12680:2;12675:3;12671:12;12664:19;;12323:366;;;:::o;12695:400::-;12855:3;12876:84;12958:1;12953:3;12876:84;:::i;:::-;12869:91;;12969:93;13058:3;12969:93;:::i;:::-;13087:1;13082:3;13078:11;13071:18;;12695:400;;;:::o;13101:366::-;13243:3;13264:67;13328:2;13323:3;13264:67;:::i;:::-;13257:74;;13340:93;13429:3;13340:93;:::i;:::-;13458:2;13453:3;13449:12;13442:19;;13101:366;;;:::o;13473:::-;13615:3;13636:67;13700:2;13695:3;13636:67;:::i;:::-;13629:74;;13712:93;13801:3;13712:93;:::i;:::-;13830:2;13825:3;13821:12;13814:19;;13473:366;;;:::o;13845:::-;13987:3;14008:67;14072:2;14067:3;14008:67;:::i;:::-;14001:74;;14084:93;14173:3;14084:93;:::i;:::-;14202:2;14197:3;14193:12;14186:19;;13845:366;;;:::o;14217:398::-;14376:3;14397:83;14478:1;14473:3;14397:83;:::i;:::-;14390:90;;14489:93;14578:3;14489:93;:::i;:::-;14607:1;14602:3;14598:11;14591:18;;14217:398;;;:::o;14621:366::-;14763:3;14784:67;14848:2;14843:3;14784:67;:::i;:::-;14777:74;;14860:93;14949:3;14860:93;:::i;:::-;14978:2;14973:3;14969:12;14962:19;;14621:366;;;:::o;14993:::-;15135:3;15156:67;15220:2;15215:3;15156:67;:::i;:::-;15149:74;;15232:93;15321:3;15232:93;:::i;:::-;15350:2;15345:3;15341:12;15334:19;;14993:366;;;:::o;15365:::-;15507:3;15528:67;15592:2;15587:3;15528:67;:::i;:::-;15521:74;;15604:93;15693:3;15604:93;:::i;:::-;15722:2;15717:3;15713:12;15706:19;;15365:366;;;:::o;15737:118::-;15824:24;15842:5;15824:24;:::i;:::-;15819:3;15812:37;15737:118;;:::o;15861:256::-;15973:3;15988:75;16059:3;16050:6;15988:75;:::i;:::-;16088:2;16083:3;16079:12;16072:19;;16108:3;16101:10;;15861:256;;;;:::o;16123:397::-;16263:3;16278:75;16349:3;16340:6;16278:75;:::i;:::-;16378:2;16373:3;16369:12;16362:19;;16391:75;16462:3;16453:6;16391:75;:::i;:::-;16491:2;16486:3;16482:12;16475:19;;16511:3;16504:10;;16123:397;;;;;:::o;16526:695::-;16804:3;16826:92;16914:3;16905:6;16826:92;:::i;:::-;16819:99;;16935:95;17026:3;17017:6;16935:95;:::i;:::-;16928:102;;17047:148;17191:3;17047:148;:::i;:::-;17040:155;;17212:3;17205:10;;16526:695;;;;;:::o;17227:379::-;17411:3;17433:147;17576:3;17433:147;:::i;:::-;17426:154;;17597:3;17590:10;;17227:379;;;:::o;17612:222::-;17705:4;17743:2;17732:9;17728:18;17720:26;;17756:71;17824:1;17813:9;17809:17;17800:6;17756:71;:::i;:::-;17612:222;;;;:::o;17840:640::-;18035:4;18073:3;18062:9;18058:19;18050:27;;18087:71;18155:1;18144:9;18140:17;18131:6;18087:71;:::i;:::-;18168:72;18236:2;18225:9;18221:18;18212:6;18168:72;:::i;:::-;18250;18318:2;18307:9;18303:18;18294:6;18250:72;:::i;:::-;18369:9;18363:4;18359:20;18354:2;18343:9;18339:18;18332:48;18397:76;18468:4;18459:6;18397:76;:::i;:::-;18389:84;;17840:640;;;;;;;:::o;18486:210::-;18573:4;18611:2;18600:9;18596:18;18588:26;;18624:65;18686:1;18675:9;18671:17;18662:6;18624:65;:::i;:::-;18486:210;;;;:::o;18702:222::-;18795:4;18833:2;18822:9;18818:18;18810:26;;18846:71;18914:1;18903:9;18899:17;18890:6;18846:71;:::i;:::-;18702:222;;;;:::o;18930:313::-;19043:4;19081:2;19070:9;19066:18;19058:26;;19130:9;19124:4;19120:20;19116:1;19105:9;19101:17;19094:47;19158:78;19231:4;19222:6;19158:78;:::i;:::-;19150:86;;18930:313;;;;:::o;19249:419::-;19415:4;19453:2;19442:9;19438:18;19430:26;;19502:9;19496:4;19492:20;19488:1;19477:9;19473:17;19466:47;19530:131;19656:4;19530:131;:::i;:::-;19522:139;;19249:419;;;:::o;19674:::-;19840:4;19878:2;19867:9;19863:18;19855:26;;19927:9;19921:4;19917:20;19913:1;19902:9;19898:17;19891:47;19955:131;20081:4;19955:131;:::i;:::-;19947:139;;19674:419;;;:::o;20099:::-;20265:4;20303:2;20292:9;20288:18;20280:26;;20352:9;20346:4;20342:20;20338:1;20327:9;20323:17;20316:47;20380:131;20506:4;20380:131;:::i;:::-;20372:139;;20099:419;;;:::o;20524:::-;20690:4;20728:2;20717:9;20713:18;20705:26;;20777:9;20771:4;20767:20;20763:1;20752:9;20748:17;20741:47;20805:131;20931:4;20805:131;:::i;:::-;20797:139;;20524:419;;;:::o;20949:::-;21115:4;21153:2;21142:9;21138:18;21130:26;;21202:9;21196:4;21192:20;21188:1;21177:9;21173:17;21166:47;21230:131;21356:4;21230:131;:::i;:::-;21222:139;;20949:419;;;:::o;21374:::-;21540:4;21578:2;21567:9;21563:18;21555:26;;21627:9;21621:4;21617:20;21613:1;21602:9;21598:17;21591:47;21655:131;21781:4;21655:131;:::i;:::-;21647:139;;21374:419;;;:::o;21799:::-;21965:4;22003:2;21992:9;21988:18;21980:26;;22052:9;22046:4;22042:20;22038:1;22027:9;22023:17;22016:47;22080:131;22206:4;22080:131;:::i;:::-;22072:139;;21799:419;;;:::o;22224:::-;22390:4;22428:2;22417:9;22413:18;22405:26;;22477:9;22471:4;22467:20;22463:1;22452:9;22448:17;22441:47;22505:131;22631:4;22505:131;:::i;:::-;22497:139;;22224:419;;;:::o;22649:222::-;22742:4;22780:2;22769:9;22765:18;22757:26;;22793:71;22861:1;22850:9;22846:17;22837:6;22793:71;:::i;:::-;22649:222;;;;:::o;22877:129::-;22911:6;22938:20;;:::i;:::-;22928:30;;22967:33;22995:4;22987:6;22967:33;:::i;:::-;22877:129;;;:::o;23012:75::-;23045:6;23078:2;23072:9;23062:19;;23012:75;:::o;23093:307::-;23154:4;23244:18;23236:6;23233:30;23230:56;;;23266:18;;:::i;:::-;23230:56;23304:29;23326:6;23304:29;:::i;:::-;23296:37;;23388:4;23382;23378:15;23370:23;;23093:307;;;:::o;23406:308::-;23468:4;23558:18;23550:6;23547:30;23544:56;;;23580:18;;:::i;:::-;23544:56;23618:29;23640:6;23618:29;:::i;:::-;23610:37;;23702:4;23696;23692:15;23684:23;;23406:308;;;:::o;23720:141::-;23769:4;23792:3;23784:11;;23815:3;23812:1;23805:14;23849:4;23846:1;23836:18;23828:26;;23720:141;;;:::o;23867:98::-;23918:6;23952:5;23946:12;23936:22;;23867:98;;;:::o;23971:99::-;24023:6;24057:5;24051:12;24041:22;;23971:99;;;:::o;24076:168::-;24159:11;24193:6;24188:3;24181:19;24233:4;24228:3;24224:14;24209:29;;24076:168;;;;:::o;24250:147::-;24351:11;24388:3;24373:18;;24250:147;;;;:::o;24403:169::-;24487:11;24521:6;24516:3;24509:19;24561:4;24556:3;24552:14;24537:29;;24403:169;;;;:::o;24578:148::-;24680:11;24717:3;24702:18;;24578:148;;;;:::o;24732:305::-;24772:3;24791:20;24809:1;24791:20;:::i;:::-;24786:25;;24825:20;24843:1;24825:20;:::i;:::-;24820:25;;24979:1;24911:66;24907:74;24904:1;24901:81;24898:107;;;24985:18;;:::i;:::-;24898:107;25029:1;25026;25022:9;25015:16;;24732:305;;;;:::o;25043:185::-;25083:1;25100:20;25118:1;25100:20;:::i;:::-;25095:25;;25134:20;25152:1;25134:20;:::i;:::-;25129:25;;25173:1;25163:35;;25178:18;;:::i;:::-;25163:35;25220:1;25217;25213:9;25208:14;;25043:185;;;;:::o;25234:348::-;25274:7;25297:20;25315:1;25297:20;:::i;:::-;25292:25;;25331:20;25349:1;25331:20;:::i;:::-;25326:25;;25519:1;25451:66;25447:74;25444:1;25441:81;25436:1;25429:9;25422:17;25418:105;25415:131;;;25526:18;;:::i;:::-;25415:131;25574:1;25571;25567:9;25556:20;;25234:348;;;;:::o;25588:191::-;25628:4;25648:20;25666:1;25648:20;:::i;:::-;25643:25;;25682:20;25700:1;25682:20;:::i;:::-;25677:25;;25721:1;25718;25715:8;25712:34;;;25726:18;;:::i;:::-;25712:34;25771:1;25768;25764:9;25756:17;;25588:191;;;;:::o;25785:96::-;25822:7;25851:24;25869:5;25851:24;:::i;:::-;25840:35;;25785:96;;;:::o;25887:90::-;25921:7;25964:5;25957:13;25950:21;25939:32;;25887:90;;;:::o;25983:77::-;26020:7;26049:5;26038:16;;25983:77;;;:::o;26066:149::-;26102:7;26142:66;26135:5;26131:78;26120:89;;26066:149;;;:::o;26221:126::-;26258:7;26298:42;26291:5;26287:54;26276:65;;26221:126;;;:::o;26353:77::-;26390:7;26419:5;26408:16;;26353:77;;;:::o;26436:154::-;26520:6;26515:3;26510;26497:30;26582:1;26573:6;26568:3;26564:16;26557:27;26436:154;;;:::o;26596:307::-;26664:1;26674:113;26688:6;26685:1;26682:13;26674:113;;;26773:1;26768:3;26764:11;26758:18;26754:1;26749:3;26745:11;26738:39;26710:2;26707:1;26703:10;26698:15;;26674:113;;;26805:6;26802:1;26799:13;26796:101;;;26885:1;26876:6;26871:3;26867:16;26860:27;26796:101;26645:258;26596:307;;;:::o;26909:320::-;26953:6;26990:1;26984:4;26980:12;26970:22;;27037:1;27031:4;27027:12;27058:18;27048:81;;27114:4;27106:6;27102:17;27092:27;;27048:81;27176:2;27168:6;27165:14;27145:18;27142:38;27139:84;;;27195:18;;:::i;:::-;27139:84;26960:269;26909:320;;;:::o;27235:281::-;27318:27;27340:4;27318:27;:::i;:::-;27310:6;27306:40;27448:6;27436:10;27433:22;27412:18;27400:10;27397:34;27394:62;27391:88;;;27459:18;;:::i;:::-;27391:88;27499:10;27495:2;27488:22;27278:238;27235:281;;:::o;27522:233::-;27561:3;27584:24;27602:5;27584:24;:::i;:::-;27575:33;;27630:66;27623:5;27620:77;27617:103;;;27700:18;;:::i;:::-;27617:103;27747:1;27740:5;27736:13;27729:20;;27522:233;;;:::o;27761:100::-;27800:7;27829:26;27849:5;27829:26;:::i;:::-;27818:37;;27761:100;;;:::o;27867:79::-;27906:7;27935:5;27924:16;;27867:79;;;:::o;27952:94::-;27991:7;28020:20;28034:5;28020:20;:::i;:::-;28009:31;;27952:94;;;:::o;28052:176::-;28084:1;28101:20;28119:1;28101:20;:::i;:::-;28096:25;;28135:20;28153:1;28135:20;:::i;:::-;28130:25;;28174:1;28164:35;;28179:18;;:::i;:::-;28164:35;28220:1;28217;28213:9;28208:14;;28052:176;;;;:::o;28234:180::-;28282:77;28279:1;28272:88;28379:4;28376:1;28369:15;28403:4;28400:1;28393:15;28420:180;28468:77;28465:1;28458:88;28565:4;28562:1;28555:15;28589:4;28586:1;28579:15;28606:180;28654:77;28651:1;28644:88;28751:4;28748:1;28741:15;28775:4;28772:1;28765:15;28792:180;28840:77;28837:1;28830:88;28937:4;28934:1;28927:15;28961:4;28958:1;28951:15;28978:180;29026:77;29023:1;29016:88;29123:4;29120:1;29113:15;29147:4;29144:1;29137:15;29164:117;29273:1;29270;29263:12;29287:117;29396:1;29393;29386:12;29410:117;29519:1;29516;29509:12;29533:117;29642:1;29639;29632:12;29656:117;29765:1;29762;29755:12;29779:117;29888:1;29885;29878:12;29902:102;29943:6;29994:2;29990:7;29985:2;29978:5;29974:14;29970:28;29960:38;;29902:102;;;:::o;30010:94::-;30043:8;30091:5;30087:2;30083:14;30062:35;;30010:94;;;:::o;30110:225::-;30250:34;30246:1;30238:6;30234:14;30227:58;30319:8;30314:2;30306:6;30302:15;30295:33;30110:225;:::o;30341:172::-;30481:24;30477:1;30469:6;30465:14;30458:48;30341:172;:::o;30519:155::-;30659:7;30655:1;30647:6;30643:14;30636:31;30519:155;:::o;30680:182::-;30820:34;30816:1;30808:6;30804:14;30797:58;30680:182;:::o;30868:172::-;31008:24;31004:1;30996:6;30992:14;30985:48;30868:172;:::o;31046:174::-;31186:26;31182:1;31174:6;31170:14;31163:50;31046:174;:::o;31226:114::-;;:::o;31346:168::-;31486:20;31482:1;31474:6;31470:14;31463:44;31346:168;:::o;31520:171::-;31660:23;31656:1;31648:6;31644:14;31637:47;31520:171;:::o;31697:163::-;31837:15;31833:1;31825:6;31821:14;31814:39;31697:163;:::o;31866:122::-;31939:24;31957:5;31939:24;:::i;:::-;31932:5;31929:35;31919:63;;31978:1;31975;31968:12;31919:63;31866:122;:::o;31994:116::-;32064:21;32079:5;32064:21;:::i;:::-;32057:5;32054:32;32044:60;;32100:1;32097;32090:12;32044:60;31994:116;:::o;32116:122::-;32189:24;32207:5;32189:24;:::i;:::-;32182:5;32179:35;32169:63;;32228:1;32225;32218:12;32169:63;32116:122;:::o;32244:120::-;32316:23;32333:5;32316:23;:::i;:::-;32309:5;32306:34;32296:62;;32354:1;32351;32344:12;32296:62;32244:120;:::o;32370:122::-;32443:24;32461:5;32443:24;:::i;:::-;32436:5;32433:35;32423:63;;32482:1;32479;32472:12;32423:63;32370:122;:::o

Swarm Source

ipfs://207ca2b9e89aa3b8ce88ad250131e78cbd9fe6a59259c11bb196309512bc624b
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.