ETH Price: $2,293.53 (-5.24%)

Token

The Turks NFT (TURKO)
 

Overview

Max Total Supply

1,109 TURKO

Holders

96

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 TURKO
0x0aa203b36371704e8a3726e3af249635dcfa6d0b
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:
TheTurks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 14 of 14: THETURKS.sol
// SPDX-License-Identifier: MIT
/*

 ____  _  _  ____    ____  _  _  ____  __ _  ____ 
(_  _)/ )( \(  __)  (_  _)/ )( \(  _ \(  / )/ ___)
  )(  ) __ ( ) _)     )(  ) \/ ( )   / )  ( \___ \
 (__) \_)(_/(____)   (__) \____/(__\_)(__\_)(____/

*/                                    
                             

pragma solidity >=0.7.0 <0.9.0;

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

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

    uint256 public MAX_MINTS = 5;
    uint256 public value = 0.002 ether;
    uint256 public MAX_SUPPLY = 10000;

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


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

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



    constructor() ERC721A("The Turks NFT", "TURKO") {
    }

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

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

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

    function setValue(uint256 _newValue) external onlyOwner {
        value = _newValue * (1 ether);
    }

    function setmaxMints(uint256 _newmaxMints) external onlyOwner {
        MAX_MINTS = _newmaxMints;
    }


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


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

    /// TokenURI Function

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

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

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

    /// Normal Mint Functions
    function mint(uint256 tokens) external payable {
        require(publicSaleStarted, "Public sale has not started");
        require(tokens <= MAX_MINTS, "Cannot purchase this many tokens in a transaction");
        require(totalSupply() + tokens <= (MAX_SUPPLY), "Minting would exceed max supply");
        require(tokens > 0, "Must mint at least one token");
        require(value * tokens <= msg.value, "ETH amount is incorrect");
        _safeMint(_msgSender(), tokens);
    }


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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 14: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 11 of 14: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMints","type":"uint256"}],"name":"setmaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newnotRevealedURI","type":"string"}],"name":"setnotRevealedUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"value","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600560095566071afd498d0000600a55612710600b556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff021916908315150217905550604051806080016040528060418152602001620041c760419139600d9080519060200190620000819291906200026b565b5060405180602001604052806000815250600e9080519060200190620000a99291906200026b565b50348015620000b757600080fd5b506040518060400160405280600d81526020017f546865205475726b73204e4654000000000000000000000000000000000000008152506040518060400160405280600581526020017f5455524b4f00000000000000000000000000000000000000000000000000000081525081600290805190602001906200013c9291906200026b565b508060039080519060200190620001559291906200026b565b50620001666200019460201b60201c565b60008190555050506200018e620001826200019d60201b60201c565b620001a560201b60201c565b62000380565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000279906200031b565b90600052602060002090601f0160209004810192826200029d5760008555620002e9565b82601f10620002b857805160ff1916838001178555620002e9565b82800160010185558215620002e9579182015b82811115620002e8578251825591602001919060010190620002cb565b5b509050620002f89190620002fc565b5090565b5b8082111562000317576000816000905550600101620002fd565b5090565b600060028204905060018216806200033457607f821691505b602082108114156200034b576200034a62000351565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e3780620003906000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d578063a0712d68116100a0578063b88d4fde1161006f578063b88d4fde146106b2578063c87b56dd146106db578063cce132d114610718578063e985e9c514610743578063f2fde38b14610780576101f9565b8063a0712d681461062b578063a22cb46514610647578063a2e9147714610670578063a475b5dd1461069b576101f9565b8063853828b6116100dc578063853828b6146105955780638da5cb5b146105ac57806395d89b41146105d75780639a15207714610602576101f9565b80636352211e146104d95780636c0360eb1461051657806370a0823114610541578063715018a61461057e576101f9565b806323b872dd1161019057806342842e0e1161015f57806342842e0e1461040a578063484b973c14610433578063518302271461045c578063552410771461048757806355f804b3146104b0576101f9565b806323b872dd146103745780632f8145751461039d57806332cb6b0c146103b45780633fa4f245146103df576101f9565b8063081c8c44116101cc578063081c8c44146102cc578063095ea7b3146102f757806318160ddd14610320578063228025e81461034b576101f9565b80630188541d146101fe57806301ffc9a71461022757806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613147565b6107a9565b005b34801561023357600080fd5b5061024e600480360381019061024991906130ed565b61083f565b60405161025b91906134ff565b60405180910390f35b34801561027057600080fd5b50610279610921565b604051610286919061351a565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613190565b6109b3565b6040516102c39190613498565b60405180910390f35b3480156102d857600080fd5b506102e1610a2f565b6040516102ee919061351a565b60405180910390f35b34801561030357600080fd5b5061031e600480360381019061031991906130ad565b610abd565b005b34801561032c57600080fd5b50610335610bc8565b604051610342919061369c565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190613190565b610bdf565b005b34801561038057600080fd5b5061039b60048036038101906103969190612f97565b610c65565b005b3480156103a957600080fd5b506103b2610c75565b005b3480156103c057600080fd5b506103c9610d1d565b6040516103d6919061369c565b60405180910390f35b3480156103eb57600080fd5b506103f4610d23565b604051610401919061369c565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190612f97565b610d29565b005b34801561043f57600080fd5b5061045a600480360381019061045591906130ad565b610d49565b005b34801561046857600080fd5b50610471610e6d565b60405161047e91906134ff565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613190565b610e80565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190613147565b610f19565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190613190565b610fca565b60405161050d9190613498565b60405180910390f35b34801561052257600080fd5b5061052b610fe0565b604051610538919061351a565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612f2a565b61106e565b604051610575919061369c565b60405180910390f35b34801561058a57600080fd5b5061059361113e565b005b3480156105a157600080fd5b506105aa6111c6565b005b3480156105b857600080fd5b506105c161129e565b6040516105ce9190613498565b60405180910390f35b3480156105e357600080fd5b506105ec6112c8565b6040516105f9919061351a565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190613190565b61135a565b005b61064560048036038101906106409190613190565b6113e0565b005b34801561065357600080fd5b5061066e6004803603810190610669919061306d565b611572565b005b34801561067c57600080fd5b506106856116ea565b60405161069291906134ff565b60405180910390f35b3480156106a757600080fd5b506106b06116fd565b005b3480156106be57600080fd5b506106d960048036038101906106d49190612fea565b6117a5565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190613190565b611821565b60405161070f919061351a565b60405180910390f35b34801561072457600080fd5b5061072d611977565b60405161073a919061369c565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190612f57565b61197d565b60405161077791906134ff565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190612f2a565b611a11565b005b6107b1611b09565b73ffffffffffffffffffffffffffffffffffffffff166107cf61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081c9061361c565b60405180910390fd5b80600d908051906020019061083b929190612cfb565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061091a575061091982611b11565b5b9050919050565b60606002805461093090613957565b80601f016020809104026020016040519081016040528092919081815260200182805461095c90613957565b80156109a95780601f1061097e576101008083540402835291602001916109a9565b820191906000526020600020905b81548152906001019060200180831161098c57829003601f168201915b5050505050905090565b60006109be82611b7b565b6109f4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610a3c90613957565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6890613957565b8015610ab55780601f10610a8a57610100808354040283529160200191610ab5565b820191906000526020600020905b815481529060010190602001808311610a9857829003601f168201915b505050505081565b6000610ac882610fca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b30576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4f611b09565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b815750610b7f81610b7a611b09565b61197d565b155b15610bb8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bc3838383611bc9565b505050565b6000610bd2611c7b565b6001546000540303905090565b610be7611b09565b73ffffffffffffffffffffffffffffffffffffffff16610c0561129e565b73ffffffffffffffffffffffffffffffffffffffff1614610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c529061361c565b60405180910390fd5b80600b8190555050565b610c70838383611c84565b505050565b610c7d611b09565b73ffffffffffffffffffffffffffffffffffffffff16610c9b61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce89061361c565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b600b5481565b600a5481565b610d44838383604051806020016040528060008152506117a5565b505050565b610d51611b09565b73ffffffffffffffffffffffffffffffffffffffff16610d6f61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc9061361c565b60405180910390fd5b600b5481610dd1610bc8565b610ddb919061378c565b1115610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e139061359c565b60405180910390fd5b60008111610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e569061353c565b60405180910390fd5b610e698282612175565b5050565b600c60019054906101000a900460ff1681565b610e88611b09565b73ffffffffffffffffffffffffffffffffffffffff16610ea661129e565b73ffffffffffffffffffffffffffffffffffffffff1614610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef39061361c565b60405180910390fd5b670de0b6b3a764000081610f109190613813565b600a8190555050565b610f21611b09565b73ffffffffffffffffffffffffffffffffffffffff16610f3f61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c9061361c565b60405180910390fd5b80600e9080519060200190610fab929190612cfb565b506001600c60016101000a81548160ff02191690831515021790555050565b6000610fd582612193565b600001519050919050565b600e8054610fed90613957565b80601f016020809104026020016040519081016040528092919081815260200182805461101990613957565b80156110665780601f1061103b57610100808354040283529160200191611066565b820191906000526020600020905b81548152906001019060200180831161104957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611146611b09565b73ffffffffffffffffffffffffffffffffffffffff1661116461129e565b73ffffffffffffffffffffffffffffffffffffffff16146111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b19061361c565b60405180910390fd5b6111c46000612422565b565b6111ce611b09565b73ffffffffffffffffffffffffffffffffffffffff166111ec61129e565b73ffffffffffffffffffffffffffffffffffffffff1614611242576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112399061361c565b60405180910390fd5b60004790506000811161128a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611281906135fc565b60405180910390fd5b61129b611295611b09565b476124e8565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112d790613957565b80601f016020809104026020016040519081016040528092919081815260200182805461130390613957565b80156113505780601f1061132557610100808354040283529160200191611350565b820191906000526020600020905b81548152906001019060200180831161133357829003601f168201915b5050505050905090565b611362611b09565b73ffffffffffffffffffffffffffffffffffffffff1661138061129e565b73ffffffffffffffffffffffffffffffffffffffff16146113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd9061361c565b60405180910390fd5b8060098190555050565b600c60009054906101000a900460ff1661142f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114269061357c565b60405180910390fd5b600954811115611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b906135bc565b60405180910390fd5b600b5481611480610bc8565b61148a919061378c565b11156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c29061359c565b60405180910390fd5b6000811161150e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115059061365c565b60405180910390fd5b3481600a5461151d9190613813565b111561155e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611555906135dc565b60405180910390fd5b61156f611569611b09565b82612175565b50565b61157a611b09565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115df576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115ec611b09565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611699611b09565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116de91906134ff565b60405180910390a35050565b600c60009054906101000a900460ff1681565b611705611b09565b73ffffffffffffffffffffffffffffffffffffffff1661172361129e565b73ffffffffffffffffffffffffffffffffffffffff1614611779576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117709061361c565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b6117b0848484611c84565b6117cf8373ffffffffffffffffffffffffffffffffffffffff16612599565b80156117e457506117e2848484846125bc565b155b1561181b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061182c82611b7b565b61186b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118629061363c565b60405180910390fd5b60001515600c60019054906101000a900460ff161515141561191957600d805461189490613957565b80601f01602080910402602001604051908101604052809291908181526020018280546118c090613957565b801561190d5780601f106118e25761010080835404028352916020019161190d565b820191906000526020600020905b8154815290600101906020018083116118f057829003601f168201915b50505050509050611972565b600061192361271c565b90506000815111611943576040518060200160405280600081525061196e565b8061194d846127ae565b60405160200161195e929190613454565b6040516020818303038152906040525b9150505b919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a19611b09565b73ffffffffffffffffffffffffffffffffffffffff16611a3761129e565b73ffffffffffffffffffffffffffffffffffffffff1614611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a849061361c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af49061355c565b60405180910390fd5b611b0681612422565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b86611c7b565b11158015611b95575060005482105b8015611bc2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611c8f82612193565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cb6611b09565b73ffffffffffffffffffffffffffffffffffffffff161480611ce95750611ce88260000151611ce3611b09565b61197d565b5b80611d2e5750611cf7611b09565b73ffffffffffffffffffffffffffffffffffffffff16611d16846109b3565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d67576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611dd0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e37576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e44858585600161290f565b611e546000848460000151611bc9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612105576000548110156121045782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461216e8585856001612915565b5050505050565b61218f82826040518060200160405280600081525061291b565b5050565b61219b612d81565b6000829050806121a9611c7b565b111580156121b8575060005481105b156123eb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516123e957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122cd57809250505061241d565b5b6001156123e857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123e357809250505061241d565b6122ce565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161250e90613483565b60006040518083038185875af1925050503d806000811461254b576040519150601f19603f3d011682016040523d82523d6000602084013e612550565b606091505b5050905080612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b9061367c565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125e2611b09565b8786866040518563ffffffff1660e01b815260040161260494939291906134b3565b602060405180830381600087803b15801561261e57600080fd5b505af192505050801561264f57506040513d601f19601f8201168201806040525081019061264c919061311a565b60015b6126c9573d806000811461267f576040519150601f19603f3d011682016040523d82523d6000602084013e612684565b606091505b506000815114156126c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461272b90613957565b80601f016020809104026020016040519081016040528092919081815260200182805461275790613957565b80156127a45780601f10612779576101008083540402835291602001916127a4565b820191906000526020600020905b81548152906001019060200180831161278757829003601f168201915b5050505050905090565b606060008214156127f6576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061290a565b600082905060005b60008214612828578080612811906139ba565b915050600a8261282191906137e2565b91506127fe565b60008167ffffffffffffffff81111561284457612843613af0565b5b6040519080825280601f01601f1916602001820160405280156128765781602001600182028036833780820191505090505b5090505b600085146129035760018261288f919061386d565b9150600a8561289e9190613a03565b60306128aa919061378c565b60f81b8183815181106128c0576128bf613ac1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128fc91906137e2565b945061287a565b8093505050505b919050565b50505050565b50505050565b612928838383600161292d565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561299a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129d5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129e2600086838761290f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612bac5750612bab8773ffffffffffffffffffffffffffffffffffffffff16612599565b5b15612c72575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2160008884806001019550886125bc565b612c57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612bb2578260005414612c6d57600080fd5b612cde565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c73575b816000819055505050612cf46000868387612915565b5050505050565b828054612d0790613957565b90600052602060002090601f016020900481019282612d295760008555612d70565b82601f10612d4257805160ff1916838001178555612d70565b82800160010185558215612d70579182015b82811115612d6f578251825591602001919060010190612d54565b5b509050612d7d9190612dc4565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ddd576000816000905550600101612dc5565b5090565b6000612df4612def846136dc565b6136b7565b905082815260208101848484011115612e1057612e0f613b24565b5b612e1b848285613915565b509392505050565b6000612e36612e318461370d565b6136b7565b905082815260208101848484011115612e5257612e51613b24565b5b612e5d848285613915565b509392505050565b600081359050612e7481613da5565b92915050565b600081359050612e8981613dbc565b92915050565b600081359050612e9e81613dd3565b92915050565b600081519050612eb381613dd3565b92915050565b600082601f830112612ece57612ecd613b1f565b5b8135612ede848260208601612de1565b91505092915050565b600082601f830112612efc57612efb613b1f565b5b8135612f0c848260208601612e23565b91505092915050565b600081359050612f2481613dea565b92915050565b600060208284031215612f4057612f3f613b2e565b5b6000612f4e84828501612e65565b91505092915050565b60008060408385031215612f6e57612f6d613b2e565b5b6000612f7c85828601612e65565b9250506020612f8d85828601612e65565b9150509250929050565b600080600060608486031215612fb057612faf613b2e565b5b6000612fbe86828701612e65565b9350506020612fcf86828701612e65565b9250506040612fe086828701612f15565b9150509250925092565b6000806000806080858703121561300457613003613b2e565b5b600061301287828801612e65565b945050602061302387828801612e65565b935050604061303487828801612f15565b925050606085013567ffffffffffffffff81111561305557613054613b29565b5b61306187828801612eb9565b91505092959194509250565b6000806040838503121561308457613083613b2e565b5b600061309285828601612e65565b92505060206130a385828601612e7a565b9150509250929050565b600080604083850312156130c4576130c3613b2e565b5b60006130d285828601612e65565b92505060206130e385828601612f15565b9150509250929050565b60006020828403121561310357613102613b2e565b5b600061311184828501612e8f565b91505092915050565b6000602082840312156131305761312f613b2e565b5b600061313e84828501612ea4565b91505092915050565b60006020828403121561315d5761315c613b2e565b5b600082013567ffffffffffffffff81111561317b5761317a613b29565b5b61318784828501612ee7565b91505092915050565b6000602082840312156131a6576131a5613b2e565b5b60006131b484828501612f15565b91505092915050565b6131c6816138a1565b82525050565b6131d5816138b3565b82525050565b60006131e68261373e565b6131f08185613754565b9350613200818560208601613924565b61320981613b33565b840191505092915050565b600061321f82613749565b6132298185613770565b9350613239818560208601613924565b61324281613b33565b840191505092915050565b600061325882613749565b6132628185613781565b9350613272818560208601613924565b80840191505092915050565b600061328b601783613770565b915061329682613b44565b602082019050919050565b60006132ae602683613770565b91506132b982613b6d565b604082019050919050565b60006132d1601b83613770565b91506132dc82613bbc565b602082019050919050565b60006132f4601f83613770565b91506132ff82613be5565b602082019050919050565b6000613317603183613770565b915061332282613c0e565b604082019050919050565b600061333a601783613770565b915061334582613c5d565b602082019050919050565b600061335d600583613781565b915061336882613c86565b600582019050919050565b6000613380601383613770565b915061338b82613caf565b602082019050919050565b60006133a3602083613770565b91506133ae82613cd8565b602082019050919050565b60006133c6602f83613770565b91506133d182613d01565b604082019050919050565b60006133e9601c83613770565b91506133f482613d50565b602082019050919050565b600061340c601883613770565b915061341782613d79565b602082019050919050565b600061342f600083613765565b915061343a82613da2565b600082019050919050565b61344e8161390b565b82525050565b6000613460828561324d565b915061346c828461324d565b915061347782613350565b91508190509392505050565b600061348e82613422565b9150819050919050565b60006020820190506134ad60008301846131bd565b92915050565b60006080820190506134c860008301876131bd565b6134d560208301866131bd565b6134e26040830185613445565b81810360608301526134f481846131db565b905095945050505050565b600060208201905061351460008301846131cc565b92915050565b600060208201905081810360008301526135348184613214565b905092915050565b600060208201905081810360008301526135558161327e565b9050919050565b60006020820190508181036000830152613575816132a1565b9050919050565b60006020820190508181036000830152613595816132c4565b9050919050565b600060208201905081810360008301526135b5816132e7565b9050919050565b600060208201905081810360008301526135d58161330a565b9050919050565b600060208201905081810360008301526135f58161332d565b9050919050565b6000602082019050818103600083015261361581613373565b9050919050565b6000602082019050818103600083015261363581613396565b9050919050565b60006020820190508181036000830152613655816133b9565b9050919050565b60006020820190508181036000830152613675816133dc565b9050919050565b60006020820190508181036000830152613695816133ff565b9050919050565b60006020820190506136b16000830184613445565b92915050565b60006136c16136d2565b90506136cd8282613989565b919050565b6000604051905090565b600067ffffffffffffffff8211156136f7576136f6613af0565b5b61370082613b33565b9050602081019050919050565b600067ffffffffffffffff82111561372857613727613af0565b5b61373182613b33565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137978261390b565b91506137a28361390b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137d7576137d6613a34565b5b828201905092915050565b60006137ed8261390b565b91506137f88361390b565b92508261380857613807613a63565b5b828204905092915050565b600061381e8261390b565b91506138298361390b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561386257613861613a34565b5b828202905092915050565b60006138788261390b565b91506138838361390b565b92508282101561389657613895613a34565b5b828203905092915050565b60006138ac826138eb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613942578082015181840152602081019050613927565b83811115613951576000848401525b50505050565b6000600282049050600182168061396f57607f821691505b6020821081141561398357613982613a92565b5b50919050565b61399282613b33565b810181811067ffffffffffffffff821117156139b1576139b0613af0565b5b80604052505050565b60006139c58261390b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139f8576139f7613a34565b5b600182019050919050565b6000613a0e8261390b565b9150613a198361390b565b925082613a2957613a28613a63565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d757374206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360008201527f20696e2061207472616e73616374696f6e000000000000000000000000000000602082015250565b7f45544820616d6f756e7420697320696e636f7272656374000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b50565b613dae816138a1565b8114613db957600080fd5b50565b613dc5816138b3565b8114613dd057600080fd5b50565b613ddc816138bf565b8114613de757600080fd5b50565b613df38161390b565b8114613dfe57600080fd5b5056fea2646970667358221220482103b25ee6582c8622238e77998e8f29dc56b5cb92134a49feee5e9635db1b64736f6c63430008070033697066733a2f2f516d657669473764594c52457365587a6353394233735539596b5770726271765a73474544377863366f756d58632f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d578063a0712d68116100a0578063b88d4fde1161006f578063b88d4fde146106b2578063c87b56dd146106db578063cce132d114610718578063e985e9c514610743578063f2fde38b14610780576101f9565b8063a0712d681461062b578063a22cb46514610647578063a2e9147714610670578063a475b5dd1461069b576101f9565b8063853828b6116100dc578063853828b6146105955780638da5cb5b146105ac57806395d89b41146105d75780639a15207714610602576101f9565b80636352211e146104d95780636c0360eb1461051657806370a0823114610541578063715018a61461057e576101f9565b806323b872dd1161019057806342842e0e1161015f57806342842e0e1461040a578063484b973c14610433578063518302271461045c578063552410771461048757806355f804b3146104b0576101f9565b806323b872dd146103745780632f8145751461039d57806332cb6b0c146103b45780633fa4f245146103df576101f9565b8063081c8c44116101cc578063081c8c44146102cc578063095ea7b3146102f757806318160ddd14610320578063228025e81461034b576101f9565b80630188541d146101fe57806301ffc9a71461022757806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613147565b6107a9565b005b34801561023357600080fd5b5061024e600480360381019061024991906130ed565b61083f565b60405161025b91906134ff565b60405180910390f35b34801561027057600080fd5b50610279610921565b604051610286919061351a565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613190565b6109b3565b6040516102c39190613498565b60405180910390f35b3480156102d857600080fd5b506102e1610a2f565b6040516102ee919061351a565b60405180910390f35b34801561030357600080fd5b5061031e600480360381019061031991906130ad565b610abd565b005b34801561032c57600080fd5b50610335610bc8565b604051610342919061369c565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190613190565b610bdf565b005b34801561038057600080fd5b5061039b60048036038101906103969190612f97565b610c65565b005b3480156103a957600080fd5b506103b2610c75565b005b3480156103c057600080fd5b506103c9610d1d565b6040516103d6919061369c565b60405180910390f35b3480156103eb57600080fd5b506103f4610d23565b604051610401919061369c565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190612f97565b610d29565b005b34801561043f57600080fd5b5061045a600480360381019061045591906130ad565b610d49565b005b34801561046857600080fd5b50610471610e6d565b60405161047e91906134ff565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613190565b610e80565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190613147565b610f19565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190613190565b610fca565b60405161050d9190613498565b60405180910390f35b34801561052257600080fd5b5061052b610fe0565b604051610538919061351a565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612f2a565b61106e565b604051610575919061369c565b60405180910390f35b34801561058a57600080fd5b5061059361113e565b005b3480156105a157600080fd5b506105aa6111c6565b005b3480156105b857600080fd5b506105c161129e565b6040516105ce9190613498565b60405180910390f35b3480156105e357600080fd5b506105ec6112c8565b6040516105f9919061351a565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190613190565b61135a565b005b61064560048036038101906106409190613190565b6113e0565b005b34801561065357600080fd5b5061066e6004803603810190610669919061306d565b611572565b005b34801561067c57600080fd5b506106856116ea565b60405161069291906134ff565b60405180910390f35b3480156106a757600080fd5b506106b06116fd565b005b3480156106be57600080fd5b506106d960048036038101906106d49190612fea565b6117a5565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190613190565b611821565b60405161070f919061351a565b60405180910390f35b34801561072457600080fd5b5061072d611977565b60405161073a919061369c565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190612f57565b61197d565b60405161077791906134ff565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190612f2a565b611a11565b005b6107b1611b09565b73ffffffffffffffffffffffffffffffffffffffff166107cf61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081c9061361c565b60405180910390fd5b80600d908051906020019061083b929190612cfb565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061091a575061091982611b11565b5b9050919050565b60606002805461093090613957565b80601f016020809104026020016040519081016040528092919081815260200182805461095c90613957565b80156109a95780601f1061097e576101008083540402835291602001916109a9565b820191906000526020600020905b81548152906001019060200180831161098c57829003601f168201915b5050505050905090565b60006109be82611b7b565b6109f4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610a3c90613957565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6890613957565b8015610ab55780601f10610a8a57610100808354040283529160200191610ab5565b820191906000526020600020905b815481529060010190602001808311610a9857829003601f168201915b505050505081565b6000610ac882610fca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b30576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4f611b09565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b815750610b7f81610b7a611b09565b61197d565b155b15610bb8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bc3838383611bc9565b505050565b6000610bd2611c7b565b6001546000540303905090565b610be7611b09565b73ffffffffffffffffffffffffffffffffffffffff16610c0561129e565b73ffffffffffffffffffffffffffffffffffffffff1614610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c529061361c565b60405180910390fd5b80600b8190555050565b610c70838383611c84565b505050565b610c7d611b09565b73ffffffffffffffffffffffffffffffffffffffff16610c9b61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce89061361c565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b600b5481565b600a5481565b610d44838383604051806020016040528060008152506117a5565b505050565b610d51611b09565b73ffffffffffffffffffffffffffffffffffffffff16610d6f61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc9061361c565b60405180910390fd5b600b5481610dd1610bc8565b610ddb919061378c565b1115610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e139061359c565b60405180910390fd5b60008111610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e569061353c565b60405180910390fd5b610e698282612175565b5050565b600c60019054906101000a900460ff1681565b610e88611b09565b73ffffffffffffffffffffffffffffffffffffffff16610ea661129e565b73ffffffffffffffffffffffffffffffffffffffff1614610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef39061361c565b60405180910390fd5b670de0b6b3a764000081610f109190613813565b600a8190555050565b610f21611b09565b73ffffffffffffffffffffffffffffffffffffffff16610f3f61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c9061361c565b60405180910390fd5b80600e9080519060200190610fab929190612cfb565b506001600c60016101000a81548160ff02191690831515021790555050565b6000610fd582612193565b600001519050919050565b600e8054610fed90613957565b80601f016020809104026020016040519081016040528092919081815260200182805461101990613957565b80156110665780601f1061103b57610100808354040283529160200191611066565b820191906000526020600020905b81548152906001019060200180831161104957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611146611b09565b73ffffffffffffffffffffffffffffffffffffffff1661116461129e565b73ffffffffffffffffffffffffffffffffffffffff16146111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b19061361c565b60405180910390fd5b6111c46000612422565b565b6111ce611b09565b73ffffffffffffffffffffffffffffffffffffffff166111ec61129e565b73ffffffffffffffffffffffffffffffffffffffff1614611242576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112399061361c565b60405180910390fd5b60004790506000811161128a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611281906135fc565b60405180910390fd5b61129b611295611b09565b476124e8565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112d790613957565b80601f016020809104026020016040519081016040528092919081815260200182805461130390613957565b80156113505780601f1061132557610100808354040283529160200191611350565b820191906000526020600020905b81548152906001019060200180831161133357829003601f168201915b5050505050905090565b611362611b09565b73ffffffffffffffffffffffffffffffffffffffff1661138061129e565b73ffffffffffffffffffffffffffffffffffffffff16146113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd9061361c565b60405180910390fd5b8060098190555050565b600c60009054906101000a900460ff1661142f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114269061357c565b60405180910390fd5b600954811115611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b906135bc565b60405180910390fd5b600b5481611480610bc8565b61148a919061378c565b11156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c29061359c565b60405180910390fd5b6000811161150e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115059061365c565b60405180910390fd5b3481600a5461151d9190613813565b111561155e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611555906135dc565b60405180910390fd5b61156f611569611b09565b82612175565b50565b61157a611b09565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115df576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115ec611b09565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611699611b09565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116de91906134ff565b60405180910390a35050565b600c60009054906101000a900460ff1681565b611705611b09565b73ffffffffffffffffffffffffffffffffffffffff1661172361129e565b73ffffffffffffffffffffffffffffffffffffffff1614611779576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117709061361c565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b6117b0848484611c84565b6117cf8373ffffffffffffffffffffffffffffffffffffffff16612599565b80156117e457506117e2848484846125bc565b155b1561181b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061182c82611b7b565b61186b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118629061363c565b60405180910390fd5b60001515600c60019054906101000a900460ff161515141561191957600d805461189490613957565b80601f01602080910402602001604051908101604052809291908181526020018280546118c090613957565b801561190d5780601f106118e25761010080835404028352916020019161190d565b820191906000526020600020905b8154815290600101906020018083116118f057829003601f168201915b50505050509050611972565b600061192361271c565b90506000815111611943576040518060200160405280600081525061196e565b8061194d846127ae565b60405160200161195e929190613454565b6040516020818303038152906040525b9150505b919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a19611b09565b73ffffffffffffffffffffffffffffffffffffffff16611a3761129e565b73ffffffffffffffffffffffffffffffffffffffff1614611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a849061361c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af49061355c565b60405180910390fd5b611b0681612422565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b86611c7b565b11158015611b95575060005482105b8015611bc2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611c8f82612193565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cb6611b09565b73ffffffffffffffffffffffffffffffffffffffff161480611ce95750611ce88260000151611ce3611b09565b61197d565b5b80611d2e5750611cf7611b09565b73ffffffffffffffffffffffffffffffffffffffff16611d16846109b3565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d67576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611dd0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e37576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e44858585600161290f565b611e546000848460000151611bc9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612105576000548110156121045782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461216e8585856001612915565b5050505050565b61218f82826040518060200160405280600081525061291b565b5050565b61219b612d81565b6000829050806121a9611c7b565b111580156121b8575060005481105b156123eb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516123e957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122cd57809250505061241d565b5b6001156123e857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123e357809250505061241d565b6122ce565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161250e90613483565b60006040518083038185875af1925050503d806000811461254b576040519150601f19603f3d011682016040523d82523d6000602084013e612550565b606091505b5050905080612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b9061367c565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125e2611b09565b8786866040518563ffffffff1660e01b815260040161260494939291906134b3565b602060405180830381600087803b15801561261e57600080fd5b505af192505050801561264f57506040513d601f19601f8201168201806040525081019061264c919061311a565b60015b6126c9573d806000811461267f576040519150601f19603f3d011682016040523d82523d6000602084013e612684565b606091505b506000815114156126c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461272b90613957565b80601f016020809104026020016040519081016040528092919081815260200182805461275790613957565b80156127a45780601f10612779576101008083540402835291602001916127a4565b820191906000526020600020905b81548152906001019060200180831161278757829003601f168201915b5050505050905090565b606060008214156127f6576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061290a565b600082905060005b60008214612828578080612811906139ba565b915050600a8261282191906137e2565b91506127fe565b60008167ffffffffffffffff81111561284457612843613af0565b5b6040519080825280601f01601f1916602001820160405280156128765781602001600182028036833780820191505090505b5090505b600085146129035760018261288f919061386d565b9150600a8561289e9190613a03565b60306128aa919061378c565b60f81b8183815181106128c0576128bf613ac1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128fc91906137e2565b945061287a565b8093505050505b919050565b50505050565b50505050565b612928838383600161292d565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561299a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129d5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129e2600086838761290f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612bac5750612bab8773ffffffffffffffffffffffffffffffffffffffff16612599565b5b15612c72575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2160008884806001019550886125bc565b612c57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612bb2578260005414612c6d57600080fd5b612cde565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c73575b816000819055505050612cf46000868387612915565b5050505050565b828054612d0790613957565b90600052602060002090601f016020900481019282612d295760008555612d70565b82601f10612d4257805160ff1916838001178555612d70565b82800160010185558215612d70579182015b82811115612d6f578251825591602001919060010190612d54565b5b509050612d7d9190612dc4565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ddd576000816000905550600101612dc5565b5090565b6000612df4612def846136dc565b6136b7565b905082815260208101848484011115612e1057612e0f613b24565b5b612e1b848285613915565b509392505050565b6000612e36612e318461370d565b6136b7565b905082815260208101848484011115612e5257612e51613b24565b5b612e5d848285613915565b509392505050565b600081359050612e7481613da5565b92915050565b600081359050612e8981613dbc565b92915050565b600081359050612e9e81613dd3565b92915050565b600081519050612eb381613dd3565b92915050565b600082601f830112612ece57612ecd613b1f565b5b8135612ede848260208601612de1565b91505092915050565b600082601f830112612efc57612efb613b1f565b5b8135612f0c848260208601612e23565b91505092915050565b600081359050612f2481613dea565b92915050565b600060208284031215612f4057612f3f613b2e565b5b6000612f4e84828501612e65565b91505092915050565b60008060408385031215612f6e57612f6d613b2e565b5b6000612f7c85828601612e65565b9250506020612f8d85828601612e65565b9150509250929050565b600080600060608486031215612fb057612faf613b2e565b5b6000612fbe86828701612e65565b9350506020612fcf86828701612e65565b9250506040612fe086828701612f15565b9150509250925092565b6000806000806080858703121561300457613003613b2e565b5b600061301287828801612e65565b945050602061302387828801612e65565b935050604061303487828801612f15565b925050606085013567ffffffffffffffff81111561305557613054613b29565b5b61306187828801612eb9565b91505092959194509250565b6000806040838503121561308457613083613b2e565b5b600061309285828601612e65565b92505060206130a385828601612e7a565b9150509250929050565b600080604083850312156130c4576130c3613b2e565b5b60006130d285828601612e65565b92505060206130e385828601612f15565b9150509250929050565b60006020828403121561310357613102613b2e565b5b600061311184828501612e8f565b91505092915050565b6000602082840312156131305761312f613b2e565b5b600061313e84828501612ea4565b91505092915050565b60006020828403121561315d5761315c613b2e565b5b600082013567ffffffffffffffff81111561317b5761317a613b29565b5b61318784828501612ee7565b91505092915050565b6000602082840312156131a6576131a5613b2e565b5b60006131b484828501612f15565b91505092915050565b6131c6816138a1565b82525050565b6131d5816138b3565b82525050565b60006131e68261373e565b6131f08185613754565b9350613200818560208601613924565b61320981613b33565b840191505092915050565b600061321f82613749565b6132298185613770565b9350613239818560208601613924565b61324281613b33565b840191505092915050565b600061325882613749565b6132628185613781565b9350613272818560208601613924565b80840191505092915050565b600061328b601783613770565b915061329682613b44565b602082019050919050565b60006132ae602683613770565b91506132b982613b6d565b604082019050919050565b60006132d1601b83613770565b91506132dc82613bbc565b602082019050919050565b60006132f4601f83613770565b91506132ff82613be5565b602082019050919050565b6000613317603183613770565b915061332282613c0e565b604082019050919050565b600061333a601783613770565b915061334582613c5d565b602082019050919050565b600061335d600583613781565b915061336882613c86565b600582019050919050565b6000613380601383613770565b915061338b82613caf565b602082019050919050565b60006133a3602083613770565b91506133ae82613cd8565b602082019050919050565b60006133c6602f83613770565b91506133d182613d01565b604082019050919050565b60006133e9601c83613770565b91506133f482613d50565b602082019050919050565b600061340c601883613770565b915061341782613d79565b602082019050919050565b600061342f600083613765565b915061343a82613da2565b600082019050919050565b61344e8161390b565b82525050565b6000613460828561324d565b915061346c828461324d565b915061347782613350565b91508190509392505050565b600061348e82613422565b9150819050919050565b60006020820190506134ad60008301846131bd565b92915050565b60006080820190506134c860008301876131bd565b6134d560208301866131bd565b6134e26040830185613445565b81810360608301526134f481846131db565b905095945050505050565b600060208201905061351460008301846131cc565b92915050565b600060208201905081810360008301526135348184613214565b905092915050565b600060208201905081810360008301526135558161327e565b9050919050565b60006020820190508181036000830152613575816132a1565b9050919050565b60006020820190508181036000830152613595816132c4565b9050919050565b600060208201905081810360008301526135b5816132e7565b9050919050565b600060208201905081810360008301526135d58161330a565b9050919050565b600060208201905081810360008301526135f58161332d565b9050919050565b6000602082019050818103600083015261361581613373565b9050919050565b6000602082019050818103600083015261363581613396565b9050919050565b60006020820190508181036000830152613655816133b9565b9050919050565b60006020820190508181036000830152613675816133dc565b9050919050565b60006020820190508181036000830152613695816133ff565b9050919050565b60006020820190506136b16000830184613445565b92915050565b60006136c16136d2565b90506136cd8282613989565b919050565b6000604051905090565b600067ffffffffffffffff8211156136f7576136f6613af0565b5b61370082613b33565b9050602081019050919050565b600067ffffffffffffffff82111561372857613727613af0565b5b61373182613b33565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137978261390b565b91506137a28361390b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137d7576137d6613a34565b5b828201905092915050565b60006137ed8261390b565b91506137f88361390b565b92508261380857613807613a63565b5b828204905092915050565b600061381e8261390b565b91506138298361390b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561386257613861613a34565b5b828202905092915050565b60006138788261390b565b91506138838361390b565b92508282101561389657613895613a34565b5b828203905092915050565b60006138ac826138eb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613942578082015181840152602081019050613927565b83811115613951576000848401525b50505050565b6000600282049050600182168061396f57607f821691505b6020821081141561398357613982613a92565b5b50919050565b61399282613b33565b810181811067ffffffffffffffff821117156139b1576139b0613af0565b5b80604052505050565b60006139c58261390b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139f8576139f7613a34565b5b600182019050919050565b6000613a0e8261390b565b9150613a198361390b565b925082613a2957613a28613a63565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d757374206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360008201527f20696e2061207472616e73616374696f6e000000000000000000000000000000602082015250565b7f45544820616d6f756e7420697320696e636f7272656374000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b50565b613dae816138a1565b8114613db957600080fd5b50565b613dc5816138b3565b8114613dd057600080fd5b50565b613ddc816138bf565b8114613de757600080fd5b50565b613df38161390b565b8114613dfe57600080fd5b5056fea2646970667358221220482103b25ee6582c8622238e77998e8f29dc56b5cb92134a49feee5e9635db1b64736f6c63430008070033

