ETH Price: $3,134.82 (-8.78%)
Gas: 7 Gwei

Token

Junky Pets (JP)
 

Overview

Max Total Supply

5 JP

Holders

3

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vechknightvault.eth
Balance
1 JP
0x27013982436c909a685c4e33a768ea0bb671fd73
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:
JunkyPets

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 10 of 12: JunkyPets.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

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

    string public baseURI;

    bool public public_mint_status = true;

    uint256 MAX_SUPPLY = 888;

    string public notRevealedUri;
    
    bool public revealed = true;

    uint256 public publicSaleCost = 0.03 ether;
    uint256 public max_per_wallet = 2;

    constructor(string memory _initBaseURI, string memory _initNotRevealedUri) ERC721A("Junky Pets", "JP") {
    
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);    
    mint(2);
    }

    function mint(uint256 quantity) public payable  {
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");

        if (msg.sender != owner()) {
            require(public_mint_status, "public mint is off");
            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);

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

    if(revealed == false) {
        return notRevealedUri;
        }
      
        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 toggleReveal() public onlyOwner {
        
        if(revealed==false){
            revealed = true;
        }else{
            revealed = false;
        }
    }   

        
    function toggle_public_mint_status() public onlyOwner {
        
        if(public_mint_status==false){
            public_mint_status = true;
        }else{
            public_mint_status = false;
        }
    }  

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }
     
    function withdraw() public payable onlyOwner {
  
    (bool main,) = payable(0x9C0796CD690680ba386450247D32B99243B9A18E).call{value: address(this).balance* 7/10}("");
    require(main);

    (bool main2,) = payable(0x2B0579fa209b8c329292A122ff2996Cb68381FE6).call{value: address(this).balance}("");
    require(main2);
    
    }  
    
    function setPublicSaleCost(uint256 _publicSaleCost) public onlyOwner {
        publicSaleCost = _publicSaleCost;
    }

    function setMax_per_wallet(uint256 _max_per_wallet) public onlyOwner {
        max_per_wallet = _max_per_wallet;
    }

    function setMAX_SUPPLY(uint256 _MAX_SUPPLY) public onlyOwner {
        MAX_SUPPLY = _MAX_SUPPLY;
    }

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

File 1 of 12: 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 2 of 12: 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 3 of 12: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "IERC165.sol";

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

File 4 of 12: 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 5 of 12: 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 6 of 12: 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 7 of 12: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "IERC721.sol";

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

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

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

