ETH Price: $3,477.49 (+1.58%)
Gas: 10 Gwei

Token

Unbearables (UNB)
 

Overview

Max Total Supply

171 UNB

Holders

93

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 UNB
0xc761a7a1fe7bd916baa9e38e3a5a219bef93cb17
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:
Unbearables

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-01
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            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] = toDeleteIndex + 1; // All indexes are 1-based

            // 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) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // 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(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(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(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(uint256(_at(set._inner, index)));
    }


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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/GSN/Context.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/AccessControl.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * 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 {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @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 {_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) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @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 returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @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 returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @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 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 {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _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 {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _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 granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        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}.
     * ====
     */
    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 {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/introspection/IERC165.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

// File: @openzeppelin/contracts/introspection/ERC165.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

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

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

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

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        return _get(map, key, "EnumerableMap: nonexistent key");
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(value)));
    }

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

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

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

   /**
    * @dev Returns the element 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(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint256(value)));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint256(_get(map._inner, bytes32(key))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint256(_get(map._inner, bytes32(key), errorMessage)));
    }
}

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = byte(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;


/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;
    address private _creator;
    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

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

        return _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

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

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

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

        string memory _tokenURI = _tokenURIs[tokenId];

        // If there is no base URI, return the token URI.
        if (bytes(_baseURI).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(_baseURI, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(_baseURI, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = 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 override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view 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 returns (bool) {
        return _tokenOwners.contains(tokenId);
    }

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

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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");
        
        _creator = msg.sender;
        
        _beforeTokenTransfer(address(0), to, tokenId);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

        emit Transfer(owner, address(0), tokenId);
    }
    
    function creator() public view returns (address){
        
        return _creator;

    }

    /**
     * @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(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

    function _approve(address to, uint256 tokenId) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.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: @openzeppelin/contracts/utils/Pausable.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;


/**
 * @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.
 */
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 () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view 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: @openzeppelin/contracts/token/ERC721/ERC721Pausable.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;



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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

// File: contracts/TW9.sol

pragma solidity =0.6.6;