Deployed Bytecode Sourcemap

460:3304:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1289:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4690:355:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8157:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9757:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;773:98:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9320:371:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3939:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1658:101:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10728:170:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1030:111:13;;;;;;;;;;;;;:::i;:::-;;648:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;607:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10969:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3067:254:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;734:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1431:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1149:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7966:124:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;927:26:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5109:206:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:9;;;;;;;;;;;;;:::i;:::-;;3356:209:13;;;;;;;;;;;;;:::i;:::-;;1063:87:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8326:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1543:105:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2537:486;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10074:302:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;690:37:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2428:70;;;;;;;;;;;;;:::i;:::-;;11225:406:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1906:493:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;572:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10447:214:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1972:201:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1289:134:13;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1397:18:13::1;1380:14;:35;;;;;;;;;;;;:::i;:::-;;1289:134:::0;:::o;4690:355:3:-;4837:4;4894:25;4879:40;;;:11;:40;;;;:105;;;;4951:33;4936:48;;;:11;:48;;;;4879:105;:158;;;;5001:36;5025:11;5001:23;:36::i;:::-;4879:158;4859:178;;4690:355;;;:::o;8157:100::-;8211:13;8244:5;8237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8157:100;:::o;9757:245::-;9861:7;9891:16;9899:7;9891;:16::i;:::-;9886:64;;9916:34;;;;;;;;;;;;;;9886:64;9970:15;:24;9986:7;9970:24;;;;;;;;;;;;;;;;;;;;;9963:31;;9757:245;;;:::o;773:98:13:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9320:371:3:-;9393:13;9409:24;9425:7;9409:15;:24::i;:::-;9393:40;;9454:5;9448:11;;:2;:11;;;9444:48;;;9468:24;;;;;;;;;;;;;;9444:48;9525:5;9509:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9535:37;9552:5;9559:12;:10;:12::i;:::-;9535:16;:37::i;:::-;9534:38;9509:63;9505:138;;;9596:35;;;;;;;;;;;;;;9505:138;9655:28;9664:2;9668:7;9677:5;9655:8;:28::i;:::-;9382:309;9320:371;;:::o;3939:303::-;3983:7;4208:15;:13;:15::i;:::-;4193:12;;4177:13;;:28;:46;4170:53;;3939:303;:::o;1658:101:13:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1741:13:13::1;1728:10;:26;;;;1658:101:::0;:::o;10728:170:3:-;10862:28;10872:4;10878:2;10882:7;10862:9;:28::i;:::-;10728:170;;;:::o;1030:111:13:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1116:17:13::1;;;;;;;;;;;1115:18;1095:17;;:38;;;;;;;;;;;;;;;;;;1030:111::o:0;648:33::-;;;;:::o;607:34::-;;;;:::o;10969:185:3:-;11107:39;11124:4;11130:2;11134:7;11107:39;;;;;;;;;;;;:16;:39::i;:::-;10969:185;;;:::o;3067:254:13:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3178:10:13::1;;3168:6;3152:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;3144:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;3252:1;3243:6;:10;3235:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3292:21;3302:2;3306:6;3292:9;:21::i;:::-;3067:254:::0;;:::o;734:28::-;;;;;;;;;;;;;:::o;1431:104::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1519:7:13::1;1506:9;:21;;;;:::i;:::-;1498:5;:29;;;;1431:104:::0;:::o;1149:132::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1236:11:13::1;1226:7;:21;;;;;;;;;;;;:::i;:::-;;1269:4;1258:8;;:15;;;;;;;;;;;;;;;;;;1149:132:::0;:::o;7966:124:3:-;8030:7;8057:20;8069:7;8057:11;:20::i;:::-;:25;;;8050:32;;7966:124;;;:::o;927:26:13:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5109:206:3:-;5173:7;5214:1;5197:19;;:5;:19;;;5193:60;;;5225:28;;;;;;;;;;;;;;5193:60;5279:12;:19;5292:5;5279:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;5271:36;;5264:43;;5109:206;;;:::o;1714:103:9:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;3356:209:13:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3407:15:13::1;3425:21;3407:39;;3475:1;3465:7;:11;3457:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;3511:46;3521:12;:10;:12::i;:::-;3535:21;3511:9;:46::i;:::-;3396:169;3356:209::o:0;1063:87:9:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;8326:104:3:-;8382:13;8415:7;8408:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8326:104;:::o;1543:105:13:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1628:12:13::1;1616:9;:24;;;;1543:105:::0;:::o;2537:486::-;2603:17;;;;;;;;;;;2595:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;2681:9;;2671:6;:19;;2663:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;2790:10;;2779:6;2763:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;;2755:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;2865:1;2856:6;:10;2848:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;2936:9;2926:6;2918:5;;:14;;;;:::i;:::-;:27;;2910:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2984:31;2994:12;:10;:12::i;:::-;3008:6;2984:9;:31::i;:::-;2537:486;:::o;10074:302:3:-;10200:12;:10;:12::i;:::-;10188:24;;:8;:24;;;10184:54;;;10221:17;;;;;;;;;;;;;;10184:54;10296:8;10251:18;:32;10270:12;:10;:12::i;:::-;10251:32;;;;;;;;;;;;;;;:42;10284:8;10251:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10349:8;10320:48;;10335:12;:10;:12::i;:::-;10320:48;;;10359:8;10320:48;;;;;;:::i;:::-;;;;;;;;10074:302;;:::o;690:37:13:-;;;;;;;;;;;;;:::o;2428:70::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2484:8:13::1;;;;;;;;;;;2483:9;2472:8;;:20;;;;;;;;;;;;;;;;;;2428:70::o:0;11225:406:3:-;11392:28;11402:4;11408:2;11412:7;11392:9;:28::i;:::-;11449:15;:2;:13;;;:15::i;:::-;:89;;;;;11482:56;11513:4;11519:2;11523:7;11532:5;11482:30;:56::i;:::-;11481:57;11449:89;11431:193;;;11572:40;;;;;;;;;;;;;;11431:193;11225:406;;;;:::o;1906:493:13:-;2004:13;2045:16;2053:7;2045;:16::i;:::-;2029:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;2154:5;2142:17;;:8;;;;;;;;;;;:17;;;2139:62;;;2179:14;2172:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2139:62;2209:28;2240:10;:8;:10::i;:::-;2209:41;;2295:1;2270:14;2264:28;:32;:129;;;;;;;;;;;;;;;;;2332:14;2348:20;2349:7;2348:18;:20::i;:::-;2315:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2264:129;2257:136;;;1906:493;;;;:::o;572:28::-;;;;:::o;10447:214:3:-;10589:4;10618:18;:25;10637:5;10618:25;;;;;;;;;;;;;;;:35;10644:8;10618:35;;;;;;;;;;;;;;;;;;;;;;;;;10611:42;;10447:214;;;;:::o;1972:201:9:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;11886:213:3:-;11943:4;11999:7;11980:15;:13;:15::i;:::-;:26;;:66;;;;;12033:13;;12023:7;:23;11980:66;:111;;;;;12064:11;:20;12076:7;12064:20;;;;;;;;;;;:27;;;;;;;;;;;;12063:28;11980:111;11960:131;;11886:213;;;:::o;19766:196::-;19908:2;19881:15;:24;19897:7;19881:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19946:7;19942:2;19926:28;;19935:5;19926:28;;;;;;;;;;;;19766:196;;;:::o;3663:92::-;3719:7;3746:1;3739:8;;3663:92;:::o;15216:2138::-;15331:35;15369:20;15381:7;15369:11;:20::i;:::-;15331:58;;15402:22;15444:13;:18;;;15428:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15479:50;15496:13;:18;;;15516:12;:10;:12::i;:::-;15479:16;:50::i;:::-;15428:101;:154;;;;15570:12;:10;:12::i;:::-;15546:36;;:20;15558:7;15546:11;:20::i;:::-;:36;;;15428:154;15402:181;;15601:17;15596:66;;15627:35;;;;;;;;;;;;;;15596:66;15699:4;15677:26;;:13;:18;;;:26;;;15673:67;;15712:28;;;;;;;;;;;;;;15673:67;15769:1;15755:16;;:2;:16;;;15751:52;;;15780:23;;;;;;;;;;;;;;15751:52;15816:43;15838:4;15844:2;15848:7;15857:1;15816:21;:43::i;:::-;15924:49;15941:1;15945:7;15954:13;:18;;;15924:8;:49::i;:::-;16299:1;16269:12;:18;16282:4;16269:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16343:1;16315:12;:16;16328:2;16315:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16389:2;16361:11;:20;16373:7;16361:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16451:15;16406:11;:20;16418:7;16406:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16719:19;16751:1;16741:7;:11;16719:33;;16812:1;16771:43;;:11;:24;16783:11;16771:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16767:471;;;16996:13;;16982:11;:27;16978:245;;;17066:13;:18;;;17034:11;:24;17046:11;17034:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;17149:13;:54;;;17107:11;:24;17119:11;17107:24;;;;;;;;;;;:39;;;:96;;;;;;;;;;;;;;;;;;16978:245;16767:471;16244:1005;17285:7;17281:2;17266:27;;17275:4;17266:27;;;;;;;;;;;;17304:42;17325:4;17331:2;17335:7;17344:1;17304:20;:42::i;:::-;15320:2034;;15216:2138;;;:::o;12107:104::-;12176:27;12186:2;12190:8;12176:27;;;;;;;;;;;;:9;:27::i;:::-;12107:104;;:::o;6764:1140::-;6852:21;;:::i;:::-;6891:12;6906:7;6891:22;;6974:4;6955:15;:13;:15::i;:::-;:23;;:47;;;;;6989:13;;6982:4;:20;6955:47;6951:886;;;7023:31;7057:11;:17;7069:4;7057:17;;;;;;;;;;;7023:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7098:9;:16;;;7093:729;;7169:1;7143:28;;:9;:14;;;:28;;;7139:101;;7207:9;7200:16;;;;;;7139:101;7542:261;7549:4;7542:261;;;7582:6;;;;;;;;7627:11;:17;7639:4;7627:17;;;;;;;;;;;7615:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7701:1;7675:28;;:9;:14;;;:28;;;7671:109;;7743:9;7736:16;;;;;;7671:109;7542:261;;;7093:729;7004:833;6951:886;7865:31;;;;;;;;;;;;;;6764:1140;;;;:::o;2333:191:9:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;3573:188:13:-;3647:12;3665:8;:13;;3686:7;3665:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3646:52;;;3717:7;3709:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;3635:126;3573:188;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;20454:772:3:-;20617:4;20667:2;20651:36;;;20706:12;:10;:12::i;:::-;20737:4;20760:7;20786:5;20651:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20634:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20994:1;20977:6;:13;:18;20973:235;;;21023:40;;;;;;;;;;;;;;20973:235;21166:6;21160:13;21151:6;21147:2;21143:15;21136:38;20634:585;20872:45;;;20862:55;;;:6;:55;;;;20855:62;;;20454:772;;;;;;:::o;1769:100:13:-;1821:13;1854:7;1847:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1769:100;:::o;342:723:12:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;21874:159:3:-;;;;;:::o;22692:158::-;;;;;:::o;12574:163::-;12697:32;12703:2;12707:8;12717:5;12724:4;12697:5;:32::i;:::-;12574:163;;;:::o;12996:1966::-;13135:20;13158:13;;13135:36;;13200:1;13186:16;;:2;:16;;;13182:48;;;13211:19;;;;;;;;;;;;;;13182:48;13257:1;13245:8;:13;13241:44;;;13267:18;;;;;;;;;;;;;;13241:44;13298:61;13328:1;13332:2;13336:12;13350:8;13298:21;:61::i;:::-;13671:8;13636:12;:16;13649:2;13636:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13735:8;13695:12;:16;13708:2;13695:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13794:2;13761:11;:25;13773:12;13761:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;13861:15;13811:11;:25;13823:12;13811:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;13894:20;13917:12;13894:35;;13944:11;13973:8;13958:12;:23;13944:37;;14002:4;:23;;;;;14010:15;:2;:13;;;:15::i;:::-;14002:23;13998:832;;;14046:505;14102:12;14098:2;14077:38;;14094:1;14077:38;;;;;;;;;;;;14169:212;14238:1;14271:2;14304:14;;;;;;14349:5;14169:30;:212::i;:::-;14138:365;;14439:40;;;;;;;;;;;;;;14138:365;14546:3;14530:12;:19;;14046:505;;14632:12;14615:13;;:29;14611:43;;14646:8;;;14611:43;13998:832;;;14695:120;14751:14;;;;;;14747:2;14726:40;;14743:1;14726:40;;;;;;;;;;;;14810:3;14794:12;:19;;14695:120;;13998:832;14860:12;14844:13;:28;;;;13611:1273;;14894:60;14923:1;14927:2;14931:12;14945:8;14894:20;:60::i;:::-;13124:1838;12996:1966;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:14:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:400::-;10908:3;10929:84;11011:1;11006:3;10929:84;:::i;:::-;10922:91;;11022:93;11111:3;11022:93;:::i;:::-;11140:1;11135:3;11131:11;11124:18;;10748:400;;;:::o;11154:366::-;11296:3;11317:67;11381:2;11376:3;11317:67;:::i;:::-;11310:74;;11393:93;11482:3;11393:93;:::i;:::-;11511:2;11506:3;11502:12;11495:19;;11154:366;;;:::o;11526:::-;11668:3;11689:67;11753:2;11748:3;11689:67;:::i;:::-;11682:74;;11765:93;11854:3;11765:93;:::i;:::-;11883:2;11878:3;11874:12;11867:19;;11526:366;;;:::o;11898:::-;12040:3;12061:67;12125:2;12120:3;12061:67;:::i;:::-;12054:74;;12137:93;12226:3;12137:93;:::i;:::-;12255:2;12250:3;12246:12;12239:19;;11898:366;;;:::o;12270:::-;12412:3;12433:67;12497:2;12492:3;12433:67;:::i;:::-;12426:74;;12509:93;12598:3;12509:93;:::i;:::-;12627:2;12622:3;12618:12;12611:19;;12270:366;;;:::o;12642:::-;12784:3;12805:67;12869:2;12864:3;12805:67;:::i;:::-;12798:74;;12881:93;12970:3;12881:93;:::i;:::-;12999:2;12994:3;12990:12;12983:19;;12642:366;;;:::o;13014:398::-;13173:3;13194:83;13275:1;13270:3;13194:83;:::i;:::-;13187:90;;13286:93;13375:3;13286:93;:::i;:::-;13404:1;13399:3;13395:11;13388:18;;13014:398;;;:::o;13418:118::-;13505:24;13523:5;13505:24;:::i;:::-;13500:3;13493:37;13418:118;;:::o;13542:701::-;13823:3;13845:95;13936:3;13927:6;13845:95;:::i;:::-;13838:102;;13957:95;14048:3;14039:6;13957:95;:::i;:::-;13950:102;;14069:148;14213:3;14069:148;:::i;:::-;14062:155;;14234:3;14227:10;;13542:701;;;;;:::o;14249:379::-;14433:3;14455:147;14598:3;14455:147;:::i;:::-;14448:154;;14619:3;14612:10;;14249:379;;;:::o;14634:222::-;14727:4;14765:2;14754:9;14750:18;14742:26;;14778:71;14846:1;14835:9;14831:17;14822:6;14778:71;:::i;:::-;14634:222;;;;:::o;14862:640::-;15057:4;15095:3;15084:9;15080:19;15072:27;;15109:71;15177:1;15166:9;15162:17;15153:6;15109:71;:::i;:::-;15190:72;15258:2;15247:9;15243:18;15234:6;15190:72;:::i;:::-;15272;15340:2;15329:9;15325:18;15316:6;15272:72;:::i;:::-;15391:9;15385:4;15381:20;15376:2;15365:9;15361:18;15354:48;15419:76;15490:4;15481:6;15419:76;:::i;:::-;15411:84;;14862:640;;;;;;;:::o;15508:210::-;15595:4;15633:2;15622:9;15618:18;15610:26;;15646:65;15708:1;15697:9;15693:17;15684:6;15646:65;:::i;:::-;15508:210;;;;:::o;15724:313::-;15837:4;15875:2;15864:9;15860:18;15852:26;;15924:9;15918:4;15914:20;15910:1;15899:9;15895:17;15888:47;15952:78;16025:4;16016:6;15952:78;:::i;:::-;15944:86;;15724:313;;;;:::o;16043:419::-;16209:4;16247:2;16236:9;16232:18;16224:26;;16296:9;16290:4;16286:20;16282:1;16271:9;16267:17;16260:47;16324:131;16450:4;16324:131;:::i;:::-;16316:139;;16043:419;;;:::o;16468:::-;16634:4;16672:2;16661:9;16657:18;16649:26;;16721:9;16715:4;16711:20;16707:1;16696:9;16692:17;16685:47;16749:131;16875:4;16749:131;:::i;:::-;16741:139;;16468:419;;;:::o;16893:::-;17059:4;17097:2;17086:9;17082:18;17074:26;;17146:9;17140:4;17136:20;17132:1;17121:9;17117:17;17110:47;17174:131;17300:4;17174:131;:::i;:::-;17166:139;;16893:419;;;:::o;17318:::-;17484:4;17522:2;17511:9;17507:18;17499:26;;17571:9;17565:4;17561:20;17557:1;17546:9;17542:17;17535:47;17599:131;17725:4;17599:131;:::i;:::-;17591:139;;17318:419;;;:::o;17743:::-;17909:4;17947:2;17936:9;17932:18;17924:26;;17996:9;17990:4;17986:20;17982:1;17971:9;17967:17;17960:47;18024:131;18150:4;18024:131;:::i;:::-;18016:139;;17743:419;;;:::o;18168:::-;18334:4;18372:2;18361:9;18357:18;18349:26;;18421:9;18415:4;18411:20;18407:1;18396:9;18392:17;18385:47;18449:131;18575:4;18449:131;:::i;:::-;18441:139;;18168:419;;;:::o;18593:::-;18759:4;18797:2;18786:9;18782:18;18774:26;;18846:9;18840:4;18836:20;18832:1;18821:9;18817:17;18810:47;18874:131;19000:4;18874:131;:::i;:::-;18866:139;;18593:419;;;:::o;19018:::-;19184:4;19222:2;19211:9;19207:18;19199:26;;19271:9;19265:4;19261:20;19257:1;19246:9;19242:17;19235:47;19299:131;19425:4;19299:131;:::i;:::-;19291:139;;19018:419;;;:::o;19443:::-;19609:4;19647:2;19636:9;19632:18;19624:26;;19696:9;19690:4;19686:20;19682:1;19671:9;19667:17;19660:47;19724:131;19850:4;19724:131;:::i;:::-;19716:139;;19443:419;;;:::o;19868:::-;20034:4;20072:2;20061:9;20057:18;20049:26;;20121:9;20115:4;20111:20;20107:1;20096:9;20092:17;20085:47;20149:131;20275:4;20149:131;:::i;:::-;20141:139;;19868:419;;;:::o;20293:::-;20459:4;20497:2;20486:9;20482:18;20474:26;;20546:9;20540:4;20536:20;20532:1;20521:9;20517:17;20510:47;20574:131;20700:4;20574:131;:::i;:::-;20566:139;;20293:419;;;:::o;20718:222::-;20811:4;20849:2;20838:9;20834:18;20826:26;;20862:71;20930:1;20919:9;20915:17;20906:6;20862:71;:::i;:::-;20718:222;;;;:::o;20946:129::-;20980:6;21007:20;;:::i;:::-;20997:30;;21036:33;21064:4;21056:6;21036:33;:::i;:::-;20946:129;;;:::o;21081:75::-;21114:6;21147:2;21141:9;21131:19;;21081:75;:::o;21162:307::-;21223:4;21313:18;21305:6;21302:30;21299:56;;;21335:18;;:::i;:::-;21299:56;21373:29;21395:6;21373:29;:::i;:::-;21365:37;;21457:4;21451;21447:15;21439:23;;21162:307;;;:::o;21475:308::-;21537:4;21627:18;21619:6;21616:30;21613:56;;;21649:18;;:::i;:::-;21613:56;21687:29;21709:6;21687:29;:::i;:::-;21679:37;;21771:4;21765;21761:15;21753:23;;21475:308;;;:::o;21789:98::-;21840:6;21874:5;21868:12;21858:22;;21789:98;;;:::o;21893:99::-;21945:6;21979:5;21973:12;21963:22;;21893:99;;;:::o;21998:168::-;22081:11;22115:6;22110:3;22103:19;22155:4;22150:3;22146:14;22131:29;;21998:168;;;;:::o;22172:147::-;22273:11;22310:3;22295:18;;22172:147;;;;:::o;22325:169::-;22409:11;22443:6;22438:3;22431:19;22483:4;22478:3;22474:14;22459:29;;22325:169;;;;:::o;22500:148::-;22602:11;22639:3;22624:18;;22500:148;;;;:::o;22654:305::-;22694:3;22713:20;22731:1;22713:20;:::i;:::-;22708:25;;22747:20;22765:1;22747:20;:::i;:::-;22742:25;;22901:1;22833:66;22829:74;22826:1;22823:81;22820:107;;;22907:18;;:::i;:::-;22820:107;22951:1;22948;22944:9;22937:16;;22654:305;;;;:::o;22965:185::-;23005:1;23022:20;23040:1;23022:20;:::i;:::-;23017:25;;23056:20;23074:1;23056:20;:::i;:::-;23051:25;;23095:1;23085:35;;23100:18;;:::i;:::-;23085:35;23142:1;23139;23135:9;23130:14;;22965:185;;;;:::o;23156:348::-;23196:7;23219:20;23237:1;23219:20;:::i;:::-;23214:25;;23253:20;23271:1;23253:20;:::i;:::-;23248:25;;23441:1;23373:66;23369:74;23366:1;23363:81;23358:1;23351:9;23344:17;23340:105;23337:131;;;23448:18;;:::i;:::-;23337:131;23496:1;23493;23489:9;23478:20;;23156:348;;;;:::o;23510:191::-;23550:4;23570:20;23588:1;23570:20;:::i;:::-;23565:25;;23604:20;23622:1;23604:20;:::i;:::-;23599:25;;23643:1;23640;23637:8;23634:34;;;23648:18;;:::i;:::-;23634:34;23693:1;23690;23686:9;23678:17;;23510:191;;;;:::o;23707:96::-;23744:7;23773:24;23791:5;23773:24;:::i;:::-;23762:35;;23707:96;;;:::o;23809:90::-;23843:7;23886:5;23879:13;23872:21;23861:32;;23809:90;;;:::o;23905:149::-;23941:7;23981:66;23974:5;23970:78;23959:89;;23905:149;;;:::o;24060:126::-;24097:7;24137:42;24130:5;24126:54;24115:65;;24060:126;;;:::o;24192:77::-;24229:7;24258:5;24247:16;;24192:77;;;:::o;24275:154::-;24359:6;24354:3;24349;24336:30;24421:1;24412:6;24407:3;24403:16;24396:27;24275:154;;;:::o;24435:307::-;24503:1;24513:113;24527:6;24524:1;24521:13;24513:113;;;24612:1;24607:3;24603:11;24597:18;24593:1;24588:3;24584:11;24577:39;24549:2;24546:1;24542:10;24537:15;;24513:113;;;24644:6;24641:1;24638:13;24635:101;;;24724:1;24715:6;24710:3;24706:16;24699:27;24635:101;24484:258;24435:307;;;:::o;24748:320::-;24792:6;24829:1;24823:4;24819:12;24809:22;;24876:1;24870:4;24866:12;24897:18;24887:81;;24953:4;24945:6;24941:17;24931:27;;24887:81;25015:2;25007:6;25004:14;24984:18;24981:38;24978:84;;;25034:18;;:::i;:::-;24978:84;24799:269;24748:320;;;:::o;25074:281::-;25157:27;25179:4;25157:27;:::i;:::-;25149:6;25145:40;25287:6;25275:10;25272:22;25251:18;25239:10;25236:34;25233:62;25230:88;;;25298:18;;:::i;:::-;25230:88;25338:10;25334:2;25327:22;25117:238;25074:281;;:::o;25361:233::-;25400:3;25423:24;25441:5;25423:24;:::i;:::-;25414:33;;25469:66;25462:5;25459:77;25456:103;;;25539:18;;:::i;:::-;25456:103;25586:1;25579:5;25575:13;25568:20;;25361:233;;;:::o;25600:176::-;25632:1;25649:20;25667:1;25649:20;:::i;:::-;25644:25;;25683:20;25701:1;25683:20;:::i;:::-;25678:25;;25722:1;25712:35;;25727:18;;:::i;:::-;25712:35;25768:1;25765;25761:9;25756:14;;25600:176;;;;:::o;25782:180::-;25830:77;25827:1;25820:88;25927:4;25924:1;25917:15;25951:4;25948:1;25941:15;25968:180;26016:77;26013:1;26006:88;26113:4;26110:1;26103:15;26137:4;26134:1;26127:15;26154:180;26202:77;26199:1;26192:88;26299:4;26296:1;26289:15;26323:4;26320:1;26313:15;26340:180;26388:77;26385:1;26378:88;26485:4;26482:1;26475:15;26509:4;26506:1;26499:15;26526:180;26574:77;26571:1;26564:88;26671:4;26668:1;26661:15;26695:4;26692:1;26685:15;26712:117;26821:1;26818;26811:12;26835:117;26944:1;26941;26934:12;26958:117;27067:1;27064;27057:12;27081:117;27190:1;27187;27180:12;27204:102;27245:6;27296:2;27292:7;27287:2;27280:5;27276:14;27272:28;27262:38;;27204:102;;;:::o;27312:173::-;27452:25;27448:1;27440:6;27436:14;27429:49;27312:173;:::o;27491:225::-;27631:34;27627:1;27619:6;27615:14;27608:58;27700:8;27695:2;27687:6;27683:15;27676:33;27491:225;:::o;27722:177::-;27862:29;27858:1;27850:6;27846:14;27839:53;27722:177;:::o;27905:181::-;28045:33;28041:1;28033:6;28029:14;28022:57;27905:181;:::o;28092:236::-;28232:34;28228:1;28220:6;28216:14;28209:58;28301:19;28296:2;28288:6;28284:15;28277:44;28092:236;:::o;28334:173::-;28474:25;28470:1;28462:6;28458:14;28451:49;28334:173;:::o;28513:155::-;28653:7;28649:1;28641:6;28637:14;28630:31;28513:155;:::o;28674:169::-;28814:21;28810:1;28802:6;28798:14;28791:45;28674:169;:::o;28849:182::-;28989:34;28985:1;28977:6;28973:14;28966:58;28849:182;:::o;29037:234::-;29177:34;29173:1;29165:6;29161:14;29154:58;29246:17;29241:2;29233:6;29229:15;29222:42;29037:234;:::o;29277:178::-;29417:30;29413:1;29405:6;29401:14;29394:54;29277:178;:::o;29461:174::-;29601:26;29597:1;29589:6;29585:14;29578:50;29461:174;:::o;29641:114::-;;:::o;29761:122::-;29834:24;29852:5;29834:24;:::i;:::-;29827:5;29824:35;29814:63;;29873:1;29870;29863:12;29814:63;29761:122;:::o;29889:116::-;29959:21;29974:5;29959:21;:::i;:::-;29952:5;29949:32;29939:60;;29995:1;29992;29985:12;29939:60;29889:116;:::o;30011:120::-;30083:23;30100:5;30083:23;:::i;:::-;30076:5;30073:34;30063:62;;30121:1;30118;30111:12;30063:62;30011:120;:::o;30137:122::-;30210:24;30228:5;30210:24;:::i;:::-;30203:5;30200:35;30190:63;;30249:1;30246;30239:12;30190:63;30137:122;:::o

Swarm Source

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