ETH Price: $3,109.58 (+1.27%)
Gas: 6 Gwei

Token

Mutant Moonbirds (MMB)
 

Overview

Max Total Supply

756 MMB

Holders

222

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MMB
0x1f1df9a5b9c07e4433f9a8a17a6041e2738938a2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MutantMoonbirds

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 11 of 15: MutantMoonBirds.sol
// SPDX-License-Identifier: MIT
// creator: twitter.com/mutatoshibird

/* _____ ______   ___  ___  _________  ________  _________  ________  ________  ___  ___  ___     
|\   _ \  _   \|\  \|\  \|\___   ___\\   __  \|\___   ___\\   __  \|\   ____\|\  \|\  \|\  \    
\ \  \\\__\ \  \ \  \\\  \|___ \  \_\ \  \|\  \|___ \  \_\ \  \|\  \ \  \___|\ \  \\\  \ \  \   
 \ \  \\|__| \  \ \  \\\  \   \ \  \ \ \   __  \   \ \  \ \ \  \\\  \ \_____  \ \   __  \ \  \  
  \ \  \    \ \  \ \  \\\  \   \ \  \ \ \  \ \  \   \ \  \ \ \  \\\  \|____|\  \ \  \ \  \ \  \ 
   \ \__\    \ \__\ \_______\   \ \__\ \ \__\ \__\   \ \__\ \ \_______\____\_\  \ \__\ \__\ \__\
    \|__|     \|__|\|_______|    \|__|  \|__|\|__|    \|__|  \|_______|\_________\|__|\|__|\|__|
                                                                      \|_________|              */
                                                                      
// Mutant Moonbirds - ERC721A contract

pragma solidity >=0.7.0 <0.9.0;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";
import "./MerkleProof.sol";

contract MutantMoonbirds is ERC721A, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public MAX_MINTS_PER_TX = 30;
    uint256 public price = 0.01 ether;

    uint256 public MAX_SUPPLY = 4269;
    uint256 public FREE_SUPPLY = 420;

    uint256 public FREE_MINTED = 0;

    bool public publicSaleStarted = false;
    bool public revealed = false;

    mapping(address => bool) private _mintedClaim;

    bytes32 public root;


    string public notRevealedUri = "ipfs://QmYaRBvmFef3nCwtDA4jLYvTDx5s5D5Phm2vVHAGkE8Kkz/hidden.json";

    // /baseURI will be changed before reveal
    string public baseURI = "ipfs://willbereplaced/";


    /// Wallet address of the deployer
    address private constant _deployer = 0x24BCfeB1337a84393687919a11e0290B4bd47E46;

    constructor() ERC721A("Mutant Moonbirds", "MMB") {
    }

    function togglePublicSaleStarted() external onlyOwner {
        publicSaleStarted = !publicSaleStarted;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
        revealed = true;
    }

    function setnotRevealedUri(string memory _newnotRevealedURI) external onlyOwner {
        notRevealedUri = _newnotRevealedURI;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice * (1 ether);
    }

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
	    MAX_SUPPLY = _newMaxSupply;
	}

    function setfreeSupply(uint256 _newfreeSupply) public onlyOwner {
	    FREE_SUPPLY = _newfreeSupply;
	}

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

    /// TokenURI Function

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  /// Reveal Function
  function reveal() public onlyOwner {
      revealed = !revealed;
  }

    /// Normal Mint Functions

    function mint(uint256 tokens) external payable {
        require(publicSaleStarted, "Public sale has not started");
        require(tokens <= MAX_MINTS_PER_TX, "Cannot purchase this many tokens in a transaction");
        require(totalSupply() + tokens <= (MAX_SUPPLY-(FREE_SUPPLY-FREE_MINTED)), "Minting would exceed max supply");
        require(tokens > 0, "Must mint at least one token");
        require(price * tokens <= msg.value, "ETH amount is incorrect");

        _safeMint(_msgSender(), tokens);
    }


    /// Free Mint Functions

    function setRoot(bytes32 newroot) external onlyOwner {
        root = newroot;
    }
    
    function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    function freeMint(bytes32[] memory proof)
        external
        payable
    {
        require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Not a part of Allowlist");
        if (hasMintedClaim(msg.sender)) revert("Amount exceeds claim limit");
        if (!publicSaleStarted) revert("Sale not started");
        if (FREE_MINTED >= FREE_SUPPLY) revert("Cannot free mint more");
        if (0 * 1 > msg.value)
            revert("Insufficient payment");

        _safeMint(msg.sender, 1);
        _mintedClaim[msg.sender] = true;
        FREE_MINTED++;
    }

    function hasMintedClaim(address account) public view returns (bool) {
        return _mintedClaim[account];
    }

    

    /// Owner only mint function
    
    function ownerMint(address to, uint256 tokens) external onlyOwner {
        require(totalSupply() + tokens <= MAX_SUPPLY, "Minting would exceed max supply");
        require(tokens > 0, "Must mint at least one token");

        _safeMint(to, tokens);
    }

    /// Withdraw function
    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        _withdraw(_deployer, address(this).balance);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Failed to withdraw Ether");
    }
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 15: 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 AuxQueryForZeroAddress();
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 extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 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**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    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;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * 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 (_startTokenId() <= curr && 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 (
            to.isContract() &&
            !_checkContractOnERC721Received(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
            _startTokenId() <= tokenId &&
            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 > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 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;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            updatedIndex++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            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**256.
        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**256.
        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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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))
                }
            }
        }
    }

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

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

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

pragma solidity ^0.8.0;

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