File 9 of 12: 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 12: 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 12 of 12: 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"},{"internalType":"string","name":"_initNotRevealedUri","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":[],"name":"max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"notRevealedUri","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":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_MAX_SUPPLY","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_per_wallet","type":"uint256"}],"name":"setMax_per_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","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":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle_public_mint_status","outputs":[],"stateMutability":"nonpayable","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526001600960006101000a81548160ff021916908315150217905550610378600a556001600c60006101000a81548160ff021916908315150217905550666a94d74f430000600d556002600e553480156200005d57600080fd5b50604051620053fc380380620053fc833981810160405281019062000083919062000e05565b6040518060400160405280600a81526020017f4a756e6b792050657473000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4a5000000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200010792919062000c8e565b5080600290805190602001906200012092919062000c8e565b50505062000143620001376200017f60201b60201c565b6200018760201b60201c565b62000154826200024d60201b60201c565b6200016581620002f860201b60201c565b620001776002620003a360201b60201c565b50506200149d565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200025d6200017f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002836200056c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d39062001048565b60405180910390fd5b8060089080519060200190620002f492919062000c8e565b5050565b620003086200017f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200032e6200056c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000387576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037e9062001048565b60405180910390fd5b80600b90805190602001906200039f92919062000c8e565b5050565b600a5481620003b76200059660201b60201c565b620003c391906200113a565b111562000407576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003fe9062001026565b60405180910390fd5b620004176200056c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200055757600960009054906101000a900460ff166200049c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004939062001004565b60405180910390fd5b600e5481620004b133620005eb60201b60201c565b620004bd91906200113a565b111562000501576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f8906200106a565b60405180910390fd5b80600d5462000511919062001197565b34101562000556576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054d906200108c565b60405180910390fd5b5b620005693382620006bc60201b60201c565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000654576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b620006de828260405180602001604052806000815250620006e260201b60201c565b5050565b620006f78383836001620006fc60201b60201c565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000798576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415620007d4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620007e9600086838762000ab060201b60201c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101562000a5a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801562000a0c575062000a0a600088848862000ab660201b60201c565b155b1562000a44576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505062000987565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055505062000aa9600086838762000c6560201b60201c565b5050505050565b50505050565b600062000ae48473ffffffffffffffffffffffffffffffffffffffff1662000c6b60201b62001eec1760201c565b1562000c58578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000b166200017f60201b60201c565b8786866040518563ffffffff1660e01b815260040162000b3a949392919062000fb0565b602060405180830381600087803b15801562000b5557600080fd5b505af192505050801562000b8957506040513d601f19601f8201168201806040525081019062000b86919062000dd3565b60015b62000c07573d806000811462000bbc576040519150601f19603f3d011682016040523d82523d6000602084013e62000bc1565b606091505b5060008151141562000bff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000c5d565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805462000c9c9062001298565b90600052602060002090601f01602090048101928262000cc0576000855562000d0c565b82601f1062000cdb57805160ff191683800117855562000d0c565b8280016001018555821562000d0c579182015b8281111562000d0b57825182559160200191906001019062000cee565b5b50905062000d1b919062000d1f565b5090565b5b8082111562000d3a57600081600090555060010162000d20565b5090565b600062000d5562000d4f84620010d7565b620010ae565b90508281526020810184848401111562000d745762000d7362001396565b5b62000d8184828562001262565b509392505050565b60008151905062000d9a8162001483565b92915050565b600082601f83011262000db85762000db762001391565b5b815162000dca84826020860162000d3e565b91505092915050565b60006020828403121562000dec5762000deb620013a0565b5b600062000dfc8482850162000d89565b91505092915050565b6000806040838503121562000e1f5762000e1e620013a0565b5b600083015167ffffffffffffffff81111562000e405762000e3f6200139b565b5b62000e4e8582860162000da0565b925050602083015167ffffffffffffffff81111562000e725762000e716200139b565b5b62000e808582860162000da0565b9150509250929050565b62000e9581620011f8565b82525050565b600062000ea8826200110d565b62000eb4818562001118565b935062000ec681856020860162001262565b62000ed181620013a5565b840191505092915050565b600062000eeb60128362001129565b915062000ef882620013b6565b602082019050919050565b600062000f1260168362001129565b915062000f1f82620013df565b602082019050919050565b600062000f3960208362001129565b915062000f468262001408565b602082019050919050565b600062000f6060188362001129565b915062000f6d8262001431565b602082019050919050565b600062000f8760158362001129565b915062000f94826200145a565b602082019050919050565b62000faa8162001258565b82525050565b600060808201905062000fc7600083018762000e8a565b62000fd6602083018662000e8a565b62000fe5604083018562000f9f565b818103606083015262000ff9818462000e9b565b905095945050505050565b600060208201905081810360008301526200101f8162000edc565b9050919050565b60006020820190508181036000830152620010418162000f03565b9050919050565b60006020820190508181036000830152620010638162000f2a565b9050919050565b60006020820190508181036000830152620010858162000f51565b9050919050565b60006020820190508181036000830152620010a78162000f78565b9050919050565b6000620010ba620010cd565b9050620010c88282620012ce565b919050565b6000604051905090565b600067ffffffffffffffff821115620010f557620010f462001362565b5b6200110082620013a5565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620011478262001258565b9150620011548362001258565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200118c576200118b62001304565b5b828201905092915050565b6000620011a48262001258565b9150620011b18362001258565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620011ed57620011ec62001304565b5b828202905092915050565b6000620012058262001238565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200128257808201518184015260208101905062001265565b8381111562001292576000848401525b50505050565b60006002820490506001821680620012b157607f821691505b60208210811415620012c857620012c762001333565b5b50919050565b620012d982620013a5565b810181811067ffffffffffffffff82111715620012fb57620012fa62001362565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f7075626c6963206d696e74206973206f66660000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5065722077616c6c6574206c696d697420726561636865640000000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6200148e816200120c565b81146200149a57600080fd5b50565b613f4f80620014ad6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063dcc7eb351161006f578063dcc7eb35146106f3578063e985e9c51461070a578063ec9496ba14610747578063f2c4ce1e14610770578063f2fde38b14610799576101f9565b8063a22cb46514610639578063ab53fcaa14610662578063b88d4fde1461068d578063c87b56dd146106b6576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059e5780638dbb7c06146105c957806395d89b41146105f2578063a0712d681461061d576101f9565b806370a08231146104f6578063715018a61461053357806381c4cede1461054a578063835d997e14610575576101f9565b80633ccfd60b11610190578063518302271161015f578063518302271461042357806355f804b31461044e5780635b8ad429146104775780636352211e1461048e5780636c0360eb146104cb576101f9565b80633ccfd60b1461038857806342842e0e14610392578063453afb0f146103bb5780634f6ccce7146103e6576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780632f745c591461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063081c8c44146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906133d9565b6107c2565b60405161023291906137bb565b60405180910390f35b34801561024757600080fd5b5061025061090c565b60405161025d91906137d6565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061347c565b61099e565b60405161029a9190613754565b60405180910390f35b3480156102af57600080fd5b506102b8610a1a565b6040516102c591906137d6565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190613399565b610aa8565b005b34801561030357600080fd5b5061030c610bb3565b60405161031991906138b8565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190613283565b610c08565b005b34801561035757600080fd5b50610372600480360381019061036d9190613399565b610c18565b60405161037f91906138b8565b60405180910390f35b610390610e1f565b005b34801561039e57600080fd5b506103b960048036038101906103b49190613283565b610fcb565b005b3480156103c757600080fd5b506103d0610feb565b6040516103dd91906138b8565b60405180910390f35b3480156103f257600080fd5b5061040d6004803603810190610408919061347c565b610ff1565b60405161041a91906138b8565b60405180910390f35b34801561042f57600080fd5b50610438611162565b60405161044591906137bb565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190613433565b611175565b005b34801561048357600080fd5b5061048c61120b565b005b34801561049a57600080fd5b506104b560048036038101906104b0919061347c565b6112e1565b6040516104c29190613754565b60405180910390f35b3480156104d757600080fd5b506104e06112f7565b6040516104ed91906137d6565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190613216565b611385565b60405161052a91906138b8565b60405180910390f35b34801561053f57600080fd5b50610548611455565b005b34801561055657600080fd5b5061055f6114dd565b60405161056c91906137bb565b60405180910390f35b34801561058157600080fd5b5061059c6004803603810190610597919061347c565b6114f0565b005b3480156105aa57600080fd5b506105b3611576565b6040516105c09190613754565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb919061347c565b6115a0565b005b3480156105fe57600080fd5b50610607611626565b60405161061491906137d6565b60405180910390f35b6106376004803603810190610632919061347c565b6116b8565b005b34801561064557600080fd5b50610660600480360381019061065b9190613359565b61184e565b005b34801561066e57600080fd5b506106776119c6565b60405161068491906138b8565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af91906132d6565b6119cc565b005b3480156106c257600080fd5b506106dd60048036038101906106d8919061347c565b611a1f565b6040516106ea91906137d6565b60405180910390f35b3480156106ff57600080fd5b50610708611b6e565b005b34801561071657600080fd5b50610731600480360381019061072c9190613243565b611c44565b60405161073e91906137bb565b60405180910390f35b34801561075357600080fd5b5061076e6004803603810190610769919061347c565b611cd8565b005b34801561077c57600080fd5b5061079760048036038101906107929190613433565b611d5e565b005b3480156107a557600080fd5b506107c060048036038101906107bb9190613216565b611df4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610905575061090482611f0f565b5b9050919050565b60606001805461091b90613b88565b80601f016020809104026020016040519081016040528092919081815260200182805461094790613b88565b80156109945780601f1061096957610100808354040283529160200191610994565b820191906000526020600020905b81548152906001019060200180831161097757829003601f168201915b5050505050905090565b60006109a982611f79565b6109df576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610a2790613b88565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5390613b88565b8015610aa05780601f10610a7557610100808354040283529160200191610aa0565b820191906000526020600020905b815481529060010190602001808311610a8357829003601f168201915b505050505081565b6000610ab3826112e1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3a611fe1565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b6c5750610b6a81610b65611fe1565b611c44565b155b15610ba3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bae838383611fe9565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610c1383838361209b565b505050565b6000610c2383611385565b8210610c5b576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610e13576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d725750610e06565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610db257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e045786841415610dfb578195505050505050610e19565b83806001019450505b505b8080600101915050610c95565b50600080fd5b92915050565b610e27611fe1565b73ffffffffffffffffffffffffffffffffffffffff16610e45611576565b73ffffffffffffffffffffffffffffffffffffffff1614610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290613858565b60405180910390fd5b6000739c0796cd690680ba386450247d32b99243b9a18e73ffffffffffffffffffffffffffffffffffffffff16600a600747610ed79190613a44565b610ee19190613a13565b604051610eed9061373f565b60006040518083038185875af1925050503d8060008114610f2a576040519150601f19603f3d011682016040523d82523d6000602084013e610f2f565b606091505b5050905080610f3d57600080fd5b6000732b0579fa209b8c329292a122ff2996cb68381fe673ffffffffffffffffffffffffffffffffffffffff1647604051610f779061373f565b60006040518083038185875af1925050503d8060008114610fb4576040519150601f19603f3d011682016040523d82523d6000602084013e610fb9565b606091505b5050905080610fc757600080fd5b5050565b610fe6838383604051806020016040528060008152506119cc565b505050565b600d5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561112a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161111c5785831415611113578194505050505061115d565b82806001019350505b508080600101915050611029565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600c60009054906101000a900460ff1681565b61117d611fe1565b73ffffffffffffffffffffffffffffffffffffffff1661119b611576565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613858565b60405180910390fd5b8060089080519060200190611207929190612fe7565b5050565b611213611fe1565b73ffffffffffffffffffffffffffffffffffffffff16611231611576565b73ffffffffffffffffffffffffffffffffffffffff1614611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90613858565b60405180910390fd5b60001515600c60009054906101000a900460ff16151514156112c3576001600c60006101000a81548160ff0219169083151502179055506112df565b6000600c60006101000a81548160ff0219169083151502179055505b565b60006112ec826125b8565b600001519050919050565b6008805461130490613b88565b80601f016020809104026020016040519081016040528092919081815260200182805461133090613b88565b801561137d5780601f106113525761010080835404028352916020019161137d565b820191906000526020600020905b81548152906001019060200180831161136057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ed576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61145d611fe1565b73ffffffffffffffffffffffffffffffffffffffff1661147b611576565b73ffffffffffffffffffffffffffffffffffffffff16146114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890613858565b60405180910390fd5b6114db6000612860565b565b600960009054906101000a900460ff1681565b6114f8611fe1565b73ffffffffffffffffffffffffffffffffffffffff16611516611576565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390613858565b60405180910390fd5b80600e8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115a8611fe1565b73ffffffffffffffffffffffffffffffffffffffff166115c6611576565b73ffffffffffffffffffffffffffffffffffffffff161461161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613858565b60405180910390fd5b80600d8190555050565b60606002805461163590613b88565b80601f016020809104026020016040519081016040528092919081815260200182805461166190613b88565b80156116ae5780601f10611683576101008083540402835291602001916116ae565b820191906000526020600020905b81548152906001019060200180831161169157829003601f168201915b5050505050905090565b600a54816116c4610bb3565b6116ce91906139bd565b111561170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170690613838565b60405180910390fd5b611717611576565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461184157600960009054906101000a900460ff16611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613818565b60405180910390fd5b600e54816117a533611385565b6117af91906139bd565b11156117f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e790613878565b60405180910390fd5b80600d546117fe9190613a44565b341015611840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183790613898565b60405180910390fd5b5b61184b3382612926565b50565b611856611fe1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006118c8611fe1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611975611fe1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ba91906137bb565b60405180910390a35050565b600e5481565b6119d784848461209b565b6119e384848484612944565b611a19576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611a2a82611f79565b611a60576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600c60009054906101000a900460ff1615151415611b0e57600b8054611a8990613b88565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab590613b88565b8015611b025780601f10611ad757610100808354040283529160200191611b02565b820191906000526020600020905b815481529060010190602001808311611ae557829003601f168201915b50505050509050611b69565b600060088054611b1d90613b88565b90501415611b3a5760405180602001604052806000815250611b66565b6008611b4583612ad2565b604051602001611b56929190613710565b6040516020818303038152906040525b90505b919050565b611b76611fe1565b73ffffffffffffffffffffffffffffffffffffffff16611b94611576565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190613858565b60405180910390fd5b60001515600960009054906101000a900460ff1615151415611c26576001600960006101000a81548160ff021916908315150217905550611c42565b6000600960006101000a81548160ff0219169083151502179055505b565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ce0611fe1565b73ffffffffffffffffffffffffffffffffffffffff16611cfe611576565b73ffffffffffffffffffffffffffffffffffffffff1614611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b90613858565b60405180910390fd5b80600a8190555050565b611d66611fe1565b73ffffffffffffffffffffffffffffffffffffffff16611d84611576565b73ffffffffffffffffffffffffffffffffffffffff1614611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd190613858565b60405180910390fd5b80600b9080519060200190611df0929190612fe7565b5050565b611dfc611fe1565b73ffffffffffffffffffffffffffffffffffffffff16611e1a611576565b73ffffffffffffffffffffffffffffffffffffffff1614611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790613858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed7906137f8565b60405180910390fd5b611ee981612860565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611fda575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120a6826125b8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120cd611fe1565b73ffffffffffffffffffffffffffffffffffffffff16148061210057506120ff82600001516120fa611fe1565b611c44565b5b80612145575061210e611fe1565b73ffffffffffffffffffffffffffffffffffffffff1661212d8461099e565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061217e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121e7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561224e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61225b8585856001612c33565b61226b6000848460000151611fe9565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125485760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156125475782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125b18585856001612c39565b5050505050565b6125c061306d565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612829576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161282757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461270b57809250505061285b565b5b60011561282657818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461282157809250505061285b565b61270c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612940828260405180602001604052806000815250612c3f565b5050565b60006129658473ffffffffffffffffffffffffffffffffffffffff16611eec565b15612ac5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261298e611fe1565b8786866040518563ffffffff1660e01b81526004016129b0949392919061376f565b602060405180830381600087803b1580156129ca57600080fd5b505af19250505080156129fb57506040513d601f19601f820116820180604052508101906129f89190613406565b60015b612a75573d8060008114612a2b576040519150601f19603f3d011682016040523d82523d6000602084013e612a30565b606091505b50600081511415612a6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aca565b600190505b949350505050565b60606000821415612b1a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c2e565b600082905060005b60008214612b4c578080612b3590613beb565b915050600a82612b459190613a13565b9150612b22565b60008167ffffffffffffffff811115612b6857612b67613d21565b5b6040519080825280601f01601f191660200182016040528015612b9a5781602001600182028036833780820191505090505b5090505b60008514612c2757600182612bb39190613a9e565b9150600a85612bc29190613c34565b6030612bce91906139bd565b60f81b818381518110612be457612be3613cf2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c209190613a13565b9450612b9e565b8093505050505b919050565b50505050565b50505050565b612c4c8383836001612c51565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612cec576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612d27576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d346000868387612c33565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612f9957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612f4d5750612f4b6000888488612944565b155b15612f84576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612ed2565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050612fe06000868387612c39565b5050505050565b828054612ff390613b88565b90600052602060002090601f016020900481019282613015576000855561305c565b82601f1061302e57805160ff191683800117855561305c565b8280016001018555821561305c579182015b8281111561305b578251825591602001919060010190613040565b5b50905061306991906130b0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156130c95760008160009055506001016130b1565b5090565b60006130e06130db846138f8565b6138d3565b9050828152602081018484840111156130fc576130fb613d55565b5b613107848285613b46565b509392505050565b600061312261311d84613929565b6138d3565b90508281526020810184848401111561313e5761313d613d55565b5b613149848285613b46565b509392505050565b60008135905061316081613ebd565b92915050565b60008135905061317581613ed4565b92915050565b60008135905061318a81613eeb565b92915050565b60008151905061319f81613eeb565b92915050565b600082601f8301126131ba576131b9613d50565b5b81356131ca8482602086016130cd565b91505092915050565b600082601f8301126131e8576131e7613d50565b5b81356131f884826020860161310f565b91505092915050565b60008135905061321081613f02565b92915050565b60006020828403121561322c5761322b613d5f565b5b600061323a84828501613151565b91505092915050565b6000806040838503121561325a57613259613d5f565b5b600061326885828601613151565b925050602061327985828601613151565b9150509250929050565b60008060006060848603121561329c5761329b613d5f565b5b60006132aa86828701613151565b93505060206132bb86828701613151565b92505060406132cc86828701613201565b9150509250925092565b600080600080608085870312156132f0576132ef613d5f565b5b60006132fe87828801613151565b945050602061330f87828801613151565b935050604061332087828801613201565b925050606085013567ffffffffffffffff81111561334157613340613d5a565b5b61334d878288016131a5565b91505092959194509250565b600080604083850312156133705761336f613d5f565b5b600061337e85828601613151565b925050602061338f85828601613166565b9150509250929050565b600080604083850312156133b0576133af613d5f565b5b60006133be85828601613151565b92505060206133cf85828601613201565b9150509250929050565b6000602082840312156133ef576133ee613d5f565b5b60006133fd8482850161317b565b91505092915050565b60006020828403121561341c5761341b613d5f565b5b600061342a84828501613190565b91505092915050565b60006020828403121561344957613448613d5f565b5b600082013567ffffffffffffffff81111561346757613466613d5a565b5b613473848285016131d3565b91505092915050565b60006020828403121561349257613491613d5f565b5b60006134a084828501613201565b91505092915050565b6134b281613ad2565b82525050565b6134c181613ae4565b82525050565b60006134d28261396f565b6134dc8185613985565b93506134ec818560208601613b55565b6134f581613d64565b840191505092915050565b600061350b8261397a565b61351581856139a1565b9350613525818560208601613b55565b61352e81613d64565b840191505092915050565b60006135448261397a565b61354e81856139b2565b935061355e818560208601613b55565b80840191505092915050565b6000815461357781613b88565b61358181866139b2565b9450600182166000811461359c57600181146135ad576135e0565b60ff198316865281860193506135e0565b6135b68561395a565b60005b838110156135d8578154818901526001820191506020810190506135b9565b838801955050505b50505092915050565b60006135f66026836139a1565b915061360182613d75565b604082019050919050565b60006136196012836139a1565b915061362482613dc4565b602082019050919050565b600061363c6016836139a1565b915061364782613ded565b602082019050919050565b600061365f6005836139b2565b915061366a82613e16565b600582019050919050565b60006136826020836139a1565b915061368d82613e3f565b602082019050919050565b60006136a56018836139a1565b91506136b082613e68565b602082019050919050565b60006136c8600083613996565b91506136d382613e91565b600082019050919050565b60006136eb6015836139a1565b91506136f682613e94565b602082019050919050565b61370a81613b3c565b82525050565b600061371c828561356a565b91506137288284613539565b915061373382613652565b91508190509392505050565b600061374a826136bb565b9150819050919050565b600060208201905061376960008301846134a9565b92915050565b600060808201905061378460008301876134a9565b61379160208301866134a9565b61379e6040830185613701565b81810360608301526137b081846134c7565b905095945050505050565b60006020820190506137d060008301846134b8565b92915050565b600060208201905081810360008301526137f08184613500565b905092915050565b60006020820190508181036000830152613811816135e9565b9050919050565b600060208201905081810360008301526138318161360c565b9050919050565b600060208201905081810360008301526138518161362f565b9050919050565b6000602082019050818103600083015261387181613675565b9050919050565b6000602082019050818103600083015261389181613698565b9050919050565b600060208201905081810360008301526138b1816136de565b9050919050565b60006020820190506138cd6000830184613701565b92915050565b60006138dd6138ee565b90506138e98282613bba565b919050565b6000604051905090565b600067ffffffffffffffff82111561391357613912613d21565b5b61391c82613d64565b9050602081019050919050565b600067ffffffffffffffff82111561394457613943613d21565b5b61394d82613d64565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006139c882613b3c565b91506139d383613b3c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a0857613a07613c65565b5b828201905092915050565b6000613a1e82613b3c565b9150613a2983613b3c565b925082613a3957613a38613c94565b5b828204905092915050565b6000613a4f82613b3c565b9150613a5a83613b3c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a9357613a92613c65565b5b828202905092915050565b6000613aa982613b3c565b9150613ab483613b3c565b925082821015613ac757613ac6613c65565b5b828203905092915050565b6000613add82613b1c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b73578082015181840152602081019050613b58565b83811115613b82576000848401525b50505050565b60006002820490506001821680613ba057607f821691505b60208210811415613bb457613bb3613cc3565b5b50919050565b613bc382613d64565b810181811067ffffffffffffffff82111715613be257613be1613d21565b5b80604052505050565b6000613bf682613b3c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c2957613c28613c65565b5b600182019050919050565b6000613c3f82613b3c565b9150613c4a83613b3c565b925082613c5a57613c59613c94565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f7075626c6963206d696e74206973206f66660000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5065722077616c6c6574206c696d697420726561636865640000000000000000600082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b613ec681613ad2565b8114613ed157600080fd5b50565b613edd81613ae4565b8114613ee857600080fd5b50565b613ef481613af0565b8114613eff57600080fd5b50565b613f0b81613b3c565b8114613f1657600080fd5b5056fea2646970667358221220066c79727b145646e725a4e72f9435728cea3bd026f9f542cae250384efc27fe64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569636f36753734766e3463666f627675706e7967616f36726e36327a696f786b65706666376d377572637232796c376567756e6b652f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063dcc7eb351161006f578063dcc7eb35146106f3578063e985e9c51461070a578063ec9496ba14610747578063f2c4ce1e14610770578063f2fde38b14610799576101f9565b8063a22cb46514610639578063ab53fcaa14610662578063b88d4fde1461068d578063c87b56dd146106b6576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059e5780638dbb7c06146105c957806395d89b41146105f2578063a0712d681461061d576101f9565b806370a08231146104f6578063715018a61461053357806381c4cede1461054a578063835d997e14610575576101f9565b80633ccfd60b11610190578063518302271161015f578063518302271461042357806355f804b31461044e5780635b8ad429146104775780636352211e1461048e5780636c0360eb146104cb576101f9565b80633ccfd60b1461038857806342842e0e14610392578063453afb0f146103bb5780634f6ccce7146103e6576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780632f745c591461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063081c8c44146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906133d9565b6107c2565b60405161023291906137bb565b60405180910390f35b34801561024757600080fd5b5061025061090c565b60405161025d91906137d6565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061347c565b61099e565b60405161029a9190613754565b60405180910390f35b3480156102af57600080fd5b506102b8610a1a565b6040516102c591906137d6565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190613399565b610aa8565b005b34801561030357600080fd5b5061030c610bb3565b60405161031991906138b8565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190613283565b610c08565b005b34801561035757600080fd5b50610372600480360381019061036d9190613399565b610c18565b60405161037f91906138b8565b60405180910390f35b610390610e1f565b005b34801561039e57600080fd5b506103b960048036038101906103b49190613283565b610fcb565b005b3480156103c757600080fd5b506103d0610feb565b6040516103dd91906138b8565b60405180910390f35b3480156103f257600080fd5b5061040d6004803603810190610408919061347c565b610ff1565b60405161041a91906138b8565b60405180910390f35b34801561042f57600080fd5b50610438611162565b60405161044591906137bb565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190613433565b611175565b005b34801561048357600080fd5b5061048c61120b565b005b34801561049a57600080fd5b506104b560048036038101906104b0919061347c565b6112e1565b6040516104c29190613754565b60405180910390f35b3480156104d757600080fd5b506104e06112f7565b6040516104ed91906137d6565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190613216565b611385565b60405161052a91906138b8565b60405180910390f35b34801561053f57600080fd5b50610548611455565b005b34801561055657600080fd5b5061055f6114dd565b60405161056c91906137bb565b60405180910390f35b34801561058157600080fd5b5061059c6004803603810190610597919061347c565b6114f0565b005b3480156105aa57600080fd5b506105b3611576565b6040516105c09190613754565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb919061347c565b6115a0565b005b3480156105fe57600080fd5b50610607611626565b60405161061491906137d6565b60405180910390f35b6106376004803603810190610632919061347c565b6116b8565b005b34801561064557600080fd5b50610660600480360381019061065b9190613359565b61184e565b005b34801561066e57600080fd5b506106776119c6565b60405161068491906138b8565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af91906132d6565b6119cc565b005b3480156106c257600080fd5b506106dd60048036038101906106d8919061347c565b611a1f565b6040516106ea91906137d6565b60405180910390f35b3480156106ff57600080fd5b50610708611b6e565b005b34801561071657600080fd5b50610731600480360381019061072c9190613243565b611c44565b60405161073e91906137bb565b60405180910390f35b34801561075357600080fd5b5061076e6004803603810190610769919061347c565b611cd8565b005b34801561077c57600080fd5b5061079760048036038101906107929190613433565b611d5e565b005b3480156107a557600080fd5b506107c060048036038101906107bb9190613216565b611df4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610905575061090482611f0f565b5b9050919050565b60606001805461091b90613b88565b80601f016020809104026020016040519081016040528092919081815260200182805461094790613b88565b80156109945780601f1061096957610100808354040283529160200191610994565b820191906000526020600020905b81548152906001019060200180831161097757829003601f168201915b5050505050905090565b60006109a982611f79565b6109df576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610a2790613b88565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5390613b88565b8015610aa05780601f10610a7557610100808354040283529160200191610aa0565b820191906000526020600020905b815481529060010190602001808311610a8357829003601f168201915b505050505081565b6000610ab3826112e1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3a611fe1565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b6c5750610b6a81610b65611fe1565b611c44565b155b15610ba3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bae838383611fe9565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610c1383838361209b565b505050565b6000610c2383611385565b8210610c5b576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610e13576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d725750610e06565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610db257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e045786841415610dfb578195505050505050610e19565b83806001019450505b505b8080600101915050610c95565b50600080fd5b92915050565b610e27611fe1565b73ffffffffffffffffffffffffffffffffffffffff16610e45611576565b73ffffffffffffffffffffffffffffffffffffffff1614610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290613858565b60405180910390fd5b6000739c0796cd690680ba386450247d32b99243b9a18e73ffffffffffffffffffffffffffffffffffffffff16600a600747610ed79190613a44565b610ee19190613a13565b604051610eed9061373f565b60006040518083038185875af1925050503d8060008114610f2a576040519150601f19603f3d011682016040523d82523d6000602084013e610f2f565b606091505b5050905080610f3d57600080fd5b6000732b0579fa209b8c329292a122ff2996cb68381fe673ffffffffffffffffffffffffffffffffffffffff1647604051610f779061373f565b60006040518083038185875af1925050503d8060008114610fb4576040519150601f19603f3d011682016040523d82523d6000602084013e610fb9565b606091505b5050905080610fc757600080fd5b5050565b610fe6838383604051806020016040528060008152506119cc565b505050565b600d5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561112a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161111c5785831415611113578194505050505061115d565b82806001019350505b508080600101915050611029565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600c60009054906101000a900460ff1681565b61117d611fe1565b73ffffffffffffffffffffffffffffffffffffffff1661119b611576565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613858565b60405180910390fd5b8060089080519060200190611207929190612fe7565b5050565b611213611fe1565b73ffffffffffffffffffffffffffffffffffffffff16611231611576565b73ffffffffffffffffffffffffffffffffffffffff1614611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90613858565b60405180910390fd5b60001515600c60009054906101000a900460ff16151514156112c3576001600c60006101000a81548160ff0219169083151502179055506112df565b6000600c60006101000a81548160ff0219169083151502179055505b565b60006112ec826125b8565b600001519050919050565b6008805461130490613b88565b80601f016020809104026020016040519081016040528092919081815260200182805461133090613b88565b801561137d5780601f106113525761010080835404028352916020019161137d565b820191906000526020600020905b81548152906001019060200180831161136057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ed576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61145d611fe1565b73ffffffffffffffffffffffffffffffffffffffff1661147b611576565b73ffffffffffffffffffffffffffffffffffffffff16146114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890613858565b60405180910390fd5b6114db6000612860565b565b600960009054906101000a900460ff1681565b6114f8611fe1565b73ffffffffffffffffffffffffffffffffffffffff16611516611576565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390613858565b60405180910390fd5b80600e8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115a8611fe1565b73ffffffffffffffffffffffffffffffffffffffff166115c6611576565b73ffffffffffffffffffffffffffffffffffffffff161461161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613858565b60405180910390fd5b80600d8190555050565b60606002805461163590613b88565b80601f016020809104026020016040519081016040528092919081815260200182805461166190613b88565b80156116ae5780601f10611683576101008083540402835291602001916116ae565b820191906000526020600020905b81548152906001019060200180831161169157829003601f168201915b5050505050905090565b600a54816116c4610bb3565b6116ce91906139bd565b111561170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170690613838565b60405180910390fd5b611717611576565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461184157600960009054906101000a900460ff16611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613818565b60405180910390fd5b600e54816117a533611385565b6117af91906139bd565b11156117f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e790613878565b60405180910390fd5b80600d546117fe9190613a44565b341015611840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183790613898565b60405180910390fd5b5b61184b3382612926565b50565b611856611fe1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006118c8611fe1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611975611fe1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ba91906137bb565b60405180910390a35050565b600e5481565b6119d784848461209b565b6119e384848484612944565b611a19576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611a2a82611f79565b611a60576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600c60009054906101000a900460ff1615151415611b0e57600b8054611a8990613b88565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab590613b88565b8015611b025780601f10611ad757610100808354040283529160200191611b02565b820191906000526020600020905b815481529060010190602001808311611ae557829003601f168201915b50505050509050611b69565b600060088054611b1d90613b88565b90501415611b3a5760405180602001604052806000815250611b66565b6008611b4583612ad2565b604051602001611b56929190613710565b6040516020818303038152906040525b90505b919050565b611b76611fe1565b73ffffffffffffffffffffffffffffffffffffffff16611b94611576565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190613858565b60405180910390fd5b60001515600960009054906101000a900460ff1615151415611c26576001600960006101000a81548160ff021916908315150217905550611c42565b6000600960006101000a81548160ff0219169083151502179055505b565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ce0611fe1565b73ffffffffffffffffffffffffffffffffffffffff16611cfe611576565b73ffffffffffffffffffffffffffffffffffffffff1614611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b90613858565b60405180910390fd5b80600a8190555050565b611d66611fe1565b73ffffffffffffffffffffffffffffffffffffffff16611d84611576565b73ffffffffffffffffffffffffffffffffffffffff1614611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd190613858565b60405180910390fd5b80600b9080519060200190611df0929190612fe7565b5050565b611dfc611fe1565b73ffffffffffffffffffffffffffffffffffffffff16611e1a611576565b73ffffffffffffffffffffffffffffffffffffffff1614611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790613858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed7906137f8565b60405180910390fd5b611ee981612860565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611fda575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120a6826125b8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120cd611fe1565b73ffffffffffffffffffffffffffffffffffffffff16148061210057506120ff82600001516120fa611fe1565b611c44565b5b80612145575061210e611fe1565b73ffffffffffffffffffffffffffffffffffffffff1661212d8461099e565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061217e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121e7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561224e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61225b8585856001612c33565b61226b6000848460000151611fe9565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125485760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156125475782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125b18585856001612c39565b5050505050565b6125c061306d565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612829576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161282757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461270b57809250505061285b565b5b60011561282657818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461282157809250505061285b565b61270c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612940828260405180602001604052806000815250612c3f565b5050565b60006129658473ffffffffffffffffffffffffffffffffffffffff16611eec565b15612ac5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261298e611fe1565b8786866040518563ffffffff1660e01b81526004016129b0949392919061376f565b602060405180830381600087803b1580156129ca57600080fd5b505af19250505080156129fb57506040513d601f19601f820116820180604052508101906129f89190613406565b60015b612a75573d8060008114612a2b576040519150601f19603f3d011682016040523d82523d6000602084013e612a30565b606091505b50600081511415612a6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aca565b600190505b949350505050565b60606000821415612b1a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c2e565b600082905060005b60008214612b4c578080612b3590613beb565b915050600a82612b459190613a13565b9150612b22565b60008167ffffffffffffffff811115612b6857612b67613d21565b5b6040519080825280601f01601f191660200182016040528015612b9a5781602001600182028036833780820191505090505b5090505b60008514612c2757600182612bb39190613a9e565b9150600a85612bc29190613c34565b6030612bce91906139bd565b60f81b818381518110612be457612be3613cf2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c209190613a13565b9450612b9e565b8093505050505b919050565b50505050565b50505050565b612c4c8383836001612c51565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612cec576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612d27576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d346000868387612c33565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612f9957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612f4d5750612f4b6000888488612944565b155b15612f84576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612ed2565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050612fe06000868387612c39565b5050505050565b828054612ff390613b88565b90600052602060002090601f016020900481019282613015576000855561305c565b82601f1061302e57805160ff191683800117855561305c565b8280016001018555821561305c579182015b8281111561305b578251825591602001919060010190613040565b5b50905061306991906130b0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156130c95760008160009055506001016130b1565b5090565b60006130e06130db846138f8565b6138d3565b9050828152602081018484840111156130fc576130fb613d55565b5b613107848285613b46565b509392505050565b600061312261311d84613929565b6138d3565b90508281526020810184848401111561313e5761313d613d55565b5b613149848285613b46565b509392505050565b60008135905061316081613ebd565b92915050565b60008135905061317581613ed4565b92915050565b60008135905061318a81613eeb565b92915050565b60008151905061319f81613eeb565b92915050565b600082601f8301126131ba576131b9613d50565b5b81356131ca8482602086016130cd565b91505092915050565b600082601f8301126131e8576131e7613d50565b5b81356131f884826020860161310f565b91505092915050565b60008135905061321081613f02565b92915050565b60006020828403121561322c5761322b613d5f565b5b600061323a84828501613151565b91505092915050565b6000806040838503121561325a57613259613d5f565b5b600061326885828601613151565b925050602061327985828601613151565b9150509250929050565b60008060006060848603121561329c5761329b613d5f565b5b60006132aa86828701613151565b93505060206132bb86828701613151565b92505060406132cc86828701613201565b9150509250925092565b600080600080608085870312156132f0576132ef613d5f565b5b60006132fe87828801613151565b945050602061330f87828801613151565b935050604061332087828801613201565b925050606085013567ffffffffffffffff81111561334157613340613d5a565b5b61334d878288016131a5565b91505092959194509250565b600080604083850312156133705761336f613d5f565b5b600061337e85828601613151565b925050602061338f85828601613166565b9150509250929050565b600080604083850312156133b0576133af613d5f565b5b60006133be85828601613151565b92505060206133cf85828601613201565b9150509250929050565b6000602082840312156133ef576133ee613d5f565b5b60006133fd8482850161317b565b91505092915050565b60006020828403121561341c5761341b613d5f565b5b600061342a84828501613190565b91505092915050565b60006020828403121561344957613448613d5f565b5b600082013567ffffffffffffffff81111561346757613466613d5a565b5b613473848285016131d3565b91505092915050565b60006020828403121561349257613491613d5f565b5b60006134a084828501613201565b91505092915050565b6134b281613ad2565b82525050565b6134c181613ae4565b82525050565b60006134d28261396f565b6134dc8185613985565b93506134ec818560208601613b55565b6134f581613d64565b840191505092915050565b600061350b8261397a565b61351581856139a1565b9350613525818560208601613b55565b61352e81613d64565b840191505092915050565b60006135448261397a565b61354e81856139b2565b935061355e818560208601613b55565b80840191505092915050565b6000815461357781613b88565b61358181866139b2565b9450600182166000811461359c57600181146135ad576135e0565b60ff198316865281860193506135e0565b6135b68561395a565b60005b838110156135d8578154818901526001820191506020810190506135b9565b838801955050505b50505092915050565b60006135f66026836139a1565b915061360182613d75565b604082019050919050565b60006136196012836139a1565b915061362482613dc4565b602082019050919050565b600061363c6016836139a1565b915061364782613ded565b602082019050919050565b600061365f6005836139b2565b915061366a82613e16565b600582019050919050565b60006136826020836139a1565b915061368d82613e3f565b602082019050919050565b60006136a56018836139a1565b91506136b082613e68565b602082019050919050565b60006136c8600083613996565b91506136d382613e91565b600082019050919050565b60006136eb6015836139a1565b91506136f682613e94565b602082019050919050565b61370a81613b3c565b82525050565b600061371c828561356a565b91506137288284613539565b915061373382613652565b91508190509392505050565b600061374a826136bb565b9150819050919050565b600060208201905061376960008301846134a9565b92915050565b600060808201905061378460008301876134a9565b61379160208301866134a9565b61379e6040830185613701565b81810360608301526137b081846134c7565b905095945050505050565b60006020820190506137d060008301846134b8565b92915050565b600060208201905081810360008301526137f08184613500565b905092915050565b60006020820190508181036000830152613811816135e9565b9050919050565b600060208201905081810360008301526138318161360c565b9050919050565b600060208201905081810360008301526138518161362f565b9050919050565b6000602082019050818103600083015261387181613675565b9050919050565b6000602082019050818103600083015261389181613698565b9050919050565b600060208201905081810360008301526138b1816136de565b9050919050565b60006020820190506138cd6000830184613701565b92915050565b60006138dd6138ee565b90506138e98282613bba565b919050565b6000604051905090565b600067ffffffffffffffff82111561391357613912613d21565b5b61391c82613d64565b9050602081019050919050565b600067ffffffffffffffff82111561394457613943613d21565b5b61394d82613d64565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006139c882613b3c565b91506139d383613b3c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a0857613a07613c65565b5b828201905092915050565b6000613a1e82613b3c565b9150613a2983613b3c565b925082613a3957613a38613c94565b5b828204905092915050565b6000613a4f82613b3c565b9150613a5a83613b3c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a9357613a92613c65565b5b828202905092915050565b6000613aa982613b3c565b9150613ab483613b3c565b925082821015613ac757613ac6613c65565b5b828203905092915050565b6000613add82613b1c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b73578082015181840152602081019050613b58565b83811115613b82576000848401525b50505050565b60006002820490506001821680613ba057607f821691505b60208210811415613bb457613bb3613cc3565b5b50919050565b613bc382613d64565b810181811067ffffffffffffffff82111715613be257613be1613d21565b5b80604052505050565b6000613bf682613b3c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c2957613c28613c65565b5b600182019050919050565b6000613c3f82613b3c565b9150613c4a83613b3c565b925082613c5a57613c59613c94565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f7075626c6963206d696e74206973206f66660000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5065722077616c6c6574206c696d697420726561636865640000000000000000600082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b613ec681613ad2565b8114613ed157600080fd5b50565b613edd81613ae4565b8114613ee857600080fd5b50565b613ef481613af0565b8114613eff57600080fd5b50565b613f0b81613b3c565b8114613f1657600080fd5b5056fea2646970667358221220066c79727b145646e725a4e72f9435728cea3bd026f9f542cae250384efc27fe64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569636f36753734766e3463666f627675706e7967616f36726e36327a696f786b65706666376d377572637232796c376567756e6b652f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://bafybeico6u74vn4cfobvupnygao6rn62zioxkepff7m7urcr2yl7egunke/
Arg [1] : _initNotRevealedUri (string):

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 697066733a2f2f62616679626569636f36753734766e3463666f627675706e79
Arg [4] : 67616f36726e36327a696f786b65706666376d377572637232796c376567756e
Arg [5] : 6b652f0000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

