ETH Price: $3,272.40 (+0.80%)
Gas: 9 Gwei

Token

Fast Food Alpacadabraz (ffPaca)
 

Overview

Max Total Supply

433 ffPaca

Holders

94

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 ffPaca
0x224a5ba2c04b66e97743d5bea1d6da6bee8b6a8a
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:
FastFoodAlpacadabraz

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-22
*/

//fastfoodalpacadabraz.com

// 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 @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @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 @openzeppelin/contracts/token/ERC721/[email protected]



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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]



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


// File @openzeppelin/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;







/**
 * @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 overriden 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @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 of token that is not own");
        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);
    }

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


/**
 * @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 @openzeppelin/contracts/access/[email protected]



pragma solidity ^0.8.0;

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/utils/math/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/finance/[email protected]



pragma solidity ^0.8.0;



/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}


// File contracts/FastFoodAlpacadabraz.sol


pragma solidity ^0.8.0;



contract FastFoodAlpacadabraz is ERC721Enumerable, Ownable, PaymentSplitter {

    using Strings for uint256;

    uint256 private _price = 0.0169 ether;

    string public _baseTokenURI = '';
    
    string public FFPACA_PROVENANCE = '';

    uint256 public MAX_TOKENS_PER_TRANSACTION = 20;

    uint256 public MAX_SUPPLY = 9669;

    uint256 public _startTime = 1634911200;

    mapping(uint => string) private _owners;

    // Withdrawal addresses
    address t1 = 0x23eEB09765C3a03F907D16D57B735499d452dE72;

    address[] addressList = [t1];
    uint256[] shareList = [100];

    constructor()
    ERC721("Fast Food Alpacadabraz", "ffPaca")
    PaymentSplitter(addressList, shareList)  {}

    function mint(uint256 _count) public payable {
        uint256 supply = totalSupply();
        require( block.timestamp >= _startTime,        "General sale has not started yet" );
        require( _count <= MAX_TOKENS_PER_TRANSACTION, "You can mint a maximum of 20 Fast Food Alpacadabraz per transaction" );
        require( supply + _count <= MAX_SUPPLY,        "Exceeds current Fast Food Alpacadabraz supply limit" );
        require( msg.value >= _price * _count,         "Ether sent is not correct" );

        for(uint256 i; i < _count; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function tokenMint(address _wallet, uint256 _count) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply + _count <= MAX_SUPPLY, "Exceeds maximum Fast Food Alpacadabraz supply");
        
        for(uint256 i; i < _count; i++){
            _safeMint(_wallet, supply + i );
        }
    }

    // Just in case Eth does some crazy stuff
    function setPrice(uint256 _newPrice) public onlyOwner {
        _price = _newPrice;
    }

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

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

    function getPrice() public view returns (uint256){
        return _price;
    }

    function setProvenanceHash(string memory _provenanceHash) public onlyOwner {
        FFPACA_PROVENANCE = _provenanceHash;
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function setStartTime(uint256 _newStartTime) public onlyOwner {
        _startTime = _newStartTime;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FFPACA_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStartTime","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"tokenMint","outputs":[],"stateMutability":"nonpayable","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":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052663c0a75e0b440006010556040518060200160405280600081525060119080519060200190620000369291906200075d565b5060405180602001604052806000815250601290805190602001906200005e9291906200075d565b5060146013556125c5601455636172c3e06015557323eeb09765c3a03f907d16d57b735499d452de72601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060200160405280601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250601890600162000136929190620007ee565b506040518060200160405280606460ff1681525060199060016200015c9291906200087d565b503480156200016a57600080fd5b506018805480602002602001604051908101604052809291908181526020018280548015620001ef57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311620001a4575b505050505060198054806020026020016040519081016040528092919081815260200182805480156200024257602002820191906000526020600020905b8154815260200190600101908083116200022d575b50505050506040518060400160405280601681526020017f4661737420466f6f6420416c7061636164616272617a000000000000000000008152506040518060400160405280600681526020017f66665061636100000000000000000000000000000000000000000000000000008152508160009080519060200190620002cb9291906200075d565b508060019080519060200190620002e49291906200075d565b50505062000307620002fb6200045560201b60201c565b6200045d60201b60201c565b80518251146200034e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003459062000b20565b60405180910390fd5b600082511162000395576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038c9062000b64565b60405180910390fd5b60005b82518110156200044c5762000436838281518110620003e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183838151811062000422577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516200052360201b60201c565b8080620004439062000c8a565b91505062000398565b50505062000d36565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000596576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058d9062000afe565b60405180910390fd5b60008111620005dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d39062000b86565b60405180910390fd5b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006589062000b42565b60405180910390fd5b600f829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b5462000718919062000bb9565b600b819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200075192919062000ad1565b60405180910390a15050565b8280546200076b9062000c54565b90600052602060002090601f0160209004810192826200078f5760008555620007db565b82601f10620007aa57805160ff1916838001178555620007db565b82800160010185558215620007db579182015b82811115620007da578251825591602001919060010190620007bd565b5b509050620007ea9190620008d4565b5090565b8280548282559060005260206000209081019282156200086a579160200282015b82811115620008695782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200080f565b5b509050620008799190620008d4565b5090565b828054828255906000526020600020908101928215620008c1579160200282015b82811115620008c0578251829060ff169055916020019190600101906200089e565b5b509050620008d09190620008d4565b5090565b5b80821115620008ef576000816000905550600101620008d5565b5090565b620008fe8162000c16565b82525050565b600062000913602c8362000ba8565b91507f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008301527f7a65726f206164647265737300000000000000000000000000000000000000006020830152604082019050919050565b60006200097b60328362000ba8565b91507f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008301527f6573206c656e677468206d69736d6174636800000000000000000000000000006020830152604082019050919050565b6000620009e3602b8362000ba8565b91507f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008301527f20686173207368617265730000000000000000000000000000000000000000006020830152604082019050919050565b600062000a4b601a8362000ba8565b91507f5061796d656e7453706c69747465723a206e6f207061796565730000000000006000830152602082019050919050565b600062000a8d601d8362000ba8565b91507f5061796d656e7453706c69747465723a207368617265732061726520300000006000830152602082019050919050565b62000acb8162000c4a565b82525050565b600060408201905062000ae86000830185620008f3565b62000af7602083018462000ac0565b9392505050565b6000602082019050818103600083015262000b198162000904565b9050919050565b6000602082019050818103600083015262000b3b816200096c565b9050919050565b6000602082019050818103600083015262000b5d81620009d4565b9050919050565b6000602082019050818103600083015262000b7f8162000a3c565b9050919050565b6000602082019050818103600083015262000ba18162000a7e565b9050919050565b600082825260208201905092915050565b600062000bc68262000c4a565b915062000bd38362000c4a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c0b5762000c0a62000cd8565b5b828201905092915050565b600062000c238262000c2a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000c6d57607f821691505b6020821081141562000c845762000c8362000d07565b5b50919050565b600062000c978262000c4a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000ccd5762000ccc62000cd8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614b8b8062000d466000396000f3fe6080604052600436106102295760003560e01c8063715018a611610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c51461088f578063eef892aa146108cc578063f2fde38b146108f5578063f7134a251461091e578063fa1acb5c1461094957610270565b8063b88d4fde14610796578063c87b56dd146107bf578063ce7c2ac2146107fc578063cfc86f7b14610839578063e33b7de31461086457610270565b806395d89b41116100f257806395d89b41146106be5780639852595c146106e957806398d5fdca14610726578063a0712d6814610751578063a22cb4651461076d57610270565b8063715018a6146106165780638b83209b1461062d5780638da5cb5b1461066a57806391b7f5ed1461069557610270565b806332cb6b0c116101b15780634f6ccce7116101755780634f6ccce71461050b5780634fce1de31461054857806355f804b3146105735780636352211e1461059c57806370a08231146105d957610270565b806332cb6b0c146104265780633a98ef39146104515780633e0a322d1461047c57806342842e0e146104a5578063438b6300146104ce57610270565b806310969523116101f8578063109695231461034357806318160ddd1461036c578063191655871461039757806323b872dd146103c05780632f745c59146103e957610270565b806301ffc9a71461027557806306fdde03146102b2578063081812fc146102dd578063095ea7b31461031a57610270565b36610270577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610257610974565b3460405161026692919061423b565b60405180910390a1005b600080fd5b34801561028157600080fd5b5061029c6004803603810190610297919061355a565b61097c565b6040516102a99190614286565b60405180910390f35b3480156102be57600080fd5b506102c76109f6565b6040516102d491906142a1565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff91906135ed565b610a88565b60405161031191906141ab565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c919061351e565b610b0d565b005b34801561034f57600080fd5b5061036a600480360381019061036591906135ac565b610c25565b005b34801561037857600080fd5b50610381610cbb565b60405161038e9190614623565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906133b3565b610cc8565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613418565b610f30565b005b3480156103f557600080fd5b50610410600480360381019061040b919061351e565b610f90565b60405161041d9190614623565b60405180910390f35b34801561043257600080fd5b5061043b611035565b6040516104489190614623565b60405180910390f35b34801561045d57600080fd5b5061046661103b565b6040516104739190614623565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906135ed565b611045565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613418565b6110cb565b005b3480156104da57600080fd5b506104f560048036038101906104f0919061338a565b6110eb565b6040516105029190614264565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906135ed565b6111e5565b60405161053f9190614623565b60405180910390f35b34801561055457600080fd5b5061055d61127c565b60405161056a9190614623565b60405180910390f35b34801561057f57600080fd5b5061059a600480360381019061059591906135ac565b611282565b005b3480156105a857600080fd5b506105c360048036038101906105be91906135ed565b611318565b6040516105d091906141ab565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb919061338a565b6113ca565b60405161060d9190614623565b60405180910390f35b34801561062257600080fd5b5061062b611482565b005b34801561063957600080fd5b50610654600480360381019061064f91906135ed565b61150a565b60405161066191906141ab565b60405180910390f35b34801561067657600080fd5b5061067f611578565b60405161068c91906141ab565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b791906135ed565b6115a2565b005b3480156106ca57600080fd5b506106d3611628565b6040516106e091906142a1565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b919061338a565b6116ba565b60405161071d9190614623565b60405180910390f35b34801561073257600080fd5b5061073b611703565b6040516107489190614623565b60405180910390f35b61076b600480360381019061076691906135ed565b61170d565b005b34801561077957600080fd5b50610794600480360381019061078f91906134e2565b61187b565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613467565b6119fc565b005b3480156107cb57600080fd5b506107e660048036038101906107e191906135ed565b611a5e565b6040516107f391906142a1565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e919061338a565b611b05565b6040516108309190614623565b60405180910390f35b34801561084557600080fd5b5061084e611b4e565b60405161085b91906142a1565b60405180910390f35b34801561087057600080fd5b50610879611bdc565b6040516108869190614623565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b191906133dc565b611be6565b6040516108c39190614286565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee919061351e565b611c7a565b005b34801561090157600080fd5b5061091c6004803603810190610917919061338a565b611d8b565b005b34801561092a57600080fd5b50610933611e83565b60405161094091906142a1565b60405180910390f35b34801561095557600080fd5b5061095e611f11565b60405161096b9190614623565b60405180910390f35b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ef57506109ee82611f17565b5b9050919050565b606060008054610a0590614969565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3190614969565b8015610a7e5780601f10610a5357610100808354040283529160200191610a7e565b820191906000526020600020905b815481529060010190602001808311610a6157829003601f168201915b5050505050905090565b6000610a9382611ff9565b610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac9906144e3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1882611318565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090614583565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba8610974565b73ffffffffffffffffffffffffffffffffffffffff161480610bd75750610bd681610bd1610974565b611be6565b5b610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d90614463565b60405180910390fd5b610c208383612065565b505050565b610c2d610974565b73ffffffffffffffffffffffffffffffffffffffff16610c4b611578565b73ffffffffffffffffffffffffffffffffffffffff1614610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890614503565b60405180910390fd5b8060129080519060200190610cb7929190613199565b5050565b6000600880549050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190614343565b60405180910390fd5b6000600c5447610d5a9190614756565b90506000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600b54600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610dec91906147dd565b610df691906147ac565b610e009190614837565b90506000811415610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90614443565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e919190614756565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c54610ee29190614756565b600c81905550610ef2838261211e565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610f239291906141c6565b60405180910390a1505050565b610f41610f3b610974565b82612212565b610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f77906145c3565b60405180910390fd5b610f8b8383836122f0565b505050565b6000610f9b836113ca565b8210610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd3906142c3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60145481565b6000600b54905090565b61104d610974565b73ffffffffffffffffffffffffffffffffffffffff1661106b611578565b73ffffffffffffffffffffffffffffffffffffffff16146110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890614503565b60405180910390fd5b8060158190555050565b6110e6838383604051806020016040528060008152506119fc565b505050565b606060006110f8836113ca565b905060008167ffffffffffffffff81111561113c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561116a5781602001602082028036833780820191505090505b50905060005b828110156111da576111828582610f90565b8282815181106111bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806111d29061499b565b915050611170565b508092505050919050565b60006111ef610cbb565b8210611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906145e3565b60405180910390fd5b6008828154811061126a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60135481565b61128a610974565b73ffffffffffffffffffffffffffffffffffffffff166112a8611578565b73ffffffffffffffffffffffffffffffffffffffff16146112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f590614503565b60405180910390fd5b8060119080519060200190611314929190613199565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b8906144a3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290614483565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61148a610974565b73ffffffffffffffffffffffffffffffffffffffff166114a8611578565b73ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590614503565b60405180910390fd5b611508600061254c565b565b6000600f8281548110611546577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115aa610974565b73ffffffffffffffffffffffffffffffffffffffff166115c8611578565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590614503565b60405180910390fd5b8060108190555050565b60606001805461163790614969565b80601f016020809104026020016040519081016040528092919081815260200182805461166390614969565b80156116b05780601f10611685576101008083540402835291602001916116b0565b820191906000526020600020905b81548152906001019060200180831161169357829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601054905090565b6000611717610cbb565b905060155442101561175e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611755906143a3565b60405180910390fd5b6013548211156117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906143c3565b60405180910390fd5b60145482826117b29190614756565b11156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90614563565b60405180910390fd5b8160105461180191906147dd565b341015611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a906145a3565b60405180910390fd5b60005b828110156118765761186333828461185e9190614756565b612612565b808061186e9061499b565b915050611846565b505050565b611883610974565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890614383565b60405180910390fd5b80600560006118fe610974565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ab610974565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f09190614286565b60405180910390a35050565b611a0d611a07610974565b83612212565b611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a43906145c3565b60405180910390fd5b611a5884848484612630565b50505050565b6060611a6982611ff9565b611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90614543565b60405180910390fd5b6000611ab261268c565b90506000815111611ad25760405180602001604052806000815250611afd565b80611adc8461271e565b604051602001611aed929190614172565b6040516020818303038152906040525b915050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60118054611b5b90614969565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8790614969565b8015611bd45780601f10611ba957610100808354040283529160200191611bd4565b820191906000526020600020905b815481529060010190602001808311611bb757829003601f168201915b505050505081565b6000600c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c82610974565b73ffffffffffffffffffffffffffffffffffffffff16611ca0611578565b73ffffffffffffffffffffffffffffffffffffffff1614611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced90614503565b60405180910390fd5b6000611d00610cbb565b90506014548282611d119190614756565b1115611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4990614603565b60405180910390fd5b60005b82811015611d8557611d72848284611d6d9190614756565b612612565b8080611d7d9061499b565b915050611d55565b50505050565b611d93610974565b73ffffffffffffffffffffffffffffffffffffffff16611db1611578565b73ffffffffffffffffffffffffffffffffffffffff1614611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe90614503565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90614303565b60405180910390fd5b611e808161254c565b50565b60128054611e9090614969565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebc90614969565b8015611f095780601f10611ede57610100808354040283529160200191611f09565b820191906000526020600020905b815481529060010190602001808311611eec57829003601f168201915b505050505081565b60155481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fe257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ff25750611ff1826128cb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120d883611318565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215890614403565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161218790614196565b60006040518083038185875af1925050503d80600081146121c4576040519150601f19603f3d011682016040523d82523d6000602084013e6121c9565b606091505b505090508061220d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612204906143e3565b60405180910390fd5b505050565b600061221d82611ff9565b61225c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225390614423565b60405180910390fd5b600061226783611318565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122d657508373ffffffffffffffffffffffffffffffffffffffff166122be84610a88565b73ffffffffffffffffffffffffffffffffffffffff16145b806122e757506122e68185611be6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661231082611318565b73ffffffffffffffffffffffffffffffffffffffff1614612366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235d90614523565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd90614363565b60405180910390fd5b6123e1838383612935565b6123ec600082612065565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461243c9190614837565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124939190614756565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61262c828260405180602001604052806000815250612a49565b5050565b61263b8484846122f0565b61264784848484612aa4565b612686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267d906142e3565b60405180910390fd5b50505050565b60606011805461269b90614969565b80601f01602080910402602001604051908101604052809291908181526020018280546126c790614969565b80156127145780601f106126e957610100808354040283529160200191612714565b820191906000526020600020905b8154815290600101906020018083116126f757829003601f168201915b5050505050905090565b60606000821415612766576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128c6565b600082905060005b600082146127985780806127819061499b565b915050600a8261279191906147ac565b915061276e565b60008167ffffffffffffffff8111156127da577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561280c5781602001600182028036833780820191505090505b5090505b600085146128bf576001826128259190614837565b9150600a8561283491906149e4565b60306128409190614756565b60f81b81838151811061287c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128b891906147ac565b9450612810565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612940838383612c3b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129835761297e81612c40565b6129c2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129c1576129c08382612c89565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a0557612a0081612df6565b612a44565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a4357612a428282612f39565b5b5b505050565b612a538383612fb8565b612a606000848484612aa4565b612a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a96906142e3565b60405180910390fd5b505050565b6000612ac58473ffffffffffffffffffffffffffffffffffffffff16613186565b15612c2e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aee610974565b8786866040518563ffffffff1660e01b8152600401612b1094939291906141ef565b602060405180830381600087803b158015612b2a57600080fd5b505af1925050508015612b5b57506040513d601f19601f82011682018060405250810190612b589190613583565b60015b612bde573d8060008114612b8b576040519150601f19603f3d011682016040523d82523d6000602084013e612b90565b606091505b50600081511415612bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcd906142e3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c33565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c96846113ca565b612ca09190614837565b9050600060076000848152602001908152602001600020549050818114612d85576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e0a9190614837565b9050600060096000848152602001908152602001600020549050600060088381548110612e60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612ea8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612f44836113ca565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301f906144c3565b60405180910390fd5b61303181611ff9565b15613071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306890614323565b60405180910390fd5b61307d60008383612935565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130cd9190614756565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131a590614969565b90600052602060002090601f0160209004810192826131c7576000855561320e565b82601f106131e057805160ff191683800117855561320e565b8280016001018555821561320e579182015b8281111561320d5782518255916020019190600101906131f2565b5b50905061321b919061321f565b5090565b5b80821115613238576000816000905550600101613220565b5090565b600061324f61324a8461466f565b61463e565b90508281526020810184848401111561326757600080fd5b613272848285614927565b509392505050565b600061328d6132888461469f565b61463e565b9050828152602081018484840111156132a557600080fd5b6132b0848285614927565b509392505050565b6000813590506132c781614ae2565b92915050565b6000813590506132dc81614af9565b92915050565b6000813590506132f181614b10565b92915050565b60008135905061330681614b27565b92915050565b60008151905061331b81614b27565b92915050565b600082601f83011261333257600080fd5b813561334284826020860161323c565b91505092915050565b600082601f83011261335c57600080fd5b813561336c84826020860161327a565b91505092915050565b60008135905061338481614b3e565b92915050565b60006020828403121561339c57600080fd5b60006133aa848285016132b8565b91505092915050565b6000602082840312156133c557600080fd5b60006133d3848285016132cd565b91505092915050565b600080604083850312156133ef57600080fd5b60006133fd858286016132b8565b925050602061340e858286016132b8565b9150509250929050565b60008060006060848603121561342d57600080fd5b600061343b868287016132b8565b935050602061344c868287016132b8565b925050604061345d86828701613375565b9150509250925092565b6000806000806080858703121561347d57600080fd5b600061348b878288016132b8565b945050602061349c878288016132b8565b93505060406134ad87828801613375565b925050606085013567ffffffffffffffff8111156134ca57600080fd5b6134d687828801613321565b91505092959194509250565b600080604083850312156134f557600080fd5b6000613503858286016132b8565b9250506020613514858286016132e2565b9150509250929050565b6000806040838503121561353157600080fd5b600061353f858286016132b8565b925050602061355085828601613375565b9150509250929050565b60006020828403121561356c57600080fd5b600061357a848285016132f7565b91505092915050565b60006020828403121561359557600080fd5b60006135a38482850161330c565b91505092915050565b6000602082840312156135be57600080fd5b600082013567ffffffffffffffff8111156135d857600080fd5b6135e48482850161334b565b91505092915050565b6000602082840312156135ff57600080fd5b600061360d84828501613375565b91505092915050565b60006136228383614154565b60208301905092915050565b613637816148f1565b82525050565b6136468161486b565b82525050565b6000613657826146df565b613661818561470d565b935061366c836146cf565b8060005b8381101561369d5781516136848882613616565b975061368f83614700565b925050600181019050613670565b5085935050505092915050565b6136b38161488f565b82525050565b60006136c4826146ea565b6136ce818561471e565b93506136de818560208601614936565b6136e781614ad1565b840191505092915050565b60006136fd826146f5565b613707818561473a565b9350613717818560208601614936565b61372081614ad1565b840191505092915050565b6000613736826146f5565b613740818561474b565b9350613750818560208601614936565b80840191505092915050565b6000613769602b8361473a565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006137cf60328361473a565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061383560268361473a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061389b601c8361473a565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006138db60268361473a565b91507f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008301527f73686172657300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061394160248361473a565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139a760198361473a565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006139e760208361473a565b91507f47656e6572616c2073616c6520686173206e6f742073746172746564207965746000830152602082019050919050565b6000613a2760438361473a565b91507f596f752063616e206d696e742061206d6178696d756d206f662032302046617360008301527f7420466f6f6420416c7061636164616272617a20706572207472616e7361637460208301527f696f6e00000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613ab3603a8361473a565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000613b19601d8361473a565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b6000613b59602c8361473a565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613bbf602b8361473a565b91507f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008301527f647565207061796d656e740000000000000000000000000000000000000000006020830152604082019050919050565b6000613c2560388361473a565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613c8b602a8361473a565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cf160298361473a565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d5760208361473a565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613d97602c8361473a565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613dfd60208361473a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613e3d60298361473a565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ea3602f8361473a565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613f0960338361473a565b91507f457863656564732063757272656e74204661737420466f6f6420416c7061636160008301527f64616272617a20737570706c79206c696d6974000000000000000000000000006020830152604082019050919050565b6000613f6f60218361473a565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fd560198361473a565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b600061401560008361472f565b9150600082019050919050565b600061402f60318361473a565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614095602c8361473a565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006140fb602d8361473a565b91507f45786365656473206d6178696d756d204661737420466f6f6420416c7061636160008301527f64616272617a20737570706c79000000000000000000000000000000000000006020830152604082019050919050565b61415d816148e7565b82525050565b61416c816148e7565b82525050565b600061417e828561372b565b915061418a828461372b565b91508190509392505050565b60006141a182614008565b9150819050919050565b60006020820190506141c0600083018461363d565b92915050565b60006040820190506141db600083018561362e565b6141e86020830184614163565b9392505050565b6000608082019050614204600083018761363d565b614211602083018661363d565b61421e6040830185614163565b818103606083015261423081846136b9565b905095945050505050565b6000604082019050614250600083018561363d565b61425d6020830184614163565b9392505050565b6000602082019050818103600083015261427e818461364c565b905092915050565b600060208201905061429b60008301846136aa565b92915050565b600060208201905081810360008301526142bb81846136f2565b905092915050565b600060208201905081810360008301526142dc8161375c565b9050919050565b600060208201905081810360008301526142fc816137c2565b9050919050565b6000602082019050818103600083015261431c81613828565b9050919050565b6000602082019050818103600083015261433c8161388e565b9050919050565b6000602082019050818103600083015261435c816138ce565b9050919050565b6000602082019050818103600083015261437c81613934565b9050919050565b6000602082019050818103600083015261439c8161399a565b9050919050565b600060208201905081810360008301526143bc816139da565b9050919050565b600060208201905081810360008301526143dc81613a1a565b9050919050565b600060208201905081810360008301526143fc81613aa6565b9050919050565b6000602082019050818103600083015261441c81613b0c565b9050919050565b6000602082019050818103600083015261443c81613b4c565b9050919050565b6000602082019050818103600083015261445c81613bb2565b9050919050565b6000602082019050818103600083015261447c81613c18565b9050919050565b6000602082019050818103600083015261449c81613c7e565b9050919050565b600060208201905081810360008301526144bc81613ce4565b9050919050565b600060208201905081810360008301526144dc81613d4a565b9050919050565b600060208201905081810360008301526144fc81613d8a565b9050919050565b6000602082019050818103600083015261451c81613df0565b9050919050565b6000602082019050818103600083015261453c81613e30565b9050919050565b6000602082019050818103600083015261455c81613e96565b9050919050565b6000602082019050818103600083015261457c81613efc565b9050919050565b6000602082019050818103600083015261459c81613f62565b9050919050565b600060208201905081810360008301526145bc81613fc8565b9050919050565b600060208201905081810360008301526145dc81614022565b9050919050565b600060208201905081810360008301526145fc81614088565b9050919050565b6000602082019050818103600083015261461c816140ee565b9050919050565b60006020820190506146386000830184614163565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561466557614664614aa2565b5b8060405250919050565b600067ffffffffffffffff82111561468a57614689614aa2565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156146ba576146b9614aa2565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614761826148e7565b915061476c836148e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147a1576147a0614a15565b5b828201905092915050565b60006147b7826148e7565b91506147c2836148e7565b9250826147d2576147d1614a44565b5b828204905092915050565b60006147e8826148e7565b91506147f3836148e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561482c5761482b614a15565b5b828202905092915050565b6000614842826148e7565b915061484d836148e7565b9250828210156148605761485f614a15565b5b828203905092915050565b6000614876826148c7565b9050919050565b6000614888826148c7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006148fc82614903565b9050919050565b600061490e82614915565b9050919050565b6000614920826148c7565b9050919050565b82818337600083830152505050565b60005b83811015614954578082015181840152602081019050614939565b83811115614963576000848401525b50505050565b6000600282049050600182168061498157607f821691505b6020821081141561499557614994614a73565b5b50919050565b60006149a6826148e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149d9576149d8614a15565b5b600182019050919050565b60006149ef826148e7565b91506149fa836148e7565b925082614a0a57614a09614a44565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614aeb8161486b565b8114614af657600080fd5b50565b614b028161487d565b8114614b0d57600080fd5b50565b614b198161488f565b8114614b2457600080fd5b50565b614b308161489b565b8114614b3b57600080fd5b50565b614b47816148e7565b8114614b5257600080fd5b5056fea264697066735822122083aa943a43d3332465f475cd9d19b6f9af85f988b09a097d959a2e6c14a7f37d64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102295760003560e01c8063715018a611610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c51461088f578063eef892aa146108cc578063f2fde38b146108f5578063f7134a251461091e578063fa1acb5c1461094957610270565b8063b88d4fde14610796578063c87b56dd146107bf578063ce7c2ac2146107fc578063cfc86f7b14610839578063e33b7de31461086457610270565b806395d89b41116100f257806395d89b41146106be5780639852595c146106e957806398d5fdca14610726578063a0712d6814610751578063a22cb4651461076d57610270565b8063715018a6146106165780638b83209b1461062d5780638da5cb5b1461066a57806391b7f5ed1461069557610270565b806332cb6b0c116101b15780634f6ccce7116101755780634f6ccce71461050b5780634fce1de31461054857806355f804b3146105735780636352211e1461059c57806370a08231146105d957610270565b806332cb6b0c146104265780633a98ef39146104515780633e0a322d1461047c57806342842e0e146104a5578063438b6300146104ce57610270565b806310969523116101f8578063109695231461034357806318160ddd1461036c578063191655871461039757806323b872dd146103c05780632f745c59146103e957610270565b806301ffc9a71461027557806306fdde03146102b2578063081812fc146102dd578063095ea7b31461031a57610270565b36610270577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610257610974565b3460405161026692919061423b565b60405180910390a1005b600080fd5b34801561028157600080fd5b5061029c6004803603810190610297919061355a565b61097c565b6040516102a99190614286565b60405180910390f35b3480156102be57600080fd5b506102c76109f6565b6040516102d491906142a1565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff91906135ed565b610a88565b60405161031191906141ab565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c919061351e565b610b0d565b005b34801561034f57600080fd5b5061036a600480360381019061036591906135ac565b610c25565b005b34801561037857600080fd5b50610381610cbb565b60405161038e9190614623565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906133b3565b610cc8565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613418565b610f30565b005b3480156103f557600080fd5b50610410600480360381019061040b919061351e565b610f90565b60405161041d9190614623565b60405180910390f35b34801561043257600080fd5b5061043b611035565b6040516104489190614623565b60405180910390f35b34801561045d57600080fd5b5061046661103b565b6040516104739190614623565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906135ed565b611045565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613418565b6110cb565b005b3480156104da57600080fd5b506104f560048036038101906104f0919061338a565b6110eb565b6040516105029190614264565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906135ed565b6111e5565b60405161053f9190614623565b60405180910390f35b34801561055457600080fd5b5061055d61127c565b60405161056a9190614623565b60405180910390f35b34801561057f57600080fd5b5061059a600480360381019061059591906135ac565b611282565b005b3480156105a857600080fd5b506105c360048036038101906105be91906135ed565b611318565b6040516105d091906141ab565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb919061338a565b6113ca565b60405161060d9190614623565b60405180910390f35b34801561062257600080fd5b5061062b611482565b005b34801561063957600080fd5b50610654600480360381019061064f91906135ed565b61150a565b60405161066191906141ab565b60405180910390f35b34801561067657600080fd5b5061067f611578565b60405161068c91906141ab565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b791906135ed565b6115a2565b005b3480156106ca57600080fd5b506106d3611628565b6040516106e091906142a1565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b919061338a565b6116ba565b60405161071d9190614623565b60405180910390f35b34801561073257600080fd5b5061073b611703565b6040516107489190614623565b60405180910390f35b61076b600480360381019061076691906135ed565b61170d565b005b34801561077957600080fd5b50610794600480360381019061078f91906134e2565b61187b565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613467565b6119fc565b005b3480156107cb57600080fd5b506107e660048036038101906107e191906135ed565b611a5e565b6040516107f391906142a1565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e919061338a565b611b05565b6040516108309190614623565b60405180910390f35b34801561084557600080fd5b5061084e611b4e565b60405161085b91906142a1565b60405180910390f35b34801561087057600080fd5b50610879611bdc565b6040516108869190614623565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b191906133dc565b611be6565b6040516108c39190614286565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee919061351e565b611c7a565b005b34801561090157600080fd5b5061091c6004803603810190610917919061338a565b611d8b565b005b34801561092a57600080fd5b50610933611e83565b60405161094091906142a1565b60405180910390f35b34801561095557600080fd5b5061095e611f11565b60405161096b9190614623565b60405180910390f35b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ef57506109ee82611f17565b5b9050919050565b606060008054610a0590614969565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3190614969565b8015610a7e5780601f10610a5357610100808354040283529160200191610a7e565b820191906000526020600020905b815481529060010190602001808311610a6157829003601f168201915b5050505050905090565b6000610a9382611ff9565b610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac9906144e3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1882611318565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090614583565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba8610974565b73ffffffffffffffffffffffffffffffffffffffff161480610bd75750610bd681610bd1610974565b611be6565b5b610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d90614463565b60405180910390fd5b610c208383612065565b505050565b610c2d610974565b73ffffffffffffffffffffffffffffffffffffffff16610c4b611578565b73ffffffffffffffffffffffffffffffffffffffff1614610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890614503565b60405180910390fd5b8060129080519060200190610cb7929190613199565b5050565b6000600880549050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190614343565b60405180910390fd5b6000600c5447610d5a9190614756565b90506000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600b54600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610dec91906147dd565b610df691906147ac565b610e009190614837565b90506000811415610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90614443565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e919190614756565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c54610ee29190614756565b600c81905550610ef2838261211e565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610f239291906141c6565b60405180910390a1505050565b610f41610f3b610974565b82612212565b610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f77906145c3565b60405180910390fd5b610f8b8383836122f0565b505050565b6000610f9b836113ca565b8210610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd3906142c3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60145481565b6000600b54905090565b61104d610974565b73ffffffffffffffffffffffffffffffffffffffff1661106b611578565b73ffffffffffffffffffffffffffffffffffffffff16146110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890614503565b60405180910390fd5b8060158190555050565b6110e6838383604051806020016040528060008152506119fc565b505050565b606060006110f8836113ca565b905060008167ffffffffffffffff81111561113c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561116a5781602001602082028036833780820191505090505b50905060005b828110156111da576111828582610f90565b8282815181106111bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806111d29061499b565b915050611170565b508092505050919050565b60006111ef610cbb565b8210611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906145e3565b60405180910390fd5b6008828154811061126a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60135481565b61128a610974565b73ffffffffffffffffffffffffffffffffffffffff166112a8611578565b73ffffffffffffffffffffffffffffffffffffffff16146112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f590614503565b60405180910390fd5b8060119080519060200190611314929190613199565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b8906144a3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290614483565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61148a610974565b73ffffffffffffffffffffffffffffffffffffffff166114a8611578565b73ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590614503565b60405180910390fd5b611508600061254c565b565b6000600f8281548110611546577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115aa610974565b73ffffffffffffffffffffffffffffffffffffffff166115c8611578565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590614503565b60405180910390fd5b8060108190555050565b60606001805461163790614969565b80601f016020809104026020016040519081016040528092919081815260200182805461166390614969565b80156116b05780601f10611685576101008083540402835291602001916116b0565b820191906000526020600020905b81548152906001019060200180831161169357829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601054905090565b6000611717610cbb565b905060155442101561175e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611755906143a3565b60405180910390fd5b6013548211156117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906143c3565b60405180910390fd5b60145482826117b29190614756565b11156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90614563565b60405180910390fd5b8160105461180191906147dd565b341015611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a906145a3565b60405180910390fd5b60005b828110156118765761186333828461185e9190614756565b612612565b808061186e9061499b565b915050611846565b505050565b611883610974565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890614383565b60405180910390fd5b80600560006118fe610974565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ab610974565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f09190614286565b60405180910390a35050565b611a0d611a07610974565b83612212565b611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a43906145c3565b60405180910390fd5b611a5884848484612630565b50505050565b6060611a6982611ff9565b611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90614543565b60405180910390fd5b6000611ab261268c565b90506000815111611ad25760405180602001604052806000815250611afd565b80611adc8461271e565b604051602001611aed929190614172565b6040516020818303038152906040525b915050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60118054611b5b90614969565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8790614969565b8015611bd45780601f10611ba957610100808354040283529160200191611bd4565b820191906000526020600020905b815481529060010190602001808311611bb757829003601f168201915b505050505081565b6000600c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c82610974565b73ffffffffffffffffffffffffffffffffffffffff16611ca0611578565b73ffffffffffffffffffffffffffffffffffffffff1614611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced90614503565b60405180910390fd5b6000611d00610cbb565b90506014548282611d119190614756565b1115611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4990614603565b60405180910390fd5b60005b82811015611d8557611d72848284611d6d9190614756565b612612565b8080611d7d9061499b565b915050611d55565b50505050565b611d93610974565b73ffffffffffffffffffffffffffffffffffffffff16611db1611578565b73ffffffffffffffffffffffffffffffffffffffff1614611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe90614503565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90614303565b60405180910390fd5b611e808161254c565b50565b60128054611e9090614969565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebc90614969565b8015611f095780601f10611ede57610100808354040283529160200191611f09565b820191906000526020600020905b815481529060010190602001808311611eec57829003601f168201915b505050505081565b60155481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fe257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ff25750611ff1826128cb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120d883611318565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215890614403565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161218790614196565b60006040518083038185875af1925050503d80600081146121c4576040519150601f19603f3d011682016040523d82523d6000602084013e6121c9565b606091505b505090508061220d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612204906143e3565b60405180910390fd5b505050565b600061221d82611ff9565b61225c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225390614423565b60405180910390fd5b600061226783611318565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122d657508373ffffffffffffffffffffffffffffffffffffffff166122be84610a88565b73ffffffffffffffffffffffffffffffffffffffff16145b806122e757506122e68185611be6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661231082611318565b73ffffffffffffffffffffffffffffffffffffffff1614612366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235d90614523565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd90614363565b60405180910390fd5b6123e1838383612935565b6123ec600082612065565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461243c9190614837565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124939190614756565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61262c828260405180602001604052806000815250612a49565b5050565b61263b8484846122f0565b61264784848484612aa4565b612686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267d906142e3565b60405180910390fd5b50505050565b60606011805461269b90614969565b80601f01602080910402602001604051908101604052809291908181526020018280546126c790614969565b80156127145780601f106126e957610100808354040283529160200191612714565b820191906000526020600020905b8154815290600101906020018083116126f757829003601f168201915b5050505050905090565b60606000821415612766576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128c6565b600082905060005b600082146127985780806127819061499b565b915050600a8261279191906147ac565b915061276e565b60008167ffffffffffffffff8111156127da577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561280c5781602001600182028036833780820191505090505b5090505b600085146128bf576001826128259190614837565b9150600a8561283491906149e4565b60306128409190614756565b60f81b81838151811061287c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128b891906147ac565b9450612810565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612940838383612c3b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129835761297e81612c40565b6129c2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129c1576129c08382612c89565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a0557612a0081612df6565b612a44565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a4357612a428282612f39565b5b5b505050565b612a538383612fb8565b612a606000848484612aa4565b612a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a96906142e3565b60405180910390fd5b505050565b6000612ac58473ffffffffffffffffffffffffffffffffffffffff16613186565b15612c2e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aee610974565b8786866040518563ffffffff1660e01b8152600401612b1094939291906141ef565b602060405180830381600087803b158015612b2a57600080fd5b505af1925050508015612b5b57506040513d601f19601f82011682018060405250810190612b589190613583565b60015b612bde573d8060008114612b8b576040519150601f19603f3d011682016040523d82523d6000602084013e612b90565b606091505b50600081511415612bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcd906142e3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c33565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c96846113ca565b612ca09190614837565b9050600060076000848152602001908152602001600020549050818114612d85576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e0a9190614837565b9050600060096000848152602001908152602001600020549050600060088381548110612e60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612ea8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612f44836113ca565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301f906144c3565b60405180910390fd5b61303181611ff9565b15613071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306890614323565b60405180910390fd5b61307d60008383612935565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130cd9190614756565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131a590614969565b90600052602060002090601f0160209004810192826131c7576000855561320e565b82601f106131e057805160ff191683800117855561320e565b8280016001018555821561320e579182015b8281111561320d5782518255916020019190600101906131f2565b5b50905061321b919061321f565b5090565b5b80821115613238576000816000905550600101613220565b5090565b600061324f61324a8461466f565b61463e565b90508281526020810184848401111561326757600080fd5b613272848285614927565b509392505050565b600061328d6132888461469f565b61463e565b9050828152602081018484840111156132a557600080fd5b6132b0848285614927565b509392505050565b6000813590506132c781614ae2565b92915050565b6000813590506132dc81614af9565b92915050565b6000813590506132f181614b10565b92915050565b60008135905061330681614b27565b92915050565b60008151905061331b81614b27565b92915050565b600082601f83011261333257600080fd5b813561334284826020860161323c565b91505092915050565b600082601f83011261335c57600080fd5b813561336c84826020860161327a565b91505092915050565b60008135905061338481614b3e565b92915050565b60006020828403121561339c57600080fd5b60006133aa848285016132b8565b91505092915050565b6000602082840312156133c557600080fd5b60006133d3848285016132cd565b91505092915050565b600080604083850312156133ef57600080fd5b60006133fd858286016132b8565b925050602061340e858286016132b8565b9150509250929050565b60008060006060848603121561342d57600080fd5b600061343b868287016132b8565b935050602061344c868287016132b8565b925050604061345d86828701613375565b9150509250925092565b6000806000806080858703121561347d57600080fd5b600061348b878288016132b8565b945050602061349c878288016132b8565b93505060406134ad87828801613375565b925050606085013567ffffffffffffffff8111156134ca57600080fd5b6134d687828801613321565b91505092959194509250565b600080604083850312156134f557600080fd5b6000613503858286016132b8565b9250506020613514858286016132e2565b9150509250929050565b6000806040838503121561353157600080fd5b600061353f858286016132b8565b925050602061355085828601613375565b9150509250929050565b60006020828403121561356c57600080fd5b600061357a848285016132f7565b91505092915050565b60006020828403121561359557600080fd5b60006135a38482850161330c565b91505092915050565b6000602082840312156135be57600080fd5b600082013567ffffffffffffffff8111156135d857600080fd5b6135e48482850161334b565b91505092915050565b6000602082840312156135ff57600080fd5b600061360d84828501613375565b91505092915050565b60006136228383614154565b60208301905092915050565b613637816148f1565b82525050565b6136468161486b565b82525050565b6000613657826146df565b613661818561470d565b935061366c836146cf565b8060005b8381101561369d5781516136848882613616565b975061368f83614700565b925050600181019050613670565b5085935050505092915050565b6136b38161488f565b82525050565b60006136c4826146ea565b6136ce818561471e565b93506136de818560208601614936565b6136e781614ad1565b840191505092915050565b60006136fd826146f5565b613707818561473a565b9350613717818560208601614936565b61372081614ad1565b840191505092915050565b6000613736826146f5565b613740818561474b565b9350613750818560208601614936565b80840191505092915050565b6000613769602b8361473a565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006137cf60328361473a565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061383560268361473a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061389b601c8361473a565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006138db60268361473a565b91507f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008301527f73686172657300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061394160248361473a565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139a760198361473a565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006139e760208361473a565b91507f47656e6572616c2073616c6520686173206e6f742073746172746564207965746000830152602082019050919050565b6000613a2760438361473a565b91507f596f752063616e206d696e742061206d6178696d756d206f662032302046617360008301527f7420466f6f6420416c7061636164616272617a20706572207472616e7361637460208301527f696f6e00000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613ab3603a8361473a565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000613b19601d8361473a565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b6000613b59602c8361473a565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613bbf602b8361473a565b91507f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008301527f647565207061796d656e740000000000000000000000000000000000000000006020830152604082019050919050565b6000613c2560388361473a565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613c8b602a8361473a565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cf160298361473a565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d5760208361473a565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613d97602c8361473a565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613dfd60208361473a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613e3d60298361473a565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ea3602f8361473a565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613f0960338361473a565b91507f457863656564732063757272656e74204661737420466f6f6420416c7061636160008301527f64616272617a20737570706c79206c696d6974000000000000000000000000006020830152604082019050919050565b6000613f6f60218361473a565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fd560198361473a565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b600061401560008361472f565b9150600082019050919050565b600061402f60318361473a565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614095602c8361473a565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006140fb602d8361473a565b91507f45786365656473206d6178696d756d204661737420466f6f6420416c7061636160008301527f64616272617a20737570706c79000000000000000000000000000000000000006020830152604082019050919050565b61415d816148e7565b82525050565b61416c816148e7565b82525050565b600061417e828561372b565b915061418a828461372b565b91508190509392505050565b60006141a182614008565b9150819050919050565b60006020820190506141c0600083018461363d565b92915050565b60006040820190506141db600083018561362e565b6141e86020830184614163565b9392505050565b6000608082019050614204600083018761363d565b614211602083018661363d565b61421e6040830185614163565b818103606083015261423081846136b9565b905095945050505050565b6000604082019050614250600083018561363d565b61425d6020830184614163565b9392505050565b6000602082019050818103600083015261427e818461364c565b905092915050565b600060208201905061429b60008301846136aa565b92915050565b600060208201905081810360008301526142bb81846136f2565b905092915050565b600060208201905081810360008301526142dc8161375c565b9050919050565b600060208201905081810360008301526142fc816137c2565b9050919050565b6000602082019050818103600083015261431c81613828565b9050919050565b6000602082019050818103600083015261433c8161388e565b9050919050565b6000602082019050818103600083015261435c816138ce565b9050919050565b6000602082019050818103600083015261437c81613934565b9050919050565b6000602082019050818103600083015261439c8161399a565b9050919050565b600060208201905081810360008301526143bc816139da565b9050919050565b600060208201905081810360008301526143dc81613a1a565b9050919050565b600060208201905081810360008301526143fc81613aa6565b9050919050565b6000602082019050818103600083015261441c81613b0c565b9050919050565b6000602082019050818103600083015261443c81613b4c565b9050919050565b6000602082019050818103600083015261445c81613bb2565b9050919050565b6000602082019050818103600083015261447c81613c18565b9050919050565b6000602082019050818103600083015261449c81613c7e565b9050919050565b600060208201905081810360008301526144bc81613ce4565b9050919050565b600060208201905081810360008301526144dc81613d4a565b9050919050565b600060208201905081810360008301526144fc81613d8a565b9050919050565b6000602082019050818103600083015261451c81613df0565b9050919050565b6000602082019050818103600083015261453c81613e30565b9050919050565b6000602082019050818103600083015261455c81613e96565b9050919050565b6000602082019050818103600083015261457c81613efc565b9050919050565b6000602082019050818103600083015261459c81613f62565b9050919050565b600060208201905081810360008301526145bc81613fc8565b9050919050565b600060208201905081810360008301526145dc81614022565b9050919050565b600060208201905081810360008301526145fc81614088565b9050919050565b6000602082019050818103600083015261461c816140ee565b9050919050565b60006020820190506146386000830184614163565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561466557614664614aa2565b5b8060405250919050565b600067ffffffffffffffff82111561468a57614689614aa2565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156146ba576146b9614aa2565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614761826148e7565b915061476c836148e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147a1576147a0614a15565b5b828201905092915050565b60006147b7826148e7565b91506147c2836148e7565b9250826147d2576147d1614a44565b5b828204905092915050565b60006147e8826148e7565b91506147f3836148e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561482c5761482b614a15565b5b828202905092915050565b6000614842826148e7565b915061484d836148e7565b9250828210156148605761485f614a15565b5b828203905092915050565b6000614876826148c7565b9050919050565b6000614888826148c7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006148fc82614903565b9050919050565b600061490e82614915565b9050919050565b6000614920826148c7565b9050919050565b82818337600083830152505050565b60005b83811015614954578082015181840152602081019050614939565b83811115614963576000848401525b50505050565b6000600282049050600182168061498157607f821691505b6020821081141561499557614994614a73565b5b50919050565b60006149a6826148e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149d9576149d8614a15565b5b600182019050919050565b60006149ef826148e7565b91506149fa836148e7565b925082614a0a57614a09614a44565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614aeb8161486b565b8114614af657600080fd5b50565b614b028161487d565b8114614b0d57600080fd5b50565b614b198161488f565b8114614b2457600080fd5b50565b614b308161489b565b8114614b3b57600080fd5b50565b614b47816148e7565b8114614b5257600080fd5b5056fea264697066735822122083aa943a43d3332465f475cd9d19b6f9af85f988b09a097d959a2e6c14a7f37d64736f6c63430008000033

Deployed Bytecode Sourcemap

55380:2763:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52808:40;52824:12;:10;:12::i;:::-;52838:9;52808:40;;;;;;;:::i;:::-;;;;;;;;55380:2763;;;;;34750:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21639:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23198:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22721:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57546:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35390:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54014:613;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24088:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35058:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55690:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52939:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58033:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24498:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57683:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35580:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55635:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57339:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21333:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21063:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42553:94;;;;;;;;;;;;;:::i;:::-;;53714:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41902:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57118:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21808:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53514:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57457:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56108:622;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23491:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24754:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21983:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53310:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55545:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53124:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23857:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56738:325;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42802:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55590:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55731:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16096:98;16149:7;16176:10;16169:17;;16096:98;:::o;34750:224::-;34852:4;34891:35;34876:50;;;:11;:50;;;;:90;;;;34930:36;34954:11;34930:23;:36::i;:::-;34876:90;34869:97;;34750:224;;;:::o;21639:100::-;21693:13;21726:5;21719:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21639:100;:::o;23198:221::-;23274:7;23302:16;23310:7;23302;:16::i;:::-;23294:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23387:15;:24;23403:7;23387:24;;;;;;;;;;;;;;;;;;;;;23380:31;;23198:221;;;:::o;22721:411::-;22802:13;22818:23;22833:7;22818:14;:23::i;:::-;22802:39;;22866:5;22860:11;;:2;:11;;;;22852:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22960:5;22944:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22969:37;22986:5;22993:12;:10;:12::i;:::-;22969:16;:37::i;:::-;22944:62;22922:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23103:21;23112:2;23116:7;23103:8;:21::i;:::-;22721:411;;;:::o;57546:129::-;42133:12;:10;:12::i;:::-;42122:23;;:7;:5;:7::i;:::-;:23;;;42114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57652:15:::1;57632:17;:35;;;;;;;;;;;;:::i;:::-;;57546:129:::0;:::o;35390:113::-;35451:7;35478:10;:17;;;;35471:24;;35390:113;:::o;54014:613::-;54109:1;54090:7;:16;54098:7;54090:16;;;;;;;;;;;;;;;;:20;54082:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;54166:21;54214:14;;54190:21;:38;;;;:::i;:::-;54166:62;;54239:15;54309:9;:18;54319:7;54309:18;;;;;;;;;;;;;;;;54294:12;;54274:7;:16;54282:7;54274:16;;;;;;;;;;;;;;;;54258:13;:32;;;;:::i;:::-;54257:49;;;;:::i;:::-;:70;;;;:::i;:::-;54239:88;;54359:1;54348:7;:12;;54340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54463:7;54442:9;:18;54452:7;54442:18;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;54421:9;:18;54431:7;54421:18;;;;;;;;;;;;;;;:49;;;;54515:7;54498:14;;:24;;;;:::i;:::-;54481:14;:41;;;;54535:35;54553:7;54562;54535:17;:35::i;:::-;54586:33;54602:7;54611;54586:33;;;;;;;:::i;:::-;;;;;;;;54014:613;;;:::o;24088:339::-;24283:41;24302:12;:10;:12::i;:::-;24316:7;24283:18;:41::i;:::-;24275:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24391:28;24401:4;24407:2;24411:7;24391:9;:28::i;:::-;24088:339;;;:::o;35058:256::-;35155:7;35191:23;35208:5;35191:16;:23::i;:::-;35183:5;:31;35175:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35280:12;:19;35293:5;35280:19;;;;;;;;;;;;;;;:26;35300:5;35280:26;;;;;;;;;;;;35273:33;;35058:256;;;;:::o;55690:32::-;;;;:::o;52939:91::-;52983:7;53010:12;;53003:19;;52939:91;:::o;58033:107::-;42133:12;:10;:12::i;:::-;42122:23;;:7;:5;:7::i;:::-;:23;;;42114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58119:13:::1;58106:10;:26;;;;58033:107:::0;:::o;24498:185::-;24636:39;24653:4;24659:2;24663:7;24636:39;;;;;;;;;;;;:16;:39::i;:::-;24498:185;;;:::o;57683:342::-;57742:16;57771:18;57792:17;57802:6;57792:9;:17::i;:::-;57771:38;;57822:25;57864:10;57850:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57822:53;;57890:9;57886:106;57905:10;57901:1;:14;57886:106;;;57950:30;57970:6;57978:1;57950:19;:30::i;:::-;57936:8;57945:1;57936:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;57917:3;;;;;:::i;:::-;;;;57886:106;;;;58009:8;58002:15;;;;57683:342;;;:::o;35580:233::-;35655:7;35691:30;:28;:30::i;:::-;35683:5;:38;35675:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35788:10;35799:5;35788:17;;;;;;;;;;;;;;;;;;;;;;;;35781:24;;35580:233;;;:::o;55635:46::-;;;;:::o;57339:110::-;42133:12;:10;:12::i;:::-;42122:23;;:7;:5;:7::i;:::-;:23;;;42114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57430:11:::1;57414:13;:27;;;;;;;;;;;;:::i;:::-;;57339:110:::0;:::o;21333:239::-;21405:7;21425:13;21441:7;:16;21449:7;21441:16;;;;;;;;;;;;;;;;;;;;;21425:32;;21493:1;21476:19;;:5;:19;;;;21468:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21559:5;21552:12;;;21333:239;;;:::o;21063:208::-;21135:7;21180:1;21163:19;;:5;:19;;;;21155:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21247:9;:16;21257:5;21247:16;;;;;;;;;;;;;;;;21240:23;;21063:208;;;:::o;42553:94::-;42133:12;:10;:12::i;:::-;42122:23;;:7;:5;:7::i;:::-;:23;;;42114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42618:21:::1;42636:1;42618:9;:21::i;:::-;42553:94::o:0;53714:100::-;53765:7;53792;53800:5;53792:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53785:21;;53714:100;;;:::o;41902:87::-;41948:7;41975:6;;;;;;;;;;;41968:13;;41902:87;:::o;57118:91::-;42133:12;:10;:12::i;:::-;42122:23;;:7;:5;:7::i;:::-;:23;;;42114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57192:9:::1;57183:6;:18;;;;57118:91:::0;:::o;21808:104::-;21864:13;21897:7;21890:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21808:104;:::o;53514:109::-;53570:7;53597:9;:18;53607:7;53597:18;;;;;;;;;;;;;;;;53590:25;;53514:109;;;:::o;57457:81::-;57498:7;57524:6;;57517:13;;57457:81;:::o;56108:622::-;56164:14;56181:13;:11;:13::i;:::-;56164:30;;56233:10;;56214:15;:29;;56205:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;56318:26;;56308:6;:36;;56299:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;56456:10;;56446:6;56437;:15;;;;:::i;:::-;:29;;56428:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;56572:6;56563;;:15;;;;:::i;:::-;56550:9;:28;;56541:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;56634:9;56630:93;56649:6;56645:1;:10;56630:93;;;56676:35;56687:10;56708:1;56699:6;:10;;;;:::i;:::-;56676:9;:35::i;:::-;56657:3;;;;;:::i;:::-;;;;56630:93;;;;56108:622;;:::o;23491:295::-;23606:12;:10;:12::i;:::-;23594:24;;:8;:24;;;;23586:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23706:8;23661:18;:32;23680:12;:10;:12::i;:::-;23661:32;;;;;;;;;;;;;;;:42;23694:8;23661:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23759:8;23730:48;;23745:12;:10;:12::i;:::-;23730:48;;;23769:8;23730:48;;;;;;:::i;:::-;;;;;;;;23491:295;;:::o;24754:328::-;24929:41;24948:12;:10;:12::i;:::-;24962:7;24929:18;:41::i;:::-;24921:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25035:39;25049:4;25055:2;25059:7;25068:5;25035:13;:39::i;:::-;24754:328;;;;:::o;21983:334::-;22056:13;22090:16;22098:7;22090;:16::i;:::-;22082:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:21;22195:10;:8;:10::i;:::-;22171:34;;22247:1;22229:7;22223:21;:25;:86;;;;;;;;;;;;;;;;;22275:7;22284:18;:7;:16;:18::i;:::-;22258:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22223:86;22216:93;;;21983:334;;;:::o;53310:105::-;53364:7;53391;:16;53399:7;53391:16;;;;;;;;;;;;;;;;53384:23;;53310:105;;;:::o;55545:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53124:95::-;53170:7;53197:14;;53190:21;;53124:95;:::o;23857:164::-;23954:4;23978:18;:25;23997:5;23978:25;;;;;;;;;;;;;;;:35;24004:8;23978:35;;;;;;;;;;;;;;;;;;;;;;;;;23971:42;;23857:164;;;;:::o;56738:325::-;42133:12;:10;:12::i;:::-;42122:23;;:7;:5;:7::i;:::-;:23;;;42114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56818:14:::1;56835:13;:11;:13::i;:::-;56818:30;;56886:10;;56876:6;56867;:15;;;;:::i;:::-;:29;;56859:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;56971:9;56967:89;56986:6;56982:1;:10;56967:89;;;57013:31;57023:7;57041:1;57032:6;:10;;;;:::i;:::-;57013:9;:31::i;:::-;56994:3;;;;;:::i;:::-;;;;56967:89;;;;42193:1;56738:325:::0;;:::o;42802:192::-;42133:12;:10;:12::i;:::-;42122:23;;:7;:5;:7::i;:::-;:23;;;42114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42911:1:::1;42891:22;;:8;:22;;;;42883:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42967:19;42977:8;42967:9;:19::i;:::-;42802:192:::0;:::o;55590:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55731:38::-;;;;:::o;20694:305::-;20796:4;20848:25;20833:40;;;:11;:40;;;;:105;;;;20905:33;20890:48;;;:11;:48;;;;20833:105;:158;;;;20955:36;20979:11;20955:23;:36::i;:::-;20833:158;20813:178;;20694:305;;;:::o;26592:127::-;26657:4;26709:1;26681:30;;:7;:16;26689:7;26681:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26674:37;;26592:127;;;:::o;30574:174::-;30676:2;30649:15;:24;30665:7;30649:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30732:7;30728:2;30694:46;;30703:23;30718:7;30703:14;:23::i;:::-;30694:46;;;;;;;;;;;;30574:174;;:::o;9454:317::-;9569:6;9544:21;:31;;9536:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9623:12;9641:9;:14;;9663:6;9641:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9622:52;;;9693:7;9685:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;9454:317;;;:::o;26886:348::-;26979:4;27004:16;27012:7;27004;:16::i;:::-;26996:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27080:13;27096:23;27111:7;27096:14;:23::i;:::-;27080:39;;27149:5;27138:16;;:7;:16;;;:51;;;;27182:7;27158:31;;:20;27170:7;27158:11;:20::i;:::-;:31;;;27138:51;:87;;;;27193:32;27210:5;27217:7;27193:16;:32::i;:::-;27138:87;27130:96;;;26886:348;;;;:::o;29878:578::-;30037:4;30010:31;;:23;30025:7;30010:14;:23::i;:::-;:31;;;30002:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30120:1;30106:16;;:2;:16;;;;30098:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30176:39;30197:4;30203:2;30207:7;30176:20;:39::i;:::-;30280:29;30297:1;30301:7;30280:8;:29::i;:::-;30341:1;30322:9;:15;30332:4;30322:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30370:1;30353:9;:13;30363:2;30353:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30401:2;30382:7;:16;30390:7;30382:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30440:7;30436:2;30421:27;;30430:4;30421:27;;;;;;;;;;;;29878:578;;;:::o;43002:173::-;43058:16;43077:6;;;;;;;;;;;43058:25;;43103:8;43094:6;;:17;;;;;;;;;;;;;;;;;;43158:8;43127:40;;43148:8;43127:40;;;;;;;;;;;;43002:173;;:::o;27576:110::-;27652:26;27662:2;27666:7;27652:26;;;;;;;;;;;;:9;:26::i;:::-;27576:110;;:::o;25964:315::-;26121:28;26131:4;26137:2;26141:7;26121:9;:28::i;:::-;26168:48;26191:4;26197:2;26201:7;26210:5;26168:22;:48::i;:::-;26160:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25964:315;;;;:::o;57217:114::-;57277:13;57310;57303:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57217:114;:::o;16629:723::-;16685:13;16915:1;16906:5;:10;16902:53;;;16933:10;;;;;;;;;;;;;;;;;;;;;16902:53;16965:12;16980:5;16965:20;;16996:14;17021:78;17036:1;17028:4;:9;17021:78;;17054:8;;;;;:::i;:::-;;;;17085:2;17077:10;;;;;:::i;:::-;;;17021:78;;;17109:19;17141:6;17131:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17109:39;;17159:154;17175:1;17166:5;:10;17159:154;;17203:1;17193:11;;;;;:::i;:::-;;;17270:2;17262:5;:10;;;;:::i;:::-;17249:2;:24;;;;:::i;:::-;17236:39;;17219:6;17226;17219:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17299:2;17290:11;;;;;:::i;:::-;;;17159:154;;;17337:6;17323:21;;;;;16629:723;;;;:::o;19192:157::-;19277:4;19316:25;19301:40;;;:11;:40;;;;19294:47;;19192:157;;;:::o;36426:589::-;36570:45;36597:4;36603:2;36607:7;36570:26;:45::i;:::-;36648:1;36632:18;;:4;:18;;;36628:187;;;36667:40;36699:7;36667:31;:40::i;:::-;36628:187;;;36737:2;36729:10;;:4;:10;;;36725:90;;36756:47;36789:4;36795:7;36756:32;:47::i;:::-;36725:90;36628:187;36843:1;36829:16;;:2;:16;;;36825:183;;;36862:45;36899:7;36862:36;:45::i;:::-;36825:183;;;36935:4;36929:10;;:2;:10;;;36925:83;;36956:40;36984:2;36988:7;36956:27;:40::i;:::-;36925:83;36825:183;36426:589;;;:::o;27913:321::-;28043:18;28049:2;28053:7;28043:5;:18::i;:::-;28094:54;28125:1;28129:2;28133:7;28142:5;28094:22;:54::i;:::-;28072:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27913:321;;;:::o;31313:799::-;31468:4;31489:15;:2;:13;;;:15::i;:::-;31485:620;;;31541:2;31525:36;;;31562:12;:10;:12::i;:::-;31576:4;31582:7;31591:5;31525:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31521:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31784:1;31767:6;:13;:18;31763:272;;;31810:60;;;;;;;;;;:::i;:::-;;;;;;;;31763:272;31985:6;31979:13;31970:6;31966:2;31962:15;31955:38;31521:529;31658:41;;;31648:51;;;:6;:51;;;;31641:58;;;;;31485:620;32089:4;32082:11;;31313:799;;;;;;;:::o;32684:126::-;;;;:::o;37738:164::-;37842:10;:17;;;;37815:15;:24;37831:7;37815:24;;;;;;;;;;;:44;;;;37870:10;37886:7;37870:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37738:164;:::o;38529:988::-;38795:22;38845:1;38820:22;38837:4;38820:16;:22::i;:::-;:26;;;;:::i;:::-;38795:51;;38857:18;38878:17;:26;38896:7;38878:26;;;;;;;;;;;;38857:47;;39025:14;39011:10;:28;39007:328;;39056:19;39078:12;:18;39091:4;39078:18;;;;;;;;;;;;;;;:34;39097:14;39078:34;;;;;;;;;;;;39056:56;;39162:11;39129:12;:18;39142:4;39129:18;;;;;;;;;;;;;;;:30;39148:10;39129:30;;;;;;;;;;;:44;;;;39279:10;39246:17;:30;39264:11;39246:30;;;;;;;;;;;:43;;;;39007:328;;39431:17;:26;39449:7;39431:26;;;;;;;;;;;39424:33;;;39475:12;:18;39488:4;39475:18;;;;;;;;;;;;;;;:34;39494:14;39475:34;;;;;;;;;;;39468:41;;;38529:988;;;;:::o;39812:1079::-;40065:22;40110:1;40090:10;:17;;;;:21;;;;:::i;:::-;40065:46;;40122:18;40143:15;:24;40159:7;40143:24;;;;;;;;;;;;40122:45;;40494:19;40516:10;40527:14;40516:26;;;;;;;;;;;;;;;;;;;;;;;;40494:48;;40580:11;40555:10;40566;40555:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40691:10;40660:15;:28;40676:11;40660:28;;;;;;;;;;;:41;;;;40832:15;:24;40848:7;40832:24;;;;;;;;;;;40825:31;;;40867:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39812:1079;;;;:::o;37316:221::-;37401:14;37418:20;37435:2;37418:16;:20::i;:::-;37401:37;;37476:7;37449:12;:16;37462:2;37449:16;;;;;;;;;;;;;;;:24;37466:6;37449:24;;;;;;;;;;;:34;;;;37523:6;37494:17;:26;37512:7;37494:26;;;;;;;;;;;:35;;;;37316:221;;;:::o;28570:382::-;28664:1;28650:16;;:2;:16;;;;28642:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28723:16;28731:7;28723;:16::i;:::-;28722:17;28714:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28785:45;28814:1;28818:2;28822:7;28785:20;:45::i;:::-;28860:1;28843:9;:13;28853:2;28843:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28891:2;28872:7;:16;28880:7;28872:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28936:7;28932:2;28911:33;;28928:1;28911:33;;;;;;;;;;;;28570:382;;:::o;8132:387::-;8192:4;8400:12;8467:7;8455:20;8447:28;;8510:1;8503:4;:8;8496:15;;;8132:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:155::-;;942:6;929:20;920:29;;958:41;993:5;958:41;:::i;:::-;910:95;;;;:::o;1011:133::-;;1092:6;1079:20;1070:29;;1108:30;1132:5;1108:30;:::i;:::-;1060:84;;;;:::o;1150:137::-;;1233:6;1220:20;1211:29;;1249:32;1275:5;1249:32;:::i;:::-;1201:86;;;;:::o;1293:141::-;;1380:6;1374:13;1365:22;;1396:32;1422:5;1396:32;:::i;:::-;1355:79;;;;:::o;1453:271::-;;1557:3;1550:4;1542:6;1538:17;1534:27;1524:2;;1575:1;1572;1565:12;1524:2;1615:6;1602:20;1640:78;1714:3;1706:6;1699:4;1691:6;1687:17;1640:78;:::i;:::-;1631:87;;1514:210;;;;;:::o;1744:273::-;;1849:3;1842:4;1834:6;1830:17;1826:27;1816:2;;1867:1;1864;1857:12;1816:2;1907:6;1894:20;1932:79;2007:3;1999:6;1992:4;1984:6;1980:17;1932:79;:::i;:::-;1923:88;;1806:211;;;;;:::o;2023:139::-;;2107:6;2094:20;2085:29;;2123:33;2150:5;2123:33;:::i;:::-;2075:87;;;;:::o;2168:262::-;;2276:2;2264:9;2255:7;2251:23;2247:32;2244:2;;;2292:1;2289;2282:12;2244:2;2335:1;2360:53;2405:7;2396:6;2385:9;2381:22;2360:53;:::i;:::-;2350:63;;2306:117;2234:196;;;;:::o;2436:278::-;;2552:2;2540:9;2531:7;2527:23;2523:32;2520:2;;;2568:1;2565;2558:12;2520:2;2611:1;2636:61;2689:7;2680:6;2669:9;2665:22;2636:61;:::i;:::-;2626:71;;2582:125;2510:204;;;;:::o;2720:407::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2861:1;2858;2851:12;2813:2;2904:1;2929:53;2974:7;2965:6;2954:9;2950:22;2929:53;:::i;:::-;2919:63;;2875:117;3031:2;3057:53;3102:7;3093:6;3082:9;3078:22;3057:53;:::i;:::-;3047:63;;3002:118;2803:324;;;;;:::o;3133:552::-;;;;3275:2;3263:9;3254:7;3250:23;3246:32;3243:2;;;3291:1;3288;3281:12;3243:2;3334:1;3359:53;3404:7;3395:6;3384:9;3380:22;3359:53;:::i;:::-;3349:63;;3305:117;3461:2;3487:53;3532:7;3523:6;3512:9;3508:22;3487:53;:::i;:::-;3477:63;;3432:118;3589:2;3615:53;3660:7;3651:6;3640:9;3636:22;3615:53;:::i;:::-;3605:63;;3560:118;3233:452;;;;;:::o;3691:809::-;;;;;3859:3;3847:9;3838:7;3834:23;3830:33;3827:2;;;3876:1;3873;3866:12;3827:2;3919:1;3944:53;3989:7;3980:6;3969:9;3965:22;3944:53;:::i;:::-;3934:63;;3890:117;4046:2;4072:53;4117:7;4108:6;4097:9;4093:22;4072:53;:::i;:::-;4062:63;;4017:118;4174:2;4200:53;4245:7;4236:6;4225:9;4221:22;4200:53;:::i;:::-;4190:63;;4145:118;4330:2;4319:9;4315:18;4302:32;4361:18;4353:6;4350:30;4347:2;;;4393:1;4390;4383:12;4347:2;4421:62;4475:7;4466:6;4455:9;4451:22;4421:62;:::i;:::-;4411:72;;4273:220;3817:683;;;;;;;:::o;4506:401::-;;;4628:2;4616:9;4607:7;4603:23;4599:32;4596:2;;;4644:1;4641;4634:12;4596:2;4687:1;4712:53;4757:7;4748:6;4737:9;4733:22;4712:53;:::i;:::-;4702:63;;4658:117;4814:2;4840:50;4882:7;4873:6;4862:9;4858:22;4840:50;:::i;:::-;4830:60;;4785:115;4586:321;;;;;:::o;4913:407::-;;;5038:2;5026:9;5017:7;5013:23;5009:32;5006:2;;;5054:1;5051;5044:12;5006:2;5097:1;5122:53;5167:7;5158:6;5147:9;5143:22;5122:53;:::i;:::-;5112:63;;5068:117;5224:2;5250:53;5295:7;5286:6;5275:9;5271:22;5250:53;:::i;:::-;5240:63;;5195:118;4996:324;;;;;:::o;5326:260::-;;5433:2;5421:9;5412:7;5408:23;5404:32;5401:2;;;5449:1;5446;5439:12;5401:2;5492:1;5517:52;5561:7;5552:6;5541:9;5537:22;5517:52;:::i;:::-;5507:62;;5463:116;5391:195;;;;:::o;5592:282::-;;5710:2;5698:9;5689:7;5685:23;5681:32;5678:2;;;5726:1;5723;5716:12;5678:2;5769:1;5794:63;5849:7;5840:6;5829:9;5825:22;5794:63;:::i;:::-;5784:73;;5740:127;5668:206;;;;:::o;5880:375::-;;5998:2;5986:9;5977:7;5973:23;5969:32;5966:2;;;6014:1;6011;6004:12;5966:2;6085:1;6074:9;6070:17;6057:31;6115:18;6107:6;6104:30;6101:2;;;6147:1;6144;6137:12;6101:2;6175:63;6230:7;6221:6;6210:9;6206:22;6175:63;:::i;:::-;6165:73;;6028:220;5956:299;;;;:::o;6261:262::-;;6369:2;6357:9;6348:7;6344:23;6340:32;6337:2;;;6385:1;6382;6375:12;6337:2;6428:1;6453:53;6498:7;6489:6;6478:9;6474:22;6453:53;:::i;:::-;6443:63;;6399:117;6327:196;;;;:::o;6529:179::-;;6619:46;6661:3;6653:6;6619:46;:::i;:::-;6697:4;6692:3;6688:14;6674:28;;6609:99;;;;:::o;6714:147::-;6809:45;6848:5;6809:45;:::i;:::-;6804:3;6797:58;6787:74;;:::o;6867:118::-;6954:24;6972:5;6954:24;:::i;:::-;6949:3;6942:37;6932:53;;:::o;7021:732::-;;7169:54;7217:5;7169:54;:::i;:::-;7239:86;7318:6;7313:3;7239:86;:::i;:::-;7232:93;;7349:56;7399:5;7349:56;:::i;:::-;7428:7;7459:1;7444:284;7469:6;7466:1;7463:13;7444:284;;;7545:6;7539:13;7572:63;7631:3;7616:13;7572:63;:::i;:::-;7565:70;;7658:60;7711:6;7658:60;:::i;:::-;7648:70;;7504:224;7491:1;7488;7484:9;7479:14;;7444:284;;;7448:14;7744:3;7737:10;;7145:608;;;;;;;:::o;7759:109::-;7840:21;7855:5;7840:21;:::i;:::-;7835:3;7828:34;7818:50;;:::o;7874:360::-;;7988:38;8020:5;7988:38;:::i;:::-;8042:70;8105:6;8100:3;8042:70;:::i;:::-;8035:77;;8121:52;8166:6;8161:3;8154:4;8147:5;8143:16;8121:52;:::i;:::-;8198:29;8220:6;8198:29;:::i;:::-;8193:3;8189:39;8182:46;;7964:270;;;;;:::o;8240:364::-;;8356:39;8389:5;8356:39;:::i;:::-;8411:71;8475:6;8470:3;8411:71;:::i;:::-;8404:78;;8491:52;8536:6;8531:3;8524:4;8517:5;8513:16;8491:52;:::i;:::-;8568:29;8590:6;8568:29;:::i;:::-;8563:3;8559:39;8552:46;;8332:272;;;;;:::o;8610:377::-;;8744:39;8777:5;8744:39;:::i;:::-;8799:89;8881:6;8876:3;8799:89;:::i;:::-;8792:96;;8897:52;8942:6;8937:3;8930:4;8923:5;8919:16;8897:52;:::i;:::-;8974:6;8969:3;8965:16;8958:23;;8720:267;;;;;:::o;8993:375::-;;9156:67;9220:2;9215:3;9156:67;:::i;:::-;9149:74;;9253:34;9249:1;9244:3;9240:11;9233:55;9319:13;9314:2;9309:3;9305:12;9298:35;9359:2;9354:3;9350:12;9343:19;;9139:229;;;:::o;9374:382::-;;9537:67;9601:2;9596:3;9537:67;:::i;:::-;9530:74;;9634:34;9630:1;9625:3;9621:11;9614:55;9700:20;9695:2;9690:3;9686:12;9679:42;9747:2;9742:3;9738:12;9731:19;;9520:236;;;:::o;9762:370::-;;9925:67;9989:2;9984:3;9925:67;:::i;:::-;9918:74;;10022:34;10018:1;10013:3;10009:11;10002:55;10088:8;10083:2;10078:3;10074:12;10067:30;10123:2;10118:3;10114:12;10107:19;;9908:224;;;:::o;10138:326::-;;10301:67;10365:2;10360:3;10301:67;:::i;:::-;10294:74;;10398:30;10394:1;10389:3;10385:11;10378:51;10455:2;10450:3;10446:12;10439:19;;10284:180;;;:::o;10470:370::-;;10633:67;10697:2;10692:3;10633:67;:::i;:::-;10626:74;;10730:34;10726:1;10721:3;10717:11;10710:55;10796:8;10791:2;10786:3;10782:12;10775:30;10831:2;10826:3;10822:12;10815:19;;10616:224;;;:::o;10846:368::-;;11009:67;11073:2;11068:3;11009:67;:::i;:::-;11002:74;;11106:34;11102:1;11097:3;11093:11;11086:55;11172:6;11167:2;11162:3;11158:12;11151:28;11205:2;11200:3;11196:12;11189:19;;10992:222;;;:::o;11220:323::-;;11383:67;11447:2;11442:3;11383:67;:::i;:::-;11376:74;;11480:27;11476:1;11471:3;11467:11;11460:48;11534:2;11529:3;11525:12;11518:19;;11366:177;;;:::o;11549:330::-;;11712:67;11776:2;11771:3;11712:67;:::i;:::-;11705:74;;11809:34;11805:1;11800:3;11796:11;11789:55;11870:2;11865:3;11861:12;11854:19;;11695:184;;;:::o;11885:433::-;;12048:67;12112:2;12107:3;12048:67;:::i;:::-;12041:74;;12145:34;12141:1;12136:3;12132:11;12125:55;12211:34;12206:2;12201:3;12197:12;12190:56;12277:5;12272:2;12267:3;12263:12;12256:27;12309:2;12304:3;12300:12;12293:19;;12031:287;;;:::o;12324:390::-;;12487:67;12551:2;12546:3;12487:67;:::i;:::-;12480:74;;12584:34;12580:1;12575:3;12571:11;12564:55;12650:28;12645:2;12640:3;12636:12;12629:50;12705:2;12700:3;12696:12;12689:19;;12470:244;;;:::o;12720:327::-;;12883:67;12947:2;12942:3;12883:67;:::i;:::-;12876:74;;12980:31;12976:1;12971:3;12967:11;12960:52;13038:2;13033:3;13029:12;13022:19;;12866:181;;;:::o;13053:376::-;;13216:67;13280:2;13275:3;13216:67;:::i;:::-;13209:74;;13313:34;13309:1;13304:3;13300:11;13293:55;13379:14;13374:2;13369:3;13365:12;13358:36;13420:2;13415:3;13411:12;13404:19;;13199:230;;;:::o;13435:375::-;;13598:67;13662:2;13657:3;13598:67;:::i;:::-;13591:74;;13695:34;13691:1;13686:3;13682:11;13675:55;13761:13;13756:2;13751:3;13747:12;13740:35;13801:2;13796:3;13792:12;13785:19;;13581:229;;;:::o;13816:388::-;;13979:67;14043:2;14038:3;13979:67;:::i;:::-;13972:74;;14076:34;14072:1;14067:3;14063:11;14056:55;14142:26;14137:2;14132:3;14128:12;14121:48;14195:2;14190:3;14186:12;14179:19;;13962:242;;;:::o;14210:374::-;;14373:67;14437:2;14432:3;14373:67;:::i;:::-;14366:74;;14470:34;14466:1;14461:3;14457:11;14450:55;14536:12;14531:2;14526:3;14522:12;14515:34;14575:2;14570:3;14566:12;14559:19;;14356:228;;;:::o;14590:373::-;;14753:67;14817:2;14812:3;14753:67;:::i;:::-;14746:74;;14850:34;14846:1;14841:3;14837:11;14830:55;14916:11;14911:2;14906:3;14902:12;14895:33;14954:2;14949:3;14945:12;14938:19;;14736:227;;;:::o;14969:330::-;;15132:67;15196:2;15191:3;15132:67;:::i;:::-;15125:74;;15229:34;15225:1;15220:3;15216:11;15209:55;15290:2;15285:3;15281:12;15274:19;;15115:184;;;:::o;15305:376::-;;15468:67;15532:2;15527:3;15468:67;:::i;:::-;15461:74;;15565:34;15561:1;15556:3;15552:11;15545:55;15631:14;15626:2;15621:3;15617:12;15610:36;15672:2;15667:3;15663:12;15656:19;;15451:230;;;:::o;15687:330::-;;15850:67;15914:2;15909:3;15850:67;:::i;:::-;15843:74;;15947:34;15943:1;15938:3;15934:11;15927:55;16008:2;16003:3;15999:12;15992:19;;15833:184;;;:::o;16023:373::-;;16186:67;16250:2;16245:3;16186:67;:::i;:::-;16179:74;;16283:34;16279:1;16274:3;16270:11;16263:55;16349:11;16344:2;16339:3;16335:12;16328:33;16387:2;16382:3;16378:12;16371:19;;16169:227;;;:::o;16402:379::-;;16565:67;16629:2;16624:3;16565:67;:::i;:::-;16558:74;;16662:34;16658:1;16653:3;16649:11;16642:55;16728:17;16723:2;16718:3;16714:12;16707:39;16772:2;16767:3;16763:12;16756:19;;16548:233;;;:::o;16787:383::-;;16950:67;17014:2;17009:3;16950:67;:::i;:::-;16943:74;;17047:34;17043:1;17038:3;17034:11;17027:55;17113:21;17108:2;17103:3;17099:12;17092:43;17161:2;17156:3;17152:12;17145:19;;16933:237;;;:::o;17176:365::-;;17339:67;17403:2;17398:3;17339:67;:::i;:::-;17332:74;;17436:34;17432:1;17427:3;17423:11;17416:55;17502:3;17497:2;17492:3;17488:12;17481:25;17532:2;17527:3;17523:12;17516:19;;17322:219;;;:::o;17547:323::-;;17710:67;17774:2;17769:3;17710:67;:::i;:::-;17703:74;;17807:27;17803:1;17798:3;17794:11;17787:48;17861:2;17856:3;17852:12;17845:19;;17693:177;;;:::o;17876:297::-;;18056:83;18137:1;18132:3;18056:83;:::i;:::-;18049:90;;18165:1;18160:3;18156:11;18149:18;;18039:134;;;:::o;18179:381::-;;18342:67;18406:2;18401:3;18342:67;:::i;:::-;18335:74;;18439:34;18435:1;18430:3;18426:11;18419:55;18505:19;18500:2;18495:3;18491:12;18484:41;18551:2;18546:3;18542:12;18535:19;;18325:235;;;:::o;18566:376::-;;18729:67;18793:2;18788:3;18729:67;:::i;:::-;18722:74;;18826:34;18822:1;18817:3;18813:11;18806:55;18892:14;18887:2;18882:3;18878:12;18871:36;18933:2;18928:3;18924:12;18917:19;;18712:230;;;:::o;18948:377::-;;19111:67;19175:2;19170:3;19111:67;:::i;:::-;19104:74;;19208:34;19204:1;19199:3;19195:11;19188:55;19274:15;19269:2;19264:3;19260:12;19253:37;19316:2;19311:3;19307:12;19300:19;;19094:231;;;:::o;19331:108::-;19408:24;19426:5;19408:24;:::i;:::-;19403:3;19396:37;19386:53;;:::o;19445:118::-;19532:24;19550:5;19532:24;:::i;:::-;19527:3;19520:37;19510:53;;:::o;19569:435::-;;19771:95;19862:3;19853:6;19771:95;:::i;:::-;19764:102;;19883:95;19974:3;19965:6;19883:95;:::i;:::-;19876:102;;19995:3;19988:10;;19753:251;;;;;:::o;20010:379::-;;20216:147;20359:3;20216:147;:::i;:::-;20209:154;;20380:3;20373:10;;20198:191;;;:::o;20395:222::-;;20526:2;20515:9;20511:18;20503:26;;20539:71;20607:1;20596:9;20592:17;20583:6;20539:71;:::i;:::-;20493:124;;;;:::o;20623:348::-;;20790:2;20779:9;20775:18;20767:26;;20803:79;20879:1;20868:9;20864:17;20855:6;20803:79;:::i;:::-;20892:72;20960:2;20949:9;20945:18;20936:6;20892:72;:::i;:::-;20757:214;;;;;:::o;20977:640::-;;21210:3;21199:9;21195:19;21187:27;;21224:71;21292:1;21281:9;21277:17;21268:6;21224:71;:::i;:::-;21305:72;21373:2;21362:9;21358:18;21349:6;21305:72;:::i;:::-;21387;21455:2;21444:9;21440:18;21431:6;21387:72;:::i;:::-;21506:9;21500:4;21496:20;21491:2;21480:9;21476:18;21469:48;21534:76;21605:4;21596:6;21534:76;:::i;:::-;21526:84;;21177:440;;;;;;;:::o;21623:332::-;;21782:2;21771:9;21767:18;21759:26;;21795:71;21863:1;21852:9;21848:17;21839:6;21795:71;:::i;:::-;21876:72;21944:2;21933:9;21929:18;21920:6;21876:72;:::i;:::-;21749:206;;;;;:::o;21961:373::-;;22142:2;22131:9;22127:18;22119:26;;22191:9;22185:4;22181:20;22177:1;22166:9;22162:17;22155:47;22219:108;22322:4;22313:6;22219:108;:::i;:::-;22211:116;;22109:225;;;;:::o;22340:210::-;;22465:2;22454:9;22450:18;22442:26;;22478:65;22540:1;22529:9;22525:17;22516:6;22478:65;:::i;:::-;22432:118;;;;:::o;22556:313::-;;22707:2;22696:9;22692:18;22684:26;;22756:9;22750:4;22746:20;22742:1;22731:9;22727:17;22720:47;22784:78;22857:4;22848:6;22784:78;:::i;:::-;22776:86;;22674:195;;;;:::o;22875:419::-;;23079:2;23068:9;23064:18;23056:26;;23128:9;23122:4;23118:20;23114:1;23103:9;23099:17;23092:47;23156:131;23282:4;23156:131;:::i;:::-;23148:139;;23046:248;;;:::o;23300:419::-;;23504:2;23493:9;23489:18;23481:26;;23553:9;23547:4;23543:20;23539:1;23528:9;23524:17;23517:47;23581:131;23707:4;23581:131;:::i;:::-;23573:139;;23471:248;;;:::o;23725:419::-;;23929:2;23918:9;23914:18;23906:26;;23978:9;23972:4;23968:20;23964:1;23953:9;23949:17;23942:47;24006:131;24132:4;24006:131;:::i;:::-;23998:139;;23896:248;;;:::o;24150:419::-;;24354:2;24343:9;24339:18;24331:26;;24403:9;24397:4;24393:20;24389:1;24378:9;24374:17;24367:47;24431:131;24557:4;24431:131;:::i;:::-;24423:139;;24321:248;;;:::o;24575:419::-;;24779:2;24768:9;24764:18;24756:26;;24828:9;24822:4;24818:20;24814:1;24803:9;24799:17;24792:47;24856:131;24982:4;24856:131;:::i;:::-;24848:139;;24746:248;;;:::o;25000:419::-;;25204:2;25193:9;25189:18;25181:26;;25253:9;25247:4;25243:20;25239:1;25228:9;25224:17;25217:47;25281:131;25407:4;25281:131;:::i;:::-;25273:139;;25171:248;;;:::o;25425:419::-;;25629:2;25618:9;25614:18;25606:26;;25678:9;25672:4;25668:20;25664:1;25653:9;25649:17;25642:47;25706:131;25832:4;25706:131;:::i;:::-;25698:139;;25596:248;;;:::o;25850:419::-;;26054:2;26043:9;26039:18;26031:26;;26103:9;26097:4;26093:20;26089:1;26078:9;26074:17;26067:47;26131:131;26257:4;26131:131;:::i;:::-;26123:139;;26021:248;;;:::o;26275:419::-;;26479:2;26468:9;26464:18;26456:26;;26528:9;26522:4;26518:20;26514:1;26503:9;26499:17;26492:47;26556:131;26682:4;26556:131;:::i;:::-;26548:139;;26446:248;;;:::o;26700:419::-;;26904:2;26893:9;26889:18;26881:26;;26953:9;26947:4;26943:20;26939:1;26928:9;26924:17;26917:47;26981:131;27107:4;26981:131;:::i;:::-;26973:139;;26871:248;;;:::o;27125:419::-;;27329:2;27318:9;27314:18;27306:26;;27378:9;27372:4;27368:20;27364:1;27353:9;27349:17;27342:47;27406:131;27532:4;27406:131;:::i;:::-;27398:139;;27296:248;;;:::o;27550:419::-;;27754:2;27743:9;27739:18;27731:26;;27803:9;27797:4;27793:20;27789:1;27778:9;27774:17;27767:47;27831:131;27957:4;27831:131;:::i;:::-;27823:139;;27721:248;;;:::o;27975:419::-;;28179:2;28168:9;28164:18;28156:26;;28228:9;28222:4;28218:20;28214:1;28203:9;28199:17;28192:47;28256:131;28382:4;28256:131;:::i;:::-;28248:139;;28146:248;;;:::o;28400:419::-;;28604:2;28593:9;28589:18;28581:26;;28653:9;28647:4;28643:20;28639:1;28628:9;28624:17;28617:47;28681:131;28807:4;28681:131;:::i;:::-;28673:139;;28571:248;;;:::o;28825:419::-;;29029:2;29018:9;29014:18;29006:26;;29078:9;29072:4;29068:20;29064:1;29053:9;29049:17;29042:47;29106:131;29232:4;29106:131;:::i;:::-;29098:139;;28996:248;;;:::o;29250:419::-;;29454:2;29443:9;29439:18;29431:26;;29503:9;29497:4;29493:20;29489:1;29478:9;29474:17;29467:47;29531:131;29657:4;29531:131;:::i;:::-;29523:139;;29421:248;;;:::o;29675:419::-;;29879:2;29868:9;29864:18;29856:26;;29928:9;29922:4;29918:20;29914:1;29903:9;29899:17;29892:47;29956:131;30082:4;29956:131;:::i;:::-;29948:139;;29846:248;;;:::o;30100:419::-;;30304:2;30293:9;30289:18;30281:26;;30353:9;30347:4;30343:20;30339:1;30328:9;30324:17;30317:47;30381:131;30507:4;30381:131;:::i;:::-;30373:139;;30271:248;;;:::o;30525:419::-;;30729:2;30718:9;30714:18;30706:26;;30778:9;30772:4;30768:20;30764:1;30753:9;30749:17;30742:47;30806:131;30932:4;30806:131;:::i;:::-;30798:139;;30696:248;;;:::o;30950:419::-;;31154:2;31143:9;31139:18;31131:26;;31203:9;31197:4;31193:20;31189:1;31178:9;31174:17;31167:47;31231:131;31357:4;31231:131;:::i;:::-;31223:139;;31121:248;;;:::o;31375:419::-;;31579:2;31568:9;31564:18;31556:26;;31628:9;31622:4;31618:20;31614:1;31603:9;31599:17;31592:47;31656:131;31782:4;31656:131;:::i;:::-;31648:139;;31546:248;;;:::o;31800:419::-;;32004:2;31993:9;31989:18;31981:26;;32053:9;32047:4;32043:20;32039:1;32028:9;32024:17;32017:47;32081:131;32207:4;32081:131;:::i;:::-;32073:139;;31971:248;;;:::o;32225:419::-;;32429:2;32418:9;32414:18;32406:26;;32478:9;32472:4;32468:20;32464:1;32453:9;32449:17;32442:47;32506:131;32632:4;32506:131;:::i;:::-;32498:139;;32396:248;;;:::o;32650:419::-;;32854:2;32843:9;32839:18;32831:26;;32903:9;32897:4;32893:20;32889:1;32878:9;32874:17;32867:47;32931:131;33057:4;32931:131;:::i;:::-;32923:139;;32821:248;;;:::o;33075:419::-;;33279:2;33268:9;33264:18;33256:26;;33328:9;33322:4;33318:20;33314:1;33303:9;33299:17;33292:47;33356:131;33482:4;33356:131;:::i;:::-;33348:139;;33246:248;;;:::o;33500:419::-;;33704:2;33693:9;33689:18;33681:26;;33753:9;33747:4;33743:20;33739:1;33728:9;33724:17;33717:47;33781:131;33907:4;33781:131;:::i;:::-;33773:139;;33671:248;;;:::o;33925:419::-;;34129:2;34118:9;34114:18;34106:26;;34178:9;34172:4;34168:20;34164:1;34153:9;34149:17;34142:47;34206:131;34332:4;34206:131;:::i;:::-;34198:139;;34096:248;;;:::o;34350:222::-;;34481:2;34470:9;34466:18;34458:26;;34494:71;34562:1;34551:9;34547:17;34538:6;34494:71;:::i;:::-;34448:124;;;;:::o;34578:283::-;;34644:2;34638:9;34628:19;;34686:4;34678:6;34674:17;34793:6;34781:10;34778:22;34757:18;34745:10;34742:34;34739:62;34736:2;;;34804:18;;:::i;:::-;34736:2;34844:10;34840:2;34833:22;34618:243;;;;:::o;34867:331::-;;35018:18;35010:6;35007:30;35004:2;;;35040:18;;:::i;:::-;35004:2;35125:4;35121:9;35114:4;35106:6;35102:17;35098:33;35090:41;;35186:4;35180;35176:15;35168:23;;34933:265;;;:::o;35204:332::-;;35356:18;35348:6;35345:30;35342:2;;;35378:18;;:::i;:::-;35342:2;35463:4;35459:9;35452:4;35444:6;35440:17;35436:33;35428:41;;35524:4;35518;35514:15;35506:23;;35271:265;;;:::o;35542:132::-;;35632:3;35624:11;;35662:4;35657:3;35653:14;35645:22;;35614:60;;;:::o;35680:114::-;;35781:5;35775:12;35765:22;;35754:40;;;:::o;35800:98::-;;35885:5;35879:12;35869:22;;35858:40;;;:::o;35904:99::-;;35990:5;35984:12;35974:22;;35963:40;;;:::o;36009:113::-;;36111:4;36106:3;36102:14;36094:22;;36084:38;;;:::o;36128:184::-;;36261:6;36256:3;36249:19;36301:4;36296:3;36292:14;36277:29;;36239:73;;;;:::o;36318:168::-;;36435:6;36430:3;36423:19;36475:4;36470:3;36466:14;36451:29;;36413:73;;;;:::o;36492:147::-;;36630:3;36615:18;;36605:34;;;;:::o;36645:169::-;;36763:6;36758:3;36751:19;36803:4;36798:3;36794:14;36779:29;;36741:73;;;;:::o;36820:148::-;;36959:3;36944:18;;36934:34;;;;:::o;36974:305::-;;37033:20;37051:1;37033:20;:::i;:::-;37028:25;;37067:20;37085:1;37067:20;:::i;:::-;37062:25;;37221:1;37153:66;37149:74;37146:1;37143:81;37140:2;;;37227:18;;:::i;:::-;37140:2;37271:1;37268;37264:9;37257:16;;37018:261;;;;:::o;37285:185::-;;37342:20;37360:1;37342:20;:::i;:::-;37337:25;;37376:20;37394:1;37376:20;:::i;:::-;37371:25;;37415:1;37405:2;;37420:18;;:::i;:::-;37405:2;37462:1;37459;37455:9;37450:14;;37327:143;;;;:::o;37476:348::-;;37539:20;37557:1;37539:20;:::i;:::-;37534:25;;37573:20;37591:1;37573:20;:::i;:::-;37568:25;;37761:1;37693:66;37689:74;37686:1;37683:81;37678:1;37671:9;37664:17;37660:105;37657:2;;;37768:18;;:::i;:::-;37657:2;37816:1;37813;37809:9;37798:20;;37524:300;;;;:::o;37830:191::-;;37890:20;37908:1;37890:20;:::i;:::-;37885:25;;37924:20;37942:1;37924:20;:::i;:::-;37919:25;;37963:1;37960;37957:8;37954:2;;;37968:18;;:::i;:::-;37954:2;38013:1;38010;38006:9;37998:17;;37875:146;;;;:::o;38027:96::-;;38093:24;38111:5;38093:24;:::i;:::-;38082:35;;38072:51;;;:::o;38129:104::-;;38203:24;38221:5;38203:24;:::i;:::-;38192:35;;38182:51;;;:::o;38239:90::-;;38316:5;38309:13;38302:21;38291:32;;38281:48;;;:::o;38335:149::-;;38411:66;38404:5;38400:78;38389:89;;38379:105;;;:::o;38490:126::-;;38567:42;38560:5;38556:54;38545:65;;38535:81;;;:::o;38622:77::-;;38688:5;38677:16;;38667:32;;;:::o;38705:134::-;;38796:37;38827:5;38796:37;:::i;:::-;38783:50;;38773:66;;;:::o;38845:126::-;;38928:37;38959:5;38928:37;:::i;:::-;38915:50;;38905:66;;;:::o;38977:113::-;;39060:24;39078:5;39060:24;:::i;:::-;39047:37;;39037:53;;;:::o;39096:154::-;39180:6;39175:3;39170;39157:30;39242:1;39233:6;39228:3;39224:16;39217:27;39147:103;;;:::o;39256:307::-;39324:1;39334:113;39348:6;39345:1;39342:13;39334:113;;;39433:1;39428:3;39424:11;39418:18;39414:1;39409:3;39405:11;39398:39;39370:2;39367:1;39363:10;39358:15;;39334:113;;;39465:6;39462:1;39459:13;39456:2;;;39545:1;39536:6;39531:3;39527:16;39520:27;39456:2;39305:258;;;;:::o;39569:320::-;;39650:1;39644:4;39640:12;39630:22;;39697:1;39691:4;39687:12;39718:18;39708:2;;39774:4;39766:6;39762:17;39752:27;;39708:2;39836;39828:6;39825:14;39805:18;39802:38;39799:2;;;39855:18;;:::i;:::-;39799:2;39620:269;;;;:::o;39895:233::-;;39957:24;39975:5;39957:24;:::i;:::-;39948:33;;40003:66;39996:5;39993:77;39990:2;;;40073:18;;:::i;:::-;39990:2;40120:1;40113:5;40109:13;40102:20;;39938:190;;;:::o;40134:176::-;;40183:20;40201:1;40183:20;:::i;:::-;40178:25;;40217:20;40235:1;40217:20;:::i;:::-;40212:25;;40256:1;40246:2;;40261:18;;:::i;:::-;40246:2;40302:1;40299;40295:9;40290:14;;40168:142;;;;:::o;40316:180::-;40364:77;40361:1;40354:88;40461:4;40458:1;40451:15;40485:4;40482:1;40475:15;40502:180;40550:77;40547:1;40540:88;40647:4;40644:1;40637:15;40671:4;40668:1;40661:15;40688:180;40736:77;40733:1;40726:88;40833:4;40830:1;40823:15;40857:4;40854:1;40847:15;40874:180;40922:77;40919:1;40912:88;41019:4;41016:1;41009:15;41043:4;41040:1;41033:15;41060:102;;41152:2;41148:7;41143:2;41136:5;41132:14;41128:28;41118:38;;41108:54;;;:::o;41168:122::-;41241:24;41259:5;41241:24;:::i;:::-;41234:5;41231:35;41221:2;;41280:1;41277;41270:12;41221:2;41211:79;:::o;41296:138::-;41377:32;41403:5;41377:32;:::i;:::-;41370:5;41367:43;41357:2;;41424:1;41421;41414:12;41357:2;41347:87;:::o;41440:116::-;41510:21;41525:5;41510:21;:::i;:::-;41503:5;41500:32;41490:2;;41546:1;41543;41536:12;41490:2;41480:76;:::o;41562:120::-;41634:23;41651:5;41634:23;:::i;:::-;41627:5;41624:34;41614:2;;41672:1;41669;41662:12;41614:2;41604:78;:::o;41688:122::-;41761:24;41779:5;41761:24;:::i;:::-;41754:5;41751:35;41741:2;;41800:1;41797;41790:12;41741:2;41731:79;:::o

Swarm Source

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