ETH Price: $3,270.93 (-0.33%)
Gas: 2 Gwei

Token

cracktown.wtf (cracktown)
 

Overview

Max Total Supply

628 cracktown

Holders

624

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 cracktown
0x769a3Fd2e8947837EE48b981621749fF0DA30895
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:
cracktown

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0
// File: cracktown_flat.sol


// File: contracts/cracktown.sol


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




pragma solidity ^0.8.9;

/**
 * @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/Context.sol



pragma solidity ^0.8.9;

/**
 * @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/access/Ownable.sol



pragma solidity ^0.8.9;


/**
 * @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/Address.sol



pragma solidity ^0.8.9;

/**
 * @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/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.8.9;

/**
 * @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/utils/introspection/IERC165.sol



pragma solidity ^0.8.9;

/**
 * @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/utils/introspection/ERC165.sol



pragma solidity ^0.8.9;


/**
 * @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/IERC721.sol



pragma solidity ^0.8.9;


/**
 * @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/extensions/IERC721Metadata.sol



pragma solidity ^0.8.9;


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


pragma solidity >=0.8.9;
// to enable certain compiler features



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;
    
    //Mapping para atribuirle un URI para cada token
    mapping(uint256 => string) internal id_to_URI;

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

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

pragma solidity ^0.8.9;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


pragma solidity ^0.8.9;

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

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.9;

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

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

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

        revert('ERC721A: unable to get token of owner by index');
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)


contract cracktown is ERC721A, Ownable, ReentrancyGuard {
    
    using Strings for uint256;
    
    //declares the maximum amount of tokens that can be minted, total and in presale
    uint256 private maxTotalTokens;
    
    //initial part of the URI for the metadata
    string private _currentBaseURI;
    
    //the amount of reserved mints that have currently been executed by creator and giveaways
    uint private _reservedMints;
    
    //the maximum amount of reserved mints allowed for creator and giveaways
    uint private maxReservedMints = 0;

    //amount of mints that each address has executed
    mapping(address => uint256) public mintsPerAddress;
    
    //current state os sale
    enum State {NoSale, OpenSale}

    State private saleState_;
    
    //declaring initial values for variables
    constructor() ERC721A('cracktown.wtf', 'cracktown') {
        maxTotalTokens = 2222;

        _currentBaseURI = "ipfs://QmNi2uGkvGLpaVgEsTvAs2S7sb1kJ4BrxUG1Vh8THdM9PB/";
    }
    
    //in case somebody accidentaly sends funds or transaction to contract
    receive() payable external {}
    fallback() payable external {
        revert();
    }
    
    //visualize baseURI
    function _baseURI() internal view virtual override returns (string memory) {
        return _currentBaseURI;
    }
    
    //change baseURI in case needed for IPFS
    function changeBaseURI(string memory baseURI_) public onlyOwner {
        _currentBaseURI = baseURI_;
    }

    function setSaleState(uint newSaleState) public onlyOwner {
        require(newSaleState < 2, "Invalid Sale State!");
        if (newSaleState == 0) {
            saleState_ = State.NoSale;
        }
        else {
            saleState_ = State.OpenSale;
        }
    }

    //mint a @param number of NFTs in public sale
    function mint() public nonReentrant {
        require(msg.sender == tx.origin, "Sender is not the same as origin!");
        require(saleState_ == State.OpenSale, "Public Sale in not open yet!");
        require(totalSupply() < maxTotalTokens - (maxReservedMints - _reservedMints), "Not enough NFTs left to mint..");
        require(mintsPerAddress[msg.sender] == 0, "Wallet has already have minted an NFT!");

        _safeMint(msg.sender, 1);
        mintsPerAddress[msg.sender] += 1;
    }
    
    function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) {
        require(_exists(tokenId_), "ERC721Metadata: URI query for nonexistent token");

        tokenId_ += 1;
        string memory baseURI = _baseURI();
        return string(abi.encodePacked(baseURI, tokenId_.toString(), ".json")); 
    }
    
    //reserved NFTs for creator
    function reservedMint(uint number, address recipient) public onlyOwner {
        require(_reservedMints + number <= maxReservedMints, "Not enough Reserved NFTs left to mint..");

        _safeMint(recipient, number);
        mintsPerAddress[recipient] += number;
        _reservedMints += number; 
        
    }
    
    //burn the tokens that have not been sold yet
    function burnTokens() public onlyOwner {
        maxTotalTokens = totalSupply();
    }
    
    //se the current account balance
    function accountBalance() public onlyOwner view returns(uint) {
        return address(this).balance;
    }
    
    //retrieve all funds recieved from minting
    function withdraw() public onlyOwner {
        uint256 balance = accountBalance();
        require(balance > 0, 'No Funds to withdraw, Balance is 0');

        _withdraw(payable(msg.sender), balance); 
    }
    
    //send the percentage of funds to a shareholder´s wallet
    function _withdraw(address payable account, uint256 amount) internal {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }
    
    //to see the total amount of reserved mints left 
    function reservedMintsLeft() public onlyOwner view returns(uint) {
        return maxReservedMints - _reservedMints;
    }
    
    //see current state of sale
    //see the current state of the sale
    function saleState() public view returns(State){
        return saleState_;
    }
    
   
}

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":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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"accountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintsLeft","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":"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":[],"name":"saleState","outputs":[{"internalType":"enum cracktown.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSaleState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600c553480156200001657600080fd5b506040518060400160405280600d81526020017f637261636b746f776e2e777466000000000000000000000000000000000000008152506040518060400160405280600981526020017f637261636b746f776e000000000000000000000000000000000000000000000081525081600190805190602001906200009b929190620001ee565b508060029080519060200190620000b4929190620001ee565b505050620000d7620000cb6200012060201b60201c565b6200012860201b60201c565b60016008819055506108ae60098190555060405180606001604052806036815260200162004ad160369139600a908051906020019062000119929190620001ee565b5062000303565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001fc90620002cd565b90600052602060002090601f0160209004810192826200022057600085556200026c565b82601f106200023b57805160ff19168380011785556200026c565b828001600101855582156200026c579182015b828111156200026b5782518255916020019190600101906200024e565b5b5090506200027b91906200027f565b5090565b5b808211156200029a57600081600090555060010162000280565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002e657607f821691505b60208210811415620002fd57620002fc6200029e565b5b50919050565b6147be80620003136000396000f3fe6080604052600436106101c65760003560e01c806342842e0e116100f75780638da5cb5b11610095578063b88d4fde11610064578063b88d4fde14610625578063c87b56dd1461064e578063e985e9c51461068b578063f2fde38b146106c8576101cd565b80638da5cb5b1461057b57806395d89b41146105a6578063a22cb465146105d1578063b0a1c1c4146105fa576101cd565b8063603f4d52116100d1578063603f4d52146104bf5780636352211e146104ea57806370a0823114610527578063715018a614610564576101cd565b806342842e0e1461042e5780634520e916146104575780634f6ccce714610482576101cd565b806318160ddd116101645780632f745c591161013e5780632f745c59146103745780633023eba6146103b157806339a0c6f9146103ee5780633ccfd60b14610417576101cd565b806318160ddd146102f757806318df64031461032257806323b872dd1461034b576101cd565b8063081812fc116101a0578063081812fc14610251578063084c40881461028e578063095ea7b3146102b75780631249c58b146102e0576101cd565b806301ffc9a7146101d257806306fdde031461020f57806308003f781461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612d84565b6106f1565b6040516102069190612dcc565b60405180910390f35b34801561021b57600080fd5b5061022461083b565b6040516102319190612e80565b60405180910390f35b34801561024657600080fd5b5061024f6108cd565b005b34801561025d57600080fd5b5061027860048036038101906102739190612ed8565b610959565b6040516102859190612f46565b60405180910390f35b34801561029a57600080fd5b506102b560048036038101906102b09190612ed8565b6109de565b005b3480156102c357600080fd5b506102de60048036038101906102d99190612f8d565b610b05565b005b3480156102ec57600080fd5b506102f5610c1e565b005b34801561030357600080fd5b5061030c610ea2565b6040516103199190612fdc565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612ff7565b610eab565b005b34801561035757600080fd5b50610372600480360381019061036d9190613037565b610ff6565b005b34801561038057600080fd5b5061039b60048036038101906103969190612f8d565b611006565b6040516103a89190612fdc565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d3919061308a565b6111f8565b6040516103e59190612fdc565b60405180910390f35b3480156103fa57600080fd5b50610415600480360381019061041091906131ec565b611210565b005b34801561042357600080fd5b5061042c6112a6565b005b34801561043a57600080fd5b5061045560048036038101906104509190613037565b61137e565b005b34801561046357600080fd5b5061046c61139e565b6040516104799190612fdc565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190612ed8565b611431565b6040516104b69190612fdc565b60405180910390f35b3480156104cb57600080fd5b506104d4611484565b6040516104e191906132ac565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190612ed8565b61149b565b60405161051e9190612f46565b60405180910390f35b34801561053357600080fd5b5061054e6004803603810190610549919061308a565b6114b1565b60405161055b9190612fdc565b60405180910390f35b34801561057057600080fd5b5061057961159a565b005b34801561058757600080fd5b50610590611622565b60405161059d9190612f46565b60405180910390f35b3480156105b257600080fd5b506105bb61164c565b6040516105c89190612e80565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f391906132f3565b6116de565b005b34801561060657600080fd5b5061060f61185f565b60405161061c9190612fdc565b60405180910390f35b34801561063157600080fd5b5061064c600480360381019061064791906133d4565b6118e3565b005b34801561065a57600080fd5b5061067560048036038101906106709190612ed8565b61193f565b6040516106829190612e80565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad9190613457565b6119d6565b6040516106bf9190612dcc565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea919061308a565b611a6a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107bc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610834575061083382611b62565b5b9050919050565b60606001805461084a906134c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610876906134c6565b80156108c35780601f10610898576101008083540402835291602001916108c3565b820191906000526020600020905b8154815290600101906020018083116108a657829003601f168201915b5050505050905090565b6108d5611bcc565b73ffffffffffffffffffffffffffffffffffffffff166108f3611622565b73ffffffffffffffffffffffffffffffffffffffff1614610949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094090613544565b60405180910390fd5b610951610ea2565b600981905550565b600061096482611bd4565b6109a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099a906135d6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6109e6611bcc565b73ffffffffffffffffffffffffffffffffffffffff16610a04611622565b73ffffffffffffffffffffffffffffffffffffffff1614610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5190613544565b60405180910390fd5b60028110610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490613642565b60405180910390fd5b6000811415610ad6576000600e60006101000a81548160ff02191690836001811115610acc57610acb613235565b5b0217905550610b02565b6001600e60006101000a81548160ff02191690836001811115610afc57610afb613235565b5b02179055505b50565b6000610b108261149b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b78906136d4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba0611bcc565b73ffffffffffffffffffffffffffffffffffffffff161480610bcf5750610bce81610bc9611bcc565b6119d6565b5b610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0590613766565b60405180910390fd5b610c19838383611be1565b505050565b60026008541415610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b906137d2565b60405180910390fd5b60026008819055503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190613864565b60405180910390fd5b600180811115610ced57610cec613235565b5b600e60009054906101000a900460ff166001811115610d0f57610d0e613235565b5b14610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d46906138d0565b60405180910390fd5b600b54600c54610d5f919061391f565b600954610d6c919061391f565b610d74610ea2565b10610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061399f565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d90613a31565b60405180910390fd5b610e41336001611c93565b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e919190613a51565b925050819055506001600881905550565b60008054905090565b610eb3611bcc565b73ffffffffffffffffffffffffffffffffffffffff16610ed1611622565b73ffffffffffffffffffffffffffffffffffffffff1614610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90613544565b60405180910390fd5b600c5482600b54610f389190613a51565b1115610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090613b19565b60405180910390fd5b610f838183611c93565b81600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd29190613a51565b9250508190555081600b6000828254610feb9190613a51565b925050819055505050565b611001838383611cb1565b505050565b6000611011836114b1565b8210611052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104990613bab565b60405180910390fd5b600061105c610ea2565b905060008060005b838110156111b6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461115657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111a8578684141561119f5781955050505050506111f2565b83806001019450505b508080600101915050611064565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990613c3d565b60405180910390fd5b92915050565b600d6020528060005260406000206000915090505481565b611218611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611236611622565b73ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390613544565b60405180910390fd5b80600a90805190602001906112a2929190612c3b565b5050565b6112ae611bcc565b73ffffffffffffffffffffffffffffffffffffffff166112cc611622565b73ffffffffffffffffffffffffffffffffffffffff1614611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613544565b60405180910390fd5b600061132c61185f565b905060008111611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613ccf565b60405180910390fd5b61137b33826121f1565b50565b611399838383604051806020016040528060008152506118e3565b505050565b60006113a8611bcc565b73ffffffffffffffffffffffffffffffffffffffff166113c6611622565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390613544565b60405180910390fd5b600b54600c5461142c919061391f565b905090565b600061143b610ea2565b821061147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613d61565b60405180910390fd5b819050919050565b6000600e60009054906101000a900460ff16905090565b60006114a6826122a2565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151990613df3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6115a2611bcc565b73ffffffffffffffffffffffffffffffffffffffff166115c0611622565b73ffffffffffffffffffffffffffffffffffffffff1614611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d90613544565b60405180910390fd5b611620600061243c565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461165b906134c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611687906134c6565b80156116d45780601f106116a9576101008083540402835291602001916116d4565b820191906000526020600020905b8154815290600101906020018083116116b757829003601f168201915b5050505050905090565b6116e6611bcc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90613e5f565b60405180910390fd5b8060066000611761611bcc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661180e611bcc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118539190612dcc565b60405180910390a35050565b6000611869611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611887611622565b73ffffffffffffffffffffffffffffffffffffffff16146118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d490613544565b60405180910390fd5b47905090565b6118ee848484611cb1565b6118fa84848484612502565b611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090613ef1565b60405180910390fd5b50505050565b606061194a82611bd4565b611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090613f83565b60405180910390fd5b6001826119969190613a51565b915060006119a2612699565b9050806119ae8461272b565b6040516020016119bf92919061402b565b604051602081830303815290604052915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a72611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611a90611622565b73ffffffffffffffffffffffffffffffffffffffff1614611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90613544565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d906140cc565b60405180910390fd5b611b5f8161243c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611cad82826040518060200160405280600081525061288c565b5050565b6000611cbc826122a2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ce3611bcc565b73ffffffffffffffffffffffffffffffffffffffff161480611d3f5750611d08611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611d2784610959565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d5b5750611d5a8260000151611d55611bcc565b6119d6565b5b905080611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d949061415e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e06906141f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690614282565b60405180910390fd5b611e8c858585600161289e565b611e9c6000848460000151611be1565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612181576120e081611bd4565b156121805782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121ea85858560016128a4565b5050505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612217906142d3565b60006040518083038185875af1925050503d8060008114612254576040519150601f19603f3d011682016040523d82523d6000602084013e612259565b606091505b505090508061229d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229490614334565b60405180910390fd5b505050565b6122aa612cc1565b6122b382611bd4565b6122f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e9906143c6565b60405180910390fd5b60008290505b600081106123fb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123ec578092505050612437565b508080600190039150506122f8565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90614458565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006125238473ffffffffffffffffffffffffffffffffffffffff166128aa565b1561268c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261254c611bcc565b8786866040518563ffffffff1660e01b815260040161256e94939291906144cd565b602060405180830381600087803b15801561258857600080fd5b505af19250505080156125b957506040513d601f19601f820116820180604052508101906125b6919061452e565b60015b61263c573d80600081146125e9576040519150601f19603f3d011682016040523d82523d6000602084013e6125ee565b606091505b50600081511415612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b90613ef1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612691565b600190505b949350505050565b6060600a80546126a8906134c6565b80601f01602080910402602001604051908101604052809291908181526020018280546126d4906134c6565b80156127215780601f106126f657610100808354040283529160200191612721565b820191906000526020600020905b81548152906001019060200180831161270457829003601f168201915b5050505050905090565b60606000821415612773576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612887565b600082905060005b600082146127a557808061278e9061455b565b915050600a8261279e91906145d3565b915061277b565b60008167ffffffffffffffff8111156127c1576127c06130c1565b5b6040519080825280601f01601f1916602001820160405280156127f35781602001600182028036833780820191505090505b5090505b600085146128805760018261280c919061391f565b9150600a8561281b9190614604565b60306128279190613a51565b60f81b81838151811061283d5761283c614635565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561287991906145d3565b94506127f7565b8093505050505b919050565b61289983838360016128bd565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a906146d6565b60405180910390fd5b6000841415612977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296e90614768565b60405180910390fd5b612984600086838761289e565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612c1e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612c0957612bc96000888488612502565b612c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bff90613ef1565b60405180910390fd5b5b81806001019250508080600101915050612b52565b508060008190555050612c3460008683876128a4565b5050505050565b828054612c47906134c6565b90600052602060002090601f016020900481019282612c695760008555612cb0565b82601f10612c8257805160ff1916838001178555612cb0565b82800160010185558215612cb0579182015b82811115612caf578251825591602001919060010190612c94565b5b509050612cbd9190612cfb565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612d14576000816000905550600101612cfc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d6181612d2c565b8114612d6c57600080fd5b50565b600081359050612d7e81612d58565b92915050565b600060208284031215612d9a57612d99612d22565b5b6000612da884828501612d6f565b91505092915050565b60008115159050919050565b612dc681612db1565b82525050565b6000602082019050612de16000830184612dbd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e21578082015181840152602081019050612e06565b83811115612e30576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e5282612de7565b612e5c8185612df2565b9350612e6c818560208601612e03565b612e7581612e36565b840191505092915050565b60006020820190508181036000830152612e9a8184612e47565b905092915050565b6000819050919050565b612eb581612ea2565b8114612ec057600080fd5b50565b600081359050612ed281612eac565b92915050565b600060208284031215612eee57612eed612d22565b5b6000612efc84828501612ec3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f3082612f05565b9050919050565b612f4081612f25565b82525050565b6000602082019050612f5b6000830184612f37565b92915050565b612f6a81612f25565b8114612f7557600080fd5b50565b600081359050612f8781612f61565b92915050565b60008060408385031215612fa457612fa3612d22565b5b6000612fb285828601612f78565b9250506020612fc385828601612ec3565b9150509250929050565b612fd681612ea2565b82525050565b6000602082019050612ff16000830184612fcd565b92915050565b6000806040838503121561300e5761300d612d22565b5b600061301c85828601612ec3565b925050602061302d85828601612f78565b9150509250929050565b6000806000606084860312156130505761304f612d22565b5b600061305e86828701612f78565b935050602061306f86828701612f78565b925050604061308086828701612ec3565b9150509250925092565b6000602082840312156130a05761309f612d22565b5b60006130ae84828501612f78565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130f982612e36565b810181811067ffffffffffffffff82111715613118576131176130c1565b5b80604052505050565b600061312b612d18565b905061313782826130f0565b919050565b600067ffffffffffffffff821115613157576131566130c1565b5b61316082612e36565b9050602081019050919050565b82818337600083830152505050565b600061318f61318a8461313c565b613121565b9050828152602081018484840111156131ab576131aa6130bc565b5b6131b684828561316d565b509392505050565b600082601f8301126131d3576131d26130b7565b5b81356131e384826020860161317c565b91505092915050565b60006020828403121561320257613201612d22565b5b600082013567ffffffffffffffff8111156132205761321f612d27565b5b61322c848285016131be565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6002811061327557613274613235565b5b50565b600081905061328682613264565b919050565b600061329682613278565b9050919050565b6132a68161328b565b82525050565b60006020820190506132c1600083018461329d565b92915050565b6132d081612db1565b81146132db57600080fd5b50565b6000813590506132ed816132c7565b92915050565b6000806040838503121561330a57613309612d22565b5b600061331885828601612f78565b9250506020613329858286016132de565b9150509250929050565b600067ffffffffffffffff82111561334e5761334d6130c1565b5b61335782612e36565b9050602081019050919050565b600061337761337284613333565b613121565b905082815260208101848484011115613393576133926130bc565b5b61339e84828561316d565b509392505050565b600082601f8301126133bb576133ba6130b7565b5b81356133cb848260208601613364565b91505092915050565b600080600080608085870312156133ee576133ed612d22565b5b60006133fc87828801612f78565b945050602061340d87828801612f78565b935050604061341e87828801612ec3565b925050606085013567ffffffffffffffff81111561343f5761343e612d27565b5b61344b878288016133a6565b91505092959194509250565b6000806040838503121561346e5761346d612d22565b5b600061347c85828601612f78565b925050602061348d85828601612f78565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134de57607f821691505b602082108114156134f2576134f1613497565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061352e602083612df2565b9150613539826134f8565b602082019050919050565b6000602082019050818103600083015261355d81613521565b9050919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006135c0602d83612df2565b91506135cb82613564565b604082019050919050565b600060208201905081810360008301526135ef816135b3565b9050919050565b7f496e76616c69642053616c652053746174652100000000000000000000000000600082015250565b600061362c601383612df2565b9150613637826135f6565b602082019050919050565b6000602082019050818103600083015261365b8161361f565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006136be602283612df2565b91506136c982613662565b604082019050919050565b600060208201905081810360008301526136ed816136b1565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613750603983612df2565b915061375b826136f4565b604082019050919050565b6000602082019050818103600083015261377f81613743565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137bc601f83612df2565b91506137c782613786565b602082019050919050565b600060208201905081810360008301526137eb816137af565b9050919050565b7f53656e646572206973206e6f74207468652073616d65206173206f726967696e60008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b600061384e602183612df2565b9150613859826137f2565b604082019050919050565b6000602082019050818103600083015261387d81613841565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b60006138ba601c83612df2565b91506138c582613884565b602082019050919050565b600060208201905081810360008301526138e9816138ad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061392a82612ea2565b915061393583612ea2565b925082821015613948576139476138f0565b5b828203905092915050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b6000613989601e83612df2565b915061399482613953565b602082019050919050565b600060208201905081810360008301526139b88161397c565b9050919050565b7f57616c6c65742068617320616c72656164792068617665206d696e746564206160008201527f6e204e4654210000000000000000000000000000000000000000000000000000602082015250565b6000613a1b602683612df2565b9150613a26826139bf565b604082019050919050565b60006020820190508181036000830152613a4a81613a0e565b9050919050565b6000613a5c82612ea2565b9150613a6783612ea2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9c57613a9b6138f0565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b6000613b03602783612df2565b9150613b0e82613aa7565b604082019050919050565b60006020820190508181036000830152613b3281613af6565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b95602283612df2565b9150613ba082613b39565b604082019050919050565b60006020820190508181036000830152613bc481613b88565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613c27602e83612df2565b9150613c3282613bcb565b604082019050919050565b60006020820190508181036000830152613c5681613c1a565b9050919050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cb9602283612df2565b9150613cc482613c5d565b604082019050919050565b60006020820190508181036000830152613ce881613cac565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d4b602383612df2565b9150613d5682613cef565b604082019050919050565b60006020820190508181036000830152613d7a81613d3e565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613ddd602b83612df2565b9150613de882613d81565b604082019050919050565b60006020820190508181036000830152613e0c81613dd0565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613e49601a83612df2565b9150613e5482613e13565b602082019050919050565b60006020820190508181036000830152613e7881613e3c565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613edb603383612df2565b9150613ee682613e7f565b604082019050919050565b60006020820190508181036000830152613f0a81613ece565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613f6d602f83612df2565b9150613f7882613f11565b604082019050919050565b60006020820190508181036000830152613f9c81613f60565b9050919050565b600081905092915050565b6000613fb982612de7565b613fc38185613fa3565b9350613fd3818560208601612e03565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614015600583613fa3565b915061402082613fdf565b600582019050919050565b60006140378285613fae565b91506140438284613fae565b915061404e82614008565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140b6602683612df2565b91506140c18261405a565b604082019050919050565b600060208201905081810360008301526140e5816140a9565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614148603283612df2565b9150614153826140ec565b604082019050919050565b600060208201905081810360008301526141778161413b565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006141da602683612df2565b91506141e58261417e565b604082019050919050565b60006020820190508181036000830152614209816141cd565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061426c602583612df2565b915061427782614210565b604082019050919050565b6000602082019050818103600083015261429b8161425f565b9050919050565b600081905092915050565b50565b60006142bd6000836142a2565b91506142c8826142ad565b600082019050919050565b60006142de826142b0565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b600061431e601483612df2565b9150614329826142e8565b602082019050919050565b6000602082019050818103600083015261434d81614311565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006143b0602a83612df2565b91506143bb82614354565b604082019050919050565b600060208201905081810360008301526143df816143a3565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614442602f83612df2565b915061444d826143e6565b604082019050919050565b6000602082019050818103600083015261447181614435565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061449f82614478565b6144a98185614483565b93506144b9818560208601612e03565b6144c281612e36565b840191505092915050565b60006080820190506144e26000830187612f37565b6144ef6020830186612f37565b6144fc6040830185612fcd565b818103606083015261450e8184614494565b905095945050505050565b60008151905061452881612d58565b92915050565b60006020828403121561454457614543612d22565b5b600061455284828501614519565b91505092915050565b600061456682612ea2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614599576145986138f0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145de82612ea2565b91506145e983612ea2565b9250826145f9576145f86145a4565b5b828204905092915050565b600061460f82612ea2565b915061461a83612ea2565b92508261462a576146296145a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006146c0602183612df2565b91506146cb82614664565b604082019050919050565b600060208201905081810360008301526146ef816146b3565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614752602883612df2565b915061475d826146f6565b604082019050919050565b6000602082019050818103600083015261478181614745565b905091905056fea26469706673582212205118321e1f4034a881fd0b678597a3d3c96920e7db02b3c003ae4dccfae28f0664736f6c63430008090033697066733a2f2f516d4e693275476b76474c706156674573547641733253377362316b4a344272785547315668385448644d3950422f

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806342842e0e116100f75780638da5cb5b11610095578063b88d4fde11610064578063b88d4fde14610625578063c87b56dd1461064e578063e985e9c51461068b578063f2fde38b146106c8576101cd565b80638da5cb5b1461057b57806395d89b41146105a6578063a22cb465146105d1578063b0a1c1c4146105fa576101cd565b8063603f4d52116100d1578063603f4d52146104bf5780636352211e146104ea57806370a0823114610527578063715018a614610564576101cd565b806342842e0e1461042e5780634520e916146104575780634f6ccce714610482576101cd565b806318160ddd116101645780632f745c591161013e5780632f745c59146103745780633023eba6146103b157806339a0c6f9146103ee5780633ccfd60b14610417576101cd565b806318160ddd146102f757806318df64031461032257806323b872dd1461034b576101cd565b8063081812fc116101a0578063081812fc14610251578063084c40881461028e578063095ea7b3146102b75780631249c58b146102e0576101cd565b806301ffc9a7146101d257806306fdde031461020f57806308003f781461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612d84565b6106f1565b6040516102069190612dcc565b60405180910390f35b34801561021b57600080fd5b5061022461083b565b6040516102319190612e80565b60405180910390f35b34801561024657600080fd5b5061024f6108cd565b005b34801561025d57600080fd5b5061027860048036038101906102739190612ed8565b610959565b6040516102859190612f46565b60405180910390f35b34801561029a57600080fd5b506102b560048036038101906102b09190612ed8565b6109de565b005b3480156102c357600080fd5b506102de60048036038101906102d99190612f8d565b610b05565b005b3480156102ec57600080fd5b506102f5610c1e565b005b34801561030357600080fd5b5061030c610ea2565b6040516103199190612fdc565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612ff7565b610eab565b005b34801561035757600080fd5b50610372600480360381019061036d9190613037565b610ff6565b005b34801561038057600080fd5b5061039b60048036038101906103969190612f8d565b611006565b6040516103a89190612fdc565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d3919061308a565b6111f8565b6040516103e59190612fdc565b60405180910390f35b3480156103fa57600080fd5b50610415600480360381019061041091906131ec565b611210565b005b34801561042357600080fd5b5061042c6112a6565b005b34801561043a57600080fd5b5061045560048036038101906104509190613037565b61137e565b005b34801561046357600080fd5b5061046c61139e565b6040516104799190612fdc565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190612ed8565b611431565b6040516104b69190612fdc565b60405180910390f35b3480156104cb57600080fd5b506104d4611484565b6040516104e191906132ac565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190612ed8565b61149b565b60405161051e9190612f46565b60405180910390f35b34801561053357600080fd5b5061054e6004803603810190610549919061308a565b6114b1565b60405161055b9190612fdc565b60405180910390f35b34801561057057600080fd5b5061057961159a565b005b34801561058757600080fd5b50610590611622565b60405161059d9190612f46565b60405180910390f35b3480156105b257600080fd5b506105bb61164c565b6040516105c89190612e80565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f391906132f3565b6116de565b005b34801561060657600080fd5b5061060f61185f565b60405161061c9190612fdc565b60405180910390f35b34801561063157600080fd5b5061064c600480360381019061064791906133d4565b6118e3565b005b34801561065a57600080fd5b5061067560048036038101906106709190612ed8565b61193f565b6040516106829190612e80565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad9190613457565b6119d6565b6040516106bf9190612dcc565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea919061308a565b611a6a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107bc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610834575061083382611b62565b5b9050919050565b60606001805461084a906134c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610876906134c6565b80156108c35780601f10610898576101008083540402835291602001916108c3565b820191906000526020600020905b8154815290600101906020018083116108a657829003601f168201915b5050505050905090565b6108d5611bcc565b73ffffffffffffffffffffffffffffffffffffffff166108f3611622565b73ffffffffffffffffffffffffffffffffffffffff1614610949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094090613544565b60405180910390fd5b610951610ea2565b600981905550565b600061096482611bd4565b6109a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099a906135d6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6109e6611bcc565b73ffffffffffffffffffffffffffffffffffffffff16610a04611622565b73ffffffffffffffffffffffffffffffffffffffff1614610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5190613544565b60405180910390fd5b60028110610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490613642565b60405180910390fd5b6000811415610ad6576000600e60006101000a81548160ff02191690836001811115610acc57610acb613235565b5b0217905550610b02565b6001600e60006101000a81548160ff02191690836001811115610afc57610afb613235565b5b02179055505b50565b6000610b108261149b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b78906136d4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba0611bcc565b73ffffffffffffffffffffffffffffffffffffffff161480610bcf5750610bce81610bc9611bcc565b6119d6565b5b610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0590613766565b60405180910390fd5b610c19838383611be1565b505050565b60026008541415610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b906137d2565b60405180910390fd5b60026008819055503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190613864565b60405180910390fd5b600180811115610ced57610cec613235565b5b600e60009054906101000a900460ff166001811115610d0f57610d0e613235565b5b14610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d46906138d0565b60405180910390fd5b600b54600c54610d5f919061391f565b600954610d6c919061391f565b610d74610ea2565b10610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061399f565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d90613a31565b60405180910390fd5b610e41336001611c93565b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e919190613a51565b925050819055506001600881905550565b60008054905090565b610eb3611bcc565b73ffffffffffffffffffffffffffffffffffffffff16610ed1611622565b73ffffffffffffffffffffffffffffffffffffffff1614610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90613544565b60405180910390fd5b600c5482600b54610f389190613a51565b1115610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090613b19565b60405180910390fd5b610f838183611c93565b81600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd29190613a51565b9250508190555081600b6000828254610feb9190613a51565b925050819055505050565b611001838383611cb1565b505050565b6000611011836114b1565b8210611052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104990613bab565b60405180910390fd5b600061105c610ea2565b905060008060005b838110156111b6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461115657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111a8578684141561119f5781955050505050506111f2565b83806001019450505b508080600101915050611064565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990613c3d565b60405180910390fd5b92915050565b600d6020528060005260406000206000915090505481565b611218611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611236611622565b73ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390613544565b60405180910390fd5b80600a90805190602001906112a2929190612c3b565b5050565b6112ae611bcc565b73ffffffffffffffffffffffffffffffffffffffff166112cc611622565b73ffffffffffffffffffffffffffffffffffffffff1614611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613544565b60405180910390fd5b600061132c61185f565b905060008111611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613ccf565b60405180910390fd5b61137b33826121f1565b50565b611399838383604051806020016040528060008152506118e3565b505050565b60006113a8611bcc565b73ffffffffffffffffffffffffffffffffffffffff166113c6611622565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390613544565b60405180910390fd5b600b54600c5461142c919061391f565b905090565b600061143b610ea2565b821061147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613d61565b60405180910390fd5b819050919050565b6000600e60009054906101000a900460ff16905090565b60006114a6826122a2565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151990613df3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6115a2611bcc565b73ffffffffffffffffffffffffffffffffffffffff166115c0611622565b73ffffffffffffffffffffffffffffffffffffffff1614611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d90613544565b60405180910390fd5b611620600061243c565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461165b906134c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611687906134c6565b80156116d45780601f106116a9576101008083540402835291602001916116d4565b820191906000526020600020905b8154815290600101906020018083116116b757829003601f168201915b5050505050905090565b6116e6611bcc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90613e5f565b60405180910390fd5b8060066000611761611bcc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661180e611bcc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118539190612dcc565b60405180910390a35050565b6000611869611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611887611622565b73ffffffffffffffffffffffffffffffffffffffff16146118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d490613544565b60405180910390fd5b47905090565b6118ee848484611cb1565b6118fa84848484612502565b611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090613ef1565b60405180910390fd5b50505050565b606061194a82611bd4565b611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090613f83565b60405180910390fd5b6001826119969190613a51565b915060006119a2612699565b9050806119ae8461272b565b6040516020016119bf92919061402b565b604051602081830303815290604052915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a72611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611a90611622565b73ffffffffffffffffffffffffffffffffffffffff1614611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90613544565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d906140cc565b60405180910390fd5b611b5f8161243c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611cad82826040518060200160405280600081525061288c565b5050565b6000611cbc826122a2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ce3611bcc565b73ffffffffffffffffffffffffffffffffffffffff161480611d3f5750611d08611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611d2784610959565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d5b5750611d5a8260000151611d55611bcc565b6119d6565b5b905080611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d949061415e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e06906141f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690614282565b60405180910390fd5b611e8c858585600161289e565b611e9c6000848460000151611be1565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612181576120e081611bd4565b156121805782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121ea85858560016128a4565b5050505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612217906142d3565b60006040518083038185875af1925050503d8060008114612254576040519150601f19603f3d011682016040523d82523d6000602084013e612259565b606091505b505090508061229d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229490614334565b60405180910390fd5b505050565b6122aa612cc1565b6122b382611bd4565b6122f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e9906143c6565b60405180910390fd5b60008290505b600081106123fb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123ec578092505050612437565b508080600190039150506122f8565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90614458565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006125238473ffffffffffffffffffffffffffffffffffffffff166128aa565b1561268c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261254c611bcc565b8786866040518563ffffffff1660e01b815260040161256e94939291906144cd565b602060405180830381600087803b15801561258857600080fd5b505af19250505080156125b957506040513d601f19601f820116820180604052508101906125b6919061452e565b60015b61263c573d80600081146125e9576040519150601f19603f3d011682016040523d82523d6000602084013e6125ee565b606091505b50600081511415612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b90613ef1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612691565b600190505b949350505050565b6060600a80546126a8906134c6565b80601f01602080910402602001604051908101604052809291908181526020018280546126d4906134c6565b80156127215780601f106126f657610100808354040283529160200191612721565b820191906000526020600020905b81548152906001019060200180831161270457829003601f168201915b5050505050905090565b60606000821415612773576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612887565b600082905060005b600082146127a557808061278e9061455b565b915050600a8261279e91906145d3565b915061277b565b60008167ffffffffffffffff8111156127c1576127c06130c1565b5b6040519080825280601f01601f1916602001820160405280156127f35781602001600182028036833780820191505090505b5090505b600085146128805760018261280c919061391f565b9150600a8561281b9190614604565b60306128279190613a51565b60f81b81838151811061283d5761283c614635565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561287991906145d3565b94506127f7565b8093505050505b919050565b61289983838360016128bd565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a906146d6565b60405180910390fd5b6000841415612977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296e90614768565b60405180910390fd5b612984600086838761289e565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612c1e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612c0957612bc96000888488612502565b612c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bff90613ef1565b60405180910390fd5b5b81806001019250508080600101915050612b52565b508060008190555050612c3460008683876128a4565b5050505050565b828054612c47906134c6565b90600052602060002090601f016020900481019282612c695760008555612cb0565b82601f10612c8257805160ff1916838001178555612cb0565b82800160010185558215612cb0579182015b82811115612caf578251825591602001919060010190612c94565b5b509050612cbd9190612cfb565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612d14576000816000905550600101612cfc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d6181612d2c565b8114612d6c57600080fd5b50565b600081359050612d7e81612d58565b92915050565b600060208284031215612d9a57612d99612d22565b5b6000612da884828501612d6f565b91505092915050565b60008115159050919050565b612dc681612db1565b82525050565b6000602082019050612de16000830184612dbd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e21578082015181840152602081019050612e06565b83811115612e30576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e5282612de7565b612e5c8185612df2565b9350612e6c818560208601612e03565b612e7581612e36565b840191505092915050565b60006020820190508181036000830152612e9a8184612e47565b905092915050565b6000819050919050565b612eb581612ea2565b8114612ec057600080fd5b50565b600081359050612ed281612eac565b92915050565b600060208284031215612eee57612eed612d22565b5b6000612efc84828501612ec3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f3082612f05565b9050919050565b612f4081612f25565b82525050565b6000602082019050612f5b6000830184612f37565b92915050565b612f6a81612f25565b8114612f7557600080fd5b50565b600081359050612f8781612f61565b92915050565b60008060408385031215612fa457612fa3612d22565b5b6000612fb285828601612f78565b9250506020612fc385828601612ec3565b9150509250929050565b612fd681612ea2565b82525050565b6000602082019050612ff16000830184612fcd565b92915050565b6000806040838503121561300e5761300d612d22565b5b600061301c85828601612ec3565b925050602061302d85828601612f78565b9150509250929050565b6000806000606084860312156130505761304f612d22565b5b600061305e86828701612f78565b935050602061306f86828701612f78565b925050604061308086828701612ec3565b9150509250925092565b6000602082840312156130a05761309f612d22565b5b60006130ae84828501612f78565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130f982612e36565b810181811067ffffffffffffffff82111715613118576131176130c1565b5b80604052505050565b600061312b612d18565b905061313782826130f0565b919050565b600067ffffffffffffffff821115613157576131566130c1565b5b61316082612e36565b9050602081019050919050565b82818337600083830152505050565b600061318f61318a8461313c565b613121565b9050828152602081018484840111156131ab576131aa6130bc565b5b6131b684828561316d565b509392505050565b600082601f8301126131d3576131d26130b7565b5b81356131e384826020860161317c565b91505092915050565b60006020828403121561320257613201612d22565b5b600082013567ffffffffffffffff8111156132205761321f612d27565b5b61322c848285016131be565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6002811061327557613274613235565b5b50565b600081905061328682613264565b919050565b600061329682613278565b9050919050565b6132a68161328b565b82525050565b60006020820190506132c1600083018461329d565b92915050565b6132d081612db1565b81146132db57600080fd5b50565b6000813590506132ed816132c7565b92915050565b6000806040838503121561330a57613309612d22565b5b600061331885828601612f78565b9250506020613329858286016132de565b9150509250929050565b600067ffffffffffffffff82111561334e5761334d6130c1565b5b61335782612e36565b9050602081019050919050565b600061337761337284613333565b613121565b905082815260208101848484011115613393576133926130bc565b5b61339e84828561316d565b509392505050565b600082601f8301126133bb576133ba6130b7565b5b81356133cb848260208601613364565b91505092915050565b600080600080608085870312156133ee576133ed612d22565b5b60006133fc87828801612f78565b945050602061340d87828801612f78565b935050604061341e87828801612ec3565b925050606085013567ffffffffffffffff81111561343f5761343e612d27565b5b61344b878288016133a6565b91505092959194509250565b6000806040838503121561346e5761346d612d22565b5b600061347c85828601612f78565b925050602061348d85828601612f78565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134de57607f821691505b602082108114156134f2576134f1613497565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061352e602083612df2565b9150613539826134f8565b602082019050919050565b6000602082019050818103600083015261355d81613521565b9050919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006135c0602d83612df2565b91506135cb82613564565b604082019050919050565b600060208201905081810360008301526135ef816135b3565b9050919050565b7f496e76616c69642053616c652053746174652100000000000000000000000000600082015250565b600061362c601383612df2565b9150613637826135f6565b602082019050919050565b6000602082019050818103600083015261365b8161361f565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006136be602283612df2565b91506136c982613662565b604082019050919050565b600060208201905081810360008301526136ed816136b1565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613750603983612df2565b915061375b826136f4565b604082019050919050565b6000602082019050818103600083015261377f81613743565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137bc601f83612df2565b91506137c782613786565b602082019050919050565b600060208201905081810360008301526137eb816137af565b9050919050565b7f53656e646572206973206e6f74207468652073616d65206173206f726967696e60008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b600061384e602183612df2565b9150613859826137f2565b604082019050919050565b6000602082019050818103600083015261387d81613841565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b60006138ba601c83612df2565b91506138c582613884565b602082019050919050565b600060208201905081810360008301526138e9816138ad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061392a82612ea2565b915061393583612ea2565b925082821015613948576139476138f0565b5b828203905092915050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b6000613989601e83612df2565b915061399482613953565b602082019050919050565b600060208201905081810360008301526139b88161397c565b9050919050565b7f57616c6c65742068617320616c72656164792068617665206d696e746564206160008201527f6e204e4654210000000000000000000000000000000000000000000000000000602082015250565b6000613a1b602683612df2565b9150613a26826139bf565b604082019050919050565b60006020820190508181036000830152613a4a81613a0e565b9050919050565b6000613a5c82612ea2565b9150613a6783612ea2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9c57613a9b6138f0565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b6000613b03602783612df2565b9150613b0e82613aa7565b604082019050919050565b60006020820190508181036000830152613b3281613af6565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b95602283612df2565b9150613ba082613b39565b604082019050919050565b60006020820190508181036000830152613bc481613b88565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613c27602e83612df2565b9150613c3282613bcb565b604082019050919050565b60006020820190508181036000830152613c5681613c1a565b9050919050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cb9602283612df2565b9150613cc482613c5d565b604082019050919050565b60006020820190508181036000830152613ce881613cac565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d4b602383612df2565b9150613d5682613cef565b604082019050919050565b60006020820190508181036000830152613d7a81613d3e565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613ddd602b83612df2565b9150613de882613d81565b604082019050919050565b60006020820190508181036000830152613e0c81613dd0565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613e49601a83612df2565b9150613e5482613e13565b602082019050919050565b60006020820190508181036000830152613e7881613e3c565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613edb603383612df2565b9150613ee682613e7f565b604082019050919050565b60006020820190508181036000830152613f0a81613ece565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613f6d602f83612df2565b9150613f7882613f11565b604082019050919050565b60006020820190508181036000830152613f9c81613f60565b9050919050565b600081905092915050565b6000613fb982612de7565b613fc38185613fa3565b9350613fd3818560208601612e03565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614015600583613fa3565b915061402082613fdf565b600582019050919050565b60006140378285613fae565b91506140438284613fae565b915061404e82614008565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140b6602683612df2565b91506140c18261405a565b604082019050919050565b600060208201905081810360008301526140e5816140a9565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614148603283612df2565b9150614153826140ec565b604082019050919050565b600060208201905081810360008301526141778161413b565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006141da602683612df2565b91506141e58261417e565b604082019050919050565b60006020820190508181036000830152614209816141cd565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061426c602583612df2565b915061427782614210565b604082019050919050565b6000602082019050818103600083015261429b8161425f565b9050919050565b600081905092915050565b50565b60006142bd6000836142a2565b91506142c8826142ad565b600082019050919050565b60006142de826142b0565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b600061431e601483612df2565b9150614329826142e8565b602082019050919050565b6000602082019050818103600083015261434d81614311565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006143b0602a83612df2565b91506143bb82614354565b604082019050919050565b600060208201905081810360008301526143df816143a3565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614442602f83612df2565b915061444d826143e6565b604082019050919050565b6000602082019050818103600083015261447181614435565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061449f82614478565b6144a98185614483565b93506144b9818560208601612e03565b6144c281612e36565b840191505092915050565b60006080820190506144e26000830187612f37565b6144ef6020830186612f37565b6144fc6040830185612fcd565b818103606083015261450e8184614494565b905095945050505050565b60008151905061452881612d58565b92915050565b60006020828403121561454457614543612d22565b5b600061455284828501614519565b91505092915050565b600061456682612ea2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614599576145986138f0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145de82612ea2565b91506145e983612ea2565b9250826145f9576145f86145a4565b5b828204905092915050565b600061460f82612ea2565b915061461a83612ea2565b92508261462a576146296145a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006146c0602183612df2565b91506146cb82614664565b604082019050919050565b600060208201905081810360008301526146ef816146b3565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614752602883612df2565b915061475d826146f6565b604082019050919050565b6000602082019050818103600083015261478181614745565b905091905056fea26469706673582212205118321e1f4034a881fd0b678597a3d3c96920e7db02b3c003ae4dccfae28f0664736f6c63430008090033

Deployed Bytecode Sourcemap

55026:4298:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56214:8;;;41787:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43673:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58173:88;;;;;;;;;;;;;:::i;:::-;;45235:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56558:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44756:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56896:500;;;;;;;;;;;;;:::i;:::-;;40036:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57791:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46111:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40708:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55662:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56441:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58480:212;;;;;;;;;;;;;:::i;:::-;;46352:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59017:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40221:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59227:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43482:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42223:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4668:94;;;;;;;;;;;;;:::i;:::-;;4017:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43842:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45521:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58311:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46608:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57408:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45880:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4917:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41787:372;41889:4;41941:25;41926:40;;;:11;:40;;;;:105;;;;41998:33;41983:48;;;:11;:48;;;;41926:105;:172;;;;42063:35;42048:50;;;:11;:50;;;;41926:172;:225;;;;42115:36;42139:11;42115:23;:36::i;:::-;41926:225;41906:245;;41787:372;;;:::o;43673:100::-;43727:13;43760:5;43753:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43673:100;:::o;58173:88::-;4248:12;:10;:12::i;:::-;4237:23;;:7;:5;:7::i;:::-;:23;;;4229:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58240:13:::1;:11;:13::i;:::-;58223:14;:30;;;;58173:88::o:0;45235:214::-;45303:7;45331:16;45339:7;45331;:16::i;:::-;45323:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45417:15;:24;45433:7;45417:24;;;;;;;;;;;;;;;;;;;;;45410:31;;45235:214;;;:::o;56558:279::-;4248:12;:10;:12::i;:::-;4237:23;;:7;:5;:7::i;:::-;:23;;;4229:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56650:1:::1;56635:12;:16;56627:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;56706:1;56690:12;:17;56686:144;;;56737:12;56724:10;;:25;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;56686:144;;;56804:14;56791:10;;:27;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;56686:144;56558:279:::0;:::o;44756:413::-;44829:13;44845:24;44861:7;44845:15;:24::i;:::-;44829:40;;44894:5;44888:11;;:2;:11;;;;44880:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44989:5;44973:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;44998:37;45015:5;45022:12;:10;:12::i;:::-;44998:16;:37::i;:::-;44973:62;44951:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;45133:28;45142:2;45146:7;45155:5;45133:8;:28::i;:::-;44818:351;44756:413;;:::o;56896:500::-;36429:1;37027:7;;:19;;37019:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;36429:1;37160:7;:18;;;;56965:9:::1;56951:23;;:10;:23;;;56943:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;57045:14;57031:28:::0;::::1;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:28;;;;;;;;:::i;:::-;;;57023:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;57164:14;;57145:16;;:33;;;;:::i;:::-;57127:14;;:52;;;;:::i;:::-;57111:13;:11;:13::i;:::-;:68;57103:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57264:1;57233:15;:27;57249:10;57233:27;;;;;;;;;;;;;;;;:32;57225:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;57321:24;57331:10;57343:1;57321:9;:24::i;:::-;57387:1;57356:15;:27;57372:10;57356:27;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;36385:1:::0;37339:7;:22;;;;56896:500::o;40036:108::-;40097:7;40124:12;;40117:19;;40036:108;:::o;57791:319::-;4248:12;:10;:12::i;:::-;4237:23;;:7;:5;:7::i;:::-;:23;;;4229:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57908:16:::1;;57898:6;57881:14;;:23;;;;:::i;:::-;:43;;57873:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;57981:28;57991:9;58002:6;57981:9;:28::i;:::-;58050:6;58020:15;:26;58036:9;58020:26;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;58085:6;58067:14;;:24;;;;;;;:::i;:::-;;;;;;;;57791:319:::0;;:::o;46111:170::-;46245:28;46255:4;46261:2;46265:7;46245:9;:28::i;:::-;46111:170;;;:::o;40708:1007::-;40797:7;40833:16;40843:5;40833:9;:16::i;:::-;40825:5;:24;40817:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40899:22;40924:13;:11;:13::i;:::-;40899:38;;40948:19;40978:25;41167:9;41162:466;41182:14;41178:1;:18;41162:466;;;41222:31;41256:11;:14;41268:1;41256:14;;;;;;;;;;;41222:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41319:1;41293:28;;:9;:14;;;:28;;;41289:111;;41366:9;:14;;;41346:34;;41289:111;41443:5;41422:26;;:17;:26;;;41418:195;;;41492:5;41477:11;:20;41473:85;;;41533:1;41526:8;;;;;;;;;41473:85;41580:13;;;;;;;41418:195;41203:425;41198:3;;;;;;;41162:466;;;;41651:56;;;;;;;;;;:::i;:::-;;;;;;;;40708:1007;;;;;:::o;55662:50::-;;;;;;;;;;;;;;;;;:::o;56441:109::-;4248:12;:10;:12::i;:::-;4237:23;;:7;:5;:7::i;:::-;:23;;;4229:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56534:8:::1;56516:15;:26;;;;;;;;;;;;:::i;:::-;;56441:109:::0;:::o;58480:212::-;4248:12;:10;:12::i;:::-;4237:23;;:7;:5;:7::i;:::-;:23;;;4229:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58528:15:::1;58546:16;:14;:16::i;:::-;58528:34;;58591:1;58581:7;:11;58573:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;58644:39;58662:10;58675:7;58644:9;:39::i;:::-;58517:175;58480:212::o:0;46352:185::-;46490:39;46507:4;46513:2;46517:7;46490:39;;;;;;;;;;;;:16;:39::i;:::-;46352:185;;;:::o;59017:124::-;59076:4;4248:12;:10;:12::i;:::-;4237:23;;:7;:5;:7::i;:::-;:23;;;4229:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59119:14:::1;;59100:16;;:33;;;;:::i;:::-;59093:40;;59017:124:::0;:::o;40221:187::-;40288:7;40324:13;:11;:13::i;:::-;40316:5;:21;40308:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;40395:5;40388:12;;40221:187;;;:::o;59227:83::-;59268:5;59292:10;;;;;;;;;;;59285:17;;59227:83;:::o;43482:124::-;43546:7;43573:20;43585:7;43573:11;:20::i;:::-;:25;;;43566:32;;43482:124;;;:::o;42223:221::-;42287:7;42332:1;42315:19;;:5;:19;;;;42307:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;42408:12;:19;42421:5;42408:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;42400:36;;42393:43;;42223:221;;;:::o;4668:94::-;4248:12;:10;:12::i;:::-;4237:23;;:7;:5;:7::i;:::-;:23;;;4229:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4733:21:::1;4751:1;4733:9;:21::i;:::-;4668:94::o:0;4017:87::-;4063:7;4090:6;;;;;;;;;;;4083:13;;4017:87;:::o;43842:104::-;43898:13;43931:7;43924:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43842:104;:::o;45521:288::-;45628:12;:10;:12::i;:::-;45616:24;;:8;:24;;;;45608:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45729:8;45684:18;:32;45703:12;:10;:12::i;:::-;45684:32;;;;;;;;;;;;;;;:42;45717:8;45684:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;45782:8;45753:48;;45768:12;:10;:12::i;:::-;45753:48;;;45792:8;45753:48;;;;;;:::i;:::-;;;;;;;;45521:288;;:::o;58311:109::-;58367:4;4248:12;:10;:12::i;:::-;4237:23;;:7;:5;:7::i;:::-;:23;;;4229:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58391:21:::1;58384:28;;58311:109:::0;:::o;46608:355::-;46767:28;46777:4;46783:2;46787:7;46767:9;:28::i;:::-;46828:48;46851:4;46857:2;46861:7;46870:5;46828:22;:48::i;:::-;46806:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;46608:355;;;;:::o;57408:338::-;57482:13;57516:17;57524:8;57516:7;:17::i;:::-;57508:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;57610:1;57598:13;;;;;:::i;:::-;;;57622:21;57646:10;:8;:10::i;:::-;57622:34;;57698:7;57707:19;:8;:17;:19::i;:::-;57681:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57667:70;;;57408:338;;;:::o;45880:164::-;45977:4;46001:18;:25;46020:5;46001:25;;;;;;;;;;;;;;;:35;46027:8;46001:35;;;;;;;;;;;;;;;;;;;;;;;;;45994:42;;45880:164;;;;:::o;4917:192::-;4248:12;:10;:12::i;:::-;4237:23;;:7;:5;:7::i;:::-;:23;;;4229:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5026:1:::1;5006:22;;:8;:22;;;;4998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5082:19;5092:8;5082:9;:19::i;:::-;4917:192:::0;:::o;15999:157::-;16084:4;16123:25;16108:40;;;:11;:40;;;;16101:47;;15999:157;;;:::o;2805:98::-;2858:7;2885:10;2878:17;;2805:98;:::o;47218:111::-;47275:4;47309:12;;47299:7;:22;47292:29;;47218:111;;;:::o;52138:196::-;52280:2;52253:15;:24;52269:7;52253:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52318:7;52314:2;52298:28;;52307:5;52298:28;;;;;;;;;;;;52138:196;;;:::o;47337:104::-;47406:27;47416:2;47420:8;47406:27;;;;;;;;;;;;:9;:27::i;:::-;47337:104;;:::o;50018:2002::-;50133:35;50171:20;50183:7;50171:11;:20::i;:::-;50133:58;;50204:22;50246:13;:18;;;50230:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;50305:12;:10;:12::i;:::-;50281:36;;:20;50293:7;50281:11;:20::i;:::-;:36;;;50230:87;:154;;;;50334:50;50351:13;:18;;;50371:12;:10;:12::i;:::-;50334:16;:50::i;:::-;50230:154;50204:181;;50406:17;50398:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;50521:4;50499:26;;:13;:18;;;:26;;;50491:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;50601:1;50587:16;;:2;:16;;;;50579:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50658:43;50680:4;50686:2;50690:7;50699:1;50658:21;:43::i;:::-;50766:49;50783:1;50787:7;50796:13;:18;;;50766:8;:49::i;:::-;51141:1;51111:12;:18;51124:4;51111:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51185:1;51157:12;:16;51170:2;51157:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51231:2;51203:11;:20;51215:7;51203:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;51293:15;51248:11;:20;51260:7;51248:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;51561:19;51593:1;51583:7;:11;51561:33;;51654:1;51613:43;;:11;:24;51625:11;51613:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;51609:295;;;51681:20;51689:11;51681:7;:20::i;:::-;51677:212;;;51758:13;:18;;;51726:11;:24;51738:11;51726:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;51841:13;:28;;;51799:11;:24;51811:11;51799:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;51677:212;51609:295;51086:829;51951:7;51947:2;51932:27;;51941:4;51932:27;;;;;;;;;;;;51970:42;51991:4;51997:2;52001:7;52010:1;51970:20;:42::i;:::-;50122:1898;;50018:2002;;;:::o;58767:183::-;58848:9;58863:7;:12;;58883:6;58863:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58847:47;;;58913:4;58905:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;58836:114;58767:183;;:::o;42883:537::-;42944:21;;:::i;:::-;42986:16;42994:7;42986;:16::i;:::-;42978:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43092:12;43107:7;43092:22;;43087:245;43124:1;43116:4;:9;43087:245;;43154:31;43188:11;:17;43200:4;43188:17;;;;;;;;;;;43154:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43254:1;43228:28;;:9;:14;;;:28;;;43224:93;;43288:9;43281:16;;;;;;43224:93;43135:197;43127:6;;;;;;;;43087:245;;;;43355:57;;;;;;;;;;:::i;:::-;;;;;;;;42883:537;;;;:::o;5117:173::-;5173:16;5192:6;;;;;;;;;;;5173:25;;5218:8;5209:6;;:17;;;;;;;;;;;;;;;;;;5273:8;5242:40;;5263:8;5242:40;;;;;;;;;;;;5162:128;5117:173;:::o;52899:804::-;53054:4;53075:15;:2;:13;;;:15::i;:::-;53071:625;;;53127:2;53111:36;;;53148:12;:10;:12::i;:::-;53162:4;53168:7;53177:5;53111:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53107:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53374:1;53357:6;:13;:18;53353:273;;;53400:61;;;;;;;;;;:::i;:::-;;;;;;;;53353:273;53576:6;53570:13;53561:6;53557:2;53553:15;53546:38;53107:534;53244:45;;;53234:55;;;:6;:55;;;;53227:62;;;;;53071:625;53680:4;53673:11;;52899:804;;;;;;;:::o;56267:116::-;56327:13;56360:15;56353:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56267:116;:::o;421:723::-;477:13;707:1;698:5;:10;694:53;;;725:10;;;;;;;;;;;;;;;;;;;;;694:53;757:12;772:5;757:20;;788:14;813:78;828:1;820:4;:9;813:78;;846:8;;;;;:::i;:::-;;;;877:2;869:10;;;;;:::i;:::-;;;813:78;;;901:19;933:6;923:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;901:39;;951:154;967:1;958:5;:10;951:154;;995:1;985:11;;;;;:::i;:::-;;;1062:2;1054:5;:10;;;;:::i;:::-;1041:2;:24;;;;:::i;:::-;1028:39;;1011:6;1018;1011:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1091:2;1082:11;;;;;:::i;:::-;;;951:154;;;1129:6;1115:21;;;;;421:723;;;;:::o;47804:163::-;47927:32;47933:2;47937:8;47947:5;47954:4;47927:5;:32::i;:::-;47804:163;;;:::o;54191:159::-;;;;;:::o;54762:158::-;;;;;:::o;6063:387::-;6123:4;6331:12;6398:7;6386:20;6378:28;;6441:1;6434:4;:8;6427:15;;;6063:387;;;:::o;48226:1538::-;48365:20;48388:12;;48365:35;;48433:1;48419:16;;:2;:16;;;;48411:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48504:1;48492:8;:13;;48484:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48563:61;48593:1;48597:2;48601:12;48615:8;48563:21;:61::i;:::-;48938:8;48902:12;:16;48915:2;48902:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49003:8;48962:12;:16;48975:2;48962:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49062:2;49029:11;:25;49041:12;49029:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;49129:15;49079:11;:25;49091:12;49079:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;49162:20;49185:12;49162:35;;49219:9;49214:415;49234:8;49230:1;:12;49214:415;;;49298:12;49294:2;49273:38;;49290:1;49273:38;;;;;;;;;;;;49334:4;49330:249;;;49397:59;49428:1;49432:2;49436:12;49450:5;49397:22;:59::i;:::-;49363:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;49330:249;49599:14;;;;;;;49244:3;;;;;;;49214:415;;;;49660:12;49645;:27;;;;48877:807;49696:60;49725:1;49729:2;49733:12;49747:8;49696:20;:60::i;:::-;48354:1410;48226:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:474::-;5358:6;5366;5415:2;5403:9;5394:7;5390:23;5386:32;5383:119;;;5421:79;;:::i;:::-;5383:119;5541:1;5566:53;5611:7;5602:6;5591:9;5587:22;5566:53;:::i;:::-;5556:63;;5512:117;5668:2;5694:53;5739:7;5730:6;5719:9;5715:22;5694:53;:::i;:::-;5684:63;;5639:118;5290:474;;;;;:::o;5770:619::-;5847:6;5855;5863;5912:2;5900:9;5891:7;5887:23;5883:32;5880:119;;;5918:79;;:::i;:::-;5880:119;6038:1;6063:53;6108:7;6099:6;6088:9;6084:22;6063:53;:::i;:::-;6053:63;;6009:117;6165:2;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6136:118;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5770:619;;;;;:::o;6395:329::-;6454:6;6503:2;6491:9;6482:7;6478:23;6474:32;6471:119;;;6509:79;;:::i;:::-;6471:119;6629:1;6654:53;6699:7;6690:6;6679:9;6675:22;6654:53;:::i;:::-;6644:63;;6600:117;6395:329;;;;:::o;6730:117::-;6839:1;6836;6829:12;6853:117;6962:1;6959;6952:12;6976:180;7024:77;7021:1;7014:88;7121:4;7118:1;7111:15;7145:4;7142:1;7135:15;7162:281;7245:27;7267:4;7245:27;:::i;:::-;7237:6;7233:40;7375:6;7363:10;7360:22;7339:18;7327:10;7324:34;7321:62;7318:88;;;7386:18;;:::i;:::-;7318:88;7426:10;7422:2;7415:22;7205:238;7162:281;;:::o;7449:129::-;7483:6;7510:20;;:::i;:::-;7500:30;;7539:33;7567:4;7559:6;7539:33;:::i;:::-;7449:129;;;:::o;7584:308::-;7646:4;7736:18;7728:6;7725:30;7722:56;;;7758:18;;:::i;:::-;7722:56;7796:29;7818:6;7796:29;:::i;:::-;7788:37;;7880:4;7874;7870:15;7862:23;;7584:308;;;:::o;7898:154::-;7982:6;7977:3;7972;7959:30;8044:1;8035:6;8030:3;8026:16;8019:27;7898:154;;;:::o;8058:412::-;8136:5;8161:66;8177:49;8219:6;8177:49;:::i;:::-;8161:66;:::i;:::-;8152:75;;8250:6;8243:5;8236:21;8288:4;8281:5;8277:16;8326:3;8317:6;8312:3;8308:16;8305:25;8302:112;;;8333:79;;:::i;:::-;8302:112;8423:41;8457:6;8452:3;8447;8423:41;:::i;:::-;8142:328;8058:412;;;;;:::o;8490:340::-;8546:5;8595:3;8588:4;8580:6;8576:17;8572:27;8562:122;;8603:79;;:::i;:::-;8562:122;8720:6;8707:20;8745:79;8820:3;8812:6;8805:4;8797:6;8793:17;8745:79;:::i;:::-;8736:88;;8552:278;8490:340;;;;:::o;8836:509::-;8905:6;8954:2;8942:9;8933:7;8929:23;8925:32;8922:119;;;8960:79;;:::i;:::-;8922:119;9108:1;9097:9;9093:17;9080:31;9138:18;9130:6;9127:30;9124:117;;;9160:79;;:::i;:::-;9124:117;9265:63;9320:7;9311:6;9300:9;9296:22;9265:63;:::i;:::-;9255:73;;9051:287;8836:509;;;;:::o;9351:180::-;9399:77;9396:1;9389:88;9496:4;9493:1;9486:15;9520:4;9517:1;9510:15;9537:115;9620:1;9613:5;9610:12;9600:46;;9626:18;;:::i;:::-;9600:46;9537:115;:::o;9658:131::-;9705:7;9734:5;9723:16;;9740:43;9777:5;9740:43;:::i;:::-;9658:131;;;:::o;9795:::-;9853:9;9886:34;9914:5;9886:34;:::i;:::-;9873:47;;9795:131;;;:::o;9932:147::-;10027:45;10066:5;10027:45;:::i;:::-;10022:3;10015:58;9932:147;;:::o;10085:238::-;10186:4;10224:2;10213:9;10209:18;10201:26;;10237:79;10313:1;10302:9;10298:17;10289:6;10237:79;:::i;:::-;10085:238;;;;:::o;10329:116::-;10399:21;10414:5;10399:21;:::i;:::-;10392:5;10389:32;10379:60;;10435:1;10432;10425:12;10379:60;10329:116;:::o;10451:133::-;10494:5;10532:6;10519:20;10510:29;;10548:30;10572:5;10548:30;:::i;:::-;10451:133;;;;:::o;10590:468::-;10655:6;10663;10712:2;10700:9;10691:7;10687:23;10683:32;10680:119;;;10718:79;;:::i;:::-;10680:119;10838:1;10863:53;10908:7;10899:6;10888:9;10884:22;10863:53;:::i;:::-;10853:63;;10809:117;10965:2;10991:50;11033:7;11024:6;11013:9;11009:22;10991:50;:::i;:::-;10981:60;;10936:115;10590:468;;;;;:::o;11064:307::-;11125:4;11215:18;11207:6;11204:30;11201:56;;;11237:18;;:::i;:::-;11201:56;11275:29;11297:6;11275:29;:::i;:::-;11267:37;;11359:4;11353;11349:15;11341:23;;11064:307;;;:::o;11377:410::-;11454:5;11479:65;11495:48;11536:6;11495:48;:::i;:::-;11479:65;:::i;:::-;11470:74;;11567:6;11560:5;11553:21;11605:4;11598:5;11594:16;11643:3;11634:6;11629:3;11625:16;11622:25;11619:112;;;11650:79;;:::i;:::-;11619:112;11740:41;11774:6;11769:3;11764;11740:41;:::i;:::-;11460:327;11377:410;;;;;:::o;11806:338::-;11861:5;11910:3;11903:4;11895:6;11891:17;11887:27;11877:122;;11918:79;;:::i;:::-;11877:122;12035:6;12022:20;12060:78;12134:3;12126:6;12119:4;12111:6;12107:17;12060:78;:::i;:::-;12051:87;;11867:277;11806:338;;;;:::o;12150:943::-;12245:6;12253;12261;12269;12318:3;12306:9;12297:7;12293:23;12289:33;12286:120;;;12325:79;;:::i;:::-;12286:120;12445:1;12470:53;12515:7;12506:6;12495:9;12491:22;12470:53;:::i;:::-;12460:63;;12416:117;12572:2;12598:53;12643:7;12634:6;12623:9;12619:22;12598:53;:::i;:::-;12588:63;;12543:118;12700:2;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12671:118;12856:2;12845:9;12841:18;12828:32;12887:18;12879:6;12876:30;12873:117;;;12909:79;;:::i;:::-;12873:117;13014:62;13068:7;13059:6;13048:9;13044:22;13014:62;:::i;:::-;13004:72;;12799:287;12150:943;;;;;;;:::o;13099:474::-;13167:6;13175;13224:2;13212:9;13203:7;13199:23;13195:32;13192:119;;;13230:79;;:::i;:::-;13192:119;13350:1;13375:53;13420:7;13411:6;13400:9;13396:22;13375:53;:::i;:::-;13365:63;;13321:117;13477:2;13503:53;13548:7;13539:6;13528:9;13524:22;13503:53;:::i;:::-;13493:63;;13448:118;13099:474;;;;;:::o;13579:180::-;13627:77;13624:1;13617:88;13724:4;13721:1;13714:15;13748:4;13745:1;13738:15;13765:320;13809:6;13846:1;13840:4;13836:12;13826:22;;13893:1;13887:4;13883:12;13914:18;13904:81;;13970:4;13962:6;13958:17;13948:27;;13904:81;14032:2;14024:6;14021:14;14001:18;13998:38;13995:84;;;14051:18;;:::i;:::-;13995:84;13816:269;13765:320;;;:::o;14091:182::-;14231:34;14227:1;14219:6;14215:14;14208:58;14091:182;:::o;14279:366::-;14421:3;14442:67;14506:2;14501:3;14442:67;:::i;:::-;14435:74;;14518:93;14607:3;14518:93;:::i;:::-;14636:2;14631:3;14627:12;14620:19;;14279:366;;;:::o;14651:419::-;14817:4;14855:2;14844:9;14840:18;14832:26;;14904:9;14898:4;14894:20;14890:1;14879:9;14875:17;14868:47;14932:131;15058:4;14932:131;:::i;:::-;14924:139;;14651:419;;;:::o;15076:232::-;15216:34;15212:1;15204:6;15200:14;15193:58;15285:15;15280:2;15272:6;15268:15;15261:40;15076:232;:::o;15314:366::-;15456:3;15477:67;15541:2;15536:3;15477:67;:::i;:::-;15470:74;;15553:93;15642:3;15553:93;:::i;:::-;15671:2;15666:3;15662:12;15655:19;;15314:366;;;:::o;15686:419::-;15852:4;15890:2;15879:9;15875:18;15867:26;;15939:9;15933:4;15929:20;15925:1;15914:9;15910:17;15903:47;15967:131;16093:4;15967:131;:::i;:::-;15959:139;;15686:419;;;:::o;16111:169::-;16251:21;16247:1;16239:6;16235:14;16228:45;16111:169;:::o;16286:366::-;16428:3;16449:67;16513:2;16508:3;16449:67;:::i;:::-;16442:74;;16525:93;16614:3;16525:93;:::i;:::-;16643:2;16638:3;16634:12;16627:19;;16286:366;;;:::o;16658:419::-;16824:4;16862:2;16851:9;16847:18;16839:26;;16911:9;16905:4;16901:20;16897:1;16886:9;16882:17;16875:47;16939:131;17065:4;16939:131;:::i;:::-;16931:139;;16658:419;;;:::o;17083:221::-;17223:34;17219:1;17211:6;17207:14;17200:58;17292:4;17287:2;17279:6;17275:15;17268:29;17083:221;:::o;17310:366::-;17452:3;17473:67;17537:2;17532:3;17473:67;:::i;:::-;17466:74;;17549:93;17638:3;17549:93;:::i;:::-;17667:2;17662:3;17658:12;17651:19;;17310:366;;;:::o;17682:419::-;17848:4;17886:2;17875:9;17871:18;17863:26;;17935:9;17929:4;17925:20;17921:1;17910:9;17906:17;17899:47;17963:131;18089:4;17963:131;:::i;:::-;17955:139;;17682:419;;;:::o;18107:244::-;18247:34;18243:1;18235:6;18231:14;18224:58;18316:27;18311:2;18303:6;18299:15;18292:52;18107:244;:::o;18357:366::-;18499:3;18520:67;18584:2;18579:3;18520:67;:::i;:::-;18513:74;;18596:93;18685:3;18596:93;:::i;:::-;18714:2;18709:3;18705:12;18698:19;;18357:366;;;:::o;18729:419::-;18895:4;18933:2;18922:9;18918:18;18910:26;;18982:9;18976:4;18972:20;18968:1;18957:9;18953:17;18946:47;19010:131;19136:4;19010:131;:::i;:::-;19002:139;;18729:419;;;:::o;19154:181::-;19294:33;19290:1;19282:6;19278:14;19271:57;19154:181;:::o;19341:366::-;19483:3;19504:67;19568:2;19563:3;19504:67;:::i;:::-;19497:74;;19580:93;19669:3;19580:93;:::i;:::-;19698:2;19693:3;19689:12;19682:19;;19341:366;;;:::o;19713:419::-;19879:4;19917:2;19906:9;19902:18;19894:26;;19966:9;19960:4;19956:20;19952:1;19941:9;19937:17;19930:47;19994:131;20120:4;19994:131;:::i;:::-;19986:139;;19713:419;;;:::o;20138:220::-;20278:34;20274:1;20266:6;20262:14;20255:58;20347:3;20342:2;20334:6;20330:15;20323:28;20138:220;:::o;20364:366::-;20506:3;20527:67;20591:2;20586:3;20527:67;:::i;:::-;20520:74;;20603:93;20692:3;20603:93;:::i;:::-;20721:2;20716:3;20712:12;20705:19;;20364:366;;;:::o;20736:419::-;20902:4;20940:2;20929:9;20925:18;20917:26;;20989:9;20983:4;20979:20;20975:1;20964:9;20960:17;20953:47;21017:131;21143:4;21017:131;:::i;:::-;21009:139;;20736:419;;;:::o;21161:178::-;21301:30;21297:1;21289:6;21285:14;21278:54;21161:178;:::o;21345:366::-;21487:3;21508:67;21572:2;21567:3;21508:67;:::i;:::-;21501:74;;21584:93;21673:3;21584:93;:::i;:::-;21702:2;21697:3;21693:12;21686:19;;21345:366;;;:::o;21717:419::-;21883:4;21921:2;21910:9;21906:18;21898:26;;21970:9;21964:4;21960:20;21956:1;21945:9;21941:17;21934:47;21998:131;22124:4;21998:131;:::i;:::-;21990:139;;21717:419;;;:::o;22142:180::-;22190:77;22187:1;22180:88;22287:4;22284:1;22277:15;22311:4;22308:1;22301:15;22328:191;22368:4;22388:20;22406:1;22388:20;:::i;:::-;22383:25;;22422:20;22440:1;22422:20;:::i;:::-;22417:25;;22461:1;22458;22455:8;22452:34;;;22466:18;;:::i;:::-;22452:34;22511:1;22508;22504:9;22496:17;;22328:191;;;;:::o;22525:180::-;22665:32;22661:1;22653:6;22649:14;22642:56;22525:180;:::o;22711:366::-;22853:3;22874:67;22938:2;22933:3;22874:67;:::i;:::-;22867:74;;22950:93;23039:3;22950:93;:::i;:::-;23068:2;23063:3;23059:12;23052:19;;22711:366;;;:::o;23083:419::-;23249:4;23287:2;23276:9;23272:18;23264:26;;23336:9;23330:4;23326:20;23322:1;23311:9;23307:17;23300:47;23364:131;23490:4;23364:131;:::i;:::-;23356:139;;23083:419;;;:::o;23508:225::-;23648:34;23644:1;23636:6;23632:14;23625:58;23717:8;23712:2;23704:6;23700:15;23693:33;23508:225;:::o;23739:366::-;23881:3;23902:67;23966:2;23961:3;23902:67;:::i;:::-;23895:74;;23978:93;24067:3;23978:93;:::i;:::-;24096:2;24091:3;24087:12;24080:19;;23739:366;;;:::o;24111:419::-;24277:4;24315:2;24304:9;24300:18;24292:26;;24364:9;24358:4;24354:20;24350:1;24339:9;24335:17;24328:47;24392:131;24518:4;24392:131;:::i;:::-;24384:139;;24111:419;;;:::o;24536:305::-;24576:3;24595:20;24613:1;24595:20;:::i;:::-;24590:25;;24629:20;24647:1;24629:20;:::i;:::-;24624:25;;24783:1;24715:66;24711:74;24708:1;24705:81;24702:107;;;24789:18;;:::i;:::-;24702:107;24833:1;24830;24826:9;24819:16;;24536:305;;;;:::o;24847:226::-;24987:34;24983:1;24975:6;24971:14;24964:58;25056:9;25051:2;25043:6;25039:15;25032:34;24847:226;:::o;25079:366::-;25221:3;25242:67;25306:2;25301:3;25242:67;:::i;:::-;25235:74;;25318:93;25407:3;25318:93;:::i;:::-;25436:2;25431:3;25427:12;25420:19;;25079:366;;;:::o;25451:419::-;25617:4;25655:2;25644:9;25640:18;25632:26;;25704:9;25698:4;25694:20;25690:1;25679:9;25675:17;25668:47;25732:131;25858:4;25732:131;:::i;:::-;25724:139;;25451:419;;;:::o;25876:221::-;26016:34;26012:1;26004:6;26000:14;25993:58;26085:4;26080:2;26072:6;26068:15;26061:29;25876:221;:::o;26103:366::-;26245:3;26266:67;26330:2;26325:3;26266:67;:::i;:::-;26259:74;;26342:93;26431:3;26342:93;:::i;:::-;26460:2;26455:3;26451:12;26444:19;;26103:366;;;:::o;26475:419::-;26641:4;26679:2;26668:9;26664:18;26656:26;;26728:9;26722:4;26718:20;26714:1;26703:9;26699:17;26692:47;26756:131;26882:4;26756:131;:::i;:::-;26748:139;;26475:419;;;:::o;26900:233::-;27040:34;27036:1;27028:6;27024:14;27017:58;27109:16;27104:2;27096:6;27092:15;27085:41;26900:233;:::o;27139:366::-;27281:3;27302:67;27366:2;27361:3;27302:67;:::i;:::-;27295:74;;27378:93;27467:3;27378:93;:::i;:::-;27496:2;27491:3;27487:12;27480:19;;27139:366;;;:::o;27511:419::-;27677:4;27715:2;27704:9;27700:18;27692:26;;27764:9;27758:4;27754:20;27750:1;27739:9;27735:17;27728:47;27792:131;27918:4;27792:131;:::i;:::-;27784:139;;27511:419;;;:::o;27936:221::-;28076:34;28072:1;28064:6;28060:14;28053:58;28145:4;28140:2;28132:6;28128:15;28121:29;27936:221;:::o;28163:366::-;28305:3;28326:67;28390:2;28385:3;28326:67;:::i;:::-;28319:74;;28402:93;28491:3;28402:93;:::i;:::-;28520:2;28515:3;28511:12;28504:19;;28163:366;;;:::o;28535:419::-;28701:4;28739:2;28728:9;28724:18;28716:26;;28788:9;28782:4;28778:20;28774:1;28763:9;28759:17;28752:47;28816:131;28942:4;28816:131;:::i;:::-;28808:139;;28535:419;;;:::o;28960:222::-;29100:34;29096:1;29088:6;29084:14;29077:58;29169:5;29164:2;29156:6;29152:15;29145:30;28960:222;:::o;29188:366::-;29330:3;29351:67;29415:2;29410:3;29351:67;:::i;:::-;29344:74;;29427:93;29516:3;29427:93;:::i;:::-;29545:2;29540:3;29536:12;29529:19;;29188:366;;;:::o;29560:419::-;29726:4;29764:2;29753:9;29749:18;29741:26;;29813:9;29807:4;29803:20;29799:1;29788:9;29784:17;29777:47;29841:131;29967:4;29841:131;:::i;:::-;29833:139;;29560:419;;;:::o;29985:230::-;30125:34;30121:1;30113:6;30109:14;30102:58;30194:13;30189:2;30181:6;30177:15;30170:38;29985:230;:::o;30221:366::-;30363:3;30384:67;30448:2;30443:3;30384:67;:::i;:::-;30377:74;;30460:93;30549:3;30460:93;:::i;:::-;30578:2;30573:3;30569:12;30562:19;;30221:366;;;:::o;30593:419::-;30759:4;30797:2;30786:9;30782:18;30774:26;;30846:9;30840:4;30836:20;30832:1;30821:9;30817:17;30810:47;30874:131;31000:4;30874:131;:::i;:::-;30866:139;;30593:419;;;:::o;31018:176::-;31158:28;31154:1;31146:6;31142:14;31135:52;31018:176;:::o;31200:366::-;31342:3;31363:67;31427:2;31422:3;31363:67;:::i;:::-;31356:74;;31439:93;31528:3;31439:93;:::i;:::-;31557:2;31552:3;31548:12;31541:19;;31200:366;;;:::o;31572:419::-;31738:4;31776:2;31765:9;31761:18;31753:26;;31825:9;31819:4;31815:20;31811:1;31800:9;31796:17;31789:47;31853:131;31979:4;31853:131;:::i;:::-;31845:139;;31572:419;;;:::o;31997:238::-;32137:34;32133:1;32125:6;32121:14;32114:58;32206:21;32201:2;32193:6;32189:15;32182:46;31997:238;:::o;32241:366::-;32383:3;32404:67;32468:2;32463:3;32404:67;:::i;:::-;32397:74;;32480:93;32569:3;32480:93;:::i;:::-;32598:2;32593:3;32589:12;32582:19;;32241:366;;;:::o;32613:419::-;32779:4;32817:2;32806:9;32802:18;32794:26;;32866:9;32860:4;32856:20;32852:1;32841:9;32837:17;32830:47;32894:131;33020:4;32894:131;:::i;:::-;32886:139;;32613:419;;;:::o;33038:234::-;33178:34;33174:1;33166:6;33162:14;33155:58;33247:17;33242:2;33234:6;33230:15;33223:42;33038:234;:::o;33278:366::-;33420:3;33441:67;33505:2;33500:3;33441:67;:::i;:::-;33434:74;;33517:93;33606:3;33517:93;:::i;:::-;33635:2;33630:3;33626:12;33619:19;;33278:366;;;:::o;33650:419::-;33816:4;33854:2;33843:9;33839:18;33831:26;;33903:9;33897:4;33893:20;33889:1;33878:9;33874:17;33867:47;33931:131;34057:4;33931:131;:::i;:::-;33923:139;;33650:419;;;:::o;34075:148::-;34177:11;34214:3;34199:18;;34075:148;;;;:::o;34229:377::-;34335:3;34363:39;34396:5;34363:39;:::i;:::-;34418:89;34500:6;34495:3;34418:89;:::i;:::-;34411:96;;34516:52;34561:6;34556:3;34549:4;34542:5;34538:16;34516:52;:::i;:::-;34593:6;34588:3;34584:16;34577:23;;34339:267;34229:377;;;;:::o;34612:155::-;34752:7;34748:1;34740:6;34736:14;34729:31;34612:155;:::o;34773:400::-;34933:3;34954:84;35036:1;35031:3;34954:84;:::i;:::-;34947:91;;35047:93;35136:3;35047:93;:::i;:::-;35165:1;35160:3;35156:11;35149:18;;34773:400;;;:::o;35179:701::-;35460:3;35482:95;35573:3;35564:6;35482:95;:::i;:::-;35475:102;;35594:95;35685:3;35676:6;35594:95;:::i;:::-;35587:102;;35706:148;35850:3;35706:148;:::i;:::-;35699:155;;35871:3;35864:10;;35179:701;;;;;:::o;35886:225::-;36026:34;36022:1;36014:6;36010:14;36003:58;36095:8;36090:2;36082:6;36078:15;36071:33;35886:225;:::o;36117:366::-;36259:3;36280:67;36344:2;36339:3;36280:67;:::i;:::-;36273:74;;36356:93;36445:3;36356:93;:::i;:::-;36474:2;36469:3;36465:12;36458:19;;36117:366;;;:::o;36489:419::-;36655:4;36693:2;36682:9;36678:18;36670:26;;36742:9;36736:4;36732:20;36728:1;36717:9;36713:17;36706:47;36770:131;36896:4;36770:131;:::i;:::-;36762:139;;36489:419;;;:::o;36914:237::-;37054:34;37050:1;37042:6;37038:14;37031:58;37123:20;37118:2;37110:6;37106:15;37099:45;36914:237;:::o;37157:366::-;37299:3;37320:67;37384:2;37379:3;37320:67;:::i;:::-;37313:74;;37396:93;37485:3;37396:93;:::i;:::-;37514:2;37509:3;37505:12;37498:19;;37157:366;;;:::o;37529:419::-;37695:4;37733:2;37722:9;37718:18;37710:26;;37782:9;37776:4;37772:20;37768:1;37757:9;37753:17;37746:47;37810:131;37936:4;37810:131;:::i;:::-;37802:139;;37529:419;;;:::o;37954:225::-;38094:34;38090:1;38082:6;38078:14;38071:58;38163:8;38158:2;38150:6;38146:15;38139:33;37954:225;:::o;38185:366::-;38327:3;38348:67;38412:2;38407:3;38348:67;:::i;:::-;38341:74;;38424:93;38513:3;38424:93;:::i;:::-;38542:2;38537:3;38533:12;38526:19;;38185:366;;;:::o;38557:419::-;38723:4;38761:2;38750:9;38746:18;38738:26;;38810:9;38804:4;38800:20;38796:1;38785:9;38781:17;38774:47;38838:131;38964:4;38838:131;:::i;:::-;38830:139;;38557:419;;;:::o;38982:224::-;39122:34;39118:1;39110:6;39106:14;39099:58;39191:7;39186:2;39178:6;39174:15;39167:32;38982:224;:::o;39212:366::-;39354:3;39375:67;39439:2;39434:3;39375:67;:::i;:::-;39368:74;;39451:93;39540:3;39451:93;:::i;:::-;39569:2;39564:3;39560:12;39553:19;;39212:366;;;:::o;39584:419::-;39750:4;39788:2;39777:9;39773:18;39765:26;;39837:9;39831:4;39827:20;39823:1;39812:9;39808:17;39801:47;39865:131;39991:4;39865:131;:::i;:::-;39857:139;;39584:419;;;:::o;40009:147::-;40110:11;40147:3;40132:18;;40009:147;;;;:::o;40162:114::-;;:::o;40282:398::-;40441:3;40462:83;40543:1;40538:3;40462:83;:::i;:::-;40455:90;;40554:93;40643:3;40554:93;:::i;:::-;40672:1;40667:3;40663:11;40656:18;;40282:398;;;:::o;40686:379::-;40870:3;40892:147;41035:3;40892:147;:::i;:::-;40885:154;;41056:3;41049:10;;40686:379;;;:::o;41071:170::-;41211:22;41207:1;41199:6;41195:14;41188:46;41071:170;:::o;41247:366::-;41389:3;41410:67;41474:2;41469:3;41410:67;:::i;:::-;41403:74;;41486:93;41575:3;41486:93;:::i;:::-;41604:2;41599:3;41595:12;41588:19;;41247:366;;;:::o;41619:419::-;41785:4;41823:2;41812:9;41808:18;41800:26;;41872:9;41866:4;41862:20;41858:1;41847:9;41843:17;41836:47;41900:131;42026:4;41900:131;:::i;:::-;41892:139;;41619:419;;;:::o;42044:229::-;42184:34;42180:1;42172:6;42168:14;42161:58;42253:12;42248:2;42240:6;42236:15;42229:37;42044:229;:::o;42279:366::-;42421:3;42442:67;42506:2;42501:3;42442:67;:::i;:::-;42435:74;;42518:93;42607:3;42518:93;:::i;:::-;42636:2;42631:3;42627:12;42620:19;;42279:366;;;:::o;42651:419::-;42817:4;42855:2;42844:9;42840:18;42832:26;;42904:9;42898:4;42894:20;42890:1;42879:9;42875:17;42868:47;42932:131;43058:4;42932:131;:::i;:::-;42924:139;;42651:419;;;:::o;43076:234::-;43216:34;43212:1;43204:6;43200:14;43193:58;43285:17;43280:2;43272:6;43268:15;43261:42;43076:234;:::o;43316:366::-;43458:3;43479:67;43543:2;43538:3;43479:67;:::i;:::-;43472:74;;43555:93;43644:3;43555:93;:::i;:::-;43673:2;43668:3;43664:12;43657:19;;43316:366;;;:::o;43688:419::-;43854:4;43892:2;43881:9;43877:18;43869:26;;43941:9;43935:4;43931:20;43927:1;43916:9;43912:17;43905:47;43969:131;44095:4;43969:131;:::i;:::-;43961:139;;43688:419;;;:::o;44113:98::-;44164:6;44198:5;44192:12;44182:22;;44113:98;;;:::o;44217:168::-;44300:11;44334:6;44329:3;44322:19;44374:4;44369:3;44365:14;44350:29;;44217:168;;;;:::o;44391:360::-;44477:3;44505:38;44537:5;44505:38;:::i;:::-;44559:70;44622:6;44617:3;44559:70;:::i;:::-;44552:77;;44638:52;44683:6;44678:3;44671:4;44664:5;44660:16;44638:52;:::i;:::-;44715:29;44737:6;44715:29;:::i;:::-;44710:3;44706:39;44699:46;;44481:270;44391:360;;;;:::o;44757:640::-;44952:4;44990:3;44979:9;44975:19;44967:27;;45004:71;45072:1;45061:9;45057:17;45048:6;45004:71;:::i;:::-;45085:72;45153:2;45142:9;45138:18;45129:6;45085:72;:::i;:::-;45167;45235:2;45224:9;45220:18;45211:6;45167:72;:::i;:::-;45286:9;45280:4;45276:20;45271:2;45260:9;45256:18;45249:48;45314:76;45385:4;45376:6;45314:76;:::i;:::-;45306:84;;44757:640;;;;;;;:::o;45403:141::-;45459:5;45490:6;45484:13;45475:22;;45506:32;45532:5;45506:32;:::i;:::-;45403:141;;;;:::o;45550:349::-;45619:6;45668:2;45656:9;45647:7;45643:23;45639:32;45636:119;;;45674:79;;:::i;:::-;45636:119;45794:1;45819:63;45874:7;45865:6;45854:9;45850:22;45819:63;:::i;:::-;45809:73;;45765:127;45550:349;;;;:::o;45905:233::-;45944:3;45967:24;45985:5;45967:24;:::i;:::-;45958:33;;46013:66;46006:5;46003:77;46000:103;;;46083:18;;:::i;:::-;46000:103;46130:1;46123:5;46119:13;46112:20;;45905:233;;;:::o;46144:180::-;46192:77;46189:1;46182:88;46289:4;46286:1;46279:15;46313:4;46310:1;46303:15;46330:185;46370:1;46387:20;46405:1;46387:20;:::i;:::-;46382:25;;46421:20;46439:1;46421:20;:::i;:::-;46416:25;;46460:1;46450:35;;46465:18;;:::i;:::-;46450:35;46507:1;46504;46500:9;46495:14;;46330:185;;;;:::o;46521:176::-;46553:1;46570:20;46588:1;46570:20;:::i;:::-;46565:25;;46604:20;46622:1;46604:20;:::i;:::-;46599:25;;46643:1;46633:35;;46648:18;;:::i;:::-;46633:35;46689:1;46686;46682:9;46677:14;;46521:176;;;;:::o;46703:180::-;46751:77;46748:1;46741:88;46848:4;46845:1;46838:15;46872:4;46869:1;46862:15;46889:220;47029:34;47025:1;47017:6;47013:14;47006:58;47098:3;47093:2;47085:6;47081:15;47074:28;46889:220;:::o;47115:366::-;47257:3;47278:67;47342:2;47337:3;47278:67;:::i;:::-;47271:74;;47354:93;47443:3;47354:93;:::i;:::-;47472:2;47467:3;47463:12;47456:19;;47115:366;;;:::o;47487:419::-;47653:4;47691:2;47680:9;47676:18;47668:26;;47740:9;47734:4;47730:20;47726:1;47715:9;47711:17;47704:47;47768:131;47894:4;47768:131;:::i;:::-;47760:139;;47487:419;;;:::o;47912:227::-;48052:34;48048:1;48040:6;48036:14;48029:58;48121:10;48116:2;48108:6;48104:15;48097:35;47912:227;:::o;48145:366::-;48287:3;48308:67;48372:2;48367:3;48308:67;:::i;:::-;48301:74;;48384:93;48473:3;48384:93;:::i;:::-;48502:2;48497:3;48493:12;48486:19;;48145:366;;;:::o;48517:419::-;48683:4;48721:2;48710:9;48706:18;48698:26;;48770:9;48764:4;48760:20;48756:1;48745:9;48741:17;48734:47;48798:131;48924:4;48798:131;:::i;:::-;48790:139;;48517:419;;;:::o

Swarm Source

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