ETH Price: $2,238.51 (-6.42%)

Token

PixelLanders (PLFTW)
 

Overview

Max Total Supply

262 PLFTW

Holders

21

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zayuhwho.eth
Balance
20 PLFTW
0x49f7f5e32cd4c5d705b66413fa5c93b18a3cb8f3
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:
PixelLander

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-02
*/

// SPDX-License-Identifier: GPL-3.0

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

pragma solidity ^0.8.0;

abstract contract ReentrancyGuard {
    
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    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;

        _;

        _status = _NOT_ENTERED;
    }
}


// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    function toString(uint256 value) internal pure returns (string memory) {

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.8.0;

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: @openzeppelin/contracts/utils/Address.sol


// 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 {
    
    function isContract(address account) internal view returns (bool) {
        return account.code.length > 0;
    }

    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");
    }

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    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");
    }

    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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

interface IERC721Receiver {
  
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// 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 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

  
    function ownerOf(uint256 tokenId) external view returns (address owner);


    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

  
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

 
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;


    function approve(address to, uint256 tokenId) external;


    function setApprovalForAll(address operator, bool _approved) external;


    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // 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;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}


// File: erc721a/contracts/ERC721A.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @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, IERC721A {
    using Address for address;
    using Strings for uint256;

    // 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 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override 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) {
        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) {
        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) {
        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 {
        _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) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

        if (_msgSender() != owner) if(!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 virtual 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()) if(!_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;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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);
    }


    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))
                }
            }
        }
    }

 
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}


    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


// File: contracts/pixellander.sol
// Pixel Lander

pragma solidity >=0.7.0 <0.9.0;

