ETH Price: $3,497.08 (+2.23%)
Gas: 3 Gwei

Token

Aterium Universe (AU)
 

Overview

Max Total Supply

1,111 AU

Holders

612

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
cepod.eth
Balance
2 AU
0xd4bb9bd38319e396c5a1b7b5d3dfb0cc871a6579
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Aterium Universe 1111 Genesis Collection with five characters based on a comic.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Aterium_Universe

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

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



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


    string public baseURI;
    string public notRevealedUri;

    uint256 public nftPerAddressLimit = 2;

    bool public revealed = false;
    bool public paused = false;

    uint256 MAX_SUPPLY = 1111;

    uint256 public whitelistCost = 0.08 ether;
    uint256 public publicSaleCost = 0.1 ether;

    uint256 public whitelistStartDate = 1651309200;
    uint256 public whitelistEndDate = 1651395600;

    uint256 public publicSaleStartDate = 1651395660;
    

    bytes32 public whitelistSigner1 = 0x835a9597d2a7b6df10009654ee02cbfcb3af51f33df060865f5d4339438b4232;
    bytes32 public whitelistSigner2 = 0x7e3d3817b0612c91e03819a0b9b7faec7401eecf8fa3a1d9c51eec6fb768a30e;

    mapping(address => bool) public whitelist1_Claimed;
    mapping(address => uint256) whitelist2_Claimed;




    constructor(string memory _initBaseURI, string memory _initNotRevealedUri) ERC721A("Aterium Universe", "AU") {
    
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
    }

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

        if (msg.sender != owner()) {
            require(balanceOf(msg.sender) + quantity <= nftPerAddressLimit,"Per wallet Max Mint Exceeds");
            require(publicSaleStartDate <= block.timestamp,"Mint is Allowed after PublicSale Started ");
            require(msg.value >= (publicSaleCost * quantity), "Not enough ether sent");          
           
        }
        _safeMint(msg.sender, quantity);

    }

   
    // whitelist minting 1

   function whitelistMint_1(bytes32[] calldata  _proof) payable public{

   require(balanceOf(msg.sender) < nftPerAddressLimit, "Per wallet Max Mint Exceeds");

   require(whitelistStartDate <= block.timestamp, "Whitelist Session Not Started yet");
   require(whitelistEndDate >= block.timestamp, "Whitelist Session Has Ended");
   
   require(!whitelist1_Claimed[msg.sender], "Already Claimed");
   require(msg.value >= whitelistCost, "insufficient funds");

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

   whitelist1_Claimed[msg.sender] = true;     
    
   _safeMint(msg.sender, 1);
    
  
  }


     // whitelist minting 2

   function whitelistMint_2(bytes32[] calldata  _proof,uint256 _quantity) payable public{

   require(balanceOf(msg.sender) + _quantity <= nftPerAddressLimit, "Per wallet Max Mint Exceeds");

   require(whitelistStartDate <= block.timestamp, "Whitelist Session Not Started yet");
   require(whitelistEndDate >= block.timestamp, "Whitelist Session Has Ended");
   
   require(whitelist2_Claimed[msg.sender] + _quantity <= 2, "Already Claimed 2");
   require(msg.value >= whitelistCost * _quantity, "insufficient funds");

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

   whitelist2_Claimed[msg.sender] = whitelist2_Claimed[msg.sender] + _quantity;     
    
   _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 setNftPerAddressLimit(uint256 _limit) public onlyOwner {
        nftPerAddressLimit = _limit;
    }
  
    function setWhitelistSigner1(bytes32 newWhitelistSigner1) external onlyOwner {
        whitelistSigner1 = newWhitelistSigner1;
    }

     function setWhitelistSigner2(bytes32 newWhitelistSigner2) external onlyOwner {
        whitelistSigner2 = newWhitelistSigner2;
    }

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

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


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

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

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

  function setPublicSaleDates(uint256 _publicSaleStartDate) public onlyOwner {
        publicSaleStartDate = _publicSaleStartDate;
    }

    function setWhitelistDates(uint256  _whitelistStartDate, uint256  _whitelistEndDate ) public onlyOwner {
        whitelistStartDate = _whitelistStartDate;
        whitelistEndDate   = _whitelistEndDate;
    }
  
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "IERC165.sol";

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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


/*

pragma solidity ^0.8.0;



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

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

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

pragma solidity ^0.8.0;

import "Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"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":[{"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":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","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":"uint256","name":"_publicSaleStartDate","type":"uint256"}],"name":"setPublicSaleDates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistCost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistStartDate","type":"uint256"},{"internalType":"uint256","name":"_whitelistEndDate","type":"uint256"}],"name":"setWhitelistDates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newWhitelistSigner1","type":"bytes32"}],"name":"setWhitelistSigner1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newWhitelistSigner2","type":"bytes32"}],"name":"setWhitelistSigner2","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":[{"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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist1_Claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint_1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint_2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSigner1","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSigner2","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStartDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526002600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff021916908315150217905550610457600c5567011c37937e080000600d5567016345785d8a0000600e5563626cfa90600f5563626e4c1060105563626e4c4c6011557f835a9597d2a7b6df10009654ee02cbfcb3af51f33df060865f5d4339438b423260001b6012557f7e3d3817b0612c91e03819a0b9b7faec7401eecf8fa3a1d9c51eec6fb768a30e60001b601355348015620000d057600080fd5b50604051620057cd380380620057cd8339818101604052810190620000f691906200055c565b6040518060400160405280601081526020017f4174657269756d20556e697665727365000000000000000000000000000000008152506040518060400160405280600281526020017f415500000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200017a9291906200042e565b508060029080519060200190620001939291906200042e565b505050620001b6620001aa620001e060201b60201c565b620001e860201b60201c565b620001c782620002ae60201b60201c565b620001d8816200035960201b60201c565b5050620007e8565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002be620001e060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e46200040460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003349062000608565b60405180910390fd5b8060089080519060200190620003559291906200042e565b5050565b62000369620001e060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200038f6200040460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003df9062000608565b60405180910390fd5b8060099080519060200190620004009291906200042e565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200043c90620006d0565b90600052602060002090601f016020900481019282620004605760008555620004ac565b82601f106200047b57805160ff1916838001178555620004ac565b82800160010185558215620004ac579182015b82811115620004ab5782518255916020019190600101906200048e565b5b509050620004bb9190620004bf565b5090565b5b80821115620004da576000816000905550600101620004c0565b5090565b6000620004f5620004ef8462000653565b6200062a565b9050828152602081018484840111156200051457620005136200079f565b5b620005218482856200069a565b509392505050565b600082601f8301126200054157620005406200079a565b5b815162000553848260208601620004de565b91505092915050565b60008060408385031215620005765762000575620007a9565b5b600083015167ffffffffffffffff811115620005975762000596620007a4565b5b620005a58582860162000529565b925050602083015167ffffffffffffffff811115620005c957620005c8620007a4565b5b620005d78582860162000529565b9150509250929050565b6000620005f060208362000689565b9150620005fd82620007bf565b602082019050919050565b600060208201905081810360008301526200062381620005e1565b9050919050565b60006200063662000649565b905062000644828262000706565b919050565b6000604051905090565b600067ffffffffffffffff8211156200067157620006706200076b565b5b6200067c82620007ae565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006ba5780820151818401526020810190506200069d565b83811115620006ca576000848401525b50505050565b60006002820490506001821680620006e957607f821691505b602082108114156200070057620006ff6200073c565b5b50919050565b6200071182620007ae565b810181811067ffffffffffffffff821117156200073357620007326200076b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614fd580620007f86000396000f3fe6080604052600436106102885760003560e01c80636c0360eb1161015a578063bd05d59d116100c1578063dfb25a7d1161007a578063dfb25a7d1461097d578063e7b99ec7146109a8578063e985e9c5146109d3578063f194a79014610a10578063f2c4ce1e14610a2c578063f2fde38b14610a5557610288565b8063bd05d59d14610871578063c79804811461089a578063c87b56dd146108c5578063d0eb26b014610902578063d13805a51461092b578063d49479eb1461095457610288565b806395d89b411161011357806395d89b41146107845780639cf49330146107af578063a0712d68146107d8578063a22cb465146107f4578063b88d4fde1461081d578063ba7d2c761461084657610288565b80636c0360eb146106865780636e26c5ee146106b157806370a08231146106dc578063715018a6146107195780638da5cb5b146107305780638dbb7c061461075b57610288565b80633ccfd60b116101fe578063527256bd116101b7578063527256bd1461059957806355f804b3146105c2578063593c5155146105eb5780635b8ad429146106075780635c975abb1461061e5780636352211e1461064957610288565b80633ccfd60b146104a857806342842e0e146104b2578063453afb0f146104db5780634f389b3f146105065780634f6ccce714610531578063518302271461056e57610288565b8063081c8c4411610250578063081c8c4414610398578063095ea7b3146103c357806314be6237146103ec57806318160ddd1461041757806323b872dd146104425780632f745c591461046b57610288565b8063019be3551461028d57806301ffc9a7146102ca57806302329a291461030757806306fdde0314610330578063081812fc1461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613d10565b610a7e565b6040516102c19190614575565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613fda565b610a9e565b6040516102fe9190614575565b60405180910390f35b34801561031357600080fd5b5061032e60048036038101906103299190613f80565b610be8565b005b34801561033c57600080fd5b50610345610c81565b60405161035291906145ab565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d919061407d565b610d13565b60405161038f919061450e565b60405180910390f35b3480156103a457600080fd5b506103ad610d8f565b6040516103ba91906145ab565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190613e93565b610e1d565b005b3480156103f857600080fd5b50610401610f28565b60405161040e9190614590565b60405180910390f35b34801561042357600080fd5b5061042c610f2e565b604051610439919061476d565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190613d7d565b610f83565b005b34801561047757600080fd5b50610492600480360381019061048d9190613e93565b610f93565b60405161049f919061476d565b60405180910390f35b6104b061119a565b005b3480156104be57600080fd5b506104d960048036038101906104d49190613d7d565b611296565b005b3480156104e757600080fd5b506104f06112b6565b6040516104fd919061476d565b60405180910390f35b34801561051257600080fd5b5061051b6112bc565b604051610528919061476d565b60405180910390f35b34801561053d57600080fd5b506105586004803603810190610553919061407d565b6112c2565b604051610565919061476d565b60405180910390f35b34801561057a57600080fd5b50610583611433565b6040516105909190614575565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb919061407d565b611446565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190614034565b6114cc565b005b61060560048036038101906106009190613ed3565b611562565b005b34801561061357600080fd5b5061061c6117ea565b005b34801561062a57600080fd5b506106336118c0565b6040516106409190614575565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b919061407d565b6118d3565b60405161067d919061450e565b60405180910390f35b34801561069257600080fd5b5061069b6118e9565b6040516106a891906145ab565b60405180910390f35b3480156106bd57600080fd5b506106c6611977565b6040516106d39190614590565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613d10565b61197d565b604051610710919061476d565b60405180910390f35b34801561072557600080fd5b5061072e611a4d565b005b34801561073c57600080fd5b50610745611ad5565b604051610752919061450e565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d919061407d565b611aff565b005b34801561079057600080fd5b50610799611b85565b6040516107a691906145ab565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906140aa565b611c17565b005b6107f260048036038101906107ed919061407d565b611ca5565b005b34801561080057600080fd5b5061081b60048036038101906108169190613e53565b611e81565b005b34801561082957600080fd5b50610844600480360381019061083f9190613dd0565b611ff9565b005b34801561085257600080fd5b5061085b61204c565b604051610868919061476d565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190613fad565b612052565b005b3480156108a657600080fd5b506108af6120d8565b6040516108bc919061476d565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e7919061407d565b6120de565b6040516108f991906145ab565b60405180910390f35b34801561090e57600080fd5b506109296004803603810190610924919061407d565b61222d565b005b34801561093757600080fd5b50610952600480360381019061094d9190613fad565b6122b3565b005b34801561096057600080fd5b5061097b6004803603810190610976919061407d565b612339565b005b34801561098957600080fd5b506109926123bf565b60405161099f919061476d565b60405180910390f35b3480156109b457600080fd5b506109bd6123c5565b6040516109ca919061476d565b60405180910390f35b3480156109df57600080fd5b506109fa60048036038101906109f59190613d3d565b6123cb565b604051610a079190614575565b60405180910390f35b610a2a6004803603810190610a259190613f20565b61245f565b005b348015610a3857600080fd5b50610a536004803603810190610a4e9190614034565b612735565b005b348015610a6157600080fd5b50610a7c6004803603810190610a779190613d10565b6127cb565b005b60146020528060005260406000206000915054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b6957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bd157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610be15750610be0826128c3565b5b9050919050565b610bf061292d565b73ffffffffffffffffffffffffffffffffffffffff16610c0e611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b9061466d565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b606060018054610c9090614a47565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbc90614a47565b8015610d095780601f10610cde57610100808354040283529160200191610d09565b820191906000526020600020905b815481529060010190602001808311610cec57829003601f168201915b5050505050905090565b6000610d1e82612935565b610d54576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60098054610d9c90614a47565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc890614a47565b8015610e155780601f10610dea57610100808354040283529160200191610e15565b820191906000526020600020905b815481529060010190602001808311610df857829003601f168201915b505050505081565b6000610e28826118d3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e90576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eaf61292d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ee15750610edf81610eda61292d565b6123cb565b155b15610f18576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f2383838361299d565b505050565b60125481565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610f8e838383612a4f565b505050565b6000610f9e8361197d565b8210610fd6576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b8381101561118e576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156110ed5750611181565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461112d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561117f5786841415611176578195505050505050611194565b83806001019450505b505b8080600101915050611010565b50600080fd5b92915050565b6111a261292d565b73ffffffffffffffffffffffffffffffffffffffff166111c0611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d9061466d565b60405180910390fd5b6000611220611ad5565b73ffffffffffffffffffffffffffffffffffffffff1647604051611243906144f9565b60006040518083038185875af1925050503d8060008114611280576040519150601f19603f3d011682016040523d82523d6000602084013e611285565b606091505b505090508061129357600080fd5b50565b6112b183838360405180602001604052806000815250611ff9565b505050565b600e5481565b60115481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156113fb576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516113ed57858314156113e4578194505050505061142e565b82806001019350505b5080806001019150506112fa565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600b60009054906101000a900460ff1681565b61144e61292d565b73ffffffffffffffffffffffffffffffffffffffff1661146c611ad5565b73ffffffffffffffffffffffffffffffffffffffff16146114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b99061466d565b60405180910390fd5b8060118190555050565b6114d461292d565b73ffffffffffffffffffffffffffffffffffffffff166114f2611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f9061466d565b60405180910390fd5b806008908051906020019061155e929190613a76565b5050565b600a5461156e3361197d565b106115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a59061474d565b60405180910390fd5b42600f5411156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea906145cd565b60405180910390fd5b426010541015611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f9061464d565b60405180910390fd5b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc906146ed565b60405180910390fd5b600d5434101561170a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611701906146ad565b60405180910390fd5b60003360405160200161171d9190614483565b604051602081830303815290604052805190602001209050611743838383601254612f6c565b611782576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117799061472d565b60405180910390fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117e5336001613024565b505050565b6117f261292d565b73ffffffffffffffffffffffffffffffffffffffff16611810611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d9061466d565b60405180910390fd5b60001515600b60009054906101000a900460ff16151514156118a2576001600b60006101000a81548160ff0219169083151502179055506118be565b6000600b60006101000a81548160ff0219169083151502179055505b565b600b60019054906101000a900460ff1681565b60006118de82613042565b600001519050919050565b600880546118f690614a47565b80601f016020809104026020016040519081016040528092919081815260200182805461192290614a47565b801561196f5780601f106119445761010080835404028352916020019161196f565b820191906000526020600020905b81548152906001019060200180831161195257829003601f168201915b505050505081565b60135481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611a5561292d565b73ffffffffffffffffffffffffffffffffffffffff16611a73611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac09061466d565b60405180910390fd5b611ad360006132ea565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b0761292d565b73ffffffffffffffffffffffffffffffffffffffff16611b25611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b729061466d565b60405180910390fd5b80600e8190555050565b606060028054611b9490614a47565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc090614a47565b8015611c0d5780601f10611be257610100808354040283529160200191611c0d565b820191906000526020600020905b815481529060010190602001808311611bf057829003601f168201915b5050505050905090565b611c1f61292d565b73ffffffffffffffffffffffffffffffffffffffff16611c3d611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a9061466d565b60405180910390fd5b81600f81905550806010819055505050565b600b60019054906101000a900460ff1615611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec9061468d565b60405180910390fd5b600c5481611d01610f2e565b611d0b9190614872565b1115611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d439061462d565b60405180910390fd5b611d54611ad5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e7457600a5481611d933361197d565b611d9d9190614872565b1115611dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd59061474d565b60405180910390fd5b426011541115611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a906146cd565b60405180910390fd5b80600e54611e3191906148f9565b341015611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a9061470d565b60405180910390fd5b5b611e7e3382613024565b50565b611e8961292d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eee576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611efb61292d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fa861292d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fed9190614575565b60405180910390a35050565b612004848484612a4f565b612010848484846133b0565b612046576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a5481565b61205a61292d565b73ffffffffffffffffffffffffffffffffffffffff16612078611ad5565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c59061466d565b60405180910390fd5b8060138190555050565b600f5481565b60606120e982612935565b61211f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600b60009054906101000a900460ff16151514156121cd576009805461214890614a47565b80601f016020809104026020016040519081016040528092919081815260200182805461217490614a47565b80156121c15780601f10612196576101008083540402835291602001916121c1565b820191906000526020600020905b8154815290600101906020018083116121a457829003601f168201915b50505050509050612228565b6000600880546121dc90614a47565b905014156121f95760405180602001604052806000815250612225565b60086122048361353e565b6040516020016122159291906144ca565b6040516020818303038152906040525b90505b919050565b61223561292d565b73ffffffffffffffffffffffffffffffffffffffff16612253611ad5565b73ffffffffffffffffffffffffffffffffffffffff16146122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a09061466d565b60405180910390fd5b80600a8190555050565b6122bb61292d565b73ffffffffffffffffffffffffffffffffffffffff166122d9611ad5565b73ffffffffffffffffffffffffffffffffffffffff161461232f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123269061466d565b60405180910390fd5b8060128190555050565b61234161292d565b73ffffffffffffffffffffffffffffffffffffffff1661235f611ad5565b73ffffffffffffffffffffffffffffffffffffffff16146123b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ac9061466d565b60405180910390fd5b80600d8190555050565b60105481565b600d5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a548161246c3361197d565b6124769190614872565b11156124b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ae9061474d565b60405180910390fd5b42600f5411156124fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f3906145cd565b60405180910390fd5b426010541015612541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125389061464d565b60405180910390fd5b600281601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461258e9190614872565b11156125cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c69061460d565b60405180910390fd5b80600d546125dd91906148f9565b34101561261f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612616906146ad565b60405180910390fd5b6000336040516020016126329190614483565b604051602081830303815290604052805190602001209050612658848483601354612f6c565b612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e9061472d565b60405180910390fd5b81601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126e29190614872565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061272f3383613024565b50505050565b61273d61292d565b73ffffffffffffffffffffffffffffffffffffffff1661275b611ad5565b73ffffffffffffffffffffffffffffffffffffffff16146127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a89061466d565b60405180910390fd5b80600990805190602001906127c7929190613a76565b5050565b6127d361292d565b73ffffffffffffffffffffffffffffffffffffffff166127f1611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614612847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283e9061466d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ae906145ed565b60405180910390fd5b6128c0816132ea565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612996575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612a5a82613042565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a8161292d565b73ffffffffffffffffffffffffffffffffffffffff161480612ab45750612ab38260000151612aae61292d565b6123cb565b5b80612af95750612ac261292d565b73ffffffffffffffffffffffffffffffffffffffff16612ae184610d13565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612b32576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b9b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c02576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c0f858585600161369f565b612c1f600084846000015161299d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612efc5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612efb5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f6585858560016136a5565b5050505050565b60008083905060005b86869050811015613015576000878783818110612f9557612f94614bdf565b5b905060200201359050808311612fd5578281604051602001612fb892919061449e565b604051602081830303815290604052805190602001209250613001565b8083604051602001612fe892919061449e565b6040516020818303038152906040528051906020012092505b50808061300d90614aaa565b915050612f75565b50828114915050949350505050565b61303e8282604051806020016040528060008152506136ab565b5050565b61304a613afc565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156132b3576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516132b157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146131955780925050506132e5565b5b6001156132b057818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132ab5780925050506132e5565b613196565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006133d18473ffffffffffffffffffffffffffffffffffffffff166136bd565b15613531578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133fa61292d565b8786866040518563ffffffff1660e01b815260040161341c9493929190614529565b602060405180830381600087803b15801561343657600080fd5b505af192505050801561346757506040513d601f19601f820116820180604052508101906134649190614007565b60015b6134e1573d8060008114613497576040519150601f19603f3d011682016040523d82523d6000602084013e61349c565b606091505b506000815114156134d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613536565b600190505b949350505050565b60606000821415613586576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061369a565b600082905060005b600082146135b85780806135a190614aaa565b915050600a826135b191906148c8565b915061358e565b60008167ffffffffffffffff8111156135d4576135d3614c0e565b5b6040519080825280601f01601f1916602001820160405280156136065781602001600182028036833780820191505090505b5090505b600085146136935760018261361f9190614953565b9150600a8561362e9190614b21565b603061363a9190614872565b60f81b8183815181106136505761364f614bdf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561368c91906148c8565b945061360a565b8093505050505b919050565b50505050565b50505050565b6136b883838360016136e0565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561377b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156137b6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137c3600086838761369f565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613a2857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156139dc57506139da60008884886133b0565b155b15613a13576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613961565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613a6f60008683876136a5565b5050505050565b828054613a8290614a47565b90600052602060002090601f016020900481019282613aa45760008555613aeb565b82601f10613abd57805160ff1916838001178555613aeb565b82800160010185558215613aeb579182015b82811115613aea578251825591602001919060010190613acf565b5b509050613af89190613b3f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b58576000816000905550600101613b40565b5090565b6000613b6f613b6a846147ad565b614788565b905082815260208101848484011115613b8b57613b8a614c4c565b5b613b96848285614a05565b509392505050565b6000613bb1613bac846147de565b614788565b905082815260208101848484011115613bcd57613bcc614c4c565b5b613bd8848285614a05565b509392505050565b600081359050613bef81614f2c565b92915050565b60008083601f840112613c0b57613c0a614c42565b5b8235905067ffffffffffffffff811115613c2857613c27614c3d565b5b602083019150836020820283011115613c4457613c43614c47565b5b9250929050565b600081359050613c5a81614f43565b92915050565b600081359050613c6f81614f5a565b92915050565b600081359050613c8481614f71565b92915050565b600081519050613c9981614f71565b92915050565b600082601f830112613cb457613cb3614c42565b5b8135613cc4848260208601613b5c565b91505092915050565b600082601f830112613ce257613ce1614c42565b5b8135613cf2848260208601613b9e565b91505092915050565b600081359050613d0a81614f88565b92915050565b600060208284031215613d2657613d25614c56565b5b6000613d3484828501613be0565b91505092915050565b60008060408385031215613d5457613d53614c56565b5b6000613d6285828601613be0565b9250506020613d7385828601613be0565b9150509250929050565b600080600060608486031215613d9657613d95614c56565b5b6000613da486828701613be0565b9350506020613db586828701613be0565b9250506040613dc686828701613cfb565b9150509250925092565b60008060008060808587031215613dea57613de9614c56565b5b6000613df887828801613be0565b9450506020613e0987828801613be0565b9350506040613e1a87828801613cfb565b925050606085013567ffffffffffffffff811115613e3b57613e3a614c51565b5b613e4787828801613c9f565b91505092959194509250565b60008060408385031215613e6a57613e69614c56565b5b6000613e7885828601613be0565b9250506020613e8985828601613c4b565b9150509250929050565b60008060408385031215613eaa57613ea9614c56565b5b6000613eb885828601613be0565b9250506020613ec985828601613cfb565b9150509250929050565b60008060208385031215613eea57613ee9614c56565b5b600083013567ffffffffffffffff811115613f0857613f07614c51565b5b613f1485828601613bf5565b92509250509250929050565b600080600060408486031215613f3957613f38614c56565b5b600084013567ffffffffffffffff811115613f5757613f56614c51565b5b613f6386828701613bf5565b93509350506020613f7686828701613cfb565b9150509250925092565b600060208284031215613f9657613f95614c56565b5b6000613fa484828501613c4b565b91505092915050565b600060208284031215613fc357613fc2614c56565b5b6000613fd184828501613c60565b91505092915050565b600060208284031215613ff057613fef614c56565b5b6000613ffe84828501613c75565b91505092915050565b60006020828403121561401d5761401c614c56565b5b600061402b84828501613c8a565b91505092915050565b60006020828403121561404a57614049614c56565b5b600082013567ffffffffffffffff81111561406857614067614c51565b5b61407484828501613ccd565b91505092915050565b60006020828403121561409357614092614c56565b5b60006140a184828501613cfb565b91505092915050565b600080604083850312156140c1576140c0614c56565b5b60006140cf85828601613cfb565b92505060206140e085828601613cfb565b9150509250929050565b6140f381614987565b82525050565b61410a61410582614987565b614af3565b82525050565b61411981614999565b82525050565b614128816149a5565b82525050565b61413f61413a826149a5565b614b05565b82525050565b600061415082614824565b61415a818561483a565b935061416a818560208601614a14565b61417381614c5b565b840191505092915050565b60006141898261482f565b6141938185614856565b93506141a3818560208601614a14565b6141ac81614c5b565b840191505092915050565b60006141c28261482f565b6141cc8185614867565b93506141dc818560208601614a14565b80840191505092915050565b600081546141f581614a47565b6141ff8186614867565b9450600182166000811461421a576001811461422b5761425e565b60ff1983168652818601935061425e565b6142348561480f565b60005b8381101561425657815481890152600182019150602081019050614237565b838801955050505b50505092915050565b6000614274602183614856565b915061427f82614c79565b604082019050919050565b6000614297602683614856565b91506142a282614cc8565b604082019050919050565b60006142ba601183614856565b91506142c582614d17565b602082019050919050565b60006142dd601683614856565b91506142e882614d40565b602082019050919050565b6000614300600583614867565b915061430b82614d69565b600582019050919050565b6000614323601b83614856565b915061432e82614d92565b602082019050919050565b6000614346602083614856565b915061435182614dbb565b602082019050919050565b6000614369601683614856565b915061437482614de4565b602082019050919050565b600061438c60008361484b565b915061439782614e0d565b600082019050919050565b60006143af601283614856565b91506143ba82614e10565b602082019050919050565b60006143d2602983614856565b91506143dd82614e39565b604082019050919050565b60006143f5600f83614856565b915061440082614e88565b602082019050919050565b6000614418601583614856565b915061442382614eb1565b602082019050919050565b600061443b600d83614856565b915061444682614eda565b602082019050919050565b600061445e601b83614856565b915061446982614f03565b602082019050919050565b61447d816149fb565b82525050565b600061448f82846140f9565b60148201915081905092915050565b60006144aa828561412e565b6020820191506144ba828461412e565b6020820191508190509392505050565b60006144d682856141e8565b91506144e282846141b7565b91506144ed826142f3565b91508190509392505050565b60006145048261437f565b9150819050919050565b600060208201905061452360008301846140ea565b92915050565b600060808201905061453e60008301876140ea565b61454b60208301866140ea565b6145586040830185614474565b818103606083015261456a8184614145565b905095945050505050565b600060208201905061458a6000830184614110565b92915050565b60006020820190506145a5600083018461411f565b92915050565b600060208201905081810360008301526145c5818461417e565b905092915050565b600060208201905081810360008301526145e681614267565b9050919050565b600060208201905081810360008301526146068161428a565b9050919050565b60006020820190508181036000830152614626816142ad565b9050919050565b60006020820190508181036000830152614646816142d0565b9050919050565b6000602082019050818103600083015261466681614316565b9050919050565b6000602082019050818103600083015261468681614339565b9050919050565b600060208201905081810360008301526146a68161435c565b9050919050565b600060208201905081810360008301526146c6816143a2565b9050919050565b600060208201905081810360008301526146e6816143c5565b9050919050565b60006020820190508181036000830152614706816143e8565b9050919050565b600060208201905081810360008301526147268161440b565b9050919050565b600060208201905081810360008301526147468161442e565b9050919050565b6000602082019050818103600083015261476681614451565b9050919050565b60006020820190506147826000830184614474565b92915050565b60006147926147a3565b905061479e8282614a79565b919050565b6000604051905090565b600067ffffffffffffffff8211156147c8576147c7614c0e565b5b6147d182614c5b565b9050602081019050919050565b600067ffffffffffffffff8211156147f9576147f8614c0e565b5b61480282614c5b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061487d826149fb565b9150614888836149fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148bd576148bc614b52565b5b828201905092915050565b60006148d3826149fb565b91506148de836149fb565b9250826148ee576148ed614b81565b5b828204905092915050565b6000614904826149fb565b915061490f836149fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561494857614947614b52565b5b828202905092915050565b600061495e826149fb565b9150614969836149fb565b92508282101561497c5761497b614b52565b5b828203905092915050565b6000614992826149db565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a32578082015181840152602081019050614a17565b83811115614a41576000848401525b50505050565b60006002820490506001821680614a5f57607f821691505b60208210811415614a7357614a72614bb0565b5b50919050565b614a8282614c5b565b810181811067ffffffffffffffff82111715614aa157614aa0614c0e565b5b80604052505050565b6000614ab5826149fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ae857614ae7614b52565b5b600182019050919050565b6000614afe82614b0f565b9050919050565b6000819050919050565b6000614b1a82614c6c565b9050919050565b6000614b2c826149fb565b9150614b37836149fb565b925082614b4757614b46614b81565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f57686974656c6973742053657373696f6e204e6f74205374617274656420796560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c726561647920436c61696d65642032000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f57686974656c6973742053657373696f6e2048617320456e6465640000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4d696e7420697320416c6c6f776564206166746572205075626c696353616c6560008201527f2053746172746564200000000000000000000000000000000000000000000000602082015250565b7f416c726561647920436c61696d65640000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b7f5065722077616c6c6574204d6178204d696e7420457863656564730000000000600082015250565b614f3581614987565b8114614f4057600080fd5b50565b614f4c81614999565b8114614f5757600080fd5b50565b614f63816149a5565b8114614f6e57600080fd5b50565b614f7a816149af565b8114614f8557600080fd5b50565b614f91816149fb565b8114614f9c57600080fd5b5056fea26469706673582212204ad6b2273980c9dbc9a50f6d77ea953d53a5272d990ff4d8ae92ceb4e893309964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54663673386b6d577070394343696a5068514d56336b355a75426e68476d435466414462373767393231574c2f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6337506272596a3650645367396d51446634656d414b3739566e6f774d6e7646766454775578454c724776700000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80636c0360eb1161015a578063bd05d59d116100c1578063dfb25a7d1161007a578063dfb25a7d1461097d578063e7b99ec7146109a8578063e985e9c5146109d3578063f194a79014610a10578063f2c4ce1e14610a2c578063f2fde38b14610a5557610288565b8063bd05d59d14610871578063c79804811461089a578063c87b56dd146108c5578063d0eb26b014610902578063d13805a51461092b578063d49479eb1461095457610288565b806395d89b411161011357806395d89b41146107845780639cf49330146107af578063a0712d68146107d8578063a22cb465146107f4578063b88d4fde1461081d578063ba7d2c761461084657610288565b80636c0360eb146106865780636e26c5ee146106b157806370a08231146106dc578063715018a6146107195780638da5cb5b146107305780638dbb7c061461075b57610288565b80633ccfd60b116101fe578063527256bd116101b7578063527256bd1461059957806355f804b3146105c2578063593c5155146105eb5780635b8ad429146106075780635c975abb1461061e5780636352211e1461064957610288565b80633ccfd60b146104a857806342842e0e146104b2578063453afb0f146104db5780634f389b3f146105065780634f6ccce714610531578063518302271461056e57610288565b8063081c8c4411610250578063081c8c4414610398578063095ea7b3146103c357806314be6237146103ec57806318160ddd1461041757806323b872dd146104425780632f745c591461046b57610288565b8063019be3551461028d57806301ffc9a7146102ca57806302329a291461030757806306fdde0314610330578063081812fc1461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613d10565b610a7e565b6040516102c19190614575565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613fda565b610a9e565b6040516102fe9190614575565b60405180910390f35b34801561031357600080fd5b5061032e60048036038101906103299190613f80565b610be8565b005b34801561033c57600080fd5b50610345610c81565b60405161035291906145ab565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d919061407d565b610d13565b60405161038f919061450e565b60405180910390f35b3480156103a457600080fd5b506103ad610d8f565b6040516103ba91906145ab565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190613e93565b610e1d565b005b3480156103f857600080fd5b50610401610f28565b60405161040e9190614590565b60405180910390f35b34801561042357600080fd5b5061042c610f2e565b604051610439919061476d565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190613d7d565b610f83565b005b34801561047757600080fd5b50610492600480360381019061048d9190613e93565b610f93565b60405161049f919061476d565b60405180910390f35b6104b061119a565b005b3480156104be57600080fd5b506104d960048036038101906104d49190613d7d565b611296565b005b3480156104e757600080fd5b506104f06112b6565b6040516104fd919061476d565b60405180910390f35b34801561051257600080fd5b5061051b6112bc565b604051610528919061476d565b60405180910390f35b34801561053d57600080fd5b506105586004803603810190610553919061407d565b6112c2565b604051610565919061476d565b60405180910390f35b34801561057a57600080fd5b50610583611433565b6040516105909190614575565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb919061407d565b611446565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190614034565b6114cc565b005b61060560048036038101906106009190613ed3565b611562565b005b34801561061357600080fd5b5061061c6117ea565b005b34801561062a57600080fd5b506106336118c0565b6040516106409190614575565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b919061407d565b6118d3565b60405161067d919061450e565b60405180910390f35b34801561069257600080fd5b5061069b6118e9565b6040516106a891906145ab565b60405180910390f35b3480156106bd57600080fd5b506106c6611977565b6040516106d39190614590565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613d10565b61197d565b604051610710919061476d565b60405180910390f35b34801561072557600080fd5b5061072e611a4d565b005b34801561073c57600080fd5b50610745611ad5565b604051610752919061450e565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d919061407d565b611aff565b005b34801561079057600080fd5b50610799611b85565b6040516107a691906145ab565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906140aa565b611c17565b005b6107f260048036038101906107ed919061407d565b611ca5565b005b34801561080057600080fd5b5061081b60048036038101906108169190613e53565b611e81565b005b34801561082957600080fd5b50610844600480360381019061083f9190613dd0565b611ff9565b005b34801561085257600080fd5b5061085b61204c565b604051610868919061476d565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190613fad565b612052565b005b3480156108a657600080fd5b506108af6120d8565b6040516108bc919061476d565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e7919061407d565b6120de565b6040516108f991906145ab565b60405180910390f35b34801561090e57600080fd5b506109296004803603810190610924919061407d565b61222d565b005b34801561093757600080fd5b50610952600480360381019061094d9190613fad565b6122b3565b005b34801561096057600080fd5b5061097b6004803603810190610976919061407d565b612339565b005b34801561098957600080fd5b506109926123bf565b60405161099f919061476d565b60405180910390f35b3480156109b457600080fd5b506109bd6123c5565b6040516109ca919061476d565b60405180910390f35b3480156109df57600080fd5b506109fa60048036038101906109f59190613d3d565b6123cb565b604051610a079190614575565b60405180910390f35b610a2a6004803603810190610a259190613f20565b61245f565b005b348015610a3857600080fd5b50610a536004803603810190610a4e9190614034565b612735565b005b348015610a6157600080fd5b50610a7c6004803603810190610a779190613d10565b6127cb565b005b60146020528060005260406000206000915054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b6957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bd157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610be15750610be0826128c3565b5b9050919050565b610bf061292d565b73ffffffffffffffffffffffffffffffffffffffff16610c0e611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b9061466d565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b606060018054610c9090614a47565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbc90614a47565b8015610d095780601f10610cde57610100808354040283529160200191610d09565b820191906000526020600020905b815481529060010190602001808311610cec57829003601f168201915b5050505050905090565b6000610d1e82612935565b610d54576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60098054610d9c90614a47565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc890614a47565b8015610e155780601f10610dea57610100808354040283529160200191610e15565b820191906000526020600020905b815481529060010190602001808311610df857829003601f168201915b505050505081565b6000610e28826118d3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e90576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eaf61292d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ee15750610edf81610eda61292d565b6123cb565b155b15610f18576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f2383838361299d565b505050565b60125481565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610f8e838383612a4f565b505050565b6000610f9e8361197d565b8210610fd6576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b8381101561118e576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156110ed5750611181565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461112d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561117f5786841415611176578195505050505050611194565b83806001019450505b505b8080600101915050611010565b50600080fd5b92915050565b6111a261292d565b73ffffffffffffffffffffffffffffffffffffffff166111c0611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d9061466d565b60405180910390fd5b6000611220611ad5565b73ffffffffffffffffffffffffffffffffffffffff1647604051611243906144f9565b60006040518083038185875af1925050503d8060008114611280576040519150601f19603f3d011682016040523d82523d6000602084013e611285565b606091505b505090508061129357600080fd5b50565b6112b183838360405180602001604052806000815250611ff9565b505050565b600e5481565b60115481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156113fb576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516113ed57858314156113e4578194505050505061142e565b82806001019350505b5080806001019150506112fa565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600b60009054906101000a900460ff1681565b61144e61292d565b73ffffffffffffffffffffffffffffffffffffffff1661146c611ad5565b73ffffffffffffffffffffffffffffffffffffffff16146114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b99061466d565b60405180910390fd5b8060118190555050565b6114d461292d565b73ffffffffffffffffffffffffffffffffffffffff166114f2611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f9061466d565b60405180910390fd5b806008908051906020019061155e929190613a76565b5050565b600a5461156e3361197d565b106115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a59061474d565b60405180910390fd5b42600f5411156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea906145cd565b60405180910390fd5b426010541015611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f9061464d565b60405180910390fd5b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc906146ed565b60405180910390fd5b600d5434101561170a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611701906146ad565b60405180910390fd5b60003360405160200161171d9190614483565b604051602081830303815290604052805190602001209050611743838383601254612f6c565b611782576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117799061472d565b60405180910390fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117e5336001613024565b505050565b6117f261292d565b73ffffffffffffffffffffffffffffffffffffffff16611810611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d9061466d565b60405180910390fd5b60001515600b60009054906101000a900460ff16151514156118a2576001600b60006101000a81548160ff0219169083151502179055506118be565b6000600b60006101000a81548160ff0219169083151502179055505b565b600b60019054906101000a900460ff1681565b60006118de82613042565b600001519050919050565b600880546118f690614a47565b80601f016020809104026020016040519081016040528092919081815260200182805461192290614a47565b801561196f5780601f106119445761010080835404028352916020019161196f565b820191906000526020600020905b81548152906001019060200180831161195257829003601f168201915b505050505081565b60135481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611a5561292d565b73ffffffffffffffffffffffffffffffffffffffff16611a73611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac09061466d565b60405180910390fd5b611ad360006132ea565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b0761292d565b73ffffffffffffffffffffffffffffffffffffffff16611b25611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b729061466d565b60405180910390fd5b80600e8190555050565b606060028054611b9490614a47565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc090614a47565b8015611c0d5780601f10611be257610100808354040283529160200191611c0d565b820191906000526020600020905b815481529060010190602001808311611bf057829003601f168201915b5050505050905090565b611c1f61292d565b73ffffffffffffffffffffffffffffffffffffffff16611c3d611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a9061466d565b60405180910390fd5b81600f81905550806010819055505050565b600b60019054906101000a900460ff1615611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec9061468d565b60405180910390fd5b600c5481611d01610f2e565b611d0b9190614872565b1115611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d439061462d565b60405180910390fd5b611d54611ad5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e7457600a5481611d933361197d565b611d9d9190614872565b1115611dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd59061474d565b60405180910390fd5b426011541115611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a906146cd565b60405180910390fd5b80600e54611e3191906148f9565b341015611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a9061470d565b60405180910390fd5b5b611e7e3382613024565b50565b611e8961292d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eee576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611efb61292d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fa861292d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fed9190614575565b60405180910390a35050565b612004848484612a4f565b612010848484846133b0565b612046576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a5481565b61205a61292d565b73ffffffffffffffffffffffffffffffffffffffff16612078611ad5565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c59061466d565b60405180910390fd5b8060138190555050565b600f5481565b60606120e982612935565b61211f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600b60009054906101000a900460ff16151514156121cd576009805461214890614a47565b80601f016020809104026020016040519081016040528092919081815260200182805461217490614a47565b80156121c15780601f10612196576101008083540402835291602001916121c1565b820191906000526020600020905b8154815290600101906020018083116121a457829003601f168201915b50505050509050612228565b6000600880546121dc90614a47565b905014156121f95760405180602001604052806000815250612225565b60086122048361353e565b6040516020016122159291906144ca565b6040516020818303038152906040525b90505b919050565b61223561292d565b73ffffffffffffffffffffffffffffffffffffffff16612253611ad5565b73ffffffffffffffffffffffffffffffffffffffff16146122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a09061466d565b60405180910390fd5b80600a8190555050565b6122bb61292d565b73ffffffffffffffffffffffffffffffffffffffff166122d9611ad5565b73ffffffffffffffffffffffffffffffffffffffff161461232f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123269061466d565b60405180910390fd5b8060128190555050565b61234161292d565b73ffffffffffffffffffffffffffffffffffffffff1661235f611ad5565b73ffffffffffffffffffffffffffffffffffffffff16146123b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ac9061466d565b60405180910390fd5b80600d8190555050565b60105481565b600d5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a548161246c3361197d565b6124769190614872565b11156124b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ae9061474d565b60405180910390fd5b42600f5411156124fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f3906145cd565b60405180910390fd5b426010541015612541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125389061464d565b60405180910390fd5b600281601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461258e9190614872565b11156125cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c69061460d565b60405180910390fd5b80600d546125dd91906148f9565b34101561261f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612616906146ad565b60405180910390fd5b6000336040516020016126329190614483565b604051602081830303815290604052805190602001209050612658848483601354612f6c565b612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e9061472d565b60405180910390fd5b81601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126e29190614872565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061272f3383613024565b50505050565b61273d61292d565b73ffffffffffffffffffffffffffffffffffffffff1661275b611ad5565b73ffffffffffffffffffffffffffffffffffffffff16146127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a89061466d565b60405180910390fd5b80600990805190602001906127c7929190613a76565b5050565b6127d361292d565b73ffffffffffffffffffffffffffffffffffffffff166127f1611ad5565b73ffffffffffffffffffffffffffffffffffffffff1614612847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283e9061466d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ae906145ed565b60405180910390fd5b6128c0816132ea565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612996575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612a5a82613042565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a8161292d565b73ffffffffffffffffffffffffffffffffffffffff161480612ab45750612ab38260000151612aae61292d565b6123cb565b5b80612af95750612ac261292d565b73ffffffffffffffffffffffffffffffffffffffff16612ae184610d13565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612b32576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b9b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c02576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c0f858585600161369f565b612c1f600084846000015161299d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612efc5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612efb5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f6585858560016136a5565b5050505050565b60008083905060005b86869050811015613015576000878783818110612f9557612f94614bdf565b5b905060200201359050808311612fd5578281604051602001612fb892919061449e565b604051602081830303815290604052805190602001209250613001565b8083604051602001612fe892919061449e565b6040516020818303038152906040528051906020012092505b50808061300d90614aaa565b915050612f75565b50828114915050949350505050565b61303e8282604051806020016040528060008152506136ab565b5050565b61304a613afc565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156132b3576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516132b157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146131955780925050506132e5565b5b6001156132b057818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132ab5780925050506132e5565b613196565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006133d18473ffffffffffffffffffffffffffffffffffffffff166136bd565b15613531578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133fa61292d565b8786866040518563ffffffff1660e01b815260040161341c9493929190614529565b602060405180830381600087803b15801561343657600080fd5b505af192505050801561346757506040513d601f19601f820116820180604052508101906134649190614007565b60015b6134e1573d8060008114613497576040519150601f19603f3d011682016040523d82523d6000602084013e61349c565b606091505b506000815114156134d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613536565b600190505b949350505050565b60606000821415613586576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061369a565b600082905060005b600082146135b85780806135a190614aaa565b915050600a826135b191906148c8565b915061358e565b60008167ffffffffffffffff8111156135d4576135d3614c0e565b5b6040519080825280601f01601f1916602001820160405280156136065781602001600182028036833780820191505090505b5090505b600085146136935760018261361f9190614953565b9150600a8561362e9190614b21565b603061363a9190614872565b60f81b8183815181106136505761364f614bdf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561368c91906148c8565b945061360a565b8093505050505b919050565b50505050565b50505050565b6136b883838360016136e0565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561377b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156137b6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137c3600086838761369f565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613a2857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156139dc57506139da60008884886133b0565b155b15613a13576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613961565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613a6f60008683876136a5565b5050505050565b828054613a8290614a47565b90600052602060002090601f016020900481019282613aa45760008555613aeb565b82601f10613abd57805160ff1916838001178555613aeb565b82800160010185558215613aeb579182015b82811115613aea578251825591602001919060010190613acf565b5b509050613af89190613b3f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b58576000816000905550600101613b40565b5090565b6000613b6f613b6a846147ad565b614788565b905082815260208101848484011115613b8b57613b8a614c4c565b5b613b96848285614a05565b509392505050565b6000613bb1613bac846147de565b614788565b905082815260208101848484011115613bcd57613bcc614c4c565b5b613bd8848285614a05565b509392505050565b600081359050613bef81614f2c565b92915050565b60008083601f840112613c0b57613c0a614c42565b5b8235905067ffffffffffffffff811115613c2857613c27614c3d565b5b602083019150836020820283011115613c4457613c43614c47565b5b9250929050565b600081359050613c5a81614f43565b92915050565b600081359050613c6f81614f5a565b92915050565b600081359050613c8481614f71565b92915050565b600081519050613c9981614f71565b92915050565b600082601f830112613cb457613cb3614c42565b5b8135613cc4848260208601613b5c565b91505092915050565b600082601f830112613ce257613ce1614c42565b5b8135613cf2848260208601613b9e565b91505092915050565b600081359050613d0a81614f88565b92915050565b600060208284031215613d2657613d25614c56565b5b6000613d3484828501613be0565b91505092915050565b60008060408385031215613d5457613d53614c56565b5b6000613d6285828601613be0565b9250506020613d7385828601613be0565b9150509250929050565b600080600060608486031215613d9657613d95614c56565b5b6000613da486828701613be0565b9350506020613db586828701613be0565b9250506040613dc686828701613cfb565b9150509250925092565b60008060008060808587031215613dea57613de9614c56565b5b6000613df887828801613be0565b9450506020613e0987828801613be0565b9350506040613e1a87828801613cfb565b925050606085013567ffffffffffffffff811115613e3b57613e3a614c51565b5b613e4787828801613c9f565b91505092959194509250565b60008060408385031215613e6a57613e69614c56565b5b6000613e7885828601613be0565b9250506020613e8985828601613c4b565b9150509250929050565b60008060408385031215613eaa57613ea9614c56565b5b6000613eb885828601613be0565b9250506020613ec985828601613cfb565b9150509250929050565b60008060208385031215613eea57613ee9614c56565b5b600083013567ffffffffffffffff811115613f0857613f07614c51565b5b613f1485828601613bf5565b92509250509250929050565b600080600060408486031215613f3957613f38614c56565b5b600084013567ffffffffffffffff811115613f5757613f56614c51565b5b613f6386828701613bf5565b93509350506020613f7686828701613cfb565b9150509250925092565b600060208284031215613f9657613f95614c56565b5b6000613fa484828501613c4b565b91505092915050565b600060208284031215613fc357613fc2614c56565b5b6000613fd184828501613c60565b91505092915050565b600060208284031215613ff057613fef614c56565b5b6000613ffe84828501613c75565b91505092915050565b60006020828403121561401d5761401c614c56565b5b600061402b84828501613c8a565b91505092915050565b60006020828403121561404a57614049614c56565b5b600082013567ffffffffffffffff81111561406857614067614c51565b5b61407484828501613ccd565b91505092915050565b60006020828403121561409357614092614c56565b5b60006140a184828501613cfb565b91505092915050565b600080604083850312156140c1576140c0614c56565b5b60006140cf85828601613cfb565b92505060206140e085828601613cfb565b9150509250929050565b6140f381614987565b82525050565b61410a61410582614987565b614af3565b82525050565b61411981614999565b82525050565b614128816149a5565b82525050565b61413f61413a826149a5565b614b05565b82525050565b600061415082614824565b61415a818561483a565b935061416a818560208601614a14565b61417381614c5b565b840191505092915050565b60006141898261482f565b6141938185614856565b93506141a3818560208601614a14565b6141ac81614c5b565b840191505092915050565b60006141c28261482f565b6141cc8185614867565b93506141dc818560208601614a14565b80840191505092915050565b600081546141f581614a47565b6141ff8186614867565b9450600182166000811461421a576001811461422b5761425e565b60ff1983168652818601935061425e565b6142348561480f565b60005b8381101561425657815481890152600182019150602081019050614237565b838801955050505b50505092915050565b6000614274602183614856565b915061427f82614c79565b604082019050919050565b6000614297602683614856565b91506142a282614cc8565b604082019050919050565b60006142ba601183614856565b91506142c582614d17565b602082019050919050565b60006142dd601683614856565b91506142e882614d40565b602082019050919050565b6000614300600583614867565b915061430b82614d69565b600582019050919050565b6000614323601b83614856565b915061432e82614d92565b602082019050919050565b6000614346602083614856565b915061435182614dbb565b602082019050919050565b6000614369601683614856565b915061437482614de4565b602082019050919050565b600061438c60008361484b565b915061439782614e0d565b600082019050919050565b60006143af601283614856565b91506143ba82614e10565b602082019050919050565b60006143d2602983614856565b91506143dd82614e39565b604082019050919050565b60006143f5600f83614856565b915061440082614e88565b602082019050919050565b6000614418601583614856565b915061442382614eb1565b602082019050919050565b600061443b600d83614856565b915061444682614eda565b602082019050919050565b600061445e601b83614856565b915061446982614f03565b602082019050919050565b61447d816149fb565b82525050565b600061448f82846140f9565b60148201915081905092915050565b60006144aa828561412e565b6020820191506144ba828461412e565b6020820191508190509392505050565b60006144d682856141e8565b91506144e282846141b7565b91506144ed826142f3565b91508190509392505050565b60006145048261437f565b9150819050919050565b600060208201905061452360008301846140ea565b92915050565b600060808201905061453e60008301876140ea565b61454b60208301866140ea565b6145586040830185614474565b818103606083015261456a8184614145565b905095945050505050565b600060208201905061458a6000830184614110565b92915050565b60006020820190506145a5600083018461411f565b92915050565b600060208201905081810360008301526145c5818461417e565b905092915050565b600060208201905081810360008301526145e681614267565b9050919050565b600060208201905081810360008301526146068161428a565b9050919050565b60006020820190508181036000830152614626816142ad565b9050919050565b60006020820190508181036000830152614646816142d0565b9050919050565b6000602082019050818103600083015261466681614316565b9050919050565b6000602082019050818103600083015261468681614339565b9050919050565b600060208201905081810360008301526146a68161435c565b9050919050565b600060208201905081810360008301526146c6816143a2565b9050919050565b600060208201905081810360008301526146e6816143c5565b9050919050565b60006020820190508181036000830152614706816143e8565b9050919050565b600060208201905081810360008301526147268161440b565b9050919050565b600060208201905081810360008301526147468161442e565b9050919050565b6000602082019050818103600083015261476681614451565b9050919050565b60006020820190506147826000830184614474565b92915050565b60006147926147a3565b905061479e8282614a79565b919050565b6000604051905090565b600067ffffffffffffffff8211156147c8576147c7614c0e565b5b6147d182614c5b565b9050602081019050919050565b600067ffffffffffffffff8211156147f9576147f8614c0e565b5b61480282614c5b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061487d826149fb565b9150614888836149fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148bd576148bc614b52565b5b828201905092915050565b60006148d3826149fb565b91506148de836149fb565b9250826148ee576148ed614b81565b5b828204905092915050565b6000614904826149fb565b915061490f836149fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561494857614947614b52565b5b828202905092915050565b600061495e826149fb565b9150614969836149fb565b92508282101561497c5761497b614b52565b5b828203905092915050565b6000614992826149db565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a32578082015181840152602081019050614a17565b83811115614a41576000848401525b50505050565b60006002820490506001821680614a5f57607f821691505b60208210811415614a7357614a72614bb0565b5b50919050565b614a8282614c5b565b810181811067ffffffffffffffff82111715614aa157614aa0614c0e565b5b80604052505050565b6000614ab5826149fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ae857614ae7614b52565b5b600182019050919050565b6000614afe82614b0f565b9050919050565b6000819050919050565b6000614b1a82614c6c565b9050919050565b6000614b2c826149fb565b9150614b37836149fb565b925082614b4757614b46614b81565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f57686974656c6973742053657373696f6e204e6f74205374617274656420796560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c726561647920436c61696d65642032000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f57686974656c6973742053657373696f6e2048617320456e6465640000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4d696e7420697320416c6c6f776564206166746572205075626c696353616c6560008201527f2053746172746564200000000000000000000000000000000000000000000000602082015250565b7f416c726561647920436c61696d65640000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b7f5065722077616c6c6574204d6178204d696e7420457863656564730000000000600082015250565b614f3581614987565b8114614f4057600080fd5b50565b614f4c81614999565b8114614f5757600080fd5b50565b614f63816149a5565b8114614f6e57600080fd5b50565b614f7a816149af565b8114614f8557600080fd5b50565b614f91816149fb565b8114614f9c57600080fd5b5056fea26469706673582212204ad6b2273980c9dbc9a50f6d77ea953d53a5272d990ff4d8ae92ceb4e893309964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54663673386b6d577070394343696a5068514d56336b355a75426e68476d435466414462373767393231574c2f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6337506272596a3650645367396d51446634656d414b3739566e6f774d6e7646766454775578454c724776700000000000000000000000

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

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d54663673386b6d577070394343696a5068514d56336b35
Arg [4] : 5a75426e68476d435466414462373767393231574c2f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [6] : 697066733a2f2f516d6337506272596a3650645367396d51446634656d414b37
Arg [7] : 39566e6f774d6e7646766454775578454c724776700000000000000000000000


Deployed Bytecode Sourcemap

139:5615:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;925:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6211:372:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5173:79:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8821:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10324:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;256:28:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9887:371:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;709:100:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3448:280:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11181:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5034:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4639:151:1;;;:::i;:::-;;11422:185:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;491:41:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;647:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4021:713:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;339:28:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5392:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5062:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1986:705;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4047:177;;;;;;;;;;;;;:::i;:::-;;374:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8630:124:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;228:21:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;816:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6647:206:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1712:103:11;;;;;;;;;;;;;:::i;:::-;;1061:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4932:120:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8990:104:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5536:211:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1250:694;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10600:279:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11678:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;293:37:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4497:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;541:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3554:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4234:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4354:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4804:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;594:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;443:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10950:164:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2731:812:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5260:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1970:201:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;925:50:1;;;;;;;;;;;;;;;;;;;;;;:::o;6211:372:4:-;6313:4;6365:25;6350:40;;;:11;:40;;;;:105;;;;6422:33;6407:48;;;:11;:48;;;;6350:105;:172;;;;6487:35;6472:50;;;:11;:50;;;;6350:172;:225;;;;6539:36;6563:11;6539:23;:36::i;:::-;6350:225;6330:245;;6211:372;;;:::o;5173:79:1:-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5238:6:1::1;5229;;:15;;;;;;;;;;;;;;;;;;5173:79:::0;:::o;8821:100:4:-;8875:13;8908:5;8901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8821:100;:::o;10324:204::-;10392:7;10417:16;10425:7;10417;:16::i;:::-;10412:64;;10442:34;;;;;;;;;;;;;;10412:64;10496:15;:24;10512:7;10496:24;;;;;;;;;;;;;;;;;;;;;10489:31;;10324:204;;;:::o;256:28:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9887:371:4:-;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;709:100:1:-;;;;:::o;3448:280:4:-;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;4639:151:1:-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4692:9:1::1;4715:7;:5;:7::i;:::-;4707:21;;4736;4707:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4691:71;;;4777:4;4769:13;;;::::0;::::1;;4684:106;4639:151::o:0;11422:185:4:-;11560:39;11577:4;11583:2;11587:7;11560:39;;;;;;;;;;;;:16;:39::i;:::-;11422:185;;;:::o;491:41:1:-;;;;:::o;647:47::-;;;;:::o;4021:713:4:-;4088:7;4108:22;4133:13;;;;;;;;;;4108:38;;;;4157:19;4352:9;4347:328;4367:14;4363:1;:18;4347:328;;;4407:31;4441:11;:14;4453:1;4441:14;;;;;;;;;;;4407:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4479:9;:16;;;4474:186;;4539:5;4524:11;:20;4520:85;;;4580:1;4573:8;;;;;;;;4520:85;4627:13;;;;;;;4474:186;4388:287;4383:3;;;;;;;4347:328;;;;4703:23;;;;;;;;;;;;;;4021:713;;;;:::o;339:28:1:-;;;;;;;;;;;;;:::o;5392:136::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5500:20:1::1;5478:19;:42;;;;5392:136:::0;:::o;5062:103::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5147:11:1::1;5137:7;:21;;;;;;;;;;;;:::i;:::-;;5062:103:::0;:::o;1986:705::-;2093:18;;2069:21;2079:10;2069:9;:21::i;:::-;:42;2061:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;2181:15;2159:18;;:37;;2151:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;2268:15;2248:16;;:35;;2240:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;2335:18;:30;2354:10;2335:30;;;;;;;;;;;;;;;;;;;;;;;;;2334:31;2326:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;2412:13;;2399:9;:26;;2391:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;2456:12;2498:10;2481:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;2471:39;;;;;;2456:54;;2524:48;2543:6;;2550:4;2555:16;;2524:18;:48::i;:::-;2516:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2630:4;2597:18;:30;2616:10;2597:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;2651:24;2661:10;2673:1;2651:9;:24::i;:::-;2053:638;1986:705;;:::o;4047:177::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4122:5:1::1;4112:15;;:8;;;;;;;;;;;:15;;;4109:108;;;4154:4;4143:8;;:15;;;;;;;;;;;;;;;;;;4109:108;;;4200:5;4189:8;;:16;;;;;;;;;;;;;;;;;;4109:108;4047:177::o:0;374:26::-;;;;;;;;;;;;;:::o;8630:124:4:-;8694:7;8721:20;8733:7;8721:11;:20::i;:::-;:25;;;8714:32;;8630:124;;;:::o;228:21:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;816:100::-;;;;:::o;6647:206:4:-;6711:7;6752:1;6735:19;;:5;:19;;;6731:60;;;6763:28;;;;;;;;;;;;;;6731:60;6817:12;:19;6830:5;6817:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6809:36;;6802:43;;6647:206;;;:::o;1712:103:11:-;1292:12;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1777:30:::1;1804:1;1777:18;:30::i;:::-;1712:103::o:0;1061:87::-;1107:7;1134:6;;;;;;;;;;;1127:13;;1061:87;:::o;4932:120:1:-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5029:15:1::1;5012:14;:32;;;;4932:120:::0;:::o;8990:104:4:-;9046:13;9079:7;9072:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8990:104;:::o;5536:211:1:-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5671:19:1::1;5650:18;:40;;;;5722:17;5701:16;:38;;;;5536:211:::0;;:::o;1250:694::-;1398:6;;;;;;;;;;;1397:7;1389:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;1478:10;;1466:8;1450:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;1442:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1546:7;:5;:7::i;:::-;1532:21;;:10;:21;;;1528:365;;1614:18;;1602:8;1578:21;1588:10;1578:9;:21::i;:::-;:32;;;;:::i;:::-;:54;;1570:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;1709:15;1686:19;;:38;;1678:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;1823:8;1806:14;;:25;;;;:::i;:::-;1792:9;:40;;1784:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1528:365;1903:31;1913:10;1925:8;1903:9;:31::i;:::-;1250:694;:::o;10600:279:4:-;10703:12;:10;:12::i;:::-;10691:24;;:8;:24;;;10687:54;;;10724:17;;;;;;;;;;;;;;10687:54;10799:8;10754:18;:32;10773:12;:10;:12::i;:::-;10754:32;;;;;;;;;;;;;;;:42;10787:8;10754:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10852:8;10823:48;;10838:12;:10;:12::i;:::-;10823:48;;;10862:8;10823:48;;;;;;:::i;:::-;;;;;;;;10600:279;;:::o;11678:342::-;11845:28;11855:4;11861:2;11865:7;11845:9;:28::i;:::-;11889:48;11912:4;11918:2;11922:7;11931:5;11889:22;:48::i;:::-;11884:129;;11961:40;;;;;;;;;;;;;;11884:129;11678:342;;;;:::o;293:37:1:-;;;;:::o;4497:134::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4604:19:1::1;4585:16;:38;;;;4497:134:::0;:::o;541:46::-;;;;:::o;3554:353::-;3627:13;3658:16;3666:7;3658;:16::i;:::-;3653:59;;3683:29;;;;;;;;;;;;;;3653:59;3740:5;3728:17;;:8;;;;;;;;;;;:17;;;3725:62;;;3765:14;3758:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3725:62;3829:1;3810:7;3804:21;;;;;:::i;:::-;;;:26;;:95;;;;;;;;;;;;;;;;;3857:7;3866:18;:7;:16;:18::i;:::-;3840:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3804:95;3797:102;;3554:353;;;;:::o;4234:110::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4330:6:1::1;4309:18;:27;;;;4234:110:::0;:::o;4354:134::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4461:19:1::1;4442:16;:38;;;;4354:134:::0;:::o;4804:116::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4898:14:1::1;4882:13;:30;;;;4804:116:::0;:::o;594:44::-;;;;:::o;443:41::-;;;;:::o;10950:164:4:-;11047:4;11071:18;:25;11090:5;11071:25;;;;;;;;;;;;;;;:35;11097:8;11071:35;;;;;;;;;;;;;;;;;;;;;;;;;11064:42;;10950:164;;;;:::o;2731:812:1:-;2869:18;;2856:9;2832:21;2842:10;2832:9;:21::i;:::-;:33;;;;:::i;:::-;:55;;2824:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2957:15;2935:18;;:37;;2927:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;3044:15;3024:16;;:35;;3016:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;3156:1;3143:9;3110:18;:30;3129:10;3110:30;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;:47;;3102:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;3222:9;3206:13;;:25;;;;:::i;:::-;3193:9;:38;;3185:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3262:12;3304:10;3287:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;3277:39;;;;;;3262:54;;3330:48;3349:6;;3356:4;3361:16;;3330:18;:48::i;:::-;3322:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3469:9;3436:18;:30;3455:10;3436:30;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;3403:18;:30;3422:10;3403:30;;;;;;;;;;;;;;;:75;;;;3495:32;3505:10;3517:9;3495;:32::i;:::-;2816:727;2731:812;;;:::o;5260:126::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5363:15:1::1;5346:14;:32;;;;;;;;;;;;:::i;:::-;;5260:126:::0;:::o;1970:201:11:-;1292:12;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2079:1:::1;2059:22;;:8;:22;;;;2051:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2135:28;2154:8;2135:18;:28::i;:::-;1970:201:::0;:::o;852:157:3:-;937:4;976:25;961:40;;;:11;:40;;;;954:47;;852:157;;;:::o;656:98:2:-;709:7;736:10;729:17;;656:98;:::o;12275:144:4:-;12332:4;12366:13;;;;;;;;;;;12356:23;;:7;:23;:55;;;;;12384:11;:20;12396:7;12384:20;;;;;;;;;;;:27;;;;;;;;;;;;12383:28;12356:55;12349:62;;12275:144;;;:::o;19491:196::-;19633:2;19606:15;:24;19622:7;19606:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19671:7;19667:2;19651:28;;19660:5;19651:28;;;;;;;;;;;;19491:196;;;:::o;14992:2112::-;15107:35;15145:20;15157:7;15145:11;:20::i;:::-;15107:58;;15178:22;15220:13;:18;;;15204:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15255:50;15272:13;:18;;;15292:12;:10;:12::i;:::-;15255:16;:50::i;:::-;15204:101;:154;;;;15346:12;:10;:12::i;:::-;15322:36;;:20;15334:7;15322:11;:20::i;:::-;:36;;;15204:154;15178:181;;15377:17;15372:66;;15403:35;;;;;;;;;;;;;;15372:66;15475:4;15453:26;;:13;:18;;;:26;;;15449:67;;15488:28;;;;;;;;;;;;;;15449:67;15545:1;15531:16;;:2;:16;;;15527:52;;;15556:23;;;;;;;;;;;;;;15527:52;15592:43;15614:4;15620:2;15624:7;15633:1;15592:21;:43::i;:::-;15700:49;15717:1;15721:7;15730:13;:18;;;15700:8;:49::i;:::-;16075:1;16045:12;:18;16058:4;16045:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16119:1;16091:12;:16;16104:2;16091:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16165:2;16137:11;:20;16149:7;16137:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16227:15;16182:11;:20;16194:7;16182:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16495:19;16527:1;16517:7;:11;16495:33;;16588:1;16547:43;;:11;:24;16559:11;16547:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16543:445;;;16772:13;;;;;;;;;;16758:27;;:11;:27;16754:219;;;16842:13;:18;;;16810:11;:24;16822:11;16810:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16925:13;:28;;;16883:11;:24;16895:11;16883:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;16754:219;16543:445;16020:979;17035:7;17031:2;17016:27;;17025:4;17016:27;;;;;;;;;;;;17054:42;17075:4;17081:2;17085:7;17094:1;17054:20;:42::i;:::-;15096:2008;;14992:2112;;;:::o;668:798:10:-;761:4;778:20;801:4;778:27;;823:9;818:525;842:5;;:12;;838:1;:16;818:525;;;876:20;899:5;;905:1;899:8;;;;;;;:::i;:::-;;;;;;;;876:31;;944:12;928;:28;924:408;;1098:12;1112;1081:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1071:55;;;;;;1056:70;;924:408;;;1288:12;1302;1271:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1261:55;;;;;;1246:70;;924:408;861:482;856:3;;;;;:::i;:::-;;;;818:525;;;;1454:4;1438:12;:20;1431:27;;;668:798;;;;;;:::o;12427:104:4:-;12496:27;12506:2;12510:8;12496:27;;;;;;;;;;;;:9;:27::i;:::-;12427:104;;:::o;7485:1083::-;7546:21;;:::i;:::-;7580:12;7595:7;7580:22;;7651:13;;;;;;;;;;7644:20;;:4;:20;7640:861;;;7685:31;7719:11;:17;7731:4;7719:17;;;;;;;;;;;7685:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7760:9;:16;;;7755:731;;7831:1;7805:28;;:9;:14;;;:28;;;7801:101;;7869:9;7862:16;;;;;;7801:101;8206:261;8213:4;8206:261;;;8246:6;;;;;;;;8291:11;:17;8303:4;8291:17;;;;;;;;;;;8279:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8365:1;8339:28;;:9;:14;;;:28;;;8335:109;;8407:9;8400:16;;;;;;8335:109;8206:261;;;7755:731;7666:835;7640:861;8529:31;;;;;;;;;;;;;;7485:1083;;;;:::o;2331:191:11:-;2405:16;2424:6;;;;;;;;;;;2405:25;;2450:8;2441:6;;:17;;;;;;;;;;;;;;;;;;2505:8;2474:40;;2495:8;2474:40;;;;;;;;;;;;2394:128;2331:191;:::o;20252:790:4:-;20407:4;20428:15;:2;:13;;;:15::i;:::-;20424:611;;;20480:2;20464:36;;;20501:12;:10;:12::i;:::-;20515:4;20521:7;20530:5;20464:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20460:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20727:1;20710:6;:13;:18;20706:259;;;20760:40;;;;;;;;;;;;;;20706:259;20915:6;20909:13;20900:6;20896:2;20892:15;20885:38;20460:520;20597:45;;;20587:55;;;:6;:55;;;;20580:62;;;;;20424:611;21019:4;21012:11;;20252:790;;;;;;;:::o;342:723:12:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;21690:159:4:-;;;;;:::o;22508:158::-;;;;;:::o;12894:163::-;13017:32;13023:2;13027:8;13037:5;13044:4;13017:5;:32::i;:::-;12894:163;;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;13316:1422:4:-;13455:20;13478:13;;;;;;;;;;;13455:36;;;;13520:1;13506:16;;:2;:16;;;13502:48;;;13531:19;;;;;;;;;;;;;;13502:48;13577:1;13565:8;:13;13561:44;;;13587:18;;;;;;;;;;;;;;13561:44;13618:61;13648:1;13652:2;13656:12;13670:8;13618:21;:61::i;:::-;13992:8;13957:12;:16;13970:2;13957:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14056:8;14016:12;:16;14029:2;14016:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14115:2;14082:11;:25;14094:12;14082:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14182:15;14132:11;:25;14144:12;14132:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14215:20;14238:12;14215:35;;14272:9;14267:328;14287:8;14283:1;:12;14267:328;;;14351:12;14347:2;14326:38;;14343:1;14326:38;;;;;;;;;;;;14387:4;:68;;;;;14396:59;14427:1;14431:2;14435:12;14449:5;14396:22;:59::i;:::-;14395:60;14387:68;14383:164;;;14487:40;;;;;;;;;;;;;;14383:164;14565:14;;;;;;;14297:3;;;;;;;14267:328;;;;14635:12;14611:13;;:37;;;;;;;;;;;;;;;;;;13932:728;14670:60;14699:1;14703:2;14707:12;14721:8;14670:20;:60::i;:::-;13444:1294;13316:1422;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:559::-;6442:6;6450;6499:2;6487:9;6478:7;6474:23;6470:32;6467:119;;;6505:79;;:::i;:::-;6467:119;6653:1;6642:9;6638:17;6625:31;6683:18;6675:6;6672:30;6669:117;;;6705:79;;:::i;:::-;6669:117;6818:80;6890:7;6881:6;6870:9;6866:22;6818:80;:::i;:::-;6800:98;;;;6596:312;6356:559;;;;;:::o;6921:704::-;7016:6;7024;7032;7081:2;7069:9;7060:7;7056:23;7052:32;7049:119;;;7087:79;;:::i;:::-;7049:119;7235:1;7224:9;7220:17;7207:31;7265:18;7257:6;7254:30;7251:117;;;7287:79;;:::i;:::-;7251:117;7400:80;7472:7;7463:6;7452:9;7448:22;7400:80;:::i;:::-;7382:98;;;;7178:312;7529:2;7555:53;7600:7;7591:6;7580:9;7576:22;7555:53;:::i;:::-;7545:63;;7500:118;6921:704;;;;;:::o;7631:323::-;7687:6;7736:2;7724:9;7715:7;7711:23;7707:32;7704:119;;;7742:79;;:::i;:::-;7704:119;7862:1;7887:50;7929:7;7920:6;7909:9;7905:22;7887:50;:::i;:::-;7877:60;;7833:114;7631:323;;;;:::o;7960:329::-;8019:6;8068:2;8056:9;8047:7;8043:23;8039:32;8036:119;;;8074:79;;:::i;:::-;8036:119;8194:1;8219:53;8264:7;8255:6;8244:9;8240:22;8219:53;:::i;:::-;8209:63;;8165:117;7960:329;;;;:::o;8295:327::-;8353:6;8402:2;8390:9;8381:7;8377:23;8373:32;8370:119;;;8408:79;;:::i;:::-;8370:119;8528:1;8553:52;8597:7;8588:6;8577:9;8573:22;8553:52;:::i;:::-;8543:62;;8499:116;8295:327;;;;:::o;8628:349::-;8697:6;8746:2;8734:9;8725:7;8721:23;8717:32;8714:119;;;8752:79;;:::i;:::-;8714:119;8872:1;8897:63;8952:7;8943:6;8932:9;8928:22;8897:63;:::i;:::-;8887:73;;8843:127;8628:349;;;;:::o;8983:509::-;9052:6;9101:2;9089:9;9080:7;9076:23;9072:32;9069:119;;;9107:79;;:::i;:::-;9069:119;9255:1;9244:9;9240:17;9227:31;9285:18;9277:6;9274:30;9271:117;;;9307:79;;:::i;:::-;9271:117;9412:63;9467:7;9458:6;9447:9;9443:22;9412:63;:::i;:::-;9402:73;;9198:287;8983:509;;;;:::o;9498:329::-;9557:6;9606:2;9594:9;9585:7;9581:23;9577:32;9574:119;;;9612:79;;:::i;:::-;9574:119;9732:1;9757:53;9802:7;9793:6;9782:9;9778:22;9757:53;:::i;:::-;9747:63;;9703:117;9498:329;;;;:::o;9833:474::-;9901:6;9909;9958:2;9946:9;9937:7;9933:23;9929:32;9926:119;;;9964:79;;:::i;:::-;9926:119;10084:1;10109:53;10154:7;10145:6;10134:9;10130:22;10109:53;:::i;:::-;10099:63;;10055:117;10211:2;10237:53;10282:7;10273:6;10262:9;10258:22;10237:53;:::i;:::-;10227:63;;10182:118;9833:474;;;;;:::o;10313:118::-;10400:24;10418:5;10400:24;:::i;:::-;10395:3;10388:37;10313:118;;:::o;10437:157::-;10542:45;10562:24;10580:5;10562:24;:::i;:::-;10542:45;:::i;:::-;10537:3;10530:58;10437:157;;:::o;10600:109::-;10681:21;10696:5;10681:21;:::i;:::-;10676:3;10669:34;10600:109;;:::o;10715:118::-;10802:24;10820:5;10802:24;:::i;:::-;10797:3;10790:37;10715:118;;:::o;10839:157::-;10944:45;10964:24;10982:5;10964:24;:::i;:::-;10944:45;:::i;:::-;10939:3;10932:58;10839:157;;:::o;11002:360::-;11088:3;11116:38;11148:5;11116:38;:::i;:::-;11170:70;11233:6;11228:3;11170:70;:::i;:::-;11163:77;;11249:52;11294:6;11289:3;11282:4;11275:5;11271:16;11249:52;:::i;:::-;11326:29;11348:6;11326:29;:::i;:::-;11321:3;11317:39;11310:46;;11092:270;11002:360;;;;:::o;11368:364::-;11456:3;11484:39;11517:5;11484:39;:::i;:::-;11539:71;11603:6;11598:3;11539:71;:::i;:::-;11532:78;;11619:52;11664:6;11659:3;11652:4;11645:5;11641:16;11619:52;:::i;:::-;11696:29;11718:6;11696:29;:::i;:::-;11691:3;11687:39;11680:46;;11460:272;11368:364;;;;:::o;11738:377::-;11844:3;11872:39;11905:5;11872:39;:::i;:::-;11927:89;12009:6;12004:3;11927:89;:::i;:::-;11920:96;;12025:52;12070:6;12065:3;12058:4;12051:5;12047:16;12025:52;:::i;:::-;12102:6;12097:3;12093:16;12086:23;;11848:267;11738:377;;;;:::o;12145:845::-;12248:3;12285:5;12279:12;12314:36;12340:9;12314:36;:::i;:::-;12366:89;12448:6;12443:3;12366:89;:::i;:::-;12359:96;;12486:1;12475:9;12471:17;12502:1;12497:137;;;;12648:1;12643:341;;;;12464:520;;12497:137;12581:4;12577:9;12566;12562:25;12557:3;12550:38;12617:6;12612:3;12608:16;12601:23;;12497:137;;12643:341;12710:38;12742:5;12710:38;:::i;:::-;12770:1;12784:154;12798:6;12795:1;12792:13;12784:154;;;12872:7;12866:14;12862:1;12857:3;12853:11;12846:35;12922:1;12913:7;12909:15;12898:26;;12820:4;12817:1;12813:12;12808:17;;12784:154;;;12967:6;12962:3;12958:16;12951:23;;12650:334;;12464:520;;12252:738;;12145:845;;;;:::o;12996:366::-;13138:3;13159:67;13223:2;13218:3;13159:67;:::i;:::-;13152:74;;13235:93;13324:3;13235:93;:::i;:::-;13353:2;13348:3;13344:12;13337:19;;12996:366;;;:::o;13368:::-;13510:3;13531:67;13595:2;13590:3;13531:67;:::i;:::-;13524:74;;13607:93;13696:3;13607:93;:::i;:::-;13725:2;13720:3;13716:12;13709:19;;13368:366;;;:::o;13740:::-;13882:3;13903:67;13967:2;13962:3;13903:67;:::i;:::-;13896:74;;13979:93;14068:3;13979:93;:::i;:::-;14097:2;14092:3;14088:12;14081:19;;13740:366;;;:::o;14112:::-;14254:3;14275:67;14339:2;14334:3;14275:67;:::i;:::-;14268:74;;14351:93;14440:3;14351:93;:::i;:::-;14469:2;14464:3;14460:12;14453:19;;14112:366;;;:::o;14484:400::-;14644:3;14665:84;14747:1;14742:3;14665:84;:::i;:::-;14658:91;;14758:93;14847:3;14758:93;:::i;:::-;14876:1;14871:3;14867:11;14860:18;;14484:400;;;:::o;14890:366::-;15032:3;15053:67;15117:2;15112:3;15053:67;:::i;:::-;15046:74;;15129:93;15218:3;15129:93;:::i;:::-;15247:2;15242:3;15238:12;15231:19;;14890:366;;;:::o;15262:::-;15404:3;15425:67;15489:2;15484:3;15425:67;:::i;:::-;15418:74;;15501:93;15590:3;15501:93;:::i;:::-;15619:2;15614:3;15610:12;15603:19;;15262:366;;;:::o;15634:::-;15776:3;15797:67;15861:2;15856:3;15797:67;:::i;:::-;15790:74;;15873:93;15962:3;15873:93;:::i;:::-;15991:2;15986:3;15982:12;15975:19;;15634:366;;;:::o;16006:398::-;16165:3;16186:83;16267:1;16262:3;16186:83;:::i;:::-;16179:90;;16278:93;16367:3;16278:93;:::i;:::-;16396:1;16391:3;16387:11;16380:18;;16006:398;;;:::o;16410:366::-;16552:3;16573:67;16637:2;16632:3;16573:67;:::i;:::-;16566:74;;16649:93;16738:3;16649:93;:::i;:::-;16767:2;16762:3;16758:12;16751:19;;16410:366;;;:::o;16782:::-;16924:3;16945:67;17009:2;17004:3;16945:67;:::i;:::-;16938:74;;17021:93;17110:3;17021:93;:::i;:::-;17139:2;17134:3;17130:12;17123:19;;16782:366;;;:::o;17154:::-;17296:3;17317:67;17381:2;17376:3;17317:67;:::i;:::-;17310:74;;17393:93;17482:3;17393:93;:::i;:::-;17511:2;17506:3;17502:12;17495:19;;17154:366;;;:::o;17526:::-;17668:3;17689:67;17753:2;17748:3;17689:67;:::i;:::-;17682:74;;17765:93;17854:3;17765:93;:::i;:::-;17883:2;17878:3;17874:12;17867:19;;17526:366;;;:::o;17898:::-;18040:3;18061:67;18125:2;18120:3;18061:67;:::i;:::-;18054:74;;18137:93;18226:3;18137:93;:::i;:::-;18255:2;18250:3;18246:12;18239:19;;17898:366;;;:::o;18270:::-;18412:3;18433:67;18497:2;18492:3;18433:67;:::i;:::-;18426:74;;18509:93;18598:3;18509:93;:::i;:::-;18627:2;18622:3;18618:12;18611:19;;18270:366;;;:::o;18642:118::-;18729:24;18747:5;18729:24;:::i;:::-;18724:3;18717:37;18642:118;;:::o;18766:256::-;18878:3;18893:75;18964:3;18955:6;18893:75;:::i;:::-;18993:2;18988:3;18984:12;18977:19;;19013:3;19006:10;;18766:256;;;;:::o;19028:397::-;19168:3;19183:75;19254:3;19245:6;19183:75;:::i;:::-;19283:2;19278:3;19274:12;19267:19;;19296:75;19367:3;19358:6;19296:75;:::i;:::-;19396:2;19391:3;19387:12;19380:19;;19416:3;19409:10;;19028:397;;;;;:::o;19431:695::-;19709:3;19731:92;19819:3;19810:6;19731:92;:::i;:::-;19724:99;;19840:95;19931:3;19922:6;19840:95;:::i;:::-;19833:102;;19952:148;20096:3;19952:148;:::i;:::-;19945:155;;20117:3;20110:10;;19431:695;;;;;:::o;20132:379::-;20316:3;20338:147;20481:3;20338:147;:::i;:::-;20331:154;;20502:3;20495:10;;20132:379;;;:::o;20517:222::-;20610:4;20648:2;20637:9;20633:18;20625:26;;20661:71;20729:1;20718:9;20714:17;20705:6;20661:71;:::i;:::-;20517:222;;;;:::o;20745:640::-;20940:4;20978:3;20967:9;20963:19;20955:27;;20992:71;21060:1;21049:9;21045:17;21036:6;20992:71;:::i;:::-;21073:72;21141:2;21130:9;21126:18;21117:6;21073:72;:::i;:::-;21155;21223:2;21212:9;21208:18;21199:6;21155:72;:::i;:::-;21274:9;21268:4;21264:20;21259:2;21248:9;21244:18;21237:48;21302:76;21373:4;21364:6;21302:76;:::i;:::-;21294:84;;20745:640;;;;;;;:::o;21391:210::-;21478:4;21516:2;21505:9;21501:18;21493:26;;21529:65;21591:1;21580:9;21576:17;21567:6;21529:65;:::i;:::-;21391:210;;;;:::o;21607:222::-;21700:4;21738:2;21727:9;21723:18;21715:26;;21751:71;21819:1;21808:9;21804:17;21795:6;21751:71;:::i;:::-;21607:222;;;;:::o;21835:313::-;21948:4;21986:2;21975:9;21971:18;21963:26;;22035:9;22029:4;22025:20;22021:1;22010:9;22006:17;21999:47;22063:78;22136:4;22127:6;22063:78;:::i;:::-;22055:86;;21835:313;;;;:::o;22154:419::-;22320:4;22358:2;22347:9;22343:18;22335:26;;22407:9;22401:4;22397:20;22393:1;22382:9;22378:17;22371:47;22435:131;22561:4;22435:131;:::i;:::-;22427:139;;22154:419;;;:::o;22579:::-;22745:4;22783:2;22772:9;22768:18;22760:26;;22832:9;22826:4;22822:20;22818:1;22807:9;22803:17;22796:47;22860:131;22986:4;22860:131;:::i;:::-;22852:139;;22579:419;;;:::o;23004:::-;23170:4;23208:2;23197:9;23193:18;23185:26;;23257:9;23251:4;23247:20;23243:1;23232:9;23228:17;23221:47;23285:131;23411:4;23285:131;:::i;:::-;23277:139;;23004:419;;;:::o;23429:::-;23595:4;23633:2;23622:9;23618:18;23610:26;;23682:9;23676:4;23672:20;23668:1;23657:9;23653:17;23646:47;23710:131;23836:4;23710:131;:::i;:::-;23702:139;;23429:419;;;:::o;23854:::-;24020:4;24058:2;24047:9;24043:18;24035:26;;24107:9;24101:4;24097:20;24093:1;24082:9;24078:17;24071:47;24135:131;24261:4;24135:131;:::i;:::-;24127:139;;23854:419;;;:::o;24279:::-;24445:4;24483:2;24472:9;24468:18;24460:26;;24532:9;24526:4;24522:20;24518:1;24507:9;24503:17;24496:47;24560:131;24686:4;24560:131;:::i;:::-;24552:139;;24279:419;;;:::o;24704:::-;24870:4;24908:2;24897:9;24893:18;24885:26;;24957:9;24951:4;24947:20;24943:1;24932:9;24928:17;24921:47;24985:131;25111:4;24985:131;:::i;:::-;24977:139;;24704:419;;;:::o;25129:::-;25295:4;25333:2;25322:9;25318:18;25310:26;;25382:9;25376:4;25372:20;25368:1;25357:9;25353:17;25346:47;25410:131;25536:4;25410:131;:::i;:::-;25402:139;;25129:419;;;:::o;25554:::-;25720:4;25758:2;25747:9;25743:18;25735:26;;25807:9;25801:4;25797:20;25793:1;25782:9;25778:17;25771:47;25835:131;25961:4;25835:131;:::i;:::-;25827:139;;25554:419;;;:::o;25979:::-;26145:4;26183:2;26172:9;26168:18;26160:26;;26232:9;26226:4;26222:20;26218:1;26207:9;26203:17;26196:47;26260:131;26386:4;26260:131;:::i;:::-;26252:139;;25979:419;;;:::o;26404:::-;26570:4;26608:2;26597:9;26593:18;26585:26;;26657:9;26651:4;26647:20;26643:1;26632:9;26628:17;26621:47;26685:131;26811:4;26685:131;:::i;:::-;26677:139;;26404:419;;;:::o;26829:::-;26995:4;27033:2;27022:9;27018:18;27010:26;;27082:9;27076:4;27072:20;27068:1;27057:9;27053:17;27046:47;27110:131;27236:4;27110:131;:::i;:::-;27102:139;;26829:419;;;:::o;27254:::-;27420:4;27458:2;27447:9;27443:18;27435:26;;27507:9;27501:4;27497:20;27493:1;27482:9;27478:17;27471:47;27535:131;27661:4;27535:131;:::i;:::-;27527:139;;27254:419;;;:::o;27679:222::-;27772:4;27810:2;27799:9;27795:18;27787:26;;27823:71;27891:1;27880:9;27876:17;27867:6;27823:71;:::i;:::-;27679:222;;;;:::o;27907:129::-;27941:6;27968:20;;:::i;:::-;27958:30;;27997:33;28025:4;28017:6;27997:33;:::i;:::-;27907:129;;;:::o;28042:75::-;28075:6;28108:2;28102:9;28092:19;;28042:75;:::o;28123:307::-;28184:4;28274:18;28266:6;28263:30;28260:56;;;28296:18;;:::i;:::-;28260:56;28334:29;28356:6;28334:29;:::i;:::-;28326:37;;28418:4;28412;28408:15;28400:23;;28123:307;;;:::o;28436:308::-;28498:4;28588:18;28580:6;28577:30;28574:56;;;28610:18;;:::i;:::-;28574:56;28648:29;28670:6;28648:29;:::i;:::-;28640:37;;28732:4;28726;28722:15;28714:23;;28436:308;;;:::o;28750:141::-;28799:4;28822:3;28814:11;;28845:3;28842:1;28835:14;28879:4;28876:1;28866:18;28858:26;;28750:141;;;:::o;28897:98::-;28948:6;28982:5;28976:12;28966:22;;28897:98;;;:::o;29001:99::-;29053:6;29087:5;29081:12;29071:22;;29001:99;;;:::o;29106:168::-;29189:11;29223:6;29218:3;29211:19;29263:4;29258:3;29254:14;29239:29;;29106:168;;;;:::o;29280:147::-;29381:11;29418:3;29403:18;;29280:147;;;;:::o;29433:169::-;29517:11;29551:6;29546:3;29539:19;29591:4;29586:3;29582:14;29567:29;;29433:169;;;;:::o;29608:148::-;29710:11;29747:3;29732:18;;29608:148;;;;:::o;29762:305::-;29802:3;29821:20;29839:1;29821:20;:::i;:::-;29816:25;;29855:20;29873:1;29855:20;:::i;:::-;29850:25;;30009:1;29941:66;29937:74;29934:1;29931:81;29928:107;;;30015:18;;:::i;:::-;29928:107;30059:1;30056;30052:9;30045:16;;29762:305;;;;:::o;30073:185::-;30113:1;30130:20;30148:1;30130:20;:::i;:::-;30125:25;;30164:20;30182:1;30164:20;:::i;:::-;30159:25;;30203:1;30193:35;;30208:18;;:::i;:::-;30193:35;30250:1;30247;30243:9;30238:14;;30073:185;;;;:::o;30264:348::-;30304:7;30327:20;30345:1;30327:20;:::i;:::-;30322:25;;30361:20;30379:1;30361:20;:::i;:::-;30356:25;;30549:1;30481:66;30477:74;30474:1;30471:81;30466:1;30459:9;30452:17;30448:105;30445:131;;;30556:18;;:::i;:::-;30445:131;30604:1;30601;30597:9;30586:20;;30264:348;;;;:::o;30618:191::-;30658:4;30678:20;30696:1;30678:20;:::i;:::-;30673:25;;30712:20;30730:1;30712:20;:::i;:::-;30707:25;;30751:1;30748;30745:8;30742:34;;;30756:18;;:::i;:::-;30742:34;30801:1;30798;30794:9;30786:17;;30618:191;;;;:::o;30815:96::-;30852:7;30881:24;30899:5;30881:24;:::i;:::-;30870:35;;30815:96;;;:::o;30917:90::-;30951:7;30994:5;30987:13;30980:21;30969:32;;30917:90;;;:::o;31013:77::-;31050:7;31079:5;31068:16;;31013:77;;;:::o;31096:149::-;31132:7;31172:66;31165:5;31161:78;31150:89;;31096:149;;;:::o;31251:126::-;31288:7;31328:42;31321:5;31317:54;31306:65;;31251:126;;;:::o;31383:77::-;31420:7;31449:5;31438:16;;31383:77;;;:::o;31466:154::-;31550:6;31545:3;31540;31527:30;31612:1;31603:6;31598:3;31594:16;31587:27;31466:154;;;:::o;31626:307::-;31694:1;31704:113;31718:6;31715:1;31712:13;31704:113;;;31803:1;31798:3;31794:11;31788:18;31784:1;31779:3;31775:11;31768:39;31740:2;31737:1;31733:10;31728:15;;31704:113;;;31835:6;31832:1;31829:13;31826:101;;;31915:1;31906:6;31901:3;31897:16;31890:27;31826:101;31675:258;31626:307;;;:::o;31939:320::-;31983:6;32020:1;32014:4;32010:12;32000:22;;32067:1;32061:4;32057:12;32088:18;32078:81;;32144:4;32136:6;32132:17;32122:27;;32078:81;32206:2;32198:6;32195:14;32175:18;32172:38;32169:84;;;32225:18;;:::i;:::-;32169:84;31990:269;31939:320;;;:::o;32265:281::-;32348:27;32370:4;32348:27;:::i;:::-;32340:6;32336:40;32478:6;32466:10;32463:22;32442:18;32430:10;32427:34;32424:62;32421:88;;;32489:18;;:::i;:::-;32421:88;32529:10;32525:2;32518:22;32308:238;32265:281;;:::o;32552:233::-;32591:3;32614:24;32632:5;32614:24;:::i;:::-;32605:33;;32660:66;32653:5;32650:77;32647:103;;;32730:18;;:::i;:::-;32647:103;32777:1;32770:5;32766:13;32759:20;;32552:233;;;:::o;32791:100::-;32830:7;32859:26;32879:5;32859:26;:::i;:::-;32848:37;;32791:100;;;:::o;32897:79::-;32936:7;32965:5;32954:16;;32897:79;;;:::o;32982:94::-;33021:7;33050:20;33064:5;33050:20;:::i;:::-;33039:31;;32982:94;;;:::o;33082:176::-;33114:1;33131:20;33149:1;33131:20;:::i;:::-;33126:25;;33165:20;33183:1;33165:20;:::i;:::-;33160:25;;33204:1;33194:35;;33209:18;;:::i;:::-;33194:35;33250:1;33247;33243:9;33238:14;;33082:176;;;;:::o;33264:180::-;33312:77;33309:1;33302:88;33409:4;33406:1;33399:15;33433:4;33430:1;33423:15;33450:180;33498:77;33495:1;33488:88;33595:4;33592:1;33585:15;33619:4;33616:1;33609:15;33636:180;33684:77;33681:1;33674:88;33781:4;33778:1;33771:15;33805:4;33802:1;33795:15;33822:180;33870:77;33867:1;33860:88;33967:4;33964:1;33957:15;33991:4;33988:1;33981:15;34008:180;34056:77;34053:1;34046:88;34153:4;34150:1;34143:15;34177:4;34174:1;34167:15;34194:117;34303:1;34300;34293:12;34317:117;34426:1;34423;34416:12;34440:117;34549:1;34546;34539:12;34563:117;34672:1;34669;34662:12;34686:117;34795:1;34792;34785:12;34809:117;34918:1;34915;34908:12;34932:102;34973:6;35024:2;35020:7;35015:2;35008:5;35004:14;35000:28;34990:38;;34932:102;;;:::o;35040:94::-;35073:8;35121:5;35117:2;35113:14;35092:35;;35040:94;;;:::o;35140:220::-;35280:34;35276:1;35268:6;35264:14;35257:58;35349:3;35344:2;35336:6;35332:15;35325:28;35140:220;:::o;35366:225::-;35506:34;35502:1;35494:6;35490:14;35483:58;35575:8;35570:2;35562:6;35558:15;35551:33;35366:225;:::o;35597:167::-;35737:19;35733:1;35725:6;35721:14;35714:43;35597:167;:::o;35770:172::-;35910:24;35906:1;35898:6;35894:14;35887:48;35770:172;:::o;35948:155::-;36088:7;36084:1;36076:6;36072:14;36065:31;35948:155;:::o;36109:177::-;36249:29;36245:1;36237:6;36233:14;36226:53;36109:177;:::o;36292:182::-;36432:34;36428:1;36420:6;36416:14;36409:58;36292:182;:::o;36480:172::-;36620:24;36616:1;36608:6;36604:14;36597:48;36480:172;:::o;36658:114::-;;:::o;36778:168::-;36918:20;36914:1;36906:6;36902:14;36895:44;36778:168;:::o;36952:228::-;37092:34;37088:1;37080:6;37076:14;37069:58;37161:11;37156:2;37148:6;37144:15;37137:36;36952:228;:::o;37186:165::-;37326:17;37322:1;37314:6;37310:14;37303:41;37186:165;:::o;37357:171::-;37497:23;37493:1;37485:6;37481:14;37474:47;37357:171;:::o;37534:163::-;37674:15;37670:1;37662:6;37658:14;37651:39;37534:163;:::o;37703:177::-;37843:29;37839:1;37831:6;37827:14;37820:53;37703:177;:::o;37886:122::-;37959:24;37977:5;37959:24;:::i;:::-;37952:5;37949:35;37939:63;;37998:1;37995;37988:12;37939:63;37886:122;:::o;38014:116::-;38084:21;38099:5;38084:21;:::i;:::-;38077:5;38074:32;38064:60;;38120:1;38117;38110:12;38064:60;38014:116;:::o;38136:122::-;38209:24;38227:5;38209:24;:::i;:::-;38202:5;38199:35;38189:63;;38248:1;38245;38238:12;38189:63;38136:122;:::o;38264:120::-;38336:23;38353:5;38336:23;:::i;:::-;38329:5;38326:34;38316:62;;38374:1;38371;38364:12;38316:62;38264:120;:::o;38390:122::-;38463:24;38481:5;38463:24;:::i;:::-;38456:5;38453:35;38443:63;;38502:1;38499;38492:12;38443:63;38390:122;:::o

Swarm Source

ipfs://4ad6b2273980c9dbc9a50f6d77ea953d53a5272d990ff4d8ae92ceb4e8933099
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.