108:3013:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6211:372:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8821:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10324:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;297:28:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9887:371:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3448:280;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11181:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5034:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2287:337:9;;;:::i;:::-;;11422:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;374:42:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4021:713:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;338:27:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3006:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1720:177;;;;;;;;;;;;;:::i;:::-;;8630:124:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;188:21:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6647:206:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1712:103:10;;;;;;;;;;;;;:::i;:::-;;218:37:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2766:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1061:87:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2638:120:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8990:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;684:512:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10600:279:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;423:33:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11678:342:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1207:361:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:220;;;;;;;;;;;;;:::i;:::-;;10950:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2894:104:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2148:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1970:201:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6211:372:3;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;8821:100::-;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;297:28:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9887:371:3:-;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;5034:1105::-;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;2287:337:9:-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2344:9:9::1;2366:42;2358:56;;2447:2;2445:1;2422:21;:24;;;;:::i;:::-;:27;;;;:::i;:::-;2358:96;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2343:111;;;2469:4;2461:13;;;::::0;::::1;;2484:10;2507:42;2499:56;;2563:21;2499:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2483:106;;;2604:5;2596:14;;;::::0;::::1;;2332:292;;2287:337::o:0;11422:185:3:-;11560:39;11577:4;11583:2;11587:7;11560:39;;;;;;;;;;;;:16;:39::i;:::-;11422:185;;;:::o;374:42:9:-;;;;:::o;4021:713:3:-;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;338:27:9:-;;;;;;;;;;;;;:::o;3006:103::-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3091:11:9::1;3081:7;:21;;;;;;;;;;;;:::i;:::-;;3006:103:::0;:::o;1720:177::-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1795:5:9::1;1785:15;;:8;;;;;;;;;;;:15;;;1782:108;;;1827:4;1816:8;;:15;;;;;;;;;;;;;;;;;;1782:108;;;1873:5;1862:8;;:16;;;;;;;;;;;;;;;;;;1782:108;1720:177::o:0;8630:124:3:-;8694:7;8721:20;8733:7;8721:11;:20::i;:::-;:25;;;8714:32;;8630:124;;;:::o;188:21:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6647:206:3:-;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:10:-;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;218:37:9:-;;;;;;;;;;;;;:::o;2766:120::-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2863:15:9::1;2846:14;:32;;;;2766:120:::0;:::o;1061:87:10:-;1107:7;1134:6;;;;;;;;;;;1127:13;;1061:87;:::o;2638:120:9:-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2735:15:9::1;2718:14;:32;;;;2638:120:::0;:::o;8990:104:3:-;9046:13;9079:7;9072:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8990:104;:::o;684:512:9:-;779:10;;767:8;751:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;743:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;847:7;:5;:7::i;:::-;833:21;;:10;:21;;;829:316;;879:18;;;;;;;;;;;871:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;979:14;;967:8;943:21;953:10;943:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;935:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;1075:8;1058:14;;:25;;;;:::i;:::-;1044:9;:40;;1036:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;829:316;1155:31;1165:10;1177:8;1155:9;:31::i;:::-;684:512;:::o;10600:279:3:-;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;423:33:9:-;;;;:::o;11678:342:3:-;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;1207:361:9:-;1280:13;1311:16;1319:7;1311;:16::i;:::-;1306:59;;1336:29;;;;;;;;;;;;;;1306:59;1389:5;1377:17;;:8;;;;;;;;;;;:17;;;1374:66;;;1414:14;1407:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1374:66;1490:1;1471:7;1465:21;;;;;:::i;:::-;;;:26;;:95;;;;;;;;;;;;;;;;;1518:7;1527:18;:7;:16;:18::i;:::-;1501:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1465:95;1458:102;;1207:361;;;;:::o;1918:220::-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2016:5:9::1;1996:25;;:18;;;;;;;;;;;:25;;;1993:138;;;2058:4;2037:18;;:25;;;;;;;;;;;;;;;;;;1993:138;;;2114:5;2093:18;;:26;;;;;;;;;;;;;;;;;;1993:138;1918:220::o:0;10950:164:3:-;11047:4;11071:18;:25;11090:5;11071:25;;;;;;;;;;;;;;;:35;11097:8;11071:35;;;;;;;;;;;;;;;;;;;;;;;;;11064:42;;10950:164;;;;:::o;2894:104:9:-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2979:11:9::1;2966:10;:24;;;;2894:104:::0;:::o;2148:126::-;1292:12:10;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2251:15:9::1;2234:14;:32;;;;;;;;;;;;:::i;:::-;;2148:126:::0;:::o;1970:201:10:-;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;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;852:157:2:-;937:4;976:25;961:40;;;:11;:40;;;;954:47;;852:157;;;:::o;12275:144:3:-;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;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;19491:196:3:-;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;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:10:-;2405:16;2424:6;;;;;;;;;;;2405:25;;2450:8;2441:6;;:17;;;;;;;;;;;;;;;;;;2505:8;2474:40;;2495:8;2474:40;;;;;;;;;;;;2394:128;2331:191;:::o;12427:104:3:-;12496:27;12506:2;12510:8;12496:27;;;;;;;;;;;;:9;:27::i;:::-;12427:104;;:::o;20252:790::-;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:11:-;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:3:-;;;;;:::o;22508:158::-;;;;;:::o;12894:163::-;13017:32;13023:2;13027:8;13037:5;13044:4;13017:5;:32::i;:::-;12894:163;;;:::o;13316:1422::-;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:12:-;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;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:400::-;10667:3;10688:84;10770:1;10765:3;10688:84;:::i;:::-;10681:91;;10781:93;10870:3;10781:93;:::i;:::-;10899:1;10894:3;10890:11;10883:18;;10507:400;;;:::o;10913:366::-;11055:3;11076:67;11140:2;11135:3;11076:67;:::i;:::-;11069:74;;11152:93;11241:3;11152:93;:::i;:::-;11270:2;11265:3;11261:12;11254:19;;10913:366;;;:::o;11285:::-;11427:3;11448:67;11512:2;11507:3;11448:67;:::i;:::-;11441:74;;11524:93;11613:3;11524:93;:::i;:::-;11642:2;11637:3;11633:12;11626:19;;11285:366;;;:::o;11657:398::-;11816:3;11837:83;11918:1;11913:3;11837:83;:::i;:::-;11830:90;;11929:93;12018:3;11929:93;:::i;:::-;12047:1;12042:3;12038:11;12031:18;;11657:398;;;:::o;12061:366::-;12203:3;12224:67;12288:2;12283:3;12224:67;:::i;:::-;12217:74;;12300:93;12389:3;12300:93;:::i;:::-;12418:2;12413:3;12409:12;12402:19;;12061:366;;;:::o;12433:118::-;12520:24;12538:5;12520:24;:::i;:::-;12515:3;12508:37;12433:118;;:::o;12557:695::-;12835:3;12857:92;12945:3;12936:6;12857:92;:::i;:::-;12850:99;;12966:95;13057:3;13048:6;12966:95;:::i;:::-;12959:102;;13078:148;13222:3;13078:148;:::i;:::-;13071:155;;13243:3;13236:10;;12557:695;;;;;:::o;13258:379::-;13442:3;13464:147;13607:3;13464:147;:::i;:::-;13457:154;;13628:3;13621:10;;13258:379;;;:::o;13643:222::-;13736:4;13774:2;13763:9;13759:18;13751:26;;13787:71;13855:1;13844:9;13840:17;13831:6;13787:71;:::i;:::-;13643:222;;;;:::o;13871:640::-;14066:4;14104:3;14093:9;14089:19;14081:27;;14118:71;14186:1;14175:9;14171:17;14162:6;14118:71;:::i;:::-;14199:72;14267:2;14256:9;14252:18;14243:6;14199:72;:::i;:::-;14281;14349:2;14338:9;14334:18;14325:6;14281:72;:::i;:::-;14400:9;14394:4;14390:20;14385:2;14374:9;14370:18;14363:48;14428:76;14499:4;14490:6;14428:76;:::i;:::-;14420:84;;13871:640;;;;;;;:::o;14517:210::-;14604:4;14642:2;14631:9;14627:18;14619:26;;14655:65;14717:1;14706:9;14702:17;14693:6;14655:65;:::i;:::-;14517:210;;;;:::o;14733:313::-;14846:4;14884:2;14873:9;14869:18;14861:26;;14933:9;14927:4;14923:20;14919:1;14908:9;14904:17;14897:47;14961:78;15034:4;15025:6;14961:78;:::i;:::-;14953:86;;14733:313;;;;:::o;15052:419::-;15218:4;15256:2;15245:9;15241:18;15233:26;;15305:9;15299:4;15295:20;15291:1;15280:9;15276:17;15269:47;15333:131;15459:4;15333:131;:::i;:::-;15325:139;;15052:419;;;:::o;15477:::-;15643:4;15681:2;15670:9;15666:18;15658:26;;15730:9;15724:4;15720:20;15716:1;15705:9;15701:17;15694:47;15758:131;15884:4;15758:131;:::i;:::-;15750:139;;15477:419;;;:::o;15902:::-;16068:4;16106:2;16095:9;16091:18;16083:26;;16155:9;16149:4;16145:20;16141:1;16130:9;16126:17;16119:47;16183:131;16309:4;16183:131;:::i;:::-;16175:139;;15902:419;;;:::o;16327:::-;16493:4;16531:2;16520:9;16516:18;16508:26;;16580:9;16574:4;16570:20;16566:1;16555:9;16551:17;16544:47;16608:131;16734:4;16608:131;:::i;:::-;16600:139;;16327:419;;;:::o;16752:::-;16918:4;16956:2;16945:9;16941:18;16933:26;;17005:9;16999:4;16995:20;16991:1;16980:9;16976:17;16969:47;17033:131;17159:4;17033:131;:::i;:::-;17025:139;;16752:419;;;:::o;17177:::-;17343:4;17381:2;17370:9;17366:18;17358:26;;17430:9;17424:4;17420:20;17416:1;17405:9;17401:17;17394:47;17458:131;17584:4;17458:131;:::i;:::-;17450:139;;17177:419;;;:::o;17602:222::-;17695:4;17733:2;17722:9;17718:18;17710:26;;17746:71;17814:1;17803:9;17799:17;17790:6;17746:71;:::i;:::-;17602:222;;;;:::o;17830:129::-;17864:6;17891:20;;:::i;:::-;17881:30;;17920:33;17948:4;17940:6;17920:33;:::i;:::-;17830:129;;;:::o;17965:75::-;17998:6;18031:2;18025:9;18015:19;;17965:75;:::o;18046:307::-;18107:4;18197:18;18189:6;18186:30;18183:56;;;18219:18;;:::i;:::-;18183:56;18257:29;18279:6;18257:29;:::i;:::-;18249:37;;18341:4;18335;18331:15;18323:23;;18046:307;;;:::o;18359:308::-;18421:4;18511:18;18503:6;18500:30;18497:56;;;18533:18;;:::i;:::-;18497:56;18571:29;18593:6;18571:29;:::i;:::-;18563:37;;18655:4;18649;18645:15;18637:23;;18359:308;;;:::o;18673:141::-;18722:4;18745:3;18737:11;;18768:3;18765:1;18758:14;18802:4;18799:1;18789:18;18781:26;;18673:141;;;:::o;18820:98::-;18871:6;18905:5;18899:12;18889:22;;18820:98;;;:::o;18924:99::-;18976:6;19010:5;19004:12;18994:22;;18924:99;;;:::o;19029:168::-;19112:11;19146:6;19141:3;19134:19;19186:4;19181:3;19177:14;19162:29;;19029:168;;;;:::o;19203:147::-;19304:11;19341:3;19326:18;;19203:147;;;;:::o;19356:169::-;19440:11;19474:6;19469:3;19462:19;19514:4;19509:3;19505:14;19490:29;;19356:169;;;;:::o;19531:148::-;19633:11;19670:3;19655:18;;19531:148;;;;:::o;19685:305::-;19725:3;19744:20;19762:1;19744:20;:::i;:::-;19739:25;;19778:20;19796:1;19778:20;:::i;:::-;19773:25;;19932:1;19864:66;19860:74;19857:1;19854:81;19851:107;;;19938:18;;:::i;:::-;19851:107;19982:1;19979;19975:9;19968:16;;19685:305;;;;:::o;19996:185::-;20036:1;20053:20;20071:1;20053:20;:::i;:::-;20048:25;;20087:20;20105:1;20087:20;:::i;:::-;20082:25;;20126:1;20116:35;;20131:18;;:::i;:::-;20116:35;20173:1;20170;20166:9;20161:14;;19996:185;;;;:::o;20187:348::-;20227:7;20250:20;20268:1;20250:20;:::i;:::-;20245:25;;20284:20;20302:1;20284:20;:::i;:::-;20279:25;;20472:1;20404:66;20400:74;20397:1;20394:81;20389:1;20382:9;20375:17;20371:105;20368:131;;;20479:18;;:::i;:::-;20368:131;20527:1;20524;20520:9;20509:20;;20187:348;;;;:::o;20541:191::-;20581:4;20601:20;20619:1;20601:20;:::i;:::-;20596:25;;20635:20;20653:1;20635:20;:::i;:::-;20630:25;;20674:1;20671;20668:8;20665:34;;;20679:18;;:::i;:::-;20665:34;20724:1;20721;20717:9;20709:17;;20541:191;;;;:::o;20738:96::-;20775:7;20804:24;20822:5;20804:24;:::i;:::-;20793:35;;20738:96;;;:::o;20840:90::-;20874:7;20917:5;20910:13;20903:21;20892:32;;20840:90;;;:::o;20936:149::-;20972:7;21012:66;21005:5;21001:78;20990:89;;20936:149;;;:::o;21091:126::-;21128:7;21168:42;21161:5;21157:54;21146:65;;21091:126;;;:::o;21223:77::-;21260:7;21289:5;21278:16;;21223:77;;;:::o;21306:154::-;21390:6;21385:3;21380;21367:30;21452:1;21443:6;21438:3;21434:16;21427:27;21306:154;;;:::o;21466:307::-;21534:1;21544:113;21558:6;21555:1;21552:13;21544:113;;;21643:1;21638:3;21634:11;21628:18;21624:1;21619:3;21615:11;21608:39;21580:2;21577:1;21573:10;21568:15;;21544:113;;;21675:6;21672:1;21669:13;21666:101;;;21755:1;21746:6;21741:3;21737:16;21730:27;21666:101;21515:258;21466:307;;;:::o;21779:320::-;21823:6;21860:1;21854:4;21850:12;21840:22;;21907:1;21901:4;21897:12;21928:18;21918:81;;21984:4;21976:6;21972:17;21962:27;;21918:81;22046:2;22038:6;22035:14;22015:18;22012:38;22009:84;;;22065:18;;:::i;:::-;22009:84;21830:269;21779:320;;;:::o;22105:281::-;22188:27;22210:4;22188:27;:::i;:::-;22180:6;22176:40;22318:6;22306:10;22303:22;22282:18;22270:10;22267:34;22264:62;22261:88;;;22329:18;;:::i;:::-;22261:88;22369:10;22365:2;22358:22;22148:238;22105:281;;:::o;22392:233::-;22431:3;22454:24;22472:5;22454:24;:::i;:::-;22445:33;;22500:66;22493:5;22490:77;22487:103;;;22570:18;;:::i;:::-;22487:103;22617:1;22610:5;22606:13;22599:20;;22392:233;;;:::o;22631:176::-;22663:1;22680:20;22698:1;22680:20;:::i;:::-;22675:25;;22714:20;22732:1;22714:20;:::i;:::-;22709:25;;22753:1;22743:35;;22758:18;;:::i;:::-;22743:35;22799:1;22796;22792:9;22787:14;;22631:176;;;;:::o;22813:180::-;22861:77;22858:1;22851:88;22958:4;22955:1;22948:15;22982:4;22979:1;22972:15;22999:180;23047:77;23044:1;23037:88;23144:4;23141:1;23134:15;23168:4;23165:1;23158:15;23185:180;23233:77;23230:1;23223:88;23330:4;23327:1;23320:15;23354:4;23351:1;23344:15;23371:180;23419:77;23416:1;23409:88;23516:4;23513:1;23506:15;23540:4;23537:1;23530:15;23557:180;23605:77;23602:1;23595:88;23702:4;23699:1;23692:15;23726:4;23723:1;23716:15;23743:117;23852:1;23849;23842:12;23866:117;23975:1;23972;23965:12;23989:117;24098:1;24095;24088:12;24112:117;24221:1;24218;24211:12;24235:102;24276:6;24327:2;24323:7;24318:2;24311:5;24307:14;24303:28;24293:38;;24235:102;;;:::o;24343:225::-;24483:34;24479:1;24471:6;24467:14;24460:58;24552:8;24547:2;24539:6;24535:15;24528:33;24343:225;:::o;24574:168::-;24714:20;24710:1;24702:6;24698:14;24691:44;24574:168;:::o;24748:172::-;24888:24;24884:1;24876:6;24872:14;24865:48;24748:172;:::o;24926:155::-;25066:7;25062:1;25054:6;25050:14;25043:31;24926:155;:::o;25087:182::-;25227:34;25223:1;25215:6;25211:14;25204:58;25087:182;:::o;25275:174::-;25415:26;25411:1;25403:6;25399:14;25392:50;25275:174;:::o;25455:114::-;;:::o;25575:171::-;25715:23;25711:1;25703:6;25699:14;25692:47;25575:171;:::o;25752:122::-;25825:24;25843:5;25825:24;:::i;:::-;25818:5;25815:35;25805:63;;25864:1;25861;25854:12;25805:63;25752:122;:::o;25880:116::-;25950:21;25965:5;25950:21;:::i;:::-;25943:5;25940:32;25930:60;;25986:1;25983;25976:12;25930:60;25880:116;:::o;26002:120::-;26074:23;26091:5;26074:23;:::i;:::-;26067:5;26064:34;26054:62;;26112:1;26109;26102:12;26054:62;26002:120;:::o;26128:122::-;26201:24;26219:5;26201:24;:::i;:::-;26194:5;26191:35;26181:63;;26240:1;26237;26230:12;26181:63;26128:122;:::o

Swarm Source

ipfs://066c79727b145646e725a4e72f9435728cea3bd026f9f542cae250384efc27fe
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.