contract PixelLander is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  
  uint256 public cost = 0.00 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 2;

  bool public paused = true;
  bool public revealed = true;

  constructor() ERC721A("PixelLanders", "PLFTW") {}

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
      if (msg.sender != owner()) {
        require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
      }
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    if (msg.sender != owner()) {
        require(!paused, 'The contract is paused!');
        }
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned) {
        if (ownership.addr != address(0)) {
          latestOwnerAddress = ownership.addr;
        }

        if (latestOwnerAddress == _owner) {
          ownedTokenIds[ownedTokenIndex] = currentTokenId;

          ownedTokenIndex++;
        }
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

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

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

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

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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000289565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200007992919062000289565b506000600c55612710600d556002600e556001600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff021916908315150217905550348015620000cd57600080fd5b506040518060400160405280600c81526020017f506978656c4c616e6465727300000000000000000000000000000000000000008152506040518060400160405280600581526020017f504c46545700000000000000000000000000000000000000000000000000000081525081600290805190602001906200015292919062000289565b5080600390805190602001906200016b92919062000289565b506200017c620001b260201b60201c565b6000819055505050620001a462000198620001bb60201b60201c565b620001c360201b60201c565b60016009819055506200039e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002979062000339565b90600052602060002090601f016020900481019282620002bb576000855562000307565b82601f10620002d657805160ff191683800117855562000307565b8280016001018555821562000307579182015b8281111562000306578251825591602001919060010190620002e9565b5b5090506200031691906200031a565b5090565b5b80821115620003355760008160009055506001016200031b565b5090565b600060028204905060018216806200035257607f821691505b602082108114156200036957620003686200036f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613ee880620003ae6000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146106fe578063e0a8085314610729578063e985e9c514610752578063efbd73f41461078f578063f2fde38b146107b8576101f9565b8063a22cb46514610646578063b071401b1461066f578063b88d4fde14610698578063c87b56dd146106c1576101f9565b80638da5cb5b116100dc5780638da5cb5b146105a957806394354fd0146105d457806395d89b41146105ff578063a0712d681461062a576101f9565b80636352211e146104ef57806370a082311461052c578063715018a6146105695780637ec4a65914610580576101f9565b806323b872dd1161019057806344a0d68a1161015f57806344a0d68a1461041a57806351830227146104435780635503a0e81461046e5780635c975abb1461049957806362b99ad4146104c4576101f9565b806323b872dd146103745780633ccfd60b1461039d57806342842e0e146103b4578063438b6300146103dd576101f9565b806313faede6116101cc57806313faede6146102cc57806316ba10e0146102f757806316c38b3c1461032057806318160ddd14610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061319e565b6107e1565b604051610232919061368c565b60405180910390f35b34801561024757600080fd5b506102506108c3565b60405161025d91906136a7565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613241565b610955565b60405161029a9190613603565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613131565b6109d1565b005b3480156102d857600080fd5b506102e1610ad6565b6040516102ee91906137c9565b60405180910390f35b34801561030357600080fd5b5061031e600480360381019061031991906131f8565b610adc565b005b34801561032c57600080fd5b5061034760048036038101906103429190613171565b610b72565b005b34801561035557600080fd5b5061035e610c0b565b60405161036b91906137c9565b60405180910390f35b34801561038057600080fd5b5061039b6004803603810190610396919061301b565b610c22565b005b3480156103a957600080fd5b506103b2610c32565b005b3480156103c057600080fd5b506103db60048036038101906103d6919061301b565b610d84565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612fae565b610da4565b604051610411919061366a565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190613241565b610fb8565b005b34801561044f57600080fd5b5061045861103e565b604051610465919061368c565b60405180910390f35b34801561047a57600080fd5b50610483611051565b60405161049091906136a7565b60405180910390f35b3480156104a557600080fd5b506104ae6110df565b6040516104bb919061368c565b60405180910390f35b3480156104d057600080fd5b506104d96110f2565b6040516104e691906136a7565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190613241565b611180565b6040516105239190613603565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190612fae565b611196565b60405161056091906137c9565b60405180910390f35b34801561057557600080fd5b5061057e611266565b005b34801561058c57600080fd5b506105a760048036038101906105a291906131f8565b6112ee565b005b3480156105b557600080fd5b506105be611384565b6040516105cb9190613603565b60405180910390f35b3480156105e057600080fd5b506105e96113ae565b6040516105f691906137c9565b60405180910390f35b34801561060b57600080fd5b506106146113b4565b60405161062191906136a7565b60405180910390f35b610644600480360381019061063f9190613241565b611446565b005b34801561065257600080fd5b5061066d600480360381019061066891906130f1565b61161c565b005b34801561067b57600080fd5b5061069660048036038101906106919190613241565b611794565b005b3480156106a457600080fd5b506106bf60048036038101906106ba919061306e565b61181a565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190613241565b611892565b6040516106f591906136a7565b60405180910390f35b34801561070a57600080fd5b5061071361193c565b60405161072091906137c9565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190613171565b611942565b005b34801561075e57600080fd5b5061077960048036038101906107749190612fdb565b6119db565b604051610786919061368c565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b1919061326e565b611a6f565b005b3480156107c457600080fd5b506107df60048036038101906107da9190612fae565b611ba3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108bc57506108bb82611c9b565b5b9050919050565b6060600280546108d290613ad2565b80601f01602080910402602001604051908101604052809291908181526020018280546108fe90613ad2565b801561094b5780601f106109205761010080835404028352916020019161094b565b820191906000526020600020905b81548152906001019060200180831161092e57829003601f168201915b5050505050905090565b600061096082611d05565b610996576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109dc82611180565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a44576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a63611d53565b73ffffffffffffffffffffffffffffffffffffffff1614610ac657610a8f81610a8a611d53565b6119db565b610ac5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610ad1838383611d5b565b505050565b600c5481565b610ae4611d53565b73ffffffffffffffffffffffffffffffffffffffff16610b02611384565b73ffffffffffffffffffffffffffffffffffffffff1614610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f90613709565b60405180910390fd5b80600b9080519060200190610b6e929190612d7f565b5050565b610b7a611d53565b73ffffffffffffffffffffffffffffffffffffffff16610b98611384565b73ffffffffffffffffffffffffffffffffffffffff1614610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590613709565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610c15611e0d565b6001546000540303905090565b610c2d838383611e16565b505050565b610c3a611d53565b73ffffffffffffffffffffffffffffffffffffffff16610c58611384565b73ffffffffffffffffffffffffffffffffffffffff1614610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca590613709565b60405180910390fd5b60026009541415610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90613789565b60405180910390fd5b60026009819055506000610d06611384565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d29906135ee565b60006040518083038185875af1925050503d8060008114610d66576040519150601f19603f3d011682016040523d82523d6000602084013e610d6b565b606091505b5050905080610d7957600080fd5b506001600981905550565b610d9f8383836040518060200160405280600081525061181a565b505050565b60606000610db183611196565b905060008167ffffffffffffffff811115610dcf57610dce613c6b565b5b604051908082528060200260200182016040528015610dfd5781602001602082028036833780820191505090505b5090506000610e0a611e0d565b90506000805b8482108015610e20575060005483105b15610fab576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610f9757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f3357806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f965783858481518110610f7b57610f7a613c3c565b5b6020026020010181815250508280610f9290613b35565b9350505b5b8380610fa290613b35565b94505050610e10565b8395505050505050919050565b610fc0611d53565b73ffffffffffffffffffffffffffffffffffffffff16610fde611384565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613709565b60405180910390fd5b80600c8190555050565b600f60019054906101000a900460ff1681565b600b805461105e90613ad2565b80601f016020809104026020016040519081016040528092919081815260200182805461108a90613ad2565b80156110d75780601f106110ac576101008083540402835291602001916110d7565b820191906000526020600020905b8154815290600101906020018083116110ba57829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b600a80546110ff90613ad2565b80601f016020809104026020016040519081016040528092919081815260200182805461112b90613ad2565b80156111785780601f1061114d57610100808354040283529160200191611178565b820191906000526020600020905b81548152906001019060200180831161115b57829003601f168201915b505050505081565b600061118b826122cc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111fe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61126e611d53565b73ffffffffffffffffffffffffffffffffffffffff1661128c611384565b73ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990613709565b60405180910390fd5b6112ec6000612557565b565b6112f6611d53565b73ffffffffffffffffffffffffffffffffffffffff16611314611384565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190613709565b60405180910390fd5b80600a9080519060200190611380929190612d7f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600380546113c390613ad2565b80601f01602080910402602001604051908101604052809291908181526020018280546113ef90613ad2565b801561143c5780601f106114115761010080835404028352916020019161143c565b820191906000526020600020905b81548152906001019060200180831161141f57829003601f168201915b5050505050905090565b806000811180156114595750600e548111155b611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f906136e9565b60405180910390fd5b600d54816114a4610c0b565b6114ae9190613907565b11156114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e690613769565b60405180910390fd5b816114f8611384565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461157b5780600c54611538919061398e565b34101561157a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611571906137a9565b60405180910390fd5b5b611583611384565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461160657600f60009054906101000a900460ff1615611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613729565b60405180910390fd5b5b611617611611611d53565b8461261d565b505050565b611624611d53565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611689576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611696611d53565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611743611d53565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611788919061368c565b60405180910390a35050565b61179c611d53565b73ffffffffffffffffffffffffffffffffffffffff166117ba611384565b73ffffffffffffffffffffffffffffffffffffffff1614611810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180790613709565b60405180910390fd5b80600e8190555050565b611825848484611e16565b6118448373ffffffffffffffffffffffffffffffffffffffff1661263b565b1561188c576118558484848461265e565b61188b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061189d82611d05565b6118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390613749565b60405180910390fd5b60006118e66127be565b905060008151116119065760405180602001604052806000815250611934565b8061191084612850565b600b604051602001611924939291906135bd565b6040516020818303038152906040525b915050919050565b600d5481565b61194a611d53565b73ffffffffffffffffffffffffffffffffffffffff16611968611384565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b590613709565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611a825750600e548111155b611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab8906136e9565b60405180910390fd5b600d5481611acd610c0b565b611ad79190613907565b1115611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f90613769565b60405180910390fd5b611b20611d53565b73ffffffffffffffffffffffffffffffffffffffff16611b3e611384565b73ffffffffffffffffffffffffffffffffffffffff1614611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b90613709565b60405180910390fd5b611b9e828461261d565b505050565b611bab611d53565b73ffffffffffffffffffffffffffffffffffffffff16611bc9611384565b73ffffffffffffffffffffffffffffffffffffffff1614611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690613709565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c86906136c9565b60405180910390fd5b611c9881612557565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611d10611e0d565b11158015611d1f575060005482105b8015611d4c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611e21826122cc565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e8c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611ead611d53565b73ffffffffffffffffffffffffffffffffffffffff161480611edc5750611edb85611ed6611d53565b6119db565b5b80611f215750611eea611d53565b73ffffffffffffffffffffffffffffffffffffffff16611f0984610955565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f5a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fc1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fce85858560016129b1565b611fda60008487611d5b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561225a57600054821461225957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122c585858560016129b7565b5050505050565b6122d4612e05565b6000829050806122e2611e0d565b116125205760005481101561251f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161251d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612401578092505050612552565b5b60011561251c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612517578092505050612552565b612402565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126378282604051806020016040528060008152506129bd565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612684611d53565b8786866040518563ffffffff1660e01b81526004016126a6949392919061361e565b602060405180830381600087803b1580156126c057600080fd5b505af19250505080156126f157506040513d601f19601f820116820180604052508101906126ee91906131cb565b60015b61276b573d8060008114612721576040519150601f19603f3d011682016040523d82523d6000602084013e612726565b606091505b50600081511415612763576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546127cd90613ad2565b80601f01602080910402602001604051908101604052809291908181526020018280546127f990613ad2565b80156128465780601f1061281b57610100808354040283529160200191612846565b820191906000526020600020905b81548152906001019060200180831161282957829003601f168201915b5050505050905090565b60606000821415612898576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129ac565b600082905060005b600082146128ca5780806128b390613b35565b915050600a826128c3919061395d565b91506128a0565b60008167ffffffffffffffff8111156128e6576128e5613c6b565b5b6040519080825280601f01601f1916602001820160405280156129185781602001600182028036833780820191505090505b5090505b600085146129a55760018261293191906139e8565b9150600a856129409190613b7e565b603061294c9190613907565b60f81b81838151811061296257612961613c3c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561299e919061395d565b945061291c565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a2a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612a65576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a7260008583866129b1565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612c338673ffffffffffffffffffffffffffffffffffffffff1661263b565b15612cf8575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ca8600087848060010195508761265e565b612cde576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612c39578260005414612cf357600080fd5b612d63565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612cf9575b816000819055505050612d7960008583866129b7565b50505050565b828054612d8b90613ad2565b90600052602060002090601f016020900481019282612dad5760008555612df4565b82601f10612dc657805160ff1916838001178555612df4565b82800160010185558215612df4579182015b82811115612df3578251825591602001919060010190612dd8565b5b509050612e019190612e48565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e61576000816000905550600101612e49565b5090565b6000612e78612e7384613809565b6137e4565b905082815260208101848484011115612e9457612e93613c9f565b5b612e9f848285613a90565b509392505050565b6000612eba612eb58461383a565b6137e4565b905082815260208101848484011115612ed657612ed5613c9f565b5b612ee1848285613a90565b509392505050565b600081359050612ef881613e56565b92915050565b600081359050612f0d81613e6d565b92915050565b600081359050612f2281613e84565b92915050565b600081519050612f3781613e84565b92915050565b600082601f830112612f5257612f51613c9a565b5b8135612f62848260208601612e65565b91505092915050565b600082601f830112612f8057612f7f613c9a565b5b8135612f90848260208601612ea7565b91505092915050565b600081359050612fa881613e9b565b92915050565b600060208284031215612fc457612fc3613ca9565b5b6000612fd284828501612ee9565b91505092915050565b60008060408385031215612ff257612ff1613ca9565b5b600061300085828601612ee9565b925050602061301185828601612ee9565b9150509250929050565b60008060006060848603121561303457613033613ca9565b5b600061304286828701612ee9565b935050602061305386828701612ee9565b925050604061306486828701612f99565b9150509250925092565b6000806000806080858703121561308857613087613ca9565b5b600061309687828801612ee9565b94505060206130a787828801612ee9565b93505060406130b887828801612f99565b925050606085013567ffffffffffffffff8111156130d9576130d8613ca4565b5b6130e587828801612f3d565b91505092959194509250565b6000806040838503121561310857613107613ca9565b5b600061311685828601612ee9565b925050602061312785828601612efe565b9150509250929050565b6000806040838503121561314857613147613ca9565b5b600061315685828601612ee9565b925050602061316785828601612f99565b9150509250929050565b60006020828403121561318757613186613ca9565b5b600061319584828501612efe565b91505092915050565b6000602082840312156131b4576131b3613ca9565b5b60006131c284828501612f13565b91505092915050565b6000602082840312156131e1576131e0613ca9565b5b60006131ef84828501612f28565b91505092915050565b60006020828403121561320e5761320d613ca9565b5b600082013567ffffffffffffffff81111561322c5761322b613ca4565b5b61323884828501612f6b565b91505092915050565b60006020828403121561325757613256613ca9565b5b600061326584828501612f99565b91505092915050565b6000806040838503121561328557613284613ca9565b5b600061329385828601612f99565b92505060206132a485828601612ee9565b9150509250929050565b60006132ba838361359f565b60208301905092915050565b6132cf81613a1c565b82525050565b60006132e082613890565b6132ea81856138be565b93506132f58361386b565b8060005b8381101561332657815161330d88826132ae565b9750613318836138b1565b9250506001810190506132f9565b5085935050505092915050565b61333c81613a2e565b82525050565b600061334d8261389b565b61335781856138cf565b9350613367818560208601613a9f565b61337081613cae565b840191505092915050565b6000613386826138a6565b61339081856138eb565b93506133a0818560208601613a9f565b6133a981613cae565b840191505092915050565b60006133bf826138a6565b6133c981856138fc565b93506133d9818560208601613a9f565b80840191505092915050565b600081546133f281613ad2565b6133fc81866138fc565b9450600182166000811461341757600181146134285761345b565b60ff1983168652818601935061345b565b6134318561387b565b60005b8381101561345357815481890152600182019150602081019050613434565b838801955050505b50505092915050565b60006134716026836138eb565b915061347c82613cbf565b604082019050919050565b60006134946014836138eb565b915061349f82613d0e565b602082019050919050565b60006134b76020836138eb565b91506134c282613d37565b602082019050919050565b60006134da6017836138eb565b91506134e582613d60565b602082019050919050565b60006134fd602f836138eb565b915061350882613d89565b604082019050919050565b60006135206000836138e0565b915061352b82613dd8565b600082019050919050565b60006135436014836138eb565b915061354e82613ddb565b602082019050919050565b6000613566601f836138eb565b915061357182613e04565b602082019050919050565b60006135896013836138eb565b915061359482613e2d565b602082019050919050565b6135a881613a86565b82525050565b6135b781613a86565b82525050565b60006135c982866133b4565b91506135d582856133b4565b91506135e182846133e5565b9150819050949350505050565b60006135f982613513565b9150819050919050565b600060208201905061361860008301846132c6565b92915050565b600060808201905061363360008301876132c6565b61364060208301866132c6565b61364d60408301856135ae565b818103606083015261365f8184613342565b905095945050505050565b6000602082019050818103600083015261368481846132d5565b905092915050565b60006020820190506136a16000830184613333565b92915050565b600060208201905081810360008301526136c1818461337b565b905092915050565b600060208201905081810360008301526136e281613464565b9050919050565b6000602082019050818103600083015261370281613487565b9050919050565b60006020820190508181036000830152613722816134aa565b9050919050565b60006020820190508181036000830152613742816134cd565b9050919050565b60006020820190508181036000830152613762816134f0565b9050919050565b6000602082019050818103600083015261378281613536565b9050919050565b600060208201905081810360008301526137a281613559565b9050919050565b600060208201905081810360008301526137c28161357c565b9050919050565b60006020820190506137de60008301846135ae565b92915050565b60006137ee6137ff565b90506137fa8282613b04565b919050565b6000604051905090565b600067ffffffffffffffff82111561382457613823613c6b565b5b61382d82613cae565b9050602081019050919050565b600067ffffffffffffffff82111561385557613854613c6b565b5b61385e82613cae565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061391282613a86565b915061391d83613a86565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561395257613951613baf565b5b828201905092915050565b600061396882613a86565b915061397383613a86565b92508261398357613982613bde565b5b828204905092915050565b600061399982613a86565b91506139a483613a86565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139dd576139dc613baf565b5b828202905092915050565b60006139f382613a86565b91506139fe83613a86565b925082821015613a1157613a10613baf565b5b828203905092915050565b6000613a2782613a66565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613abd578082015181840152602081019050613aa2565b83811115613acc576000848401525b50505050565b60006002820490506001821680613aea57607f821691505b60208210811415613afe57613afd613c0d565b5b50919050565b613b0d82613cae565b810181811067ffffffffffffffff82111715613b2c57613b2b613c6b565b5b80604052505050565b6000613b4082613a86565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b7357613b72613baf565b5b600182019050919050565b6000613b8982613a86565b9150613b9483613a86565b925082613ba457613ba3613bde565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613e5f81613a1c565b8114613e6a57600080fd5b50565b613e7681613a2e565b8114613e8157600080fd5b50565b613e8d81613a3a565b8114613e9857600080fd5b50565b613ea481613a86565b8114613eaf57600080fd5b5056fea264697066735822122019bb56fd6a833d8f49887df41026dcab776e5b27239dc1a2c076fd1b27b489be64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146106fe578063e0a8085314610729578063e985e9c514610752578063efbd73f41461078f578063f2fde38b146107b8576101f9565b8063a22cb46514610646578063b071401b1461066f578063b88d4fde14610698578063c87b56dd146106c1576101f9565b80638da5cb5b116100dc5780638da5cb5b146105a957806394354fd0146105d457806395d89b41146105ff578063a0712d681461062a576101f9565b80636352211e146104ef57806370a082311461052c578063715018a6146105695780637ec4a65914610580576101f9565b806323b872dd1161019057806344a0d68a1161015f57806344a0d68a1461041a57806351830227146104435780635503a0e81461046e5780635c975abb1461049957806362b99ad4146104c4576101f9565b806323b872dd146103745780633ccfd60b1461039d57806342842e0e146103b4578063438b6300146103dd576101f9565b806313faede6116101cc57806313faede6146102cc57806316ba10e0146102f757806316c38b3c1461032057806318160ddd14610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061319e565b6107e1565b604051610232919061368c565b60405180910390f35b34801561024757600080fd5b506102506108c3565b60405161025d91906136a7565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613241565b610955565b60405161029a9190613603565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613131565b6109d1565b005b3480156102d857600080fd5b506102e1610ad6565b6040516102ee91906137c9565b60405180910390f35b34801561030357600080fd5b5061031e600480360381019061031991906131f8565b610adc565b005b34801561032c57600080fd5b5061034760048036038101906103429190613171565b610b72565b005b34801561035557600080fd5b5061035e610c0b565b60405161036b91906137c9565b60405180910390f35b34801561038057600080fd5b5061039b6004803603810190610396919061301b565b610c22565b005b3480156103a957600080fd5b506103b2610c32565b005b3480156103c057600080fd5b506103db60048036038101906103d6919061301b565b610d84565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612fae565b610da4565b604051610411919061366a565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190613241565b610fb8565b005b34801561044f57600080fd5b5061045861103e565b604051610465919061368c565b60405180910390f35b34801561047a57600080fd5b50610483611051565b60405161049091906136a7565b60405180910390f35b3480156104a557600080fd5b506104ae6110df565b6040516104bb919061368c565b60405180910390f35b3480156104d057600080fd5b506104d96110f2565b6040516104e691906136a7565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190613241565b611180565b6040516105239190613603565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190612fae565b611196565b60405161056091906137c9565b60405180910390f35b34801561057557600080fd5b5061057e611266565b005b34801561058c57600080fd5b506105a760048036038101906105a291906131f8565b6112ee565b005b3480156105b557600080fd5b506105be611384565b6040516105cb9190613603565b60405180910390f35b3480156105e057600080fd5b506105e96113ae565b6040516105f691906137c9565b60405180910390f35b34801561060b57600080fd5b506106146113b4565b60405161062191906136a7565b60405180910390f35b610644600480360381019061063f9190613241565b611446565b005b34801561065257600080fd5b5061066d600480360381019061066891906130f1565b61161c565b005b34801561067b57600080fd5b5061069660048036038101906106919190613241565b611794565b005b3480156106a457600080fd5b506106bf60048036038101906106ba919061306e565b61181a565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190613241565b611892565b6040516106f591906136a7565b60405180910390f35b34801561070a57600080fd5b5061071361193c565b60405161072091906137c9565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190613171565b611942565b005b34801561075e57600080fd5b5061077960048036038101906107749190612fdb565b6119db565b604051610786919061368c565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b1919061326e565b611a6f565b005b3480156107c457600080fd5b506107df60048036038101906107da9190612fae565b611ba3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108bc57506108bb82611c9b565b5b9050919050565b6060600280546108d290613ad2565b80601f01602080910402602001604051908101604052809291908181526020018280546108fe90613ad2565b801561094b5780601f106109205761010080835404028352916020019161094b565b820191906000526020600020905b81548152906001019060200180831161092e57829003601f168201915b5050505050905090565b600061096082611d05565b610996576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109dc82611180565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a44576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a63611d53565b73ffffffffffffffffffffffffffffffffffffffff1614610ac657610a8f81610a8a611d53565b6119db565b610ac5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610ad1838383611d5b565b505050565b600c5481565b610ae4611d53565b73ffffffffffffffffffffffffffffffffffffffff16610b02611384565b73ffffffffffffffffffffffffffffffffffffffff1614610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f90613709565b60405180910390fd5b80600b9080519060200190610b6e929190612d7f565b5050565b610b7a611d53565b73ffffffffffffffffffffffffffffffffffffffff16610b98611384565b73ffffffffffffffffffffffffffffffffffffffff1614610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590613709565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610c15611e0d565b6001546000540303905090565b610c2d838383611e16565b505050565b610c3a611d53565b73ffffffffffffffffffffffffffffffffffffffff16610c58611384565b73ffffffffffffffffffffffffffffffffffffffff1614610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca590613709565b60405180910390fd5b60026009541415610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90613789565b60405180910390fd5b60026009819055506000610d06611384565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d29906135ee565b60006040518083038185875af1925050503d8060008114610d66576040519150601f19603f3d011682016040523d82523d6000602084013e610d6b565b606091505b5050905080610d7957600080fd5b506001600981905550565b610d9f8383836040518060200160405280600081525061181a565b505050565b60606000610db183611196565b905060008167ffffffffffffffff811115610dcf57610dce613c6b565b5b604051908082528060200260200182016040528015610dfd5781602001602082028036833780820191505090505b5090506000610e0a611e0d565b90506000805b8482108015610e20575060005483105b15610fab576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610f9757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f3357806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f965783858481518110610f7b57610f7a613c3c565b5b6020026020010181815250508280610f9290613b35565b9350505b5b8380610fa290613b35565b94505050610e10565b8395505050505050919050565b610fc0611d53565b73ffffffffffffffffffffffffffffffffffffffff16610fde611384565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613709565b60405180910390fd5b80600c8190555050565b600f60019054906101000a900460ff1681565b600b805461105e90613ad2565b80601f016020809104026020016040519081016040528092919081815260200182805461108a90613ad2565b80156110d75780601f106110ac576101008083540402835291602001916110d7565b820191906000526020600020905b8154815290600101906020018083116110ba57829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b600a80546110ff90613ad2565b80601f016020809104026020016040519081016040528092919081815260200182805461112b90613ad2565b80156111785780601f1061114d57610100808354040283529160200191611178565b820191906000526020600020905b81548152906001019060200180831161115b57829003601f168201915b505050505081565b600061118b826122cc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111fe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61126e611d53565b73ffffffffffffffffffffffffffffffffffffffff1661128c611384565b73ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990613709565b60405180910390fd5b6112ec6000612557565b565b6112f6611d53565b73ffffffffffffffffffffffffffffffffffffffff16611314611384565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190613709565b60405180910390fd5b80600a9080519060200190611380929190612d7f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600380546113c390613ad2565b80601f01602080910402602001604051908101604052809291908181526020018280546113ef90613ad2565b801561143c5780601f106114115761010080835404028352916020019161143c565b820191906000526020600020905b81548152906001019060200180831161141f57829003601f168201915b5050505050905090565b806000811180156114595750600e548111155b611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f906136e9565b60405180910390fd5b600d54816114a4610c0b565b6114ae9190613907565b11156114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e690613769565b60405180910390fd5b816114f8611384565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461157b5780600c54611538919061398e565b34101561157a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611571906137a9565b60405180910390fd5b5b611583611384565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461160657600f60009054906101000a900460ff1615611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613729565b60405180910390fd5b5b611617611611611d53565b8461261d565b505050565b611624611d53565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611689576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611696611d53565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611743611d53565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611788919061368c565b60405180910390a35050565b61179c611d53565b73ffffffffffffffffffffffffffffffffffffffff166117ba611384565b73ffffffffffffffffffffffffffffffffffffffff1614611810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180790613709565b60405180910390fd5b80600e8190555050565b611825848484611e16565b6118448373ffffffffffffffffffffffffffffffffffffffff1661263b565b1561188c576118558484848461265e565b61188b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061189d82611d05565b6118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390613749565b60405180910390fd5b60006118e66127be565b905060008151116119065760405180602001604052806000815250611934565b8061191084612850565b600b604051602001611924939291906135bd565b6040516020818303038152906040525b915050919050565b600d5481565b61194a611d53565b73ffffffffffffffffffffffffffffffffffffffff16611968611384565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b590613709565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611a825750600e548111155b611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab8906136e9565b60405180910390fd5b600d5481611acd610c0b565b611ad79190613907565b1115611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f90613769565b60405180910390fd5b611b20611d53565b73ffffffffffffffffffffffffffffffffffffffff16611b3e611384565b73ffffffffffffffffffffffffffffffffffffffff1614611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b90613709565b60405180910390fd5b611b9e828461261d565b505050565b611bab611d53565b73ffffffffffffffffffffffffffffffffffffffff16611bc9611384565b73ffffffffffffffffffffffffffffffffffffffff1614611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690613709565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c86906136c9565b60405180910390fd5b611c9881612557565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611d10611e0d565b11158015611d1f575060005482105b8015611d4c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611e21826122cc565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e8c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611ead611d53565b73ffffffffffffffffffffffffffffffffffffffff161480611edc5750611edb85611ed6611d53565b6119db565b5b80611f215750611eea611d53565b73ffffffffffffffffffffffffffffffffffffffff16611f0984610955565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f5a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fc1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fce85858560016129b1565b611fda60008487611d5b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561225a57600054821461225957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122c585858560016129b7565b5050505050565b6122d4612e05565b6000829050806122e2611e0d565b116125205760005481101561251f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161251d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612401578092505050612552565b5b60011561251c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612517578092505050612552565b612402565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126378282604051806020016040528060008152506129bd565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612684611d53565b8786866040518563ffffffff1660e01b81526004016126a6949392919061361e565b602060405180830381600087803b1580156126c057600080fd5b505af19250505080156126f157506040513d601f19601f820116820180604052508101906126ee91906131cb565b60015b61276b573d8060008114612721576040519150601f19603f3d011682016040523d82523d6000602084013e612726565b606091505b50600081511415612763576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546127cd90613ad2565b80601f01602080910402602001604051908101604052809291908181526020018280546127f990613ad2565b80156128465780601f1061281b57610100808354040283529160200191612846565b820191906000526020600020905b81548152906001019060200180831161282957829003601f168201915b5050505050905090565b60606000821415612898576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129ac565b600082905060005b600082146128ca5780806128b390613b35565b915050600a826128c3919061395d565b91506128a0565b60008167ffffffffffffffff8111156128e6576128e5613c6b565b5b6040519080825280601f01601f1916602001820160405280156129185781602001600182028036833780820191505090505b5090505b600085146129a55760018261293191906139e8565b9150600a856129409190613b7e565b603061294c9190613907565b60f81b81838151811061296257612961613c3c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561299e919061395d565b945061291c565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a2a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612a65576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a7260008583866129b1565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612c338673ffffffffffffffffffffffffffffffffffffffff1661263b565b15612cf8575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ca8600087848060010195508761265e565b612cde576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612c39578260005414612cf357600080fd5b612d63565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612cf9575b816000819055505050612d7960008583866129b7565b50505050565b828054612d8b90613ad2565b90600052602060002090601f016020900481019282612dad5760008555612df4565b82601f10612dc657805160ff1916838001178555612df4565b82800160010185558215612df4579182015b82811115612df3578251825591602001919060010190612dd8565b5b509050612e019190612e48565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e61576000816000905550600101612e49565b5090565b6000612e78612e7384613809565b6137e4565b905082815260208101848484011115612e9457612e93613c9f565b5b612e9f848285613a90565b509392505050565b6000612eba612eb58461383a565b6137e4565b905082815260208101848484011115612ed657612ed5613c9f565b5b612ee1848285613a90565b509392505050565b600081359050612ef881613e56565b92915050565b600081359050612f0d81613e6d565b92915050565b600081359050612f2281613e84565b92915050565b600081519050612f3781613e84565b92915050565b600082601f830112612f5257612f51613c9a565b5b8135612f62848260208601612e65565b91505092915050565b600082601f830112612f8057612f7f613c9a565b5b8135612f90848260208601612ea7565b91505092915050565b600081359050612fa881613e9b565b92915050565b600060208284031215612fc457612fc3613ca9565b5b6000612fd284828501612ee9565b91505092915050565b60008060408385031215612ff257612ff1613ca9565b5b600061300085828601612ee9565b925050602061301185828601612ee9565b9150509250929050565b60008060006060848603121561303457613033613ca9565b5b600061304286828701612ee9565b935050602061305386828701612ee9565b925050604061306486828701612f99565b9150509250925092565b6000806000806080858703121561308857613087613ca9565b5b600061309687828801612ee9565b94505060206130a787828801612ee9565b93505060406130b887828801612f99565b925050606085013567ffffffffffffffff8111156130d9576130d8613ca4565b5b6130e587828801612f3d565b91505092959194509250565b6000806040838503121561310857613107613ca9565b5b600061311685828601612ee9565b925050602061312785828601612efe565b9150509250929050565b6000806040838503121561314857613147613ca9565b5b600061315685828601612ee9565b925050602061316785828601612f99565b9150509250929050565b60006020828403121561318757613186613ca9565b5b600061319584828501612efe565b91505092915050565b6000602082840312156131b4576131b3613ca9565b5b60006131c284828501612f13565b91505092915050565b6000602082840312156131e1576131e0613ca9565b5b60006131ef84828501612f28565b91505092915050565b60006020828403121561320e5761320d613ca9565b5b600082013567ffffffffffffffff81111561322c5761322b613ca4565b5b61323884828501612f6b565b91505092915050565b60006020828403121561325757613256613ca9565b5b600061326584828501612f99565b91505092915050565b6000806040838503121561328557613284613ca9565b5b600061329385828601612f99565b92505060206132a485828601612ee9565b9150509250929050565b60006132ba838361359f565b60208301905092915050565b6132cf81613a1c565b82525050565b60006132e082613890565b6132ea81856138be565b93506132f58361386b565b8060005b8381101561332657815161330d88826132ae565b9750613318836138b1565b9250506001810190506132f9565b5085935050505092915050565b61333c81613a2e565b82525050565b600061334d8261389b565b61335781856138cf565b9350613367818560208601613a9f565b61337081613cae565b840191505092915050565b6000613386826138a6565b61339081856138eb565b93506133a0818560208601613a9f565b6133a981613cae565b840191505092915050565b60006133bf826138a6565b6133c981856138fc565b93506133d9818560208601613a9f565b80840191505092915050565b600081546133f281613ad2565b6133fc81866138fc565b9450600182166000811461341757600181146134285761345b565b60ff1983168652818601935061345b565b6134318561387b565b60005b8381101561345357815481890152600182019150602081019050613434565b838801955050505b50505092915050565b60006134716026836138eb565b915061347c82613cbf565b604082019050919050565b60006134946014836138eb565b915061349f82613d0e565b602082019050919050565b60006134b76020836138eb565b91506134c282613d37565b602082019050919050565b60006134da6017836138eb565b91506134e582613d60565b602082019050919050565b60006134fd602f836138eb565b915061350882613d89565b604082019050919050565b60006135206000836138e0565b915061352b82613dd8565b600082019050919050565b60006135436014836138eb565b915061354e82613ddb565b602082019050919050565b6000613566601f836138eb565b915061357182613e04565b602082019050919050565b60006135896013836138eb565b915061359482613e2d565b602082019050919050565b6135a881613a86565b82525050565b6135b781613a86565b82525050565b60006135c982866133b4565b91506135d582856133b4565b91506135e182846133e5565b9150819050949350505050565b60006135f982613513565b9150819050919050565b600060208201905061361860008301846132c6565b92915050565b600060808201905061363360008301876132c6565b61364060208301866132c6565b61364d60408301856135ae565b818103606083015261365f8184613342565b905095945050505050565b6000602082019050818103600083015261368481846132d5565b905092915050565b60006020820190506136a16000830184613333565b92915050565b600060208201905081810360008301526136c1818461337b565b905092915050565b600060208201905081810360008301526136e281613464565b9050919050565b6000602082019050818103600083015261370281613487565b9050919050565b60006020820190508181036000830152613722816134aa565b9050919050565b60006020820190508181036000830152613742816134cd565b9050919050565b60006020820190508181036000830152613762816134f0565b9050919050565b6000602082019050818103600083015261378281613536565b9050919050565b600060208201905081810360008301526137a281613559565b9050919050565b600060208201905081810360008301526137c28161357c565b9050919050565b60006020820190506137de60008301846135ae565b92915050565b60006137ee6137ff565b90506137fa8282613b04565b919050565b6000604051905090565b600067ffffffffffffffff82111561382457613823613c6b565b5b61382d82613cae565b9050602081019050919050565b600067ffffffffffffffff82111561385557613854613c6b565b5b61385e82613cae565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061391282613a86565b915061391d83613a86565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561395257613951613baf565b5b828201905092915050565b600061396882613a86565b915061397383613a86565b92508261398357613982613bde565b5b828204905092915050565b600061399982613a86565b91506139a483613a86565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139dd576139dc613baf565b5b828202905092915050565b60006139f382613a86565b91506139fe83613a86565b925082821015613a1157613a10613baf565b5b828203905092915050565b6000613a2782613a66565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613abd578082015181840152602081019050613aa2565b83811115613acc576000848401525b50505050565b60006002820490506001821680613aea57607f821691505b60208210811415613afe57613afd613c0d565b5b50919050565b613b0d82613cae565b810181811067ffffffffffffffff82111715613b2c57613b2b613c6b565b5b80604052505050565b6000613b4082613a86565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b7357613b72613baf565b5b600182019050919050565b6000613b8982613a86565b9150613b9483613a86565b925082613ba457613ba3613bde565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613e5f81613a1c565b8114613e6a57600080fd5b50565b613e7681613a2e565b8114613e8157600080fd5b50565b613e8d81613a3a565b8114613e9857600080fd5b50565b613ea481613a86565b8114613eaf57600080fd5b5056fea264697066735822122019bb56fd6a833d8f49887df41026dcab776e5b27239dc1a2c076fd1b27b489be64736f6c63430008070033

Deployed Bytecode Sourcemap

36820:3447:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19682:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22797:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24301:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23863:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36992:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39921:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40027:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18922:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25166:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40110:150;;;;;;;;;;;;;:::i;:::-;;25407:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38083:833;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39489:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37140:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36950:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37110:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36917:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22605:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20051:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4069:103;;;;;;;;;;;;;:::i;:::-;;39815:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3418:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37066:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22966:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37655:259;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24577:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39569:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25663:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39023:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37029:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39402:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24935:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37922:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4327:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19682:305;19784:4;19836:25;19821:40;;;:11;:40;;;;:105;;;;19893:33;19878:48;;;:11;:48;;;;19821:105;:158;;;;19943:36;19967:11;19943:23;:36::i;:::-;19821:158;19801:178;;19682:305;;;:::o;22797:100::-;22851:13;22884:5;22877:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22797:100;:::o;24301:204::-;24369:7;24394:16;24402:7;24394;:16::i;:::-;24389:64;;24419:34;;;;;;;;;;;;;;24389:64;24473:15;:24;24489:7;24473:24;;;;;;;;;;;;;;;;;;;;;24466:31;;24301:204;;;:::o;23863:372::-;23936:13;23952:24;23968:7;23952:15;:24::i;:::-;23936:40;;23997:5;23991:11;;:2;:11;;;23987:48;;;24011:24;;;;;;;;;;;;;;23987:48;24068:5;24052:21;;:12;:10;:12::i;:::-;:21;;;24048:139;;24079:37;24096:5;24103:12;:10;:12::i;:::-;24079:16;:37::i;:::-;24075:112;;24140:35;;;;;;;;;;;;;;24075:112;24048:139;24199:28;24208:2;24212:7;24221:5;24199:8;:28::i;:::-;23925:310;23863:372;;:::o;36992:32::-;;;;:::o;39921:100::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40005:10:::1;39993:9;:22;;;;;;;;;;;;:::i;:::-;;39921:100:::0;:::o;40027:77::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40092:6:::1;40083;;:15;;;;;;;;;;;;;;;;;;40027:77:::0;:::o;18922:312::-;18975:7;19200:15;:13;:15::i;:::-;19185:12;;19169:13;;:28;:46;19162:53;;18922:312;:::o;25166:170::-;25300:28;25310:4;25316:2;25320:7;25300:9;:28::i;:::-;25166:170;;;:::o;40110:150::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;262:1:::1;482:7;;:19;;474:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;262:1;615:7;:18;;;;40168:7:::2;40189;:5;:7::i;:::-;40181:21;;40210;40181:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40167:69;;;40251:2;40243:11;;;::::0;::::2;;40160:100;218:1:::1;660:7;:22;;;;40110:150::o:0;25407:185::-;25545:39;25562:4;25568:2;25572:7;25545:39;;;;;;;;;;;;:16;:39::i;:::-;25407:185;;;:::o;38083:833::-;38143:16;38168:23;38194:17;38204:6;38194:9;:17::i;:::-;38168:43;;38218:30;38265:15;38251:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38218:63;;38288:22;38313:15;:13;:15::i;:::-;38288:40;;38335:23;38369:26;38404:478;38429:15;38411;:33;:67;;;;;38465:13;;38448:14;:30;38411:67;38404:478;;;38489:31;38523:11;:27;38535:14;38523:27;;;;;;;;;;;38489:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38566:9;:16;;;38561:287;;38625:1;38599:28;;:9;:14;;;:28;;;38595:94;;38663:9;:14;;;38642:35;;38595:94;38727:6;38705:28;;:18;:28;;;38701:138;;;38781:14;38748:13;38762:15;38748:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;38810:17;;;;;:::i;:::-;;;;38701:138;38561:287;38858:16;;;;;:::i;:::-;;;;38480:402;38404:478;;;38897:13;38890:20;;;;;;;38083:833;;;:::o;39489:74::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39552:5:::1;39545:4;:12;;;;39489:74:::0;:::o;37140:27::-;;;;;;;;;;;;;:::o;36950:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37110:25::-;;;;;;;;;;;;;:::o;36917:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22605:125::-;22669:7;22696:21;22709:7;22696:12;:21::i;:::-;:26;;;22689:33;;22605:125;;;:::o;20051:206::-;20115:7;20156:1;20139:19;;:5;:19;;;20135:60;;;20167:28;;;;;;;;;;;;;;20135:60;20221:12;:19;20234:5;20221:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;20213:36;;20206:43;;20051:206;;;:::o;4069:103::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4134:30:::1;4161:1;4134:18;:30::i;:::-;4069:103::o:0;39815:100::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39899:10:::1;39887:9;:22;;;;;;;;;;;;:::i;:::-;;39815:100:::0;:::o;3418:87::-;3464:7;3491:6;;;;;;;;;;;3484:13;;3418:87;:::o;37066:37::-;;;;:::o;22966:104::-;23022:13;23055:7;23048:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22966:104;:::o;37655:259::-;37720:11;37303:1;37289:11;:15;:52;;;;;37323:18;;37308:11;:33;;37289:52;37281:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;37412:9;;37397:11;37381:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;37373:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37753:11:::1;37543:7;:5;:7::i;:::-;37529:21;;:10;:21;;;37525:111;;37591:11;37584:4;;:18;;;;:::i;:::-;37571:9;:31;;37563:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;37525:111;37791:7:::2;:5;:7::i;:::-;37777:21;;:10;:21;;;37773:93;;37820:6;;;;;;;;;;;37819:7;37811:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;37773:93;37872:36;37882:12;:10;:12::i;:::-;37896:11;37872:9;:36::i;:::-;37453:1:::1;37655:259:::0;;:::o;24577:287::-;24688:12;:10;:12::i;:::-;24676:24;;:8;:24;;;24672:54;;;24709:17;;;;;;;;;;;;;;24672:54;24784:8;24739:18;:32;24758:12;:10;:12::i;:::-;24739:32;;;;;;;;;;;;;;;:42;24772:8;24739:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24837:8;24808:48;;24823:12;:10;:12::i;:::-;24808:48;;;24847:8;24808:48;;;;;;:::i;:::-;;;;;;;;24577:287;;:::o;39569:130::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39674:19:::1;39653:18;:40;;;;39569:130:::0;:::o;25663:370::-;25830:28;25840:4;25846:2;25850:7;25830:9;:28::i;:::-;25873:15;:2;:13;;;:15::i;:::-;25869:157;;;25894:56;25925:4;25931:2;25935:7;25944:5;25894:30;:56::i;:::-;25890:136;;25974:40;;;;;;;;;;;;;;25890:136;25869:157;25663:370;;;;:::o;39023:373::-;39097:13;39127:17;39135:8;39127:7;:17::i;:::-;39119:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;39205:28;39236:10;:8;:10::i;:::-;39205:41;;39291:1;39266:14;39260:28;:32;:130;;;;;;;;;;;;;;;;;39328:14;39344:19;:8;:17;:19::i;:::-;39365:9;39311:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39260:130;39253:137;;;39023:373;;;:::o;37029:32::-;;;;:::o;39402:81::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39471:6:::1;39460:8;;:17;;;;;;;;;;;;;;;;;;39402:81:::0;:::o;24935:164::-;25032:4;25056:18;:25;25075:5;25056:25;;;;;;;;;;;;;;;:35;25082:8;25056:35;;;;;;;;;;;;;;;;;;;;;;;;;25049:42;;24935:164;;;;:::o;37922:155::-;38008:11;37303:1;37289:11;:15;:52;;;;;37323:18;;37308:11;:33;;37289:52;37281:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;37412:9;;37397:11;37381:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;37373:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3649:12:::1;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38038:33:::2;38048:9;38059:11;38038:9;:33::i;:::-;37922:155:::0;;;:::o;4327:201::-;3649:12;:10;:12::i;:::-;3638:23;;:7;:5;:7::i;:::-;:23;;;3630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4436:1:::1;4416:22;;:8;:22;;;;4408:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4492:28;4511:8;4492:18;:28::i;:::-;4327:201:::0;:::o;10910:157::-;10995:4;11034:25;11019:40;;;:11;:40;;;;11012:47;;10910:157;;;:::o;26288:174::-;26345:4;26388:7;26369:15;:13;:15::i;:::-;:26;;:53;;;;;26409:13;;26399:7;:23;26369:53;:85;;;;;26427:11;:20;26439:7;26427:20;;;;;;;;;;;:27;;;;;;;;;;;;26426:28;26369:85;26362:92;;26288:174;;;:::o;2708:98::-;2761:7;2788:10;2781:17;;2708:98;:::o;35510:196::-;35652:2;35625:15;:24;35641:7;35625:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35690:7;35686:2;35670:28;;35679:5;35670:28;;;;;;;;;;;;35510:196;;;:::o;38922:95::-;38987:7;39010:1;39003:8;;38922:95;:::o;30458:2130::-;30573:35;30611:21;30624:7;30611:12;:21::i;:::-;30573:59;;30671:4;30649:26;;:13;:18;;;:26;;;30645:67;;30684:28;;;;;;;;;;;;;;30645:67;30725:22;30767:4;30751:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;30788:36;30805:4;30811:12;:10;:12::i;:::-;30788:16;:36::i;:::-;30751:73;:126;;;;30865:12;:10;:12::i;:::-;30841:36;;:20;30853:7;30841:11;:20::i;:::-;:36;;;30751:126;30725:153;;30896:17;30891:66;;30922:35;;;;;;;;;;;;;;30891:66;30986:1;30972:16;;:2;:16;;;30968:52;;;30997:23;;;;;;;;;;;;;;30968:52;31033:43;31055:4;31061:2;31065:7;31074:1;31033:21;:43::i;:::-;31141:35;31158:1;31162:7;31171:4;31141:8;:35::i;:::-;31502:1;31472:12;:18;31485:4;31472:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31546:1;31518:12;:16;31531:2;31518:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31564:31;31598:11;:20;31610:7;31598:20;;;;;;;;;;;31564:54;;31649:2;31633:8;:13;;;:18;;;;;;;;;;;;;;;;;;31699:15;31666:8;:23;;;:49;;;;;;;;;;;;;;;;;;31967:19;31999:1;31989:7;:11;31967:33;;32015:31;32049:11;:24;32061:11;32049:24;;;;;;;;;;;32015:58;;32117:1;32092:27;;:8;:13;;;;;;;;;;;;:27;;;32088:384;;;32302:13;;32287:11;:28;32283:174;;32356:4;32340:8;:13;;;:20;;;;;;;;;;;;;;;;;;32409:13;:28;;;32383:8;:23;;;:54;;;;;;;;;;;;;;;;;;32283:174;32088:384;31447:1036;;;32519:7;32515:2;32500:27;;32509:4;32500:27;;;;;;;;;;;;32538:42;32559:4;32565:2;32569:7;32578:1;32538:20;:42::i;:::-;30562:2026;;30458:2130;;;:::o;21432:1111::-;21494:21;;:::i;:::-;21528:12;21543:7;21528:22;;21611:4;21592:15;:13;:15::i;:::-;:23;21588:888;;21628:13;;21621:4;:20;21617:859;;;21662:31;21696:11;:17;21708:4;21696:17;;;;;;;;;;;21662:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21737:9;:16;;;21732:729;;21808:1;21782:28;;:9;:14;;;:28;;;21778:101;;21846:9;21839:16;;;;;;21778:101;22181:261;22188:4;22181:261;;;22221:6;;;;;;;;22266:11;:17;22278:4;22266:17;;;;;;;;;;;22254:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22340:1;22314:28;;:9;:14;;;:28;;;22310:109;;22382:9;22375:16;;;;;;22310:109;22181:261;;;21732:729;21643:833;21617:859;21588:888;22504:31;;;;;;;;;;;;;;21432:1111;;;;:::o;4688:191::-;4762:16;4781:6;;;;;;;;;;;4762:25;;4807:8;4798:6;;:17;;;;;;;;;;;;;;;;;;4862:8;4831:40;;4852:8;4831:40;;;;;;;;;;;;4751:128;4688:191;:::o;26546:104::-;26615:27;26625:2;26629:8;26615:27;;;;;;;;;;;;:9;:27::i;:::-;26546:104;;:::o;5140:115::-;5200:4;5246:1;5224:7;:19;;;:23;5217:30;;5140:115;;;:::o;35716:667::-;35879:4;35916:2;35900:36;;;35937:12;:10;:12::i;:::-;35951:4;35957:7;35966:5;35900:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35896:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36151:1;36134:6;:13;:18;36130:235;;;36180:40;;;;;;;;;;;;;;36130:235;36323:6;36317:13;36308:6;36304:2;36300:15;36293:38;35896:480;36029:45;;;36019:55;;;:6;:55;;;;36012:62;;;35716:667;;;;;;:::o;39705:104::-;39765:13;39794:9;39787:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39705:104;:::o;966:534::-;1022:13;1063:1;1054:5;:10;1050:53;;;1081:10;;;;;;;;;;;;;;;;;;;;;1050:53;1113:12;1128:5;1113:20;;1144:14;1169:78;1184:1;1176:4;:9;1169:78;;1202:8;;;;;:::i;:::-;;;;1233:2;1225:10;;;;;:::i;:::-;;;1169:78;;;1257:19;1289:6;1279:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1257:39;;1307:154;1323:1;1314:5;:10;1307:154;;1351:1;1341:11;;;;;:::i;:::-;;;1418:2;1410:5;:10;;;;:::i;:::-;1397:2;:24;;;;:::i;:::-;1384:39;;1367:6;1374;1367:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1447:2;1438:11;;;;;:::i;:::-;;;1307:154;;;1485:6;1471:21;;;;;966:534;;;;:::o;36394:159::-;;;;;:::o;36563:158::-;;;;;:::o;27023:1749::-;27146:20;27169:13;;27146:36;;27211:1;27197:16;;:2;:16;;;27193:48;;;27222:19;;;;;;;;;;;;;;27193:48;27268:1;27256:8;:13;27252:44;;;27278:18;;;;;;;;;;;;;;27252:44;27309:61;27339:1;27343:2;27347:12;27361:8;27309:21;:61::i;:::-;27682:8;27647:12;:16;27660:2;27647:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27746:8;27706:12;:16;27719:2;27706:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27805:2;27772:11;:25;27784:12;27772:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;27872:15;27822:11;:25;27834:12;27822:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;27905:20;27928:12;27905:35;;27955:11;27984:8;27969:12;:23;27955:37;;28013:15;:2;:13;;;:15::i;:::-;28009:631;;;28049:313;28105:12;28101:2;28080:38;;28097:1;28080:38;;;;;;;;;;;;28146:69;28185:1;28189:2;28193:14;;;;;;28209:5;28146:30;:69::i;:::-;28141:174;;28251:40;;;;;;;;;;;;;;28141:174;28357:3;28342:12;:18;28049:313;;28443:12;28426:13;;:29;28422:43;;28457:8;;;28422:43;28009:631;;;28506:119;28562:14;;;;;;28558:2;28537:40;;28554:1;28537:40;;;;;;;;;;;;28620:3;28605:12;:18;28506:119;;28009:631;28670:12;28654:13;:28;;;;27622:1072;;28704:60;28733:1;28737:2;28741:12;28755:8;28704:20;:60::i;:::-;27135:1637;27023:1749;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:398::-;13172:3;13193:83;13274:1;13269:3;13193:83;:::i;:::-;13186:90;;13285:93;13374:3;13285:93;:::i;:::-;13403:1;13398:3;13394:11;13387:18;;13013:398;;;:::o;13417:366::-;13559:3;13580:67;13644:2;13639:3;13580:67;:::i;:::-;13573:74;;13656:93;13745:3;13656:93;:::i;:::-;13774:2;13769:3;13765:12;13758:19;;13417:366;;;:::o;13789:::-;13931:3;13952:67;14016:2;14011:3;13952:67;:::i;:::-;13945:74;;14028:93;14117:3;14028:93;:::i;:::-;14146:2;14141:3;14137:12;14130:19;;13789:366;;;:::o;14161:::-;14303:3;14324:67;14388:2;14383:3;14324:67;:::i;:::-;14317:74;;14400:93;14489:3;14400:93;:::i;:::-;14518:2;14513:3;14509:12;14502:19;;14161:366;;;:::o;14533:108::-;14610:24;14628:5;14610:24;:::i;:::-;14605:3;14598:37;14533:108;;:::o;14647:118::-;14734:24;14752:5;14734:24;:::i;:::-;14729:3;14722:37;14647:118;;:::o;14771:589::-;14996:3;15018:95;15109:3;15100:6;15018:95;:::i;:::-;15011:102;;15130:95;15221:3;15212:6;15130:95;:::i;:::-;15123:102;;15242:92;15330:3;15321:6;15242:92;:::i;:::-;15235:99;;15351:3;15344:10;;14771:589;;;;;;:::o;15366:379::-;15550:3;15572:147;15715:3;15572:147;:::i;:::-;15565:154;;15736:3;15729:10;;15366:379;;;:::o;15751:222::-;15844:4;15882:2;15871:9;15867:18;15859:26;;15895:71;15963:1;15952:9;15948:17;15939:6;15895:71;:::i;:::-;15751:222;;;;:::o;15979:640::-;16174:4;16212:3;16201:9;16197:19;16189:27;;16226:71;16294:1;16283:9;16279:17;16270:6;16226:71;:::i;:::-;16307:72;16375:2;16364:9;16360:18;16351:6;16307:72;:::i;:::-;16389;16457:2;16446:9;16442:18;16433:6;16389:72;:::i;:::-;16508:9;16502:4;16498:20;16493:2;16482:9;16478:18;16471:48;16536:76;16607:4;16598:6;16536:76;:::i;:::-;16528:84;;15979:640;;;;;;;:::o;16625:373::-;16768:4;16806:2;16795:9;16791:18;16783:26;;16855:9;16849:4;16845:20;16841:1;16830:9;16826:17;16819:47;16883:108;16986:4;16977:6;16883:108;:::i;:::-;16875:116;;16625:373;;;;:::o;17004:210::-;17091:4;17129:2;17118:9;17114:18;17106:26;;17142:65;17204:1;17193:9;17189:17;17180:6;17142:65;:::i;:::-;17004:210;;;;:::o;17220:313::-;17333:4;17371:2;17360:9;17356:18;17348:26;;17420:9;17414:4;17410:20;17406:1;17395:9;17391:17;17384:47;17448:78;17521:4;17512:6;17448:78;:::i;:::-;17440:86;;17220:313;;;;:::o;17539:419::-;17705:4;17743:2;17732:9;17728:18;17720:26;;17792:9;17786:4;17782:20;17778:1;17767:9;17763:17;17756:47;17820:131;17946:4;17820:131;:::i;:::-;17812:139;;17539:419;;;:::o;17964:::-;18130:4;18168:2;18157:9;18153:18;18145:26;;18217:9;18211:4;18207:20;18203:1;18192:9;18188:17;18181:47;18245:131;18371:4;18245:131;:::i;:::-;18237:139;;17964:419;;;:::o;18389:::-;18555:4;18593:2;18582:9;18578:18;18570:26;;18642:9;18636:4;18632:20;18628:1;18617:9;18613:17;18606:47;18670:131;18796:4;18670:131;:::i;:::-;18662:139;;18389:419;;;:::o;18814:::-;18980:4;19018:2;19007:9;19003:18;18995:26;;19067:9;19061:4;19057:20;19053:1;19042:9;19038:17;19031:47;19095:131;19221:4;19095:131;:::i;:::-;19087:139;;18814:419;;;:::o;19239:::-;19405:4;19443:2;19432:9;19428:18;19420:26;;19492:9;19486:4;19482:20;19478:1;19467:9;19463:17;19456:47;19520:131;19646:4;19520:131;:::i;:::-;19512:139;;19239:419;;;:::o;19664:::-;19830:4;19868:2;19857:9;19853:18;19845:26;;19917:9;19911:4;19907:20;19903:1;19892:9;19888:17;19881:47;19945:131;20071:4;19945:131;:::i;:::-;19937:139;;19664:419;;;:::o;20089:::-;20255:4;20293:2;20282:9;20278:18;20270:26;;20342:9;20336:4;20332:20;20328:1;20317:9;20313:17;20306:47;20370:131;20496:4;20370:131;:::i;:::-;20362:139;;20089:419;;;:::o;20514:::-;20680:4;20718:2;20707:9;20703:18;20695:26;;20767:9;20761:4;20757:20;20753:1;20742:9;20738:17;20731:47;20795:131;20921:4;20795:131;:::i;:::-;20787:139;;20514:419;;;:::o;20939:222::-;21032:4;21070:2;21059:9;21055:18;21047:26;;21083:71;21151:1;21140:9;21136:17;21127:6;21083:71;:::i;:::-;20939:222;;;;:::o;21167:129::-;21201:6;21228:20;;:::i;:::-;21218:30;;21257:33;21285:4;21277:6;21257:33;:::i;:::-;21167:129;;;:::o;21302:75::-;21335:6;21368:2;21362:9;21352:19;;21302:75;:::o;21383:307::-;21444:4;21534:18;21526:6;21523:30;21520:56;;;21556:18;;:::i;:::-;21520:56;21594:29;21616:6;21594:29;:::i;:::-;21586:37;;21678:4;21672;21668:15;21660:23;;21383:307;;;:::o;21696:308::-;21758:4;21848:18;21840:6;21837:30;21834:56;;;21870:18;;:::i;:::-;21834:56;21908:29;21930:6;21908:29;:::i;:::-;21900:37;;21992:4;21986;21982:15;21974:23;;21696:308;;;:::o;22010:132::-;22077:4;22100:3;22092:11;;22130:4;22125:3;22121:14;22113:22;;22010:132;;;:::o;22148:141::-;22197:4;22220:3;22212:11;;22243:3;22240:1;22233:14;22277:4;22274:1;22264:18;22256:26;;22148:141;;;:::o;22295:114::-;22362:6;22396:5;22390:12;22380:22;;22295:114;;;:::o;22415:98::-;22466:6;22500:5;22494:12;22484:22;;22415:98;;;:::o;22519:99::-;22571:6;22605:5;22599:12;22589:22;;22519:99;;;:::o;22624:113::-;22694:4;22726;22721:3;22717:14;22709:22;;22624:113;;;:::o;22743:184::-;22842:11;22876:6;22871:3;22864:19;22916:4;22911:3;22907:14;22892:29;;22743:184;;;;:::o;22933:168::-;23016:11;23050:6;23045:3;23038:19;23090:4;23085:3;23081:14;23066:29;;22933:168;;;;:::o;23107:147::-;23208:11;23245:3;23230:18;;23107:147;;;;:::o;23260:169::-;23344:11;23378:6;23373:3;23366:19;23418:4;23413:3;23409:14;23394:29;;23260:169;;;;:::o;23435:148::-;23537:11;23574:3;23559:18;;23435:148;;;;:::o;23589:305::-;23629:3;23648:20;23666:1;23648:20;:::i;:::-;23643:25;;23682:20;23700:1;23682:20;:::i;:::-;23677:25;;23836:1;23768:66;23764:74;23761:1;23758:81;23755:107;;;23842:18;;:::i;:::-;23755:107;23886:1;23883;23879:9;23872:16;;23589:305;;;;:::o;23900:185::-;23940:1;23957:20;23975:1;23957:20;:::i;:::-;23952:25;;23991:20;24009:1;23991:20;:::i;:::-;23986:25;;24030:1;24020:35;;24035:18;;:::i;:::-;24020:35;24077:1;24074;24070:9;24065:14;;23900:185;;;;:::o;24091:348::-;24131:7;24154:20;24172:1;24154:20;:::i;:::-;24149:25;;24188:20;24206:1;24188:20;:::i;:::-;24183:25;;24376:1;24308:66;24304:74;24301:1;24298:81;24293:1;24286:9;24279:17;24275:105;24272:131;;;24383:18;;:::i;:::-;24272:131;24431:1;24428;24424:9;24413:20;;24091:348;;;;:::o;24445:191::-;24485:4;24505:20;24523:1;24505:20;:::i;:::-;24500:25;;24539:20;24557:1;24539:20;:::i;:::-;24534:25;;24578:1;24575;24572:8;24569:34;;;24583:18;;:::i;:::-;24569:34;24628:1;24625;24621:9;24613:17;;24445:191;;;;:::o;24642:96::-;24679:7;24708:24;24726:5;24708:24;:::i;:::-;24697:35;;24642:96;;;:::o;24744:90::-;24778:7;24821:5;24814:13;24807:21;24796:32;;24744:90;;;:::o;24840:149::-;24876:7;24916:66;24909:5;24905:78;24894:89;;24840:149;;;:::o;24995:126::-;25032:7;25072:42;25065:5;25061:54;25050:65;;24995:126;;;:::o;25127:77::-;25164:7;25193:5;25182:16;;25127:77;;;:::o;25210:154::-;25294:6;25289:3;25284;25271:30;25356:1;25347:6;25342:3;25338:16;25331:27;25210:154;;;:::o;25370:307::-;25438:1;25448:113;25462:6;25459:1;25456:13;25448:113;;;25547:1;25542:3;25538:11;25532:18;25528:1;25523:3;25519:11;25512:39;25484:2;25481:1;25477:10;25472:15;;25448:113;;;25579:6;25576:1;25573:13;25570:101;;;25659:1;25650:6;25645:3;25641:16;25634:27;25570:101;25419:258;25370:307;;;:::o;25683:320::-;25727:6;25764:1;25758:4;25754:12;25744:22;;25811:1;25805:4;25801:12;25832:18;25822:81;;25888:4;25880:6;25876:17;25866:27;;25822:81;25950:2;25942:6;25939:14;25919:18;25916:38;25913:84;;;25969:18;;:::i;:::-;25913:84;25734:269;25683:320;;;:::o;26009:281::-;26092:27;26114:4;26092:27;:::i;:::-;26084:6;26080:40;26222:6;26210:10;26207:22;26186:18;26174:10;26171:34;26168:62;26165:88;;;26233:18;;:::i;:::-;26165:88;26273:10;26269:2;26262:22;26052:238;26009:281;;:::o;26296:233::-;26335:3;26358:24;26376:5;26358:24;:::i;:::-;26349:33;;26404:66;26397:5;26394:77;26391:103;;;26474:18;;:::i;:::-;26391:103;26521:1;26514:5;26510:13;26503:20;;26296:233;;;:::o;26535:176::-;26567:1;26584:20;26602:1;26584:20;:::i;:::-;26579:25;;26618:20;26636:1;26618:20;:::i;:::-;26613:25;;26657:1;26647:35;;26662:18;;:::i;:::-;26647:35;26703:1;26700;26696:9;26691:14;;26535:176;;;;:::o;26717:180::-;26765:77;26762:1;26755:88;26862:4;26859:1;26852:15;26886:4;26883:1;26876:15;26903:180;26951:77;26948:1;26941:88;27048:4;27045:1;27038:15;27072:4;27069:1;27062:15;27089:180;27137:77;27134:1;27127:88;27234:4;27231:1;27224:15;27258:4;27255:1;27248:15;27275:180;27323:77;27320:1;27313:88;27420:4;27417:1;27410:15;27444:4;27441:1;27434:15;27461:180;27509:77;27506:1;27499:88;27606:4;27603:1;27596:15;27630:4;27627:1;27620:15;27647:117;27756:1;27753;27746:12;27770:117;27879:1;27876;27869:12;27893:117;28002:1;27999;27992:12;28016:117;28125:1;28122;28115:12;28139:102;28180:6;28231:2;28227:7;28222:2;28215:5;28211:14;28207:28;28197:38;;28139:102;;;:::o;28247:225::-;28387:34;28383:1;28375:6;28371:14;28364:58;28456:8;28451:2;28443:6;28439:15;28432:33;28247:225;:::o;28478:170::-;28618:22;28614:1;28606:6;28602:14;28595:46;28478:170;:::o;28654:182::-;28794:34;28790:1;28782:6;28778:14;28771:58;28654:182;:::o;28842:173::-;28982:25;28978:1;28970:6;28966:14;28959:49;28842:173;:::o;29021:234::-;29161:34;29157:1;29149:6;29145:14;29138:58;29230:17;29225:2;29217:6;29213:15;29206:42;29021:234;:::o;29261:114::-;;:::o;29381:170::-;29521:22;29517:1;29509:6;29505:14;29498:46;29381:170;:::o;29557:181::-;29697:33;29693:1;29685:6;29681:14;29674:57;29557:181;:::o;29744:169::-;29884:21;29880:1;29872:6;29868:14;29861:45;29744:169;:::o;29919:122::-;29992:24;30010:5;29992:24;:::i;:::-;29985:5;29982:35;29972:63;;30031:1;30028;30021:12;29972:63;29919:122;:::o;30047:116::-;30117:21;30132:5;30117:21;:::i;:::-;30110:5;30107:32;30097:60;;30153:1;30150;30143:12;30097:60;30047:116;:::o;30169:120::-;30241:23;30258:5;30241:23;:::i;:::-;30234:5;30231:34;30221:62;;30279:1;30276;30269:12;30221:62;30169:120;:::o;30295:122::-;30368:24;30386:5;30368:24;:::i;:::-;30361:5;30358:35;30348:63;;30407:1;30404;30397:12;30348:63;30295:122;:::o

Swarm Source

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