File 6 of 15: 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 Resturns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 9 of 15: 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 10 of 15: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
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[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        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 = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 12 of 15: 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 15: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 14 of 15: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 15 of 15: 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":[],"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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":[],"name":"FREE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"payable","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":"account","type":"address"}],"name":"hasMintedClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newroot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfreeSupply","type":"uint256"}],"name":"setfreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newnotRevealedURI","type":"string"}],"name":"setnotRevealedUri","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":"togglePublicSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052601e600955662386f26fc10000600a556110ad600b556101a4600c556000600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff02191690831515021790555060405180608001604052806041815260200162004b7760419139601190805190602001906200008c9291906200029c565b506040518060400160405280601681526020017f697066733a2f2f77696c6c62657265706c616365642f0000000000000000000081525060129080519060200190620000da9291906200029c565b50348015620000e857600080fd5b506040518060400160405280601081526020017f4d7574616e74204d6f6f6e6269726473000000000000000000000000000000008152506040518060400160405280600381526020017f4d4d42000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200016d9291906200029c565b508060039080519060200190620001869291906200029c565b5062000197620001c560201b60201c565b6000819055505050620001bf620001b3620001ce60201b60201c565b620001d660201b60201c565b620003b1565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002aa906200034c565b90600052602060002090601f016020900481019282620002ce57600085556200031a565b82601f10620002e957805160ff19168380011785556200031a565b828001600101855582156200031a579182015b8281111562000319578251825591602001919060010190620002fc565b5b5090506200032991906200032d565b5090565b5b80821115620003485760008160009055506001016200032e565b5090565b600060028204905060018216806200036557607f821691505b602082108114156200037c576200037b62000382565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6147b680620003c16000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063a22cb465116100b6578063c6a91b421161007a578063c6a91b4214610814578063c87b56dd1461083f578063dab5f3401461087c578063e985e9c5146108a5578063ebf0c717146108e2578063f2fde38b1461090d57610246565b8063a22cb46514610743578063a2e914771461076c578063a475b5dd14610797578063b88d4fde146107ae578063b8a20ed0146107d757610246565b806391b7f5ed116100fd57806391b7f5ed1461067d57806395d89b41146106a65780639858cf19146106d1578063a035b1fe146106fc578063a0712d681461072757610246565b806370a08231146105cb578063715018a614610608578063853828b61461061f57806388d15d50146106365780638da5cb5b1461065257610246565b8063278a8593116101c7578063518302271161018b57806351830227146104e457806355f804b31461050f5780635e1a2636146105385780636352211e146105635780636c0360eb146105a057610246565b8063278a8593146104135780632f8145751461045057806332cb6b0c1461046757806342842e0e14610492578063484b973c146104bb57610246565b8063095ea7b31161020e578063095ea7b31461034457806318160ddd1461036d5780631a86854f14610398578063228025e8146103c157806323b872dd146103ea57610246565b80630188541d1461024b57806301ffc9a71461027457806306fdde03146102b1578063081812fc146102dc578063081c8c4414610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613837565b610936565b005b34801561028057600080fd5b5061029b600480360381019061029691906137dd565b6109cc565b6040516102a89190613cbc565b60405180910390f35b3480156102bd57600080fd5b506102c6610aae565b6040516102d39190613cf2565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613880565b610b40565b6040516103109190613c55565b60405180910390f35b34801561032557600080fd5b5061032e610bbc565b60405161033b9190613cf2565b60405180910390f35b34801561035057600080fd5b5061036b600480360381019061036691906136cb565b610c4a565b005b34801561037957600080fd5b50610382610d55565b60405161038f9190613ef4565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190613880565b610d6c565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613880565b610df2565b005b3480156103f657600080fd5b50610411600480360381019061040c91906135b5565b610e78565b005b34801561041f57600080fd5b5061043a60048036038101906104359190613548565b610e88565b6040516104479190613cbc565b60405180910390f35b34801561045c57600080fd5b50610465610ede565b005b34801561047357600080fd5b5061047c610f86565b6040516104899190613ef4565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b491906135b5565b610f8c565b005b3480156104c757600080fd5b506104e260048036038101906104dd91906136cb565b610fac565b005b3480156104f057600080fd5b506104f96110d0565b6040516105069190613cbc565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190613837565b6110e3565b005b34801561054457600080fd5b5061054d611194565b60405161055a9190613ef4565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190613880565b61119a565b6040516105979190613c55565b60405180910390f35b3480156105ac57600080fd5b506105b56111b0565b6040516105c29190613cf2565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190613548565b61123e565b6040516105ff9190613ef4565b60405180910390f35b34801561061457600080fd5b5061061d61130e565b005b34801561062b57600080fd5b50610634611396565b005b610650600480360381019061064b919061370b565b61147b565b005b34801561065e57600080fd5b5061066761168a565b6040516106749190613c55565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190613880565b6116b4565b005b3480156106b257600080fd5b506106bb61174d565b6040516106c89190613cf2565b60405180910390f35b3480156106dd57600080fd5b506106e66117df565b6040516106f39190613ef4565b60405180910390f35b34801561070857600080fd5b506107116117e5565b60405161071e9190613ef4565b60405180910390f35b610741600480360381019061073c9190613880565b6117eb565b005b34801561074f57600080fd5b5061076a6004803603810190610765919061368b565b611997565b005b34801561077857600080fd5b50610781611b0f565b60405161078e9190613cbc565b60405180910390f35b3480156107a357600080fd5b506107ac611b22565b005b3480156107ba57600080fd5b506107d560048036038101906107d09190613608565b611bca565b005b3480156107e357600080fd5b506107fe60048036038101906107f99190613754565b611c46565b60405161080b9190613cbc565b60405180910390f35b34801561082057600080fd5b50610829611c5d565b6040516108369190613ef4565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190613880565b611c63565b6040516108739190613cf2565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e91906137b0565b611db9565b005b3480156108b157600080fd5b506108cc60048036038101906108c79190613575565b611e3f565b6040516108d99190613cbc565b60405180910390f35b3480156108ee57600080fd5b506108f7611ed3565b6040516109049190613cd7565b60405180910390f35b34801561091957600080fd5b50610934600480360381019061092f9190613548565b611ed9565b005b61093e611fd1565b73ffffffffffffffffffffffffffffffffffffffff1661095c61168a565b73ffffffffffffffffffffffffffffffffffffffff16146109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990613e34565b60405180910390fd5b80601190805190602001906109c8929190613266565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a9757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa75750610aa682611fd9565b5b9050919050565b606060028054610abd906141e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae9906141e5565b8015610b365780601f10610b0b57610100808354040283529160200191610b36565b820191906000526020600020905b815481529060010190602001808311610b1957829003601f168201915b5050505050905090565b6000610b4b82612043565b610b81576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610bc9906141e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf5906141e5565b8015610c425780601f10610c1757610100808354040283529160200191610c42565b820191906000526020600020905b815481529060010190602001808311610c2557829003601f168201915b505050505081565b6000610c558261119a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cdc611fd1565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d0e5750610d0c81610d07611fd1565b611e3f565b155b15610d45576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d50838383612091565b505050565b6000610d5f612143565b6001546000540303905090565b610d74611fd1565b73ffffffffffffffffffffffffffffffffffffffff16610d9261168a565b73ffffffffffffffffffffffffffffffffffffffff1614610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90613e34565b60405180910390fd5b80600c8190555050565b610dfa611fd1565b73ffffffffffffffffffffffffffffffffffffffff16610e1861168a565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590613e34565b60405180910390fd5b80600b8190555050565b610e8383838361214c565b505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610ee6611fd1565b73ffffffffffffffffffffffffffffffffffffffff16610f0461168a565b73ffffffffffffffffffffffffffffffffffffffff1614610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5190613e34565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600b5481565b610fa783838360405180602001604052806000815250611bca565b505050565b610fb4611fd1565b73ffffffffffffffffffffffffffffffffffffffff16610fd261168a565b73ffffffffffffffffffffffffffffffffffffffff1614611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90613e34565b60405180910390fd5b600b5481611034610d55565b61103e9190614010565b111561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690613d74565b60405180910390fd5b600081116110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990613e94565b60405180910390fd5b6110cc828261263d565b5050565b600e60019054906101000a900460ff1681565b6110eb611fd1565b73ffffffffffffffffffffffffffffffffffffffff1661110961168a565b73ffffffffffffffffffffffffffffffffffffffff161461115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690613e34565b60405180910390fd5b8060129080519060200190611175929190613266565b506001600e60016101000a81548160ff02191690831515021790555050565b600d5481565b60006111a58261265b565b600001519050919050565b601280546111bd906141e5565b80601f01602080910402602001604051908101604052809291908181526020018280546111e9906141e5565b80156112365780601f1061120b57610100808354040283529160200191611236565b820191906000526020600020905b81548152906001019060200180831161121957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112a6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611316611fd1565b73ffffffffffffffffffffffffffffffffffffffff1661133461168a565b73ffffffffffffffffffffffffffffffffffffffff161461138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190613e34565b60405180910390fd5b61139460006128ea565b565b61139e611fd1565b73ffffffffffffffffffffffffffffffffffffffff166113bc61168a565b73ffffffffffffffffffffffffffffffffffffffff1614611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990613e34565b60405180910390fd5b60004790506000811161145a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145190613e14565b60405180910390fd5b6114787324bcfeb1337a84393687919a11e0290b4bd47e46476129b0565b50565b6114ab81336040516020016114909190613bf6565b60405160208183030381529060405280519060200120611c46565b6114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190613db4565b60405180910390fd5b6114f333610e88565b15611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613ed4565b60405180910390fd5b600e60009054906101000a900460ff16611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990613d54565b60405180910390fd5b600c54600d54106115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90613e74565b60405180910390fd5b346000111561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613dd4565b60405180910390fd5b61161733600161263d565b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600d600081548092919061168290614248565b919050555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116bc611fd1565b73ffffffffffffffffffffffffffffffffffffffff166116da61168a565b73ffffffffffffffffffffffffffffffffffffffff1614611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790613e34565b60405180910390fd5b670de0b6b3a7640000816117449190614097565b600a8190555050565b60606003805461175c906141e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611788906141e5565b80156117d55780601f106117aa576101008083540402835291602001916117d5565b820191906000526020600020905b8154815290600101906020018083116117b857829003601f168201915b5050505050905090565b600c5481565b600a5481565b600e60009054906101000a900460ff1661183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190613d34565b60405180910390fd5b60095481111561187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187690613d94565b60405180910390fd5b600d54600c5461188f91906140f1565b600b5461189c91906140f1565b816118a5610d55565b6118af9190614010565b11156118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790613d74565b60405180910390fd5b60008111611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90613e94565b60405180910390fd5b3481600a546119429190614097565b1115611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90613df4565b60405180910390fd5b61199461198e611fd1565b8261263d565b50565b61199f611fd1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a04576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a11611fd1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611abe611fd1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b039190613cbc565b60405180910390a35050565b600e60009054906101000a900460ff1681565b611b2a611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611b4861168a565b73ffffffffffffffffffffffffffffffffffffffff1614611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9590613e34565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b611bd584848461214c565b611bf48373ffffffffffffffffffffffffffffffffffffffff16612a61565b8015611c095750611c0784848484612a84565b155b15611c40576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000611c558360105484612be4565b905092915050565b60095481565b6060611c6e82612043565b611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca490613e54565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611d5b5760118054611cd6906141e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d02906141e5565b8015611d4f5780601f10611d2457610100808354040283529160200191611d4f565b820191906000526020600020905b815481529060010190602001808311611d3257829003601f168201915b50505050509050611db4565b6000611d65612bfb565b90506000815111611d855760405180602001604052806000815250611db0565b80611d8f84612c8d565b604051602001611da0929190613c11565b6040516020818303038152906040525b9150505b919050565b611dc1611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611ddf61168a565b73ffffffffffffffffffffffffffffffffffffffff1614611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c90613e34565b60405180910390fd5b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60105481565b611ee1611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611eff61168a565b73ffffffffffffffffffffffffffffffffffffffff1614611f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4c90613e34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90613d14565b60405180910390fd5b611fce816128ea565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161204e612143565b1115801561205d575060005482105b801561208a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006121578261265b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661217e611fd1565b73ffffffffffffffffffffffffffffffffffffffff1614806121b157506121b082600001516121ab611fd1565b611e3f565b5b806121f657506121bf611fd1565b73ffffffffffffffffffffffffffffffffffffffff166121de84610b40565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061222f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612298576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122ff576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61230c8585856001612dee565b61231c6000848460000151612091565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125cd576000548110156125cc5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126368585856001612df4565b5050505050565b612657828260405180602001604052806000815250612dfa565b5050565b6126636132ec565b600082905080612671612143565b11158015612680575060005481105b156128b3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128b157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127955780925050506128e5565b5b6001156128b057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128ab5780925050506128e5565b612796565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516129d690613c40565b60006040518083038185875af1925050503d8060008114612a13576040519150601f19603f3d011682016040523d82523d6000602084013e612a18565b606091505b5050905080612a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5390613eb4565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aaa611fd1565b8786866040518563ffffffff1660e01b8152600401612acc9493929190613c70565b602060405180830381600087803b158015612ae657600080fd5b505af1925050508015612b1757506040513d601f19601f82011682018060405250810190612b14919061380a565b60015b612b91573d8060008114612b47576040519150601f19603f3d011682016040523d82523d6000602084013e612b4c565b606091505b50600081511415612b89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600082612bf18584612e0c565b1490509392505050565b606060128054612c0a906141e5565b80601f0160208091040260200160405190810160405280929190818152602001828054612c36906141e5565b8015612c835780601f10612c5857610100808354040283529160200191612c83565b820191906000526020600020905b815481529060010190602001808311612c6657829003601f168201915b5050505050905090565b60606000821415612cd5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612de9565b600082905060005b60008214612d07578080612cf090614248565b915050600a82612d009190614066565b9150612cdd565b60008167ffffffffffffffff811115612d2357612d226143a2565b5b6040519080825280601f01601f191660200182016040528015612d555781602001600182028036833780820191505090505b5090505b60008514612de257600182612d6e91906140f1565b9150600a85612d7d91906142b5565b6030612d899190614010565b60f81b818381518110612d9f57612d9e614373565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ddb9190614066565b9450612d59565b8093505050505b919050565b50505050565b50505050565b612e078383836001612e81565b505050565b60008082905060005b8451811015612e76576000858281518110612e3357612e32614373565b5b60200260200101519050808311612e5557612e4e838261324f565b9250612e62565b612e5f818461324f565b92505b508080612e6e90614248565b915050612e15565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612eee576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612f29576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f366000868387612dee565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561310057506130ff8773ffffffffffffffffffffffffffffffffffffffff16612a61565b5b156131c6575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131756000888480600101955088612a84565b6131ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156131065782600054146131c157600080fd5b613232565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156131c7575b8160008190555050506132486000868387612df4565b5050505050565b600082600052816020526040600020905092915050565b828054613272906141e5565b90600052602060002090601f01602090048101928261329457600085556132db565b82601f106132ad57805160ff19168380011785556132db565b828001600101855582156132db579182015b828111156132da5782518255916020019190600101906132bf565b5b5090506132e8919061332f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613348576000816000905550600101613330565b5090565b600061335f61335a84613f34565b613f0f565b90508083825260208201905082856020860282011115613382576133816143d6565b5b60005b858110156133b257816133988882613498565b845260208401935060208301925050600181019050613385565b5050509392505050565b60006133cf6133ca84613f60565b613f0f565b9050828152602081018484840111156133eb576133ea6143db565b5b6133f68482856141a3565b509392505050565b600061341161340c84613f91565b613f0f565b90508281526020810184848401111561342d5761342c6143db565b5b6134388482856141a3565b509392505050565b60008135905061344f8161470d565b92915050565b600082601f83011261346a576134696143d1565b5b813561347a84826020860161334c565b91505092915050565b60008135905061349281614724565b92915050565b6000813590506134a78161473b565b92915050565b6000813590506134bc81614752565b92915050565b6000815190506134d181614752565b92915050565b600082601f8301126134ec576134eb6143d1565b5b81356134fc8482602086016133bc565b91505092915050565b600082601f83011261351a576135196143d1565b5b813561352a8482602086016133fe565b91505092915050565b60008135905061354281614769565b92915050565b60006020828403121561355e5761355d6143e5565b5b600061356c84828501613440565b91505092915050565b6000806040838503121561358c5761358b6143e5565b5b600061359a85828601613440565b92505060206135ab85828601613440565b9150509250929050565b6000806000606084860312156135ce576135cd6143e5565b5b60006135dc86828701613440565b93505060206135ed86828701613440565b92505060406135fe86828701613533565b9150509250925092565b60008060008060808587031215613622576136216143e5565b5b600061363087828801613440565b945050602061364187828801613440565b935050604061365287828801613533565b925050606085013567ffffffffffffffff811115613673576136726143e0565b5b61367f878288016134d7565b91505092959194509250565b600080604083850312156136a2576136a16143e5565b5b60006136b085828601613440565b92505060206136c185828601613483565b9150509250929050565b600080604083850312156136e2576136e16143e5565b5b60006136f085828601613440565b925050602061370185828601613533565b9150509250929050565b600060208284031215613721576137206143e5565b5b600082013567ffffffffffffffff81111561373f5761373e6143e0565b5b61374b84828501613455565b91505092915050565b6000806040838503121561376b5761376a6143e5565b5b600083013567ffffffffffffffff811115613789576137886143e0565b5b61379585828601613455565b92505060206137a685828601613498565b9150509250929050565b6000602082840312156137c6576137c56143e5565b5b60006137d484828501613498565b91505092915050565b6000602082840312156137f3576137f26143e5565b5b6000613801848285016134ad565b91505092915050565b6000602082840312156138205761381f6143e5565b5b600061382e848285016134c2565b91505092915050565b60006020828403121561384d5761384c6143e5565b5b600082013567ffffffffffffffff81111561386b5761386a6143e0565b5b61387784828501613505565b91505092915050565b600060208284031215613896576138956143e5565b5b60006138a484828501613533565b91505092915050565b6138b681614125565b82525050565b6138cd6138c882614125565b614291565b82525050565b6138dc81614137565b82525050565b6138eb81614143565b82525050565b60006138fc82613fc2565b6139068185613fd8565b93506139168185602086016141b2565b61391f816143ea565b840191505092915050565b600061393582613fcd565b61393f8185613ff4565b935061394f8185602086016141b2565b613958816143ea565b840191505092915050565b600061396e82613fcd565b6139788185614005565b93506139888185602086016141b2565b80840191505092915050565b60006139a1602683613ff4565b91506139ac82614408565b604082019050919050565b60006139c4601b83613ff4565b91506139cf82614457565b602082019050919050565b60006139e7601083613ff4565b91506139f282614480565b602082019050919050565b6000613a0a601f83613ff4565b9150613a15826144a9565b602082019050919050565b6000613a2d603183613ff4565b9150613a38826144d2565b604082019050919050565b6000613a50601783613ff4565b9150613a5b82614521565b602082019050919050565b6000613a73601483613ff4565b9150613a7e8261454a565b602082019050919050565b6000613a96601783613ff4565b9150613aa182614573565b602082019050919050565b6000613ab9600583614005565b9150613ac48261459c565b600582019050919050565b6000613adc601383613ff4565b9150613ae7826145c5565b602082019050919050565b6000613aff602083613ff4565b9150613b0a826145ee565b602082019050919050565b6000613b22602f83613ff4565b9150613b2d82614617565b604082019050919050565b6000613b45601583613ff4565b9150613b5082614666565b602082019050919050565b6000613b68601c83613ff4565b9150613b738261468f565b602082019050919050565b6000613b8b601883613ff4565b9150613b96826146b8565b602082019050919050565b6000613bae600083613fe9565b9150613bb9826146e1565b600082019050919050565b6000613bd1601a83613ff4565b9150613bdc826146e4565b602082019050919050565b613bf081614199565b82525050565b6000613c0282846138bc565b60148201915081905092915050565b6000613c1d8285613963565b9150613c298284613963565b9150613c3482613aac565b91508190509392505050565b6000613c4b82613ba1565b9150819050919050565b6000602082019050613c6a60008301846138ad565b92915050565b6000608082019050613c8560008301876138ad565b613c9260208301866138ad565b613c9f6040830185613be7565b8181036060830152613cb181846138f1565b905095945050505050565b6000602082019050613cd160008301846138d3565b92915050565b6000602082019050613cec60008301846138e2565b92915050565b60006020820190508181036000830152613d0c818461392a565b905092915050565b60006020820190508181036000830152613d2d81613994565b9050919050565b60006020820190508181036000830152613d4d816139b7565b9050919050565b60006020820190508181036000830152613d6d816139da565b9050919050565b60006020820190508181036000830152613d8d816139fd565b9050919050565b60006020820190508181036000830152613dad81613a20565b9050919050565b60006020820190508181036000830152613dcd81613a43565b9050919050565b60006020820190508181036000830152613ded81613a66565b9050919050565b60006020820190508181036000830152613e0d81613a89565b9050919050565b60006020820190508181036000830152613e2d81613acf565b9050919050565b60006020820190508181036000830152613e4d81613af2565b9050919050565b60006020820190508181036000830152613e6d81613b15565b9050919050565b60006020820190508181036000830152613e8d81613b38565b9050919050565b60006020820190508181036000830152613ead81613b5b565b9050919050565b60006020820190508181036000830152613ecd81613b7e565b9050919050565b60006020820190508181036000830152613eed81613bc4565b9050919050565b6000602082019050613f096000830184613be7565b92915050565b6000613f19613f2a565b9050613f258282614217565b919050565b6000604051905090565b600067ffffffffffffffff821115613f4f57613f4e6143a2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f7b57613f7a6143a2565b5b613f84826143ea565b9050602081019050919050565b600067ffffffffffffffff821115613fac57613fab6143a2565b5b613fb5826143ea565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061401b82614199565b915061402683614199565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561405b5761405a6142e6565b5b828201905092915050565b600061407182614199565b915061407c83614199565b92508261408c5761408b614315565b5b828204905092915050565b60006140a282614199565b91506140ad83614199565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140e6576140e56142e6565b5b828202905092915050565b60006140fc82614199565b915061410783614199565b92508282101561411a576141196142e6565b5b828203905092915050565b600061413082614179565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141d05780820151818401526020810190506141b5565b838111156141df576000848401525b50505050565b600060028204905060018216806141fd57607f821691505b6020821081141561421157614210614344565b5b50919050565b614220826143ea565b810181811067ffffffffffffffff8211171561423f5761423e6143a2565b5b80604052505050565b600061425382614199565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614286576142856142e6565b5b600182019050919050565b600061429c826142a3565b9050919050565b60006142ae826143fb565b9050919050565b60006142c082614199565b91506142cb83614199565b9250826142db576142da614315565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360008201527f20696e2061207472616e73616374696f6e000000000000000000000000000000602082015250565b7f4e6f7420612070617274206f6620416c6c6f776c697374000000000000000000600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f45544820616d6f756e7420697320696e636f7272656374000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43616e6e6f742066726565206d696e74206d6f72650000000000000000000000600082015250565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b50565b7f416d6f756e74206578636565647320636c61696d206c696d6974000000000000600082015250565b61471681614125565b811461472157600080fd5b50565b61472d81614137565b811461473857600080fd5b50565b61474481614143565b811461474f57600080fd5b50565b61475b8161414d565b811461476657600080fd5b50565b61477281614199565b811461477d57600080fd5b5056fea2646970667358221220accead432c026b51c037146ffa440fa4e6cf5b3214944c31ae48a2a9b0d2152964736f6c63430008070033697066733a2f2f516d59615242766d466566336e4377744441346a4c5976544478357335443550686d3276564841476b45384b6b7a2f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063a22cb465116100b6578063c6a91b421161007a578063c6a91b4214610814578063c87b56dd1461083f578063dab5f3401461087c578063e985e9c5146108a5578063ebf0c717146108e2578063f2fde38b1461090d57610246565b8063a22cb46514610743578063a2e914771461076c578063a475b5dd14610797578063b88d4fde146107ae578063b8a20ed0146107d757610246565b806391b7f5ed116100fd57806391b7f5ed1461067d57806395d89b41146106a65780639858cf19146106d1578063a035b1fe146106fc578063a0712d681461072757610246565b806370a08231146105cb578063715018a614610608578063853828b61461061f57806388d15d50146106365780638da5cb5b1461065257610246565b8063278a8593116101c7578063518302271161018b57806351830227146104e457806355f804b31461050f5780635e1a2636146105385780636352211e146105635780636c0360eb146105a057610246565b8063278a8593146104135780632f8145751461045057806332cb6b0c1461046757806342842e0e14610492578063484b973c146104bb57610246565b8063095ea7b31161020e578063095ea7b31461034457806318160ddd1461036d5780631a86854f14610398578063228025e8146103c157806323b872dd146103ea57610246565b80630188541d1461024b57806301ffc9a71461027457806306fdde03146102b1578063081812fc146102dc578063081c8c4414610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613837565b610936565b005b34801561028057600080fd5b5061029b600480360381019061029691906137dd565b6109cc565b6040516102a89190613cbc565b60405180910390f35b3480156102bd57600080fd5b506102c6610aae565b6040516102d39190613cf2565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613880565b610b40565b6040516103109190613c55565b60405180910390f35b34801561032557600080fd5b5061032e610bbc565b60405161033b9190613cf2565b60405180910390f35b34801561035057600080fd5b5061036b600480360381019061036691906136cb565b610c4a565b005b34801561037957600080fd5b50610382610d55565b60405161038f9190613ef4565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190613880565b610d6c565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613880565b610df2565b005b3480156103f657600080fd5b50610411600480360381019061040c91906135b5565b610e78565b005b34801561041f57600080fd5b5061043a60048036038101906104359190613548565b610e88565b6040516104479190613cbc565b60405180910390f35b34801561045c57600080fd5b50610465610ede565b005b34801561047357600080fd5b5061047c610f86565b6040516104899190613ef4565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b491906135b5565b610f8c565b005b3480156104c757600080fd5b506104e260048036038101906104dd91906136cb565b610fac565b005b3480156104f057600080fd5b506104f96110d0565b6040516105069190613cbc565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190613837565b6110e3565b005b34801561054457600080fd5b5061054d611194565b60405161055a9190613ef4565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190613880565b61119a565b6040516105979190613c55565b60405180910390f35b3480156105ac57600080fd5b506105b56111b0565b6040516105c29190613cf2565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190613548565b61123e565b6040516105ff9190613ef4565b60405180910390f35b34801561061457600080fd5b5061061d61130e565b005b34801561062b57600080fd5b50610634611396565b005b610650600480360381019061064b919061370b565b61147b565b005b34801561065e57600080fd5b5061066761168a565b6040516106749190613c55565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190613880565b6116b4565b005b3480156106b257600080fd5b506106bb61174d565b6040516106c89190613cf2565b60405180910390f35b3480156106dd57600080fd5b506106e66117df565b6040516106f39190613ef4565b60405180910390f35b34801561070857600080fd5b506107116117e5565b60405161071e9190613ef4565b60405180910390f35b610741600480360381019061073c9190613880565b6117eb565b005b34801561074f57600080fd5b5061076a6004803603810190610765919061368b565b611997565b005b34801561077857600080fd5b50610781611b0f565b60405161078e9190613cbc565b60405180910390f35b3480156107a357600080fd5b506107ac611b22565b005b3480156107ba57600080fd5b506107d560048036038101906107d09190613608565b611bca565b005b3480156107e357600080fd5b506107fe60048036038101906107f99190613754565b611c46565b60405161080b9190613cbc565b60405180910390f35b34801561082057600080fd5b50610829611c5d565b6040516108369190613ef4565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190613880565b611c63565b6040516108739190613cf2565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e91906137b0565b611db9565b005b3480156108b157600080fd5b506108cc60048036038101906108c79190613575565b611e3f565b6040516108d99190613cbc565b60405180910390f35b3480156108ee57600080fd5b506108f7611ed3565b6040516109049190613cd7565b60405180910390f35b34801561091957600080fd5b50610934600480360381019061092f9190613548565b611ed9565b005b61093e611fd1565b73ffffffffffffffffffffffffffffffffffffffff1661095c61168a565b73ffffffffffffffffffffffffffffffffffffffff16146109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990613e34565b60405180910390fd5b80601190805190602001906109c8929190613266565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a9757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa75750610aa682611fd9565b5b9050919050565b606060028054610abd906141e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae9906141e5565b8015610b365780601f10610b0b57610100808354040283529160200191610b36565b820191906000526020600020905b815481529060010190602001808311610b1957829003601f168201915b5050505050905090565b6000610b4b82612043565b610b81576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610bc9906141e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf5906141e5565b8015610c425780601f10610c1757610100808354040283529160200191610c42565b820191906000526020600020905b815481529060010190602001808311610c2557829003601f168201915b505050505081565b6000610c558261119a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cdc611fd1565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d0e5750610d0c81610d07611fd1565b611e3f565b155b15610d45576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d50838383612091565b505050565b6000610d5f612143565b6001546000540303905090565b610d74611fd1565b73ffffffffffffffffffffffffffffffffffffffff16610d9261168a565b73ffffffffffffffffffffffffffffffffffffffff1614610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90613e34565b60405180910390fd5b80600c8190555050565b610dfa611fd1565b73ffffffffffffffffffffffffffffffffffffffff16610e1861168a565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590613e34565b60405180910390fd5b80600b8190555050565b610e8383838361214c565b505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610ee6611fd1565b73ffffffffffffffffffffffffffffffffffffffff16610f0461168a565b73ffffffffffffffffffffffffffffffffffffffff1614610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5190613e34565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600b5481565b610fa783838360405180602001604052806000815250611bca565b505050565b610fb4611fd1565b73ffffffffffffffffffffffffffffffffffffffff16610fd261168a565b73ffffffffffffffffffffffffffffffffffffffff1614611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90613e34565b60405180910390fd5b600b5481611034610d55565b61103e9190614010565b111561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690613d74565b60405180910390fd5b600081116110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990613e94565b60405180910390fd5b6110cc828261263d565b5050565b600e60019054906101000a900460ff1681565b6110eb611fd1565b73ffffffffffffffffffffffffffffffffffffffff1661110961168a565b73ffffffffffffffffffffffffffffffffffffffff161461115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690613e34565b60405180910390fd5b8060129080519060200190611175929190613266565b506001600e60016101000a81548160ff02191690831515021790555050565b600d5481565b60006111a58261265b565b600001519050919050565b601280546111bd906141e5565b80601f01602080910402602001604051908101604052809291908181526020018280546111e9906141e5565b80156112365780601f1061120b57610100808354040283529160200191611236565b820191906000526020600020905b81548152906001019060200180831161121957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112a6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611316611fd1565b73ffffffffffffffffffffffffffffffffffffffff1661133461168a565b73ffffffffffffffffffffffffffffffffffffffff161461138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190613e34565b60405180910390fd5b61139460006128ea565b565b61139e611fd1565b73ffffffffffffffffffffffffffffffffffffffff166113bc61168a565b73ffffffffffffffffffffffffffffffffffffffff1614611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990613e34565b60405180910390fd5b60004790506000811161145a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145190613e14565b60405180910390fd5b6114787324bcfeb1337a84393687919a11e0290b4bd47e46476129b0565b50565b6114ab81336040516020016114909190613bf6565b60405160208183030381529060405280519060200120611c46565b6114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190613db4565b60405180910390fd5b6114f333610e88565b15611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613ed4565b60405180910390fd5b600e60009054906101000a900460ff16611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990613d54565b60405180910390fd5b600c54600d54106115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90613e74565b60405180910390fd5b346000111561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613dd4565b60405180910390fd5b61161733600161263d565b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600d600081548092919061168290614248565b919050555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116bc611fd1565b73ffffffffffffffffffffffffffffffffffffffff166116da61168a565b73ffffffffffffffffffffffffffffffffffffffff1614611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790613e34565b60405180910390fd5b670de0b6b3a7640000816117449190614097565b600a8190555050565b60606003805461175c906141e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611788906141e5565b80156117d55780601f106117aa576101008083540402835291602001916117d5565b820191906000526020600020905b8154815290600101906020018083116117b857829003601f168201915b5050505050905090565b600c5481565b600a5481565b600e60009054906101000a900460ff1661183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190613d34565b60405180910390fd5b60095481111561187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187690613d94565b60405180910390fd5b600d54600c5461188f91906140f1565b600b5461189c91906140f1565b816118a5610d55565b6118af9190614010565b11156118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790613d74565b60405180910390fd5b60008111611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90613e94565b60405180910390fd5b3481600a546119429190614097565b1115611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90613df4565b60405180910390fd5b61199461198e611fd1565b8261263d565b50565b61199f611fd1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a04576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a11611fd1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611abe611fd1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b039190613cbc565b60405180910390a35050565b600e60009054906101000a900460ff1681565b611b2a611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611b4861168a565b73ffffffffffffffffffffffffffffffffffffffff1614611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9590613e34565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b611bd584848461214c565b611bf48373ffffffffffffffffffffffffffffffffffffffff16612a61565b8015611c095750611c0784848484612a84565b155b15611c40576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000611c558360105484612be4565b905092915050565b60095481565b6060611c6e82612043565b611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca490613e54565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611d5b5760118054611cd6906141e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d02906141e5565b8015611d4f5780601f10611d2457610100808354040283529160200191611d4f565b820191906000526020600020905b815481529060010190602001808311611d3257829003601f168201915b50505050509050611db4565b6000611d65612bfb565b90506000815111611d855760405180602001604052806000815250611db0565b80611d8f84612c8d565b604051602001611da0929190613c11565b6040516020818303038152906040525b9150505b919050565b611dc1611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611ddf61168a565b73ffffffffffffffffffffffffffffffffffffffff1614611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c90613e34565b60405180910390fd5b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60105481565b611ee1611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611eff61168a565b73ffffffffffffffffffffffffffffffffffffffff1614611f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4c90613e34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90613d14565b60405180910390fd5b611fce816128ea565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161204e612143565b1115801561205d575060005482105b801561208a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006121578261265b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661217e611fd1565b73ffffffffffffffffffffffffffffffffffffffff1614806121b157506121b082600001516121ab611fd1565b611e3f565b5b806121f657506121bf611fd1565b73ffffffffffffffffffffffffffffffffffffffff166121de84610b40565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061222f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612298576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122ff576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61230c8585856001612dee565b61231c6000848460000151612091565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125cd576000548110156125cc5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126368585856001612df4565b5050505050565b612657828260405180602001604052806000815250612dfa565b5050565b6126636132ec565b600082905080612671612143565b11158015612680575060005481105b156128b3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128b157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127955780925050506128e5565b5b6001156128b057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128ab5780925050506128e5565b612796565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516129d690613c40565b60006040518083038185875af1925050503d8060008114612a13576040519150601f19603f3d011682016040523d82523d6000602084013e612a18565b606091505b5050905080612a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5390613eb4565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aaa611fd1565b8786866040518563ffffffff1660e01b8152600401612acc9493929190613c70565b602060405180830381600087803b158015612ae657600080fd5b505af1925050508015612b1757506040513d601f19601f82011682018060405250810190612b14919061380a565b60015b612b91573d8060008114612b47576040519150601f19603f3d011682016040523d82523d6000602084013e612b4c565b606091505b50600081511415612b89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600082612bf18584612e0c565b1490509392505050565b606060128054612c0a906141e5565b80601f0160208091040260200160405190810160405280929190818152602001828054612c36906141e5565b8015612c835780601f10612c5857610100808354040283529160200191612c83565b820191906000526020600020905b815481529060010190602001808311612c6657829003601f168201915b5050505050905090565b60606000821415612cd5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612de9565b600082905060005b60008214612d07578080612cf090614248565b915050600a82612d009190614066565b9150612cdd565b60008167ffffffffffffffff811115612d2357612d226143a2565b5b6040519080825280601f01601f191660200182016040528015612d555781602001600182028036833780820191505090505b5090505b60008514612de257600182612d6e91906140f1565b9150600a85612d7d91906142b5565b6030612d899190614010565b60f81b818381518110612d9f57612d9e614373565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ddb9190614066565b9450612d59565b8093505050505b919050565b50505050565b50505050565b612e078383836001612e81565b505050565b60008082905060005b8451811015612e76576000858281518110612e3357612e32614373565b5b60200260200101519050808311612e5557612e4e838261324f565b9250612e62565b612e5f818461324f565b92505b508080612e6e90614248565b915050612e15565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612eee576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612f29576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f366000868387612dee565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561310057506130ff8773ffffffffffffffffffffffffffffffffffffffff16612a61565b5b156131c6575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131756000888480600101955088612a84565b6131ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156131065782600054146131c157600080fd5b613232565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156131c7575b8160008190555050506132486000868387612df4565b5050505050565b600082600052816020526040600020905092915050565b828054613272906141e5565b90600052602060002090601f01602090048101928261329457600085556132db565b82601f106132ad57805160ff19168380011785556132db565b828001600101855582156132db579182015b828111156132da5782518255916020019190600101906132bf565b5b5090506132e8919061332f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613348576000816000905550600101613330565b5090565b600061335f61335a84613f34565b613f0f565b90508083825260208201905082856020860282011115613382576133816143d6565b5b60005b858110156133b257816133988882613498565b845260208401935060208301925050600181019050613385565b5050509392505050565b60006133cf6133ca84613f60565b613f0f565b9050828152602081018484840111156133eb576133ea6143db565b5b6133f68482856141a3565b509392505050565b600061341161340c84613f91565b613f0f565b90508281526020810184848401111561342d5761342c6143db565b5b6134388482856141a3565b509392505050565b60008135905061344f8161470d565b92915050565b600082601f83011261346a576134696143d1565b5b813561347a84826020860161334c565b91505092915050565b60008135905061349281614724565b92915050565b6000813590506134a78161473b565b92915050565b6000813590506134bc81614752565b92915050565b6000815190506134d181614752565b92915050565b600082601f8301126134ec576134eb6143d1565b5b81356134fc8482602086016133bc565b91505092915050565b600082601f83011261351a576135196143d1565b5b813561352a8482602086016133fe565b91505092915050565b60008135905061354281614769565b92915050565b60006020828403121561355e5761355d6143e5565b5b600061356c84828501613440565b91505092915050565b6000806040838503121561358c5761358b6143e5565b5b600061359a85828601613440565b92505060206135ab85828601613440565b9150509250929050565b6000806000606084860312156135ce576135cd6143e5565b5b60006135dc86828701613440565b93505060206135ed86828701613440565b92505060406135fe86828701613533565b9150509250925092565b60008060008060808587031215613622576136216143e5565b5b600061363087828801613440565b945050602061364187828801613440565b935050604061365287828801613533565b925050606085013567ffffffffffffffff811115613673576136726143e0565b5b61367f878288016134d7565b91505092959194509250565b600080604083850312156136a2576136a16143e5565b5b60006136b085828601613440565b92505060206136c185828601613483565b9150509250929050565b600080604083850312156136e2576136e16143e5565b5b60006136f085828601613440565b925050602061370185828601613533565b9150509250929050565b600060208284031215613721576137206143e5565b5b600082013567ffffffffffffffff81111561373f5761373e6143e0565b5b61374b84828501613455565b91505092915050565b6000806040838503121561376b5761376a6143e5565b5b600083013567ffffffffffffffff811115613789576137886143e0565b5b61379585828601613455565b92505060206137a685828601613498565b9150509250929050565b6000602082840312156137c6576137c56143e5565b5b60006137d484828501613498565b91505092915050565b6000602082840312156137f3576137f26143e5565b5b6000613801848285016134ad565b91505092915050565b6000602082840312156138205761381f6143e5565b5b600061382e848285016134c2565b91505092915050565b60006020828403121561384d5761384c6143e5565b5b600082013567ffffffffffffffff81111561386b5761386a6143e0565b5b61387784828501613505565b91505092915050565b600060208284031215613896576138956143e5565b5b60006138a484828501613533565b91505092915050565b6138b681614125565b82525050565b6138cd6138c882614125565b614291565b82525050565b6138dc81614137565b82525050565b6138eb81614143565b82525050565b60006138fc82613fc2565b6139068185613fd8565b93506139168185602086016141b2565b61391f816143ea565b840191505092915050565b600061393582613fcd565b61393f8185613ff4565b935061394f8185602086016141b2565b613958816143ea565b840191505092915050565b600061396e82613fcd565b6139788185614005565b93506139888185602086016141b2565b80840191505092915050565b60006139a1602683613ff4565b91506139ac82614408565b604082019050919050565b60006139c4601b83613ff4565b91506139cf82614457565b602082019050919050565b60006139e7601083613ff4565b91506139f282614480565b602082019050919050565b6000613a0a601f83613ff4565b9150613a15826144a9565b602082019050919050565b6000613a2d603183613ff4565b9150613a38826144d2565b604082019050919050565b6000613a50601783613ff4565b9150613a5b82614521565b602082019050919050565b6000613a73601483613ff4565b9150613a7e8261454a565b602082019050919050565b6000613a96601783613ff4565b9150613aa182614573565b602082019050919050565b6000613ab9600583614005565b9150613ac48261459c565b600582019050919050565b6000613adc601383613ff4565b9150613ae7826145c5565b602082019050919050565b6000613aff602083613ff4565b9150613b0a826145ee565b602082019050919050565b6000613b22602f83613ff4565b9150613b2d82614617565b604082019050919050565b6000613b45601583613ff4565b9150613b5082614666565b602082019050919050565b6000613b68601c83613ff4565b9150613b738261468f565b602082019050919050565b6000613b8b601883613ff4565b9150613b96826146b8565b602082019050919050565b6000613bae600083613fe9565b9150613bb9826146e1565b600082019050919050565b6000613bd1601a83613ff4565b9150613bdc826146e4565b602082019050919050565b613bf081614199565b82525050565b6000613c0282846138bc565b60148201915081905092915050565b6000613c1d8285613963565b9150613c298284613963565b9150613c3482613aac565b91508190509392505050565b6000613c4b82613ba1565b9150819050919050565b6000602082019050613c6a60008301846138ad565b92915050565b6000608082019050613c8560008301876138ad565b613c9260208301866138ad565b613c9f6040830185613be7565b8181036060830152613cb181846138f1565b905095945050505050565b6000602082019050613cd160008301846138d3565b92915050565b6000602082019050613cec60008301846138e2565b92915050565b60006020820190508181036000830152613d0c818461392a565b905092915050565b60006020820190508181036000830152613d2d81613994565b9050919050565b60006020820190508181036000830152613d4d816139b7565b9050919050565b60006020820190508181036000830152613d6d816139da565b9050919050565b60006020820190508181036000830152613d8d816139fd565b9050919050565b60006020820190508181036000830152613dad81613a20565b9050919050565b60006020820190508181036000830152613dcd81613a43565b9050919050565b60006020820190508181036000830152613ded81613a66565b9050919050565b60006020820190508181036000830152613e0d81613a89565b9050919050565b60006020820190508181036000830152613e2d81613acf565b9050919050565b60006020820190508181036000830152613e4d81613af2565b9050919050565b60006020820190508181036000830152613e6d81613b15565b9050919050565b60006020820190508181036000830152613e8d81613b38565b9050919050565b60006020820190508181036000830152613ead81613b5b565b9050919050565b60006020820190508181036000830152613ecd81613b7e565b9050919050565b60006020820190508181036000830152613eed81613bc4565b9050919050565b6000602082019050613f096000830184613be7565b92915050565b6000613f19613f2a565b9050613f258282614217565b919050565b6000604051905090565b600067ffffffffffffffff821115613f4f57613f4e6143a2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f7b57613f7a6143a2565b5b613f84826143ea565b9050602081019050919050565b600067ffffffffffffffff821115613fac57613fab6143a2565b5b613fb5826143ea565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061401b82614199565b915061402683614199565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561405b5761405a6142e6565b5b828201905092915050565b600061407182614199565b915061407c83614199565b92508261408c5761408b614315565b5b828204905092915050565b60006140a282614199565b91506140ad83614199565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140e6576140e56142e6565b5b828202905092915050565b60006140fc82614199565b915061410783614199565b92508282101561411a576141196142e6565b5b828203905092915050565b600061413082614179565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141d05780820151818401526020810190506141b5565b838111156141df576000848401525b50505050565b600060028204905060018216806141fd57607f821691505b6020821081141561421157614210614344565b5b50919050565b614220826143ea565b810181811067ffffffffffffffff8211171561423f5761423e6143a2565b5b80604052505050565b600061425382614199565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614286576142856142e6565b5b600182019050919050565b600061429c826142a3565b9050919050565b60006142ae826143fb565b9050919050565b60006142c082614199565b91506142cb83614199565b9250826142db576142da614315565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360008201527f20696e2061207472616e73616374696f6e000000000000000000000000000000602082015250565b7f4e6f7420612070617274206f6620416c6c6f776c697374000000000000000000600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f45544820616d6f756e7420697320696e636f7272656374000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43616e6e6f742066726565206d696e74206d6f72650000000000000000000000600082015250565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b50565b7f416d6f756e74206578636565647320636c61696d206c696d6974000000000000600082015250565b61471681614125565b811461472157600080fd5b50565b61472d81614137565b811461473857600080fd5b50565b61474481614143565b811461474f57600080fd5b50565b61475b8161414d565b811461476657600080fd5b50565b61477281614199565b811461477d57600080fd5b5056fea2646970667358221220accead432c026b51c037146ffa440fa4e6cf5b3214944c31ae48a2a9b0d2152964736f6c63430008070033

