ETH Price: $2,347.56 (+0.20%)

Token

ColizeumNFT (CNFT)
 

Overview

Max Total Supply

1,002 CNFT

Holders

171

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 CNFT
0x862bc39195d7371ea1f0dc60d3f3bf4180387e9a
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:
ColizeumNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 24: ColizeumNFT.sol
pragma solidity ^0.8.0;

import "./ERC721PresetMinterPauserAutoId.sol";
import "./Ownable.sol";

contract ColizeumNFT is ERC721PresetMinterPauserAutoId, Ownable {

    string private _baseTokenURI;
    string private _notRevealedURI;

    uint256 _price = 0.0825 ether; // 0.0825 ETH

    bool public revealed = false;
    bool public isPresale = true;

    uint256 private constant TOTAL_NFT = 8500;

    mapping (address => bool) public whitelist;

   constructor(
        string memory name,
        string memory symbol,
        string memory baseTokenURI,
        string memory notRevealedURI
    ) ERC721PresetMinterPauserAutoId(name, symbol) {
        _baseTokenURI = baseTokenURI;
        _notRevealedURI = notRevealedURI;

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
        _setupRole(ADMIN_ROLE, _msgSender());
    }

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

    function reveal() public virtual {
        require(hasRole(ADMIN_ROLE, _msgSender()), "ColizeumNFT: must have admin role to change data");

        revealed = !revealed;
    }

    function setPresaleStatus() public virtual {
        require(hasRole(ADMIN_ROLE, _msgSender()), "ColizeumNFT: must have admin role to change data");

        isPresale = !isPresale;
    }

    function setBaseTokenURI(string memory _URI) public virtual {
        require(hasRole(ADMIN_ROLE, _msgSender()), "ColizeumNFT: must have admin role to change data");

        _baseTokenURI = _URI;
    }

    function setNotRevealedTokenURI(string memory _URI) public virtual {
        require(hasRole(ADMIN_ROLE, _msgSender()), "ColizeumNFT: must have admin role to change data");

        _notRevealedURI = _URI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ColizeumNFT: URI query for nonexistent token"
        );

        string memory currentBaseURI = revealed ? _baseTokenURI : _notRevealedURI;
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        Strings.toString(tokenId)
                    )
                )
                : "";
    }

    function multipleEthMint(uint256 _numOfTokens) public payable {
        require(totalSupply() + _numOfTokens <= TOTAL_NFT, "ColizeumNFT: can't mint more than 8500");
        require(msg.value >= _numOfTokens * _price, "ColizeumNFT: amount sent is not correct");

        (bool success, string memory reason) = canMint(msg.sender);
        require(success, reason);

        safeMint(msg.sender, _numOfTokens);
    }

    function multipleMint(uint256 _numOfTokens) external onlyOwner {
        require(totalSupply() + _numOfTokens <= TOTAL_NFT, "ColizeumNFT: can't mint more than 8500");

        safeMint(msg.sender, _numOfTokens);
    }

    function addMultipleToWhitelist(address[] calldata _addresses) external onlyOwner {
        require(_addresses.length <= 10000, "ColizeumNFT: provide less addresses in one function call");
        for (uint256 i = 0; i < _addresses.length; i++) {
            whitelist[_addresses[i]] = true;
        }
    }

    function removeMultipleFromWhitelist(address[] calldata _addresses) external onlyOwner {
        require(_addresses.length <= 10000, "ColizeumNFT: provide less addresses in one function call");
        for (uint256 i = 0; i < _addresses.length; i++) {
            whitelist[_addresses[i]] = false;
        }
    }

    function canMint(address _address) public view returns (bool, string memory) {
        if (!whitelist[_address] && isPresale) {
            return (false, "ColizeumNFT: only for whitelist");
        }

        return (true, "");
    }

    /**
    * @notice Allow contract owner to withdraw ETH to its own account.
    */
    function withdrawEth() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

File 1 of 24: AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 2 of 24: AccessControlEnumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;

import "./IAccessControlEnumerable.sol";
import "./AccessControl.sol";
import "./EnumerableSet.sol";

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 6 of 24: Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 7 of 24: EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 10 of 24: ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 11 of 24: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 24: ERC721Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Pausable.sol)

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

File 13 of 24: ERC721PresetMinterPauserAutoId.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/presets/ERC721PresetMinterPauserAutoId.sol)

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";
import "./ERC721Pausable.sol";
import "./AccessControlEnumerable.sol";
import "./Context.sol";
import "./Counters.sol";
import "./IERC20.sol";
import "./Strings.sol";

/**
 * @dev {ERC721} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *  - token ID and URI autogeneration
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 *
 * _Deprecated in favor of https://wizard.openzeppelin.com/[Contracts Wizard]._
 */
