ETH Price: $2,929.11 (-7.53%)
Gas: 8 Gwei

Token

The Goose NFT (Goose)
 

Overview

Max Total Supply

5,555 Goose

Holders

2,013

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Goose
0x98125e780681a2a0fba485edd88e4b59c4631a7a
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:
TheGooseNFT

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 12 of 14: nft.sol
// THE GOOSE NFT
// https://twitter.com/goosenftxyz
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&    /@@.&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&   @@@@@@ #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& @@@@@@@@@@@@@@@ %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/@.@@@@@@@@/@@@@@@@@@ @ &&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&& @ @((@@@@@@@ @@@ %%%#@   &&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&@.@  @@@@@@@ @@*% %%% @@,&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&#&&&&&&&&&&&&&&&&&&&#@@ @@@@@@@@ @@ %%%%%% @ &&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&& @@@@@#  %@@@@@%%%%%%%% %&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@(((%%%%%%%%% &&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&& @@@@@@@@@@@@@@& %(((((((( &&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& @@@@@@@@@@@@@&&&&& &&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%@@@@@@@@@@@@@@@@@&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& @@@@@@@@@@@@@@@@ &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&% &&&&&&&&&&&&&@ &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*@@@@@@@@@@@@@@@@@@@ &&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@/&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&& @@@@@@@%@@@@@@@@@@@@@@@ &&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&,@@@@@@@@ @@@@ @@@@@@@@@@@@%&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&   /  &&&@@@@@@@@@@@@@@@@@@ &&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&& @%@&&&&@@@@@@@@@@@@@&@ &&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&/  .,. @&&    &&&&&@  &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& ##&&&((&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&   && ((/   &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&%%%%%%%%%%/###/.%% %%%%%%%%&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%%%%%% %%%%%%%%&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "./ERC721A.sol";
import "./Ownable.sol";

contract TheGooseNFT is ERC721A, Ownable {
    using Strings for uint256;
    uint256 public maxSupply = 5555;
    uint256 public publicMintPrice = 0.0069 ether;
    uint256 public freeAmount = 1;
    uint256 public ogFreeAmount = 2;
    uint256 public maxPerWallet = 5;
    uint256 public teamReserve = 100;
    uint256 public teamMinted = 0;
    bool public enabledMint = false;
    bool public enableOgMint = false;
    bool public revealed = false;
    string public baseURI;
    string public unRevealedURI;
    mapping(address => bool) private _OGList;
    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("The Goose NFT", "Goose") {}

    function publicMint(uint256 amount) external payable {
        require(enabledMint, "Minting is not live");
        require(totalSupply() + amount < maxSupply + 1, "No more");
        require(amount < maxPerWallet + 1, "5 max per TX");
        require(
            _numberMinted(msg.sender) + amount < maxPerWallet + 1,
            "5 max per wallet"
        );
        bool isOG = _OGList[msg.sender];
        uint256 freeMintAmount = 0;
        uint256 roleFreeAmount = isOG ? ogFreeAmount : freeAmount;
        uint256 freeMinted = _mintedFreeAmount[msg.sender];
        if (roleFreeAmount > freeMinted) {
            uint256 leftFreeAmount = roleFreeAmount - freeMinted;
            freeMintAmount = leftFreeAmount > amount ? amount : leftFreeAmount;
        }

        _mintedFreeAmount[msg.sender] = freeMinted + freeMintAmount;
        uint256 payAmount = amount - freeMintAmount;

        require(
            msg.value >= payAmount * publicMintPrice,
            "Please send the exact amount."
        );

        _safeMint(msg.sender, amount);
    }

    function ogMint(uint256 amount) external payable {
        require(enableOgMint, "Minting is not live");
        require(_OGList[msg.sender], "Not OG");
        require(totalSupply() + amount < maxSupply + 1, "No more");
        require(amount < maxPerWallet + 1, "5 max per TX");
        require(
            _numberMinted(msg.sender) + amount < maxPerWallet + 1,
            "5 max per wallet"
        );
        bool isOG = _OGList[msg.sender];
        uint256 freeMintAmount = 0;
        uint256 roleFreeAmount = isOG ? ogFreeAmount : freeAmount;
        uint256 freeMinted = _mintedFreeAmount[msg.sender];
        if (roleFreeAmount > freeMinted) {
            uint256 leftFreeAmount = roleFreeAmount - freeMinted;
            freeMintAmount = leftFreeAmount > amount ? amount : leftFreeAmount;
        }

        _mintedFreeAmount[msg.sender] = freeMinted + freeMintAmount;
        uint256 payAmount = amount - freeMintAmount;

        require(
            msg.value >= payAmount * publicMintPrice,
            "Please send the exact amount."
        );

        _safeMint(msg.sender, amount);
    }

    function teamMint(uint256 amount) external onlyOwner {
        require(totalSupply() + amount < maxSupply + 1, "No more");
        require(teamMinted + amount < teamReserve + 1, "No more reserve");
        _safeMint(msg.sender, amount);
    }

    function addOG(address[] calldata addressList) external onlyOwner {
        for (uint256 i = 0; i < addressList.length; i++) {
            _OGList[addressList[i]] = true;
        }
    }

    function isOGFn(address addr) public view virtual returns (bool) {
        return _OGList[addr];
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return
            revealed
                ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json"))
                : unRevealedURI;
    }

    function setUnRevealedURI(string memory uri) public onlyOwner {
        unRevealedURI = uri;
    }

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

    function setPublicPrice(uint256 _newPrice) external onlyOwner {
        publicMintPrice = _newPrice;
    }

    function setMaxPerWallet(uint256 _amount) external onlyOwner {
        maxPerWallet = _amount;
    }

    function flipMint() external onlyOwner {
        enabledMint = !enabledMint;
    }

    function flipOgMint() external onlyOwner {
        enableOgMint = !enableOgMint;
    }

    function flipReveal() external onlyOwner {
        revealed = !revealed;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }
}

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

pragma solidity ^0.8.0;