contract Unbearables is ERC721Pausable, AccessControl, Ownable {
    bytes32 public constant UPDATE_TOKEN_URI_ROLE = keccak256('UPDATE_TOKEN_URI_ROLE');
    bytes32 public constant PAUSED_ROLE = keccak256('PAUSED_ROLE');
    uint256 public nextTokenId = 0;
    event Burn(address indexed sender, uint256 tokenId);
    uint256 public constant PRICE = 65E15;   //0.065 ETH per NFT
    
    uint256 public constant MAX_ITEMS = 10000;
    

    constructor() public ERC721('Unbearables', 'UNB') {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(UPDATE_TOKEN_URI_ROLE, _msgSender());
        _setupRole(PAUSED_ROLE, _msgSender());
    }

    
    function mint(address to) private returns (uint256 tokenId) {
        tokenId = nextTokenId;
        _mint(to, tokenId);
        nextTokenId++;
        //_setTokenURI(tokenId, _tokenURI);
    }

    function batchMint(
        address to,
        uint256 size
    ) public payable returns (uint256[] memory tokenIds) {
        require(nextTokenId < 10000, 'Max limit Reached');
        require(size != 0, 'size must be greater than zero');
        require(size <= 12, 'You can only Mint 12 NFT at a time');
        require(msg.value >= price(size), 'Value below price');
        tokenIds = new uint256[](size);
        for (uint256 i = 0; i < size; ++i) {
            tokenIds[i] = mint(to);
        }
    }
    
    function price(uint256 _count) public pure returns (uint256) {
        return PRICE.mul(_count);
    }

    function burn(uint256 tokenId) public {
        require(_isApprovedOrOwner(_msgSender(), tokenId), 'caller is not owner nor approved');
        _burn(tokenId);
        emit Burn(_msgSender(), tokenId);
    }

    function setBaseURI(string memory baseURI) public {
        require(hasRole(UPDATE_TOKEN_URI_ROLE, _msgSender()), 'Must have update token uri role');
        _setBaseURI(baseURI);
    }

    function setTokenURI(uint256 tokenId, string memory tokenURI) public {
        require(hasRole(UPDATE_TOKEN_URI_ROLE, _msgSender()), 'Must have update token uri role');
        _setTokenURI(tokenId, tokenURI);
    }

    function pause() public whenNotPaused {
        require(hasRole(PAUSED_ROLE, _msgSender()), 'Must have pause role');
        _pause();
    }

    function unpause() public whenPaused {
        require(hasRole(PAUSED_ROLE, _msgSender()), 'Must have pause role');
        _unpause();
    }

    function transferAnyERC20Token(address tokenAddress, uint256 amount) public onlyOwner {
        IERC20(tokenAddress).transfer(owner(), amount);
    }

    function transferAnyERC721Token(address tokenAddress, uint256 tokenId) public onlyOwner {
        IERC721(tokenAddress).transferFrom(address(this), owner(), tokenId);
    }
    
    function withdrawAllETH() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(msg.sender, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success,) = _address.call{value : _amount}("");
        require(success, "Transfer failed.");
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Burn","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ITEMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSED_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPDATE_TOKEN_URI_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"size","type":"uint256"}],"name":"batchMint","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[{"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"setTokenURI","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":"tokenAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferAnyERC721Token","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":"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":[],"name":"withdrawAllETH","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600e553480156200001657600080fd5b506040518060400160405280600b81526020017f556e6265617261626c65730000000000000000000000000000000000000000008152506040518060400160405280600381526020017f554e4200000000000000000000000000000000000000000000000000000000008152506200009b6301ffc9a760e01b620002b960201b60201c565b8160079080519060200190620000b392919062000559565b508060089080519060200190620000cc92919062000559565b50620000e56380ac58cd60e01b620002b960201b60201c565b620000fd635b5e139f60e01b620002b960201b60201c565b6200011563780e9d6360e01b620002b960201b60201c565b50506000600b60006101000a81548160ff021916908315150217905550600062000144620003c260201b60201c565b905080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002076000801b620001fb620003c260201b60201c565b620003ca60201b60201c565b6200025d60405180807f5550444154455f544f4b454e5f5552495f524f4c4500000000000000000000008152506015019050604051809103902062000251620003c260201b60201c565b620003ca60201b60201c565b620002b360405180807f5041555345445f524f4c45000000000000000000000000000000000000000000815250600b0190506040518091039020620002a7620003c260201b60201c565b620003ca60201b60201c565b62000608565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b620003dc8282620003e060201b60201c565b5050565b6200040f81600c60008581526020019081526020016000206000016200048460201b620040751790919060201c565b15620004805762000425620003c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620004b4836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620004bc60201b60201c565b905092915050565b6000620004d083836200053660201b60201c565b6200052b57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000530565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200059c57805160ff1916838001178555620005cd565b82800160010185558215620005cd579182015b82811115620005cc578251825591602001919060010190620005af565b5b509050620005dc9190620005e0565b5090565b6200060591905b8082111562000601576000816000905550600101620005e7565b5090565b90565b6151ed80620006186000396000f3fe6080604052600436106102725760003560e01c80636c0360eb1161014f57806391d14854116100c1578063c87b56dd1161007a578063c87b56dd146110ea578063ca15c8731461119e578063d547741f146111ed578063dc39d06d14611248578063e985e9c5146112a3578063f2fde38b1461132c57610272565b806391d1485414610e2257806395d89b4114610e95578063a217fddf14610f25578063a22cb46514610f50578063ae57937b14610fad578063b88d4fde14610fd857610272565b80638456cb59116101135780638456cb5914610c9f5780638d859f3e14610cb65780638da5cb5b14610ce15780639010d07c14610d3857806390386bbf14610dbd57806390750d0714610dc757610272565b80636c0360eb14610b3d57806370a0823114610bcd578063715018a614610c3257806375794a3c14610c495780637e622c5614610c7457610272565b80632f745c59116101e857806343508b05116101ac57806343508b05146108ae5780634f6ccce71461095157806355f804b3146109a057806357d4c4ee14610a685780635c975abb14610a935780636352211e14610ac257610272565b80632f745c591461071757806336568abe146107865780633f4ba83a146107e157806342842e0e146107f857806342966c681461087357610272565b8063162094c41161023a578063162094c4146104a657806318160ddd1461057857806323b872dd146105a3578063248a9ca31461061e57806326a49e371461066d5780632f2ff15d146106bc57610272565b806301ffc9a71461027757806302d05d3f146102e957806306fdde0314610340578063081812fc146103d0578063095ea7b31461044b575b600080fd5b34801561028357600080fd5b506102cf6004803603602081101561029a57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061137d565b604051808215151515815260200191505060405180910390f35b3480156102f557600080fd5b506102fe6113e4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561034c57600080fd5b5061035561140e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561039557808201518184015260208101905061037a565b50505050905090810190601f1680156103c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103dc57600080fd5b50610409600480360360208110156103f357600080fd5b81019080803590602001909291905050506114b0565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561045757600080fd5b506104a46004803603604081101561046e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061154b565b005b3480156104b257600080fd5b50610576600480360360408110156104c957600080fd5b8101908080359060200190929190803590602001906401000000008111156104f057600080fd5b82018360208201111561050257600080fd5b8035906020019184600183028401116401000000008311171561052457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061168f565b005b34801561058457600080fd5b5061058d611755565b6040518082815260200191505060405180910390f35b3480156105af57600080fd5b5061061c600480360360608110156105c657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611766565b005b34801561062a57600080fd5b506106576004803603602081101561064157600080fd5b81019080803590602001909291905050506117dc565b6040518082815260200191505060405180910390f35b34801561067957600080fd5b506106a66004803603602081101561069057600080fd5b81019080803590602001909291905050506117fc565b6040518082815260200191505060405180910390f35b3480156106c857600080fd5b50610715600480360360408110156106df57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061181f565b005b34801561072357600080fd5b506107706004803603604081101561073a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118a9565b6040518082815260200191505060405180910390f35b34801561079257600080fd5b506107df600480360360408110156107a957600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611904565b005b3480156107ed57600080fd5b506107f661199d565b005b34801561080457600080fd5b506108716004803603606081101561081b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ae1565b005b34801561087f57600080fd5b506108ac6004803603602081101561089657600080fd5b8101908080359060200190929190505050611b01565b005b6108fa600480360360408110156108c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611be5565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561093d578082015181840152602081019050610922565b505050509050019250505060405180910390f35b34801561095d57600080fd5b5061098a6004803603602081101561097457600080fd5b8101908080359060200190929190505050611e39565b6040518082815260200191505060405180910390f35b3480156109ac57600080fd5b50610a66600480360360208110156109c357600080fd5b81019080803590602001906401000000008111156109e057600080fd5b8201836020820111156109f257600080fd5b80359060200191846001830284011164010000000083111715610a1457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611e5c565b005b348015610a7457600080fd5b50610a7d611f20565b6040518082815260200191505060405180910390f35b348015610a9f57600080fd5b50610aa8611f26565b604051808215151515815260200191505060405180910390f35b348015610ace57600080fd5b50610afb60048036036020811015610ae557600080fd5b8101908080359060200190929190505050611f3d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b4957600080fd5b50610b52611f74565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b92578082015181840152602081019050610b77565b50505050905090810190601f168015610bbf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610bd957600080fd5b50610c1c60048036036020811015610bf057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612016565b6040518082815260200191505060405180910390f35b348015610c3e57600080fd5b50610c476120eb565b005b348015610c5557600080fd5b50610c5e612276565b6040518082815260200191505060405180910390f35b348015610c8057600080fd5b50610c8961227c565b6040518082815260200191505060405180910390f35b348015610cab57600080fd5b50610cb46122b5565b005b348015610cc257600080fd5b50610ccb6123fa565b6040518082815260200191505060405180910390f35b348015610ced57600080fd5b50610cf6612405565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610d4457600080fd5b50610d7b60048036036040811015610d5b57600080fd5b81019080803590602001909291908035906020019092919050505061242f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610dc5612461565b005b348015610dd357600080fd5b50610e2060048036036040811015610dea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061254a565b005b348015610e2e57600080fd5b50610e7b60048036036040811015610e4557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126f2565b604051808215151515815260200191505060405180910390f35b348015610ea157600080fd5b50610eaa612724565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610eea578082015181840152602081019050610ecf565b50505050905090810190601f168015610f175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f3157600080fd5b50610f3a6127c6565b6040518082815260200191505060405180910390f35b348015610f5c57600080fd5b50610fab60048036036040811015610f7357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506127cd565b005b348015610fb957600080fd5b50610fc2612985565b6040518082815260200191505060405180910390f35b348015610fe457600080fd5b506110e860048036036080811015610ffb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561106257600080fd5b82018360208201111561107457600080fd5b8035906020019184600183028401116401000000008311171561109657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506129be565b005b3480156110f657600080fd5b506111236004803603602081101561110d57600080fd5b8101908080359060200190929190505050612a36565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015611163578082015181840152602081019050611148565b50505050905090810190601f1680156111905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156111aa57600080fd5b506111d7600480360360208110156111c157600080fd5b8101908080359060200190929190505050612d1f565b6040518082815260200191505060405180910390f35b3480156111f957600080fd5b506112466004803603604081101561121057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d46565b005b34801561125457600080fd5b506112a16004803603604081101561126b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612dd0565b005b3480156112af57600080fd5b50611312600480360360408110156112c657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f68565b604051808215151515815260200191505060405180910390f35b34801561133857600080fd5b5061137b6004803603602081101561134f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612ffc565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114a65780601f1061147b576101008083540402835291602001916114a6565b820191906000526020600020905b81548152906001019060200180831161148957829003601f168201915b5050505050905090565b60006114bb8261320c565b611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615065602c913960400191505060405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061155682611f3d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151156021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166115fc613229565b73ffffffffffffffffffffffffffffffffffffffff16148061162b575061162a81611625613229565b612f68565b5b611680576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180614f976038913960400191505060405180910390fd5b61168a8383613231565b505050565b6116d560405180807f5550444154455f544f4b454e5f5552495f524f4c450000000000000000000000815250601501905060405180910390206116d0613229565b6126f2565b611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4d75737420686176652075706461746520746f6b656e2075726920726f6c650081525060200191505060405180910390fd5b61175182826132ea565b5050565b60006117616003613374565b905090565b611777611771613229565b82613389565b6117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806151366031913960400191505060405180910390fd5b6117d783838361347d565b505050565b6000600c6000838152602001908152602001600020600201549050919050565b60006118188266e6ed27d66680006136c090919063ffffffff16565b9050919050565b611846600c600084815260200190815260200160002060020154611841613229565b6126f2565b61189b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614e90602f913960400191505060405180910390fd5b6118a58282613746565b5050565b60006118fc82600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206137da90919063ffffffff16565b905092915050565b61190c613229565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615167602f913960400191505060405180910390fd5b61199982826137f4565b5050565b600b60009054906101000a900460ff16611a1f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b611a6560405180807f5041555345445f524f4c45000000000000000000000000000000000000000000815250600b0190506040518091039020611a60613229565b6126f2565b611ad7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4d757374206861766520706175736520726f6c6500000000000000000000000081525060200191505060405180910390fd5b611adf613888565b565b611afc838383604051806020016040528060008152506129be565b505050565b611b12611b0c613229565b82613389565b611b84576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656481525060200191505060405180910390fd5b611b8d81613991565b611b95613229565b73ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a250565b6060612710600e5410611c60576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4d6178206c696d6974205265616368656400000000000000000000000000000081525060200191505060405180910390fd5b6000821415611cd7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f73697a65206d7573742062652067726561746572207468616e207a65726f000081525060200191505060405180910390fd5b600c821115611d31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151966022913960400191505060405180910390fd5b611d3a826117fc565b341015611daf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f56616c75652062656c6f7720707269636500000000000000000000000000000081525060200191505060405180910390fd5b8167ffffffffffffffff81118015611dc657600080fd5b50604051908082528060200260200182016040528015611df55781602001602082028036833780820191505090505b50905060008090505b82811015611e3257611e0f84613acb565b828281518110611e1b57fe5b602002602001018181525050806001019050611dfe565b5092915050565b600080611e50836003613af390919063ffffffff16565b50905080915050919050565b611ea260405180807f5550444154455f544f4b454e5f5552495f524f4c45000000000000000000000081525060150190506040518091039020611e9d613229565b6126f2565b611f14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4d75737420686176652075706461746520746f6b656e2075726920726f6c650081525060200191505060405180910390fd5b611f1d81613b22565b50565b61271081565b6000600b60009054906101000a900460ff16905090565b6000611f6d82604051806060016040528060298152602001614ff9602991396003613b3c9092919063ffffffff16565b9050919050565b6060600a8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561200c5780601f10611fe15761010080835404028352916020019161200c565b820191906000526020600020905b815481529060010190602001808311611fef57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561209d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614fcf602a913960400191505060405180910390fd5b6120e4600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613b5b565b9050919050565b6120f3613229565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e5481565b60405180807f5550444154455f544f4b454e5f5552495f524f4c4500000000000000000000008152506015019050604051809103902081565b600b60009054906101000a900460ff1615612338576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61237e60405180807f5041555345445f524f4c45000000000000000000000000000000000000000000815250600b0190506040518091039020612379613229565b6126f2565b6123f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4d757374206861766520706175736520726f6c6500000000000000000000000081525060200191505060405180910390fd5b6123f8613b70565b565b66e6ed27d666800081565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061245982600c6000868152602001908152602001600020600001613c7a90919063ffffffff16565b905092915050565b612469613229565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461252b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790506000811161253d57600080fd5b6125473347613c94565b50565b612552613229565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612614576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd30612639612405565b846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156126d657600080fd5b505af11580156126ea573d6000803e3d6000fd5b505050505050565b600061271c82600c6000868152602001908152602001600020600001613d7590919063ffffffff16565b905092915050565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156127bc5780601f10612791576101008083540402835291602001916127bc565b820191906000526020600020905b81548152906001019060200180831161279f57829003601f168201915b5050505050905090565b6000801b81565b6127d5613229565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612876576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060066000612883613229565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612930613229565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b60405180807f5041555345445f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902081565b6129cf6129c9613229565b83613389565b612a24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806151366031913960400191505060405180910390fd5b612a3084848484613da5565b50505050565b6060612a418261320c565b612a96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806150e6602f913960400191505060405180910390fd5b6060600960008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612b3f5780601f10612b1457610100808354040283529160200191612b3f565b820191906000526020600020905b815481529060010190602001808311612b2257829003601f168201915b505050505090506000600a8054600181600116156101000203166002900490501415612b6e5780915050612d1a565b600081511115612c4757600a816040516020018083805460018160011615610100020316600290048015612bd95780601f10612bb7576101008083540402835291820191612bd9565b820191906000526020600020905b815481529060010190602001808311612bc5575b505082805190602001908083835b60208310612c0a5780518252602082019150602081019050602083039250612be7565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050612d1a565b600a612c5284613e17565b6040516020018083805460018160011615610100020316600290048015612cb05780601f10612c8e576101008083540402835291820191612cb0565b820191906000526020600020905b815481529060010190602001808311612c9c575b505082805190602001908083835b60208310612ce15780518252602082019150602081019050602083039250612cbe565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529150505b919050565b6000612d3f600c6000848152602001908152602001600020600001613f5e565b9050919050565b612d6d600c600084815260200190815260200160002060020154612d68613229565b6126f2565b612dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614f676030913960400191505060405180910390fd5b612dcc82826137f4565b5050565b612dd8613229565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612ebe612405565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612f2857600080fd5b505af1158015612f3c573d6000803e3d6000fd5b505050506040513d6020811015612f5257600080fd5b8101908080519060200190929190505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b613004613229565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561314c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614ef16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000613222826003613f7390919063ffffffff16565b9050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166132a483611f3d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6132f38261320c565b613348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615091602c913960400191505060405180910390fd5b8060096000848152602001908152602001600020908051906020019061336f929190614d55565b505050565b600061338282600001613f8d565b9050919050565b60006133948261320c565b6133e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614f3b602c913960400191505060405180910390fd5b60006133f483611f3d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061346357508373ffffffffffffffffffffffffffffffffffffffff1661344b846114b0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061347457506134738185612f68565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661349d82611f3d565b73ffffffffffffffffffffffffffffffffffffffff1614613509576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806150bd6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561358f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614f176024913960400191505060405180910390fd5b61359a838383613f9e565b6135a5600082613231565b6135f681600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061400c90919063ffffffff16565b5061364881600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061402690919063ffffffff16565b5061365f818360036140409092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000808314156136d35760009050613740565b60008284029050828482816136e457fe5b041461373b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806150446021913960400191505060405180910390fd5b809150505b92915050565b61376e81600c600085815260200190815260200160002060000161407590919063ffffffff16565b156137d65761377b613229565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006137e983600001836140a5565b60001c905092915050565b61381c81600c600085815260200190815260200160002060000161412890919063ffffffff16565b1561388457613829613229565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600b60009054906101000a900460ff1661390a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61394e613229565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061399c82611f3d565b90506139aa81600084613f9e565b6139b5600083613231565b60006009600084815260200190815260200160002080546001816001161561010002031660029004905014613a0457600960008381526020019081526020016000206000613a039190614dd5565b5b613a5582600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061400c90919063ffffffff16565b50613a6a82600361415890919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600e549050613adc8282614172565b600e60008154809291906001019190505550919050565b600080600080613b0686600001866143a7565b915091508160001c8160001c8090509350935050509250929050565b80600a9080519060200190613b38929190614d55565b5050565b6000613b4f846000018460001b84614440565b60001c90509392505050565b6000613b6982600001614536565b9050919050565b600b60009054906101000a900460ff1615613bf3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613c37613229565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000613c8983600001836140a5565b60001c905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114613cf4576040519150601f19603f3d011682016040523d82523d6000602084013e613cf9565b606091505b5050905080613d70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5472616e73666572206661696c65642e0000000000000000000000000000000081525060200191505060405180910390fd5b505050565b6000613d9d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614547565b905092915050565b613db084848461347d565b613dbc8484848461456a565b613e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614ebf6032913960400191505060405180910390fd5b50505050565b60606000821415613e5f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613f59565b600082905060005b60008214613e89578080600101915050600a8281613e8157fe5b049150613e67565b60608167ffffffffffffffff81118015613ea257600080fd5b506040519080825280601f01601f191660200182016040528015613ed55781602001600182028036833780820191505090505b50905060006001830390508593505b60008414613f5157600a8481613ef657fe5b0660300160f81b82828060019003935081518110613f1057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481613f4957fe5b049350613ee4565b819450505050505b919050565b6000613f6c82600001614536565b9050919050565b6000613f85836000018360001b6147af565b905092915050565b600081600001805490509050919050565b613fa98383836147d2565b613fb1611f26565b15614007576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614e65602b913960400191505060405180910390fd5b505050565b600061401e836000018360001b6147d7565b905092915050565b6000614038836000018360001b6148bf565b905092915050565b600061406c846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61492f565b90509392505050565b600061409d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6148bf565b905092915050565b600081836000018054905011614106576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614e436022913960400191505060405180910390fd5b82600001828154811061411557fe5b9060005260206000200154905092915050565b6000614150836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6147d7565b905092915050565b600061416a836000018360001b614a0b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614215576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b61421e8161320c565b15614291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b33600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506142de60008383613f9e565b61432f81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061402690919063ffffffff16565b50614346818360036140409092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008082846000018054905011614409576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806150226022913960400191505060405180910390fd5b600084600001848154811061441a57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156144cc5780820151818401526020810190506144b1565b50505050905090810190601f1680156144f95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061451a57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b600061458b8473ffffffffffffffffffffffffffffffffffffffff16614b24565b61459857600190506147a7565b606061472e63150b7a0260e01b6145ad613229565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561465d578082015181840152602081019050614642565b50505050905090810190601f16801561468a5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614ebf603291398773ffffffffffffffffffffffffffffffffffffffff16614b379092919063ffffffff16565b9050600081806020019051602081101561474757600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b600080836001016000848152602001908152602001600020549050600081146148b3576000600182039050600060018660000180549050039050600086600001828154811061482257fe5b906000526020600020015490508087600001848154811061483f57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061487757fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506148b9565b60009150505b92915050565b60006148cb8383614547565b614924578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050614929565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156149d657846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614a04565b828560000160018303815481106149e957fe5b90600052602060002090600202016001018190555060009150505b9392505050565b60008083600101600084815260200190815260200160002054905060008114614b185760006001820390506000600186600001805490500390506000866000018281548110614a5657fe5b9060005260206000209060020201905080876000018481548110614a7657fe5b9060005260206000209060020201600082015481600001556001820154816001015590505060018301876001016000836000015481526020019081526020016000208190555086600001805480614ac957fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055866001016000878152602001908152602001600020600090556001945050505050614b1e565b60009150505b92915050565b600080823b905060008111915050919050565b6060614b468484600085614b4f565b90509392505050565b6060614b5a85614b24565b614bcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310614c1c5780518252602082019150602081019050602083039250614bf9565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614c7e576040519150601f19603f3d011682016040523d82523d6000602084013e614c83565b606091505b50915091508115614c98578092505050614d4d565b600081511115614cab5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614d12578082015181840152602081019050614cf7565b50505050905090810190601f168015614d3f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614d9657805160ff1916838001178555614dc4565b82800160010185558215614dc4579182015b82811115614dc3578251825591602001919060010190614da8565b5b509050614dd19190614e1d565b5090565b50805460018160011615610100020316600290046000825580601f10614dfb5750614e1a565b601f016020900490600052602060002090810190614e199190614e1d565b5b50565b614e3f91905b80821115614e3b576000816000905550600101614e23565b5090565b9056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732315061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66596f752063616e206f6e6c79204d696e74203132204e465420617420612074696d65a2646970667358221220e18a7039a47d96775b613089dccfe8b9c0c542883b42cb886fe8faa6a452bff164736f6c63430006060033

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636c0360eb1161014f57806391d14854116100c1578063c87b56dd1161007a578063c87b56dd146110ea578063ca15c8731461119e578063d547741f146111ed578063dc39d06d14611248578063e985e9c5146112a3578063f2fde38b1461132c57610272565b806391d1485414610e2257806395d89b4114610e95578063a217fddf14610f25578063a22cb46514610f50578063ae57937b14610fad578063b88d4fde14610fd857610272565b80638456cb59116101135780638456cb5914610c9f5780638d859f3e14610cb65780638da5cb5b14610ce15780639010d07c14610d3857806390386bbf14610dbd57806390750d0714610dc757610272565b80636c0360eb14610b3d57806370a0823114610bcd578063715018a614610c3257806375794a3c14610c495780637e622c5614610c7457610272565b80632f745c59116101e857806343508b05116101ac57806343508b05146108ae5780634f6ccce71461095157806355f804b3146109a057806357d4c4ee14610a685780635c975abb14610a935780636352211e14610ac257610272565b80632f745c591461071757806336568abe146107865780633f4ba83a146107e157806342842e0e146107f857806342966c681461087357610272565b8063162094c41161023a578063162094c4146104a657806318160ddd1461057857806323b872dd146105a3578063248a9ca31461061e57806326a49e371461066d5780632f2ff15d146106bc57610272565b806301ffc9a71461027757806302d05d3f146102e957806306fdde0314610340578063081812fc146103d0578063095ea7b31461044b575b600080fd5b34801561028357600080fd5b506102cf6004803603602081101561029a57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061137d565b604051808215151515815260200191505060405180910390f35b3480156102f557600080fd5b506102fe6113e4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561034c57600080fd5b5061035561140e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561039557808201518184015260208101905061037a565b50505050905090810190601f1680156103c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103dc57600080fd5b50610409600480360360208110156103f357600080fd5b81019080803590602001909291905050506114b0565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561045757600080fd5b506104a46004803603604081101561046e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061154b565b005b3480156104b257600080fd5b50610576600480360360408110156104c957600080fd5b8101908080359060200190929190803590602001906401000000008111156104f057600080fd5b82018360208201111561050257600080fd5b8035906020019184600183028401116401000000008311171561052457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061168f565b005b34801561058457600080fd5b5061058d611755565b6040518082815260200191505060405180910390f35b3480156105af57600080fd5b5061061c600480360360608110156105c657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611766565b005b34801561062a57600080fd5b506106576004803603602081101561064157600080fd5b81019080803590602001909291905050506117dc565b6040518082815260200191505060405180910390f35b34801561067957600080fd5b506106a66004803603602081101561069057600080fd5b81019080803590602001909291905050506117fc565b6040518082815260200191505060405180910390f35b3480156106c857600080fd5b50610715600480360360408110156106df57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061181f565b005b34801561072357600080fd5b506107706004803603604081101561073a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118a9565b6040518082815260200191505060405180910390f35b34801561079257600080fd5b506107df600480360360408110156107a957600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611904565b005b3480156107ed57600080fd5b506107f661199d565b005b34801561080457600080fd5b506108716004803603606081101561081b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ae1565b005b34801561087f57600080fd5b506108ac6004803603602081101561089657600080fd5b8101908080359060200190929190505050611b01565b005b6108fa600480360360408110156108c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611be5565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561093d578082015181840152602081019050610922565b505050509050019250505060405180910390f35b34801561095d57600080fd5b5061098a6004803603602081101561097457600080fd5b8101908080359060200190929190505050611e39565b6040518082815260200191505060405180910390f35b3480156109ac57600080fd5b50610a66600480360360208110156109c357600080fd5b81019080803590602001906401000000008111156109e057600080fd5b8201836020820111156109f257600080fd5b80359060200191846001830284011164010000000083111715610a1457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611e5c565b005b348015610a7457600080fd5b50610a7d611f20565b6040518082815260200191505060405180910390f35b348015610a9f57600080fd5b50610aa8611f26565b604051808215151515815260200191505060405180910390f35b348015610ace57600080fd5b50610afb60048036036020811015610ae557600080fd5b8101908080359060200190929190505050611f3d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b4957600080fd5b50610b52611f74565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b92578082015181840152602081019050610b77565b50505050905090810190601f168015610bbf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610bd957600080fd5b50610c1c60048036036020811015610bf057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612016565b6040518082815260200191505060405180910390f35b348015610c3e57600080fd5b50610c476120eb565b005b348015610c5557600080fd5b50610c5e612276565b6040518082815260200191505060405180910390f35b348015610c8057600080fd5b50610c8961227c565b6040518082815260200191505060405180910390f35b348015610cab57600080fd5b50610cb46122b5565b005b348015610cc257600080fd5b50610ccb6123fa565b6040518082815260200191505060405180910390f35b348015610ced57600080fd5b50610cf6612405565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610d4457600080fd5b50610d7b60048036036040811015610d5b57600080fd5b81019080803590602001909291908035906020019092919050505061242f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610dc5612461565b005b348015610dd357600080fd5b50610e2060048036036040811015610dea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061254a565b005b348015610e2e57600080fd5b50610e7b60048036036040811015610e4557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126f2565b604051808215151515815260200191505060405180910390f35b348015610ea157600080fd5b50610eaa612724565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610eea578082015181840152602081019050610ecf565b50505050905090810190601f168015610f175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f3157600080fd5b50610f3a6127c6565b6040518082815260200191505060405180910390f35b348015610f5c57600080fd5b50610fab60048036036040811015610f7357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506127cd565b005b348015610fb957600080fd5b50610fc2612985565b6040518082815260200191505060405180910390f35b348015610fe457600080fd5b506110e860048036036080811015610ffb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561106257600080fd5b82018360208201111561107457600080fd5b8035906020019184600183028401116401000000008311171561109657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506129be565b005b3480156110f657600080fd5b506111236004803603602081101561110d57600080fd5b8101908080359060200190929190505050612a36565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015611163578082015181840152602081019050611148565b50505050905090810190601f1680156111905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156111aa57600080fd5b506111d7600480360360208110156111c157600080fd5b8101908080359060200190929190505050612d1f565b6040518082815260200191505060405180910390f35b3480156111f957600080fd5b506112466004803603604081101561121057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d46565b005b34801561125457600080fd5b506112a16004803603604081101561126b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612dd0565b005b3480156112af57600080fd5b50611312600480360360408110156112c657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f68565b604051808215151515815260200191505060405180910390f35b34801561133857600080fd5b5061137b6004803603602081101561134f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612ffc565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114a65780601f1061147b576101008083540402835291602001916114a6565b820191906000526020600020905b81548152906001019060200180831161148957829003601f168201915b5050505050905090565b60006114bb8261320c565b611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615065602c913960400191505060405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061155682611f3d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151156021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166115fc613229565b73ffffffffffffffffffffffffffffffffffffffff16148061162b575061162a81611625613229565b612f68565b5b611680576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180614f976038913960400191505060405180910390fd5b61168a8383613231565b505050565b6116d560405180807f5550444154455f544f4b454e5f5552495f524f4c450000000000000000000000815250601501905060405180910390206116d0613229565b6126f2565b611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4d75737420686176652075706461746520746f6b656e2075726920726f6c650081525060200191505060405180910390fd5b61175182826132ea565b5050565b60006117616003613374565b905090565b611777611771613229565b82613389565b6117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806151366031913960400191505060405180910390fd5b6117d783838361347d565b505050565b6000600c6000838152602001908152602001600020600201549050919050565b60006118188266e6ed27d66680006136c090919063ffffffff16565b9050919050565b611846600c600084815260200190815260200160002060020154611841613229565b6126f2565b61189b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614e90602f913960400191505060405180910390fd5b6118a58282613746565b5050565b60006118fc82600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206137da90919063ffffffff16565b905092915050565b61190c613229565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615167602f913960400191505060405180910390fd5b61199982826137f4565b5050565b600b60009054906101000a900460ff16611a1f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b611a6560405180807f5041555345445f524f4c45000000000000000000000000000000000000000000815250600b0190506040518091039020611a60613229565b6126f2565b611ad7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4d757374206861766520706175736520726f6c6500000000000000000000000081525060200191505060405180910390fd5b611adf613888565b565b611afc838383604051806020016040528060008152506129be565b505050565b611b12611b0c613229565b82613389565b611b84576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656481525060200191505060405180910390fd5b611b8d81613991565b611b95613229565b73ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a250565b6060612710600e5410611c60576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4d6178206c696d6974205265616368656400000000000000000000000000000081525060200191505060405180910390fd5b6000821415611cd7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f73697a65206d7573742062652067726561746572207468616e207a65726f000081525060200191505060405180910390fd5b600c821115611d31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151966022913960400191505060405180910390fd5b611d3a826117fc565b341015611daf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f56616c75652062656c6f7720707269636500000000000000000000000000000081525060200191505060405180910390fd5b8167ffffffffffffffff81118015611dc657600080fd5b50604051908082528060200260200182016040528015611df55781602001602082028036833780820191505090505b50905060008090505b82811015611e3257611e0f84613acb565b828281518110611e1b57fe5b602002602001018181525050806001019050611dfe565b5092915050565b600080611e50836003613af390919063ffffffff16565b50905080915050919050565b611ea260405180807f5550444154455f544f4b454e5f5552495f524f4c45000000000000000000000081525060150190506040518091039020611e9d613229565b6126f2565b611f14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4d75737420686176652075706461746520746f6b656e2075726920726f6c650081525060200191505060405180910390fd5b611f1d81613b22565b50565b61271081565b6000600b60009054906101000a900460ff16905090565b6000611f6d82604051806060016040528060298152602001614ff9602991396003613b3c9092919063ffffffff16565b9050919050565b6060600a8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561200c5780601f10611fe15761010080835404028352916020019161200c565b820191906000526020600020905b815481529060010190602001808311611fef57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561209d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614fcf602a913960400191505060405180910390fd5b6120e4600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613b5b565b9050919050565b6120f3613229565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e5481565b60405180807f5550444154455f544f4b454e5f5552495f524f4c4500000000000000000000008152506015019050604051809103902081565b600b60009054906101000a900460ff1615612338576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61237e60405180807f5041555345445f524f4c45000000000000000000000000000000000000000000815250600b0190506040518091039020612379613229565b6126f2565b6123f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4d757374206861766520706175736520726f6c6500000000000000000000000081525060200191505060405180910390fd5b6123f8613b70565b565b66e6ed27d666800081565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061245982600c6000868152602001908152602001600020600001613c7a90919063ffffffff16565b905092915050565b612469613229565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461252b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790506000811161253d57600080fd5b6125473347613c94565b50565b612552613229565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612614576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd30612639612405565b846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b1580156126d657600080fd5b505af11580156126ea573d6000803e3d6000fd5b505050505050565b600061271c82600c6000868152602001908152602001600020600001613d7590919063ffffffff16565b905092915050565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156127bc5780601f10612791576101008083540402835291602001916127bc565b820191906000526020600020905b81548152906001019060200180831161279f57829003601f168201915b5050505050905090565b6000801b81565b6127d5613229565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612876576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060066000612883613229565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612930613229565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b60405180807f5041555345445f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902081565b6129cf6129c9613229565b83613389565b612a24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806151366031913960400191505060405180910390fd5b612a3084848484613da5565b50505050565b6060612a418261320c565b612a96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806150e6602f913960400191505060405180910390fd5b6060600960008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612b3f5780601f10612b1457610100808354040283529160200191612b3f565b820191906000526020600020905b815481529060010190602001808311612b2257829003601f168201915b505050505090506000600a8054600181600116156101000203166002900490501415612b6e5780915050612d1a565b600081511115612c4757600a816040516020018083805460018160011615610100020316600290048015612bd95780601f10612bb7576101008083540402835291820191612bd9565b820191906000526020600020905b815481529060010190602001808311612bc5575b505082805190602001908083835b60208310612c0a5780518252602082019150602081019050602083039250612be7565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050612d1a565b600a612c5284613e17565b6040516020018083805460018160011615610100020316600290048015612cb05780601f10612c8e576101008083540402835291820191612cb0565b820191906000526020600020905b815481529060010190602001808311612c9c575b505082805190602001908083835b60208310612ce15780518252602082019150602081019050602083039250612cbe565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529150505b919050565b6000612d3f600c6000848152602001908152602001600020600001613f5e565b9050919050565b612d6d600c600084815260200190815260200160002060020154612d68613229565b6126f2565b612dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614f676030913960400191505060405180910390fd5b612dcc82826137f4565b5050565b612dd8613229565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612ebe612405565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612f2857600080fd5b505af1158015612f3c573d6000803e3d6000fd5b505050506040513d6020811015612f5257600080fd5b8101908080519060200190929190505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b613004613229565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561314c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614ef16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000613222826003613f7390919063ffffffff16565b9050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166132a483611f3d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6132f38261320c565b613348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615091602c913960400191505060405180910390fd5b8060096000848152602001908152602001600020908051906020019061336f929190614d55565b505050565b600061338282600001613f8d565b9050919050565b60006133948261320c565b6133e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614f3b602c913960400191505060405180910390fd5b60006133f483611f3d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061346357508373ffffffffffffffffffffffffffffffffffffffff1661344b846114b0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061347457506134738185612f68565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661349d82611f3d565b73ffffffffffffffffffffffffffffffffffffffff1614613509576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806150bd6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561358f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614f176024913960400191505060405180910390fd5b61359a838383613f9e565b6135a5600082613231565b6135f681600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061400c90919063ffffffff16565b5061364881600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061402690919063ffffffff16565b5061365f818360036140409092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000808314156136d35760009050613740565b60008284029050828482816136e457fe5b041461373b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806150446021913960400191505060405180910390fd5b809150505b92915050565b61376e81600c600085815260200190815260200160002060000161407590919063ffffffff16565b156137d65761377b613229565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006137e983600001836140a5565b60001c905092915050565b61381c81600c600085815260200190815260200160002060000161412890919063ffffffff16565b1561388457613829613229565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600b60009054906101000a900460ff1661390a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61394e613229565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061399c82611f3d565b90506139aa81600084613f9e565b6139b5600083613231565b60006009600084815260200190815260200160002080546001816001161561010002031660029004905014613a0457600960008381526020019081526020016000206000613a039190614dd5565b5b613a5582600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061400c90919063ffffffff16565b50613a6a82600361415890919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600e549050613adc8282614172565b600e60008154809291906001019190505550919050565b600080600080613b0686600001866143a7565b915091508160001c8160001c8090509350935050509250929050565b80600a9080519060200190613b38929190614d55565b5050565b6000613b4f846000018460001b84614440565b60001c90509392505050565b6000613b6982600001614536565b9050919050565b600b60009054906101000a900460ff1615613bf3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613c37613229565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000613c8983600001836140a5565b60001c905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114613cf4576040519150601f19603f3d011682016040523d82523d6000602084013e613cf9565b606091505b5050905080613d70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5472616e73666572206661696c65642e0000000000000000000000000000000081525060200191505060405180910390fd5b505050565b6000613d9d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614547565b905092915050565b613db084848461347d565b613dbc8484848461456a565b613e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614ebf6032913960400191505060405180910390fd5b50505050565b60606000821415613e5f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613f59565b600082905060005b60008214613e89578080600101915050600a8281613e8157fe5b049150613e67565b60608167ffffffffffffffff81118015613ea257600080fd5b506040519080825280601f01601f191660200182016040528015613ed55781602001600182028036833780820191505090505b50905060006001830390508593505b60008414613f5157600a8481613ef657fe5b0660300160f81b82828060019003935081518110613f1057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481613f4957fe5b049350613ee4565b819450505050505b919050565b6000613f6c82600001614536565b9050919050565b6000613f85836000018360001b6147af565b905092915050565b600081600001805490509050919050565b613fa98383836147d2565b613fb1611f26565b15614007576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614e65602b913960400191505060405180910390fd5b505050565b600061401e836000018360001b6147d7565b905092915050565b6000614038836000018360001b6148bf565b905092915050565b600061406c846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61492f565b90509392505050565b600061409d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6148bf565b905092915050565b600081836000018054905011614106576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614e436022913960400191505060405180910390fd5b82600001828154811061411557fe5b9060005260206000200154905092915050565b6000614150836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6147d7565b905092915050565b600061416a836000018360001b614a0b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614215576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b61421e8161320c565b15614291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b33600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506142de60008383613f9e565b61432f81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061402690919063ffffffff16565b50614346818360036140409092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008082846000018054905011614409576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806150226022913960400191505060405180910390fd5b600084600001848154811061441a57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156144cc5780820151818401526020810190506144b1565b50505050905090810190601f1680156144f95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061451a57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b600061458b8473ffffffffffffffffffffffffffffffffffffffff16614b24565b61459857600190506147a7565b606061472e63150b7a0260e01b6145ad613229565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561465d578082015181840152602081019050614642565b50505050905090810190601f16801561468a5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614ebf603291398773ffffffffffffffffffffffffffffffffffffffff16614b379092919063ffffffff16565b9050600081806020019051602081101561474757600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b600080836001016000848152602001908152602001600020549050600081146148b3576000600182039050600060018660000180549050039050600086600001828154811061482257fe5b906000526020600020015490508087600001848154811061483f57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061487757fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506148b9565b60009150505b92915050565b60006148cb8383614547565b614924578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050614929565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156149d657846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614a04565b828560000160018303815481106149e957fe5b90600052602060002090600202016001018190555060009150505b9392505050565b60008083600101600084815260200190815260200160002054905060008114614b185760006001820390506000600186600001805490500390506000866000018281548110614a5657fe5b9060005260206000209060020201905080876000018481548110614a7657fe5b9060005260206000209060020201600082015481600001556001820154816001015590505060018301876001016000836000015481526020019081526020016000208190555086600001805480614ac957fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055866001016000878152602001908152602001600020600090556001945050505050614b1e565b60009150505b92915050565b600080823b905060008111915050919050565b6060614b468484600085614b4f565b90509392505050565b6060614b5a85614b24565b614bcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310614c1c5780518252602082019150602081019050602083039250614bf9565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614c7e576040519150601f19603f3d011682016040523d82523d6000602084013e614c83565b606091505b50915091508115614c98578092505050614d4d565b600081511115614cab5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614d12578082015181840152602081019050614cf7565b50505050905090810190601f168015614d3f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614d9657805160ff1916838001178555614dc4565b82800160010185558215614dc4579182015b82811115614dc3578251825591602001919060010190614da8565b5b509050614dd19190614e1d565b5090565b50805460018160011615610100020316600290046000825580601f10614dfb5750614e1a565b601f016020900490600052602060002090810190614e199190614e1d565b5b50565b614e3f91905b80821115614e3b576000816000905550600101614e23565b5090565b9056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732315061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66596f752063616e206f6e6c79204d696e74203132204e465420617420612074696d65a2646970667358221220e18a7039a47d96775b613089dccfe8b9c0c542883b42cb886fe8faa6a452bff164736f6c63430006060033