contract ERC721PresetMinterPauserAutoId is
    Context,
    AccessControlEnumerable,
    ERC721Enumerable,
    ERC721Burnable,
    ERC721Pausable
{
    using Counters for Counters.Counter;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE");

    Counters.Counter private _tokenIdTracker;

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * Token URIs will be autogenerated based on `baseURI` and their token IDs.
     * See {ERC721-tokenURI}.
     */
    constructor(
        string memory name,
        string memory symbol
    ) ERC721(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
        _setupRole(ADMIN_ROLE, _msgSender());
    }

    /**
     * @dev Creates a new token for `to`. Its token ID will be automatically
     * assigned (and available on the emitted {IERC721-Transfer} event), and the token
     * URI autogenerated based on the base URI passed at construction.
     *
     * See {ERC721-_mint}.
     */
    function mint(address to) internal virtual {
        // We cannot just use balanceOf to create the new tokenId because tokens
        // can be burned (destroyed), so we need a separate counter.
        _mint(to, _tokenIdTracker.current());
        _tokenIdTracker.increment();
    }

    function safeMint(address to, uint256 _amount) internal virtual {
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _newItemId = _tokenIdTracker.current();
            _safeMint(to, _newItemId);
            _tokenIdTracker.increment();
        }
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

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

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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 15 of 24: IAccessControlEnumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

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

pragma solidity ^0.8.0;

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

File 17 of 24: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

    /**
     * @dev 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 19 of 24: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 23 of 24: Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"string","name":"notRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addMultipleToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"multipleEthMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"multipleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeMultipleFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setNotRevealedTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPresaleStatus","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052670125195019f840006011556000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055503480156200005357600080fd5b506040516200678438038062006784833981810160405281019062000079919062000782565b8383818181600290805190602001906200009592919062000654565b508060039080519060200190620000ae92919062000654565b5050506000600c60006101000a81548160ff021916908315150217905550620000f06000801b620000e4620002f860201b60201c565b6200030060201b60201c565b620001317f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a662000125620002f860201b60201c565b6200030060201b60201c565b620001727f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62000166620002f860201b60201c565b6200030060201b60201c565b620001b37fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775620001a7620002f860201b60201c565b6200030060201b60201c565b5050620001d5620001c9620002f860201b60201c565b6200031660201b60201c565b81600f9080519060200190620001ed92919062000654565b5080601090805190602001906200020692919062000654565b506200022b6000801b6200021f620002f860201b60201c565b6200030060201b60201c565b6200026c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a662000260620002f860201b60201c565b6200030060201b60201c565b620002ad7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620002a1620002f860201b60201c565b6200030060201b60201c565b620002ee7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775620002e2620002f860201b60201c565b6200030060201b60201c565b50505050620009f4565b600033905090565b620003128282620003dc60201b60201c565b5050565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003f382826200042460201b620021071760201c565b6200041f81600160008581526020019081526020016000206200051560201b620021e71790919060201c565b505050565b6200043682826200054d60201b60201c565b6200051157600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004b6620002f860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600062000545836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620005b760201b60201c565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000620005cb83836200063160201b60201c565b620006265782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506200062b565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620006629062000905565b90600052602060002090601f016020900481019282620006865760008555620006d2565b82601f10620006a157805160ff1916838001178555620006d2565b82800160010185558215620006d2579182015b82811115620006d1578251825591602001919060010190620006b4565b5b509050620006e19190620006e5565b5090565b5b8082111562000700576000816000905550600101620006e6565b5090565b60006200071b620007158462000899565b62000870565b9050828152602081018484840111156200073a5762000739620009d4565b5b62000747848285620008cf565b509392505050565b600082601f830112620007675762000766620009cf565b5b81516200077984826020860162000704565b91505092915050565b600080600080608085870312156200079f576200079e620009de565b5b600085015167ffffffffffffffff811115620007c057620007bf620009d9565b5b620007ce878288016200074f565b945050602085015167ffffffffffffffff811115620007f257620007f1620009d9565b5b62000800878288016200074f565b935050604085015167ffffffffffffffff811115620008245762000823620009d9565b5b62000832878288016200074f565b925050606085015167ffffffffffffffff811115620008565762000855620009d9565b5b62000864878288016200074f565b91505092959194509250565b60006200087c6200088f565b90506200088a82826200093b565b919050565b6000604051905090565b600067ffffffffffffffff821115620008b757620008b6620009a0565b5b620008c282620009e3565b9050602081019050919050565b60005b83811015620008ef578082015181840152602081019050620008d2565b83811115620008ff576000848401525b50505050565b600060028204905060018216806200091e57607f821691505b6020821081141562000935576200093462000971565b5b50919050565b6200094682620009e3565b810181811067ffffffffffffffff82111715620009685762000967620009a0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b615d808062000a046000396000f3fe6080604052600436106102885760003560e01c80637ea6c88d1161015a578063a475b5dd116100c1578063d53913931161007a578063d5391393146109bc578063d547741f146109e7578063e63ab1e914610a10578063e985e9c514610a3b578063f2fde38b14610a78578063f62a1a9814610aa157610288565b8063a475b5dd146108ad578063b2eff28a146108c4578063b88d4fde146108db578063c2ba474414610904578063c87b56dd14610942578063ca15c8731461097f57610288565b806395364a841161011357806395364a84146107af57806395d89b41146107da5780639b19251a14610805578063a0ef91df14610842578063a217fddf14610859578063a22cb4651461088457610288565b80637ea6c88d146106a15780638401f8d1146106ca5780638456cb59146106f35780638da5cb5b1461070a5780639010d07c1461073557806391d148541461077257610288565b806336568abe116101fe5780635c975abb116101b75780635c975abb146105915780636352211e146105bc57806370a08231146105f9578063715018a61461063657806375895b131461064d57806375b238fc1461067657610288565b806336568abe146104975780633f4ba83a146104c057806342842e0e146104d757806342966c68146105005780634f6ccce714610529578063518302271461056657610288565b806318160ddd1161025057806318160ddd1461037757806323b872dd146103a2578063248a9ca3146103cb5780632f2ff15d146104085780632f745c591461043157806330176e131461046e57610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b31461033257806311e076691461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190614427565b610aca565b6040516102c19190614afb565b60405180910390f35b3480156102d657600080fd5b506102df610adc565b6040516102ec9190614b61565b60405180910390f35b34801561030157600080fd5b5061031c600480360381019061031791906144ca565b610b6e565b6040516103299190614a94565b60405180910390f35b34801561033e57600080fd5b50610359600480360381019061035491906142ed565b610bf3565b005b610375600480360381019061037091906144ca565b610d0b565b005b34801561038357600080fd5b5061038c610e15565b6040516103999190614f43565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c491906141d7565b610e22565b005b3480156103d757600080fd5b506103f260048036038101906103ed919061437a565b610e82565b6040516103ff9190614b46565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906143a7565b610ea1565b005b34801561043d57600080fd5b50610458600480360381019061045391906142ed565b610ec2565b6040516104659190614f43565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190614481565b610f67565b005b3480156104a357600080fd5b506104be60048036038101906104b991906143a7565b610ff1565b005b3480156104cc57600080fd5b506104d5611074565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906141d7565b6110ee565b005b34801561050c57600080fd5b50610527600480360381019061052291906144ca565b61110e565b005b34801561053557600080fd5b50610550600480360381019061054b91906144ca565b61116a565b60405161055d9190614f43565b60405180910390f35b34801561057257600080fd5b5061057b6111db565b6040516105889190614afb565b60405180910390f35b34801561059d57600080fd5b506105a66111ee565b6040516105b39190614afb565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de91906144ca565b611205565b6040516105f09190614a94565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b919061416a565b6112b7565b60405161062d9190614f43565b60405180910390f35b34801561064257600080fd5b5061064b61136f565b005b34801561065957600080fd5b50610674600480360381019061066f91906144ca565b6113f7565b005b34801561068257600080fd5b5061068b6114d7565b6040516106989190614b46565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190614481565b6114fb565b005b3480156106d657600080fd5b506106f160048036038101906106ec919061432d565b611585565b005b3480156106ff57600080fd5b506107086116ee565b005b34801561071657600080fd5b5061071f611768565b60405161072c9190614a94565b60405180910390f35b34801561074157600080fd5b5061075c600480360381019061075791906143e7565b611792565b6040516107699190614a94565b60405180910390f35b34801561077e57600080fd5b50610799600480360381019061079491906143a7565b6117c1565b6040516107a69190614afb565b60405180910390f35b3480156107bb57600080fd5b506107c461182b565b6040516107d19190614afb565b60405180910390f35b3480156107e657600080fd5b506107ef61183e565b6040516107fc9190614b61565b60405180910390f35b34801561081157600080fd5b5061082c6004803603810190610827919061416a565b6118d0565b6040516108399190614afb565b60405180910390f35b34801561084e57600080fd5b506108576118f0565b005b34801561086557600080fd5b5061086e6119bc565b60405161087b9190614b46565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a691906142ad565b6119c3565b005b3480156108b957600080fd5b506108c26119d9565b005b3480156108d057600080fd5b506108d9611a75565b005b3480156108e757600080fd5b5061090260048036038101906108fd919061422a565b611b11565b005b34801561091057600080fd5b5061092b6004803603810190610926919061416a565b611b73565b604051610939929190614b16565b60405180910390f35b34801561094e57600080fd5b50610969600480360381019061096491906144ca565b611c3f565b6040516109769190614b61565b60405180910390f35b34801561098b57600080fd5b506109a660048036038101906109a1919061437a565b611d85565b6040516109b39190614f43565b60405180910390f35b3480156109c857600080fd5b506109d1611da9565b6040516109de9190614b46565b60405180910390f35b3480156109f357600080fd5b50610a0e6004803603810190610a0991906143a7565b611dcd565b005b348015610a1c57600080fd5b50610a25611dee565b604051610a329190614b46565b60405180910390f35b348015610a4757600080fd5b50610a626004803603810190610a5d9190614197565b611e12565b604051610a6f9190614afb565b60405180910390f35b348015610a8457600080fd5b50610a9f6004803603810190610a9a919061416a565b611ea6565b005b348015610aad57600080fd5b50610ac86004803603810190610ac3919061432d565b611f9e565b005b6000610ad582612217565b9050919050565b606060028054610aeb90615227565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1790615227565b8015610b645780601f10610b3957610100808354040283529160200191610b64565b820191906000526020600020905b815481529060010190602001808311610b4757829003601f168201915b5050505050905090565b6000610b7982612291565b610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90614e23565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bfe82611205565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690614e63565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c8e6122fd565b73ffffffffffffffffffffffffffffffffffffffff161480610cbd5750610cbc81610cb76122fd565b611e12565b5b610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf390614d83565b60405180910390fd5b610d068383612305565b505050565b61213481610d17610e15565b610d219190615028565b1115610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990614de3565b60405180910390fd5b60115481610d7091906150af565b341015610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da990614be3565b60405180910390fd5b600080610dbe33611b73565b91509150818190610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc9190614b61565b60405180910390fd5b50610e1033846123be565b505050565b6000600a80549050905090565b610e33610e2d6122fd565b82612407565b610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990614e83565b60405180910390fd5b610e7d8383836124e5565b505050565b6000806000838152602001908152602001600020600101549050919050565b610eaa82610e82565b610eb38161274c565b610ebd8383612760565b505050565b6000610ecd836112b7565b8210610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590614c03565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f987fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610f936122fd565b6117c1565b610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90614d43565b60405180910390fd5b80600f9080519060200190610fed929190613f13565b5050565b610ff96122fd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90614f23565b60405180910390fd5b6110708282612794565b5050565b6110a57f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6110a06122fd565b6117c1565b6110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90614f03565b60405180910390fd5b6110ec6127c8565b565b61110983838360405180602001604052806000815250611b11565b505050565b61111f6111196122fd565b82612407565b61115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590614ee3565b60405180910390fd5b6111678161286a565b50565b6000611174610e15565b82106111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90614ea3565b60405180910390fd5b600a82815481106111c9576111c86153c0565b5b90600052602060002001549050919050565b601260009054906101000a900460ff1681565b6000600c60009054906101000a900460ff16905090565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a590614dc3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f90614da3565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113776122fd565b73ffffffffffffffffffffffffffffffffffffffff16611395611768565b73ffffffffffffffffffffffffffffffffffffffff16146113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290614e43565b60405180910390fd5b6113f56000612987565b565b6113ff6122fd565b73ffffffffffffffffffffffffffffffffffffffff1661141d611768565b73ffffffffffffffffffffffffffffffffffffffff1614611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a90614e43565b60405180910390fd5b6121348161147f610e15565b6114899190615028565b11156114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c190614de3565b60405180910390fd5b6114d433826123be565b50565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b61152c7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756115276122fd565b6117c1565b61156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156290614d43565b60405180910390fd5b8060109080519060200190611581929190613f13565b5050565b61158d6122fd565b73ffffffffffffffffffffffffffffffffffffffff166115ab611768565b73ffffffffffffffffffffffffffffffffffffffff1614611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890614e43565b60405180910390fd5b612710828290501115611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090614d03565b60405180910390fd5b60005b828290508110156116e9576001601360008585858181106116705761166f6153c0565b5b9050602002016020810190611685919061416a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806116e19061528a565b91505061164c565b505050565b61171f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61171a6122fd565b6117c1565b61175e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175590614ca3565b60405180910390fd5b611766612a4d565b565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006117b98260016000868152602001908152602001600020612af090919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260019054906101000a900460ff1681565b60606003805461184d90615227565b80601f016020809104026020016040519081016040528092919081815260200182805461187990615227565b80156118c65780601f1061189b576101008083540402835291602001916118c6565b820191906000526020600020905b8154815290600101906020018083116118a957829003601f168201915b5050505050905090565b60136020528060005260406000206000915054906101000a900460ff1681565b6118f86122fd565b73ffffffffffffffffffffffffffffffffffffffff16611916611768565b73ffffffffffffffffffffffffffffffffffffffff161461196c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196390614e43565b60405180910390fd5b611974611768565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156119b9573d6000803e3d6000fd5b50565b6000801b81565b6119d56119ce6122fd565b8383612b0a565b5050565b611a0a7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775611a056122fd565b6117c1565b611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4090614d43565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b611aa67fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775611aa16122fd565b6117c1565b611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc90614d43565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550565b611b22611b1c6122fd565b83612407565b611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5890614e83565b60405180910390fd5b611b6d84848484612c77565b50505050565b60006060601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611bdd5750601260019054906101000a900460ff165b15611c235760006040518060400160405280601f81526020017f436f6c697a65756d4e46543a206f6e6c7920666f722077686974656c6973740081525091509150611c3a565b600160405180602001604052806000815250915091505b915091565b6060611c4a82612291565b611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614ec3565b60405180910390fd5b6000601260009054906101000a900460ff16611ca6576010611ca9565b600f5b8054611cb490615227565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce090615227565b8015611d2d5780601f10611d0257610100808354040283529160200191611d2d565b820191906000526020600020905b815481529060010190602001808311611d1057829003601f168201915b505050505090506000815111611d525760405180602001604052806000815250611d7d565b80611d5c84612cd3565b604051602001611d6d929190614a36565b6040516020818303038152906040525b915050919050565b6000611da260016000848152602001908152602001600020612e34565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611dd682610e82565b611ddf8161274c565b611de98383612794565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eae6122fd565b73ffffffffffffffffffffffffffffffffffffffff16611ecc611768565b73ffffffffffffffffffffffffffffffffffffffff1614611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990614e43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990614c43565b60405180910390fd5b611f9b81612987565b50565b611fa66122fd565b73ffffffffffffffffffffffffffffffffffffffff16611fc4611768565b73ffffffffffffffffffffffffffffffffffffffff161461201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190614e43565b60405180910390fd5b612710828290501115612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205990614d03565b60405180910390fd5b60005b8282905081101561210257600060136000858585818110612089576120886153c0565b5b905060200201602081019061209e919061416a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806120fa9061528a565b915050612065565b505050565b61211182826117c1565b6121e357600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121886122fd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600061220f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612e49565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061228a575061228982612eb9565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661237883611205565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080600090505b82811015612401576123d8600d612f9b565b91506123e48483612fa9565b6123ee600d612fc7565b80806123f99061528a565b9150506123c6565b50505050565b600061241282612291565b612451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244890614d23565b60405180910390fd5b600061245c83611205565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124cb57508373ffffffffffffffffffffffffffffffffffffffff166124b384610b6e565b73ffffffffffffffffffffffffffffffffffffffff16145b806124dc57506124db8185611e12565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661250582611205565b73ffffffffffffffffffffffffffffffffffffffff161461255b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255290614c63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c290614cc3565b60405180910390fd5b6125d6838383612fdd565b6125e1600082612305565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126319190615109565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126889190615028565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612747838383612fed565b505050565b61275d816127586122fd565b612ff2565b50565b61276a8282612107565b61278f81600160008581526020019081526020016000206121e790919063ffffffff16565b505050565b61279e828261308f565b6127c3816001600085815260200190815260200160002061317090919063ffffffff16565b505050565b6127d06111ee565b61280f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280690614bc3565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6128536122fd565b6040516128609190614a94565b60405180910390a1565b600061287582611205565b905061288381600084612fdd565b61288e600083612305565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128de9190615109565b925050819055506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461298381600084612fed565b5050565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a556111ee565b15612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8c90614d63565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612ad96122fd565b604051612ae69190614a94565b60405180910390a1565b6000612aff83600001836131a0565b60001c905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7090614ce3565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c6a9190614afb565b60405180910390a3505050565b612c828484846124e5565b612c8e848484846131cb565b612ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc490614c23565b60405180910390fd5b50505050565b60606000821415612d1b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e2f565b600082905060005b60008214612d4d578080612d369061528a565b915050600a82612d46919061507e565b9150612d23565b60008167ffffffffffffffff811115612d6957612d686153ef565b5b6040519080825280601f01601f191660200182016040528015612d9b5781602001600182028036833780820191505090505b5090505b60008514612e2857600182612db49190615109565b9150600a85612dc391906152d3565b6030612dcf9190615028565b60f81b818381518110612de557612de46153c0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e21919061507e565b9450612d9f565b8093505050505b919050565b6000612e4282600001613362565b9050919050565b6000612e558383613373565b612eae578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612eb3565b600090505b92915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f8457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f945750612f9382613396565b5b9050919050565b600081600001549050919050565b612fc3828260405180602001604052806000815250613410565b5050565b6001816000016000828254019250508190555050565b612fe883838361346b565b505050565b505050565b612ffc82826117c1565b61308b576130218173ffffffffffffffffffffffffffffffffffffffff1660146134c3565b61302f8360001c60206134c3565b604051602001613040929190614a5a565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130829190614b61565b60405180910390fd5b5050565b61309982826117c1565b1561316c57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506131116122fd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000613198836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6136ff565b905092915050565b60008260000182815481106131b8576131b76153c0565b5b9060005260206000200154905092915050565b60006131ec8473ffffffffffffffffffffffffffffffffffffffff16613813565b15613355578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132156122fd565b8786866040518563ffffffff1660e01b81526004016132379493929190614aaf565b602060405180830381600087803b15801561325157600080fd5b505af192505050801561328257506040513d601f19601f8201168201806040525081019061327f9190614454565b60015b613305573d80600081146132b2576040519150601f19603f3d011682016040523d82523d6000602084013e6132b7565b606091505b506000815114156132fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f490614c23565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061335a565b600190505b949350505050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613409575061340882613836565b5b9050919050565b61341a83836138b0565b61342760008484846131cb565b613466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345d90614c23565b60405180910390fd5b505050565b613476838383613a8a565b61347e6111ee565b156134be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b590614ba3565b60405180910390fd5b505050565b6060600060028360026134d691906150af565b6134e09190615028565b67ffffffffffffffff8111156134f9576134f86153ef565b5b6040519080825280601f01601f19166020018201604052801561352b5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613563576135626153c0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106135c7576135c66153c0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261360791906150af565b6136119190615028565b90505b60018111156136b1577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613653576136526153c0565b5b1a60f81b82828151811061366a576136696153c0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806136aa906151fd565b9050613614565b50600084146136f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ec90614b83565b60405180910390fd5b8091505092915050565b600080836001016000848152602001908152602001600020549050600081146138075760006001826137319190615109565b90506000600186600001805490506137499190615109565b90508181146137b857600086600001828154811061376a576137696153c0565b5b906000526020600020015490508087600001848154811061378e5761378d6153c0565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806137cc576137cb615391565b5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061380d565b60009150505b92915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806138a957506138a882613b9e565b5b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391790614e03565b60405180910390fd5b61392981612291565b15613969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396090614c83565b60405180910390fd5b61397560008383612fdd565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139c59190615028565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a8660008383612fed565b5050565b613a95838383613c08565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613ad857613ad381613c0d565b613b17565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613b1657613b158382613c56565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b5a57613b5581613dc3565b613b99565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613b9857613b978282613e94565b5b5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c63846112b7565b613c6d9190615109565b9050600060096000848152602001908152602001600020549050818114613d52576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a80549050613dd79190615109565b90506000600b60008481526020019081526020016000205490506000600a8381548110613e0757613e066153c0565b5b9060005260206000200154905080600a8381548110613e2957613e286153c0565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480613e7857613e77615391565b5b6001900381819060005260206000200160009055905550505050565b6000613e9f836112b7565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b828054613f1f90615227565b90600052602060002090601f016020900481019282613f415760008555613f88565b82601f10613f5a57805160ff1916838001178555613f88565b82800160010185558215613f88579182015b82811115613f87578251825591602001919060010190613f6c565b5b509050613f959190613f99565b5090565b5b80821115613fb2576000816000905550600101613f9a565b5090565b6000613fc9613fc484614f83565b614f5e565b905082815260208101848484011115613fe557613fe461542d565b5b613ff08482856151bb565b509392505050565b600061400b61400684614fb4565b614f5e565b9050828152602081018484840111156140275761402661542d565b5b6140328482856151bb565b509392505050565b60008135905061404981615cd7565b92915050565b60008083601f84011261406557614064615423565b5b8235905067ffffffffffffffff8111156140825761408161541e565b5b60208301915083602082028301111561409e5761409d615428565b5b9250929050565b6000813590506140b481615cee565b92915050565b6000813590506140c981615d05565b92915050565b6000813590506140de81615d1c565b92915050565b6000815190506140f381615d1c565b92915050565b600082601f83011261410e5761410d615423565b5b813561411e848260208601613fb6565b91505092915050565b600082601f83011261413c5761413b615423565b5b813561414c848260208601613ff8565b91505092915050565b60008135905061416481615d33565b92915050565b6000602082840312156141805761417f615437565b5b600061418e8482850161403a565b91505092915050565b600080604083850312156141ae576141ad615437565b5b60006141bc8582860161403a565b92505060206141cd8582860161403a565b9150509250929050565b6000806000606084860312156141f0576141ef615437565b5b60006141fe8682870161403a565b935050602061420f8682870161403a565b925050604061422086828701614155565b9150509250925092565b6000806000806080858703121561424457614243615437565b5b60006142528782880161403a565b94505060206142638782880161403a565b935050604061427487828801614155565b925050606085013567ffffffffffffffff81111561429557614294615432565b5b6142a1878288016140f9565b91505092959194509250565b600080604083850312156142c4576142c3615437565b5b60006142d28582860161403a565b92505060206142e3858286016140a5565b9150509250929050565b6000806040838503121561430457614303615437565b5b60006143128582860161403a565b925050602061432385828601614155565b9150509250929050565b6000806020838503121561434457614343615437565b5b600083013567ffffffffffffffff81111561436257614361615432565b5b61436e8582860161404f565b92509250509250929050565b6000602082840312156143905761438f615437565b5b600061439e848285016140ba565b91505092915050565b600080604083850312156143be576143bd615437565b5b60006143cc858286016140ba565b92505060206143dd8582860161403a565b9150509250929050565b600080604083850312156143fe576143fd615437565b5b600061440c858286016140ba565b925050602061441d85828601614155565b9150509250929050565b60006020828403121561443d5761443c615437565b5b600061444b848285016140cf565b91505092915050565b60006020828403121561446a57614469615437565b5b6000614478848285016140e4565b91505092915050565b60006020828403121561449757614496615437565b5b600082013567ffffffffffffffff8111156144b5576144b4615432565b5b6144c184828501614127565b91505092915050565b6000602082840312156144e0576144df615437565b5b60006144ee84828501614155565b91505092915050565b6145008161513d565b82525050565b61450f8161514f565b82525050565b61451e8161515b565b82525050565b600061452f82614fe5565b6145398185614ffb565b93506145498185602086016151ca565b6145528161543c565b840191505092915050565b600061456882614ff0565b614572818561500c565b93506145828185602086016151ca565b61458b8161543c565b840191505092915050565b60006145a182614ff0565b6145ab818561501d565b93506145bb8185602086016151ca565b80840191505092915050565b60006145d460208361500c565b91506145df8261544d565b602082019050919050565b60006145f7602b8361500c565b915061460282615476565b604082019050919050565b600061461a60148361500c565b9150614625826154c5565b602082019050919050565b600061463d60278361500c565b9150614648826154ee565b604082019050919050565b6000614660602b8361500c565b915061466b8261553d565b604082019050919050565b600061468360328361500c565b915061468e8261558c565b604082019050919050565b60006146a660268361500c565b91506146b1826155db565b604082019050919050565b60006146c960258361500c565b91506146d48261562a565b604082019050919050565b60006146ec601c8361500c565b91506146f782615679565b602082019050919050565b600061470f603e8361500c565b915061471a826156a2565b604082019050919050565b600061473260248361500c565b915061473d826156f1565b604082019050919050565b600061475560198361500c565b915061476082615740565b602082019050919050565b600061477860388361500c565b915061478382615769565b604082019050919050565b600061479b602c8361500c565b91506147a6826157b8565b604082019050919050565b60006147be60308361500c565b91506147c982615807565b604082019050919050565b60006147e160108361500c565b91506147ec82615856565b602082019050919050565b600061480460388361500c565b915061480f8261587f565b604082019050919050565b6000614827602a8361500c565b9150614832826158ce565b604082019050919050565b600061484a60298361500c565b91506148558261591d565b604082019050919050565b600061486d60268361500c565b91506148788261596c565b604082019050919050565b600061489060208361500c565b915061489b826159bb565b602082019050919050565b60006148b3602c8361500c565b91506148be826159e4565b604082019050919050565b60006148d660208361500c565b91506148e182615a33565b602082019050919050565b60006148f960218361500c565b915061490482615a5c565b604082019050919050565b600061491c60318361500c565b915061492782615aab565b604082019050919050565b600061493f602c8361500c565b915061494a82615afa565b604082019050919050565b600061496260178361501d565b915061496d82615b49565b601782019050919050565b6000614985602c8361500c565b915061499082615b72565b604082019050919050565b60006149a860308361500c565b91506149b382615bc1565b604082019050919050565b60006149cb60408361500c565b91506149d682615c10565b604082019050919050565b60006149ee60118361501d565b91506149f982615c5f565b601182019050919050565b6000614a11602f8361500c565b9150614a1c82615c88565b604082019050919050565b614a30816151b1565b82525050565b6000614a428285614596565b9150614a4e8284614596565b91508190509392505050565b6000614a6582614955565b9150614a718285614596565b9150614a7c826149e1565b9150614a888284614596565b91508190509392505050565b6000602082019050614aa960008301846144f7565b92915050565b6000608082019050614ac460008301876144f7565b614ad160208301866144f7565b614ade6040830185614a27565b8181036060830152614af08184614524565b905095945050505050565b6000602082019050614b106000830184614506565b92915050565b6000604082019050614b2b6000830185614506565b8181036020830152614b3d818461455d565b90509392505050565b6000602082019050614b5b6000830184614515565b92915050565b60006020820190508181036000830152614b7b818461455d565b905092915050565b60006020820190508181036000830152614b9c816145c7565b9050919050565b60006020820190508181036000830152614bbc816145ea565b9050919050565b60006020820190508181036000830152614bdc8161460d565b9050919050565b60006020820190508181036000830152614bfc81614630565b9050919050565b60006020820190508181036000830152614c1c81614653565b9050919050565b60006020820190508181036000830152614c3c81614676565b9050919050565b60006020820190508181036000830152614c5c81614699565b9050919050565b60006020820190508181036000830152614c7c816146bc565b9050919050565b60006020820190508181036000830152614c9c816146df565b9050919050565b60006020820190508181036000830152614cbc81614702565b9050919050565b60006020820190508181036000830152614cdc81614725565b9050919050565b60006020820190508181036000830152614cfc81614748565b9050919050565b60006020820190508181036000830152614d1c8161476b565b9050919050565b60006020820190508181036000830152614d3c8161478e565b9050919050565b60006020820190508181036000830152614d5c816147b1565b9050919050565b60006020820190508181036000830152614d7c816147d4565b9050919050565b60006020820190508181036000830152614d9c816147f7565b9050919050565b60006020820190508181036000830152614dbc8161481a565b9050919050565b60006020820190508181036000830152614ddc8161483d565b9050919050565b60006020820190508181036000830152614dfc81614860565b9050919050565b60006020820190508181036000830152614e1c81614883565b9050919050565b60006020820190508181036000830152614e3c816148a6565b9050919050565b60006020820190508181036000830152614e5c816148c9565b9050919050565b60006020820190508181036000830152614e7c816148ec565b9050919050565b60006020820190508181036000830152614e9c8161490f565b9050919050565b60006020820190508181036000830152614ebc81614932565b9050919050565b60006020820190508181036000830152614edc81614978565b9050919050565b60006020820190508181036000830152614efc8161499b565b9050919050565b60006020820190508181036000830152614f1c816149be565b9050919050565b60006020820190508181036000830152614f3c81614a04565b9050919050565b6000602082019050614f586000830184614a27565b92915050565b6000614f68614f79565b9050614f748282615259565b919050565b6000604051905090565b600067ffffffffffffffff821115614f9e57614f9d6153ef565b5b614fa78261543c565b9050602081019050919050565b600067ffffffffffffffff821115614fcf57614fce6153ef565b5b614fd88261543c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615033826151b1565b915061503e836151b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561507357615072615304565b5b828201905092915050565b6000615089826151b1565b9150615094836151b1565b9250826150a4576150a3615333565b5b828204905092915050565b60006150ba826151b1565b91506150c5836151b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156150fe576150fd615304565b5b828202905092915050565b6000615114826151b1565b915061511f836151b1565b92508282101561513257615131615304565b5b828203905092915050565b600061514882615191565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156151e85780820151818401526020810190506151cd565b838111156151f7576000848401525b50505050565b6000615208826151b1565b9150600082141561521c5761521b615304565b5b600182039050919050565b6000600282049050600182168061523f57607f821691505b6020821081141561525357615252615362565b5b50919050565b6152628261543c565b810181811067ffffffffffffffff82111715615281576152806153ef565b5b80604052505050565b6000615295826151b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152c8576152c7615304565b5b600182019050919050565b60006152de826151b1565b91506152e9836151b1565b9250826152f9576152f8615333565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f436f6c697a65756d4e46543a20616d6f756e742073656e74206973206e6f742060008201527f636f727265637400000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732315072657365744d696e7465725061757365724175746f49643a2060008201527f6d75737420686176652070617573657220726f6c6520746f2070617573650000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f436f6c697a65756d4e46543a2070726f76696465206c6573732061646472657360008201527f73657320696e206f6e652066756e6374696f6e2063616c6c0000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436f6c697a65756d4e46543a206d75737420686176652061646d696e20726f6c60008201527f6520746f206368616e6765206461746100000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f436f6c697a65756d4e46543a2063616e2774206d696e74206d6f72652074686160008201527f6e20383530300000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f436f6c697a65756d4e46543a2055524920717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4552433732315072657365744d696e7465725061757365724175746f49643a2060008201527f6d75737420686176652070617573657220726f6c6520746f20756e7061757365602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b615ce08161513d565b8114615ceb57600080fd5b50565b615cf78161514f565b8114615d0257600080fd5b50565b615d0e8161515b565b8114615d1957600080fd5b50565b615d2581615165565b8114615d3057600080fd5b50565b615d3c816151b1565b8114615d4757600080fd5b5056fea2646970667358221220151d4299fe637eb749790026a87069b0d8a5ec7d70a32e6ba10a5b0522c831b964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b436f6c697a65756d4e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004434e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6170692e73616c656e66742e696f2f636f6c6c656374696f6e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6170692e73616c656e66742e696f2f636f6c6c656374696f6e2f626c616e6b2f000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80637ea6c88d1161015a578063a475b5dd116100c1578063d53913931161007a578063d5391393146109bc578063d547741f146109e7578063e63ab1e914610a10578063e985e9c514610a3b578063f2fde38b14610a78578063f62a1a9814610aa157610288565b8063a475b5dd146108ad578063b2eff28a146108c4578063b88d4fde146108db578063c2ba474414610904578063c87b56dd14610942578063ca15c8731461097f57610288565b806395364a841161011357806395364a84146107af57806395d89b41146107da5780639b19251a14610805578063a0ef91df14610842578063a217fddf14610859578063a22cb4651461088457610288565b80637ea6c88d146106a15780638401f8d1146106ca5780638456cb59146106f35780638da5cb5b1461070a5780639010d07c1461073557806391d148541461077257610288565b806336568abe116101fe5780635c975abb116101b75780635c975abb146105915780636352211e146105bc57806370a08231146105f9578063715018a61461063657806375895b131461064d57806375b238fc1461067657610288565b806336568abe146104975780633f4ba83a146104c057806342842e0e146104d757806342966c68146105005780634f6ccce714610529578063518302271461056657610288565b806318160ddd1161025057806318160ddd1461037757806323b872dd146103a2578063248a9ca3146103cb5780632f2ff15d146104085780632f745c591461043157806330176e131461046e57610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b31461033257806311e076691461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190614427565b610aca565b6040516102c19190614afb565b60405180910390f35b3480156102d657600080fd5b506102df610adc565b6040516102ec9190614b61565b60405180910390f35b34801561030157600080fd5b5061031c600480360381019061031791906144ca565b610b6e565b6040516103299190614a94565b60405180910390f35b34801561033e57600080fd5b50610359600480360381019061035491906142ed565b610bf3565b005b610375600480360381019061037091906144ca565b610d0b565b005b34801561038357600080fd5b5061038c610e15565b6040516103999190614f43565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c491906141d7565b610e22565b005b3480156103d757600080fd5b506103f260048036038101906103ed919061437a565b610e82565b6040516103ff9190614b46565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906143a7565b610ea1565b005b34801561043d57600080fd5b50610458600480360381019061045391906142ed565b610ec2565b6040516104659190614f43565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190614481565b610f67565b005b3480156104a357600080fd5b506104be60048036038101906104b991906143a7565b610ff1565b005b3480156104cc57600080fd5b506104d5611074565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906141d7565b6110ee565b005b34801561050c57600080fd5b50610527600480360381019061052291906144ca565b61110e565b005b34801561053557600080fd5b50610550600480360381019061054b91906144ca565b61116a565b60405161055d9190614f43565b60405180910390f35b34801561057257600080fd5b5061057b6111db565b6040516105889190614afb565b60405180910390f35b34801561059d57600080fd5b506105a66111ee565b6040516105b39190614afb565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de91906144ca565b611205565b6040516105f09190614a94565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b919061416a565b6112b7565b60405161062d9190614f43565b60405180910390f35b34801561064257600080fd5b5061064b61136f565b005b34801561065957600080fd5b50610674600480360381019061066f91906144ca565b6113f7565b005b34801561068257600080fd5b5061068b6114d7565b6040516106989190614b46565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190614481565b6114fb565b005b3480156106d657600080fd5b506106f160048036038101906106ec919061432d565b611585565b005b3480156106ff57600080fd5b506107086116ee565b005b34801561071657600080fd5b5061071f611768565b60405161072c9190614a94565b60405180910390f35b34801561074157600080fd5b5061075c600480360381019061075791906143e7565b611792565b6040516107699190614a94565b60405180910390f35b34801561077e57600080fd5b50610799600480360381019061079491906143a7565b6117c1565b6040516107a69190614afb565b60405180910390f35b3480156107bb57600080fd5b506107c461182b565b6040516107d19190614afb565b60405180910390f35b3480156107e657600080fd5b506107ef61183e565b6040516107fc9190614b61565b60405180910390f35b34801561081157600080fd5b5061082c6004803603810190610827919061416a565b6118d0565b6040516108399190614afb565b60405180910390f35b34801561084e57600080fd5b506108576118f0565b005b34801561086557600080fd5b5061086e6119bc565b60405161087b9190614b46565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a691906142ad565b6119c3565b005b3480156108b957600080fd5b506108c26119d9565b005b3480156108d057600080fd5b506108d9611a75565b005b3480156108e757600080fd5b5061090260048036038101906108fd919061422a565b611b11565b005b34801561091057600080fd5b5061092b6004803603810190610926919061416a565b611b73565b604051610939929190614b16565b60405180910390f35b34801561094e57600080fd5b50610969600480360381019061096491906144ca565b611c3f565b6040516109769190614b61565b60405180910390f35b34801561098b57600080fd5b506109a660048036038101906109a1919061437a565b611d85565b6040516109b39190614f43565b60405180910390f35b3480156109c857600080fd5b506109d1611da9565b6040516109de9190614b46565b60405180910390f35b3480156109f357600080fd5b50610a0e6004803603810190610a0991906143a7565b611dcd565b005b348015610a1c57600080fd5b50610a25611dee565b604051610a329190614b46565b60405180910390f35b348015610a4757600080fd5b50610a626004803603810190610a5d9190614197565b611e12565b604051610a6f9190614afb565b60405180910390f35b348015610a8457600080fd5b50610a9f6004803603810190610a9a919061416a565b611ea6565b005b348015610aad57600080fd5b50610ac86004803603810190610ac3919061432d565b611f9e565b005b6000610ad582612217565b9050919050565b606060028054610aeb90615227565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1790615227565b8015610b645780601f10610b3957610100808354040283529160200191610b64565b820191906000526020600020905b815481529060010190602001808311610b4757829003601f168201915b5050505050905090565b6000610b7982612291565b610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90614e23565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bfe82611205565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690614e63565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c8e6122fd565b73ffffffffffffffffffffffffffffffffffffffff161480610cbd5750610cbc81610cb76122fd565b611e12565b5b610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf390614d83565b60405180910390fd5b610d068383612305565b505050565b61213481610d17610e15565b610d219190615028565b1115610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990614de3565b60405180910390fd5b60115481610d7091906150af565b341015610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da990614be3565b60405180910390fd5b600080610dbe33611b73565b91509150818190610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc9190614b61565b60405180910390fd5b50610e1033846123be565b505050565b6000600a80549050905090565b610e33610e2d6122fd565b82612407565b610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990614e83565b60405180910390fd5b610e7d8383836124e5565b505050565b6000806000838152602001908152602001600020600101549050919050565b610eaa82610e82565b610eb38161274c565b610ebd8383612760565b505050565b6000610ecd836112b7565b8210610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590614c03565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f987fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610f936122fd565b6117c1565b610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90614d43565b60405180910390fd5b80600f9080519060200190610fed929190613f13565b5050565b610ff96122fd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90614f23565b60405180910390fd5b6110708282612794565b5050565b6110a57f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6110a06122fd565b6117c1565b6110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90614f03565b60405180910390fd5b6110ec6127c8565b565b61110983838360405180602001604052806000815250611b11565b505050565b61111f6111196122fd565b82612407565b61115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590614ee3565b60405180910390fd5b6111678161286a565b50565b6000611174610e15565b82106111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90614ea3565b60405180910390fd5b600a82815481106111c9576111c86153c0565b5b90600052602060002001549050919050565b601260009054906101000a900460ff1681565b6000600c60009054906101000a900460ff16905090565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a590614dc3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f90614da3565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113776122fd565b73ffffffffffffffffffffffffffffffffffffffff16611395611768565b73ffffffffffffffffffffffffffffffffffffffff16146113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290614e43565b60405180910390fd5b6113f56000612987565b565b6113ff6122fd565b73ffffffffffffffffffffffffffffffffffffffff1661141d611768565b73ffffffffffffffffffffffffffffffffffffffff1614611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a90614e43565b60405180910390fd5b6121348161147f610e15565b6114899190615028565b11156114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c190614de3565b60405180910390fd5b6114d433826123be565b50565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b61152c7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756115276122fd565b6117c1565b61156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156290614d43565b60405180910390fd5b8060109080519060200190611581929190613f13565b5050565b61158d6122fd565b73ffffffffffffffffffffffffffffffffffffffff166115ab611768565b73ffffffffffffffffffffffffffffffffffffffff1614611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890614e43565b60405180910390fd5b612710828290501115611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090614d03565b60405180910390fd5b60005b828290508110156116e9576001601360008585858181106116705761166f6153c0565b5b9050602002016020810190611685919061416a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806116e19061528a565b91505061164c565b505050565b61171f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61171a6122fd565b6117c1565b61175e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175590614ca3565b60405180910390fd5b611766612a4d565b565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006117b98260016000868152602001908152602001600020612af090919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260019054906101000a900460ff1681565b60606003805461184d90615227565b80601f016020809104026020016040519081016040528092919081815260200182805461187990615227565b80156118c65780601f1061189b576101008083540402835291602001916118c6565b820191906000526020600020905b8154815290600101906020018083116118a957829003601f168201915b5050505050905090565b60136020528060005260406000206000915054906101000a900460ff1681565b6118f86122fd565b73ffffffffffffffffffffffffffffffffffffffff16611916611768565b73ffffffffffffffffffffffffffffffffffffffff161461196c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196390614e43565b60405180910390fd5b611974611768565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156119b9573d6000803e3d6000fd5b50565b6000801b81565b6119d56119ce6122fd565b8383612b0a565b5050565b611a0a7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775611a056122fd565b6117c1565b611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4090614d43565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b611aa67fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775611aa16122fd565b6117c1565b611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc90614d43565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550565b611b22611b1c6122fd565b83612407565b611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5890614e83565b60405180910390fd5b611b6d84848484612c77565b50505050565b60006060601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611bdd5750601260019054906101000a900460ff165b15611c235760006040518060400160405280601f81526020017f436f6c697a65756d4e46543a206f6e6c7920666f722077686974656c6973740081525091509150611c3a565b600160405180602001604052806000815250915091505b915091565b6060611c4a82612291565b611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614ec3565b60405180910390fd5b6000601260009054906101000a900460ff16611ca6576010611ca9565b600f5b8054611cb490615227565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce090615227565b8015611d2d5780601f10611d0257610100808354040283529160200191611d2d565b820191906000526020600020905b815481529060010190602001808311611d1057829003601f168201915b505050505090506000815111611d525760405180602001604052806000815250611d7d565b80611d5c84612cd3565b604051602001611d6d929190614a36565b6040516020818303038152906040525b915050919050565b6000611da260016000848152602001908152602001600020612e34565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611dd682610e82565b611ddf8161274c565b611de98383612794565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eae6122fd565b73ffffffffffffffffffffffffffffffffffffffff16611ecc611768565b73ffffffffffffffffffffffffffffffffffffffff1614611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990614e43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990614c43565b60405180910390fd5b611f9b81612987565b50565b611fa66122fd565b73ffffffffffffffffffffffffffffffffffffffff16611fc4611768565b73ffffffffffffffffffffffffffffffffffffffff161461201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190614e43565b60405180910390fd5b612710828290501115612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205990614d03565b60405180910390fd5b60005b8282905081101561210257600060136000858585818110612089576120886153c0565b5b905060200201602081019061209e919061416a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806120fa9061528a565b915050612065565b505050565b61211182826117c1565b6121e357600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121886122fd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600061220f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612e49565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061228a575061228982612eb9565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661237883611205565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080600090505b82811015612401576123d8600d612f9b565b91506123e48483612fa9565b6123ee600d612fc7565b80806123f99061528a565b9150506123c6565b50505050565b600061241282612291565b612451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244890614d23565b60405180910390fd5b600061245c83611205565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124cb57508373ffffffffffffffffffffffffffffffffffffffff166124b384610b6e565b73ffffffffffffffffffffffffffffffffffffffff16145b806124dc57506124db8185611e12565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661250582611205565b73ffffffffffffffffffffffffffffffffffffffff161461255b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255290614c63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c290614cc3565b60405180910390fd5b6125d6838383612fdd565b6125e1600082612305565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126319190615109565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126889190615028565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612747838383612fed565b505050565b61275d816127586122fd565b612ff2565b50565b61276a8282612107565b61278f81600160008581526020019081526020016000206121e790919063ffffffff16565b505050565b61279e828261308f565b6127c3816001600085815260200190815260200160002061317090919063ffffffff16565b505050565b6127d06111ee565b61280f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280690614bc3565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6128536122fd565b6040516128609190614a94565b60405180910390a1565b600061287582611205565b905061288381600084612fdd565b61288e600083612305565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128de9190615109565b925050819055506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461298381600084612fed565b5050565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a556111ee565b15612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8c90614d63565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612ad96122fd565b604051612ae69190614a94565b60405180910390a1565b6000612aff83600001836131a0565b60001c905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7090614ce3565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c6a9190614afb565b60405180910390a3505050565b612c828484846124e5565b612c8e848484846131cb565b612ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc490614c23565b60405180910390fd5b50505050565b60606000821415612d1b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e2f565b600082905060005b60008214612d4d578080612d369061528a565b915050600a82612d46919061507e565b9150612d23565b60008167ffffffffffffffff811115612d6957612d686153ef565b5b6040519080825280601f01601f191660200182016040528015612d9b5781602001600182028036833780820191505090505b5090505b60008514612e2857600182612db49190615109565b9150600a85612dc391906152d3565b6030612dcf9190615028565b60f81b818381518110612de557612de46153c0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e21919061507e565b9450612d9f565b8093505050505b919050565b6000612e4282600001613362565b9050919050565b6000612e558383613373565b612eae578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612eb3565b600090505b92915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f8457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f945750612f9382613396565b5b9050919050565b600081600001549050919050565b612fc3828260405180602001604052806000815250613410565b5050565b6001816000016000828254019250508190555050565b612fe883838361346b565b505050565b505050565b612ffc82826117c1565b61308b576130218173ffffffffffffffffffffffffffffffffffffffff1660146134c3565b61302f8360001c60206134c3565b604051602001613040929190614a5a565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130829190614b61565b60405180910390fd5b5050565b61309982826117c1565b1561316c57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506131116122fd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000613198836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6136ff565b905092915050565b60008260000182815481106131b8576131b76153c0565b5b9060005260206000200154905092915050565b60006131ec8473ffffffffffffffffffffffffffffffffffffffff16613813565b15613355578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132156122fd565b8786866040518563ffffffff1660e01b81526004016132379493929190614aaf565b602060405180830381600087803b15801561325157600080fd5b505af192505050801561328257506040513d601f19601f8201168201806040525081019061327f9190614454565b60015b613305573d80600081146132b2576040519150601f19603f3d011682016040523d82523d6000602084013e6132b7565b606091505b506000815114156132fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f490614c23565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061335a565b600190505b949350505050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613409575061340882613836565b5b9050919050565b61341a83836138b0565b61342760008484846131cb565b613466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345d90614c23565b60405180910390fd5b505050565b613476838383613a8a565b61347e6111ee565b156134be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b590614ba3565b60405180910390fd5b505050565b6060600060028360026134d691906150af565b6134e09190615028565b67ffffffffffffffff8111156134f9576134f86153ef565b5b6040519080825280601f01601f19166020018201604052801561352b5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613563576135626153c0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106135c7576135c66153c0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261360791906150af565b6136119190615028565b90505b60018111156136b1577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613653576136526153c0565b5b1a60f81b82828151811061366a576136696153c0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806136aa906151fd565b9050613614565b50600084146136f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ec90614b83565b60405180910390fd5b8091505092915050565b600080836001016000848152602001908152602001600020549050600081146138075760006001826137319190615109565b90506000600186600001805490506137499190615109565b90508181146137b857600086600001828154811061376a576137696153c0565b5b906000526020600020015490508087600001848154811061378e5761378d6153c0565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806137cc576137cb615391565b5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061380d565b60009150505b92915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806138a957506138a882613b9e565b5b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391790614e03565b60405180910390fd5b61392981612291565b15613969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396090614c83565b60405180910390fd5b61397560008383612fdd565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139c59190615028565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a8660008383612fed565b5050565b613a95838383613c08565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613ad857613ad381613c0d565b613b17565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613b1657613b158382613c56565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b5a57613b5581613dc3565b613b99565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613b9857613b978282613e94565b5b5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c63846112b7565b613c6d9190615109565b9050600060096000848152602001908152602001600020549050818114613d52576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a80549050613dd79190615109565b90506000600b60008481526020019081526020016000205490506000600a8381548110613e0757613e066153c0565b5b9060005260206000200154905080600a8381548110613e2957613e286153c0565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480613e7857613e77615391565b5b6001900381819060005260206000200160009055905550505050565b6000613e9f836112b7565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b828054613f1f90615227565b90600052602060002090601f016020900481019282613f415760008555613f88565b82601f10613f5a57805160ff1916838001178555613f88565b82800160010185558215613f88579182015b82811115613f87578251825591602001919060010190613f6c565b5b509050613f959190613f99565b5090565b5b80821115613fb2576000816000905550600101613f9a565b5090565b6000613fc9613fc484614f83565b614f5e565b905082815260208101848484011115613fe557613fe461542d565b5b613ff08482856151bb565b509392505050565b600061400b61400684614fb4565b614f5e565b9050828152602081018484840111156140275761402661542d565b5b6140328482856151bb565b509392505050565b60008135905061404981615cd7565b92915050565b60008083601f84011261406557614064615423565b5b8235905067ffffffffffffffff8111156140825761408161541e565b5b60208301915083602082028301111561409e5761409d615428565b5b9250929050565b6000813590506140b481615cee565b92915050565b6000813590506140c981615d05565b92915050565b6000813590506140de81615d1c565b92915050565b6000815190506140f381615d1c565b92915050565b600082601f83011261410e5761410d615423565b5b813561411e848260208601613fb6565b91505092915050565b600082601f83011261413c5761413b615423565b5b813561414c848260208601613ff8565b91505092915050565b60008135905061416481615d33565b92915050565b6000602082840312156141805761417f615437565b5b600061418e8482850161403a565b91505092915050565b600080604083850312156141ae576141ad615437565b5b60006141bc8582860161403a565b92505060206141cd8582860161403a565b9150509250929050565b6000806000606084860312156141f0576141ef615437565b5b60006141fe8682870161403a565b935050602061420f8682870161403a565b925050604061422086828701614155565b9150509250925092565b6000806000806080858703121561424457614243615437565b5b60006142528782880161403a565b94505060206142638782880161403a565b935050604061427487828801614155565b925050606085013567ffffffffffffffff81111561429557614294615432565b5b6142a1878288016140f9565b91505092959194509250565b600080604083850312156142c4576142c3615437565b5b60006142d28582860161403a565b92505060206142e3858286016140a5565b9150509250929050565b6000806040838503121561430457614303615437565b5b60006143128582860161403a565b925050602061432385828601614155565b9150509250929050565b6000806020838503121561434457614343615437565b5b600083013567ffffffffffffffff81111561436257614361615432565b5b61436e8582860161404f565b92509250509250929050565b6000602082840312156143905761438f615437565b5b600061439e848285016140ba565b91505092915050565b600080604083850312156143be576143bd615437565b5b60006143cc858286016140ba565b92505060206143dd8582860161403a565b9150509250929050565b600080604083850312156143fe576143fd615437565b5b600061440c858286016140ba565b925050602061441d85828601614155565b9150509250929050565b60006020828403121561443d5761443c615437565b5b600061444b848285016140cf565b91505092915050565b60006020828403121561446a57614469615437565b5b6000614478848285016140e4565b91505092915050565b60006020828403121561449757614496615437565b5b600082013567ffffffffffffffff8111156144b5576144b4615432565b5b6144c184828501614127565b91505092915050565b6000602082840312156144e0576144df615437565b5b60006144ee84828501614155565b91505092915050565b6145008161513d565b82525050565b61450f8161514f565b82525050565b61451e8161515b565b82525050565b600061452f82614fe5565b6145398185614ffb565b93506145498185602086016151ca565b6145528161543c565b840191505092915050565b600061456882614ff0565b614572818561500c565b93506145828185602086016151ca565b61458b8161543c565b840191505092915050565b60006145a182614ff0565b6145ab818561501d565b93506145bb8185602086016151ca565b80840191505092915050565b60006145d460208361500c565b91506145df8261544d565b602082019050919050565b60006145f7602b8361500c565b915061460282615476565b604082019050919050565b600061461a60148361500c565b9150614625826154c5565b602082019050919050565b600061463d60278361500c565b9150614648826154ee565b604082019050919050565b6000614660602b8361500c565b915061466b8261553d565b604082019050919050565b600061468360328361500c565b915061468e8261558c565b604082019050919050565b60006146a660268361500c565b91506146b1826155db565b604082019050919050565b60006146c960258361500c565b91506146d48261562a565b604082019050919050565b60006146ec601c8361500c565b91506146f782615679565b602082019050919050565b600061470f603e8361500c565b915061471a826156a2565b604082019050919050565b600061473260248361500c565b915061473d826156f1565b604082019050919050565b600061475560198361500c565b915061476082615740565b602082019050919050565b600061477860388361500c565b915061478382615769565b604082019050919050565b600061479b602c8361500c565b91506147a6826157b8565b604082019050919050565b60006147be60308361500c565b91506147c982615807565b604082019050919050565b60006147e160108361500c565b91506147ec82615856565b602082019050919050565b600061480460388361500c565b915061480f8261587f565b604082019050919050565b6000614827602a8361500c565b9150614832826158ce565b604082019050919050565b600061484a60298361500c565b91506148558261591d565b604082019050919050565b600061486d60268361500c565b91506148788261596c565b604082019050919050565b600061489060208361500c565b915061489b826159bb565b602082019050919050565b60006148b3602c8361500c565b91506148be826159e4565b604082019050919050565b60006148d660208361500c565b91506148e182615a33565b602082019050919050565b60006148f960218361500c565b915061490482615a5c565b604082019050919050565b600061491c60318361500c565b915061492782615aab565b604082019050919050565b600061493f602c8361500c565b915061494a82615afa565b604082019050919050565b600061496260178361501d565b915061496d82615b49565b601782019050919050565b6000614985602c8361500c565b915061499082615b72565b604082019050919050565b60006149a860308361500c565b91506149b382615bc1565b604082019050919050565b60006149cb60408361500c565b91506149d682615c10565b604082019050919050565b60006149ee60118361501d565b91506149f982615c5f565b601182019050919050565b6000614a11602f8361500c565b9150614a1c82615c88565b604082019050919050565b614a30816151b1565b82525050565b6000614a428285614596565b9150614a4e8284614596565b91508190509392505050565b6000614a6582614955565b9150614a718285614596565b9150614a7c826149e1565b9150614a888284614596565b91508190509392505050565b6000602082019050614aa960008301846144f7565b92915050565b6000608082019050614ac460008301876144f7565b614ad160208301866144f7565b614ade6040830185614a27565b8181036060830152614af08184614524565b905095945050505050565b6000602082019050614b106000830184614506565b92915050565b6000604082019050614b2b6000830185614506565b8181036020830152614b3d818461455d565b90509392505050565b6000602082019050614b5b6000830184614515565b92915050565b60006020820190508181036000830152614b7b818461455d565b905092915050565b60006020820190508181036000830152614b9c816145c7565b9050919050565b60006020820190508181036000830152614bbc816145ea565b9050919050565b60006020820190508181036000830152614bdc8161460d565b9050919050565b60006020820190508181036000830152614bfc81614630565b9050919050565b60006020820190508181036000830152614c1c81614653565b9050919050565b60006020820190508181036000830152614c3c81614676565b9050919050565b60006020820190508181036000830152614c5c81614699565b9050919050565b60006020820190508181036000830152614c7c816146bc565b9050919050565b60006020820190508181036000830152614c9c816146df565b9050919050565b60006020820190508181036000830152614cbc81614702565b9050919050565b60006020820190508181036000830152614cdc81614725565b9050919050565b60006020820190508181036000830152614cfc81614748565b9050919050565b60006020820190508181036000830152614d1c8161476b565b9050919050565b60006020820190508181036000830152614d3c8161478e565b9050919050565b60006020820190508181036000830152614d5c816147b1565b9050919050565b60006020820190508181036000830152614d7c816147d4565b9050919050565b60006020820190508181036000830152614d9c816147f7565b9050919050565b60006020820190508181036000830152614dbc8161481a565b9050919050565b60006020820190508181036000830152614ddc8161483d565b9050919050565b60006020820190508181036000830152614dfc81614860565b9050919050565b60006020820190508181036000830152614e1c81614883565b9050919050565b60006020820190508181036000830152614e3c816148a6565b9050919050565b60006020820190508181036000830152614e5c816148c9565b9050919050565b60006020820190508181036000830152614e7c816148ec565b9050919050565b60006020820190508181036000830152614e9c8161490f565b9050919050565b60006020820190508181036000830152614ebc81614932565b9050919050565b60006020820190508181036000830152614edc81614978565b9050919050565b60006020820190508181036000830152614efc8161499b565b9050919050565b60006020820190508181036000830152614f1c816149be565b9050919050565b60006020820190508181036000830152614f3c81614a04565b9050919050565b6000602082019050614f586000830184614a27565b92915050565b6000614f68614f79565b9050614f748282615259565b919050565b6000604051905090565b600067ffffffffffffffff821115614f9e57614f9d6153ef565b5b614fa78261543c565b9050602081019050919050565b600067ffffffffffffffff821115614fcf57614fce6153ef565b5b614fd88261543c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615033826151b1565b915061503e836151b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561507357615072615304565b5b828201905092915050565b6000615089826151b1565b9150615094836151b1565b9250826150a4576150a3615333565b5b828204905092915050565b60006150ba826151b1565b91506150c5836151b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156150fe576150fd615304565b5b828202905092915050565b6000615114826151b1565b915061511f836151b1565b92508282101561513257615131615304565b5b828203905092915050565b600061514882615191565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156151e85780820151818401526020810190506151cd565b838111156151f7576000848401525b50505050565b6000615208826151b1565b9150600082141561521c5761521b615304565b5b600182039050919050565b6000600282049050600182168061523f57607f821691505b6020821081141561525357615252615362565b5b50919050565b6152628261543c565b810181811067ffffffffffffffff82111715615281576152806153ef565b5b80604052505050565b6000615295826151b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152c8576152c7615304565b5b600182019050919050565b60006152de826151b1565b91506152e9836151b1565b9250826152f9576152f8615333565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f436f6c697a65756d4e46543a20616d6f756e742073656e74206973206e6f742060008201527f636f727265637400000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732315072657365744d696e7465725061757365724175746f49643a2060008201527f6d75737420686176652070617573657220726f6c6520746f2070617573650000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f436f6c697a65756d4e46543a2070726f76696465206c6573732061646472657360008201527f73657320696e206f6e652066756e6374696f6e2063616c6c0000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436f6c697a65756d4e46543a206d75737420686176652061646d696e20726f6c60008201527f6520746f206368616e6765206461746100000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f436f6c697a65756d4e46543a2063616e2774206d696e74206d6f72652074686160008201527f6e20383530300000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f436f6c697a65756d4e46543a2055524920717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4552433732315072657365744d696e7465725061757365724175746f49643a2060008201527f6d75737420686176652070617573657220726f6c6520746f20756e7061757365602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b615ce08161513d565b8114615ceb57600080fd5b50565b615cf78161514f565b8114615d0257600080fd5b50565b615d0e8161515b565b8114615d1957600080fd5b50565b615d2581615165565b8114615d3057600080fd5b50565b615d3c816151b1565b8114615d4757600080fd5b5056fea2646970667358221220151d4299fe637eb749790026a87069b0d8a5ec7d70a32e6ba10a5b0522c831b964736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b436f6c697a65756d4e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004434e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6170692e73616c656e66742e696f2f636f6c6c656374696f6e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6170692e73616c656e66742e696f2f636f6c6c656374696f6e2f626c616e6b2f000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): ColizeumNFT
Arg [1] : symbol (string): CNFT
Arg [2] : baseTokenURI (string): https://api.salenft.io/collection/
Arg [3] : notRevealedURI (string): https://api.salenft.io/collection/blank/

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 436f6c697a65756d4e4654000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 434e465400000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [9] : 68747470733a2f2f6170692e73616c656e66742e696f2f636f6c6c656374696f
Arg [10] : 6e2f000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [12] : 68747470733a2f2f6170692e73616c656e66742e696f2f636f6c6c656374696f
Arg [13] : 6e2f626c616e6b2f000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

97:4090:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4041:246:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2408:98:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3920:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3458:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2476:415:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1614:111:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4647:330:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4341:129:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4720:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1290:253:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1429:202:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5737:214:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3553:182:11;;;;;;;;;;;;;:::i;:::-;;5043:179:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;515:241:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1797:230:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;289:28:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1091:84:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2111:235:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1849:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:21;;;;;;;;;;;;;:::i;:::-;;2897:217:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1423:60:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1637:211:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3120:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3169:176:11;;;;;;;;;;;;;:::i;:::-;;1029:85:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1401:151:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2845:145:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;323:28:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2570:102:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;406:42:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4078:107;;;;;;;;;;;;;:::i;:::-;;1977:49:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4204:153:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1055:175:3;;;;;;;;;;;;;:::i;:::-;;1236:187;;;;;;;;;;;;;:::i;:::-;;5288:320:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3752:234:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;1854:616;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1720:140:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1287:62:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5099:147:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1355:62:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4423:162:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1911:198:21;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3433:313:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4041:246:11;4217:4;4244:36;4268:11;4244:23;:36::i;:::-;4237:43;;4041:246;;;:::o;2408:98:7:-;2462:13;2494:5;2487:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408:98;:::o;3920:217::-;3996:7;4023:16;4031:7;4023;:16::i;:::-;4015:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4106:15;:24;4122:7;4106:24;;;;;;;;;;;;;;;;;;;;;4099:31;;3920:217;;;:::o;3458:401::-;3538:13;3554:23;3569:7;3554:14;:23::i;:::-;3538:39;;3601:5;3595:11;;:2;:11;;;;3587:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3692:5;3676:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3701:37;3718:5;3725:12;:10;:12::i;:::-;3701:16;:37::i;:::-;3676:62;3655:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3831:21;3840:2;3844:7;3831:8;:21::i;:::-;3528:331;3458:401;;:::o;2476:415:3:-;395:4;2572:12;2556:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;;2548:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;2686:6;;2671:12;:21;;;;:::i;:::-;2658:9;:34;;2650:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;2748:12;2762:20;2786:19;2794:10;2786:7;:19::i;:::-;2747:58;;;;2823:7;2832:6;2815:24;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;2850:34;2859:10;2871:12;2850:8;:34::i;:::-;2538:353;;2476:415;:::o;1614:111:9:-;1675:7;1701:10;:17;;;;1694:24;;1614:111;:::o;4647:330:7:-;4836:41;4855:12;:10;:12::i;:::-;4869:7;4836:18;:41::i;:::-;4828:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;4942:28;4952:4;4958:2;4962:7;4942:9;:28::i;:::-;4647:330;;;:::o;4341:129:0:-;4415:7;4441:6;:12;4448:4;4441:12;;;;;;;;;;;:22;;;4434:29;;4341:129;;;:::o;4720:145::-;4803:18;4816:4;4803:12;:18::i;:::-;2455:16;2466:4;2455:10;:16::i;:::-;4833:25:::1;4844:4;4850:7;4833:10;:25::i;:::-;4720:145:::0;;;:::o;1290:253:9:-;1387:7;1422:23;1439:5;1422:16;:23::i;:::-;1414:5;:31;1406:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1510:12;:19;1523:5;1510:19;;;;;;;;;;;;;;;:26;1530:5;1510:26;;;;;;;;;;;;1503:33;;1290:253;;;;:::o;1429:202:3:-;1507:33;1460:23:11;1527:12:3;:10;:12::i;:::-;1507:7;:33::i;:::-;1499:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;1620:4;1604:13;:20;;;;;;;;;;;;:::i;:::-;;1429:202;:::o;5737:214:0:-;5843:12;:10;:12::i;:::-;5832:23;;:7;:23;;;5824:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;5918:26;5930:4;5936:7;5918:11;:26::i;:::-;5737:214;;:::o;3553:182:11:-;3605:34;1393:24;3626:12;:10;:12::i;:::-;3605:7;:34::i;:::-;3597:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;3718:10;:8;:10::i;:::-;3553:182::o;5043:179:7:-;5176:39;5193:4;5199:2;5203:7;5176:39;;;;;;;;;;;;:16;:39::i;:::-;5043:179;;;:::o;515:241:8:-;631:41;650:12;:10;:12::i;:::-;664:7;631:18;:41::i;:::-;623:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;735:14;741:7;735:5;:14::i;:::-;515:241;:::o;1797:230:9:-;1872:7;1907:30;:28;:30::i;:::-;1899:5;:38;1891:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2003:10;2014:5;2003:17;;;;;;;;:::i;:::-;;;;;;;;;;1996:24;;1797:230;;;:::o;289:28:3:-;;;;;;;;;;;;;:::o;1091:84:22:-;1138:4;1161:7;;;;;;;;;;;1154:14;;1091:84;:::o;2111:235:7:-;2183:7;2202:13;2218:7;:16;2226:7;2218:16;;;;;;;;;;;;;;;;;;;;;2202:32;;2269:1;2252:19;;:5;:19;;;;2244:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2334:5;2327:12;;;2111:235;;;:::o;1849:205::-;1921:7;1965:1;1948:19;;:5;:19;;;;1940:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2031:9;:16;2041:5;2031:16;;;;;;;;;;;;;;;;2024:23;;1849:205;;;:::o;1661:101:21:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;2897:217:3:-;1252:12:21;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;395:4:3::1;2994:12;2978:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;;2970:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;3073:34;3082:10;3094:12;3073:8;:34::i;:::-;2897:217:::0;:::o;1423:60:11:-;1460:23;1423:60;:::o;1637:211:3:-;1722:33;1460:23:11;1742:12:3;:10;:12::i;:::-;1722:7;:33::i;:::-;1714:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;1837:4;1819:15;:22;;;;;;;;;;;;:::i;:::-;;1637:211;:::o;3120:307::-;1252:12:21;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3241:5:3::1;3220:10;;:17;;:26;;3212:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;3322:9;3317:104;3341:10;;:17;;3337:1;:21;3317:104;;;3406:4;3379:9;:24;3389:10;;3400:1;3389:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3379:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;3360:3;;;;;:::i;:::-;;;;3317:104;;;;3120:307:::0;;:::o;3169:176:11:-;3219:34;1393:24;3240:12;:10;:12::i;:::-;3219:7;:34::i;:::-;3211:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;3330:8;:6;:8::i;:::-;3169:176::o;1029:85:21:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;1401:151:1:-;1491:7;1517:28;1539:5;1517:12;:18;1530:4;1517:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;1510:35;;1401:151;;;;:::o;2845:145:0:-;2931:4;2954:6;:12;2961:4;2954:12;;;;;;;;;;;:20;;:29;2975:7;2954:29;;;;;;;;;;;;;;;;;;;;;;;;;2947:36;;2845:145;;;;:::o;323:28:3:-;;;;;;;;;;;;;:::o;2570:102:7:-;2626:13;2658:7;2651:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2570:102;:::o;406:42:3:-;;;;;;;;;;;;;;;;;;;;;;:::o;4078:107::-;1252:12:21;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4138:7:3::1;:5;:7::i;:::-;4130:25;;:48;4156:21;4130:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4078:107::o:0;1977:49:0:-;2022:4;1977:49;;;:::o;4204:153:7:-;4298:52;4317:12;:10;:12::i;:::-;4331:8;4341;4298:18;:52::i;:::-;4204:153;;:::o;1055:175:3:-;1106:33;1460:23:11;1126:12:3;:10;:12::i;:::-;1106:7;:33::i;:::-;1098:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;1215:8;;;;;;;;;;;1214:9;1203:8;;:20;;;;;;;;;;;;;;;;;;1055:175::o;1236:187::-;1297:33;1460:23:11;1317:12:3;:10;:12::i;:::-;1297:7;:33::i;:::-;1289:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;1407:9;;;;;;;;;;;1406:10;1394:9;;:22;;;;;;;;;;;;;;;;;;1236:187::o;5288:320:7:-;5457:41;5476:12;:10;:12::i;:::-;5490:7;5457:18;:41::i;:::-;5449:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5562:39;5576:4;5582:2;5586:7;5595:5;5562:13;:39::i;:::-;5288:320;;;;:::o;3752:234:3:-;3808:4;3814:13;3844:9;:19;3854:8;3844:19;;;;;;;;;;;;;;;;;;;;;;;;;3843:20;:33;;;;;3867:9;;;;;;;;;;;3843:33;3839:113;;;3900:5;3892:49;;;;;;;;;;;;;;;;;;;;;;;3839:113;3970:4;3962:17;;;;;;;;;;;;;;;;3752:234;;;;:::o;1854:616::-;1967:13;2017:16;2025:7;2017;:16::i;:::-;1996:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;2114:28;2145:8;;;;;;;;;;;:42;;2172:15;2145:42;;;2156:13;2145:42;2114:73;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2247:1;2222:14;2216:28;:32;:247;;;;;;;;;;;;;;;;;2337:14;2377:25;2394:7;2377:16;:25::i;:::-;2295:129;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2216:247;2197:266;;;1854:616;;;:::o;1720:140:1:-;1800:7;1826:27;:12;:18;1839:4;1826:18;;;;;;;;;;;:25;:27::i;:::-;1819:34;;1720:140;;;:::o;1287:62:11:-;1325:24;1287:62;:::o;5099:147:0:-;5183:18;5196:4;5183:12;:18::i;:::-;2455:16;2466:4;2455:10;:16::i;:::-;5213:26:::1;5225:4;5231:7;5213:11;:26::i;:::-;5099:147:::0;;;:::o;1355:62:11:-;1393:24;1355:62;:::o;4423:162:7:-;4520:4;4543:18;:25;4562:5;4543:25;;;;;;;;;;;;;;;:35;4569:8;4543:35;;;;;;;;;;;;;;;;;;;;;;;;;4536:42;;4423:162;;;;:::o;1911:198:21:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2019:1:::1;1999:22;;:8;:22;;;;1991:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;3433:313:3:-;1252:12:21;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3559:5:3::1;3538:10;;:17;;:26;;3530:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;3640:9;3635:105;3659:10;;:17;;3655:1;:21;3635:105;;;3724:5;3697:9;:24;3707:10;;3718:1;3707:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3697:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;3678:3;;;;;:::i;:::-;;;;3635:105;;;;3433:313:::0;;:::o;7194:233:0:-;7277:22;7285:4;7291:7;7277;:22::i;:::-;7272:149;;7347:4;7315:6;:12;7322:4;7315:12;;;;;;;;;;;:20;;:29;7336:7;7315:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;7397:12;:10;:12::i;:::-;7370:40;;7388:7;7370:40;;7382:4;7370:40;;;;;;;;;;7272:149;7194:233;;:::o;7612:150:12:-;7682:4;7705:50;7710:3;:10;;7746:5;7730:23;;7722:32;;7705:4;:50::i;:::-;7698:57;;7612:150;;;;:::o;989:222:9:-;1091:4;1129:35;1114:50;;;:11;:50;;;;:90;;;;1168:36;1192:11;1168:23;:36::i;:::-;1114:90;1107:97;;989:222;;;:::o;7080:125:7:-;7145:4;7196:1;7168:30;;:7;:16;7176:7;7168:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7161:37;;7080:125;;;:::o;640:96:4:-;693:7;719:10;712:17;;640:96;:::o;11089:171:7:-;11190:2;11163:15;:24;11179:7;11163:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11245:7;11241:2;11207:46;;11216:23;11231:7;11216:14;:23::i;:::-;11207:46;;;;;;;;;;;;11089:171;;:::o;2670:295:11:-;2744:18;2777:11;2791:1;2777:15;;2772:187;2800:7;2794:3;:13;2772:187;;;2843:25;:15;:23;:25::i;:::-;2830:38;;2882:25;2892:2;2896:10;2882:9;:25::i;:::-;2921:27;:15;:25;:27::i;:::-;2809:5;;;;;:::i;:::-;;;;2772:187;;;;2734:231;2670:295;;:::o;7363:344:7:-;7456:4;7480:16;7488:7;7480;:16::i;:::-;7472:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7555:13;7571:23;7586:7;7571:14;:23::i;:::-;7555:39;;7623:5;7612:16;;:7;:16;;;:51;;;;7656:7;7632:31;;:20;7644:7;7632:11;:20::i;:::-;:31;;;7612:51;:87;;;;7667:32;7684:5;7691:7;7667:16;:32::i;:::-;7612:87;7604:96;;;7363:344;;;;:::o;10373:605::-;10527:4;10500:31;;:23;10515:7;10500:14;:23::i;:::-;:31;;;10492:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10605:1;10591:16;;:2;:16;;;;10583:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10659:39;10680:4;10686:2;10690:7;10659:20;:39::i;:::-;10760:29;10777:1;10781:7;10760:8;:29::i;:::-;10819:1;10800:9;:15;10810:4;10800:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10847:1;10830:9;:13;10840:2;10830:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10877:2;10858:7;:16;10866:7;10858:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10914:7;10910:2;10895:27;;10904:4;10895:27;;;;;;;;;;;;10933:38;10953:4;10959:2;10963:7;10933:19;:38::i;:::-;10373:605;;;:::o;3284:103:0:-;3350:30;3361:4;3367:12;:10;:12::i;:::-;3350:10;:30::i;:::-;3284:103;:::o;1948:166:1:-;2035:31;2052:4;2058:7;2035:16;:31::i;:::-;2076;2099:7;2076:12;:18;2089:4;2076:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;1948:166;;:::o;2203:171::-;2291:32;2309:4;2315:7;2291:17;:32::i;:::-;2333:34;2359:7;2333:12;:18;2346:4;2333:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2203:171;;:::o;2103:117:22:-;1670:8;:6;:8::i;:::-;1662:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2171:5:::1;2161:7;;:15;;;;;;;;;;;;;;;;;;2191:22;2200:12;:10;:12::i;:::-;2191:22;;;;;;:::i;:::-;;;;;;;;2103:117::o:0;9643:406:7:-;9702:13;9718:23;9733:7;9718:14;:23::i;:::-;9702:39;;9752:48;9773:5;9788:1;9792:7;9752:20;:48::i;:::-;9838:29;9855:1;9859:7;9838:8;:29::i;:::-;9898:1;9878:9;:16;9888:5;9878:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;9916:7;:16;9924:7;9916:16;;;;;;;;;;;;9909:23;;;;;;;;;;;9976:7;9972:1;9948:36;;9957:5;9948:36;;;;;;;;;;;;9995:47;10015:5;10030:1;10034:7;9995:19;:47::i;:::-;9692:357;9643:406;:::o;2263:187:21:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2326:124;2263:187;:::o;1856:115:22:-;1405:8;:6;:8::i;:::-;1404:9;1396:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1925:4:::1;1915:7;;:14;;;;;;;;;;;;;;;;;;1944:20;1951:12;:10;:12::i;:::-;1944:20;;;;;;:::i;:::-;;;;;;;;1856:115::o:0;8870:156:12:-;8944:7;8994:22;8998:3;:10;;9010:5;8994:3;:22::i;:::-;8986:31;;8963:56;;8870:156;;;;:::o;11395:307:7:-;11545:8;11536:17;;:5;:17;;;;11528:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11631:8;11593:18;:25;11612:5;11593:25;;;;;;;;;;;;;;;:35;11619:8;11593:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11676:8;11654:41;;11669:5;11654:41;;;11686:8;11654:41;;;;;;:::i;:::-;;;;;;;;11395:307;;;:::o;6470:::-;6621:28;6631:4;6637:2;6641:7;6621:9;:28::i;:::-;6667:48;6690:4;6696:2;6700:7;6709:5;6667:22;:48::i;:::-;6659:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6470:307;;;;:::o;328:703:23:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;8413:115:12:-;8476:7;8502:19;8510:3;:10;;8502:7;:19::i;:::-;8495:26;;8413:115;;;:::o;1697:404::-;1760:4;1781:21;1791:3;1796:5;1781:9;:21::i;:::-;1776:319;;1818:3;:11;;1835:5;1818:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1998:3;:11;;:18;;;;1976:3;:12;;:19;1989:5;1976:19;;;;;;;;;;;:40;;;;2037:4;2030:11;;;;1776:319;2079:5;2072:12;;1697:404;;;;;:::o;1490:300:7:-;1592:4;1642:25;1627:40;;;:11;:40;;;;:104;;;;1698:33;1683:48;;;:11;:48;;;;1627:104;:156;;;;1747:36;1771:11;1747:23;:36::i;:::-;1627:156;1608:175;;1490:300;;;:::o;827:112:5:-;892:7;918;:14;;;911:21;;827:112;;;:::o;8037:108:7:-;8112:26;8122:2;8126:7;8112:26;;;;;;;;;;;;:9;:26::i;:::-;8037:108;;:::o;945:123:5:-;1050:1;1032:7;:14;;;:19;;;;;;;;;;;945:123;:::o;3741:233:11:-;3922:45;3949:4;3955:2;3959:7;3922:26;:45::i;:::-;3741:233;;;:::o;14083:121:7:-;;;;:::o;3668:492:0:-;3756:22;3764:4;3770:7;3756;:22::i;:::-;3751:403;;3939:41;3967:7;3939:41;;3977:2;3939:19;:41::i;:::-;4051:38;4079:4;4071:13;;4086:2;4051:19;:38::i;:::-;3846:265;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3794:349;;;;;;;;;;;:::i;:::-;;;;;;;;3751:403;3668:492;;:::o;7552:234::-;7635:22;7643:4;7649:7;7635;:22::i;:::-;7631:149;;;7705:5;7673:6;:12;7680:4;7673:12;;;;;;;;;;;:20;;:29;7694:7;7673:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;7756:12;:10;:12::i;:::-;7729:40;;7747:7;7729:40;;7741:4;7729:40;;;;;;;;;;7631:149;7552:234;;:::o;7930:156:12:-;8003:4;8026:53;8034:3;:10;;8070:5;8054:23;;8046:32;;8026:7;:53::i;:::-;8019:60;;7930:156;;;;:::o;4395:118::-;4462:7;4488:3;:11;;4500:5;4488:18;;;;;;;;:::i;:::-;;;;;;;;;;4481:25;;4395:118;;;;:::o;12255:778:7:-;12405:4;12425:15;:2;:13;;;:15::i;:::-;12421:606;;;12476:2;12460:36;;;12497:12;:10;:12::i;:::-;12511:4;12517:7;12526:5;12460:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12456:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12716:1;12699:6;:13;:18;12695:266;;;12741:60;;;;;;;;;;:::i;:::-;;;;;;;;12695:266;12913:6;12907:13;12898:6;12894:2;12890:15;12883:38;12456:519;12592:41;;;12582:51;;;:6;:51;;;;12575:58;;;;;12421:606;13012:4;13005:11;;12255:778;;;;;;;:::o;3946:107:12:-;4002:7;4028:3;:11;;:18;;;;4021:25;;3946:107;;;:::o;3738:127::-;3811:4;3857:1;3834:3;:12;;:19;3847:5;3834:19;;;;;;;;;;;;:24;;3827:31;;3738:127;;;;:::o;604:212:1:-;689:4;727:42;712:57;;;:11;:57;;;;:97;;;;773:36;797:11;773:23;:36::i;:::-;712:97;705:104;;604:212;;;:::o;8366:311:7:-;8491:18;8497:2;8501:7;8491:5;:18::i;:::-;8540:54;8571:1;8575:2;8579:7;8588:5;8540:22;:54::i;:::-;8519:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8366:311;;;:::o;655:267:10:-;794:45;821:4;827:2;831:7;794:26;:45::i;:::-;859:8;:6;:8::i;:::-;858:9;850:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;655:267;;;:::o;1588:441:23:-;1663:13;1688:19;1733:1;1724:6;1720:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1710:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1688:47;;1745:15;:6;1752:1;1745:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;1770;:6;1777:1;1770:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;1800:9;1825:1;1816:6;1812:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1800:26;;1795:132;1832:1;1828;:5;1795:132;;;1866:12;1887:3;1879:5;:11;1866:25;;;;;;;:::i;:::-;;;;;1854:6;1861:1;1854:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;1915:1;1905:11;;;;;1835:3;;;;:::i;:::-;;;1795:132;;;;1953:1;1944:5;:10;1936:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2015:6;2001:21;;;1588:441;;;;:::o;2269:1388:12:-;2335:4;2451:18;2472:3;:12;;:19;2485:5;2472:19;;;;;;;;;;;;2451:40;;2520:1;2506:10;:15;2502:1149;;2875:21;2912:1;2899:10;:14;;;;:::i;:::-;2875:38;;2927:17;2968:1;2947:3;:11;;:18;;;;:22;;;;:::i;:::-;2927:42;;3001:13;2988:9;:26;2984:398;;3034:17;3054:3;:11;;3066:9;3054:22;;;;;;;;:::i;:::-;;;;;;;;;;3034:42;;3205:9;3176:3;:11;;3188:13;3176:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;3314:10;3288:3;:12;;:23;3301:9;3288:23;;;;;;;;;;;:36;;;;3016:366;2984:398;3460:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3552:3;:12;;:19;3565:5;3552:19;;;;;;;;;;;3545:26;;;3593:4;3586:11;;;;;;;2502:1149;3635:5;3628:12;;;2269:1388;;;;;:::o;1160:320:2:-;1220:4;1472:1;1450:7;:19;;;:23;1443:30;;1160:320;;;:::o;2556:202:0:-;2641:4;2679:32;2664:47;;;:11;:47;;;;:87;;;;2715:36;2739:11;2715:23;:36::i;:::-;2664:87;2657:94;;2556:202;;;:::o;8999:427:7:-;9092:1;9078:16;;:2;:16;;;;9070:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9150:16;9158:7;9150;:16::i;:::-;9149:17;9141:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9210:45;9239:1;9243:2;9247:7;9210:20;:45::i;:::-;9283:1;9266:9;:13;9276:2;9266:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9313:2;9294:7;:16;9302:7;9294:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9356:7;9352:2;9331:33;;9348:1;9331:33;;;;;;;;;;;;9375:44;9403:1;9407:2;9411:7;9375:19;:44::i;:::-;8999:427;;:::o;2623:572:9:-;2762:45;2789:4;2795:2;2799:7;2762:26;:45::i;:::-;2838:1;2822:18;;:4;:18;;;2818:183;;;2856:40;2888:7;2856:31;:40::i;:::-;2818:183;;;2925:2;2917:10;;:4;:10;;;2913:88;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;2913:88;2818:183;3028:1;3014:16;;:2;:16;;;3010:179;;;3046:45;3083:7;3046:36;:45::i;:::-;3010:179;;;3118:4;3112:10;;:2;:10;;;3108:81;;3138:40;3166:2;3170:7;3138:27;:40::i;:::-;3108:81;3010:179;2623:572;;;:::o;829:155:6:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;13589:122:7:-;;;;:::o;3901:161:9:-;4004:10;:17;;;;3977:15;:24;3993:7;3977:24;;;;;;;;;;;:44;;;;4031:10;4047:7;4031:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3901:161;:::o;4679:970::-;4941:22;4991:1;4966:22;4983:4;4966:16;:22::i;:::-;:26;;;;:::i;:::-;4941:51;;5002:18;5023:17;:26;5041:7;5023:26;;;;;;;;;;;;5002:47;;5167:14;5153:10;:28;5149:323;;5197:19;5219:12;:18;5232:4;5219:18;;;;;;;;;;;;;;;:34;5238:14;5219:34;;;;;;;;;;;;5197:56;;5301:11;5268:12;:18;5281:4;5268:18;;;;;;;;;;;;;;;:30;5287:10;5268:30;;;;;;;;;;;:44;;;;5417:10;5384:17;:30;5402:11;5384:30;;;;;;;;;;;:43;;;;5183:289;5149:323;5565:17;:26;5583:7;5565:26;;;;;;;;;;;5558:33;;;5608:12;:18;5621:4;5608:18;;;;;;;;;;;;;;;:34;5627:14;5608:34;;;;;;;;;;;5601:41;;;4760:889;;4679:970;;:::o;5937:1061::-;6186:22;6231:1;6211:10;:17;;;;:21;;;;:::i;:::-;6186:46;;6242:18;6263:15;:24;6279:7;6263:24;;;;;;;;;;;;6242:45;;6609:19;6631:10;6642:14;6631:26;;;;;;;;:::i;:::-;;;;;;;;;;6609:48;;6693:11;6668:10;6679;6668:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6803:10;6772:15;:28;6788:11;6772:28;;;;;;;;;;;:41;;;;6941:15;:24;6957:7;6941:24;;;;;;;;;;;6934:31;;;6975:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6008:990;;;5937:1061;:::o;3489:217::-;3573:14;3590:20;3607:2;3590:16;:20::i;:::-;3573:37;;3647:7;3620:12;:16;3633:2;3620:16;;;;;;;;;;;;;;;:24;3637:6;3620:24;;;;;;;;;;;:34;;;;3693:6;3664:17;:26;3682:7;3664:26;;;;;;;;;;;:35;;;;3563:143;3489:217;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:24:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:559::-;6442:6;6450;6499:2;6487:9;6478:7;6474:23;6470:32;6467:119;;;6505:79;;:::i;:::-;6467:119;6653:1;6642:9;6638:17;6625:31;6683:18;6675:6;6672:30;6669:117;;;6705:79;;:::i;:::-;6669:117;6818:80;6890:7;6881:6;6870:9;6866:22;6818:80;:::i;:::-;6800:98;;;;6596:312;6356:559;;;;;:::o;6921:329::-;6980:6;7029:2;7017:9;7008:7;7004:23;7000:32;6997:119;;;7035:79;;:::i;:::-;6997:119;7155:1;7180:53;7225:7;7216:6;7205:9;7201:22;7180:53;:::i;:::-;7170:63;;7126:117;6921:329;;;;:::o;7256:474::-;7324:6;7332;7381:2;7369:9;7360:7;7356:23;7352:32;7349:119;;;7387:79;;:::i;:::-;7349:119;7507:1;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7478:117;7634:2;7660:53;7705:7;7696:6;7685:9;7681:22;7660:53;:::i;:::-;7650:63;;7605:118;7256:474;;;;;:::o;7736:::-;7804:6;7812;7861:2;7849:9;7840:7;7836:23;7832:32;7829:119;;;7867:79;;:::i;:::-;7829:119;7987:1;8012:53;8057:7;8048:6;8037:9;8033:22;8012:53;:::i;:::-;8002:63;;7958:117;8114:2;8140:53;8185:7;8176:6;8165:9;8161:22;8140:53;:::i;:::-;8130:63;;8085:118;7736:474;;;;;:::o;8216:327::-;8274:6;8323:2;8311:9;8302:7;8298:23;8294:32;8291:119;;;8329:79;;:::i;:::-;8291:119;8449:1;8474:52;8518:7;8509:6;8498:9;8494:22;8474:52;:::i;:::-;8464:62;;8420:116;8216:327;;;;:::o;8549:349::-;8618:6;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:63;8873:7;8864:6;8853:9;8849:22;8818:63;:::i;:::-;8808:73;;8764:127;8549:349;;;;:::o;8904:509::-;8973:6;9022:2;9010:9;9001:7;8997:23;8993:32;8990:119;;;9028:79;;:::i;:::-;8990:119;9176:1;9165:9;9161:17;9148:31;9206:18;9198:6;9195:30;9192:117;;;9228:79;;:::i;:::-;9192:117;9333:63;9388:7;9379:6;9368:9;9364:22;9333:63;:::i;:::-;9323:73;;9119:287;8904:509;;;;:::o;9419:329::-;9478:6;9527:2;9515:9;9506:7;9502:23;9498:32;9495:119;;;9533:79;;:::i;:::-;9495:119;9653:1;9678:53;9723:7;9714:6;9703:9;9699:22;9678:53;:::i;:::-;9668:63;;9624:117;9419:329;;;;:::o;9754:118::-;9841:24;9859:5;9841:24;:::i;:::-;9836:3;9829:37;9754:118;;:::o;9878:109::-;9959:21;9974:5;9959:21;:::i;:::-;9954:3;9947:34;9878:109;;:::o;9993:118::-;10080:24;10098:5;10080:24;:::i;:::-;10075:3;10068:37;9993:118;;:::o;10117:360::-;10203:3;10231:38;10263:5;10231:38;:::i;:::-;10285:70;10348:6;10343:3;10285:70;:::i;:::-;10278:77;;10364:52;10409:6;10404:3;10397:4;10390:5;10386:16;10364:52;:::i;:::-;10441:29;10463:6;10441:29;:::i;:::-;10436:3;10432:39;10425:46;;10207:270;10117:360;;;;:::o;10483:364::-;10571:3;10599:39;10632:5;10599:39;:::i;:::-;10654:71;10718:6;10713:3;10654:71;:::i;:::-;10647:78;;10734:52;10779:6;10774:3;10767:4;10760:5;10756:16;10734:52;:::i;:::-;10811:29;10833:6;10811:29;:::i;:::-;10806:3;10802:39;10795:46;;10575:272;10483:364;;;;:::o;10853:377::-;10959:3;10987:39;11020:5;10987:39;:::i;:::-;11042:89;11124:6;11119:3;11042:89;:::i;:::-;11035:96;;11140:52;11185:6;11180:3;11173:4;11166:5;11162:16;11140:52;:::i;:::-;11217:6;11212:3;11208:16;11201:23;;10963:267;10853:377;;;;:::o;11236:366::-;11378:3;11399:67;11463:2;11458:3;11399:67;:::i;:::-;11392:74;;11475:93;11564:3;11475:93;:::i;:::-;11593:2;11588:3;11584:12;11577:19;;11236:366;;;:::o;11608:::-;11750:3;11771:67;11835:2;11830:3;11771:67;:::i;:::-;11764:74;;11847:93;11936:3;11847:93;:::i;:::-;11965:2;11960:3;11956:12;11949:19;;11608:366;;;:::o;11980:::-;12122:3;12143:67;12207:2;12202:3;12143:67;:::i;:::-;12136:74;;12219:93;12308:3;12219:93;:::i;:::-;12337:2;12332:3;12328:12;12321:19;;11980:366;;;:::o;12352:::-;12494:3;12515:67;12579:2;12574:3;12515:67;:::i;:::-;12508:74;;12591:93;12680:3;12591:93;:::i;:::-;12709:2;12704:3;12700:12;12693:19;;12352:366;;;:::o;12724:::-;12866:3;12887:67;12951:2;12946:3;12887:67;:::i;:::-;12880:74;;12963:93;13052:3;12963:93;:::i;:::-;13081:2;13076:3;13072:12;13065:19;;12724:366;;;:::o;13096:::-;13238:3;13259:67;13323:2;13318:3;13259:67;:::i;:::-;13252:74;;13335:93;13424:3;13335:93;:::i;:::-;13453:2;13448:3;13444:12;13437:19;;13096:366;;;:::o;13468:::-;13610:3;13631:67;13695:2;13690:3;13631:67;:::i;:::-;13624:74;;13707:93;13796:3;13707:93;:::i;:::-;13825:2;13820:3;13816:12;13809:19;;13468:366;;;:::o;13840:::-;13982:3;14003:67;14067:2;14062:3;14003:67;:::i;:::-;13996:74;;14079:93;14168:3;14079:93;:::i;:::-;14197:2;14192:3;14188:12;14181:19;;13840:366;;;:::o;14212:::-;14354:3;14375:67;14439:2;14434:3;14375:67;:::i;:::-;14368:74;;14451:93;14540:3;14451:93;:::i;:::-;14569:2;14564:3;14560:12;14553:19;;14212:366;;;:::o;14584:::-;14726:3;14747:67;14811:2;14806:3;14747:67;:::i;:::-;14740:74;;14823:93;14912:3;14823:93;:::i;:::-;14941:2;14936:3;14932:12;14925:19;;14584:366;;;:::o;14956:::-;15098:3;15119:67;15183:2;15178:3;15119:67;:::i;:::-;15112:74;;15195:93;15284:3;15195:93;:::i;:::-;15313:2;15308:3;15304:12;15297:19;;14956:366;;;:::o;15328:::-;15470:3;15491:67;15555:2;15550:3;15491:67;:::i;:::-;15484:74;;15567:93;15656:3;15567:93;:::i;:::-;15685:2;15680:3;15676:12;15669:19;;15328:366;;;:::o;15700:::-;15842:3;15863:67;15927:2;15922:3;15863:67;:::i;:::-;15856:74;;15939:93;16028:3;15939:93;:::i;:::-;16057:2;16052:3;16048:12;16041:19;;15700:366;;;:::o;16072:::-;16214:3;16235:67;16299:2;16294:3;16235:67;:::i;:::-;16228:74;;16311:93;16400:3;16311:93;:::i;:::-;16429:2;16424:3;16420:12;16413:19;;16072:366;;;:::o;16444:::-;16586:3;16607:67;16671:2;16666:3;16607:67;:::i;:::-;16600:74;;16683:93;16772:3;16683:93;:::i;:::-;16801:2;16796:3;16792:12;16785:19;;16444:366;;;:::o;16816:::-;16958:3;16979:67;17043:2;17038:3;16979:67;:::i;:::-;16972:74;;17055:93;17144:3;17055:93;:::i;:::-;17173:2;17168:3;17164:12;17157:19;;16816:366;;;:::o;17188:::-;17330:3;17351:67;17415:2;17410:3;17351:67;:::i;:::-;17344:74;;17427:93;17516:3;17427:93;:::i;:::-;17545:2;17540:3;17536:12;17529:19;;17188:366;;;:::o;17560:::-;17702:3;17723:67;17787:2;17782:3;17723:67;:::i;:::-;17716:74;;17799:93;17888:3;17799:93;:::i;:::-;17917:2;17912:3;17908:12;17901:19;;17560:366;;;:::o;17932:::-;18074:3;18095:67;18159:2;18154:3;18095:67;:::i;:::-;18088:74;;18171:93;18260:3;18171:93;:::i;:::-;18289:2;18284:3;18280:12;18273:19;;17932:366;;;:::o;18304:::-;18446:3;18467:67;18531:2;18526:3;18467:67;:::i;:::-;18460:74;;18543:93;18632:3;18543:93;:::i;:::-;18661:2;18656:3;18652:12;18645:19;;18304:366;;;:::o;18676:::-;18818:3;18839:67;18903:2;18898:3;18839:67;:::i;:::-;18832:74;;18915:93;19004:3;18915:93;:::i;:::-;19033:2;19028:3;19024:12;19017:19;;18676:366;;;:::o;19048:::-;19190:3;19211:67;19275:2;19270:3;19211:67;:::i;:::-;19204:74;;19287:93;19376:3;19287:93;:::i;:::-;19405:2;19400:3;19396:12;19389:19;;19048:366;;;:::o;19420:::-;19562:3;19583:67;19647:2;19642:3;19583:67;:::i;:::-;19576:74;;19659:93;19748:3;19659:93;:::i;:::-;19777:2;19772:3;19768:12;19761:19;;19420:366;;;:::o;19792:::-;19934:3;19955:67;20019:2;20014:3;19955:67;:::i;:::-;19948:74;;20031:93;20120:3;20031:93;:::i;:::-;20149:2;20144:3;20140:12;20133:19;;19792:366;;;:::o;20164:::-;20306:3;20327:67;20391:2;20386:3;20327:67;:::i;:::-;20320:74;;20403:93;20492:3;20403:93;:::i;:::-;20521:2;20516:3;20512:12;20505:19;;20164:366;;;:::o;20536:::-;20678:3;20699:67;20763:2;20758:3;20699:67;:::i;:::-;20692:74;;20775:93;20864:3;20775:93;:::i;:::-;20893:2;20888:3;20884:12;20877:19;;20536:366;;;:::o;20908:402::-;21068:3;21089:85;21171:2;21166:3;21089:85;:::i;:::-;21082:92;;21183:93;21272:3;21183:93;:::i;:::-;21301:2;21296:3;21292:12;21285:19;;20908:402;;;:::o;21316:366::-;21458:3;21479:67;21543:2;21538:3;21479:67;:::i;:::-;21472:74;;21555:93;21644:3;21555:93;:::i;:::-;21673:2;21668:3;21664:12;21657:19;;21316:366;;;:::o;21688:::-;21830:3;21851:67;21915:2;21910:3;21851:67;:::i;:::-;21844:74;;21927:93;22016:3;21927:93;:::i;:::-;22045:2;22040:3;22036:12;22029:19;;21688:366;;;:::o;22060:::-;22202:3;22223:67;22287:2;22282:3;22223:67;:::i;:::-;22216:74;;22299:93;22388:3;22299:93;:::i;:::-;22417:2;22412:3;22408:12;22401:19;;22060:366;;;:::o;22432:402::-;22592:3;22613:85;22695:2;22690:3;22613:85;:::i;:::-;22606:92;;22707:93;22796:3;22707:93;:::i;:::-;22825:2;22820:3;22816:12;22809:19;;22432:402;;;:::o;22840:366::-;22982:3;23003:67;23067:2;23062:3;23003:67;:::i;:::-;22996:74;;23079:93;23168:3;23079:93;:::i;:::-;23197:2;23192:3;23188:12;23181:19;;22840:366;;;:::o;23212:118::-;23299:24;23317:5;23299:24;:::i;:::-;23294:3;23287:37;23212:118;;:::o;23336:435::-;23516:3;23538:95;23629:3;23620:6;23538:95;:::i;:::-;23531:102;;23650:95;23741:3;23732:6;23650:95;:::i;:::-;23643:102;;23762:3;23755:10;;23336:435;;;;;:::o;23777:967::-;24159:3;24181:148;24325:3;24181:148;:::i;:::-;24174:155;;24346:95;24437:3;24428:6;24346:95;:::i;:::-;24339:102;;24458:148;24602:3;24458:148;:::i;:::-;24451:155;;24623:95;24714:3;24705:6;24623:95;:::i;:::-;24616:102;;24735:3;24728:10;;23777:967;;;;;:::o;24750:222::-;24843:4;24881:2;24870:9;24866:18;24858:26;;24894:71;24962:1;24951:9;24947:17;24938:6;24894:71;:::i;:::-;24750:222;;;;:::o;24978:640::-;25173:4;25211:3;25200:9;25196:19;25188:27;;25225:71;25293:1;25282:9;25278:17;25269:6;25225:71;:::i;:::-;25306:72;25374:2;25363:9;25359:18;25350:6;25306:72;:::i;:::-;25388;25456:2;25445:9;25441:18;25432:6;25388:72;:::i;:::-;25507:9;25501:4;25497:20;25492:2;25481:9;25477:18;25470:48;25535:76;25606:4;25597:6;25535:76;:::i;:::-;25527:84;;24978:640;;;;;;;:::o;25624:210::-;25711:4;25749:2;25738:9;25734:18;25726:26;;25762:65;25824:1;25813:9;25809:17;25800:6;25762:65;:::i;:::-;25624:210;;;;:::o;25840:411::-;25975:4;26013:2;26002:9;25998:18;25990:26;;26026:65;26088:1;26077:9;26073:17;26064:6;26026:65;:::i;:::-;26138:9;26132:4;26128:20;26123:2;26112:9;26108:18;26101:48;26166:78;26239:4;26230:6;26166:78;:::i;:::-;26158:86;;25840:411;;;;;:::o;26257:222::-;26350:4;26388:2;26377:9;26373:18;26365:26;;26401:71;26469:1;26458:9;26454:17;26445:6;26401:71;:::i;:::-;26257:222;;;;:::o;26485:313::-;26598:4;26636:2;26625:9;26621:18;26613:26;;26685:9;26679:4;26675:20;26671:1;26660:9;26656:17;26649:47;26713:78;26786:4;26777:6;26713:78;:::i;:::-;26705:86;;26485:313;;;;:::o;26804:419::-;26970:4;27008:2;26997:9;26993:18;26985:26;;27057:9;27051:4;27047:20;27043:1;27032:9;27028:17;27021:47;27085:131;27211:4;27085:131;:::i;:::-;27077:139;;26804:419;;;:::o;27229:::-;27395:4;27433:2;27422:9;27418:18;27410:26;;27482:9;27476:4;27472:20;27468:1;27457:9;27453:17;27446:47;27510:131;27636:4;27510:131;:::i;:::-;27502:139;;27229:419;;;:::o;27654:::-;27820:4;27858:2;27847:9;27843:18;27835:26;;27907:9;27901:4;27897:20;27893:1;27882:9;27878:17;27871:47;27935:131;28061:4;27935:131;:::i;:::-;27927:139;;27654:419;;;:::o;28079:::-;28245:4;28283:2;28272:9;28268:18;28260:26;;28332:9;28326:4;28322:20;28318:1;28307:9;28303:17;28296:47;28360:131;28486:4;28360:131;:::i;:::-;28352:139;;28079:419;;;:::o;28504:::-;28670:4;28708:2;28697:9;28693:18;28685:26;;28757:9;28751:4;28747:20;28743:1;28732:9;28728:17;28721:47;28785:131;28911:4;28785:131;:::i;:::-;28777:139;;28504:419;;;:::o;28929:::-;29095:4;29133:2;29122:9;29118:18;29110:26;;29182:9;29176:4;29172:20;29168:1;29157:9;29153:17;29146:47;29210:131;29336:4;29210:131;:::i;:::-;29202:139;;28929:419;;;:::o;29354:::-;29520:4;29558:2;29547:9;29543:18;29535:26;;29607:9;29601:4;29597:20;29593:1;29582:9;29578:17;29571:47;29635:131;29761:4;29635:131;:::i;:::-;29627:139;;29354:419;;;:::o;29779:::-;29945:4;29983:2;29972:9;29968:18;29960:26;;30032:9;30026:4;30022:20;30018:1;30007:9;30003:17;29996:47;30060:131;30186:4;30060:131;:::i;:::-;30052:139;;29779:419;;;:::o;30204:::-;30370:4;30408:2;30397:9;30393:18;30385:26;;30457:9;30451:4;30447:20;30443:1;30432:9;30428:17;30421:47;30485:131;30611:4;30485:131;:::i;:::-;30477:139;;30204:419;;;:::o;30629:::-;30795:4;30833:2;30822:9;30818:18;30810:26;;30882:9;30876:4;30872:20;30868:1;30857:9;30853:17;30846:47;30910:131;31036:4;30910:131;:::i;:::-;30902:139;;30629:419;;;:::o;31054:::-;31220:4;31258:2;31247:9;31243:18;31235:26;;31307:9;31301:4;31297:20;31293:1;31282:9;31278:17;31271:47;31335:131;31461:4;31335:131;:::i;:::-;31327:139;;31054:419;;;:::o;31479:::-;31645:4;31683:2;31672:9;31668:18;31660:26;;31732:9;31726:4;31722:20;31718:1;31707:9;31703:17;31696:47;31760:131;31886:4;31760:131;:::i;:::-;31752:139;;31479:419;;;:::o;31904:::-;32070:4;32108:2;32097:9;32093:18;32085:26;;32157:9;32151:4;32147:20;32143:1;32132:9;32128:17;32121:47;32185:131;32311:4;32185:131;:::i;:::-;32177:139;;31904:419;;;:::o;32329:::-;32495:4;32533:2;32522:9;32518:18;32510:26;;32582:9;32576:4;32572:20;32568:1;32557:9;32553:17;32546:47;32610:131;32736:4;32610:131;:::i;:::-;32602:139;;32329:419;;;:::o;32754:::-;32920:4;32958:2;32947:9;32943:18;32935:26;;33007:9;33001:4;32997:20;32993:1;32982:9;32978:17;32971:47;33035:131;33161:4;33035:131;:::i;:::-;33027:139;;32754:419;;;:::o;33179:::-;33345:4;33383:2;33372:9;33368:18;33360:26;;33432:9;33426:4;33422:20;33418:1;33407:9;33403:17;33396:47;33460:131;33586:4;33460:131;:::i;:::-;33452:139;;33179:419;;;:::o;33604:::-;33770:4;33808:2;33797:9;33793:18;33785:26;;33857:9;33851:4;33847:20;33843:1;33832:9;33828:17;33821:47;33885:131;34011:4;33885:131;:::i;:::-;33877:139;;33604:419;;;:::o;34029:::-;34195:4;34233:2;34222:9;34218:18;34210:26;;34282:9;34276:4;34272:20;34268:1;34257:9;34253:17;34246:47;34310:131;34436:4;34310:131;:::i;:::-;34302:139;;34029:419;;;:::o;34454:::-;34620:4;34658:2;34647:9;34643:18;34635:26;;34707:9;34701:4;34697:20;34693:1;34682:9;34678:17;34671:47;34735:131;34861:4;34735:131;:::i;:::-;34727:139;;34454:419;;;:::o;34879:::-;35045:4;35083:2;35072:9;35068:18;35060:26;;35132:9;35126:4;35122:20;35118:1;35107:9;35103:17;35096:47;35160:131;35286:4;35160:131;:::i;:::-;35152:139;;34879:419;;;:::o;35304:::-;35470:4;35508:2;35497:9;35493:18;35485:26;;35557:9;35551:4;35547:20;35543:1;35532:9;35528:17;35521:47;35585:131;35711:4;35585:131;:::i;:::-;35577:139;;35304:419;;;:::o;35729:::-;35895:4;35933:2;35922:9;35918:18;35910:26;;35982:9;35976:4;35972:20;35968:1;35957:9;35953:17;35946:47;36010:131;36136:4;36010:131;:::i;:::-;36002:139;;35729:419;;;:::o;36154:::-;36320:4;36358:2;36347:9;36343:18;36335:26;;36407:9;36401:4;36397:20;36393:1;36382:9;36378:17;36371:47;36435:131;36561:4;36435:131;:::i;:::-;36427:139;;36154:419;;;:::o;36579:::-;36745:4;36783:2;36772:9;36768:18;36760:26;;36832:9;36826:4;36822:20;36818:1;36807:9;36803:17;36796:47;36860:131;36986:4;36860:131;:::i;:::-;36852:139;;36579:419;;;:::o;37004:::-;37170:4;37208:2;37197:9;37193:18;37185:26;;37257:9;37251:4;37247:20;37243:1;37232:9;37228:17;37221:47;37285:131;37411:4;37285:131;:::i;:::-;37277:139;;37004:419;;;:::o;37429:::-;37595:4;37633:2;37622:9;37618:18;37610:26;;37682:9;37676:4;37672:20;37668:1;37657:9;37653:17;37646:47;37710:131;37836:4;37710:131;:::i;:::-;37702:139;;37429:419;;;:::o;37854:::-;38020:4;38058:2;38047:9;38043:18;38035:26;;38107:9;38101:4;38097:20;38093:1;38082:9;38078:17;38071:47;38135:131;38261:4;38135:131;:::i;:::-;38127:139;;37854:419;;;:::o;38279:::-;38445:4;38483:2;38472:9;38468:18;38460:26;;38532:9;38526:4;38522:20;38518:1;38507:9;38503:17;38496:47;38560:131;38686:4;38560:131;:::i;:::-;38552:139;;38279:419;;;:::o;38704:::-;38870:4;38908:2;38897:9;38893:18;38885:26;;38957:9;38951:4;38947:20;38943:1;38932:9;38928:17;38921:47;38985:131;39111:4;38985:131;:::i;:::-;38977:139;;38704:419;;;:::o;39129:::-;39295:4;39333:2;39322:9;39318:18;39310:26;;39382:9;39376:4;39372:20;39368:1;39357:9;39353:17;39346:47;39410:131;39536:4;39410:131;:::i;:::-;39402:139;;39129:419;;;:::o;39554:222::-;39647:4;39685:2;39674:9;39670:18;39662:26;;39698:71;39766:1;39755:9;39751:17;39742:6;39698:71;:::i;:::-;39554:222;;;;:::o;39782:129::-;39816:6;39843:20;;:::i;:::-;39833:30;;39872:33;39900:4;39892:6;39872:33;:::i;:::-;39782:129;;;:::o;39917:75::-;39950:6;39983:2;39977:9;39967:19;;39917:75;:::o;39998:307::-;40059:4;40149:18;40141:6;40138:30;40135:56;;;40171:18;;:::i;:::-;40135:56;40209:29;40231:6;40209:29;:::i;:::-;40201:37;;40293:4;40287;40283:15;40275:23;;39998:307;;;:::o;40311:308::-;40373:4;40463:18;40455:6;40452:30;40449:56;;;40485:18;;:::i;:::-;40449:56;40523:29;40545:6;40523:29;:::i;:::-;40515:37;;40607:4;40601;40597:15;40589:23;;40311:308;;;:::o;40625:98::-;40676:6;40710:5;40704:12;40694:22;;40625:98;;;:::o;40729:99::-;40781:6;40815:5;40809:12;40799:22;;40729:99;;;:::o;40834:168::-;40917:11;40951:6;40946:3;40939:19;40991:4;40986:3;40982:14;40967:29;;40834:168;;;;:::o;41008:169::-;41092:11;41126:6;41121:3;41114:19;41166:4;41161:3;41157:14;41142:29;;41008:169;;;;:::o;41183:148::-;41285:11;41322:3;41307:18;;41183:148;;;;:::o;41337:305::-;41377:3;41396:20;41414:1;41396:20;:::i;:::-;41391:25;;41430:20;41448:1;41430:20;:::i;:::-;41425:25;;41584:1;41516:66;41512:74;41509:1;41506:81;41503:107;;;41590:18;;:::i;:::-;41503:107;41634:1;41631;41627:9;41620:16;;41337:305;;;;:::o;41648:185::-;41688:1;41705:20;41723:1;41705:20;:::i;:::-;41700:25;;41739:20;41757:1;41739:20;:::i;:::-;41734:25;;41778:1;41768:35;;41783:18;;:::i;:::-;41768:35;41825:1;41822;41818:9;41813:14;;41648:185;;;;:::o;41839:348::-;41879:7;41902:20;41920:1;41902:20;:::i;:::-;41897:25;;41936:20;41954:1;41936:20;:::i;:::-;41931:25;;42124:1;42056:66;42052:74;42049:1;42046:81;42041:1;42034:9;42027:17;42023:105;42020:131;;;42131:18;;:::i;:::-;42020:131;42179:1;42176;42172:9;42161:20;;41839:348;;;;:::o;42193:191::-;42233:4;42253:20;42271:1;42253:20;:::i;:::-;42248:25;;42287:20;42305:1;42287:20;:::i;:::-;42282:25;;42326:1;42323;42320:8;42317:34;;;42331:18;;:::i;:::-;42317:34;42376:1;42373;42369:9;42361:17;;42193:191;;;;:::o;42390:96::-;42427:7;42456:24;42474:5;42456:24;:::i;:::-;42445:35;;42390:96;;;:::o;42492:90::-;42526:7;42569:5;42562:13;42555:21;42544:32;;42492:90;;;:::o;42588:77::-;42625:7;42654:5;42643:16;;42588:77;;;:::o;42671:149::-;42707:7;42747:66;42740:5;42736:78;42725:89;;42671:149;;;:::o;42826:126::-;42863:7;42903:42;42896:5;42892:54;42881:65;;42826:126;;;:::o;42958:77::-;42995:7;43024:5;43013:16;;42958:77;;;:::o;43041:154::-;43125:6;43120:3;43115;43102:30;43187:1;43178:6;43173:3;43169:16;43162:27;43041:154;;;:::o;43201:307::-;43269:1;43279:113;43293:6;43290:1;43287:13;43279:113;;;43378:1;43373:3;43369:11;43363:18;43359:1;43354:3;43350:11;43343:39;43315:2;43312:1;43308:10;43303:15;;43279:113;;;43410:6;43407:1;43404:13;43401:101;;;43490:1;43481:6;43476:3;43472:16;43465:27;43401:101;43250:258;43201:307;;;:::o;43514:171::-;43553:3;43576:24;43594:5;43576:24;:::i;:::-;43567:33;;43622:4;43615:5;43612:15;43609:41;;;43630:18;;:::i;:::-;43609:41;43677:1;43670:5;43666:13;43659:20;;43514:171;;;:::o;43691:320::-;43735:6;43772:1;43766:4;43762:12;43752:22;;43819:1;43813:4;43809:12;43840:18;43830:81;;43896:4;43888:6;43884:17;43874:27;;43830:81;43958:2;43950:6;43947:14;43927:18;43924:38;43921:84;;;43977:18;;:::i;:::-;43921:84;43742:269;43691:320;;;:::o;44017:281::-;44100:27;44122:4;44100:27;:::i;:::-;44092:6;44088:40;44230:6;44218:10;44215:22;44194:18;44182:10;44179:34;44176:62;44173:88;;;44241:18;;:::i;:::-;44173:88;44281:10;44277:2;44270:22;44060:238;44017:281;;:::o;44304:233::-;44343:3;44366:24;44384:5;44366:24;:::i;:::-;44357:33;;44412:66;44405:5;44402:77;44399:103;;;44482:18;;:::i;:::-;44399:103;44529:1;44522:5;44518:13;44511:20;;44304:233;;;:::o;44543:176::-;44575:1;44592:20;44610:1;44592:20;:::i;:::-;44587:25;;44626:20;44644:1;44626:20;:::i;:::-;44621:25;;44665:1;44655:35;;44670:18;;:::i;:::-;44655:35;44711:1;44708;44704:9;44699:14;;44543:176;;;;:::o;44725:180::-;44773:77;44770:1;44763:88;44870:4;44867:1;44860:15;44894:4;44891:1;44884:15;44911:180;44959:77;44956:1;44949:88;45056:4;45053:1;45046:15;45080:4;45077:1;45070:15;45097:180;45145:77;45142:1;45135:88;45242:4;45239:1;45232:15;45266:4;45263:1;45256:15;45283:180;45331:77;45328:1;45321:88;45428:4;45425:1;45418:15;45452:4;45449:1;45442:15;45469:180;45517:77;45514:1;45507:88;45614:4;45611:1;45604:15;45638:4;45635:1;45628:15;45655:180;45703:77;45700:1;45693:88;45800:4;45797:1;45790:15;45824:4;45821:1;45814:15;45841:117;45950:1;45947;45940:12;45964:117;46073:1;46070;46063:12;46087:117;46196:1;46193;46186:12;46210:117;46319:1;46316;46309:12;46333:117;46442:1;46439;46432:12;46456:117;46565:1;46562;46555:12;46579:102;46620:6;46671:2;46667:7;46662:2;46655:5;46651:14;46647:28;46637:38;;46579:102;;;:::o;46687:182::-;46827:34;46823:1;46815:6;46811:14;46804:58;46687:182;:::o;46875:230::-;47015:34;47011:1;47003:6;46999:14;46992:58;47084:13;47079:2;47071:6;47067:15;47060:38;46875:230;:::o;47111:170::-;47251:22;47247:1;47239:6;47235:14;47228:46;47111:170;:::o;47287:226::-;47427:34;47423:1;47415:6;47411:14;47404:58;47496:9;47491:2;47483:6;47479:15;47472:34;47287:226;:::o;47519:230::-;47659:34;47655:1;47647:6;47643:14;47636:58;47728:13;47723:2;47715:6;47711:15;47704:38;47519:230;:::o;47755:237::-;47895:34;47891:1;47883:6;47879:14;47872:58;47964:20;47959:2;47951:6;47947:15;47940:45;47755:237;:::o;47998:225::-;48138:34;48134:1;48126:6;48122:14;48115:58;48207:8;48202:2;48194:6;48190:15;48183:33;47998:225;:::o;48229:224::-;48369:34;48365:1;48357:6;48353:14;48346:58;48438:7;48433:2;48425:6;48421:15;48414:32;48229:224;:::o;48459:178::-;48599:30;48595:1;48587:6;48583:14;48576:54;48459:178;:::o;48643:249::-;48783:34;48779:1;48771:6;48767:14;48760:58;48852:32;48847:2;48839:6;48835:15;48828:57;48643:249;:::o;48898:223::-;49038:34;49034:1;49026:6;49022:14;49015:58;49107:6;49102:2;49094:6;49090:15;49083:31;48898:223;:::o;49127:175::-;49267:27;49263:1;49255:6;49251:14;49244:51;49127:175;:::o;49308:243::-;49448:34;49444:1;49436:6;49432:14;49425:58;49517:26;49512:2;49504:6;49500:15;49493:51;49308:243;:::o;49557:231::-;49697:34;49693:1;49685:6;49681:14;49674:58;49766:14;49761:2;49753:6;49749:15;49742:39;49557:231;:::o;49794:235::-;49934:34;49930:1;49922:6;49918:14;49911:58;50003:18;49998:2;49990:6;49986:15;49979:43;49794:235;:::o;50035:166::-;50175:18;50171:1;50163:6;50159:14;50152:42;50035:166;:::o;50207:243::-;50347:34;50343:1;50335:6;50331:14;50324:58;50416:26;50411:2;50403:6;50399:15;50392:51;50207:243;:::o;50456:229::-;50596:34;50592:1;50584:6;50580:14;50573:58;50665:12;50660:2;50652:6;50648:15;50641:37;50456:229;:::o;50691:228::-;50831:34;50827:1;50819:6;50815:14;50808:58;50900:11;50895:2;50887:6;50883:15;50876:36;50691:228;:::o;50925:225::-;51065:34;51061:1;51053:6;51049:14;51042:58;51134:8;51129:2;51121:6;51117:15;51110:33;50925:225;:::o;51156:182::-;51296:34;51292:1;51284:6;51280:14;51273:58;51156:182;:::o;51344:231::-;51484:34;51480:1;51472:6;51468:14;51461:58;51553:14;51548:2;51540:6;51536:15;51529:39;51344:231;:::o;51581:182::-;51721:34;51717:1;51709:6;51705:14;51698:58;51581:182;:::o;51769:220::-;51909:34;51905:1;51897:6;51893:14;51886:58;51978:3;51973:2;51965:6;51961:15;51954:28;51769:220;:::o;51995:236::-;52135:34;52131:1;52123:6;52119:14;52112:58;52204:19;52199:2;52191:6;52187:15;52180:44;51995:236;:::o;52237:231::-;52377:34;52373:1;52365:6;52361:14;52354:58;52446:14;52441:2;52433:6;52429:15;52422:39;52237:231;:::o;52474:173::-;52614:25;52610:1;52602:6;52598:14;52591:49;52474:173;:::o;52653:231::-;52793:34;52789:1;52781:6;52777:14;52770:58;52862:14;52857:2;52849:6;52845:15;52838:39;52653:231;:::o;52890:235::-;53030:34;53026:1;53018:6;53014:14;53007:58;53099:18;53094:2;53086:6;53082:15;53075:43;52890:235;:::o;53131:251::-;53271:34;53267:1;53259:6;53255:14;53248:58;53340:34;53335:2;53327:6;53323:15;53316:59;53131:251;:::o;53388:167::-;53528:19;53524:1;53516:6;53512:14;53505:43;53388:167;:::o;53561:234::-;53701:34;53697:1;53689:6;53685:14;53678:58;53770:17;53765:2;53757:6;53753:15;53746:42;53561:234;:::o;53801:122::-;53874:24;53892:5;53874:24;:::i;:::-;53867:5;53864:35;53854:63;;53913:1;53910;53903:12;53854:63;53801:122;:::o;53929:116::-;53999:21;54014:5;53999:21;:::i;:::-;53992:5;53989:32;53979:60;;54035:1;54032;54025:12;53979:60;53929:116;:::o;54051:122::-;54124:24;54142:5;54124:24;:::i;:::-;54117:5;54114:35;54104:63;;54163:1;54160;54153:12;54104:63;54051:122;:::o;54179:120::-;54251:23;54268:5;54251:23;:::i;:::-;54244:5;54241:34;54231:62;;54289:1;54286;54279:12;54231:62;54179:120;:::o;54305:122::-;54378:24;54396:5;54378:24;:::i;:::-;54371:5;54368:35;54358:63;;54417:1;54414;54407:12;54358:63;54305:122;:::o

Swarm Source

ipfs://151d4299fe637eb749790026a87069b0d8a5ec7d70a32e6ba10a5b0522c831b9
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.