/**
 * @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

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        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: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 14: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 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;

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

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

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

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

File 6 of 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 7 of 14: IERC165.sol
// SPDX-License-Identifier: MIT

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 8 of 14: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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

    /**
     * @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 10 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 11 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 13 of 14: Ownable.sol
// SPDX-License-Identifier: MIT

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 14 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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addressList","type":"address[]"}],"name":"addOG","outputs":[],"stateMutability":"nonpayable","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":[],"name":"enableOgMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enabledMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipOgMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isOGFn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ogMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUnRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526115b36009556618838370f34000600a556001600b556002600c556005600d556064600e556000600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055503480156200008c57600080fd5b506040518060400160405280600d81526020017f54686520476f6f7365204e4654000000000000000000000000000000000000008152506040518060400160405280600581526020017f476f6f7365000000000000000000000000000000000000000000000000000000815250816002908051906020019062000111929190620001ec565b5080600390805190602001906200012a929190620001ec565b50505060006200013f620001e460201b60201c565b905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000301565b600033905090565b828054620001fa906200029c565b90600052602060002090601f0160209004810192826200021e57600085556200026a565b82601f106200023957805160ff19168380011785556200026a565b828001600101855582156200026a579182015b82811115620002695782518255916020019190600101906200024c565b5b5090506200027991906200027d565b5090565b5b80821115620002985760008160009055506001016200027e565b5090565b60006002820490506001821680620002b557607f821691505b60208210811415620002cc57620002cb620002d2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614b3480620003116000396000f3fe6080604052600436106102675760003560e01c80636352211e11610144578063c6275255116100b6578063dc53fd921161007a578063dc53fd92146108d7578063dd21bb7d14610902578063e268e4d31461091e578063e8b5498d14610947578063e985e9c514610972578063f2fde38b146109af57610267565b8063c627525514610818578063c87b56dd14610841578063d2704d6d1461087e578063d2ed5c5914610895578063d5abeb01146108ac57610267565b80638a98ae7b116101085780638a98ae7b146107085780638da5cb5b1461073357806395d89b411461075e578063a22cb46514610789578063b88d4fde146107b2578063c5b27f51146107db57610267565b80636352211e146106215780636b5648f51461065e5780636c0360eb1461068957806370a08231146106b4578063715018a6146106f157610267565b80632db11544116101dd57806342842e0e116101a157806342842e0e146105115780634287f14a1461053a578063453c2310146105655780634f6ccce71461059057806351830227146105cd57806355f804b3146105f857610267565b80632db11544146104615780632f745c591461047d5780632fbba115146104ba5780633b84d9c6146104e35780633ccfd60b146104fa57610267565b8063081812fc1161022f578063081812fc14610351578063095ea7b31461038e57806318160ddd146103b75780631d44c272146103e257806323b872dd1461040d578063276306ed1461043657610267565b806301aade7b1461026c57806301ffc9a7146102955780630451a9f1146102d2578063046adfe6146102fd57806306fdde0314610326575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613dcc565b6109d8565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190613d72565b610a6e565b6040516102c99190614203565b60405180910390f35b3480156102de57600080fd5b506102e7610bb8565b6040516102f491906143a0565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613d25565b610bbe565b005b34801561033257600080fd5b5061033b610cdf565b604051610348919061421e565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190613e15565b610d71565b604051610385919061419c565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613ce5565b610ded565b005b3480156103c357600080fd5b506103cc610ef8565b6040516103d991906143a0565b60405180910390f35b3480156103ee57600080fd5b506103f7610f06565b6040516104049190614203565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f9190613bcf565b610f19565b005b34801561044257600080fd5b5061044b610f29565b604051610458919061421e565b60405180910390f35b61047b60048036038101906104769190613e15565b610fb7565b005b34801561048957600080fd5b506104a4600480360381019061049f9190613ce5565b6112b2565b6040516104b191906143a0565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc9190613e15565b61148b565b005b3480156104ef57600080fd5b506104f86115d3565b005b34801561050657600080fd5b5061050f61167b565b005b34801561051d57600080fd5b5061053860048036038101906105339190613bcf565b6117a6565b005b34801561054657600080fd5b5061054f6117c6565b60405161055c91906143a0565b60405180910390f35b34801561057157600080fd5b5061057a6117cc565b60405161058791906143a0565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b29190613e15565b6117d2565b6040516105c491906143a0565b60405180910390f35b3480156105d957600080fd5b506105e2611917565b6040516105ef9190614203565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190613dcc565b61192a565b005b34801561062d57600080fd5b5061064860048036038101906106439190613e15565b6119c0565b604051610655919061419c565b60405180910390f35b34801561066a57600080fd5b506106736119d6565b6040516106809190614203565b60405180910390f35b34801561069557600080fd5b5061069e6119e9565b6040516106ab919061421e565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190613b62565b611a77565b6040516106e891906143a0565b60405180910390f35b3480156106fd57600080fd5b50610706611b47565b005b34801561071457600080fd5b5061071d611c84565b60405161072a91906143a0565b60405180910390f35b34801561073f57600080fd5b50610748611c8a565b604051610755919061419c565b60405180910390f35b34801561076a57600080fd5b50610773611cb4565b604051610780919061421e565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190613ca5565b611d46565b005b3480156107be57600080fd5b506107d960048036038101906107d49190613c22565b611ebe565b005b3480156107e757600080fd5b5061080260048036038101906107fd9190613b62565b611f11565b60405161080f9190614203565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a9190613e15565b611f67565b005b34801561084d57600080fd5b5061086860048036038101906108639190613e15565b611fed565b604051610875919061421e565b60405180910390f35b34801561088a57600080fd5b5061089361210e565b005b3480156108a157600080fd5b506108aa6121b6565b005b3480156108b857600080fd5b506108c161225e565b6040516108ce91906143a0565b60405180910390f35b3480156108e357600080fd5b506108ec612264565b6040516108f991906143a0565b60405180910390f35b61091c60048036038101906109179190613e15565b61226a565b005b34801561092a57600080fd5b5061094560048036038101906109409190613e15565b6125f1565b005b34801561095357600080fd5b5061095c612677565b60405161096991906143a0565b60405180910390f35b34801561097e57600080fd5b5061099960048036038101906109949190613b8f565b61267d565b6040516109a69190614203565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d19190613b62565b612711565b005b6109e06128bd565b73ffffffffffffffffffffffffffffffffffffffff166109fe611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b906142e0565b60405180910390fd5b8060129080519060200190610a6a9291906138dd565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bb15750610bb0826128c5565b5b9050919050565b600b5481565b610bc66128bd565b73ffffffffffffffffffffffffffffffffffffffff16610be4611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c31906142e0565b60405180910390fd5b60005b82829050811015610cda57600160136000858585818110610c6157610c606147da565b5b9050602002016020810190610c769190613b62565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610cd2906146d3565b915050610c3d565b505050565b606060028054610cee90614670565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a90614670565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b5050505050905090565b6000610d7c8261292f565b610db2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610df8826119c0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e60576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e7f6128bd565b73ffffffffffffffffffffffffffffffffffffffff1614158015610eb15750610eaf81610eaa6128bd565b61267d565b155b15610ee8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ef3838383612969565b505050565b600060015460005403905090565b601060019054906101000a900460ff1681565b610f24838383612a1b565b505050565b60128054610f3690614670565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6290614670565b8015610faf5780601f10610f8457610100808354040283529160200191610faf565b820191906000526020600020905b815481529060010190602001808311610f9257829003601f168201915b505050505081565b601060009054906101000a900460ff16611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd906142a0565b60405180910390fd5b600160095461101591906144a5565b8161101e610ef8565b61102891906144a5565b10611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90614240565b60405180910390fd5b6001600d5461107791906144a5565b81106110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90614340565b60405180910390fd5b6001600d546110c791906144a5565b816110d133612f0c565b6110db91906144a5565b1061111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290614280565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000808261117c57600b54611180565b600c545b90506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808211156111f157600081836111dc9190614586565b90508581116111eb57806111ed565b855b9350505b82816111fd91906144a5565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000838661124e9190614586565b9050600a548161125e919061452c565b3410156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790614360565b60405180910390fd5b6112aa3387612fdc565b505050505050565b60006112bd83611a77565b82106112f5576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b8381101561147f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156113de5750611472565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461141e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114705786841415611467578195505050505050611485565b83806001019450505b505b8080600101915050611301565b50600080fd5b92915050565b6114936128bd565b73ffffffffffffffffffffffffffffffffffffffff166114b1611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe906142e0565b60405180910390fd5b600160095461151691906144a5565b8161151f610ef8565b61152991906144a5565b10611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090614240565b60405180910390fd5b6001600e5461157891906144a5565b81600f5461158691906144a5565b106115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90614320565b60405180910390fd5b6115d03382612fdc565b50565b6115db6128bd565b73ffffffffffffffffffffffffffffffffffffffff166115f9611c8a565b73ffffffffffffffffffffffffffffffffffffffff161461164f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611646906142e0565b60405180910390fd5b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b6116836128bd565b73ffffffffffffffffffffffffffffffffffffffff166116a1611c8a565b73ffffffffffffffffffffffffffffffffffffffff16146116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee906142e0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161171d90614187565b60006040518083038185875af1925050503d806000811461175a576040519150601f19603f3d011682016040523d82523d6000602084013e61175f565b606091505b50509050806117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614380565b60405180910390fd5b50565b6117c183838360405180602001604052806000815250611ebe565b505050565b600e5481565b600d5481565b60008060005490506000805b828110156118df576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516118d157858314156118c85781945050505050611912565b82806001019350505b5080806001019150506117de565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b601060029054906101000a900460ff1681565b6119326128bd565b73ffffffffffffffffffffffffffffffffffffffff16611950611c8a565b73ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d906142e0565b60405180910390fd5b80601190805190602001906119bc9291906138dd565b5050565b60006119cb82612ffa565b600001519050919050565b601060009054906101000a900460ff1681565b601180546119f690614670565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2290614670565b8015611a6f5780601f10611a4457610100808354040283529160200191611a6f565b820191906000526020600020905b815481529060010190602001808311611a5257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611adf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611b4f6128bd565b73ffffffffffffffffffffffffffffffffffffffff16611b6d611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba906142e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611cc390614670565b80601f0160208091040260200160405190810160405280929190818152602001828054611cef90614670565b8015611d3c5780601f10611d1157610100808354040283529160200191611d3c565b820191906000526020600020905b815481529060010190602001808311611d1f57829003601f168201915b5050505050905090565b611d4e6128bd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611dc06128bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e6d6128bd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eb29190614203565b60405180910390a35050565b611ec9848484612a1b565b611ed584848484613276565b611f0b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611f6f6128bd565b73ffffffffffffffffffffffffffffffffffffffff16611f8d611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fda906142e0565b60405180910390fd5b80600a8190555050565b6060611ff88261292f565b612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e90614300565b60405180910390fd5b601060029054906101000a900460ff166120db576012805461205890614670565b80601f016020809104026020016040519081016040528092919081815260200182805461208490614670565b80156120d15780601f106120a6576101008083540402835291602001916120d1565b820191906000526020600020905b8154815290600101906020018083116120b457829003601f168201915b5050505050612107565b60116120e683613404565b6040516020016120f7929190614158565b6040516020818303038152906040525b9050919050565b6121166128bd565b73ffffffffffffffffffffffffffffffffffffffff16612134611c8a565b73ffffffffffffffffffffffffffffffffffffffff161461218a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612181906142e0565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6121be6128bd565b73ffffffffffffffffffffffffffffffffffffffff166121dc611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614612232576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612229906142e0565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b60095481565b600a5481565b601060019054906101000a900460ff166122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b0906142a0565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233c906142c0565b60405180910390fd5b600160095461235491906144a5565b8161235d610ef8565b61236791906144a5565b106123a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239e90614240565b60405180910390fd5b6001600d546123b691906144a5565b81106123f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ee90614340565b60405180910390fd5b6001600d5461240691906144a5565b8161241033612f0c565b61241a91906144a5565b1061245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245190614280565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600080826124bb57600b546124bf565b600c545b90506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080821115612530576000818361251b9190614586565b905085811161252a578061252c565b855b9350505b828161253c91906144a5565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000838661258d9190614586565b9050600a548161259d919061452c565b3410156125df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d690614360565b60405180910390fd5b6125e93387612fdc565b505050505050565b6125f96128bd565b73ffffffffffffffffffffffffffffffffffffffff16612617611c8a565b73ffffffffffffffffffffffffffffffffffffffff161461266d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612664906142e0565b60405180910390fd5b80600d8190555050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127196128bd565b73ffffffffffffffffffffffffffffffffffffffff16612737611c8a565b73ffffffffffffffffffffffffffffffffffffffff161461278d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612784906142e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f490614260565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015612962575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612a2682612ffa565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a4d6128bd565b73ffffffffffffffffffffffffffffffffffffffff161480612a805750612a7f8260000151612a7a6128bd565b61267d565b5b80612ac55750612a8e6128bd565b73ffffffffffffffffffffffffffffffffffffffff16612aad84610d71565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612afe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b67576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bce576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bdb8585856001613565565b612beb6000848460000151612969565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e9c57600054811015612e9b5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f05858585600161356b565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f74576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b612ff6828260405180602001604052806000815250613571565b5050565b613002613963565b600082905060005481101561323f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161323d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613121578092505050613271565b5b60011561323c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613237578092505050613271565b613122565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006132978473ffffffffffffffffffffffffffffffffffffffff16613583565b156133f7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132c06128bd565b8786866040518563ffffffff1660e01b81526004016132e294939291906141b7565b602060405180830381600087803b1580156132fc57600080fd5b505af192505050801561332d57506040513d601f19601f8201168201806040525081019061332a9190613d9f565b60015b6133a7573d806000811461335d576040519150601f19603f3d011682016040523d82523d6000602084013e613362565b606091505b5060008151141561339f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133fc565b600190505b949350505050565b6060600082141561344c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613560565b600082905060005b6000821461347e578080613467906146d3565b915050600a8261347791906144fb565b9150613454565b60008167ffffffffffffffff81111561349a57613499614809565b5b6040519080825280601f01601f1916602001820160405280156134cc5781602001600182028036833780820191505090505b5090505b60008514613559576001826134e59190614586565b9150600a856134f4919061471c565b603061350091906144a5565b60f81b818381518110613516576135156147da565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561355291906144fb565b94506134d0565b8093505050505b919050565b50505050565b50505050565b61357e83838360016135a6565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613613576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561364e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61365b6000868387613565565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156138c057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561387457506138726000888488613276565b155b156138ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506137f9565b5080600081905550506138d6600086838761356b565b5050505050565b8280546138e990614670565b90600052602060002090601f01602090048101928261390b5760008555613952565b82601f1061392457805160ff1916838001178555613952565b82800160010185558215613952579182015b82811115613951578251825591602001919060010190613936565b5b50905061395f91906139a6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156139bf5760008160009055506001016139a7565b5090565b60006139d66139d1846143e0565b6143bb565b9050828152602081018484840111156139f2576139f1614847565b5b6139fd84828561462e565b509392505050565b6000613a18613a1384614411565b6143bb565b905082815260208101848484011115613a3457613a33614847565b5b613a3f84828561462e565b509392505050565b600081359050613a5681614aa2565b92915050565b60008083601f840112613a7257613a7161483d565b5b8235905067ffffffffffffffff811115613a8f57613a8e614838565b5b602083019150836020820283011115613aab57613aaa614842565b5b9250929050565b600081359050613ac181614ab9565b92915050565b600081359050613ad681614ad0565b92915050565b600081519050613aeb81614ad0565b92915050565b600082601f830112613b0657613b0561483d565b5b8135613b168482602086016139c3565b91505092915050565b600082601f830112613b3457613b3361483d565b5b8135613b44848260208601613a05565b91505092915050565b600081359050613b5c81614ae7565b92915050565b600060208284031215613b7857613b77614851565b5b6000613b8684828501613a47565b91505092915050565b60008060408385031215613ba657613ba5614851565b5b6000613bb485828601613a47565b9250506020613bc585828601613a47565b9150509250929050565b600080600060608486031215613be857613be7614851565b5b6000613bf686828701613a47565b9350506020613c0786828701613a47565b9250506040613c1886828701613b4d565b9150509250925092565b60008060008060808587031215613c3c57613c3b614851565b5b6000613c4a87828801613a47565b9450506020613c5b87828801613a47565b9350506040613c6c87828801613b4d565b925050606085013567ffffffffffffffff811115613c8d57613c8c61484c565b5b613c9987828801613af1565b91505092959194509250565b60008060408385031215613cbc57613cbb614851565b5b6000613cca85828601613a47565b9250506020613cdb85828601613ab2565b9150509250929050565b60008060408385031215613cfc57613cfb614851565b5b6000613d0a85828601613a47565b9250506020613d1b85828601613b4d565b9150509250929050565b60008060208385031215613d3c57613d3b614851565b5b600083013567ffffffffffffffff811115613d5a57613d5961484c565b5b613d6685828601613a5c565b92509250509250929050565b600060208284031215613d8857613d87614851565b5b6000613d9684828501613ac7565b91505092915050565b600060208284031215613db557613db4614851565b5b6000613dc384828501613adc565b91505092915050565b600060208284031215613de257613de1614851565b5b600082013567ffffffffffffffff811115613e0057613dff61484c565b5b613e0c84828501613b1f565b91505092915050565b600060208284031215613e2b57613e2a614851565b5b6000613e3984828501613b4d565b91505092915050565b613e4b816145ba565b82525050565b613e5a816145cc565b82525050565b6000613e6b82614457565b613e75818561446d565b9350613e8581856020860161463d565b613e8e81614856565b840191505092915050565b6000613ea482614462565b613eae8185614489565b9350613ebe81856020860161463d565b613ec781614856565b840191505092915050565b6000613edd82614462565b613ee7818561449a565b9350613ef781856020860161463d565b80840191505092915050565b60008154613f1081614670565b613f1a818661449a565b94506001821660008114613f355760018114613f4657613f79565b60ff19831686528186019350613f79565b613f4f85614442565b60005b83811015613f7157815481890152600182019150602081019050613f52565b838801955050505b50505092915050565b6000613f8f600783614489565b9150613f9a82614867565b602082019050919050565b6000613fb2602683614489565b9150613fbd82614890565b604082019050919050565b6000613fd5601083614489565b9150613fe0826148df565b602082019050919050565b6000613ff8601383614489565b915061400382614908565b602082019050919050565b600061401b600683614489565b915061402682614931565b602082019050919050565b600061403e60058361449a565b91506140498261495a565b600582019050919050565b6000614061602083614489565b915061406c82614983565b602082019050919050565b6000614084602f83614489565b915061408f826149ac565b604082019050919050565b60006140a7600f83614489565b91506140b2826149fb565b602082019050919050565b60006140ca600c83614489565b91506140d582614a24565b602082019050919050565b60006140ed601d83614489565b91506140f882614a4d565b602082019050919050565b600061411060008361447e565b915061411b82614a76565b600082019050919050565b6000614133601083614489565b915061413e82614a79565b602082019050919050565b61415281614624565b82525050565b60006141648285613f03565b91506141708284613ed2565b915061417b82614031565b91508190509392505050565b600061419282614103565b9150819050919050565b60006020820190506141b16000830184613e42565b92915050565b60006080820190506141cc6000830187613e42565b6141d96020830186613e42565b6141e66040830185614149565b81810360608301526141f88184613e60565b905095945050505050565b60006020820190506142186000830184613e51565b92915050565b600060208201905081810360008301526142388184613e99565b905092915050565b6000602082019050818103600083015261425981613f82565b9050919050565b6000602082019050818103600083015261427981613fa5565b9050919050565b6000602082019050818103600083015261429981613fc8565b9050919050565b600060208201905081810360008301526142b981613feb565b9050919050565b600060208201905081810360008301526142d98161400e565b9050919050565b600060208201905081810360008301526142f981614054565b9050919050565b6000602082019050818103600083015261431981614077565b9050919050565b600060208201905081810360008301526143398161409a565b9050919050565b60006020820190508181036000830152614359816140bd565b9050919050565b60006020820190508181036000830152614379816140e0565b9050919050565b6000602082019050818103600083015261439981614126565b9050919050565b60006020820190506143b56000830184614149565b92915050565b60006143c56143d6565b90506143d182826146a2565b919050565b6000604051905090565b600067ffffffffffffffff8211156143fb576143fa614809565b5b61440482614856565b9050602081019050919050565b600067ffffffffffffffff82111561442c5761442b614809565b5b61443582614856565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144b082614624565b91506144bb83614624565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144f0576144ef61474d565b5b828201905092915050565b600061450682614624565b915061451183614624565b9250826145215761452061477c565b5b828204905092915050565b600061453782614624565b915061454283614624565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561457b5761457a61474d565b5b828202905092915050565b600061459182614624565b915061459c83614624565b9250828210156145af576145ae61474d565b5b828203905092915050565b60006145c582614604565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561465b578082015181840152602081019050614640565b8381111561466a576000848401525b50505050565b6000600282049050600182168061468857607f821691505b6020821081141561469c5761469b6147ab565b5b50919050565b6146ab82614856565b810181811067ffffffffffffffff821117156146ca576146c9614809565b5b80604052505050565b60006146de82614624565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147115761471061474d565b5b600182019050919050565b600061472782614624565b915061473283614624565b9250826147425761474161477c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f35206d6178207065722077616c6c657400000000000000000000000000000000600082015250565b7f4d696e74696e67206973206e6f74206c69766500000000000000000000000000600082015250565b7f4e6f74204f470000000000000000000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f206d6f726520726573657276650000000000000000000000000000000000600082015250565b7f35206d6178207065722054580000000000000000000000000000000000000000600082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b614aab816145ba565b8114614ab657600080fd5b50565b614ac2816145cc565b8114614acd57600080fd5b50565b614ad9816145d8565b8114614ae457600080fd5b50565b614af081614624565b8114614afb57600080fd5b5056fea26469706673582212204701ea8d4c9a1c4cc463925d378b4095f886ab17b82281b6b5128330d2361ab864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636352211e11610144578063c6275255116100b6578063dc53fd921161007a578063dc53fd92146108d7578063dd21bb7d14610902578063e268e4d31461091e578063e8b5498d14610947578063e985e9c514610972578063f2fde38b146109af57610267565b8063c627525514610818578063c87b56dd14610841578063d2704d6d1461087e578063d2ed5c5914610895578063d5abeb01146108ac57610267565b80638a98ae7b116101085780638a98ae7b146107085780638da5cb5b1461073357806395d89b411461075e578063a22cb46514610789578063b88d4fde146107b2578063c5b27f51146107db57610267565b80636352211e146106215780636b5648f51461065e5780636c0360eb1461068957806370a08231146106b4578063715018a6146106f157610267565b80632db11544116101dd57806342842e0e116101a157806342842e0e146105115780634287f14a1461053a578063453c2310146105655780634f6ccce71461059057806351830227146105cd57806355f804b3146105f857610267565b80632db11544146104615780632f745c591461047d5780632fbba115146104ba5780633b84d9c6146104e35780633ccfd60b146104fa57610267565b8063081812fc1161022f578063081812fc14610351578063095ea7b31461038e57806318160ddd146103b75780631d44c272146103e257806323b872dd1461040d578063276306ed1461043657610267565b806301aade7b1461026c57806301ffc9a7146102955780630451a9f1146102d2578063046adfe6146102fd57806306fdde0314610326575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613dcc565b6109d8565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190613d72565b610a6e565b6040516102c99190614203565b60405180910390f35b3480156102de57600080fd5b506102e7610bb8565b6040516102f491906143a0565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613d25565b610bbe565b005b34801561033257600080fd5b5061033b610cdf565b604051610348919061421e565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190613e15565b610d71565b604051610385919061419c565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613ce5565b610ded565b005b3480156103c357600080fd5b506103cc610ef8565b6040516103d991906143a0565b60405180910390f35b3480156103ee57600080fd5b506103f7610f06565b6040516104049190614203565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f9190613bcf565b610f19565b005b34801561044257600080fd5b5061044b610f29565b604051610458919061421e565b60405180910390f35b61047b60048036038101906104769190613e15565b610fb7565b005b34801561048957600080fd5b506104a4600480360381019061049f9190613ce5565b6112b2565b6040516104b191906143a0565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc9190613e15565b61148b565b005b3480156104ef57600080fd5b506104f86115d3565b005b34801561050657600080fd5b5061050f61167b565b005b34801561051d57600080fd5b5061053860048036038101906105339190613bcf565b6117a6565b005b34801561054657600080fd5b5061054f6117c6565b60405161055c91906143a0565b60405180910390f35b34801561057157600080fd5b5061057a6117cc565b60405161058791906143a0565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b29190613e15565b6117d2565b6040516105c491906143a0565b60405180910390f35b3480156105d957600080fd5b506105e2611917565b6040516105ef9190614203565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190613dcc565b61192a565b005b34801561062d57600080fd5b5061064860048036038101906106439190613e15565b6119c0565b604051610655919061419c565b60405180910390f35b34801561066a57600080fd5b506106736119d6565b6040516106809190614203565b60405180910390f35b34801561069557600080fd5b5061069e6119e9565b6040516106ab919061421e565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190613b62565b611a77565b6040516106e891906143a0565b60405180910390f35b3480156106fd57600080fd5b50610706611b47565b005b34801561071457600080fd5b5061071d611c84565b60405161072a91906143a0565b60405180910390f35b34801561073f57600080fd5b50610748611c8a565b604051610755919061419c565b60405180910390f35b34801561076a57600080fd5b50610773611cb4565b604051610780919061421e565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190613ca5565b611d46565b005b3480156107be57600080fd5b506107d960048036038101906107d49190613c22565b611ebe565b005b3480156107e757600080fd5b5061080260048036038101906107fd9190613b62565b611f11565b60405161080f9190614203565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a9190613e15565b611f67565b005b34801561084d57600080fd5b5061086860048036038101906108639190613e15565b611fed565b604051610875919061421e565b60405180910390f35b34801561088a57600080fd5b5061089361210e565b005b3480156108a157600080fd5b506108aa6121b6565b005b3480156108b857600080fd5b506108c161225e565b6040516108ce91906143a0565b60405180910390f35b3480156108e357600080fd5b506108ec612264565b6040516108f991906143a0565b60405180910390f35b61091c60048036038101906109179190613e15565b61226a565b005b34801561092a57600080fd5b5061094560048036038101906109409190613e15565b6125f1565b005b34801561095357600080fd5b5061095c612677565b60405161096991906143a0565b60405180910390f35b34801561097e57600080fd5b5061099960048036038101906109949190613b8f565b61267d565b6040516109a69190614203565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d19190613b62565b612711565b005b6109e06128bd565b73ffffffffffffffffffffffffffffffffffffffff166109fe611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b906142e0565b60405180910390fd5b8060129080519060200190610a6a9291906138dd565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bb15750610bb0826128c5565b5b9050919050565b600b5481565b610bc66128bd565b73ffffffffffffffffffffffffffffffffffffffff16610be4611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c31906142e0565b60405180910390fd5b60005b82829050811015610cda57600160136000858585818110610c6157610c606147da565b5b9050602002016020810190610c769190613b62565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610cd2906146d3565b915050610c3d565b505050565b606060028054610cee90614670565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a90614670565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b5050505050905090565b6000610d7c8261292f565b610db2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610df8826119c0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e60576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e7f6128bd565b73ffffffffffffffffffffffffffffffffffffffff1614158015610eb15750610eaf81610eaa6128bd565b61267d565b155b15610ee8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ef3838383612969565b505050565b600060015460005403905090565b601060019054906101000a900460ff1681565b610f24838383612a1b565b505050565b60128054610f3690614670565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6290614670565b8015610faf5780601f10610f8457610100808354040283529160200191610faf565b820191906000526020600020905b815481529060010190602001808311610f9257829003601f168201915b505050505081565b601060009054906101000a900460ff16611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd906142a0565b60405180910390fd5b600160095461101591906144a5565b8161101e610ef8565b61102891906144a5565b10611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90614240565b60405180910390fd5b6001600d5461107791906144a5565b81106110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90614340565b60405180910390fd5b6001600d546110c791906144a5565b816110d133612f0c565b6110db91906144a5565b1061111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290614280565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000808261117c57600b54611180565b600c545b90506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808211156111f157600081836111dc9190614586565b90508581116111eb57806111ed565b855b9350505b82816111fd91906144a5565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000838661124e9190614586565b9050600a548161125e919061452c565b3410156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790614360565b60405180910390fd5b6112aa3387612fdc565b505050505050565b60006112bd83611a77565b82106112f5576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b8381101561147f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156113de5750611472565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461141e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114705786841415611467578195505050505050611485565b83806001019450505b505b8080600101915050611301565b50600080fd5b92915050565b6114936128bd565b73ffffffffffffffffffffffffffffffffffffffff166114b1611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe906142e0565b60405180910390fd5b600160095461151691906144a5565b8161151f610ef8565b61152991906144a5565b10611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090614240565b60405180910390fd5b6001600e5461157891906144a5565b81600f5461158691906144a5565b106115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90614320565b60405180910390fd5b6115d03382612fdc565b50565b6115db6128bd565b73ffffffffffffffffffffffffffffffffffffffff166115f9611c8a565b73ffffffffffffffffffffffffffffffffffffffff161461164f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611646906142e0565b60405180910390fd5b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b6116836128bd565b73ffffffffffffffffffffffffffffffffffffffff166116a1611c8a565b73ffffffffffffffffffffffffffffffffffffffff16146116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee906142e0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161171d90614187565b60006040518083038185875af1925050503d806000811461175a576040519150601f19603f3d011682016040523d82523d6000602084013e61175f565b606091505b50509050806117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614380565b60405180910390fd5b50565b6117c183838360405180602001604052806000815250611ebe565b505050565b600e5481565b600d5481565b60008060005490506000805b828110156118df576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516118d157858314156118c85781945050505050611912565b82806001019350505b5080806001019150506117de565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b601060029054906101000a900460ff1681565b6119326128bd565b73ffffffffffffffffffffffffffffffffffffffff16611950611c8a565b73ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d906142e0565b60405180910390fd5b80601190805190602001906119bc9291906138dd565b5050565b60006119cb82612ffa565b600001519050919050565b601060009054906101000a900460ff1681565b601180546119f690614670565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2290614670565b8015611a6f5780601f10611a4457610100808354040283529160200191611a6f565b820191906000526020600020905b815481529060010190602001808311611a5257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611adf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611b4f6128bd565b73ffffffffffffffffffffffffffffffffffffffff16611b6d611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba906142e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611cc390614670565b80601f0160208091040260200160405190810160405280929190818152602001828054611cef90614670565b8015611d3c5780601f10611d1157610100808354040283529160200191611d3c565b820191906000526020600020905b815481529060010190602001808311611d1f57829003601f168201915b5050505050905090565b611d4e6128bd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611dc06128bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e6d6128bd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eb29190614203565b60405180910390a35050565b611ec9848484612a1b565b611ed584848484613276565b611f0b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611f6f6128bd565b73ffffffffffffffffffffffffffffffffffffffff16611f8d611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fda906142e0565b60405180910390fd5b80600a8190555050565b6060611ff88261292f565b612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e90614300565b60405180910390fd5b601060029054906101000a900460ff166120db576012805461205890614670565b80601f016020809104026020016040519081016040528092919081815260200182805461208490614670565b80156120d15780601f106120a6576101008083540402835291602001916120d1565b820191906000526020600020905b8154815290600101906020018083116120b457829003601f168201915b5050505050612107565b60116120e683613404565b6040516020016120f7929190614158565b6040516020818303038152906040525b9050919050565b6121166128bd565b73ffffffffffffffffffffffffffffffffffffffff16612134611c8a565b73ffffffffffffffffffffffffffffffffffffffff161461218a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612181906142e0565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6121be6128bd565b73ffffffffffffffffffffffffffffffffffffffff166121dc611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614612232576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612229906142e0565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b60095481565b600a5481565b601060019054906101000a900460ff166122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b0906142a0565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233c906142c0565b60405180910390fd5b600160095461235491906144a5565b8161235d610ef8565b61236791906144a5565b106123a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239e90614240565b60405180910390fd5b6001600d546123b691906144a5565b81106123f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ee90614340565b60405180910390fd5b6001600d5461240691906144a5565b8161241033612f0c565b61241a91906144a5565b1061245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245190614280565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600080826124bb57600b546124bf565b600c545b90506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080821115612530576000818361251b9190614586565b905085811161252a578061252c565b855b9350505b828161253c91906144a5565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000838661258d9190614586565b9050600a548161259d919061452c565b3410156125df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d690614360565b60405180910390fd5b6125e93387612fdc565b505050505050565b6125f96128bd565b73ffffffffffffffffffffffffffffffffffffffff16612617611c8a565b73ffffffffffffffffffffffffffffffffffffffff161461266d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612664906142e0565b60405180910390fd5b80600d8190555050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127196128bd565b73ffffffffffffffffffffffffffffffffffffffff16612737611c8a565b73ffffffffffffffffffffffffffffffffffffffff161461278d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612784906142e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f490614260565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015612962575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612a2682612ffa565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a4d6128bd565b73ffffffffffffffffffffffffffffffffffffffff161480612a805750612a7f8260000151612a7a6128bd565b61267d565b5b80612ac55750612a8e6128bd565b73ffffffffffffffffffffffffffffffffffffffff16612aad84610d71565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612afe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b67576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bce576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bdb8585856001613565565b612beb6000848460000151612969565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e9c57600054811015612e9b5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f05858585600161356b565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f74576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b612ff6828260405180602001604052806000815250613571565b5050565b613002613963565b600082905060005481101561323f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161323d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613121578092505050613271565b5b60011561323c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613237578092505050613271565b613122565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006132978473ffffffffffffffffffffffffffffffffffffffff16613583565b156133f7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132c06128bd565b8786866040518563ffffffff1660e01b81526004016132e294939291906141b7565b602060405180830381600087803b1580156132fc57600080fd5b505af192505050801561332d57506040513d601f19601f8201168201806040525081019061332a9190613d9f565b60015b6133a7573d806000811461335d576040519150601f19603f3d011682016040523d82523d6000602084013e613362565b606091505b5060008151141561339f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133fc565b600190505b949350505050565b6060600082141561344c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613560565b600082905060005b6000821461347e578080613467906146d3565b915050600a8261347791906144fb565b9150613454565b60008167ffffffffffffffff81111561349a57613499614809565b5b6040519080825280601f01601f1916602001820160405280156134cc5781602001600182028036833780820191505090505b5090505b60008514613559576001826134e59190614586565b9150600a856134f4919061471c565b603061350091906144a5565b60f81b818381518110613516576135156147da565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561355291906144fb565b94506134d0565b8093505050505b919050565b50505050565b50505050565b61357e83838360016135a6565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613613576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561364e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61365b6000868387613565565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156138c057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561387457506138726000888488613276565b155b156138ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506137f9565b5080600081905550506138d6600086838761356b565b5050505050565b8280546138e990614670565b90600052602060002090601f01602090048101928261390b5760008555613952565b82601f1061392457805160ff1916838001178555613952565b82800160010185558215613952579182015b82811115613951578251825591602001919060010190613936565b5b50905061395f91906139a6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156139bf5760008160009055506001016139a7565b5090565b60006139d66139d1846143e0565b6143bb565b9050828152602081018484840111156139f2576139f1614847565b5b6139fd84828561462e565b509392505050565b6000613a18613a1384614411565b6143bb565b905082815260208101848484011115613a3457613a33614847565b5b613a3f84828561462e565b509392505050565b600081359050613a5681614aa2565b92915050565b60008083601f840112613a7257613a7161483d565b5b8235905067ffffffffffffffff811115613a8f57613a8e614838565b5b602083019150836020820283011115613aab57613aaa614842565b5b9250929050565b600081359050613ac181614ab9565b92915050565b600081359050613ad681614ad0565b92915050565b600081519050613aeb81614ad0565b92915050565b600082601f830112613b0657613b0561483d565b5b8135613b168482602086016139c3565b91505092915050565b600082601f830112613b3457613b3361483d565b5b8135613b44848260208601613a05565b91505092915050565b600081359050613b5c81614ae7565b92915050565b600060208284031215613b7857613b77614851565b5b6000613b8684828501613a47565b91505092915050565b60008060408385031215613ba657613ba5614851565b5b6000613bb485828601613a47565b9250506020613bc585828601613a47565b9150509250929050565b600080600060608486031215613be857613be7614851565b5b6000613bf686828701613a47565b9350506020613c0786828701613a47565b9250506040613c1886828701613b4d565b9150509250925092565b60008060008060808587031215613c3c57613c3b614851565b5b6000613c4a87828801613a47565b9450506020613c5b87828801613a47565b9350506040613c6c87828801613b4d565b925050606085013567ffffffffffffffff811115613c8d57613c8c61484c565b5b613c9987828801613af1565b91505092959194509250565b60008060408385031215613cbc57613cbb614851565b5b6000613cca85828601613a47565b9250506020613cdb85828601613ab2565b9150509250929050565b60008060408385031215613cfc57613cfb614851565b5b6000613d0a85828601613a47565b9250506020613d1b85828601613b4d565b9150509250929050565b60008060208385031215613d3c57613d3b614851565b5b600083013567ffffffffffffffff811115613d5a57613d5961484c565b5b613d6685828601613a5c565b92509250509250929050565b600060208284031215613d8857613d87614851565b5b6000613d9684828501613ac7565b91505092915050565b600060208284031215613db557613db4614851565b5b6000613dc384828501613adc565b91505092915050565b600060208284031215613de257613de1614851565b5b600082013567ffffffffffffffff811115613e0057613dff61484c565b5b613e0c84828501613b1f565b91505092915050565b600060208284031215613e2b57613e2a614851565b5b6000613e3984828501613b4d565b91505092915050565b613e4b816145ba565b82525050565b613e5a816145cc565b82525050565b6000613e6b82614457565b613e75818561446d565b9350613e8581856020860161463d565b613e8e81614856565b840191505092915050565b6000613ea482614462565b613eae8185614489565b9350613ebe81856020860161463d565b613ec781614856565b840191505092915050565b6000613edd82614462565b613ee7818561449a565b9350613ef781856020860161463d565b80840191505092915050565b60008154613f1081614670565b613f1a818661449a565b94506001821660008114613f355760018114613f4657613f79565b60ff19831686528186019350613f79565b613f4f85614442565b60005b83811015613f7157815481890152600182019150602081019050613f52565b838801955050505b50505092915050565b6000613f8f600783614489565b9150613f9a82614867565b602082019050919050565b6000613fb2602683614489565b9150613fbd82614890565b604082019050919050565b6000613fd5601083614489565b9150613fe0826148df565b602082019050919050565b6000613ff8601383614489565b915061400382614908565b602082019050919050565b600061401b600683614489565b915061402682614931565b602082019050919050565b600061403e60058361449a565b91506140498261495a565b600582019050919050565b6000614061602083614489565b915061406c82614983565b602082019050919050565b6000614084602f83614489565b915061408f826149ac565b604082019050919050565b60006140a7600f83614489565b91506140b2826149fb565b602082019050919050565b60006140ca600c83614489565b91506140d582614a24565b602082019050919050565b60006140ed601d83614489565b91506140f882614a4d565b602082019050919050565b600061411060008361447e565b915061411b82614a76565b600082019050919050565b6000614133601083614489565b915061413e82614a79565b602082019050919050565b61415281614624565b82525050565b60006141648285613f03565b91506141708284613ed2565b915061417b82614031565b91508190509392505050565b600061419282614103565b9150819050919050565b60006020820190506141b16000830184613e42565b92915050565b60006080820190506141cc6000830187613e42565b6141d96020830186613e42565b6141e66040830185614149565b81810360608301526141f88184613e60565b905095945050505050565b60006020820190506142186000830184613e51565b92915050565b600060208201905081810360008301526142388184613e99565b905092915050565b6000602082019050818103600083015261425981613f82565b9050919050565b6000602082019050818103600083015261427981613fa5565b9050919050565b6000602082019050818103600083015261429981613fc8565b9050919050565b600060208201905081810360008301526142b981613feb565b9050919050565b600060208201905081810360008301526142d98161400e565b9050919050565b600060208201905081810360008301526142f981614054565b9050919050565b6000602082019050818103600083015261431981614077565b9050919050565b600060208201905081810360008301526143398161409a565b9050919050565b60006020820190508181036000830152614359816140bd565b9050919050565b60006020820190508181036000830152614379816140e0565b9050919050565b6000602082019050818103600083015261439981614126565b9050919050565b60006020820190506143b56000830184614149565b92915050565b60006143c56143d6565b90506143d182826146a2565b919050565b6000604051905090565b600067ffffffffffffffff8211156143fb576143fa614809565b5b61440482614856565b9050602081019050919050565b600067ffffffffffffffff82111561442c5761442b614809565b5b61443582614856565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144b082614624565b91506144bb83614624565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144f0576144ef61474d565b5b828201905092915050565b600061450682614624565b915061451183614624565b9250826145215761452061477c565b5b828204905092915050565b600061453782614624565b915061454283614624565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561457b5761457a61474d565b5b828202905092915050565b600061459182614624565b915061459c83614624565b9250828210156145af576145ae61474d565b5b828203905092915050565b60006145c582614604565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561465b578082015181840152602081019050614640565b8381111561466a576000848401525b50505050565b6000600282049050600182168061468857607f821691505b6020821081141561469c5761469b6147ab565b5b50919050565b6146ab82614856565b810181811067ffffffffffffffff821117156146ca576146c9614809565b5b80604052505050565b60006146de82614624565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147115761471061474d565b5b600182019050919050565b600061472782614624565b915061473283614624565b9250826147425761474161477c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f35206d6178207065722077616c6c657400000000000000000000000000000000600082015250565b7f4d696e74696e67206973206e6f74206c69766500000000000000000000000000600082015250565b7f4e6f74204f470000000000000000000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f206d6f726520726573657276650000000000000000000000000000000000600082015250565b7f35206d6178207065722054580000000000000000000000000000000000000000600082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b614aab816145ba565b8114614ab657600080fd5b50565b614ac2816145cc565b8114614acd57600080fd5b50565b614ad9816145d8565b8114614ae457600080fd5b50565b614af081614624565b8114614afb57600080fd5b5056fea26469706673582212204701ea8d4c9a1c4cc463925d378b4095f886ab17b82281b6b5128330d2361ab864736f6c63430008070033

Deployed Bytecode Sourcemap

2846:4812:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6777:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6016:410:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3012:29:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5950:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8629:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10173:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9750:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3248:278;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3231:32:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11104:164:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3330:27:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3525:1060;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4836:1113:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5702:242:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7371:78;;;;;;;;;;;;;:::i;:::-;;7455:201;;;;;;;;;;;;;:::i;:::-;;11334:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3121:32:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3084:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3812:731:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3269:28:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6881:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8445:122:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3194:31:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3303:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6485:203:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:145:11;;;;;;;;;;;;;:::i;:::-;;3047:31:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1061:85:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8791:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10476:294;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11579:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6142:102:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6973:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6362:409;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7279:86;;;;;;;;;;;;;:::i;:::-;;7191:82;;;;;;;;;;;;;:::i;:::-;;2924:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2961:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4591:1105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7085:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3159:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10836:206:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1987:240:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6777:98:13;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6865:3:13::1;6849:13;:19;;;;;;;;;;;;:::i;:::-;;6777:98:::0;:::o;6016:410:4:-;6158:4;6212:25;6197:40;;;:11;:40;;;;:104;;;;6268:33;6253:48;;;:11;:48;;;;6197:104;:170;;;;6332:35;6317:50;;;:11;:50;;;;6197:170;:222;;;;6383:36;6407:11;6383:23;:36::i;:::-;6197:222;6178:241;;6016:410;;;:::o;3012:29:13:-;;;;:::o;5950:186::-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6031:9:13::1;6026:104;6050:11;;:18;;6046:1;:22;6026:104;;;6115:4;6089:7;:23;6097:11;;6109:1;6097:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;6089:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;6070:3;;;;;:::i;:::-;;;;6026:104;;;;5950:186:::0;;:::o;8629:98:4:-;8683:13;8715:5;8708:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8629:98;:::o;10173:236::-;10273:7;10301:16;10309:7;10301;:16::i;:::-;10296:64;;10326:34;;;;;;;;;;;;;;10296:64;10378:15;:24;10394:7;10378:24;;;;;;;;;;;;;;;;;;;;;10371:31;;10173:236;;;:::o;9750:362::-;9822:13;9838:24;9854:7;9838:15;:24::i;:::-;9822:40;;9882:5;9876:11;;:2;:11;;;9872:48;;;9896:24;;;;;;;;;;;;;;9872:48;9951:5;9935:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9961:37;9978:5;9985:12;:10;:12::i;:::-;9961:16;:37::i;:::-;9960:38;9935:63;9931:136;;;10021:35;;;;;;;;;;;;;;9931:136;10077:28;10086:2;10090:7;10099:5;10077:8;:28::i;:::-;9812:300;9750:362;;:::o;3248:278::-;3309:7;3497:12;;3481:13;;:28;3474:35;;3248:278;:::o;3231:32:13:-;;;;;;;;;;;;;:::o;11104:164:4:-;11233:28;11243:4;11249:2;11253:7;11233:9;:28::i;:::-;11104:164;;;:::o;3330:27:13:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3525:1060::-;3596:11;;;;;;;;;;;3588:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;3686:1;3674:9;;:13;;;;:::i;:::-;3665:6;3649:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;3641:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;3741:1;3726:12;;:16;;;;:::i;:::-;3717:6;:25;3709:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;3842:1;3827:12;;:16;;;;:::i;:::-;3818:6;3790:25;3804:10;3790:13;:25::i;:::-;:34;;;;:::i;:::-;:53;3769:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;3895:9;3907:7;:19;3915:10;3907:19;;;;;;;;;;;;;;;;;;;;;;;;;3895:31;;3936:22;3972;3997:4;:32;;4019:10;;3997:32;;;4004:12;;3997:32;3972:57;;4039:18;4060:17;:29;4078:10;4060:29;;;;;;;;;;;;;;;;4039:50;;4120:10;4103:14;:27;4099:190;;;4146:22;4188:10;4171:14;:27;;;;:::i;:::-;4146:52;;4246:6;4229:14;:23;:49;;4264:14;4229:49;;;4255:6;4229:49;4212:66;;4132:157;4099:190;4344:14;4331:10;:27;;;;:::i;:::-;4299:17;:29;4317:10;4299:29;;;;;;;;;;;;;;;:59;;;;4368:17;4397:14;4388:6;:23;;;;:::i;:::-;4368:43;;4468:15;;4456:9;:27;;;;:::i;:::-;4443:9;:40;;4422:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;4549:29;4559:10;4571:6;4549:9;:29::i;:::-;3578:1007;;;;;3525:1060;:::o;4836:1113:4:-;4957:7;4993:16;5003:5;4993:9;:16::i;:::-;4984:5;:25;4980:61;;5018:23;;;;;;;;;;;;;;4980:61;5051:22;5076:13;;5051:38;;5099:19;5128:25;5324:9;5319:543;5339:14;5335:1;:18;5319:543;;;5378:31;5412:11;:14;5424:1;5412:14;;;;;;;;;;;5378:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5448:9;:16;;;5444:71;;;5488:8;;;5444:71;5562:1;5536:28;;:9;:14;;;:28;;;5532:109;;5608:9;:14;;;5588:34;;5532:109;5683:5;5662:26;;:17;:26;;;5658:190;;;5731:5;5716:11;:20;5712:83;;;5771:1;5764:8;;;;;;;;;5712:83;5816:13;;;;;;;5658:190;5360:502;5319:543;5355:3;;;;;;;5319:543;;;;5934:8;;;4836:1113;;;;;:::o;5702:242:13:-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5810:1:13::1;5798:9;;:13;;;;:::i;:::-;5789:6;5773:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;5765:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;5877:1;5863:11;;:15;;;;:::i;:::-;5854:6;5841:10;;:19;;;;:::i;:::-;:37;5833:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;5908:29;5918:10;5930:6;5908:9;:29::i;:::-;5702:242:::0;:::o;7371:78::-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7434:8:13::1;;;;;;;;;;;7433:9;7422:8;;:20;;;;;;;;;;;;;;;;;;7371:78::o:0;7455:201::-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7505:12:13::1;7531:10;7523:24;;7568:21;7523:80;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7504:99;;;7621:7;7613:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;7494:162;7455:201::o:0;11334:179:4:-;11467:39;11484:4;11490:2;11494:7;11467:39;;;;;;;;;;;;:16;:39::i;:::-;11334:179;;;:::o;3121:32:13:-;;;;:::o;3084:31::-;;;;:::o;3812:731:4:-;3911:7;3934:22;3959:13;;3934:38;;3982:19;4172:9;4167:320;4187:14;4183:1;:18;4167:320;;;4226:31;4260:11;:14;4272:1;4260:14;;;;;;;;;;;4226:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4297:9;:16;;;4292:181;;4356:5;4341:11;:20;4337:83;;;4396:1;4389:8;;;;;;;;4337:83;4441:13;;;;;;;4292:181;4208:279;4203:3;;;;;;;4167:320;;;;4513:23;;;;;;;;;;;;;;3812:731;;;;:::o;3269:28:13:-;;;;;;;;;;;;;:::o;6881:86::-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6957:3:13::1;6947:7;:13;;;;;;;;;;;;:::i;:::-;;6881:86:::0;:::o;8445:122:4:-;8509:7;8535:20;8547:7;8535:11;:20::i;:::-;:25;;;8528:32;;8445:122;;;:::o;3194:31:13:-;;;;;;;;;;;;;:::o;3303:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6485:203:4:-;6549:7;6589:1;6572:19;;:5;:19;;;6568:60;;;6600:28;;;;;;;;;;;;;;6568:60;6653:12;:19;6666:5;6653:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6645:36;;6638:43;;6485:203;;;:::o;1693:145:11:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1799:1:::1;1762:40;;1783:6;;;;;;;;;;;1762:40;;;;;;;;;;;;1829:1;1812:6;;:19;;;;;;;;;;;;;;;;;;1693:145::o:0;3047:31:13:-;;;;:::o;1061:85:11:-;1107:7;1133:6;;;;;;;;;;;1126:13;;1061:85;:::o;8791:102:4:-;8847:13;8879:7;8872:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8791:102;:::o;10476:294::-;10598:12;:10;:12::i;:::-;10586:24;;:8;:24;;;10582:54;;;10619:17;;;;;;;;;;;;;;10582:54;10692:8;10647:18;:32;10666:12;:10;:12::i;:::-;10647:32;;;;;;;;;;;;;;;:42;10680:8;10647:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10744:8;10715:48;;10730:12;:10;:12::i;:::-;10715:48;;;10754:8;10715:48;;;;;;:::i;:::-;;;;;;;;10476:294;;:::o;11579:332::-;11740:28;11750:4;11756:2;11760:7;11740:9;:28::i;:::-;11783:48;11806:4;11812:2;11816:7;11825:5;11783:22;:48::i;:::-;11778:127;;11854:40;;;;;;;;;;;;;;11778:127;11579:332;;;;:::o;6142:102:13:-;6201:4;6224:7;:13;6232:4;6224:13;;;;;;;;;;;;;;;;;;;;;;;;;6217:20;;6142:102;;;:::o;6973:106::-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7063:9:13::1;7045:15;:27;;;;6973:106:::0;:::o;6362:409::-;6475:13;6525:16;6533:7;6525;:16::i;:::-;6504:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6643:8;;;;;;;;;;;:121;;6751:13;6643:121;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6694:7;6703:18;:7;:16;:18::i;:::-;6677:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6643:121;6624:140;;6362:409;;;:::o;7279:86::-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7346:12:13::1;;;;;;;;;;;7345:13;7330:12;;:28;;;;;;;;;;;;;;;;;;7279:86::o:0;7191:82::-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7255:11:13::1;;;;;;;;;;;7254:12;7240:11;;:26;;;;;;;;;;;;;;;;;;7191:82::o:0;2924:31::-;;;;:::o;2961:45::-;;;;:::o;4591:1105::-;4658:12;;;;;;;;;;;4650:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;4712:7;:19;4720:10;4712:19;;;;;;;;;;;;;;;;;;;;;;;;;4704:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;4797:1;4785:9;;:13;;;;:::i;:::-;4776:6;4760:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;4752:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;4852:1;4837:12;;:16;;;;:::i;:::-;4828:6;:25;4820:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;4953:1;4938:12;;:16;;;;:::i;:::-;4929:6;4901:25;4915:10;4901:13;:25::i;:::-;:34;;;;:::i;:::-;:53;4880:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;5006:9;5018:7;:19;5026:10;5018:19;;;;;;;;;;;;;;;;;;;;;;;;;5006:31;;5047:22;5083;5108:4;:32;;5130:10;;5108:32;;;5115:12;;5108:32;5083:57;;5150:18;5171:17;:29;5189:10;5171:29;;;;;;;;;;;;;;;;5150:50;;5231:10;5214:14;:27;5210:190;;;5257:22;5299:10;5282:14;:27;;;;:::i;:::-;5257:52;;5357:6;5340:14;:23;:49;;5375:14;5340:49;;;5366:6;5340:49;5323:66;;5243:157;5210:190;5455:14;5442:10;:27;;;;:::i;:::-;5410:17;:29;5428:10;5410:29;;;;;;;;;;;;;;;:59;;;;5479:17;5508:14;5499:6;:23;;;;:::i;:::-;5479:43;;5579:15;;5567:9;:27;;;;:::i;:::-;5554:9;:40;;5533:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;5660:29;5670:10;5682:6;5660:9;:29::i;:::-;4640:1056;;;;;4591:1105;:::o;7085:100::-;1284:12:11;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7171:7:13::1;7156:12;:22;;;;7085:100:::0;:::o;3159:29::-;;;;:::o;10836:206:4:-;10973:4;11000:18;:25;11019:5;11000:25;;;;;;;;;;;;;;;:35;11026:8;11000:35;;;;;;;;;;;;;;;;;;;;;;;;;10993:42;;10836:206;;;;:::o;1987:240:11:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2095:1:::1;2075:22;;:8;:22;;;;2067:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2184:8;2155:38;;2176:6;;;;;;;;;;;2155:38;;;;;;;;;;;;2212:8;2203:6;;:17;;;;;;;;;;;;;;;;;;1987:240:::0;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;829:155:2:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;12157:142:4:-;12214:4;12247:13;;12237:7;:23;:55;;;;;12265:11;:20;12277:7;12265:20;;;;;;;;;;;:27;;;;;;;;;;;;12264:28;12237:55;12230:62;;12157:142;;;:::o;19283:189::-;19420:2;19393:15;:24;19409:7;19393:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19457:7;19453:2;19437:28;;19446:5;19437:28;;;;;;;;;;;;19283:189;;;:::o;14839:2092::-;14949:35;14987:20;14999:7;14987:11;:20::i;:::-;14949:58;;15018:22;15060:13;:18;;;15044:34;;:12;:10;:12::i;:::-;:34;;;:100;;;;15094:50;15111:13;:18;;;15131:12;:10;:12::i;:::-;15094:16;:50::i;:::-;15044:100;:152;;;;15184:12;:10;:12::i;:::-;15160:36;;:20;15172:7;15160:11;:20::i;:::-;:36;;;15044:152;15018:179;;15213:17;15208:66;;15239:35;;;;;;;;;;;;;;15208:66;15310:4;15288:26;;:13;:18;;;:26;;;15284:67;;15323:28;;;;;;;;;;;;;;15284:67;15379:1;15365:16;;:2;:16;;;15361:52;;;15390:23;;;;;;;;;;;;;;15361:52;15424:43;15446:4;15452:2;15456:7;15465:1;15424:21;:43::i;:::-;15529:49;15546:1;15550:7;15559:13;:18;;;15529:8;:49::i;:::-;15898:1;15868:12;:18;15881:4;15868:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15941:1;15913:12;:16;15926:2;15913:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15985:2;15957:11;:20;15969:7;15957:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16046:15;16001:11;:20;16013:7;16001:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16310:19;16342:1;16332:7;:11;16310:33;;16402:1;16361:43;;:11;:24;16373:11;16361:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16357:463;;;16583:13;;16569:11;:27;16565:241;;;16652:13;:18;;;16620:11;:24;16632:11;16620:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16734:13;:53;;;16692:11;:24;16704:11;16692:24;;;;;;;;;;;:39;;;:95;;;;;;;;;;;;;;;;;;16565:241;16357:463;15844:986;16864:7;16860:2;16845:27;;16854:4;16845:27;;;;;;;;;;;;16882:42;16903:4;16909:2;16913:7;16922:1;16882:20;:42::i;:::-;14939:1992;;14839:2092;;;:::o;6694:204::-;6755:7;6795:1;6778:19;;:5;:19;;;6774:59;;;6806:27;;;;;;;;;;;;;;6774:59;6858:12;:19;6871:5;6858:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;6850:41;;6843:48;;6694:204;;;:::o;12305:102::-;12373:27;12383:2;12387:8;12373:27;;;;;;;;;;;;:9;:27::i;:::-;12305:102;;:::o;7304:1084::-;7389:21;;:::i;:::-;7426:12;7441:7;7426:22;;7494:13;;7487:4;:20;7483:841;;;7527:31;7561:11;:17;7573:4;7561:17;;;;;;;;;;;7527:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7601:9;:16;;;7596:714;;7671:1;7645:28;;:9;:14;;;:28;;;7641:99;;7708:9;7701:16;;;;;;7641:99;8037:255;8044:4;8037:255;;;8076:6;;;;;;;;8120:11;:17;8132:4;8120:17;;;;;;;;;;;8108:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8193:1;8167:28;;:9;:14;;;:28;;;8163:107;;8234:9;8227:16;;;;;;8163:107;8037:255;;;7596:714;7509:815;7483:841;8350:31;;;;;;;;;;;;;;7304:1084;;;;:::o;20025:895::-;20175:4;20195:15;:2;:13;;;:15::i;:::-;20191:723;;;20262:2;20246:36;;;20304:12;:10;:12::i;:::-;20338:4;20364:7;20393:5;20246:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20226:636;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20616:1;20599:6;:13;:18;20595:253;;;20648:40;;;;;;;;;;;;;;20595:253;20800:6;20794:13;20785:6;20781:2;20777:15;20770:38;20226:636;20488:45;;;20478:55;;;:6;:55;;;;20471:62;;;;;20191:723;20899:4;20892:11;;20025:895;;;;;;;:::o;328:703:12:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;21551:154:4:-;;;;;:::o;22346:153::-;;;;;:::o;12758:157::-;12876:32;12882:2;12886:8;12896:5;12903:4;12876:5;:32::i;:::-;12758:157;;;:::o;1160:320:0:-;1220:4;1472:1;1450:7;:19;;;:23;1443:30;;1160:320;;;:::o;13162:1435:4:-;13295:20;13318:13;;13295:36;;13359:1;13345:16;;:2;:16;;;13341:48;;;13370:19;;;;;;;;;;;;;;13341:48;13415:1;13403:8;:13;13399:44;;;13425:18;;;;;;;;;;;;;;13399:44;13454:61;13484:1;13488:2;13492:12;13506:8;13454:21;:61::i;:::-;13821:8;13786:12;:16;13799:2;13786:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13884:8;13844:12;:16;13857:2;13844:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13941:2;13908:11;:25;13920:12;13908:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14007:15;13957:11;:25;13969:12;13957:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14038:20;14061:12;14038:35;;14093:9;14088:380;14108:8;14104:1;:12;14088:380;;;14171:12;14167:2;14146:38;;14163:1;14146:38;;;;;;;;;;;;14227:4;:88;;;;;14256:59;14287:1;14291:2;14295:12;14309:5;14256:22;:59::i;:::-;14255:60;14227:88;14202:220;;;14363:40;;;;;;;;;;;;;;14202:220;14439:14;;;;;;;14118:3;;;;;;;14088:380;;;;14498:12;14482:13;:28;;;;13762:759;14530:60;14559:1;14563:2;14567:12;14581:8;14530:20;:60::i;:::-;13285:1312;13162:1435;;;;:::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;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:327::-;6834:6;6883:2;6871:9;6862:7;6858:23;6854:32;6851:119;;;6889:79;;:::i;:::-;6851:119;7009:1;7034:52;7078:7;7069:6;7058:9;7054:22;7034:52;:::i;:::-;7024:62;;6980:116;6776:327;;;;:::o;7109:349::-;7178:6;7227:2;7215:9;7206:7;7202:23;7198:32;7195:119;;;7233:79;;:::i;:::-;7195:119;7353:1;7378:63;7433:7;7424:6;7413:9;7409:22;7378:63;:::i;:::-;7368:73;;7324:127;7109:349;;;;:::o;7464:509::-;7533:6;7582:2;7570:9;7561:7;7557:23;7553:32;7550:119;;;7588:79;;:::i;:::-;7550:119;7736:1;7725:9;7721:17;7708:31;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:63;7948:7;7939:6;7928:9;7924:22;7893:63;:::i;:::-;7883:73;;7679:287;7464:509;;;;:::o;7979:329::-;8038:6;8087:2;8075:9;8066:7;8062:23;8058:32;8055:119;;;8093:79;;:::i;:::-;8055:119;8213:1;8238:53;8283:7;8274:6;8263:9;8259:22;8238:53;:::i;:::-;8228:63;;8184:117;7979:329;;;;:::o;8314:118::-;8401:24;8419:5;8401:24;:::i;:::-;8396:3;8389:37;8314:118;;:::o;8438:109::-;8519:21;8534:5;8519:21;:::i;:::-;8514:3;8507:34;8438:109;;:::o;8553:360::-;8639:3;8667:38;8699:5;8667:38;:::i;:::-;8721:70;8784:6;8779:3;8721:70;:::i;:::-;8714:77;;8800:52;8845:6;8840:3;8833:4;8826:5;8822:16;8800:52;:::i;:::-;8877:29;8899:6;8877:29;:::i;:::-;8872:3;8868:39;8861:46;;8643:270;8553:360;;;;:::o;8919:364::-;9007:3;9035:39;9068:5;9035:39;:::i;:::-;9090:71;9154:6;9149:3;9090:71;:::i;:::-;9083:78;;9170:52;9215:6;9210:3;9203:4;9196:5;9192:16;9170:52;:::i;:::-;9247:29;9269:6;9247:29;:::i;:::-;9242:3;9238:39;9231:46;;9011:272;8919:364;;;;:::o;9289:377::-;9395:3;9423:39;9456:5;9423:39;:::i;:::-;9478:89;9560:6;9555:3;9478:89;:::i;:::-;9471:96;;9576:52;9621:6;9616:3;9609:4;9602:5;9598:16;9576:52;:::i;:::-;9653:6;9648:3;9644:16;9637:23;;9399:267;9289:377;;;;:::o;9696:845::-;9799:3;9836:5;9830:12;9865:36;9891:9;9865:36;:::i;:::-;9917:89;9999:6;9994:3;9917:89;:::i;:::-;9910:96;;10037:1;10026:9;10022:17;10053:1;10048:137;;;;10199:1;10194:341;;;;10015:520;;10048:137;10132:4;10128:9;10117;10113:25;10108:3;10101:38;10168:6;10163:3;10159:16;10152:23;;10048:137;;10194:341;10261:38;10293:5;10261:38;:::i;:::-;10321:1;10335:154;10349:6;10346:1;10343:13;10335:154;;;10423:7;10417:14;10413:1;10408:3;10404:11;10397:35;10473:1;10464:7;10460:15;10449:26;;10371:4;10368:1;10364:12;10359:17;;10335:154;;;10518:6;10513:3;10509:16;10502:23;;10201:334;;10015:520;;9803:738;;9696:845;;;;:::o;10547:365::-;10689:3;10710:66;10774:1;10769:3;10710:66;:::i;:::-;10703:73;;10785:93;10874:3;10785:93;:::i;:::-;10903:2;10898:3;10894:12;10887:19;;10547:365;;;:::o;10918:366::-;11060:3;11081:67;11145:2;11140:3;11081:67;:::i;:::-;11074:74;;11157:93;11246:3;11157:93;:::i;:::-;11275:2;11270:3;11266:12;11259:19;;10918:366;;;:::o;11290:::-;11432:3;11453:67;11517:2;11512:3;11453:67;:::i;:::-;11446:74;;11529:93;11618:3;11529:93;:::i;:::-;11647:2;11642:3;11638:12;11631:19;;11290:366;;;:::o;11662:::-;11804:3;11825:67;11889:2;11884:3;11825:67;:::i;:::-;11818:74;;11901:93;11990:3;11901:93;:::i;:::-;12019:2;12014:3;12010:12;12003:19;;11662:366;;;:::o;12034:365::-;12176:3;12197:66;12261:1;12256:3;12197:66;:::i;:::-;12190:73;;12272:93;12361:3;12272:93;:::i;:::-;12390:2;12385:3;12381:12;12374:19;;12034:365;;;:::o;12405:400::-;12565:3;12586:84;12668:1;12663:3;12586:84;:::i;:::-;12579:91;;12679:93;12768:3;12679:93;:::i;:::-;12797:1;12792:3;12788:11;12781:18;;12405:400;;;:::o;12811:366::-;12953:3;12974:67;13038:2;13033:3;12974:67;:::i;:::-;12967:74;;13050:93;13139:3;13050:93;:::i;:::-;13168:2;13163:3;13159:12;13152:19;;12811:366;;;:::o;13183:::-;13325:3;13346:67;13410:2;13405:3;13346:67;:::i;:::-;13339:74;;13422:93;13511:3;13422:93;:::i;:::-;13540:2;13535:3;13531:12;13524:19;;13183:366;;;:::o;13555:::-;13697:3;13718:67;13782:2;13777:3;13718:67;:::i;:::-;13711:74;;13794:93;13883:3;13794:93;:::i;:::-;13912:2;13907:3;13903:12;13896:19;;13555:366;;;:::o;13927:::-;14069:3;14090:67;14154:2;14149:3;14090:67;:::i;:::-;14083:74;;14166:93;14255:3;14166:93;:::i;:::-;14284:2;14279:3;14275:12;14268:19;;13927:366;;;:::o;14299:::-;14441:3;14462:67;14526:2;14521:3;14462:67;:::i;:::-;14455:74;;14538:93;14627:3;14538:93;:::i;:::-;14656:2;14651:3;14647:12;14640:19;;14299:366;;;:::o;14671:398::-;14830:3;14851:83;14932:1;14927:3;14851:83;:::i;:::-;14844:90;;14943:93;15032:3;14943:93;:::i;:::-;15061:1;15056:3;15052:11;15045:18;;14671:398;;;:::o;15075:366::-;15217:3;15238:67;15302:2;15297:3;15238:67;:::i;:::-;15231:74;;15314:93;15403:3;15314:93;:::i;:::-;15432:2;15427:3;15423:12;15416:19;;15075:366;;;:::o;15447:118::-;15534:24;15552:5;15534:24;:::i;:::-;15529:3;15522:37;15447:118;;:::o;15571:695::-;15849:3;15871:92;15959:3;15950:6;15871:92;:::i;:::-;15864:99;;15980:95;16071:3;16062:6;15980:95;:::i;:::-;15973:102;;16092:148;16236:3;16092:148;:::i;:::-;16085:155;;16257:3;16250:10;;15571:695;;;;;:::o;16272:379::-;16456:3;16478:147;16621:3;16478:147;:::i;:::-;16471:154;;16642:3;16635:10;;16272:379;;;:::o;16657:222::-;16750:4;16788:2;16777:9;16773:18;16765:26;;16801:71;16869:1;16858:9;16854:17;16845:6;16801:71;:::i;:::-;16657:222;;;;:::o;16885:640::-;17080:4;17118:3;17107:9;17103:19;17095:27;;17132:71;17200:1;17189:9;17185:17;17176:6;17132:71;:::i;:::-;17213:72;17281:2;17270:9;17266:18;17257:6;17213:72;:::i;:::-;17295;17363:2;17352:9;17348:18;17339:6;17295:72;:::i;:::-;17414:9;17408:4;17404:20;17399:2;17388:9;17384:18;17377:48;17442:76;17513:4;17504:6;17442:76;:::i;:::-;17434:84;;16885:640;;;;;;;:::o;17531:210::-;17618:4;17656:2;17645:9;17641:18;17633:26;;17669:65;17731:1;17720:9;17716:17;17707:6;17669:65;:::i;:::-;17531:210;;;;:::o;17747:313::-;17860:4;17898:2;17887:9;17883:18;17875:26;;17947:9;17941:4;17937:20;17933:1;17922:9;17918:17;17911:47;17975:78;18048:4;18039:6;17975:78;:::i;:::-;17967:86;;17747:313;;;;:::o;18066:419::-;18232:4;18270:2;18259:9;18255:18;18247:26;;18319:9;18313:4;18309:20;18305:1;18294:9;18290:17;18283:47;18347:131;18473:4;18347:131;:::i;:::-;18339:139;;18066:419;;;:::o;18491:::-;18657:4;18695:2;18684:9;18680:18;18672:26;;18744:9;18738:4;18734:20;18730:1;18719:9;18715:17;18708:47;18772:131;18898:4;18772:131;:::i;:::-;18764:139;;18491:419;;;:::o;18916:::-;19082:4;19120:2;19109:9;19105:18;19097:26;;19169:9;19163:4;19159:20;19155:1;19144:9;19140:17;19133:47;19197:131;19323:4;19197:131;:::i;:::-;19189:139;;18916:419;;;:::o;19341:::-;19507:4;19545:2;19534:9;19530:18;19522:26;;19594:9;19588:4;19584:20;19580:1;19569:9;19565:17;19558:47;19622:131;19748:4;19622:131;:::i;:::-;19614:139;;19341:419;;;:::o;19766:::-;19932:4;19970:2;19959:9;19955:18;19947:26;;20019:9;20013:4;20009:20;20005:1;19994:9;19990:17;19983:47;20047:131;20173:4;20047:131;:::i;:::-;20039:139;;19766:419;;;:::o;20191:::-;20357:4;20395:2;20384:9;20380:18;20372:26;;20444:9;20438:4;20434:20;20430:1;20419:9;20415:17;20408:47;20472:131;20598:4;20472:131;:::i;:::-;20464:139;;20191:419;;;:::o;20616:::-;20782:4;20820:2;20809:9;20805:18;20797:26;;20869:9;20863:4;20859:20;20855:1;20844:9;20840:17;20833:47;20897:131;21023:4;20897:131;:::i;:::-;20889:139;;20616:419;;;:::o;21041:::-;21207:4;21245:2;21234:9;21230:18;21222:26;;21294:9;21288:4;21284:20;21280:1;21269:9;21265:17;21258:47;21322:131;21448:4;21322:131;:::i;:::-;21314:139;;21041:419;;;:::o;21466:::-;21632:4;21670:2;21659:9;21655:18;21647:26;;21719:9;21713:4;21709:20;21705:1;21694:9;21690:17;21683:47;21747:131;21873:4;21747:131;:::i;:::-;21739:139;;21466:419;;;:::o;21891:::-;22057:4;22095:2;22084:9;22080:18;22072:26;;22144:9;22138:4;22134:20;22130:1;22119:9;22115:17;22108:47;22172:131;22298:4;22172:131;:::i;:::-;22164:139;;21891:419;;;:::o;22316:::-;22482:4;22520:2;22509:9;22505:18;22497:26;;22569:9;22563:4;22559:20;22555:1;22544:9;22540:17;22533:47;22597:131;22723:4;22597:131;:::i;:::-;22589:139;;22316:419;;;:::o;22741:222::-;22834:4;22872:2;22861:9;22857:18;22849:26;;22885:71;22953:1;22942:9;22938:17;22929:6;22885:71;:::i;:::-;22741:222;;;;:::o;22969:129::-;23003:6;23030:20;;:::i;:::-;23020:30;;23059:33;23087:4;23079:6;23059:33;:::i;:::-;22969:129;;;:::o;23104:75::-;23137:6;23170:2;23164:9;23154:19;;23104:75;:::o;23185:307::-;23246:4;23336:18;23328:6;23325:30;23322:56;;;23358:18;;:::i;:::-;23322:56;23396:29;23418:6;23396:29;:::i;:::-;23388:37;;23480:4;23474;23470:15;23462:23;;23185:307;;;:::o;23498:308::-;23560:4;23650:18;23642:6;23639:30;23636:56;;;23672:18;;:::i;:::-;23636:56;23710:29;23732:6;23710:29;:::i;:::-;23702:37;;23794:4;23788;23784:15;23776:23;;23498:308;;;:::o;23812:141::-;23861:4;23884:3;23876:11;;23907:3;23904:1;23897:14;23941:4;23938:1;23928:18;23920:26;;23812:141;;;:::o;23959:98::-;24010:6;24044:5;24038:12;24028:22;;23959:98;;;:::o;24063:99::-;24115:6;24149:5;24143:12;24133:22;;24063:99;;;:::o;24168:168::-;24251:11;24285:6;24280:3;24273:19;24325:4;24320:3;24316:14;24301:29;;24168:168;;;;:::o;24342:147::-;24443:11;24480:3;24465:18;;24342:147;;;;:::o;24495:169::-;24579:11;24613:6;24608:3;24601:19;24653:4;24648:3;24644:14;24629:29;;24495:169;;;;:::o;24670:148::-;24772:11;24809:3;24794:18;;24670:148;;;;:::o;24824:305::-;24864:3;24883:20;24901:1;24883:20;:::i;:::-;24878:25;;24917:20;24935:1;24917:20;:::i;:::-;24912:25;;25071:1;25003:66;24999:74;24996:1;24993:81;24990:107;;;25077:18;;:::i;:::-;24990:107;25121:1;25118;25114:9;25107:16;;24824:305;;;;:::o;25135:185::-;25175:1;25192:20;25210:1;25192:20;:::i;:::-;25187:25;;25226:20;25244:1;25226:20;:::i;:::-;25221:25;;25265:1;25255:35;;25270:18;;:::i;:::-;25255:35;25312:1;25309;25305:9;25300:14;;25135:185;;;;:::o;25326:348::-;25366:7;25389:20;25407:1;25389:20;:::i;:::-;25384:25;;25423:20;25441:1;25423:20;:::i;:::-;25418:25;;25611:1;25543:66;25539:74;25536:1;25533:81;25528:1;25521:9;25514:17;25510:105;25507:131;;;25618:18;;:::i;:::-;25507:131;25666:1;25663;25659:9;25648:20;;25326:348;;;;:::o;25680:191::-;25720:4;25740:20;25758:1;25740:20;:::i;:::-;25735:25;;25774:20;25792:1;25774:20;:::i;:::-;25769:25;;25813:1;25810;25807:8;25804:34;;;25818:18;;:::i;:::-;25804:34;25863:1;25860;25856:9;25848:17;;25680:191;;;;:::o;25877:96::-;25914:7;25943:24;25961:5;25943:24;:::i;:::-;25932:35;;25877:96;;;:::o;25979:90::-;26013:7;26056:5;26049:13;26042:21;26031:32;;25979:90;;;:::o;26075:149::-;26111:7;26151:66;26144:5;26140:78;26129:89;;26075:149;;;:::o;26230:126::-;26267:7;26307:42;26300:5;26296:54;26285:65;;26230:126;;;:::o;26362:77::-;26399:7;26428:5;26417:16;;26362:77;;;:::o;26445:154::-;26529:6;26524:3;26519;26506:30;26591:1;26582:6;26577:3;26573:16;26566:27;26445:154;;;:::o;26605:307::-;26673:1;26683:113;26697:6;26694:1;26691:13;26683:113;;;26782:1;26777:3;26773:11;26767:18;26763:1;26758:3;26754:11;26747:39;26719:2;26716:1;26712:10;26707:15;;26683:113;;;26814:6;26811:1;26808:13;26805:101;;;26894:1;26885:6;26880:3;26876:16;26869:27;26805:101;26654:258;26605:307;;;:::o;26918:320::-;26962:6;26999:1;26993:4;26989:12;26979:22;;27046:1;27040:4;27036:12;27067:18;27057:81;;27123:4;27115:6;27111:17;27101:27;;27057:81;27185:2;27177:6;27174:14;27154:18;27151:38;27148:84;;;27204:18;;:::i;:::-;27148:84;26969:269;26918:320;;;:::o;27244:281::-;27327:27;27349:4;27327:27;:::i;:::-;27319:6;27315:40;27457:6;27445:10;27442:22;27421:18;27409:10;27406:34;27403:62;27400:88;;;27468:18;;:::i;:::-;27400:88;27508:10;27504:2;27497:22;27287:238;27244:281;;:::o;27531:233::-;27570:3;27593:24;27611:5;27593:24;:::i;:::-;27584:33;;27639:66;27632:5;27629:77;27626:103;;;27709:18;;:::i;:::-;27626:103;27756:1;27749:5;27745:13;27738:20;;27531:233;;;:::o;27770:176::-;27802:1;27819:20;27837:1;27819:20;:::i;:::-;27814:25;;27853:20;27871:1;27853:20;:::i;:::-;27848:25;;27892:1;27882:35;;27897:18;;:::i;:::-;27882:35;27938:1;27935;27931:9;27926:14;;27770:176;;;;:::o;27952:180::-;28000:77;27997:1;27990:88;28097:4;28094:1;28087:15;28121:4;28118:1;28111:15;28138:180;28186:77;28183:1;28176:88;28283:4;28280:1;28273:15;28307:4;28304:1;28297:15;28324:180;28372:77;28369:1;28362:88;28469:4;28466:1;28459:15;28493:4;28490:1;28483:15;28510:180;28558:77;28555:1;28548:88;28655:4;28652:1;28645:15;28679:4;28676:1;28669:15;28696:180;28744:77;28741:1;28734:88;28841:4;28838:1;28831:15;28865:4;28862:1;28855:15;28882:117;28991:1;28988;28981:12;29005:117;29114:1;29111;29104:12;29128:117;29237:1;29234;29227:12;29251:117;29360:1;29357;29350:12;29374:117;29483:1;29480;29473:12;29497:117;29606:1;29603;29596:12;29620:102;29661:6;29712:2;29708:7;29703:2;29696:5;29692:14;29688:28;29678:38;;29620:102;;;:::o;29728:157::-;29868:9;29864:1;29856:6;29852:14;29845:33;29728:157;:::o;29891:225::-;30031:34;30027:1;30019:6;30015:14;30008:58;30100:8;30095:2;30087:6;30083:15;30076:33;29891:225;:::o;30122:166::-;30262:18;30258:1;30250:6;30246:14;30239:42;30122:166;:::o;30294:169::-;30434:21;30430:1;30422:6;30418:14;30411:45;30294:169;:::o;30469:156::-;30609:8;30605:1;30597:6;30593:14;30586:32;30469:156;:::o;30631:155::-;30771:7;30767:1;30759:6;30755:14;30748:31;30631:155;:::o;30792:182::-;30932:34;30928:1;30920:6;30916:14;30909:58;30792:182;:::o;30980:234::-;31120:34;31116:1;31108:6;31104:14;31097:58;31189:17;31184:2;31176:6;31172:15;31165:42;30980:234;:::o;31220:165::-;31360:17;31356:1;31348:6;31344:14;31337:41;31220:165;:::o;31391:162::-;31531:14;31527:1;31519:6;31515:14;31508:38;31391:162;:::o;31559:179::-;31699:31;31695:1;31687:6;31683:14;31676:55;31559:179;:::o;31744:114::-;;:::o;31864:166::-;32004:18;32000:1;31992:6;31988:14;31981:42;31864:166;:::o;32036:122::-;32109:24;32127:5;32109:24;:::i;:::-;32102:5;32099:35;32089:63;;32148:1;32145;32138:12;32089:63;32036:122;:::o;32164:116::-;32234:21;32249:5;32234:21;:::i;:::-;32227:5;32224:32;32214:60;;32270:1;32267;32260:12;32214:60;32164:116;:::o;32286:120::-;32358:23;32375:5;32358:23;:::i;:::-;32351:5;32348:34;32338:62;;32396:1;32393;32386:12;32338:62;32286:120;:::o;32412:122::-;32485:24;32503:5;32485:24;:::i;:::-;32478:5;32475:35;32465:63;;32524:1;32521;32514:12;32465:63;32412:122;:::o

Swarm Source

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