Deployed Bytecode Sourcemap

72660:3217:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;31417:142:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31417:142:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;31417:142:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;60548:94;;5:9:-1;2:2;;;27:1;24;17:12;2:2;60548:94:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;51537:92;;5:9:-1;2:2;;;27:1;24;17:12;2:2;51537:92:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;51537:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54224:213;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54224:213:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;54224:213:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;53768:390;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53768:390:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;53768:390:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;74609:218;;5:9:-1;2:2;;;27:1;24;17:12;2:2;74609:218:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;74609:218:0;;;;;;;;;;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;74609:218:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;74609:218:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;74609:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;74609:218:0;;;;;;;;;;;;;;;:::i;:::-;;53262:203;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53262:203:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55098:305;;5:9:-1;2:2;;;27:1;24;17:12;2:2;55098:305:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;55098:305:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18848:114;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18848:114:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;18848:114:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;74082:104;;5:9:-1;2:2;;;27:1;24;17:12;2:2;74082:104:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;74082:104:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19224:227;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19224:227:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;19224:227:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53032:154;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53032:154:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;53032:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20433:209;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20433:209:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;20433:209:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;74986:144;;5:9:-1;2:2;;;27:1;24;17:12;2:2;74986:144:0;;;:::i;:::-;;55474:151;;5:9:-1;2:2;;;27:1;24;17:12;2:2;55474:151:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;55474:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;74194:211;;5:9:-1;2:2;;;27:1;24;17:12;2:2;74194:211:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;74194:211:0;;;;;;;;;;;;;;;;;:::i;:::-;;73550:520;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;73550:520:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;73550:520:0;;;;;;;;;;;;;;;;;53542:164;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53542:164:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;53542:164:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;74413:188;;5:9:-1;2:2;;;27:1;24;17:12;2:2;74413:188:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;74413:188:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;74413:188:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;74413:188:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;74413:188:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;74413:188:0;;;;;;;;;;;;;;;:::i;:::-;;73055:41;;5:9:-1;2:2;;;27:1;24;17:12;2:2;73055:41:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;68239:78;;5:9:-1;2:2;;;27:1;24;17:12;2:2;68239:78:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;51301:169;;5:9:-1;2:2;;;27:1;24;17:12;2:2;51301:169:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;51301:169:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;52859:89;;5:9:-1;2:2;;;27:1;24;17:12;2:2;52859:89:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;52859:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51024:215;;5:9:-1;2:2;;;27:1;24;17:12;2:2;51024:215:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;51024:215:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72049:148;;5:9:-1;2:2;;;27:1;24;17:12;2:2;72049:148:0;;;:::i;:::-;;72888:30;;5:9:-1;2:2;;;27:1;24;17:12;2:2;72888:30:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72730:82;;5:9:-1;2:2;;;27:1;24;17:12;2:2;72730:82:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;74835:143;;5:9:-1;2:2;;;27:1;24;17:12;2:2;74835:143:0;;;:::i;:::-;;72983:37;;5:9:-1;2:2;;;27:1;24;17:12;2:2;72983:37:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;71407:79;;5:9:-1;2:2;;;27:1;24;17:12;2:2;71407:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18521:138;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18521:138:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;18521:138:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;75483:196;;;:::i;:::-;;75297:174;;5:9:-1;2:2;;;27:1;24;17:12;2:2;75297:174:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;75297:174:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17482:139;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17482:139:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;17482:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;51698:96;;5:9:-1;2:2;;;27:1;24;17:12;2:2;51698:96:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;51698:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16227:49;;5:9:-1;2:2;;;27:1;24;17:12;2:2;16227:49:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54509:295;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54509:295:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;54509:295:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72819:62;;5:9:-1;2:2;;;27:1;24;17:12;2:2;72819:62:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55696:285;;5:9:-1;2:2;;;27:1;24;17:12;2:2;55696:285:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;55696:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;55696:285:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;55696:285:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;55696:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;55696:285:0;;;;;;;;;;;;;;;:::i;:::-;;51865:755;;5:9:-1;2:2;;;27:1;24;17:12;2:2;51865:755:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;51865:755:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;51865:755:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17795:127;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17795:127:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;17795:127:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19696:230;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19696:230:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;19696:230:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;75138:151;;5:9:-1;2:2;;;27:1;24;17:12;2:2;75138:151:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;75138:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54875:156;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54875:156:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;54875:156:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;72352:244;;5:9:-1;2:2;;;27:1;24;17:12;2:2;72352:244:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;72352:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;31417:142;31494:4;31518:20;:33;31539:11;31518:33;;;;;;;;;;;;;;;;;;;;;;;;;;;31511:40;;31417:142;;;:::o;60548:94::-;60588:7;60624:8;;;;;;;;;;;60617:15;;60548:94;:::o;51537:92::-;51583:13;51616:5;51609:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51537:92;:::o;54224:213::-;54292:7;54320:16;54328:7;54320;:16::i;:::-;54312:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54405:15;:24;54421:7;54405:24;;;;;;;;;;;;;;;;;;;;;54398:31;;54224:213;;;:::o;53768:390::-;53849:13;53865:16;53873:7;53865;:16::i;:::-;53849:32;;53906:5;53900:11;;:2;:11;;;;53892:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53986:5;53970:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;53995:37;54012:5;54019:12;:10;:12::i;:::-;53995:16;:37::i;:::-;53970:62;53962:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54129:21;54138:2;54142:7;54129:8;:21::i;:::-;53768:390;;;:::o;74609:218::-;74697:44;72778:34;;;;;;;;;;;;;;;;;;;74728:12;:10;:12::i;:::-;74697:7;:44::i;:::-;74689:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74788:31;74801:7;74810:8;74788:12;:31::i;:::-;74609:218;;:::o;53262:203::-;53315:7;53436:21;:12;:19;:21::i;:::-;53429:28;;53262:203;:::o;55098:305::-;55259:41;55278:12;:10;:12::i;:::-;55292:7;55259:18;:41::i;:::-;55251:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55367:28;55377:4;55383:2;55387:7;55367:9;:28::i;:::-;55098:305;;;:::o;18848:114::-;18905:7;18932:6;:12;18939:4;18932:12;;;;;;;;;;;:22;;;18925:29;;18848:114;;;:::o;74082:104::-;74134:7;74161:17;74171:6;73015:5;74161:9;;:17;;;;:::i;:::-;74154:24;;74082:104;;;:::o;19224:227::-;19308:45;19316:6;:12;19323:4;19316:12;;;;;;;;;;;:22;;;19340:12;:10;:12::i;:::-;19308:7;:45::i;:::-;19300:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19418:25;19429:4;19435:7;19418:10;:25::i;:::-;19224:227;;:::o;53032:154::-;53121:7;53148:30;53172:5;53148:13;:20;53162:5;53148:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53141:37;;53032:154;;;;:::o;20433:209::-;20531:12;:10;:12::i;:::-;20520:23;;:7;:23;;;20512:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20608:26;20620:4;20626:7;20608:11;:26::i;:::-;20433:209;;:::o;74986:144::-;68833:7;;;;;;;;;;;68825:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75042:34:::1;72857:24;;;;;;;::::0;::::1;;;;;;;;;;;75063:12;:10;:12::i;:::-;75042:7;:34::i;:::-;75034:67;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;75112:10;:8;:10::i;:::-;74986:144::o:0;55474:151::-;55578:39;55595:4;55601:2;55605:7;55578:39;;;;;;;;;;;;:16;:39::i;:::-;55474:151;;;:::o;74194:211::-;74251:41;74270:12;:10;:12::i;:::-;74284:7;74251:18;:41::i;:::-;74243:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74340:14;74346:7;74340:5;:14::i;:::-;74375:12;:10;:12::i;:::-;74370:27;;;74389:7;74370:27;;;;;;;;;;;;;;;;;;74194:211;:::o;73550:520::-;73644:25;73704:5;73690:11;;:19;73682:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73758:1;73750:4;:9;;73742:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73821:2;73813:4;:10;;73805:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73894:11;73900:4;73894:5;:11::i;:::-;73881:9;:24;;73873:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73963:4;73949:19;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;73949:19:0;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;156:4;148:6;144:17;134:27;;0:165;73949:19:0;;;;73938:30;;73984:9;73996:1;73984:13;;73979:84;74003:4;73999:1;:8;73979:84;;;74043:8;74048:2;74043:4;:8::i;:::-;74029;74038:1;74029:11;;;;;;;;;;;;;:22;;;;;74009:3;;;;;73979:84;;;;73550:520;;;;:::o;53542:164::-;53609:7;53630:15;53651:22;53667:5;53651:12;:15;;:22;;;;:::i;:::-;53629:44;;;53691:7;53684:14;;;53542:164;;;:::o;74413:188::-;74482:44;72778:34;;;;;;;;;;;;;;;;;;;74513:12;:10;:12::i;:::-;74482:7;:44::i;:::-;74474:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74573:20;74585:7;74573:11;:20::i;:::-;74413:188;:::o;73055:41::-;73091:5;73055:41;:::o;68239:78::-;68278:4;68302:7;;;;;;;;;;;68295:14;;68239:78;:::o;51301:169::-;51365:7;51392:70;51409:7;51392:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51385:77;;51301:169;;;:::o;52859:89::-;52899:13;52932:8;52925:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52859:89;:::o;51024:215::-;51088:7;51133:1;51116:19;;:5;:19;;;;51108:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51202:29;:13;:20;51216:5;51202:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51195:36;;51024:215;;;:::o;72049:148::-;71629:12;:10;:12::i;:::-;71619:22;;:6;;;;;;;;;;;:22;;;71611:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72156:1:::1;72119:40;;72140:6;;;;;;;;;;;72119:40;;;;;;;;;;;;72187:1;72170:6;;:19;;;;;;;;;;;;;;;;;;72049:148::o:0;72888:30::-;;;;:::o;72730:82::-;72778:34;;;;;;;;;;;;;;;;;;;72730:82;:::o;74835:143::-;68557:7;;;;;;;;;;;68556:8;68548:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74892:34:::1;72857:24;;;;;;;::::0;::::1;;;;;;;;;;;74913:12;:10;:12::i;:::-;74892:7;:34::i;:::-;74884:67;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;74962:8;:6;:8::i;:::-;74835:143::o:0;72983:37::-;73015:5;72983:37;:::o;71407:79::-;71445:7;71472:6;;;;;;;;;;;71465:13;;71407:79;:::o;18521:138::-;18594:7;18621:30;18645:5;18621:6;:12;18628:4;18621:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;18614:37;;18521:138;;;;:::o;75483:196::-;71629:12;:10;:12::i;:::-;71619:22;;:6;;;;;;;;;;;:22;;;71611:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75545:15:::1;75563:21;75545:39;;75613:1;75603:7;:11;75595:20;;12:1:-1;9::::0;2:12:::1;75595:20:0;75626:45;75637:10;75649:21;75626:10;:45::i;:::-;71689:1;75483:196::o:0;75297:174::-;71629:12;:10;:12::i;:::-;71619:22;;:6;;;;;;;;;;;:22;;;71611:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75404:12:::1;75396:34;;;75439:4;75446:7;:5;:7::i;:::-;75455;75396:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;75396:67:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;75396:67:0;;;;75297:174:::0;;:::o;17482:139::-;17551:4;17575:38;17605:7;17575:6;:12;17582:4;17575:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;17568:45;;17482:139;;;;:::o;51698:96::-;51746:13;51779:7;51772:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51698:96;:::o;16227:49::-;16272:4;16227:49;;;:::o;54509:295::-;54624:12;:10;:12::i;:::-;54612:24;;:8;:24;;;;54604:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54724:8;54679:18;:32;54698:12;:10;:12::i;:::-;54679:32;;;;;;;;;;;;;;;:42;54712:8;54679:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54777:8;54748:48;;54763:12;:10;:12::i;:::-;54748:48;;;54787:8;54748:48;;;;;;;;;;;;;;;;;;;;;;54509:295;;:::o;72819:62::-;72857:24;;;;;;;;;;;;;;;;;;;72819:62;:::o;55696:285::-;55828:41;55847:12;:10;:12::i;:::-;55861:7;55828:18;:41::i;:::-;55820:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55934:39;55948:4;55954:2;55958:7;55967:5;55934:13;:39::i;:::-;55696:285;;;;:::o;51865:755::-;51930:13;51964:16;51972:7;51964;:16::i;:::-;51956:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52045:23;52071:10;:19;52082:7;52071:19;;;;;;;;;;;52045:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52192:1;52172:8;52166:22;;;;;;;;;;;;;;;;:27;52162:76;;;52217:9;52210:16;;;;;52162:76;52368:1;52348:9;52342:23;:27;52338:112;;;52417:8;52427:9;52400:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;52400:37:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;52400:37:0;;;52386:52;;;;;52338:112;52582:8;52592:18;:7;:16;:18::i;:::-;52565:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;52565:46:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;52565:46:0;;;52551:61;;;51865:755;;;;:::o;17795:127::-;17858:7;17885:29;:6;:12;17892:4;17885:12;;;;;;;;;;;:20;;:27;:29::i;:::-;17878:36;;17795:127;;;:::o;19696:230::-;19781:45;19789:6;:12;19796:4;19789:12;;;;;;;;;;;:22;;;19813:12;:10;:12::i;:::-;19781:7;:45::i;:::-;19773:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19892:26;19904:4;19910:7;19892:11;:26::i;:::-;19696:230;;:::o;75138:151::-;71629:12;:10;:12::i;:::-;71619:22;;:6;;;;;;;;;;;:22;;;71611:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75242:12:::1;75235:29;;;75265:7;:5;:7::i;:::-;75274:6;75235:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;75235:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;75235:46:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;75235:46:0;;;;;;;;;;;;;;;;;75138:151:::0;;:::o;54875:156::-;54964:4;54988:18;:25;55007:5;54988:25;;;;;;;;;;;;;;;:35;55014:8;54988:35;;;;;;;;;;;;;;;;;;;;;;;;;54981:42;;54875:156;;;;:::o;72352:244::-;71629:12;:10;:12::i;:::-;71619:22;;:6;;;;;;;;;;;:22;;;71611:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72461:1:::1;72441:22;;:8;:22;;;;72433:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72551:8;72522:38;;72543:6;;;;;;;;;;;72522:38;;;;;;;;;;;;72580:8;72571:6;;:17;;;;;;;;;;;;;;;;;;72352:244:::0;:::o;57448:119::-;57505:4;57529:30;57551:7;57529:12;:21;;:30;;;;:::i;:::-;57522:37;;57448:119;;;:::o;14137:106::-;14190:15;14225:10;14218:17;;14137:106;:::o;63431:158::-;63524:2;63497:15;:24;63513:7;63497:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63573:7;63569:2;63542:39;;63551:16;63559:7;63551;:16::i;:::-;63542:39;;;;;;;;;;;;63431:158;;:::o;61709:215::-;61809:16;61817:7;61809;:16::i;:::-;61801:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61907:9;61885:10;:19;61896:7;61885:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;61709:215;;:::o;44874:123::-;44943:7;44970:19;44978:3;:10;;44970:7;:19::i;:::-;44963:26;;44874:123;;;:::o;57734:333::-;57819:4;57844:16;57852:7;57844;:16::i;:::-;57836:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57920:13;57936:16;57944:7;57936;:16::i;:::-;57920:32;;57982:5;57971:16;;:7;:16;;;:51;;;;58015:7;57991:31;;:20;58003:7;57991:11;:20::i;:::-;:31;;;57971:51;:87;;;;58026:32;58043:5;58050:7;58026:16;:32::i;:::-;57971:87;57963:96;;;57734:333;;;;:::o;60979:574::-;61097:4;61077:24;;:16;61085:7;61077;:16::i;:::-;:24;;;61069:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61180:1;61166:16;;:2;:16;;;;61158:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61236:39;61257:4;61263:2;61267:7;61236:20;:39::i;:::-;61340:29;61357:1;61361:7;61340:8;:29::i;:::-;61382:35;61409:7;61382:13;:19;61396:4;61382:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61428:30;61450:7;61428:13;:17;61442:2;61428:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61471:29;61488:7;61497:2;61471:12;:16;;:29;;;;;:::i;:::-;;61537:7;61533:2;61518:27;;61527:4;61518:27;;;;;;;;;;;;60979:574;;;:::o;34484:471::-;34542:7;34792:1;34787;:6;34783:47;;;34817:1;34810:8;;;;34783:47;34842:9;34858:1;34854;:5;34842:17;;34887:1;34882;34878;:5;;;;;;:10;34870:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34946:1;34939:8;;;34484:471;;;;;:::o;21676:188::-;21750:33;21775:7;21750:6;:12;21757:4;21750:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;21746:111;;;21832:12;:10;:12::i;:::-;21805:40;;21823:7;21805:40;;21817:4;21805:40;;;;;;;;;;21746:111;21676:188;;:::o;7258:137::-;7329:7;7364:22;7368:3;:10;;7380:5;7364:3;:22::i;:::-;7356:31;;7349:38;;7258:137;;;;:::o;21872:192::-;21947:36;21975:7;21947:6;:12;21954:4;21947:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;21943:114;;;22032:12;:10;:12::i;:::-;22005:40;;22023:7;22005:40;;22017:4;22005:40;;;;;;;;;;21943:114;21872:192;;:::o;69288:120::-;68833:7;;;;;;;;;;;68825:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69357:5:::1;69347:7;;:15;;;;;;;;;;;;;;;;;;69378:22;69387:12;:10;:12::i;:::-;69378:22;;;;;;;;;;;;;;;;;;;;;;69288:120::o:0;60016:520::-;60076:13;60092:16;60100:7;60092;:16::i;:::-;60076:32;;60121:48;60142:5;60157:1;60161:7;60121:20;:48::i;:::-;60210:29;60227:1;60231:7;60210:8;:29::i;:::-;60329:1;60298:10;:19;60309:7;60298:19;;;;;;;;;;;60292:33;;;;;;;;;;;;;;;;:38;60288:97;;60354:10;:19;60365:7;60354:19;;;;;;;;;;;;60347:26;;;;:::i;:::-;60288:97;60397:36;60425:7;60397:13;:20;60411:5;60397:20;;;;;;;;;;;;;;;:27;;:36;;;;:::i;:::-;;60446:28;60466:7;60446:12;:19;;:28;;;;:::i;:::-;;60520:7;60516:1;60492:36;;60501:5;60492:36;;;;;;;;;;;;60016:520;;:::o;73344:198::-;73387:15;73425:11;;73415:21;;73447:18;73453:2;73457:7;73447:5;:18::i;:::-;73476:11;;:13;;;;;;;;;;;;;73344:198;;;:::o;45336:227::-;45416:7;45425;45446:11;45459:13;45476:22;45480:3;:10;;45492:5;45476:3;:22::i;:::-;45445:53;;;;45525:3;45517:12;;45547:5;45539:14;;45509:46;;;;;;;;;45336:227;;;;;:::o;62154:100::-;62238:8;62227;:19;;;;;;;;;;;;:::i;:::-;;62154:100;:::o;45998:204::-;46105:7;46148:44;46153:3;:10;;46173:3;46165:12;;46179;46148:4;:44::i;:::-;46140:53;;46125:69;;45998:204;;;;;:::o;6800:114::-;6860:7;6887:19;6895:3;:10;;6887:7;:19::i;:::-;6880:26;;6800:114;;;:::o;69029:118::-;68557:7;;;;;;;;;;;68556:8;68548:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69099:4:::1;69089:7;;:14;;;;;;;;;;;;;;;;;;69119:20;69126:12;:10;:12::i;:::-;69119:20;;;;;;;;;;;;;;;;;;;;;;69029:118::o:0;5639:149::-;5713:7;5756:22;5760:3;:10;;5772:5;5756:3;:22::i;:::-;5748:31;;5733:47;;5639:149;;;;:::o;75687:181::-;75762:12;75779:8;:13;;75801:7;75779:34;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;75761:52:0;;;75832:7;75824:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75687:181;;;:::o;4934:158::-;5014:4;5038:46;5048:3;:10;;5076:5;5068:14;;5060:23;;5038:9;:46::i;:::-;5031:53;;4934:158;;;;:::o;56863:272::-;56977:28;56987:4;56993:2;56997:7;56977:9;:28::i;:::-;57024:48;57047:4;57053:2;57057:7;57066:5;57024:22;:48::i;:::-;57016:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56863:272;;;;:::o;46476:744::-;46532:13;46762:1;46753:5;:10;46749:53;;;46780:10;;;;;;;;;;;;;;;;;;;;;46749:53;46812:12;46827:5;46812:20;;46843:14;46868:78;46883:1;46875:4;:9;46868:78;;46901:8;;;;;;;46932:2;46924:10;;;;;;;;;46868:78;;;46956:19;46988:6;46978:17;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;46978:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;124:4;108:14;100:6;87:42;155:4;147:6;143:17;133:27;;0:164;46978:17:0;;;;46956:39;;47006:13;47031:1;47022:6;:10;47006:26;;47050:5;47043:12;;47066:115;47081:1;47073:4;:9;47066:115;;47140:2;47133:4;:9;;;;;;47128:2;:14;47117:27;;47099:6;47106:7;;;;;;;47099:15;;;;;;;;;;;:45;;;;;;;;;;;47167:2;47159:10;;;;;;;;;47066:115;;;47205:6;47191:21;;;;;;46476:744;;;;:::o;5178:117::-;5241:7;5268:19;5276:3;:10;;5268:7;:19::i;:::-;5261:26;;5178:117;;;:::o;44635:151::-;44719:4;44743:35;44753:3;:10;;44773:3;44765:12;;44743:9;:35::i;:::-;44736:42;;44635:151;;;;:::o;42257:110::-;42313:7;42340:3;:12;;:19;;;;42333:26;;42257:110;;;:::o;70034:241::-;70144:45;70171:4;70177:2;70181:7;70144:26;:45::i;:::-;70211:8;:6;:8::i;:::-;70210:9;70202:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70034:241;;;:::o;6345:137::-;6415:4;6439:35;6447:3;:10;;6467:5;6459:14;;6439:7;:35::i;:::-;6432:42;;6345:137;;;;:::o;6038:131::-;6105:4;6129:32;6134:3;:10;;6154:5;6146:14;;6129:4;:32::i;:::-;6122:39;;6038:131;;;;:::o;44067:176::-;44156:4;44180:55;44185:3;:10;;44205:3;44197:12;;44227:5;44219:14;;44211:23;;44180:4;:55::i;:::-;44173:62;;44067:176;;;;;:::o;4380:143::-;4450:4;4474:41;4479:3;:10;;4507:5;4499:14;;4491:23;;4474:4;:41::i;:::-;4467:48;;4380:143;;;;:::o;3922:204::-;3989:7;4038:5;4017:3;:11;;:18;;;;:26;4009:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4100:3;:11;;4112:5;4100:18;;;;;;;;;;;;;;;;4093:25;;3922:204;;;;:::o;4699:149::-;4772:4;4796:44;4804:3;:10;;4832:5;4824:14;;4816:23;;4796:7;:44::i;:::-;4789:51;;4699:149;;;;:::o;44409:142::-;44486:4;44510:33;44518:3;:10;;44538:3;44530:12;;44510:7;:33::i;:::-;44503:40;;44409:142;;;;:::o;59333:454::-;59427:1;59413:16;;:2;:16;;;;59405:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59486:16;59494:7;59486;:16::i;:::-;59485:17;59477:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59567:10;59556:8;;:21;;;;;;;;;;;;;;;;;;59598:45;59627:1;59631:2;59635:7;59598:20;:45::i;:::-;59656:30;59678:7;59656:13;:17;59670:2;59656:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59699:29;59716:7;59725:2;59699:12;:16;;:29;;;;;:::i;:::-;;59771:7;59767:2;59746:33;;59763:1;59746:33;;;;;;;;;;;;59333:454;;:::o;42722:279::-;42789:7;42798;42848:5;42826:3;:12;;:19;;;;:27;42818:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42905:22;42930:3;:12;;42943:5;42930:19;;;;;;;;;;;;;;;;;;42905:44;;42968:5;:10;;;42980:5;:12;;;42960:33;;;;;42722:279;;;;;:::o;43424:319::-;43518:7;43538:16;43557:3;:12;;:17;43570:3;43557:17;;;;;;;;;;;;43538:36;;43605:1;43593:8;:13;;43608:12;43585:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;43585:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43675:3;:12;;43699:1;43688:8;:12;43675:26;;;;;;;;;;;;;;;;;;:33;;;43668:40;;;43424:319;;;;;:::o;3469:109::-;3525:7;3552:3;:11;;:18;;;;3545:25;;3469:109;;;:::o;3254:129::-;3327:4;3374:1;3351:3;:12;;:19;3364:5;3351:19;;;;;;;;;;;;:24;;3344:31;;3254:129;;;;:::o;62819:604::-;62940:4;62967:15;:2;:13;;;:15::i;:::-;62962:60;;63006:4;62999:11;;;;62962:60;63032:23;63058:252;63111:45;;;63171:12;:10;:12::i;:::-;63198:4;63217:7;63239:5;63074:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;63074:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;63074:181:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;63074:181:0;63058:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63032:278;;63321:13;63348:10;63337:32;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;63337:32:0;;;;;;;;;;;;;;;;63321:48;;48025:10;63398:16;;63388:26;;;:6;:26;;;;63380:35;;;;62819:604;;;;;;;:::o;42037:125::-;42108:4;42153:1;42132:3;:12;;:17;42145:3;42132:17;;;;;;;;;;;;:22;;42125:29;;42037:125;;;;:::o;64202:93::-;;;;:::o;1624:1544::-;1690:4;1808:18;1829:3;:12;;:19;1842:5;1829:19;;;;;;;;;;;;1808:40;;1879:1;1865:10;:15;1861:1300;;2227:21;2264:1;2251:10;:14;2227:38;;2280:17;2321:1;2300:3;:11;;:18;;;;:22;2280:42;;2567:17;2587:3;:11;;2599:9;2587:22;;;;;;;;;;;;;;;;2567:42;;2733:9;2704:3;:11;;2716:13;2704:26;;;;;;;;;;;;;;;:38;;;;2852:1;2836:13;:17;2810:3;:12;;:23;2823:9;2810:23;;;;;;;;;;;:43;;;;2962:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;3057:3;:12;;:19;3070:5;3057:19;;;;;;;;;;;3050:26;;;3100:4;3093:11;;;;;;;;1861:1300;3144:5;3137:12;;;1624:1544;;;;;:::o;1034:414::-;1097:4;1119:21;1129:3;1134:5;1119:9;:21::i;:::-;1114:327;;1157:3;:11;;1174:5;1157:23;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;1157:23:0;;;;;;;;;;;;;;;;;;;1340:3;:11;;:18;;;;1318:3;:12;;:19;1331:5;1318:19;;;;;;;;;;;:40;;;;1380:4;1373:11;;;;1114:327;1424:5;1417:12;;1034:414;;;;;:::o;39537:692::-;39613:4;39729:16;39748:3;:12;;:17;39761:3;39748:17;;;;;;;;;;;;39729:36;;39794:1;39782:8;:13;39778:444;;;39849:3;:12;;39867:38;;;;;;;;39884:3;39867:38;;;;39897:5;39867:38;;;39849:57;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;39849:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40064:3;:12;;:19;;;;40044:3;:12;;:17;40057:3;40044:17;;;;;;;;;;;:39;;;;40105:4;40098:11;;;;;39778:444;40178:5;40142:3;:12;;40166:1;40155:8;:12;40142:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;40205:5;40198:12;;;39537:692;;;;;;:::o;40404:1549::-;40468:4;40584:16;40603:3;:12;;:17;40616:3;40603:17;;;;;;;;;;;;40584:36;;40649:1;40637:8;:13;40633:1313;;40998:21;41033:1;41022:8;:12;40998:36;;41049:17;41091:1;41069:3;:12;;:19;;;;:23;41049:43;;41337:26;41366:3;:12;;41379:9;41366:23;;;;;;;;;;;;;;;;;;41337:52;;41514:9;41484:3;:12;;41497:13;41484:27;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;41638:1;41622:13;:17;41591:3;:12;;:28;41604:9;:14;;;41591:28;;;;;;;;;;;:48;;;;41748:3;:12;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41844:3;:12;;:17;41857:3;41844:17;;;;;;;;;;;41837:24;;;41885:4;41878:11;;;;;;;;40633:1313;41929:5;41922:12;;;40404:1549;;;;;:::o;8199:422::-;8259:4;8467:12;8578:7;8566:20;8558:28;;8612:1;8605:4;:8;8598:15;;;8199:422;;;:::o;11117:196::-;11220:12;11252:53;11275:6;11283:4;11289:1;11292:12;11252:22;:53::i;:::-;11245:60;;11117:196;;;;;:::o;12494:979::-;12624:12;12657:18;12668:6;12657:10;:18::i;:::-;12649:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12783:12;12797:23;12824:6;:11;;12844:8;12855:4;12824:36;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;12824:36:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;12782:78:0;;;;12875:7;12871:595;;;12906:10;12899:17;;;;;;12871:595;13040:1;13020:10;:17;:21;13016:439;;;13283:10;13277:17;13344:15;13331:10;13327:2;13323:19;13316:44;13231:148;13426:12;13419:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13419:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12494:979;;;;;;;:::o;72660:3217::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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