Deployed Bytecode Sourcemap

1143:4678:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2296:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4690:355:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8157:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9757:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1631:98:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9320:371:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3939:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2659:105:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2550:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10728:170:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4949:115:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2037:111;;;;;;;;;;;;;:::i;:::-;;1347:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10969:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5120:261:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1510:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2156:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1427:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7966:124:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1785:48:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5109:206:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:11;;;;;;;;;;;;;:::i;:::-;;5416:206:10;;;;;;;;;;;;;:::i;:::-;;4355:586;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1063:87:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2438:104:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8326::3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1386:32:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1305:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3542:521;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10074:302:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1466:37:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3431:70;;;;;;;;;;;;;:::i;:::-;;11225:406:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4202:145:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1262:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2909:493;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4104:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10447:214:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1601:19:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1972:201:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2296:134:10;1294:12:11;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2404:18:10::1;2387:14;:35;;;;;;;;;;;;:::i;:::-;;2296:134:::0;:::o;4690:355:3:-;4837:4;4894:25;4879:40;;;:11;:40;;;;:105;;;;4951:33;4936:48;;;:11;:48;;;;4879:105;:158;;;;5001:36;5025:11;5001:23;:36::i;:::-;4879:158;4859:178;;4690:355;;;:::o;8157:100::-;8211:13;8244:5;8237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8157:100;:::o;9757:245::-;9861:7;9891:16;9899:7;9891;:16::i;:::-;9886:64;;9916:34;;;;;;;;;;;;;;9886:64;9970:15;:24;9986:7;9970:24;;;;;;;;;;;;;;;;;;;;;9963:31;;9757:245;;;:::o;1631:98:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9320:371:3:-;9393:13;9409:24;9425:7;9409:15;:24::i;:::-;9393:40;;9454:5;9448:11;;:2;:11;;;9444:48;;;9468:24;;;;;;;;;;;;;;9444:48;9525:5;9509:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9535:37;9552:5;9559:12;:10;:12::i;:::-;9535:16;:37::i;:::-;9534:38;9509:63;9505:138;;;9596:35;;;;;;;;;;;;;;9505:138;9655:28;9664:2;9668:7;9677:5;9655:8;:28::i;:::-;9382:309;9320:371;;:::o;3939:303::-;3983:7;4208:15;:13;:15::i;:::-;4193:12;;4177:13;;:28;:46;4170:53;;3939:303;:::o;2659:105:10:-;1294:12:11;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2745:14:10::1;2731:11;:28;;;;2659:105:::0;:::o;2550:101::-;1294:12:11;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2633:13:10::1;2620:10;:26;;;;2550:101:::0;:::o;10728:170:3:-;10862:28;10872:4;10878:2;10882:7;10862:9;:28::i;:::-;10728:170;;;:::o;4949:115:10:-;5011:4;5035:12;:21;5048:7;5035:21;;;;;;;;;;;;;;;;;;;;;;;;;5028:28;;4949:115;;;:::o;2037:111::-;1294:12:11;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2123:17:10::1;;;;;;;;;;;2122:18;2102:17;;:38;;;;;;;;;;;;;;;;;;2037:111::o:0;1347:32::-;;;;:::o;10969:185:3:-;11107:39;11124:4;11130:2;11134:7;11107:39;;;;;;;;;;;;:16;:39::i;:::-;10969:185;;;:::o;5120:261:10:-;1294:12:11;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5231:10:10::1;;5221:6;5205:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;5197:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;5305:1;5296:6;:10;5288:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;5352:21;5362:2;5366:6;5352:9;:21::i;:::-;5120:261:::0;;:::o;1510:28::-;;;;;;;;;;;;;:::o;2156:132::-;1294:12:11;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2243:11:10::1;2233:7;:21;;;;;;;;;;;;:::i;:::-;;2276:4;2265:8;;:15;;;;;;;;;;;;;;;;;;2156:132:::0;:::o;1427:30::-;;;;:::o;7966:124:3:-;8030:7;8057:20;8069:7;8057:11;:20::i;:::-;:25;;;8050:32;;7966:124;;;:::o;1785:48:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5109:206:3:-;5173:7;5214:1;5197:19;;:5;:19;;;5193:60;;;5225:28;;;;;;;;;;;;;;5193:60;5279:12;:19;5292:5;5279:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;5271:36;;5264:43;;5109:206;;;:::o;1714:103:11:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;5416:206:10:-;1294:12:11;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5467:15:10::1;5485:21;5467:39;;5535:1;5525:7;:11;5517:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;5571;1921:42;5592:21;5571:9;:43::i;:::-;5456:166;5416:206::o:0;4355:586::-;4456:55;4464:5;4498:10;4481:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;4471:39;;;;;;4456:7;:55::i;:::-;4448:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;4554:26;4569:10;4554:14;:26::i;:::-;4550:68;;;4582:36;;;;;;;;;;:::i;:::-;;;;;;;;4550:68;4634:17;;;;;;;;;;;4629:50;;4653:26;;;;;;;;;;:::i;:::-;;;;;;;;4629:50;4709:11;;4694;;:26;4690:63;;4722:31;;;;;;;;;;:::i;:::-;;;;;;;;4690:63;4776:9;4768:5;:17;4764:66;;;4800:30;;;;;;;;;;:::i;:::-;;;;;;;;4764:66;4843:24;4853:10;4865:1;4843:9;:24::i;:::-;4905:4;4878:12;:24;4891:10;4878:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;4920:11;;:13;;;;;;;;;:::i;:::-;;;;;;4355:586;:::o;1063:87:11:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;2438:104:10:-;1294:12:11;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2526:7:10::1;2513:9;:21;;;;:::i;:::-;2505:5;:29;;;;2438:104:::0;:::o;8326::3:-;8382:13;8415:7;8408:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8326:104;:::o;1386:32:10:-;;;;:::o;1305:33::-;;;;:::o;3542:521::-;3608:17;;;;;;;;;;;3600:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3686:16;;3676:6;:26;;3668:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;3826:11;;3814;;:23;;;;:::i;:::-;3802:10;;:36;;;;:::i;:::-;3791:6;3775:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:64;;3767:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;3903:1;3894:6;:10;3886:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;3974:9;3964:6;3956:5;;:14;;;;:::i;:::-;:27;;3948:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4024:31;4034:12;:10;:12::i;:::-;4048:6;4024:9;:31::i;:::-;3542:521;:::o;10074:302:3:-;10200:12;:10;:12::i;:::-;10188:24;;:8;:24;;;10184:54;;;10221:17;;;;;;;;;;;;;;10184:54;10296:8;10251:18;:32;10270:12;:10;:12::i;:::-;10251:32;;;;;;;;;;;;;;;:42;10284:8;10251:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10349:8;10320:48;;10335:12;:10;:12::i;:::-;10320:48;;;10359:8;10320:48;;;;;;:::i;:::-;;;;;;;;10074:302;;:::o;1466:37:10:-;;;;;;;;;;;;;:::o;3431:70::-;1294:12:11;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3487:8:10::1;;;;;;;;;;;3486:9;3475:8;;:20;;;;;;;;;;;;;;;;;;3431:70::o:0;11225:406:3:-;11392:28;11402:4;11408:2;11412:7;11392:9;:28::i;:::-;11449:15;:2;:13;;;:15::i;:::-;:89;;;;;11482:56;11513:4;11519:2;11523:7;11532:5;11482:30;:56::i;:::-;11481:57;11449:89;11431:193;;;11572:40;;;;;;;;;;;;;;11431:193;11225:406;;;;:::o;4202:145:10:-;4278:4;4302:37;4321:5;4328:4;;4334;4302:18;:37::i;:::-;4295:44;;4202:145;;;;:::o;1262:36::-;;;;:::o;2909:493::-;3007:13;3048:16;3056:7;3048;:16::i;:::-;3032:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;3157:5;3145:17;;:8;;;;;;;;;;;:17;;;3142:62;;;3182:14;3175:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3142:62;3212:28;3243:10;:8;:10::i;:::-;3212:41;;3298:1;3273:14;3267:28;:32;:129;;;;;;;;;;;;;;;;;3335:14;3351:20;3352:7;3351:18;:20::i;:::-;3318:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3267:129;3260:136;;;2909:493;;;;:::o;4104:86::-;1294:12:11;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4175:7:10::1;4168:4;:14;;;;4104:86:::0;:::o;10447:214:3:-;10589:4;10618:18;:25;10637:5;10618:25;;;;;;;;;;;;;;;:35;10644:8;10618:35;;;;;;;;;;;;;;;;;;;;;;;;;10611:42;;10447:214;;;;:::o;1601:19:10:-;;;;:::o;1972:201:11:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;11886:213:3:-;11943:4;11999:7;11980:15;:13;:15::i;:::-;:26;;:66;;;;;12033:13;;12023:7;:23;11980:66;:111;;;;;12064:11;:20;12076:7;12064:20;;;;;;;;;;;:27;;;;;;;;;;;;12063:28;11980:111;11960:131;;11886:213;;;:::o;19766:196::-;19908:2;19881:15;:24;19897:7;19881:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19946:7;19942:2;19926:28;;19935:5;19926:28;;;;;;;;;;;;19766:196;;;:::o;3663:92::-;3719:7;3746:1;3739:8;;3663:92;:::o;15216:2138::-;15331:35;15369:20;15381:7;15369:11;:20::i;:::-;15331:58;;15402:22;15444:13;:18;;;15428:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15479:50;15496:13;:18;;;15516:12;:10;:12::i;:::-;15479:16;:50::i;:::-;15428:101;:154;;;;15570:12;:10;:12::i;:::-;15546:36;;:20;15558:7;15546:11;:20::i;:::-;:36;;;15428:154;15402:181;;15601:17;15596:66;;15627:35;;;;;;;;;;;;;;15596:66;15699:4;15677:26;;:13;:18;;;:26;;;15673:67;;15712:28;;;;;;;;;;;;;;15673:67;15769:1;15755:16;;:2;:16;;;15751:52;;;15780:23;;;;;;;;;;;;;;15751:52;15816:43;15838:4;15844:2;15848:7;15857:1;15816:21;:43::i;:::-;15924:49;15941:1;15945:7;15954:13;:18;;;15924:8;:49::i;:::-;16299:1;16269:12;:18;16282:4;16269:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16343:1;16315:12;:16;16328:2;16315:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16389:2;16361:11;:20;16373:7;16361:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16451:15;16406:11;:20;16418:7;16406:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16719:19;16751:1;16741:7;:11;16719:33;;16812:1;16771:43;;:11;:24;16783:11;16771:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16767:471;;;16996:13;;16982:11;:27;16978:245;;;17066:13;:18;;;17034:11;:24;17046:11;17034:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;17149:13;:54;;;17107:11;:24;17119:11;17107:24;;;;;;;;;;;:39;;;:96;;;;;;;;;;;;;;;;;;16978:245;16767:471;16244:1005;17285:7;17281:2;17266:27;;17275:4;17266:27;;;;;;;;;;;;17304:42;17325:4;17331:2;17335:7;17344:1;17304:20;:42::i;:::-;15320:2034;;15216:2138;;;:::o;12107:104::-;12176:27;12186:2;12190:8;12176:27;;;;;;;;;;;;:9;:27::i;:::-;12107:104;;:::o;6764:1140::-;6852:21;;:::i;:::-;6891:12;6906:7;6891:22;;6974:4;6955:15;:13;:15::i;:::-;:23;;:47;;;;;6989:13;;6982:4;:20;6955:47;6951:886;;;7023:31;7057:11;:17;7069:4;7057:17;;;;;;;;;;;7023:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7098:9;:16;;;7093:729;;7169:1;7143:28;;:9;:14;;;:28;;;7139:101;;7207:9;7200:16;;;;;;7139:101;7542:261;7549:4;7542:261;;;7582:6;;;;;;;;7627:11;:17;7639:4;7627:17;;;;;;;;;;;7615:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7701:1;7675:28;;:9;:14;;;:28;;;7671:109;;7743:9;7736:16;;;;;;7671:109;7542:261;;;7093:729;7004:833;6951:886;7865:31;;;;;;;;;;;;;;6764:1140;;;;:::o;2333:191:11:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;5630:188:10:-;5704:12;5722:8;:13;;5743:7;5722:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5703:52;;;5774:7;5766:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;5692:126;5630:188;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;20454:772:3:-;20617:4;20667:2;20651:36;;;20706:12;:10;:12::i;:::-;20737:4;20760:7;20786:5;20651:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20634:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20994:1;20977:6;:13;:18;20973:235;;;21023:40;;;;;;;;;;;;;;20973:235;21166:6;21160:13;21151:6;21147:2;21143:15;21136:38;20634:585;20872:45;;;20862:55;;;:6;:55;;;;20855:62;;;20454:772;;;;;;:::o;883:190:9:-;1008:4;1061;1032:25;1045:5;1052:4;1032:12;:25::i;:::-;:33;1025:40;;883:190;;;;;:::o;2772:100:10:-;2824:13;2857:7;2850:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2772:100;:::o;342:723:14:-;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;21874:159:3:-;;;;;:::o;22692:158::-;;;;;:::o;12574:163::-;12697:32;12703:2;12707:8;12717:5;12724:4;12697:5;:32::i;:::-;12574:163;;;:::o;1435:675:9:-;1518:7;1538:20;1561:4;1538:27;;1581:9;1576:497;1600:5;:12;1596:1;:16;1576:497;;;1634:20;1657:5;1663:1;1657:8;;;;;;;;:::i;:::-;;;;;;;;1634:31;;1700:12;1684;:28;1680:382;;1827:42;1842:12;1856;1827:14;:42::i;:::-;1812:57;;1680:382;;;2004:42;2019:12;2033;2004:14;:42::i;:::-;1989:57;;1680:382;1619:454;1614:3;;;;;:::i;:::-;;;;1576:497;;;;2090:12;2083:19;;;1435:675;;;;:::o;12996:1966:3:-;13135:20;13158:13;;13135:36;;13200:1;13186:16;;:2;:16;;;13182:48;;;13211:19;;;;;;;;;;;;;;13182:48;13257:1;13245:8;:13;13241:44;;;13267:18;;;;;;;;;;;;;;13241:44;13298:61;13328:1;13332:2;13336:12;13350:8;13298:21;:61::i;:::-;13671:8;13636:12;:16;13649:2;13636:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13735:8;13695:12;:16;13708:2;13695:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13794:2;13761:11;:25;13773:12;13761:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;13861:15;13811:11;:25;13823:12;13811:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;13894:20;13917:12;13894:35;;13944:11;13973:8;13958:12;:23;13944:37;;14002:4;:23;;;;;14010:15;:2;:13;;;:15::i;:::-;14002:23;13998:832;;;14046:505;14102:12;14098:2;14077:38;;14094:1;14077:38;;;;;;;;;;;;14169:212;14238:1;14271:2;14304:14;;;;;;14349:5;14169:30;:212::i;:::-;14138:365;;14439:40;;;;;;;;;;;;;;14138:365;14546:3;14530:12;:19;;14046:505;;14632:12;14615:13;;:29;14611:43;;14646:8;;;14611:43;13998:832;;;14695:120;14751:14;;;;;;14747:2;14726:40;;14743:1;14726:40;;;;;;;;;;;;14810:3;14794:12;:19;;14695:120;;13998:832;14860:12;14844:13;:28;;;;13611:1273;;14894:60;14923:1;14927:2;14931:12;14945:8;14894:20;:60::i;:::-;13124:1838;12996:1966;;;;:::o;2118:224:9:-;2186:13;2249:1;2243:4;2236:15;2278:1;2272:4;2265:15;2319:4;2313;2303:21;2294:30;;2118:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:15:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:329::-;3619:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:119;;;3674:79;;:::i;:::-;3636:119;3794:1;3819:53;3864:7;3855:6;3844:9;3840:22;3819:53;:::i;:::-;3809:63;;3765:117;3560:329;;;;:::o;3895:474::-;3963:6;3971;4020:2;4008:9;3999:7;3995:23;3991:32;3988:119;;;4026:79;;:::i;:::-;3988:119;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;3895:474;;;;;:::o;4375:619::-;4452:6;4460;4468;4517:2;4505:9;4496:7;4492:23;4488:32;4485:119;;;4523:79;;:::i;:::-;4485:119;4643:1;4668:53;4713:7;4704:6;4693:9;4689:22;4668:53;:::i;:::-;4658:63;;4614:117;4770:2;4796:53;4841:7;4832:6;4821:9;4817:22;4796:53;:::i;:::-;4786:63;;4741:118;4898:2;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4869:118;4375:619;;;;;:::o;5000:943::-;5095:6;5103;5111;5119;5168:3;5156:9;5147:7;5143:23;5139:33;5136:120;;;5175:79;;:::i;:::-;5136:120;5295:1;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5266:117;5422:2;5448:53;5493:7;5484:6;5473:9;5469:22;5448:53;:::i;:::-;5438:63;;5393:118;5550:2;5576:53;5621:7;5612:6;5601:9;5597:22;5576:53;:::i;:::-;5566:63;;5521:118;5706:2;5695:9;5691:18;5678:32;5737:18;5729:6;5726:30;5723:117;;;5759:79;;:::i;:::-;5723:117;5864:62;5918:7;5909:6;5898:9;5894:22;5864:62;:::i;:::-;5854:72;;5649:287;5000:943;;;;;;;:::o;5949:468::-;6014:6;6022;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:53;6267:7;6258:6;6247:9;6243:22;6222:53;:::i;:::-;6212:63;;6168:117;6324:2;6350:50;6392:7;6383:6;6372:9;6368:22;6350:50;:::i;:::-;6340:60;;6295:115;5949:468;;;;;:::o;6423:474::-;6491:6;6499;6548:2;6536:9;6527:7;6523:23;6519:32;6516:119;;;6554:79;;:::i;:::-;6516:119;6674:1;6699:53;6744:7;6735:6;6724:9;6720:22;6699:53;:::i;:::-;6689:63;;6645:117;6801:2;6827:53;6872:7;6863:6;6852:9;6848:22;6827:53;:::i;:::-;6817:63;;6772:118;6423:474;;;;;:::o;6903:539::-;6987:6;7036:2;7024:9;7015:7;7011:23;7007:32;7004:119;;;7042:79;;:::i;:::-;7004:119;7190:1;7179:9;7175:17;7162:31;7220:18;7212:6;7209:30;7206:117;;;7242:79;;:::i;:::-;7206:117;7347:78;7417:7;7408:6;7397:9;7393:22;7347:78;:::i;:::-;7337:88;;7133:302;6903:539;;;;:::o;7448:684::-;7541:6;7549;7598:2;7586:9;7577:7;7573:23;7569:32;7566:119;;;7604:79;;:::i;:::-;7566:119;7752:1;7741:9;7737:17;7724:31;7782:18;7774:6;7771:30;7768:117;;;7804:79;;:::i;:::-;7768:117;7909:78;7979:7;7970:6;7959:9;7955:22;7909:78;:::i;:::-;7899:88;;7695:302;8036:2;8062:53;8107:7;8098:6;8087:9;8083:22;8062:53;:::i;:::-;8052:63;;8007:118;7448:684;;;;;:::o;8138:329::-;8197:6;8246:2;8234:9;8225:7;8221:23;8217:32;8214:119;;;8252:79;;:::i;:::-;8214:119;8372:1;8397:53;8442:7;8433:6;8422:9;8418:22;8397:53;:::i;:::-;8387:63;;8343:117;8138:329;;;;:::o;8473:327::-;8531:6;8580:2;8568:9;8559:7;8555:23;8551:32;8548:119;;;8586:79;;:::i;:::-;8548:119;8706:1;8731:52;8775:7;8766:6;8755:9;8751:22;8731:52;:::i;:::-;8721:62;;8677:116;8473:327;;;;:::o;8806:349::-;8875:6;8924:2;8912:9;8903:7;8899:23;8895:32;8892:119;;;8930:79;;:::i;:::-;8892:119;9050:1;9075:63;9130:7;9121:6;9110:9;9106:22;9075:63;:::i;:::-;9065:73;;9021:127;8806:349;;;;:::o;9161:509::-;9230:6;9279:2;9267:9;9258:7;9254:23;9250:32;9247:119;;;9285:79;;:::i;:::-;9247:119;9433:1;9422:9;9418:17;9405:31;9463:18;9455:6;9452:30;9449:117;;;9485:79;;:::i;:::-;9449:117;9590:63;9645:7;9636:6;9625:9;9621:22;9590:63;:::i;:::-;9580:73;;9376:287;9161:509;;;;:::o;9676:329::-;9735:6;9784:2;9772:9;9763:7;9759:23;9755:32;9752:119;;;9790:79;;:::i;:::-;9752:119;9910:1;9935:53;9980:7;9971:6;9960:9;9956:22;9935:53;:::i;:::-;9925:63;;9881:117;9676:329;;;;:::o;10011:118::-;10098:24;10116:5;10098:24;:::i;:::-;10093:3;10086:37;10011:118;;:::o;10135:157::-;10240:45;10260:24;10278:5;10260:24;:::i;:::-;10240:45;:::i;:::-;10235:3;10228:58;10135:157;;:::o;10298:109::-;10379:21;10394:5;10379:21;:::i;:::-;10374:3;10367:34;10298:109;;:::o;10413:118::-;10500:24;10518:5;10500:24;:::i;:::-;10495:3;10488:37;10413:118;;:::o;10537:360::-;10623:3;10651:38;10683:5;10651:38;:::i;:::-;10705:70;10768:6;10763:3;10705:70;:::i;:::-;10698:77;;10784:52;10829:6;10824:3;10817:4;10810:5;10806:16;10784:52;:::i;:::-;10861:29;10883:6;10861:29;:::i;:::-;10856:3;10852:39;10845:46;;10627:270;10537:360;;;;:::o;10903:364::-;10991:3;11019:39;11052:5;11019:39;:::i;:::-;11074:71;11138:6;11133:3;11074:71;:::i;:::-;11067:78;;11154:52;11199:6;11194:3;11187:4;11180:5;11176:16;11154:52;:::i;:::-;11231:29;11253:6;11231:29;:::i;:::-;11226:3;11222:39;11215:46;;10995:272;10903:364;;;;:::o;11273:377::-;11379:3;11407:39;11440:5;11407:39;:::i;:::-;11462:89;11544:6;11539:3;11462:89;:::i;:::-;11455:96;;11560:52;11605:6;11600:3;11593:4;11586:5;11582:16;11560:52;:::i;:::-;11637:6;11632:3;11628:16;11621:23;;11383:267;11273:377;;;;:::o;11656:366::-;11798:3;11819:67;11883:2;11878:3;11819:67;:::i;:::-;11812:74;;11895:93;11984:3;11895:93;:::i;:::-;12013:2;12008:3;12004:12;11997:19;;11656:366;;;:::o;12028:::-;12170:3;12191:67;12255:2;12250:3;12191:67;:::i;:::-;12184:74;;12267:93;12356:3;12267:93;:::i;:::-;12385:2;12380:3;12376:12;12369:19;;12028:366;;;:::o;12400:::-;12542:3;12563:67;12627:2;12622:3;12563:67;:::i;:::-;12556:74;;12639:93;12728:3;12639:93;:::i;:::-;12757:2;12752:3;12748:12;12741:19;;12400:366;;;:::o;12772:::-;12914:3;12935:67;12999:2;12994:3;12935:67;:::i;:::-;12928:74;;13011:93;13100:3;13011:93;:::i;:::-;13129:2;13124:3;13120:12;13113:19;;12772:366;;;:::o;13144:::-;13286:3;13307:67;13371:2;13366:3;13307:67;:::i;:::-;13300:74;;13383:93;13472:3;13383:93;:::i;:::-;13501:2;13496:3;13492:12;13485:19;;13144:366;;;:::o;13516:::-;13658:3;13679:67;13743:2;13738:3;13679:67;:::i;:::-;13672:74;;13755:93;13844:3;13755:93;:::i;:::-;13873:2;13868:3;13864:12;13857:19;;13516:366;;;:::o;13888:::-;14030:3;14051:67;14115:2;14110:3;14051:67;:::i;:::-;14044:74;;14127:93;14216:3;14127:93;:::i;:::-;14245:2;14240:3;14236:12;14229:19;;13888:366;;;:::o;14260:::-;14402:3;14423:67;14487:2;14482:3;14423:67;:::i;:::-;14416:74;;14499:93;14588:3;14499:93;:::i;:::-;14617:2;14612:3;14608:12;14601:19;;14260:366;;;:::o;14632:400::-;14792:3;14813:84;14895:1;14890:3;14813:84;:::i;:::-;14806:91;;14906:93;14995:3;14906:93;:::i;:::-;15024:1;15019:3;15015:11;15008:18;;14632:400;;;:::o;15038:366::-;15180:3;15201:67;15265:2;15260:3;15201:67;:::i;:::-;15194:74;;15277:93;15366:3;15277:93;:::i;:::-;15395:2;15390:3;15386:12;15379:19;;15038:366;;;:::o;15410:::-;15552:3;15573:67;15637:2;15632:3;15573:67;:::i;:::-;15566:74;;15649:93;15738:3;15649:93;:::i;:::-;15767:2;15762:3;15758:12;15751:19;;15410:366;;;:::o;15782:::-;15924:3;15945:67;16009:2;16004:3;15945:67;:::i;:::-;15938:74;;16021:93;16110:3;16021:93;:::i;:::-;16139:2;16134:3;16130:12;16123:19;;15782:366;;;:::o;16154:::-;16296:3;16317:67;16381:2;16376:3;16317:67;:::i;:::-;16310:74;;16393:93;16482:3;16393:93;:::i;:::-;16511:2;16506:3;16502:12;16495:19;;16154:366;;;:::o;16526:::-;16668:3;16689:67;16753:2;16748:3;16689:67;:::i;:::-;16682:74;;16765:93;16854:3;16765:93;:::i;:::-;16883:2;16878:3;16874:12;16867:19;;16526:366;;;:::o;16898:::-;17040:3;17061:67;17125:2;17120:3;17061:67;:::i;:::-;17054:74;;17137:93;17226:3;17137:93;:::i;:::-;17255:2;17250:3;17246:12;17239:19;;16898:366;;;:::o;17270:398::-;17429:3;17450:83;17531:1;17526:3;17450:83;:::i;:::-;17443:90;;17542:93;17631:3;17542:93;:::i;:::-;17660:1;17655:3;17651:11;17644:18;;17270:398;;;:::o;17674:366::-;17816:3;17837:67;17901:2;17896:3;17837:67;:::i;:::-;17830:74;;17913:93;18002:3;17913:93;:::i;:::-;18031:2;18026:3;18022:12;18015:19;;17674:366;;;:::o;18046:118::-;18133:24;18151:5;18133:24;:::i;:::-;18128:3;18121:37;18046:118;;:::o;18170:256::-;18282:3;18297:75;18368:3;18359:6;18297:75;:::i;:::-;18397:2;18392:3;18388:12;18381:19;;18417:3;18410:10;;18170:256;;;;:::o;18432:701::-;18713:3;18735:95;18826:3;18817:6;18735:95;:::i;:::-;18728:102;;18847:95;18938:3;18929:6;18847:95;:::i;:::-;18840:102;;18959:148;19103:3;18959:148;:::i;:::-;18952:155;;19124:3;19117:10;;18432:701;;;;;:::o;19139:379::-;19323:3;19345:147;19488:3;19345:147;:::i;:::-;19338:154;;19509:3;19502:10;;19139:379;;;:::o;19524:222::-;19617:4;19655:2;19644:9;19640:18;19632:26;;19668:71;19736:1;19725:9;19721:17;19712:6;19668:71;:::i;:::-;19524:222;;;;:::o;19752:640::-;19947:4;19985:3;19974:9;19970:19;19962:27;;19999:71;20067:1;20056:9;20052:17;20043:6;19999:71;:::i;:::-;20080:72;20148:2;20137:9;20133:18;20124:6;20080:72;:::i;:::-;20162;20230:2;20219:9;20215:18;20206:6;20162:72;:::i;:::-;20281:9;20275:4;20271:20;20266:2;20255:9;20251:18;20244:48;20309:76;20380:4;20371:6;20309:76;:::i;:::-;20301:84;;19752:640;;;;;;;:::o;20398:210::-;20485:4;20523:2;20512:9;20508:18;20500:26;;20536:65;20598:1;20587:9;20583:17;20574:6;20536:65;:::i;:::-;20398:210;;;;:::o;20614:222::-;20707:4;20745:2;20734:9;20730:18;20722:26;;20758:71;20826:1;20815:9;20811:17;20802:6;20758:71;:::i;:::-;20614:222;;;;:::o;20842:313::-;20955:4;20993:2;20982:9;20978:18;20970:26;;21042:9;21036:4;21032:20;21028:1;21017:9;21013:17;21006:47;21070:78;21143:4;21134:6;21070:78;:::i;:::-;21062:86;;20842:313;;;;:::o;21161:419::-;21327:4;21365:2;21354:9;21350:18;21342:26;;21414:9;21408:4;21404:20;21400:1;21389:9;21385:17;21378:47;21442:131;21568:4;21442:131;:::i;:::-;21434:139;;21161:419;;;:::o;21586:::-;21752:4;21790:2;21779:9;21775:18;21767:26;;21839:9;21833:4;21829:20;21825:1;21814:9;21810:17;21803:47;21867:131;21993:4;21867:131;:::i;:::-;21859:139;;21586:419;;;:::o;22011:::-;22177:4;22215:2;22204:9;22200:18;22192:26;;22264:9;22258:4;22254:20;22250:1;22239:9;22235:17;22228:47;22292:131;22418:4;22292:131;:::i;:::-;22284:139;;22011:419;;;:::o;22436:::-;22602:4;22640:2;22629:9;22625:18;22617:26;;22689:9;22683:4;22679:20;22675:1;22664:9;22660:17;22653:47;22717:131;22843:4;22717:131;:::i;:::-;22709:139;;22436:419;;;:::o;22861:::-;23027:4;23065:2;23054:9;23050:18;23042:26;;23114:9;23108:4;23104:20;23100:1;23089:9;23085:17;23078:47;23142:131;23268:4;23142:131;:::i;:::-;23134:139;;22861:419;;;:::o;23286:::-;23452:4;23490:2;23479:9;23475:18;23467:26;;23539:9;23533:4;23529:20;23525:1;23514:9;23510:17;23503:47;23567:131;23693:4;23567:131;:::i;:::-;23559:139;;23286:419;;;:::o;23711:::-;23877:4;23915:2;23904:9;23900:18;23892:26;;23964:9;23958:4;23954:20;23950:1;23939:9;23935:17;23928:47;23992:131;24118:4;23992:131;:::i;:::-;23984:139;;23711:419;;;:::o;24136:::-;24302:4;24340:2;24329:9;24325:18;24317:26;;24389:9;24383:4;24379:20;24375:1;24364:9;24360:17;24353:47;24417:131;24543:4;24417:131;:::i;:::-;24409:139;;24136:419;;;:::o;24561:::-;24727:4;24765:2;24754:9;24750:18;24742:26;;24814:9;24808:4;24804:20;24800:1;24789:9;24785:17;24778:47;24842:131;24968:4;24842:131;:::i;:::-;24834:139;;24561:419;;;:::o;24986:::-;25152:4;25190:2;25179:9;25175:18;25167:26;;25239:9;25233:4;25229:20;25225:1;25214:9;25210:17;25203:47;25267:131;25393:4;25267:131;:::i;:::-;25259:139;;24986:419;;;:::o;25411:::-;25577:4;25615:2;25604:9;25600:18;25592:26;;25664:9;25658:4;25654:20;25650:1;25639:9;25635:17;25628:47;25692:131;25818:4;25692:131;:::i;:::-;25684:139;;25411:419;;;:::o;25836:::-;26002:4;26040:2;26029:9;26025:18;26017:26;;26089:9;26083:4;26079:20;26075:1;26064:9;26060:17;26053:47;26117:131;26243:4;26117:131;:::i;:::-;26109:139;;25836:419;;;:::o;26261:::-;26427:4;26465:2;26454:9;26450:18;26442:26;;26514:9;26508:4;26504:20;26500:1;26489:9;26485:17;26478:47;26542:131;26668:4;26542:131;:::i;:::-;26534:139;;26261:419;;;:::o;26686:::-;26852:4;26890:2;26879:9;26875:18;26867:26;;26939:9;26933:4;26929:20;26925:1;26914:9;26910:17;26903:47;26967:131;27093:4;26967:131;:::i;:::-;26959:139;;26686:419;;;:::o;27111:::-;27277:4;27315:2;27304:9;27300:18;27292:26;;27364:9;27358:4;27354:20;27350:1;27339:9;27335:17;27328:47;27392:131;27518:4;27392:131;:::i;:::-;27384:139;;27111:419;;;:::o;27536:222::-;27629:4;27667:2;27656:9;27652:18;27644:26;;27680:71;27748:1;27737:9;27733:17;27724:6;27680:71;:::i;:::-;27536:222;;;;:::o;27764:129::-;27798:6;27825:20;;:::i;:::-;27815:30;;27854:33;27882:4;27874:6;27854:33;:::i;:::-;27764:129;;;:::o;27899:75::-;27932:6;27965:2;27959:9;27949:19;;27899:75;:::o;27980:311::-;28057:4;28147:18;28139:6;28136:30;28133:56;;;28169:18;;:::i;:::-;28133:56;28219:4;28211:6;28207:17;28199:25;;28279:4;28273;28269:15;28261:23;;27980:311;;;:::o;28297:307::-;28358:4;28448:18;28440:6;28437:30;28434:56;;;28470:18;;:::i;:::-;28434:56;28508:29;28530:6;28508:29;:::i;:::-;28500:37;;28592:4;28586;28582:15;28574:23;;28297:307;;;:::o;28610:308::-;28672:4;28762:18;28754:6;28751:30;28748:56;;;28784:18;;:::i;:::-;28748:56;28822:29;28844:6;28822:29;:::i;:::-;28814:37;;28906:4;28900;28896:15;28888:23;;28610:308;;;:::o;28924:98::-;28975:6;29009:5;29003:12;28993:22;;28924:98;;;:::o;29028:99::-;29080:6;29114:5;29108:12;29098:22;;29028:99;;;:::o;29133:168::-;29216:11;29250:6;29245:3;29238:19;29290:4;29285:3;29281:14;29266:29;;29133:168;;;;:::o;29307:147::-;29408:11;29445:3;29430:18;;29307:147;;;;:::o;29460:169::-;29544:11;29578:6;29573:3;29566:19;29618:4;29613:3;29609:14;29594:29;;29460:169;;;;:::o;29635:148::-;29737:11;29774:3;29759:18;;29635:148;;;;:::o;29789:305::-;29829:3;29848:20;29866:1;29848:20;:::i;:::-;29843:25;;29882:20;29900:1;29882:20;:::i;:::-;29877:25;;30036:1;29968:66;29964:74;29961:1;29958:81;29955:107;;;30042:18;;:::i;:::-;29955:107;30086:1;30083;30079:9;30072:16;;29789:305;;;;:::o;30100:185::-;30140:1;30157:20;30175:1;30157:20;:::i;:::-;30152:25;;30191:20;30209:1;30191:20;:::i;:::-;30186:25;;30230:1;30220:35;;30235:18;;:::i;:::-;30220:35;30277:1;30274;30270:9;30265:14;;30100:185;;;;:::o;30291:348::-;30331:7;30354:20;30372:1;30354:20;:::i;:::-;30349:25;;30388:20;30406:1;30388:20;:::i;:::-;30383:25;;30576:1;30508:66;30504:74;30501:1;30498:81;30493:1;30486:9;30479:17;30475:105;30472:131;;;30583:18;;:::i;:::-;30472:131;30631:1;30628;30624:9;30613:20;;30291:348;;;;:::o;30645:191::-;30685:4;30705:20;30723:1;30705:20;:::i;:::-;30700:25;;30739:20;30757:1;30739:20;:::i;:::-;30734:25;;30778:1;30775;30772:8;30769:34;;;30783:18;;:::i;:::-;30769:34;30828:1;30825;30821:9;30813:17;;30645:191;;;;:::o;30842:96::-;30879:7;30908:24;30926:5;30908:24;:::i;:::-;30897:35;;30842:96;;;:::o;30944:90::-;30978:7;31021:5;31014:13;31007:21;30996:32;;30944:90;;;:::o;31040:77::-;31077:7;31106:5;31095:16;;31040:77;;;:::o;31123:149::-;31159:7;31199:66;31192:5;31188:78;31177:89;;31123:149;;;:::o;31278:126::-;31315:7;31355:42;31348:5;31344:54;31333:65;;31278:126;;;:::o;31410:77::-;31447:7;31476:5;31465:16;;31410:77;;;:::o;31493:154::-;31577:6;31572:3;31567;31554:30;31639:1;31630:6;31625:3;31621:16;31614:27;31493:154;;;:::o;31653:307::-;31721:1;31731:113;31745:6;31742:1;31739:13;31731:113;;;31830:1;31825:3;31821:11;31815:18;31811:1;31806:3;31802:11;31795:39;31767:2;31764:1;31760:10;31755:15;;31731:113;;;31862:6;31859:1;31856:13;31853:101;;;31942:1;31933:6;31928:3;31924:16;31917:27;31853:101;31702:258;31653:307;;;:::o;31966:320::-;32010:6;32047:1;32041:4;32037:12;32027:22;;32094:1;32088:4;32084:12;32115:18;32105:81;;32171:4;32163:6;32159:17;32149:27;;32105:81;32233:2;32225:6;32222:14;32202:18;32199:38;32196:84;;;32252:18;;:::i;:::-;32196:84;32017:269;31966:320;;;:::o;32292:281::-;32375:27;32397:4;32375:27;:::i;:::-;32367:6;32363:40;32505:6;32493:10;32490:22;32469:18;32457:10;32454:34;32451:62;32448:88;;;32516:18;;:::i;:::-;32448:88;32556:10;32552:2;32545:22;32335:238;32292:281;;:::o;32579:233::-;32618:3;32641:24;32659:5;32641:24;:::i;:::-;32632:33;;32687:66;32680:5;32677:77;32674:103;;;32757:18;;:::i;:::-;32674:103;32804:1;32797:5;32793:13;32786:20;;32579:233;;;:::o;32818:100::-;32857:7;32886:26;32906:5;32886:26;:::i;:::-;32875:37;;32818:100;;;:::o;32924:94::-;32963:7;32992:20;33006:5;32992:20;:::i;:::-;32981:31;;32924:94;;;:::o;33024:176::-;33056:1;33073:20;33091:1;33073:20;:::i;:::-;33068:25;;33107:20;33125:1;33107:20;:::i;:::-;33102:25;;33146:1;33136:35;;33151:18;;:::i;:::-;33136:35;33192:1;33189;33185:9;33180:14;;33024:176;;;;:::o;33206:180::-;33254:77;33251:1;33244:88;33351:4;33348:1;33341:15;33375:4;33372:1;33365:15;33392:180;33440:77;33437:1;33430:88;33537:4;33534:1;33527:15;33561:4;33558:1;33551:15;33578:180;33626:77;33623:1;33616:88;33723:4;33720:1;33713:15;33747:4;33744:1;33737:15;33764:180;33812:77;33809:1;33802:88;33909:4;33906:1;33899:15;33933:4;33930:1;33923:15;33950:180;33998:77;33995:1;33988:88;34095:4;34092:1;34085:15;34119:4;34116:1;34109:15;34136:117;34245:1;34242;34235:12;34259:117;34368:1;34365;34358:12;34382:117;34491:1;34488;34481:12;34505:117;34614:1;34611;34604:12;34628:117;34737:1;34734;34727:12;34751:102;34792:6;34843:2;34839:7;34834:2;34827:5;34823:14;34819:28;34809:38;;34751:102;;;:::o;34859:94::-;34892:8;34940:5;34936:2;34932:14;34911:35;;34859:94;;;:::o;34959:225::-;35099:34;35095:1;35087:6;35083:14;35076:58;35168:8;35163:2;35155:6;35151:15;35144:33;34959:225;:::o;35190:177::-;35330:29;35326:1;35318:6;35314:14;35307:53;35190:177;:::o;35373:166::-;35513:18;35509:1;35501:6;35497:14;35490:42;35373:166;:::o;35545:181::-;35685:33;35681:1;35673:6;35669:14;35662:57;35545:181;:::o;35732:236::-;35872:34;35868:1;35860:6;35856:14;35849:58;35941:19;35936:2;35928:6;35924:15;35917:44;35732:236;:::o;35974:173::-;36114:25;36110:1;36102:6;36098:14;36091:49;35974:173;:::o;36153:170::-;36293:22;36289:1;36281:6;36277:14;36270:46;36153:170;:::o;36329:173::-;36469:25;36465:1;36457:6;36453:14;36446:49;36329:173;:::o;36508:155::-;36648:7;36644:1;36636:6;36632:14;36625:31;36508:155;:::o;36669:169::-;36809:21;36805:1;36797:6;36793:14;36786:45;36669:169;:::o;36844:182::-;36984:34;36980:1;36972:6;36968:14;36961:58;36844:182;:::o;37032:234::-;37172:34;37168:1;37160:6;37156:14;37149:58;37241:17;37236:2;37228:6;37224:15;37217:42;37032:234;:::o;37272:171::-;37412:23;37408:1;37400:6;37396:14;37389:47;37272:171;:::o;37449:178::-;37589:30;37585:1;37577:6;37573:14;37566:54;37449:178;:::o;37633:174::-;37773:26;37769:1;37761:6;37757:14;37750:50;37633:174;:::o;37813:114::-;;:::o;37933:176::-;38073:28;38069:1;38061:6;38057:14;38050:52;37933:176;:::o;38115:122::-;38188:24;38206:5;38188:24;:::i;:::-;38181:5;38178:35;38168:63;;38227:1;38224;38217:12;38168:63;38115:122;:::o;38243:116::-;38313:21;38328:5;38313:21;:::i;:::-;38306:5;38303:32;38293:60;;38349:1;38346;38339:12;38293:60;38243:116;:::o;38365:122::-;38438:24;38456:5;38438:24;:::i;:::-;38431:5;38428:35;38418:63;;38477:1;38474;38467:12;38418:63;38365:122;:::o;38493:120::-;38565:23;38582:5;38565:23;:::i;:::-;38558:5;38555:34;38545:62;;38603:1;38600;38593:12;38545:62;38493:120;:::o;38619:122::-;38692:24;38710:5;38692:24;:::i;:::-;38685:5;38682:35;38672:63;;38731:1;38728;38721:12;38672:63;38619:122;:::o

Swarm Source

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