ETH Price: $1,586.18 (+8.57%)
 

Overview

TokenID

0

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
ERC1155PresetMinterPauser

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 *  Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable.
 *  See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 *  In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

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

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

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

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

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

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

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

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

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)

pragma solidity ^0.8.0;


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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.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.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

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

    bool private _paused;

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

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        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/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;




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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Pausable.sol)

pragma solidity ^0.8.0;



/**
 * @dev ERC1155 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.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Pausable is ERC1155, Pausable {
    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

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

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

// File: contracts/TOKEN_B.sol

pragma solidity ^0.8.0;








contract ERC1155PresetMinterPauser is Context, AccessControlEnumerable, ERC1155Burnable, ERC1155Pausable {

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

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





    constructor(string memory uri, address token_a_contract) ERC1155(uri) {

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());



        _setupRole(MINTER_ROLE, _msgSender());



        _setupRole(MINTER_ROLE, token_a_contract);



        _setupRole(PAUSER_ROLE, _msgSender());

    }



    function mint(

        address to,

        uint256 id,

        uint256 amount,

        bytes memory data

    ) public virtual {

        require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint");



        _mint(to, id, amount, data);

    }



    function add_minter(

        address minter

    ) public {

        require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint");



         _setupRole(MINTER_ROLE, minter);

    }

         



   

   

    function setURI(string memory newuri) public  {

         require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint");

        _setURI(newuri);

    }





    function supportsInterface(bytes4 interfaceId)

        public

        view

        virtual

        override(AccessControlEnumerable, ERC1155)

        returns (bool)

    {

        return super.supportsInterface(interfaceId);

    }



    function _beforeTokenTransfer(

        address operator,

        address from,

        address to,

        uint256[] memory ids,

        uint256[] memory amounts,

        bytes memory data

    ) internal virtual override(ERC1155, ERC1155Pausable) {

        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

    }

}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"address","name":"token_a_contract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","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":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"add_minter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"newuri","type":"string"}],"name":"setURI","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162004eb138038062004eb183398181016040528101906200003791906200053c565b8162000049816200014560201b60201c565b506000600560006101000a81548160ff021916908315150217905550620000896000801b6200007d6200016160201b60201c565b6200016960201b60201c565b620000ca7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620000be6200016160201b60201c565b6200016960201b60201c565b620000fc7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6826200016960201b60201c565b6200013d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001316200016160201b60201c565b6200016960201b60201c565b505062000774565b80600490805190602001906200015d929190620003f7565b5050565b600033905090565b6200017b82826200017f60201b60201c565b5050565b620001968282620001c760201b62000e091760201c565b620001c28160016000858152602001908152602001600020620002b860201b62000ee91790919060201c565b505050565b620001d98282620002f060201b60201c565b620002b457600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002596200016160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620002e8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200035a60201b60201c565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006200036e8383620003d460201b60201c565b620003c9578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620003ce565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b82805462000405906200066b565b90600052602060002090601f01602090048101928262000429576000855562000475565b82601f106200044457805160ff191683800117855562000475565b8280016001018555821562000475579182015b828111156200047457825182559160200191906001019062000457565b5b50905062000484919062000488565b5090565b5b80821115620004a357600081600090555060010162000489565b5090565b6000620004be620004b884620005cb565b620005a2565b905082815260208101848484011115620004dd57620004dc6200073a565b5b620004ea84828562000635565b509392505050565b60008151905062000503816200075a565b92915050565b600082601f83011262000521576200052062000735565b5b815162000533848260208601620004a7565b91505092915050565b6000806040838503121562000556576200055562000744565b5b600083015167ffffffffffffffff8111156200057757620005766200073f565b5b620005858582860162000509565b92505060206200059885828601620004f2565b9150509250929050565b6000620005ae620005c1565b9050620005bc8282620006a1565b919050565b6000604051905090565b600067ffffffffffffffff821115620005e957620005e862000706565b5b620005f48262000749565b9050602081019050919050565b60006200060e8262000615565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200065557808201518184015260208101905062000638565b8381111562000665576000848401525b50505050565b600060028204905060018216806200068457607f821691505b602082108114156200069b576200069a620006d7565b5b50919050565b620006ac8262000749565b810181811067ffffffffffffffff82111715620006ce57620006cd62000706565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620007658162000601565b81146200077157600080fd5b50565b61472d80620007846000396000f3fe608060405234801561001057600080fd5b50600436106101575760003560e01c8063731133e9116100c3578063d53913931161007c578063d5391393146103f8578063d547741f14610416578063e63ab1e914610432578063e985e9c514610450578063f242432a14610480578063f5298aca1461049c57610157565b8063731133e9146103125780639010d07c1461032e57806391d148541461035e578063a217fddf1461038e578063a22cb465146103ac578063ca15c873146103c857610157565b80632f2ff15d116101155780632f2ff15d146102545780633052a8db1461027057806336568abe1461028c5780634e1273f4146102a85780635c975abb146102d85780636b20c454146102f657610157565b8062fdd58e1461015c57806301ffc9a71461018c57806302fe5305146101bc5780630e89341c146101d8578063248a9ca3146102085780632eb2c2d614610238575b600080fd5b610176600480360381019061017191906130c8565b6104b8565b6040516101839190613b75565b60405180910390f35b6101a660048036038101906101a19190613303565b610582565b6040516101b3919061391d565b60405180910390f35b6101d660048036038101906101d1919061335d565b610594565b005b6101f260048036038101906101ed91906133a6565b610610565b6040516101ff9190613953565b60405180910390f35b610222600480360381019061021d9190613256565b6106a4565b60405161022f9190613938565b60405180910390f35b610252600480360381019061024d9190612e97565b6106c3565b005b61026e60048036038101906102699190613283565b610764565b005b61028a60048036038101906102859190612e2a565b610785565b005b6102a660048036038101906102a19190613283565b610822565b005b6102c260048036038101906102bd91906131de565b6108a5565b6040516102cf91906138c4565b60405180910390f35b6102e06109be565b6040516102ed919061391d565b60405180910390f35b610310600480360381019061030b9190612ffd565b6109d5565b005b61032c6004803603810190610327919061315b565b610a72565b005b610348600480360381019061034391906132c3565b610af4565b60405161035591906137e7565b60405180910390f35b61037860048036038101906103739190613283565b610b23565b604051610385919061391d565b60405180910390f35b610396610b8d565b6040516103a39190613938565b60405180910390f35b6103c660048036038101906103c19190613088565b610b94565b005b6103e260048036038101906103dd9190613256565b610baa565b6040516103ef9190613b75565b60405180910390f35b610400610bce565b60405161040d9190613938565b60405180910390f35b610430600480360381019061042b9190613283565b610bf2565b005b61043a610c13565b6040516104479190613938565b60405180910390f35b61046a60048036038101906104659190612e57565b610c37565b604051610477919061391d565b60405180910390f35b61049a60048036038101906104959190612f66565b610ccb565b005b6104b660048036038101906104b19190613108565b610d6c565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052090613a35565b60405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061058d82610f19565b9050919050565b6105c57f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66105c0610ffb565b610b23565b610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb90613a95565b60405180910390fd5b61060d81611003565b50565b60606004805461061f90613ee2565b80601f016020809104026020016040519081016040528092919081815260200182805461064b90613ee2565b80156106985780601f1061066d57610100808354040283529160200191610698565b820191906000526020600020905b81548152906001019060200180831161067b57829003601f168201915b50505050509050919050565b6000806000838152602001908152602001600020600101549050919050565b6106cb610ffb565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061071157506107108561070b610ffb565b610c37565b5b610750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790613995565b60405180910390fd5b61075d858585858561101d565b5050505050565b61076d826106a4565b61077681611342565b6107808383611356565b505050565b6107b67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107b1610ffb565b610b23565b6107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90613a95565b60405180910390fd5b61081f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a68261138a565b50565b61082a610ffb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e90613b55565b60405180910390fd5b6108a18282611398565b5050565b606081518351146108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613af5565b60405180910390fd5b6000835167ffffffffffffffff8111156109085761090761404a565b5b6040519080825280602002602001820160405280156109365781602001602082028036833780820191505090505b50905060005b84518110156109b35761098385828151811061095b5761095a61401b565b5b60200260200101518583815181106109765761097561401b565b5b60200260200101516104b8565b8282815181106109965761099561401b565b5b602002602001018181525050806109ac90613f45565b905061093c565b508091505092915050565b6000600560009054906101000a900460ff16905090565b6109dd610ffb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610a235750610a2283610a1d610ffb565b610c37565b5b610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990613995565b60405180910390fd5b610a6d8383836113cc565b505050565b610aa37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a9e610ffb565b610b23565b610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990613a95565b60405180910390fd5b610aee8484848461169d565b50505050565b6000610b1b826001600086815260200190815260200160002061184f90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b610ba6610b9f610ffb565b8383611869565b5050565b6000610bc7600160008481526020019081526020016000206119d6565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610bfb826106a4565b610c0481611342565b610c0e8383611398565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610cd3610ffb565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610d195750610d1885610d13610ffb565b610c37565b5b610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90613995565b60405180910390fd5b610d6585858585856119eb565b5050505050565b610d74610ffb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610dba5750610db983610db4610ffb565b610c37565b5b610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df090613995565b60405180910390fd5b610e04838383611c8a565b505050565b610e138282610b23565b610ee557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e8a610ffb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000610f11836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611ed3565b905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610fe457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ff45750610ff382611f43565b5b9050919050565b600033905090565b8060049080519060200190611019929190612aed565b5050565b8151835114611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890613b15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890613a55565b60405180910390fd5b60006110db610ffb565b90506110eb818787878787611fbd565b60005b845181101561129f57600085828151811061110c5761110b61401b565b5b60200260200101519050600085838151811061112b5761112a61401b565b5b6020026020010151905060006002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490613ab5565b60405180910390fd5b8181036002600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112849190613d14565b925050819055505050508061129890613f45565b90506110ee565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516113169291906138e6565b60405180910390a461132c818787878787611fd3565b61133a818787878787611fdb565b505050505050565b6113538161134e610ffb565b6121c2565b50565b6113608282610e09565b6113858160016000858152602001908152602001600020610ee990919063ffffffff16565b505050565b6113948282611356565b5050565b6113a2828261225f565b6113c7816001600085815260200190815260200160002061234090919063ffffffff16565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613a75565b60405180910390fd5b8051825114611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790613b15565b60405180910390fd5b600061148a610ffb565b90506114aa81856000868660405180602001604052806000815250611fbd565b60005b83518110156115f95760008482815181106114cb576114ca61401b565b5b6020026020010151905060008483815181106114ea576114e961401b565b5b6020026020010151905060006002600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561158c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611583906139f5565b60405180910390fd5b8181036002600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806115f190613f45565b9150506114ad565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516116719291906138e6565b60405180910390a461169781856000868660405180602001604052806000815250611fd3565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561170d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170490613b35565b60405180910390fd5b6000611717610ffb565b9050600061172485612370565b9050600061173185612370565b905061174283600089858589611fbd565b846002600088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a29190613d14565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611820929190613b90565b60405180910390a461183783600089858589611fd3565b611846836000898989896123ea565b50505050505050565b600061185e83600001836125d1565b60001c905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90613ad5565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119c9919061391d565b60405180910390a3505050565b60006119e4826000016125fc565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5290613a55565b60405180910390fd5b6000611a65610ffb565b90506000611a7285612370565b90506000611a7f85612370565b9050611a8f838989858589611fbd565b60006002600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e90613ab5565b60405180910390fd5b8581036002600089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550856002600089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bde9190613d14565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611c5b929190613b90565b60405180910390a4611c71848a8a86868a611fd3565b611c7f848a8a8a8a8a6123ea565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf190613a75565b60405180910390fd5b6000611d04610ffb565b90506000611d1184612370565b90506000611d1e84612370565b9050611d3e83876000858560405180602001604052806000815250611fbd565b60006002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd906139f5565b60405180910390fd5b8481036002600088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611ea4929190613b90565b60405180910390a4611eca84886000868660405180602001604052806000815250611fd3565b50505050505050565b6000611edf838361260d565b611f38578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611f3d565b600090505b92915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fb65750611fb582612630565b5b9050919050565b611fcb8686868686866126aa565b505050505050565b505050505050565b611ffa8473ffffffffffffffffffffffffffffffffffffffff16612708565b156121ba578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612040959493929190613802565b602060405180830381600087803b15801561205a57600080fd5b505af192505050801561208b57506040513d601f19601f820116820180604052508101906120889190613330565b60015b61213157612097614079565b806308c379a014156120f457506120ac6145ee565b806120b757506120f6565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120eb9190613953565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212890613975565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146121b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121af906139d5565b60405180910390fd5b505b505050505050565b6121cc8282610b23565b61225b576121f18173ffffffffffffffffffffffffffffffffffffffff16601461272b565b6121ff8360001c602061272b565b6040516020016122109291906137ad565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122529190613953565b60405180910390fd5b5050565b6122698282610b23565b1561233c57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122e1610ffb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612368836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612967565b905092915050565b60606000600167ffffffffffffffff81111561238f5761238e61404a565b5b6040519080825280602002602001820160405280156123bd5781602001602082028036833780820191505090505b50905082816000815181106123d5576123d461401b565b5b60200260200101818152505080915050919050565b6124098473ffffffffffffffffffffffffffffffffffffffff16612708565b156125c9578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161244f95949392919061386a565b602060405180830381600087803b15801561246957600080fd5b505af192505050801561249a57506040513d601f19601f820116820180604052508101906124979190613330565b60015b612540576124a6614079565b806308c379a0141561250357506124bb6145ee565b806124c65750612505565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fa9190613953565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253790613975565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146125c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125be906139d5565b60405180910390fd5b505b505050505050565b60008260000182815481106125e9576125e861401b565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126a357506126a282612a7b565b5b9050919050565b6126b8868686868686612ae5565b6126c06109be565b15612700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f790613a15565b60405180910390fd5b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000600283600261273e9190613d6a565b6127489190613d14565b67ffffffffffffffff8111156127615761276061404a565b5b6040519080825280601f01601f1916602001820160405280156127935781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106127cb576127ca61401b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061282f5761282e61401b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261286f9190613d6a565b6128799190613d14565b90505b6001811115612919577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106128bb576128ba61401b565b5b1a60f81b8282815181106128d2576128d161401b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061291290613eb8565b905061287c565b506000841461295d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612954906139b5565b60405180910390fd5b8091505092915050565b60008083600101600084815260200190815260200160002054905060008114612a6f5760006001826129999190613dc4565b90506000600186600001805490506129b19190613dc4565b9050818114612a205760008660000182815481106129d2576129d161401b565b5b90600052602060002001549050808760000184815481106129f6576129f561401b565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612a3457612a33613fec565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612a75565b60009150505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b828054612af990613ee2565b90600052602060002090601f016020900481019282612b1b5760008555612b62565b82601f10612b3457805160ff1916838001178555612b62565b82800160010185558215612b62579182015b82811115612b61578251825591602001919060010190612b46565b5b509050612b6f9190612b73565b5090565b5b80821115612b8c576000816000905550600101612b74565b5090565b6000612ba3612b9e84613bde565b613bb9565b90508083825260208201905082856020860282011115612bc657612bc56140a0565b5b60005b85811015612bf65781612bdc8882612cf4565b845260208401935060208301925050600181019050612bc9565b5050509392505050565b6000612c13612c0e84613c0a565b613bb9565b90508083825260208201905082856020860282011115612c3657612c356140a0565b5b60005b85811015612c665781612c4c8882612e15565b845260208401935060208301925050600181019050612c39565b5050509392505050565b6000612c83612c7e84613c36565b613bb9565b905082815260208101848484011115612c9f57612c9e6140a5565b5b612caa848285613e76565b509392505050565b6000612cc5612cc084613c67565b613bb9565b905082815260208101848484011115612ce157612ce06140a5565b5b612cec848285613e76565b509392505050565b600081359050612d0381614684565b92915050565b600082601f830112612d1e57612d1d61409b565b5b8135612d2e848260208601612b90565b91505092915050565b600082601f830112612d4c57612d4b61409b565b5b8135612d5c848260208601612c00565b91505092915050565b600081359050612d748161469b565b92915050565b600081359050612d89816146b2565b92915050565b600081359050612d9e816146c9565b92915050565b600081519050612db3816146c9565b92915050565b600082601f830112612dce57612dcd61409b565b5b8135612dde848260208601612c70565b91505092915050565b600082601f830112612dfc57612dfb61409b565b5b8135612e0c848260208601612cb2565b91505092915050565b600081359050612e24816146e0565b92915050565b600060208284031215612e4057612e3f6140af565b5b6000612e4e84828501612cf4565b91505092915050565b60008060408385031215612e6e57612e6d6140af565b5b6000612e7c85828601612cf4565b9250506020612e8d85828601612cf4565b9150509250929050565b600080600080600060a08688031215612eb357612eb26140af565b5b6000612ec188828901612cf4565b9550506020612ed288828901612cf4565b945050604086013567ffffffffffffffff811115612ef357612ef26140aa565b5b612eff88828901612d37565b935050606086013567ffffffffffffffff811115612f2057612f1f6140aa565b5b612f2c88828901612d37565b925050608086013567ffffffffffffffff811115612f4d57612f4c6140aa565b5b612f5988828901612db9565b9150509295509295909350565b600080600080600060a08688031215612f8257612f816140af565b5b6000612f9088828901612cf4565b9550506020612fa188828901612cf4565b9450506040612fb288828901612e15565b9350506060612fc388828901612e15565b925050608086013567ffffffffffffffff811115612fe457612fe36140aa565b5b612ff088828901612db9565b9150509295509295909350565b600080600060608486031215613016576130156140af565b5b600061302486828701612cf4565b935050602084013567ffffffffffffffff811115613045576130446140aa565b5b61305186828701612d37565b925050604084013567ffffffffffffffff811115613072576130716140aa565b5b61307e86828701612d37565b9150509250925092565b6000806040838503121561309f5761309e6140af565b5b60006130ad85828601612cf4565b92505060206130be85828601612d65565b9150509250929050565b600080604083850312156130df576130de6140af565b5b60006130ed85828601612cf4565b92505060206130fe85828601612e15565b9150509250929050565b600080600060608486031215613121576131206140af565b5b600061312f86828701612cf4565b935050602061314086828701612e15565b925050604061315186828701612e15565b9150509250925092565b60008060008060808587031215613175576131746140af565b5b600061318387828801612cf4565b945050602061319487828801612e15565b93505060406131a587828801612e15565b925050606085013567ffffffffffffffff8111156131c6576131c56140aa565b5b6131d287828801612db9565b91505092959194509250565b600080604083850312156131f5576131f46140af565b5b600083013567ffffffffffffffff811115613213576132126140aa565b5b61321f85828601612d09565b925050602083013567ffffffffffffffff8111156132405761323f6140aa565b5b61324c85828601612d37565b9150509250929050565b60006020828403121561326c5761326b6140af565b5b600061327a84828501612d7a565b91505092915050565b6000806040838503121561329a576132996140af565b5b60006132a885828601612d7a565b92505060206132b985828601612cf4565b9150509250929050565b600080604083850312156132da576132d96140af565b5b60006132e885828601612d7a565b92505060206132f985828601612e15565b9150509250929050565b600060208284031215613319576133186140af565b5b600061332784828501612d8f565b91505092915050565b600060208284031215613346576133456140af565b5b600061335484828501612da4565b91505092915050565b600060208284031215613373576133726140af565b5b600082013567ffffffffffffffff811115613391576133906140aa565b5b61339d84828501612de7565b91505092915050565b6000602082840312156133bc576133bb6140af565b5b60006133ca84828501612e15565b91505092915050565b60006133df838361378f565b60208301905092915050565b6133f481613df8565b82525050565b600061340582613ca8565b61340f8185613cd6565b935061341a83613c98565b8060005b8381101561344b57815161343288826133d3565b975061343d83613cc9565b92505060018101905061341e565b5085935050505092915050565b61346181613e0a565b82525050565b61347081613e16565b82525050565b600061348182613cb3565b61348b8185613ce7565b935061349b818560208601613e85565b6134a4816140b4565b840191505092915050565b60006134ba82613cbe565b6134c48185613cf8565b93506134d4818560208601613e85565b6134dd816140b4565b840191505092915050565b60006134f382613cbe565b6134fd8185613d09565b935061350d818560208601613e85565b80840191505092915050565b6000613526603483613cf8565b9150613531826140d2565b604082019050919050565b6000613549602f83613cf8565b915061355482614121565b604082019050919050565b600061356c602083613cf8565b915061357782614170565b602082019050919050565b600061358f602883613cf8565b915061359a82614199565b604082019050919050565b60006135b2602483613cf8565b91506135bd826141e8565b604082019050919050565b60006135d5602c83613cf8565b91506135e082614237565b604082019050919050565b60006135f8602a83613cf8565b915061360382614286565b604082019050919050565b600061361b602583613cf8565b9150613626826142d5565b604082019050919050565b600061363e602383613cf8565b915061364982614324565b604082019050919050565b6000613661603883613cf8565b915061366c82614373565b604082019050919050565b6000613684602a83613cf8565b915061368f826143c2565b604082019050919050565b60006136a7601783613d09565b91506136b282614411565b601782019050919050565b60006136ca602983613cf8565b91506136d58261443a565b604082019050919050565b60006136ed602983613cf8565b91506136f882614489565b604082019050919050565b6000613710602883613cf8565b915061371b826144d8565b604082019050919050565b6000613733602183613cf8565b915061373e82614527565b604082019050919050565b6000613756601183613d09565b915061376182614576565b601182019050919050565b6000613779602f83613cf8565b91506137848261459f565b604082019050919050565b61379881613e6c565b82525050565b6137a781613e6c565b82525050565b60006137b88261369a565b91506137c482856134e8565b91506137cf82613749565b91506137db82846134e8565b91508190509392505050565b60006020820190506137fc60008301846133eb565b92915050565b600060a08201905061381760008301886133eb565b61382460208301876133eb565b818103604083015261383681866133fa565b9050818103606083015261384a81856133fa565b9050818103608083015261385e8184613476565b90509695505050505050565b600060a08201905061387f60008301886133eb565b61388c60208301876133eb565b613899604083018661379e565b6138a6606083018561379e565b81810360808301526138b88184613476565b90509695505050505050565b600060208201905081810360008301526138de81846133fa565b905092915050565b6000604082019050818103600083015261390081856133fa565b9050818103602083015261391481846133fa565b90509392505050565b60006020820190506139326000830184613458565b92915050565b600060208201905061394d6000830184613467565b92915050565b6000602082019050818103600083015261396d81846134af565b905092915050565b6000602082019050818103600083015261398e81613519565b9050919050565b600060208201905081810360008301526139ae8161353c565b9050919050565b600060208201905081810360008301526139ce8161355f565b9050919050565b600060208201905081810360008301526139ee81613582565b9050919050565b60006020820190508181036000830152613a0e816135a5565b9050919050565b60006020820190508181036000830152613a2e816135c8565b9050919050565b60006020820190508181036000830152613a4e816135eb565b9050919050565b60006020820190508181036000830152613a6e8161360e565b9050919050565b60006020820190508181036000830152613a8e81613631565b9050919050565b60006020820190508181036000830152613aae81613654565b9050919050565b60006020820190508181036000830152613ace81613677565b9050919050565b60006020820190508181036000830152613aee816136bd565b9050919050565b60006020820190508181036000830152613b0e816136e0565b9050919050565b60006020820190508181036000830152613b2e81613703565b9050919050565b60006020820190508181036000830152613b4e81613726565b9050919050565b60006020820190508181036000830152613b6e8161376c565b9050919050565b6000602082019050613b8a600083018461379e565b92915050565b6000604082019050613ba5600083018561379e565b613bb2602083018461379e565b9392505050565b6000613bc3613bd4565b9050613bcf8282613f14565b919050565b6000604051905090565b600067ffffffffffffffff821115613bf957613bf861404a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c2557613c2461404a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c5157613c5061404a565b5b613c5a826140b4565b9050602081019050919050565b600067ffffffffffffffff821115613c8257613c8161404a565b5b613c8b826140b4565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d1f82613e6c565b9150613d2a83613e6c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d5f57613d5e613f8e565b5b828201905092915050565b6000613d7582613e6c565b9150613d8083613e6c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613db957613db8613f8e565b5b828202905092915050565b6000613dcf82613e6c565b9150613dda83613e6c565b925082821015613ded57613dec613f8e565b5b828203905092915050565b6000613e0382613e4c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ea3578082015181840152602081019050613e88565b83811115613eb2576000848401525b50505050565b6000613ec382613e6c565b91506000821415613ed757613ed6613f8e565b5b600182039050919050565b60006002820490506001821680613efa57607f821691505b60208210811415613f0e57613f0d613fbd565b5b50919050565b613f1d826140b4565b810181811067ffffffffffffffff82111715613f3c57613f3b61404a565b5b80604052505050565b6000613f5082613e6c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f8357613f82613f8e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156140985760046000803e6140956000516140c5565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d10156145fe57614681565b614606613bd4565b60043d036004823e80513d602482011167ffffffffffffffff8211171561462e575050614681565b808201805167ffffffffffffffff81111561464c5750505050614681565b80602083010160043d038501811115614669575050505050614681565b61467882602001850186613f14565b82955050505050505b90565b61468d81613df8565b811461469857600080fd5b50565b6146a481613e0a565b81146146af57600080fd5b50565b6146bb81613e16565b81146146c657600080fd5b50565b6146d281613e20565b81146146dd57600080fd5b50565b6146e981613e6c565b81146146f457600080fd5b5056fea2646970667358221220e5a9fc5edb63cb0dd8bdd97d4ec6c93da0e379302da02f2032b0bb4edec5a6ca64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000d0c07730f19c9850eeb1997909205ff26962097a0000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101575760003560e01c8063731133e9116100c3578063d53913931161007c578063d5391393146103f8578063d547741f14610416578063e63ab1e914610432578063e985e9c514610450578063f242432a14610480578063f5298aca1461049c57610157565b8063731133e9146103125780639010d07c1461032e57806391d148541461035e578063a217fddf1461038e578063a22cb465146103ac578063ca15c873146103c857610157565b80632f2ff15d116101155780632f2ff15d146102545780633052a8db1461027057806336568abe1461028c5780634e1273f4146102a85780635c975abb146102d85780636b20c454146102f657610157565b8062fdd58e1461015c57806301ffc9a71461018c57806302fe5305146101bc5780630e89341c146101d8578063248a9ca3146102085780632eb2c2d614610238575b600080fd5b610176600480360381019061017191906130c8565b6104b8565b6040516101839190613b75565b60405180910390f35b6101a660048036038101906101a19190613303565b610582565b6040516101b3919061391d565b60405180910390f35b6101d660048036038101906101d1919061335d565b610594565b005b6101f260048036038101906101ed91906133a6565b610610565b6040516101ff9190613953565b60405180910390f35b610222600480360381019061021d9190613256565b6106a4565b60405161022f9190613938565b60405180910390f35b610252600480360381019061024d9190612e97565b6106c3565b005b61026e60048036038101906102699190613283565b610764565b005b61028a60048036038101906102859190612e2a565b610785565b005b6102a660048036038101906102a19190613283565b610822565b005b6102c260048036038101906102bd91906131de565b6108a5565b6040516102cf91906138c4565b60405180910390f35b6102e06109be565b6040516102ed919061391d565b60405180910390f35b610310600480360381019061030b9190612ffd565b6109d5565b005b61032c6004803603810190610327919061315b565b610a72565b005b610348600480360381019061034391906132c3565b610af4565b60405161035591906137e7565b60405180910390f35b61037860048036038101906103739190613283565b610b23565b604051610385919061391d565b60405180910390f35b610396610b8d565b6040516103a39190613938565b60405180910390f35b6103c660048036038101906103c19190613088565b610b94565b005b6103e260048036038101906103dd9190613256565b610baa565b6040516103ef9190613b75565b60405180910390f35b610400610bce565b60405161040d9190613938565b60405180910390f35b610430600480360381019061042b9190613283565b610bf2565b005b61043a610c13565b6040516104479190613938565b60405180910390f35b61046a60048036038101906104659190612e57565b610c37565b604051610477919061391d565b60405180910390f35b61049a60048036038101906104959190612f66565b610ccb565b005b6104b660048036038101906104b19190613108565b610d6c565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052090613a35565b60405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061058d82610f19565b9050919050565b6105c57f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66105c0610ffb565b610b23565b610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb90613a95565b60405180910390fd5b61060d81611003565b50565b60606004805461061f90613ee2565b80601f016020809104026020016040519081016040528092919081815260200182805461064b90613ee2565b80156106985780601f1061066d57610100808354040283529160200191610698565b820191906000526020600020905b81548152906001019060200180831161067b57829003601f168201915b50505050509050919050565b6000806000838152602001908152602001600020600101549050919050565b6106cb610ffb565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061071157506107108561070b610ffb565b610c37565b5b610750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790613995565b60405180910390fd5b61075d858585858561101d565b5050505050565b61076d826106a4565b61077681611342565b6107808383611356565b505050565b6107b67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107b1610ffb565b610b23565b6107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90613a95565b60405180910390fd5b61081f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a68261138a565b50565b61082a610ffb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e90613b55565b60405180910390fd5b6108a18282611398565b5050565b606081518351146108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613af5565b60405180910390fd5b6000835167ffffffffffffffff8111156109085761090761404a565b5b6040519080825280602002602001820160405280156109365781602001602082028036833780820191505090505b50905060005b84518110156109b35761098385828151811061095b5761095a61401b565b5b60200260200101518583815181106109765761097561401b565b5b60200260200101516104b8565b8282815181106109965761099561401b565b5b602002602001018181525050806109ac90613f45565b905061093c565b508091505092915050565b6000600560009054906101000a900460ff16905090565b6109dd610ffb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610a235750610a2283610a1d610ffb565b610c37565b5b610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990613995565b60405180910390fd5b610a6d8383836113cc565b505050565b610aa37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a9e610ffb565b610b23565b610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990613a95565b60405180910390fd5b610aee8484848461169d565b50505050565b6000610b1b826001600086815260200190815260200160002061184f90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b610ba6610b9f610ffb565b8383611869565b5050565b6000610bc7600160008481526020019081526020016000206119d6565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610bfb826106a4565b610c0481611342565b610c0e8383611398565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610cd3610ffb565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610d195750610d1885610d13610ffb565b610c37565b5b610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90613995565b60405180910390fd5b610d6585858585856119eb565b5050505050565b610d74610ffb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610dba5750610db983610db4610ffb565b610c37565b5b610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df090613995565b60405180910390fd5b610e04838383611c8a565b505050565b610e138282610b23565b610ee557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e8a610ffb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000610f11836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611ed3565b905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610fe457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ff45750610ff382611f43565b5b9050919050565b600033905090565b8060049080519060200190611019929190612aed565b5050565b8151835114611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890613b15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890613a55565b60405180910390fd5b60006110db610ffb565b90506110eb818787878787611fbd565b60005b845181101561129f57600085828151811061110c5761110b61401b565b5b60200260200101519050600085838151811061112b5761112a61401b565b5b6020026020010151905060006002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490613ab5565b60405180910390fd5b8181036002600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112849190613d14565b925050819055505050508061129890613f45565b90506110ee565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516113169291906138e6565b60405180910390a461132c818787878787611fd3565b61133a818787878787611fdb565b505050505050565b6113538161134e610ffb565b6121c2565b50565b6113608282610e09565b6113858160016000858152602001908152602001600020610ee990919063ffffffff16565b505050565b6113948282611356565b5050565b6113a2828261225f565b6113c7816001600085815260200190815260200160002061234090919063ffffffff16565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613a75565b60405180910390fd5b8051825114611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790613b15565b60405180910390fd5b600061148a610ffb565b90506114aa81856000868660405180602001604052806000815250611fbd565b60005b83518110156115f95760008482815181106114cb576114ca61401b565b5b6020026020010151905060008483815181106114ea576114e961401b565b5b6020026020010151905060006002600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561158c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611583906139f5565b60405180910390fd5b8181036002600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806115f190613f45565b9150506114ad565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516116719291906138e6565b60405180910390a461169781856000868660405180602001604052806000815250611fd3565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561170d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170490613b35565b60405180910390fd5b6000611717610ffb565b9050600061172485612370565b9050600061173185612370565b905061174283600089858589611fbd565b846002600088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a29190613d14565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611820929190613b90565b60405180910390a461183783600089858589611fd3565b611846836000898989896123ea565b50505050505050565b600061185e83600001836125d1565b60001c905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90613ad5565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119c9919061391d565b60405180910390a3505050565b60006119e4826000016125fc565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5290613a55565b60405180910390fd5b6000611a65610ffb565b90506000611a7285612370565b90506000611a7f85612370565b9050611a8f838989858589611fbd565b60006002600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e90613ab5565b60405180910390fd5b8581036002600089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550856002600089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bde9190613d14565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611c5b929190613b90565b60405180910390a4611c71848a8a86868a611fd3565b611c7f848a8a8a8a8a6123ea565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf190613a75565b60405180910390fd5b6000611d04610ffb565b90506000611d1184612370565b90506000611d1e84612370565b9050611d3e83876000858560405180602001604052806000815250611fbd565b60006002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd906139f5565b60405180910390fd5b8481036002600088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611ea4929190613b90565b60405180910390a4611eca84886000868660405180602001604052806000815250611fd3565b50505050505050565b6000611edf838361260d565b611f38578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611f3d565b600090505b92915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fb65750611fb582612630565b5b9050919050565b611fcb8686868686866126aa565b505050505050565b505050505050565b611ffa8473ffffffffffffffffffffffffffffffffffffffff16612708565b156121ba578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612040959493929190613802565b602060405180830381600087803b15801561205a57600080fd5b505af192505050801561208b57506040513d601f19601f820116820180604052508101906120889190613330565b60015b61213157612097614079565b806308c379a014156120f457506120ac6145ee565b806120b757506120f6565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120eb9190613953565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212890613975565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146121b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121af906139d5565b60405180910390fd5b505b505050505050565b6121cc8282610b23565b61225b576121f18173ffffffffffffffffffffffffffffffffffffffff16601461272b565b6121ff8360001c602061272b565b6040516020016122109291906137ad565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122529190613953565b60405180910390fd5b5050565b6122698282610b23565b1561233c57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122e1610ffb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612368836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612967565b905092915050565b60606000600167ffffffffffffffff81111561238f5761238e61404a565b5b6040519080825280602002602001820160405280156123bd5781602001602082028036833780820191505090505b50905082816000815181106123d5576123d461401b565b5b60200260200101818152505080915050919050565b6124098473ffffffffffffffffffffffffffffffffffffffff16612708565b156125c9578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161244f95949392919061386a565b602060405180830381600087803b15801561246957600080fd5b505af192505050801561249a57506040513d601f19601f820116820180604052508101906124979190613330565b60015b612540576124a6614079565b806308c379a0141561250357506124bb6145ee565b806124c65750612505565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fa9190613953565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253790613975565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146125c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125be906139d5565b60405180910390fd5b505b505050505050565b60008260000182815481106125e9576125e861401b565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126a357506126a282612a7b565b5b9050919050565b6126b8868686868686612ae5565b6126c06109be565b15612700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f790613a15565b60405180910390fd5b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000600283600261273e9190613d6a565b6127489190613d14565b67ffffffffffffffff8111156127615761276061404a565b5b6040519080825280601f01601f1916602001820160405280156127935781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106127cb576127ca61401b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061282f5761282e61401b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261286f9190613d6a565b6128799190613d14565b90505b6001811115612919577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106128bb576128ba61401b565b5b1a60f81b8282815181106128d2576128d161401b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061291290613eb8565b905061287c565b506000841461295d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612954906139b5565b60405180910390fd5b8091505092915050565b60008083600101600084815260200190815260200160002054905060008114612a6f5760006001826129999190613dc4565b90506000600186600001805490506129b19190613dc4565b9050818114612a205760008660000182815481106129d2576129d161401b565b5b90600052602060002001549050808760000184815481106129f6576129f561401b565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612a3457612a33613fec565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612a75565b60009150505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b828054612af990613ee2565b90600052602060002090601f016020900481019282612b1b5760008555612b62565b82601f10612b3457805160ff1916838001178555612b62565b82800160010185558215612b62579182015b82811115612b61578251825591602001919060010190612b46565b5b509050612b6f9190612b73565b5090565b5b80821115612b8c576000816000905550600101612b74565b5090565b6000612ba3612b9e84613bde565b613bb9565b90508083825260208201905082856020860282011115612bc657612bc56140a0565b5b60005b85811015612bf65781612bdc8882612cf4565b845260208401935060208301925050600181019050612bc9565b5050509392505050565b6000612c13612c0e84613c0a565b613bb9565b90508083825260208201905082856020860282011115612c3657612c356140a0565b5b60005b85811015612c665781612c4c8882612e15565b845260208401935060208301925050600181019050612c39565b5050509392505050565b6000612c83612c7e84613c36565b613bb9565b905082815260208101848484011115612c9f57612c9e6140a5565b5b612caa848285613e76565b509392505050565b6000612cc5612cc084613c67565b613bb9565b905082815260208101848484011115612ce157612ce06140a5565b5b612cec848285613e76565b509392505050565b600081359050612d0381614684565b92915050565b600082601f830112612d1e57612d1d61409b565b5b8135612d2e848260208601612b90565b91505092915050565b600082601f830112612d4c57612d4b61409b565b5b8135612d5c848260208601612c00565b91505092915050565b600081359050612d748161469b565b92915050565b600081359050612d89816146b2565b92915050565b600081359050612d9e816146c9565b92915050565b600081519050612db3816146c9565b92915050565b600082601f830112612dce57612dcd61409b565b5b8135612dde848260208601612c70565b91505092915050565b600082601f830112612dfc57612dfb61409b565b5b8135612e0c848260208601612cb2565b91505092915050565b600081359050612e24816146e0565b92915050565b600060208284031215612e4057612e3f6140af565b5b6000612e4e84828501612cf4565b91505092915050565b60008060408385031215612e6e57612e6d6140af565b5b6000612e7c85828601612cf4565b9250506020612e8d85828601612cf4565b9150509250929050565b600080600080600060a08688031215612eb357612eb26140af565b5b6000612ec188828901612cf4565b9550506020612ed288828901612cf4565b945050604086013567ffffffffffffffff811115612ef357612ef26140aa565b5b612eff88828901612d37565b935050606086013567ffffffffffffffff811115612f2057612f1f6140aa565b5b612f2c88828901612d37565b925050608086013567ffffffffffffffff811115612f4d57612f4c6140aa565b5b612f5988828901612db9565b9150509295509295909350565b600080600080600060a08688031215612f8257612f816140af565b5b6000612f9088828901612cf4565b9550506020612fa188828901612cf4565b9450506040612fb288828901612e15565b9350506060612fc388828901612e15565b925050608086013567ffffffffffffffff811115612fe457612fe36140aa565b5b612ff088828901612db9565b9150509295509295909350565b600080600060608486031215613016576130156140af565b5b600061302486828701612cf4565b935050602084013567ffffffffffffffff811115613045576130446140aa565b5b61305186828701612d37565b925050604084013567ffffffffffffffff811115613072576130716140aa565b5b61307e86828701612d37565b9150509250925092565b6000806040838503121561309f5761309e6140af565b5b60006130ad85828601612cf4565b92505060206130be85828601612d65565b9150509250929050565b600080604083850312156130df576130de6140af565b5b60006130ed85828601612cf4565b92505060206130fe85828601612e15565b9150509250929050565b600080600060608486031215613121576131206140af565b5b600061312f86828701612cf4565b935050602061314086828701612e15565b925050604061315186828701612e15565b9150509250925092565b60008060008060808587031215613175576131746140af565b5b600061318387828801612cf4565b945050602061319487828801612e15565b93505060406131a587828801612e15565b925050606085013567ffffffffffffffff8111156131c6576131c56140aa565b5b6131d287828801612db9565b91505092959194509250565b600080604083850312156131f5576131f46140af565b5b600083013567ffffffffffffffff811115613213576132126140aa565b5b61321f85828601612d09565b925050602083013567ffffffffffffffff8111156132405761323f6140aa565b5b61324c85828601612d37565b9150509250929050565b60006020828403121561326c5761326b6140af565b5b600061327a84828501612d7a565b91505092915050565b6000806040838503121561329a576132996140af565b5b60006132a885828601612d7a565b92505060206132b985828601612cf4565b9150509250929050565b600080604083850312156132da576132d96140af565b5b60006132e885828601612d7a565b92505060206132f985828601612e15565b9150509250929050565b600060208284031215613319576133186140af565b5b600061332784828501612d8f565b91505092915050565b600060208284031215613346576133456140af565b5b600061335484828501612da4565b91505092915050565b600060208284031215613373576133726140af565b5b600082013567ffffffffffffffff811115613391576133906140aa565b5b61339d84828501612de7565b91505092915050565b6000602082840312156133bc576133bb6140af565b5b60006133ca84828501612e15565b91505092915050565b60006133df838361378f565b60208301905092915050565b6133f481613df8565b82525050565b600061340582613ca8565b61340f8185613cd6565b935061341a83613c98565b8060005b8381101561344b57815161343288826133d3565b975061343d83613cc9565b92505060018101905061341e565b5085935050505092915050565b61346181613e0a565b82525050565b61347081613e16565b82525050565b600061348182613cb3565b61348b8185613ce7565b935061349b818560208601613e85565b6134a4816140b4565b840191505092915050565b60006134ba82613cbe565b6134c48185613cf8565b93506134d4818560208601613e85565b6134dd816140b4565b840191505092915050565b60006134f382613cbe565b6134fd8185613d09565b935061350d818560208601613e85565b80840191505092915050565b6000613526603483613cf8565b9150613531826140d2565b604082019050919050565b6000613549602f83613cf8565b915061355482614121565b604082019050919050565b600061356c602083613cf8565b915061357782614170565b602082019050919050565b600061358f602883613cf8565b915061359a82614199565b604082019050919050565b60006135b2602483613cf8565b91506135bd826141e8565b604082019050919050565b60006135d5602c83613cf8565b91506135e082614237565b604082019050919050565b60006135f8602a83613cf8565b915061360382614286565b604082019050919050565b600061361b602583613cf8565b9150613626826142d5565b604082019050919050565b600061363e602383613cf8565b915061364982614324565b604082019050919050565b6000613661603883613cf8565b915061366c82614373565b604082019050919050565b6000613684602a83613cf8565b915061368f826143c2565b604082019050919050565b60006136a7601783613d09565b91506136b282614411565b601782019050919050565b60006136ca602983613cf8565b91506136d58261443a565b604082019050919050565b60006136ed602983613cf8565b91506136f882614489565b604082019050919050565b6000613710602883613cf8565b915061371b826144d8565b604082019050919050565b6000613733602183613cf8565b915061373e82614527565b604082019050919050565b6000613756601183613d09565b915061376182614576565b601182019050919050565b6000613779602f83613cf8565b91506137848261459f565b604082019050919050565b61379881613e6c565b82525050565b6137a781613e6c565b82525050565b60006137b88261369a565b91506137c482856134e8565b91506137cf82613749565b91506137db82846134e8565b91508190509392505050565b60006020820190506137fc60008301846133eb565b92915050565b600060a08201905061381760008301886133eb565b61382460208301876133eb565b818103604083015261383681866133fa565b9050818103606083015261384a81856133fa565b9050818103608083015261385e8184613476565b90509695505050505050565b600060a08201905061387f60008301886133eb565b61388c60208301876133eb565b613899604083018661379e565b6138a6606083018561379e565b81810360808301526138b88184613476565b90509695505050505050565b600060208201905081810360008301526138de81846133fa565b905092915050565b6000604082019050818103600083015261390081856133fa565b9050818103602083015261391481846133fa565b90509392505050565b60006020820190506139326000830184613458565b92915050565b600060208201905061394d6000830184613467565b92915050565b6000602082019050818103600083015261396d81846134af565b905092915050565b6000602082019050818103600083015261398e81613519565b9050919050565b600060208201905081810360008301526139ae8161353c565b9050919050565b600060208201905081810360008301526139ce8161355f565b9050919050565b600060208201905081810360008301526139ee81613582565b9050919050565b60006020820190508181036000830152613a0e816135a5565b9050919050565b60006020820190508181036000830152613a2e816135c8565b9050919050565b60006020820190508181036000830152613a4e816135eb565b9050919050565b60006020820190508181036000830152613a6e8161360e565b9050919050565b60006020820190508181036000830152613a8e81613631565b9050919050565b60006020820190508181036000830152613aae81613654565b9050919050565b60006020820190508181036000830152613ace81613677565b9050919050565b60006020820190508181036000830152613aee816136bd565b9050919050565b60006020820190508181036000830152613b0e816136e0565b9050919050565b60006020820190508181036000830152613b2e81613703565b9050919050565b60006020820190508181036000830152613b4e81613726565b9050919050565b60006020820190508181036000830152613b6e8161376c565b9050919050565b6000602082019050613b8a600083018461379e565b92915050565b6000604082019050613ba5600083018561379e565b613bb2602083018461379e565b9392505050565b6000613bc3613bd4565b9050613bcf8282613f14565b919050565b6000604051905090565b600067ffffffffffffffff821115613bf957613bf861404a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c2557613c2461404a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c5157613c5061404a565b5b613c5a826140b4565b9050602081019050919050565b600067ffffffffffffffff821115613c8257613c8161404a565b5b613c8b826140b4565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d1f82613e6c565b9150613d2a83613e6c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d5f57613d5e613f8e565b5b828201905092915050565b6000613d7582613e6c565b9150613d8083613e6c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613db957613db8613f8e565b5b828202905092915050565b6000613dcf82613e6c565b9150613dda83613e6c565b925082821015613ded57613dec613f8e565b5b828203905092915050565b6000613e0382613e4c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ea3578082015181840152602081019050613e88565b83811115613eb2576000848401525b50505050565b6000613ec382613e6c565b91506000821415613ed757613ed6613f8e565b5b600182039050919050565b60006002820490506001821680613efa57607f821691505b60208210811415613f0e57613f0d613fbd565b5b50919050565b613f1d826140b4565b810181811067ffffffffffffffff82111715613f3c57613f3b61404a565b5b80604052505050565b6000613f5082613e6c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f8357613f82613f8e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156140985760046000803e6140956000516140c5565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d10156145fe57614681565b614606613bd4565b60043d036004823e80513d602482011167ffffffffffffffff8211171561462e575050614681565b808201805167ffffffffffffffff81111561464c5750505050614681565b80602083010160043d038501811115614669575050505050614681565b61467882602001850186613f14565b82955050505050505b90565b61468d81613df8565b811461469857600080fd5b50565b6146a481613e0a565b81146146af57600080fd5b50565b6146bb81613e16565b81146146c657600080fd5b50565b6146d281613e20565b81146146dd57600080fd5b50565b6146e981613e6c565b81146146f457600080fd5b5056fea2646970667358221220e5a9fc5edb63cb0dd8bdd97d4ec6c93da0e379302da02f2032b0bb4edec5a6ca64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000d0c07730f19c9850eeb1997909205ff26962097a0000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : uri (string):
Arg [1] : token_a_contract (address): 0xd0C07730f19C9850EEb1997909205fF26962097a

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000d0c07730f19c9850eeb1997909205ff26962097a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

71999:2023:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54133:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73395:253;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73178:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53877:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38357:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56077:439;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38798:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72901:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39942:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54529:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22463:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71558:359;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72578:311;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43595:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36817:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35922:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55126:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43922:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72113:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39238:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72184:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55353:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55593:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71223:327;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54133:230;54219:7;54266:1;54247:21;;:7;:21;;;;54239:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;54333:9;:13;54343:2;54333:13;;;;;;;;;;;:22;54347:7;54333:22;;;;;;;;;;;;;;;;54326:29;;54133:230;;;;:::o;73395:253::-;73569:4;73602:36;73626:11;73602:23;:36::i;:::-;73595:43;;73395:253;;;:::o;73178:201::-;73246:34;72151:24;73267:12;:10;:12::i;:::-;73246:7;:34::i;:::-;73238:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;73354:15;73362:6;73354:7;:15::i;:::-;73178:201;:::o;53877:105::-;53937:13;53970:4;53963:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53877:105;;;:::o;38357:131::-;38431:7;38458:6;:12;38465:4;38458:12;;;;;;;;;;;:22;;;38451:29;;38357:131;;;:::o;56077:439::-;56318:12;:10;:12::i;:::-;56310:20;;:4;:20;;;:60;;;;56334:36;56351:4;56357:12;:10;:12::i;:::-;56334:16;:36::i;:::-;56310:60;56288:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;56456:52;56479:4;56485:2;56489:3;56494:7;56503:4;56456:22;:52::i;:::-;56077:439;;;;;:::o;38798:147::-;38881:18;38894:4;38881:12;:18::i;:::-;36413:16;36424:4;36413:10;:16::i;:::-;38912:25:::1;38923:4;38929:7;38912:10;:25::i;:::-;38798:147:::0;;;:::o;72901:238::-;72985:34;72151:24;73006:12;:10;:12::i;:::-;72985:7;:34::i;:::-;72977:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;73098:31;72151:24;73122:6;73098:10;:31::i;:::-;72901:238;:::o;39942:218::-;40049:12;:10;:12::i;:::-;40038:23;;:7;:23;;;40030:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;40126:26;40138:4;40144:7;40126:11;:26::i;:::-;39942:218;;:::o;54529:524::-;54685:16;54746:3;:10;54727:8;:15;:29;54719:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;54815:30;54862:8;:15;54848:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54815:63;;54896:9;54891:122;54915:8;:15;54911:1;:19;54891:122;;;54971:30;54981:8;54990:1;54981:11;;;;;;;;:::i;:::-;;;;;;;;54994:3;54998:1;54994:6;;;;;;;;:::i;:::-;;;;;;;;54971:9;:30::i;:::-;54952:13;54966:1;54952:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;54932:3;;;;:::i;:::-;;;54891:122;;;;55032:13;55025:20;;;54529:524;;;;:::o;22463:86::-;22510:4;22534:7;;;;;;;;;;;22527:14;;22463:86;:::o;71558:359::-;71734:12;:10;:12::i;:::-;71723:23;;:7;:23;;;:66;;;;71750:39;71767:7;71776:12;:10;:12::i;:::-;71750:16;:39::i;:::-;71723:66;71701:163;;;;;;;;;;;;:::i;:::-;;;;;;;;;71877:32;71888:7;71897:3;71902:6;71877:10;:32::i;:::-;71558:359;;;:::o;72578:311::-;72740:34;72151:24;72761:12;:10;:12::i;:::-;72740:7;:34::i;:::-;72732:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;72852:27;72858:2;72862;72866:6;72874:4;72852:5;:27::i;:::-;72578:311;;;;:::o;43595:153::-;43685:7;43712:28;43734:5;43712:12;:18;43725:4;43712:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;43705:35;;43595:153;;;;:::o;36817:147::-;36903:4;36927:6;:12;36934:4;36927:12;;;;;;;;;;;:20;;:29;36948:7;36927:29;;;;;;;;;;;;;;;;;;;;;;;;;36920:36;;36817:147;;;;:::o;35922:49::-;35967:4;35922:49;;;:::o;55126:155::-;55221:52;55240:12;:10;:12::i;:::-;55254:8;55264;55221:18;:52::i;:::-;55126:155;;:::o;43922:142::-;44002:7;44029:27;:12;:18;44042:4;44029:18;;;;;;;;;;;:25;:27::i;:::-;44022:34;;43922:142;;;:::o;72113:62::-;72151:24;72113:62;:::o;39238:149::-;39322:18;39335:4;39322:12;:18::i;:::-;36413:16;36424:4;36413:10;:16::i;:::-;39353:26:::1;39365:4;39371:7;39353:11;:26::i;:::-;39238:149:::0;;;:::o;72184:62::-;72222:24;72184:62;:::o;55353:168::-;55452:4;55476:18;:27;55495:7;55476:27;;;;;;;;;;;;;;;:37;55504:8;55476:37;;;;;;;;;;;;;;;;;;;;;;;;;55469:44;;55353:168;;;;:::o;55593:407::-;55809:12;:10;:12::i;:::-;55801:20;;:4;:20;;;:60;;;;55825:36;55842:4;55848:12;:10;:12::i;:::-;55825:16;:36::i;:::-;55801:60;55779:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;55947:45;55965:4;55971:2;55975;55979:6;55987:4;55947:17;:45::i;:::-;55593:407;;;;;:::o;71223:327::-;71374:12;:10;:12::i;:::-;71363:23;;:7;:23;;;:66;;;;71390:39;71407:7;71416:12;:10;:12::i;:::-;71390:16;:39::i;:::-;71363:66;71341:163;;;;;;;;;;;;:::i;:::-;;;;;;;;;71517:25;71523:7;71532:2;71536:5;71517;:25::i;:::-;71223:327;;;:::o;41539:238::-;41623:22;41631:4;41637:7;41623;:22::i;:::-;41618:152;;41694:4;41662:6;:12;41669:4;41662:12;;;;;;;;;;;:20;;:29;41683:7;41662:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;41745:12;:10;:12::i;:::-;41718:40;;41736:7;41718:40;;41730:4;41718:40;;;;;;;;;;41618:152;41539:238;;:::o;8296:152::-;8366:4;8390:50;8395:3;:10;;8431:5;8415:23;;8407:32;;8390:4;:50::i;:::-;8383:57;;8296:152;;;;:::o;53156:310::-;53258:4;53310:26;53295:41;;;:11;:41;;;;:110;;;;53368:37;53353:52;;;:11;:52;;;;53295:110;:163;;;;53422:36;53446:11;53422:23;:36::i;:::-;53295:163;53275:183;;53156:310;;;:::o;20576:98::-;20629:7;20656:10;20649:17;;20576:98;:::o;60302:88::-;60376:6;60369:4;:13;;;;;;;;;;;;:::i;:::-;;60302:88;:::o;58312:1146::-;58539:7;:14;58525:3;:10;:28;58517:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;58631:1;58617:16;;:2;:16;;;;58609:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;58688:16;58707:12;:10;:12::i;:::-;58688:31;;58732:60;58753:8;58763:4;58769:2;58773:3;58778:7;58787:4;58732:20;:60::i;:::-;58810:9;58805:421;58829:3;:10;58825:1;:14;58805:421;;;58861:10;58874:3;58878:1;58874:6;;;;;;;;:::i;:::-;;;;;;;;58861:19;;58895:14;58912:7;58920:1;58912:10;;;;;;;;:::i;:::-;;;;;;;;58895:27;;58939:19;58961:9;:13;58971:2;58961:13;;;;;;;;;;;:19;58975:4;58961:19;;;;;;;;;;;;;;;;58939:41;;59018:6;59003:11;:21;;58995:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;59151:6;59137:11;:20;59115:9;:13;59125:2;59115:13;;;;;;;;;;;:19;59129:4;59115:19;;;;;;;;;;;;;;;:42;;;;59208:6;59187:9;:13;59197:2;59187:13;;;;;;;;;;;:17;59201:2;59187:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;58846:380;;;58841:3;;;;:::i;:::-;;;58805:421;;;;59273:2;59243:47;;59267:4;59243:47;;59257:8;59243:47;;;59277:3;59282:7;59243:47;;;;;;;:::i;:::-;;;;;;;;59303:59;59323:8;59333:4;59339:2;59343:3;59348:7;59357:4;59303:19;:59::i;:::-;59375:75;59411:8;59421:4;59427:2;59431:3;59436:7;59445:4;59375:35;:75::i;:::-;58506:952;58312:1146;;;;;:::o;37268:105::-;37335:30;37346:4;37352:12;:10;:12::i;:::-;37335:10;:30::i;:::-;37268:105;:::o;44157:169::-;44245:31;44262:4;44268:7;44245:16;:31::i;:::-;44287;44310:7;44287:12;:18;44300:4;44287:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;44157:169;;:::o;40867:112::-;40946:25;40957:4;40963:7;40946:10;:25::i;:::-;40867:112;;:::o;44420:174::-;44509:32;44527:4;44533:7;44509:17;:32::i;:::-;44552:34;44578:7;44552:12;:18;44565:4;44552:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;44420:174;;:::o;64077:969::-;64245:1;64229:18;;:4;:18;;;;64221:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;64320:7;:14;64306:3;:10;:28;64298:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;64392:16;64411:12;:10;:12::i;:::-;64392:31;;64436:66;64457:8;64467:4;64481:1;64485:3;64490:7;64436:66;;;;;;;;;;;;:20;:66::i;:::-;64520:9;64515:373;64539:3;:10;64535:1;:14;64515:373;;;64571:10;64584:3;64588:1;64584:6;;;;;;;;:::i;:::-;;;;;;;;64571:19;;64605:14;64622:7;64630:1;64622:10;;;;;;;;:::i;:::-;;;;;;;;64605:27;;64649:19;64671:9;:13;64681:2;64671:13;;;;;;;;;;;:19;64685:4;64671:19;;;;;;;;;;;;;;;;64649:41;;64728:6;64713:11;:21;;64705:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;64855:6;64841:11;:20;64819:9;:13;64829:2;64819:13;;;;;;;;;;;:19;64833:4;64819:19;;;;;;;;;;;;;;;:42;;;;64556:332;;;64551:3;;;;;:::i;:::-;;;;64515:373;;;;64943:1;64905:55;;64929:4;64905:55;;64919:8;64905:55;;;64947:3;64952:7;64905:55;;;;;;;:::i;:::-;;;;;;;;64973:65;64993:8;65003:4;65017:1;65021:3;65026:7;64973:65;;;;;;;;;;;;:19;:65::i;:::-;64210:836;64077:969;;;:::o;60776:729::-;60943:1;60929:16;;:2;:16;;;;60921:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;60996:16;61015:12;:10;:12::i;:::-;60996:31;;61038:20;61061:21;61079:2;61061:17;:21::i;:::-;61038:44;;61093:24;61120:25;61138:6;61120:17;:25::i;:::-;61093:52;;61158:66;61179:8;61197:1;61201:2;61205:3;61210:7;61219:4;61158:20;:66::i;:::-;61258:6;61237:9;:13;61247:2;61237:13;;;;;;;;;;;:17;61251:2;61237:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;61317:2;61280:52;;61313:1;61280:52;;61295:8;61280:52;;;61321:2;61325:6;61280:52;;;;;;;:::i;:::-;;;;;;;;61345:65;61365:8;61383:1;61387:2;61391:3;61396:7;61405:4;61345:19;:65::i;:::-;61423:74;61454:8;61472:1;61476:2;61480;61484:6;61492:4;61423:30;:74::i;:::-;60910:595;;;60776:729;;;;:::o;9592:158::-;9666:7;9717:22;9721:3;:10;;9733:5;9717:3;:22::i;:::-;9709:31;;9686:56;;9592:158;;;;:::o;65189:331::-;65344:8;65335:17;;:5;:17;;;;65327:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;65447:8;65409:18;:25;65428:5;65409:25;;;;;;;;;;;;;;;:35;65435:8;65409:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;65493:8;65471:41;;65486:5;65471:41;;;65503:8;65471:41;;;;;;:::i;:::-;;;;;;;;65189:331;;;:::o;9121:117::-;9184:7;9211:19;9219:3;:10;;9211:7;:19::i;:::-;9204:26;;9121:117;;;:::o;56980:974::-;57182:1;57168:16;;:2;:16;;;;57160:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;57239:16;57258:12;:10;:12::i;:::-;57239:31;;57281:20;57304:21;57322:2;57304:17;:21::i;:::-;57281:44;;57336:24;57363:25;57381:6;57363:17;:25::i;:::-;57336:52;;57401:60;57422:8;57432:4;57438:2;57442:3;57447:7;57456:4;57401:20;:60::i;:::-;57474:19;57496:9;:13;57506:2;57496:13;;;;;;;;;;;:19;57510:4;57496:19;;;;;;;;;;;;;;;;57474:41;;57549:6;57534:11;:21;;57526:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;57674:6;57660:11;:20;57638:9;:13;57648:2;57638:13;;;;;;;;;;;:19;57652:4;57638:19;;;;;;;;;;;;;;;:42;;;;57723:6;57702:9;:13;57712:2;57702:13;;;;;;;;;;;:17;57716:2;57702:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;57778:2;57747:46;;57772:4;57747:46;;57762:8;57747:46;;;57782:2;57786:6;57747:46;;;;;;;:::i;:::-;;;;;;;;57806:59;57826:8;57836:4;57842:2;57846:3;57851:7;57860:4;57806:19;:59::i;:::-;57878:68;57909:8;57919:4;57925:2;57929;57933:6;57941:4;57878:30;:68::i;:::-;57149:805;;;;56980:974;;;;;:::o;63019:808::-;63162:1;63146:18;;:4;:18;;;;63138:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;63217:16;63236:12;:10;:12::i;:::-;63217:31;;63259:20;63282:21;63300:2;63282:17;:21::i;:::-;63259:44;;63314:24;63341:25;63359:6;63341:17;:25::i;:::-;63314:52;;63379:66;63400:8;63410:4;63424:1;63428:3;63433:7;63379:66;;;;;;;;;;;;:20;:66::i;:::-;63458:19;63480:9;:13;63490:2;63480:13;;;;;;;;;;;:19;63494:4;63480:19;;;;;;;;;;;;;;;;63458:41;;63533:6;63518:11;:21;;63510:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;63652:6;63638:11;:20;63616:9;:13;63626:2;63616:13;;;;;;;;;;;:19;63630:4;63616:19;;;;;;;;;;;;;;;:42;;;;63726:1;63687:54;;63712:4;63687:54;;63702:8;63687:54;;;63730:2;63734:6;63687:54;;;;;;;:::i;:::-;;;;;;;;63754:65;63774:8;63784:4;63798:1;63802:3;63807:7;63754:65;;;;;;;;;;;;:19;:65::i;:::-;63127:700;;;;63019:808;;;:::o;2211:414::-;2274:4;2296:21;2306:3;2311:5;2296:9;:21::i;:::-;2291:327;;2334:3;:11;;2351:5;2334:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2517:3;:11;;:18;;;;2495:3;:12;;:19;2508:5;2495:19;;;;;;;;;;;:40;;;;2557:4;2550:11;;;;2291:327;2601:5;2594:12;;2211:414;;;;;:::o;42782:214::-;42867:4;42906:42;42891:57;;;:11;:57;;;;:97;;;;42952:36;42976:11;42952:23;:36::i;:::-;42891:97;42884:104;;42782:214;;;:::o;73660:357::-;73941:66;73968:8;73978:4;73984:2;73988:3;73993:7;74002:4;73941:26;:66::i;:::-;73660:357;;;;;;:::o;67654:220::-;;;;;;;:::o;68634:813::-;68874:15;:2;:13;;;:15::i;:::-;68870:570;;;68927:2;68910:43;;;68954:8;68964:4;68970:3;68975:7;68984:4;68910:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;68906:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;69302:6;69295:14;;;;;;;;;;;:::i;:::-;;;;;;;;68906:523;;;69351:62;;;;;;;;;;:::i;:::-;;;;;;;;68906:523;69083:48;;;69071:60;;;:8;:60;;;;69067:159;;69156:50;;;;;;;;;;:::i;:::-;;;;;;;;69067:159;68990:251;68870:570;68634:813;;;;;;:::o;37663:505::-;37752:22;37760:4;37766:7;37752;:22::i;:::-;37747:414;;37940:41;37968:7;37940:41;;37978:2;37940:19;:41::i;:::-;38054:38;38082:4;38074:13;;38089:2;38054:19;:38::i;:::-;37845:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37791:358;;;;;;;;;;;:::i;:::-;;;;;;;;37747:414;37663:505;;:::o;41957:239::-;42041:22;42049:4;42055:7;42041;:22::i;:::-;42037:152;;;42112:5;42080:6;:12;42087:4;42080:12;;;;;;;;;;;:20;;:29;42101:7;42080:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;42164:12;:10;:12::i;:::-;42137:40;;42155:7;42137:40;;42149:4;42137:40;;;;;;;;;;42037:152;41957:239;;:::o;8624:158::-;8697:4;8721:53;8729:3;:10;;8765:5;8749:23;;8741:32;;8721:7;:53::i;:::-;8714:60;;8624:158;;;;:::o;69455:198::-;69521:16;69550:22;69589:1;69575:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69550:41;;69613:7;69602:5;69608:1;69602:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;69640:5;69633:12;;;69455:198;;;:::o;67882:744::-;68097:15;:2;:13;;;:15::i;:::-;68093:526;;;68150:2;68133:38;;;68172:8;68182:4;68188:2;68192:6;68200:4;68133:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;68129:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;68481:6;68474:14;;;;;;;;;;;:::i;:::-;;;;;;;;68129:479;;;68530:62;;;;;;;;;;:::i;:::-;;;;;;;;68129:479;68267:43;;;68255:55;;;:8;:55;;;;68251:154;;68335:50;;;;;;;;;;:::i;:::-;;;;;;;;68251:154;68206:214;68093:526;67882:744;;;;;;:::o;4985:120::-;5052:7;5079:3;:11;;5091:5;5079:18;;;;;;;;:::i;:::-;;;;;;;;;;5072:25;;4985:120;;;;:::o;4522:109::-;4578:7;4605:3;:11;;:18;;;;4598:25;;4522:109;;;:::o;4307:129::-;4380:4;4427:1;4404:3;:12;;:19;4417:5;4404:19;;;;;;;;;;;;:24;;4397:31;;4307:129;;;;:::o;36521:204::-;36606:4;36645:32;36630:47;;;:11;:47;;;;:87;;;;36681:36;36705:11;36681:23;:36::i;:::-;36630:87;36623:94;;36521:204;;;:::o;70378:392::-;70617:66;70644:8;70654:4;70660:2;70664:3;70669:7;70678:4;70617:26;:66::i;:::-;70705:8;:6;:8::i;:::-;70704:9;70696:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;70378:392;;;;;;:::o;24678:326::-;24738:4;24995:1;24973:7;:19;;;:23;24966:30;;24678:326;;;:::o;14820:451::-;14895:13;14921:19;14966:1;14957:6;14953:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;14943:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14921:47;;14979:15;:6;14986:1;14979:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;15005;:6;15012:1;15005:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;15036:9;15061:1;15052:6;15048:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;15036:26;;15031:135;15068:1;15064;:5;15031:135;;;15103:12;15124:3;15116:5;:11;15103:25;;;;;;;:::i;:::-;;;;;15091:6;15098:1;15091:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;15153:1;15143:11;;;;;15071:3;;;;:::i;:::-;;;15031:135;;;;15193:1;15184:5;:10;15176:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;15256:6;15242:21;;;14820:451;;;;:::o;2801:1420::-;2867:4;2985:18;3006:3;:12;;:19;3019:5;3006:19;;;;;;;;;;;;2985:40;;3056:1;3042:10;:15;3038:1176;;3417:21;3454:1;3441:10;:14;;;;:::i;:::-;3417:38;;3470:17;3511:1;3490:3;:11;;:18;;;;:22;;;;:::i;:::-;3470:42;;3546:13;3533:9;:26;3529:405;;3580:17;3600:3;:11;;3612:9;3600:22;;;;;;;;:::i;:::-;;;;;;;;;;3580:42;;3754:9;3725:3;:11;;3737:13;3725:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;3865:10;3839:3;:12;;:23;3852:9;3839:23;;;;;;;;;;;:36;;;;3561:373;3529:405;4015:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4110:3;:12;;:19;4123:5;4110:19;;;;;;;;;;;4103:26;;;4153:4;4146:11;;;;;;;3038:1176;4197:5;4190:12;;;2801:1420;;;;;:::o;33780:157::-;33865:4;33904:25;33889:40;;;:11;:40;;;;33882:47;;33780:157;;;:::o;66478:221::-;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:139::-;3447:5;3485:6;3472:20;3463:29;;3501:33;3528:5;3501:33;:::i;:::-;3401:139;;;;:::o;3546:137::-;3591:5;3629:6;3616:20;3607:29;;3645:32;3671:5;3645:32;:::i;:::-;3546:137;;;;:::o;3689:141::-;3745:5;3776:6;3770:13;3761:22;;3792:32;3818:5;3792:32;:::i;:::-;3689:141;;;;:::o;3849:338::-;3904:5;3953:3;3946:4;3938:6;3934:17;3930:27;3920:122;;3961:79;;:::i;:::-;3920:122;4078:6;4065:20;4103:78;4177:3;4169:6;4162:4;4154:6;4150:17;4103:78;:::i;:::-;4094:87;;3910:277;3849:338;;;;:::o;4207:340::-;4263:5;4312:3;4305:4;4297:6;4293:17;4289:27;4279:122;;4320:79;;:::i;:::-;4279:122;4437:6;4424:20;4462:79;4537:3;4529:6;4522:4;4514:6;4510:17;4462:79;:::i;:::-;4453:88;;4269:278;4207:340;;;;:::o;4553:139::-;4599:5;4637:6;4624:20;4615:29;;4653:33;4680:5;4653:33;:::i;:::-;4553:139;;;;:::o;4698:329::-;4757:6;4806:2;4794:9;4785:7;4781:23;4777:32;4774:119;;;4812:79;;:::i;:::-;4774:119;4932:1;4957:53;5002:7;4993:6;4982:9;4978:22;4957:53;:::i;:::-;4947:63;;4903:117;4698:329;;;;:::o;5033:474::-;5101:6;5109;5158:2;5146:9;5137:7;5133:23;5129:32;5126:119;;;5164:79;;:::i;:::-;5126:119;5284:1;5309:53;5354:7;5345:6;5334:9;5330:22;5309:53;:::i;:::-;5299:63;;5255:117;5411:2;5437:53;5482:7;5473:6;5462:9;5458:22;5437:53;:::i;:::-;5427:63;;5382:118;5033:474;;;;;:::o;5513:1509::-;5667:6;5675;5683;5691;5699;5748:3;5736:9;5727:7;5723:23;5719:33;5716:120;;;5755:79;;:::i;:::-;5716:120;5875:1;5900:53;5945:7;5936:6;5925:9;5921:22;5900:53;:::i;:::-;5890:63;;5846:117;6002:2;6028:53;6073:7;6064:6;6053:9;6049:22;6028:53;:::i;:::-;6018:63;;5973:118;6158:2;6147:9;6143:18;6130:32;6189:18;6181:6;6178:30;6175:117;;;6211:79;;:::i;:::-;6175:117;6316:78;6386:7;6377:6;6366:9;6362:22;6316:78;:::i;:::-;6306:88;;6101:303;6471:2;6460:9;6456:18;6443:32;6502:18;6494:6;6491:30;6488:117;;;6524:79;;:::i;:::-;6488:117;6629:78;6699:7;6690:6;6679:9;6675:22;6629:78;:::i;:::-;6619:88;;6414:303;6784:3;6773:9;6769:19;6756:33;6816:18;6808:6;6805:30;6802:117;;;6838:79;;:::i;:::-;6802:117;6943:62;6997:7;6988:6;6977:9;6973:22;6943:62;:::i;:::-;6933:72;;6727:288;5513:1509;;;;;;;;:::o;7028:1089::-;7132:6;7140;7148;7156;7164;7213:3;7201:9;7192:7;7188:23;7184:33;7181:120;;;7220:79;;:::i;:::-;7181:120;7340:1;7365:53;7410:7;7401:6;7390:9;7386:22;7365:53;:::i;:::-;7355:63;;7311:117;7467:2;7493:53;7538:7;7529:6;7518:9;7514:22;7493:53;:::i;:::-;7483:63;;7438:118;7595:2;7621:53;7666:7;7657:6;7646:9;7642:22;7621:53;:::i;:::-;7611:63;;7566:118;7723:2;7749:53;7794:7;7785:6;7774:9;7770:22;7749:53;:::i;:::-;7739:63;;7694:118;7879:3;7868:9;7864:19;7851:33;7911:18;7903:6;7900:30;7897:117;;;7933:79;;:::i;:::-;7897:117;8038:62;8092:7;8083:6;8072:9;8068:22;8038:62;:::i;:::-;8028:72;;7822:288;7028:1089;;;;;;;;:::o;8123:1039::-;8250:6;8258;8266;8315:2;8303:9;8294:7;8290:23;8286:32;8283:119;;;8321:79;;:::i;:::-;8283:119;8441:1;8466:53;8511:7;8502:6;8491:9;8487:22;8466:53;:::i;:::-;8456:63;;8412:117;8596:2;8585:9;8581:18;8568:32;8627:18;8619:6;8616:30;8613:117;;;8649:79;;:::i;:::-;8613:117;8754:78;8824:7;8815:6;8804:9;8800:22;8754:78;:::i;:::-;8744:88;;8539:303;8909:2;8898:9;8894:18;8881:32;8940:18;8932:6;8929:30;8926:117;;;8962:79;;:::i;:::-;8926:117;9067:78;9137:7;9128:6;9117:9;9113:22;9067:78;:::i;:::-;9057:88;;8852:303;8123:1039;;;;;:::o;9168:468::-;9233:6;9241;9290:2;9278:9;9269:7;9265:23;9261:32;9258:119;;;9296:79;;:::i;:::-;9258:119;9416:1;9441:53;9486:7;9477:6;9466:9;9462:22;9441:53;:::i;:::-;9431:63;;9387:117;9543:2;9569:50;9611:7;9602:6;9591:9;9587:22;9569:50;:::i;:::-;9559:60;;9514:115;9168:468;;;;;:::o;9642:474::-;9710:6;9718;9767:2;9755:9;9746:7;9742:23;9738:32;9735:119;;;9773:79;;:::i;:::-;9735:119;9893:1;9918:53;9963:7;9954:6;9943:9;9939:22;9918:53;:::i;:::-;9908:63;;9864:117;10020:2;10046:53;10091:7;10082:6;10071:9;10067:22;10046:53;:::i;:::-;10036:63;;9991:118;9642:474;;;;;:::o;10122:619::-;10199:6;10207;10215;10264:2;10252:9;10243:7;10239:23;10235:32;10232:119;;;10270:79;;:::i;:::-;10232:119;10390:1;10415:53;10460:7;10451:6;10440:9;10436:22;10415:53;:::i;:::-;10405:63;;10361:117;10517:2;10543:53;10588:7;10579:6;10568:9;10564:22;10543:53;:::i;:::-;10533:63;;10488:118;10645:2;10671:53;10716:7;10707:6;10696:9;10692:22;10671:53;:::i;:::-;10661:63;;10616:118;10122:619;;;;;:::o;10747:943::-;10842:6;10850;10858;10866;10915:3;10903:9;10894:7;10890:23;10886:33;10883:120;;;10922:79;;:::i;:::-;10883:120;11042:1;11067:53;11112:7;11103:6;11092:9;11088:22;11067:53;:::i;:::-;11057:63;;11013:117;11169:2;11195:53;11240:7;11231:6;11220:9;11216:22;11195:53;:::i;:::-;11185:63;;11140:118;11297:2;11323:53;11368:7;11359:6;11348:9;11344:22;11323:53;:::i;:::-;11313:63;;11268:118;11453:2;11442:9;11438:18;11425:32;11484:18;11476:6;11473:30;11470:117;;;11506:79;;:::i;:::-;11470:117;11611:62;11665:7;11656:6;11645:9;11641:22;11611:62;:::i;:::-;11601:72;;11396:287;10747:943;;;;;;;:::o;11696:894::-;11814:6;11822;11871:2;11859:9;11850:7;11846:23;11842:32;11839:119;;;11877:79;;:::i;:::-;11839:119;12025:1;12014:9;12010:17;11997:31;12055:18;12047:6;12044:30;12041:117;;;12077:79;;:::i;:::-;12041:117;12182:78;12252:7;12243:6;12232:9;12228:22;12182:78;:::i;:::-;12172:88;;11968:302;12337:2;12326:9;12322:18;12309:32;12368:18;12360:6;12357:30;12354:117;;;12390:79;;:::i;:::-;12354:117;12495:78;12565:7;12556:6;12545:9;12541:22;12495:78;:::i;:::-;12485:88;;12280:303;11696:894;;;;;:::o;12596:329::-;12655:6;12704:2;12692:9;12683:7;12679:23;12675:32;12672:119;;;12710:79;;:::i;:::-;12672:119;12830:1;12855:53;12900:7;12891:6;12880:9;12876:22;12855:53;:::i;:::-;12845:63;;12801:117;12596:329;;;;:::o;12931:474::-;12999:6;13007;13056:2;13044:9;13035:7;13031:23;13027:32;13024:119;;;13062:79;;:::i;:::-;13024:119;13182:1;13207:53;13252:7;13243:6;13232:9;13228:22;13207:53;:::i;:::-;13197:63;;13153:117;13309:2;13335:53;13380:7;13371:6;13360:9;13356:22;13335:53;:::i;:::-;13325:63;;13280:118;12931:474;;;;;:::o;13411:::-;13479:6;13487;13536:2;13524:9;13515:7;13511:23;13507:32;13504:119;;;13542:79;;:::i;:::-;13504:119;13662:1;13687:53;13732:7;13723:6;13712:9;13708:22;13687:53;:::i;:::-;13677:63;;13633:117;13789:2;13815:53;13860:7;13851:6;13840:9;13836:22;13815:53;:::i;:::-;13805:63;;13760:118;13411:474;;;;;:::o;13891:327::-;13949:6;13998:2;13986:9;13977:7;13973:23;13969:32;13966:119;;;14004:79;;:::i;:::-;13966:119;14124:1;14149:52;14193:7;14184:6;14173:9;14169:22;14149:52;:::i;:::-;14139:62;;14095:116;13891:327;;;;:::o;14224:349::-;14293:6;14342:2;14330:9;14321:7;14317:23;14313:32;14310:119;;;14348:79;;:::i;:::-;14310:119;14468:1;14493:63;14548:7;14539:6;14528:9;14524:22;14493:63;:::i;:::-;14483:73;;14439:127;14224:349;;;;:::o;14579:509::-;14648:6;14697:2;14685:9;14676:7;14672:23;14668:32;14665:119;;;14703:79;;:::i;:::-;14665:119;14851:1;14840:9;14836:17;14823:31;14881:18;14873:6;14870:30;14867:117;;;14903:79;;:::i;:::-;14867:117;15008:63;15063:7;15054:6;15043:9;15039:22;15008:63;:::i;:::-;14998:73;;14794:287;14579:509;;;;:::o;15094:329::-;15153:6;15202:2;15190:9;15181:7;15177:23;15173:32;15170:119;;;15208:79;;:::i;:::-;15170:119;15328:1;15353:53;15398:7;15389:6;15378:9;15374:22;15353:53;:::i;:::-;15343:63;;15299:117;15094:329;;;;:::o;15429:179::-;15498:10;15519:46;15561:3;15553:6;15519:46;:::i;:::-;15597:4;15592:3;15588:14;15574:28;;15429:179;;;;:::o;15614:118::-;15701:24;15719:5;15701:24;:::i;:::-;15696:3;15689:37;15614:118;;:::o;15768:732::-;15887:3;15916:54;15964:5;15916:54;:::i;:::-;15986:86;16065:6;16060:3;15986:86;:::i;:::-;15979:93;;16096:56;16146:5;16096:56;:::i;:::-;16175:7;16206:1;16191:284;16216:6;16213:1;16210:13;16191:284;;;16292:6;16286:13;16319:63;16378:3;16363:13;16319:63;:::i;:::-;16312:70;;16405:60;16458:6;16405:60;:::i;:::-;16395:70;;16251:224;16238:1;16235;16231:9;16226:14;;16191:284;;;16195:14;16491:3;16484:10;;15892:608;;;15768:732;;;;:::o;16506:109::-;16587:21;16602:5;16587:21;:::i;:::-;16582:3;16575:34;16506:109;;:::o;16621:118::-;16708:24;16726:5;16708:24;:::i;:::-;16703:3;16696:37;16621:118;;:::o;16745:360::-;16831:3;16859:38;16891:5;16859:38;:::i;:::-;16913:70;16976:6;16971:3;16913:70;:::i;:::-;16906:77;;16992:52;17037:6;17032:3;17025:4;17018:5;17014:16;16992:52;:::i;:::-;17069:29;17091:6;17069:29;:::i;:::-;17064:3;17060:39;17053:46;;16835:270;16745:360;;;;:::o;17111:364::-;17199:3;17227:39;17260:5;17227:39;:::i;:::-;17282:71;17346:6;17341:3;17282:71;:::i;:::-;17275:78;;17362:52;17407:6;17402:3;17395:4;17388:5;17384:16;17362:52;:::i;:::-;17439:29;17461:6;17439:29;:::i;:::-;17434:3;17430:39;17423:46;;17203:272;17111:364;;;;:::o;17481:377::-;17587:3;17615:39;17648:5;17615:39;:::i;:::-;17670:89;17752:6;17747:3;17670:89;:::i;:::-;17663:96;;17768:52;17813:6;17808:3;17801:4;17794:5;17790:16;17768:52;:::i;:::-;17845:6;17840:3;17836:16;17829:23;;17591:267;17481:377;;;;:::o;17864:366::-;18006:3;18027:67;18091:2;18086:3;18027:67;:::i;:::-;18020:74;;18103:93;18192:3;18103:93;:::i;:::-;18221:2;18216:3;18212:12;18205:19;;17864:366;;;:::o;18236:::-;18378:3;18399:67;18463:2;18458:3;18399:67;:::i;:::-;18392:74;;18475:93;18564:3;18475:93;:::i;:::-;18593:2;18588:3;18584:12;18577:19;;18236:366;;;:::o;18608:::-;18750:3;18771:67;18835:2;18830:3;18771:67;:::i;:::-;18764:74;;18847:93;18936:3;18847:93;:::i;:::-;18965:2;18960:3;18956:12;18949:19;;18608:366;;;:::o;18980:::-;19122:3;19143:67;19207:2;19202:3;19143:67;:::i;:::-;19136:74;;19219:93;19308:3;19219:93;:::i;:::-;19337:2;19332:3;19328:12;19321:19;;18980:366;;;:::o;19352:::-;19494:3;19515:67;19579:2;19574:3;19515:67;:::i;:::-;19508:74;;19591:93;19680:3;19591:93;:::i;:::-;19709:2;19704:3;19700:12;19693:19;;19352:366;;;:::o;19724:::-;19866:3;19887:67;19951:2;19946:3;19887:67;:::i;:::-;19880:74;;19963:93;20052:3;19963:93;:::i;:::-;20081:2;20076:3;20072:12;20065:19;;19724:366;;;:::o;20096:::-;20238:3;20259:67;20323:2;20318:3;20259:67;:::i;:::-;20252:74;;20335:93;20424:3;20335:93;:::i;:::-;20453:2;20448:3;20444:12;20437:19;;20096:366;;;:::o;20468:::-;20610:3;20631:67;20695:2;20690:3;20631:67;:::i;:::-;20624:74;;20707:93;20796:3;20707:93;:::i;:::-;20825:2;20820:3;20816:12;20809:19;;20468:366;;;:::o;20840:::-;20982:3;21003:67;21067:2;21062:3;21003:67;:::i;:::-;20996:74;;21079:93;21168:3;21079:93;:::i;:::-;21197:2;21192:3;21188:12;21181:19;;20840:366;;;:::o;21212:::-;21354:3;21375:67;21439:2;21434:3;21375:67;:::i;:::-;21368:74;;21451:93;21540:3;21451:93;:::i;:::-;21569:2;21564:3;21560:12;21553:19;;21212:366;;;:::o;21584:::-;21726:3;21747:67;21811:2;21806:3;21747:67;:::i;:::-;21740:74;;21823:93;21912:3;21823:93;:::i;:::-;21941:2;21936:3;21932:12;21925:19;;21584:366;;;:::o;21956:402::-;22116:3;22137:85;22219:2;22214:3;22137:85;:::i;:::-;22130:92;;22231:93;22320:3;22231:93;:::i;:::-;22349:2;22344:3;22340:12;22333:19;;21956:402;;;:::o;22364:366::-;22506:3;22527:67;22591:2;22586:3;22527:67;:::i;:::-;22520:74;;22603:93;22692:3;22603:93;:::i;:::-;22721:2;22716:3;22712:12;22705:19;;22364:366;;;:::o;22736:::-;22878:3;22899:67;22963:2;22958:3;22899:67;:::i;:::-;22892:74;;22975:93;23064:3;22975:93;:::i;:::-;23093:2;23088:3;23084:12;23077:19;;22736:366;;;:::o;23108:::-;23250:3;23271:67;23335:2;23330:3;23271:67;:::i;:::-;23264:74;;23347:93;23436:3;23347:93;:::i;:::-;23465:2;23460:3;23456:12;23449:19;;23108:366;;;:::o;23480:::-;23622:3;23643:67;23707:2;23702:3;23643:67;:::i;:::-;23636:74;;23719:93;23808:3;23719:93;:::i;:::-;23837:2;23832:3;23828:12;23821:19;;23480:366;;;:::o;23852:402::-;24012:3;24033:85;24115:2;24110:3;24033:85;:::i;:::-;24026:92;;24127:93;24216:3;24127:93;:::i;:::-;24245:2;24240:3;24236:12;24229:19;;23852:402;;;:::o;24260:366::-;24402:3;24423:67;24487:2;24482:3;24423:67;:::i;:::-;24416:74;;24499:93;24588:3;24499:93;:::i;:::-;24617:2;24612:3;24608:12;24601:19;;24260:366;;;:::o;24632:108::-;24709:24;24727:5;24709:24;:::i;:::-;24704:3;24697:37;24632:108;;:::o;24746:118::-;24833:24;24851:5;24833:24;:::i;:::-;24828:3;24821:37;24746:118;;:::o;24870:967::-;25252:3;25274:148;25418:3;25274:148;:::i;:::-;25267:155;;25439:95;25530:3;25521:6;25439:95;:::i;:::-;25432:102;;25551:148;25695:3;25551:148;:::i;:::-;25544:155;;25716:95;25807:3;25798:6;25716:95;:::i;:::-;25709:102;;25828:3;25821:10;;24870:967;;;;;:::o;25843:222::-;25936:4;25974:2;25963:9;25959:18;25951:26;;25987:71;26055:1;26044:9;26040:17;26031:6;25987:71;:::i;:::-;25843:222;;;;:::o;26071:1053::-;26394:4;26432:3;26421:9;26417:19;26409:27;;26446:71;26514:1;26503:9;26499:17;26490:6;26446:71;:::i;:::-;26527:72;26595:2;26584:9;26580:18;26571:6;26527:72;:::i;:::-;26646:9;26640:4;26636:20;26631:2;26620:9;26616:18;26609:48;26674:108;26777:4;26768:6;26674:108;:::i;:::-;26666:116;;26829:9;26823:4;26819:20;26814:2;26803:9;26799:18;26792:48;26857:108;26960:4;26951:6;26857:108;:::i;:::-;26849:116;;27013:9;27007:4;27003:20;26997:3;26986:9;26982:19;26975:49;27041:76;27112:4;27103:6;27041:76;:::i;:::-;27033:84;;26071:1053;;;;;;;;:::o;27130:751::-;27353:4;27391:3;27380:9;27376:19;27368:27;;27405:71;27473:1;27462:9;27458:17;27449:6;27405:71;:::i;:::-;27486:72;27554:2;27543:9;27539:18;27530:6;27486:72;:::i;:::-;27568;27636:2;27625:9;27621:18;27612:6;27568:72;:::i;:::-;27650;27718:2;27707:9;27703:18;27694:6;27650:72;:::i;:::-;27770:9;27764:4;27760:20;27754:3;27743:9;27739:19;27732:49;27798:76;27869:4;27860:6;27798:76;:::i;:::-;27790:84;;27130:751;;;;;;;;:::o;27887:373::-;28030:4;28068:2;28057:9;28053:18;28045:26;;28117:9;28111:4;28107:20;28103:1;28092:9;28088:17;28081:47;28145:108;28248:4;28239:6;28145:108;:::i;:::-;28137:116;;27887:373;;;;:::o;28266:634::-;28487:4;28525:2;28514:9;28510:18;28502:26;;28574:9;28568:4;28564:20;28560:1;28549:9;28545:17;28538:47;28602:108;28705:4;28696:6;28602:108;:::i;:::-;28594:116;;28757:9;28751:4;28747:20;28742:2;28731:9;28727:18;28720:48;28785:108;28888:4;28879:6;28785:108;:::i;:::-;28777:116;;28266:634;;;;;:::o;28906:210::-;28993:4;29031:2;29020:9;29016:18;29008:26;;29044:65;29106:1;29095:9;29091:17;29082:6;29044:65;:::i;:::-;28906:210;;;;:::o;29122:222::-;29215:4;29253:2;29242:9;29238:18;29230:26;;29266:71;29334:1;29323:9;29319:17;29310:6;29266:71;:::i;:::-;29122:222;;;;:::o;29350:313::-;29463:4;29501:2;29490:9;29486:18;29478:26;;29550:9;29544:4;29540:20;29536:1;29525:9;29521:17;29514:47;29578:78;29651:4;29642:6;29578:78;:::i;:::-;29570:86;;29350:313;;;;:::o;29669:419::-;29835:4;29873:2;29862:9;29858:18;29850:26;;29922:9;29916:4;29912:20;29908:1;29897:9;29893:17;29886:47;29950:131;30076:4;29950:131;:::i;:::-;29942:139;;29669:419;;;:::o;30094:::-;30260:4;30298:2;30287:9;30283:18;30275:26;;30347:9;30341:4;30337:20;30333:1;30322:9;30318:17;30311:47;30375:131;30501:4;30375:131;:::i;:::-;30367:139;;30094:419;;;:::o;30519:::-;30685:4;30723:2;30712:9;30708:18;30700:26;;30772:9;30766:4;30762:20;30758:1;30747:9;30743:17;30736:47;30800:131;30926:4;30800:131;:::i;:::-;30792:139;;30519:419;;;:::o;30944:::-;31110:4;31148:2;31137:9;31133:18;31125:26;;31197:9;31191:4;31187:20;31183:1;31172:9;31168:17;31161:47;31225:131;31351:4;31225:131;:::i;:::-;31217:139;;30944:419;;;:::o;31369:::-;31535:4;31573:2;31562:9;31558:18;31550:26;;31622:9;31616:4;31612:20;31608:1;31597:9;31593:17;31586:47;31650:131;31776:4;31650:131;:::i;:::-;31642:139;;31369:419;;;:::o;31794:::-;31960:4;31998:2;31987:9;31983:18;31975:26;;32047:9;32041:4;32037:20;32033:1;32022:9;32018:17;32011:47;32075:131;32201:4;32075:131;:::i;:::-;32067:139;;31794:419;;;:::o;32219:::-;32385:4;32423:2;32412:9;32408:18;32400:26;;32472:9;32466:4;32462:20;32458:1;32447:9;32443:17;32436:47;32500:131;32626:4;32500:131;:::i;:::-;32492:139;;32219:419;;;:::o;32644:::-;32810:4;32848:2;32837:9;32833:18;32825:26;;32897:9;32891:4;32887:20;32883:1;32872:9;32868:17;32861:47;32925:131;33051:4;32925:131;:::i;:::-;32917:139;;32644:419;;;:::o;33069:::-;33235:4;33273:2;33262:9;33258:18;33250:26;;33322:9;33316:4;33312:20;33308:1;33297:9;33293:17;33286:47;33350:131;33476:4;33350:131;:::i;:::-;33342:139;;33069:419;;;:::o;33494:::-;33660:4;33698:2;33687:9;33683:18;33675:26;;33747:9;33741:4;33737:20;33733:1;33722:9;33718:17;33711:47;33775:131;33901:4;33775:131;:::i;:::-;33767:139;;33494:419;;;:::o;33919:::-;34085:4;34123:2;34112:9;34108:18;34100:26;;34172:9;34166:4;34162:20;34158:1;34147:9;34143:17;34136:47;34200:131;34326:4;34200:131;:::i;:::-;34192:139;;33919:419;;;:::o;34344:::-;34510:4;34548:2;34537:9;34533:18;34525:26;;34597:9;34591:4;34587:20;34583:1;34572:9;34568:17;34561:47;34625:131;34751:4;34625:131;:::i;:::-;34617:139;;34344:419;;;:::o;34769:::-;34935:4;34973:2;34962:9;34958:18;34950:26;;35022:9;35016:4;35012:20;35008:1;34997:9;34993:17;34986:47;35050:131;35176:4;35050:131;:::i;:::-;35042:139;;34769:419;;;:::o;35194:::-;35360:4;35398:2;35387:9;35383:18;35375:26;;35447:9;35441:4;35437:20;35433:1;35422:9;35418:17;35411:47;35475:131;35601:4;35475:131;:::i;:::-;35467:139;;35194:419;;;:::o;35619:::-;35785:4;35823:2;35812:9;35808:18;35800:26;;35872:9;35866:4;35862:20;35858:1;35847:9;35843:17;35836:47;35900:131;36026:4;35900:131;:::i;:::-;35892:139;;35619:419;;;:::o;36044:::-;36210:4;36248:2;36237:9;36233:18;36225:26;;36297:9;36291:4;36287:20;36283:1;36272:9;36268:17;36261:47;36325:131;36451:4;36325:131;:::i;:::-;36317:139;;36044:419;;;:::o;36469:222::-;36562:4;36600:2;36589:9;36585:18;36577:26;;36613:71;36681:1;36670:9;36666:17;36657:6;36613:71;:::i;:::-;36469:222;;;;:::o;36697:332::-;36818:4;36856:2;36845:9;36841:18;36833:26;;36869:71;36937:1;36926:9;36922:17;36913:6;36869:71;:::i;:::-;36950:72;37018:2;37007:9;37003:18;36994:6;36950:72;:::i;:::-;36697:332;;;;;:::o;37035:129::-;37069:6;37096:20;;:::i;:::-;37086:30;;37125:33;37153:4;37145:6;37125:33;:::i;:::-;37035:129;;;:::o;37170:75::-;37203:6;37236:2;37230:9;37220:19;;37170:75;:::o;37251:311::-;37328:4;37418:18;37410:6;37407:30;37404:56;;;37440:18;;:::i;:::-;37404:56;37490:4;37482:6;37478:17;37470:25;;37550:4;37544;37540:15;37532:23;;37251:311;;;:::o;37568:::-;37645:4;37735:18;37727:6;37724:30;37721:56;;;37757:18;;:::i;:::-;37721:56;37807:4;37799:6;37795:17;37787:25;;37867:4;37861;37857:15;37849:23;;37568:311;;;:::o;37885:307::-;37946:4;38036:18;38028:6;38025:30;38022:56;;;38058:18;;:::i;:::-;38022:56;38096:29;38118:6;38096:29;:::i;:::-;38088:37;;38180:4;38174;38170:15;38162:23;;37885:307;;;:::o;38198:308::-;38260:4;38350:18;38342:6;38339:30;38336:56;;;38372:18;;:::i;:::-;38336:56;38410:29;38432:6;38410:29;:::i;:::-;38402:37;;38494:4;38488;38484:15;38476:23;;38198:308;;;:::o;38512:132::-;38579:4;38602:3;38594:11;;38632:4;38627:3;38623:14;38615:22;;38512:132;;;:::o;38650:114::-;38717:6;38751:5;38745:12;38735:22;;38650:114;;;:::o;38770:98::-;38821:6;38855:5;38849:12;38839:22;;38770:98;;;:::o;38874:99::-;38926:6;38960:5;38954:12;38944:22;;38874:99;;;:::o;38979:113::-;39049:4;39081;39076:3;39072:14;39064:22;;38979:113;;;:::o;39098:184::-;39197:11;39231:6;39226:3;39219:19;39271:4;39266:3;39262:14;39247:29;;39098:184;;;;:::o;39288:168::-;39371:11;39405:6;39400:3;39393:19;39445:4;39440:3;39436:14;39421:29;;39288:168;;;;:::o;39462:169::-;39546:11;39580:6;39575:3;39568:19;39620:4;39615:3;39611:14;39596:29;;39462:169;;;;:::o;39637:148::-;39739:11;39776:3;39761:18;;39637:148;;;;:::o;39791:305::-;39831:3;39850:20;39868:1;39850:20;:::i;:::-;39845:25;;39884:20;39902:1;39884:20;:::i;:::-;39879:25;;40038:1;39970:66;39966:74;39963:1;39960:81;39957:107;;;40044:18;;:::i;:::-;39957:107;40088:1;40085;40081:9;40074:16;;39791:305;;;;:::o;40102:348::-;40142:7;40165:20;40183:1;40165:20;:::i;:::-;40160:25;;40199:20;40217:1;40199:20;:::i;:::-;40194:25;;40387:1;40319:66;40315:74;40312:1;40309:81;40304:1;40297:9;40290:17;40286:105;40283:131;;;40394:18;;:::i;:::-;40283:131;40442:1;40439;40435:9;40424:20;;40102:348;;;;:::o;40456:191::-;40496:4;40516:20;40534:1;40516:20;:::i;:::-;40511:25;;40550:20;40568:1;40550:20;:::i;:::-;40545:25;;40589:1;40586;40583:8;40580:34;;;40594:18;;:::i;:::-;40580:34;40639:1;40636;40632:9;40624:17;;40456:191;;;;:::o;40653:96::-;40690:7;40719:24;40737:5;40719:24;:::i;:::-;40708:35;;40653:96;;;:::o;40755:90::-;40789:7;40832:5;40825:13;40818:21;40807:32;;40755:90;;;:::o;40851:77::-;40888:7;40917:5;40906:16;;40851:77;;;:::o;40934:149::-;40970:7;41010:66;41003:5;40999:78;40988:89;;40934:149;;;:::o;41089:126::-;41126:7;41166:42;41159:5;41155:54;41144:65;;41089:126;;;:::o;41221:77::-;41258:7;41287:5;41276:16;;41221:77;;;:::o;41304:154::-;41388:6;41383:3;41378;41365:30;41450:1;41441:6;41436:3;41432:16;41425:27;41304:154;;;:::o;41464:307::-;41532:1;41542:113;41556:6;41553:1;41550:13;41542:113;;;41641:1;41636:3;41632:11;41626:18;41622:1;41617:3;41613:11;41606:39;41578:2;41575:1;41571:10;41566:15;;41542:113;;;41673:6;41670:1;41667:13;41664:101;;;41753:1;41744:6;41739:3;41735:16;41728:27;41664:101;41513:258;41464:307;;;:::o;41777:171::-;41816:3;41839:24;41857:5;41839:24;:::i;:::-;41830:33;;41885:4;41878:5;41875:15;41872:41;;;41893:18;;:::i;:::-;41872:41;41940:1;41933:5;41929:13;41922:20;;41777:171;;;:::o;41954:320::-;41998:6;42035:1;42029:4;42025:12;42015:22;;42082:1;42076:4;42072:12;42103:18;42093:81;;42159:4;42151:6;42147:17;42137:27;;42093:81;42221:2;42213:6;42210:14;42190:18;42187:38;42184:84;;;42240:18;;:::i;:::-;42184:84;42005:269;41954:320;;;:::o;42280:281::-;42363:27;42385:4;42363:27;:::i;:::-;42355:6;42351:40;42493:6;42481:10;42478:22;42457:18;42445:10;42442:34;42439:62;42436:88;;;42504:18;;:::i;:::-;42436:88;42544:10;42540:2;42533:22;42323:238;42280:281;;:::o;42567:233::-;42606:3;42629:24;42647:5;42629:24;:::i;:::-;42620:33;;42675:66;42668:5;42665:77;42662:103;;;42745:18;;:::i;:::-;42662:103;42792:1;42785:5;42781:13;42774:20;;42567:233;;;:::o;42806:180::-;42854:77;42851:1;42844:88;42951:4;42948:1;42941:15;42975:4;42972:1;42965:15;42992:180;43040:77;43037:1;43030:88;43137:4;43134:1;43127:15;43161:4;43158:1;43151:15;43178:180;43226:77;43223:1;43216:88;43323:4;43320:1;43313:15;43347:4;43344:1;43337:15;43364:180;43412:77;43409:1;43402:88;43509:4;43506:1;43499:15;43533:4;43530:1;43523:15;43550:180;43598:77;43595:1;43588:88;43695:4;43692:1;43685:15;43719:4;43716:1;43709:15;43736:183;43771:3;43809:1;43791:16;43788:23;43785:128;;;43847:1;43844;43841;43826:23;43869:34;43900:1;43894:8;43869:34;:::i;:::-;43862:41;;43785:128;43736:183;:::o;43925:117::-;44034:1;44031;44024:12;44048:117;44157:1;44154;44147:12;44171:117;44280:1;44277;44270:12;44294:117;44403:1;44400;44393:12;44417:117;44526:1;44523;44516:12;44540:102;44581:6;44632:2;44628:7;44623:2;44616:5;44612:14;44608:28;44598:38;;44540:102;;;:::o;44648:106::-;44692:8;44741:5;44736:3;44732:15;44711:36;;44648:106;;;:::o;44760:239::-;44900:34;44896:1;44888:6;44884:14;44877:58;44969:22;44964:2;44956:6;44952:15;44945:47;44760:239;:::o;45005:234::-;45145:34;45141:1;45133:6;45129:14;45122:58;45214:17;45209:2;45201:6;45197:15;45190:42;45005:234;:::o;45245:182::-;45385:34;45381:1;45373:6;45369:14;45362:58;45245:182;:::o;45433:227::-;45573:34;45569:1;45561:6;45557:14;45550:58;45642:10;45637:2;45629:6;45625:15;45618:35;45433:227;:::o;45666:223::-;45806:34;45802:1;45794:6;45790:14;45783:58;45875:6;45870:2;45862:6;45858:15;45851:31;45666:223;:::o;45895:231::-;46035:34;46031:1;46023:6;46019:14;46012:58;46104:14;46099:2;46091:6;46087:15;46080:39;45895:231;:::o;46132:229::-;46272:34;46268:1;46260:6;46256:14;46249:58;46341:12;46336:2;46328:6;46324:15;46317:37;46132:229;:::o;46367:224::-;46507:34;46503:1;46495:6;46491:14;46484:58;46576:7;46571:2;46563:6;46559:15;46552:32;46367:224;:::o;46597:222::-;46737:34;46733:1;46725:6;46721:14;46714:58;46806:5;46801:2;46793:6;46789:15;46782:30;46597:222;:::o;46825:243::-;46965:34;46961:1;46953:6;46949:14;46942:58;47034:26;47029:2;47021:6;47017:15;47010:51;46825:243;:::o;47074:229::-;47214:34;47210:1;47202:6;47198:14;47191:58;47283:12;47278:2;47270:6;47266:15;47259:37;47074:229;:::o;47309:173::-;47449:25;47445:1;47437:6;47433:14;47426:49;47309:173;:::o;47488:228::-;47628:34;47624:1;47616:6;47612:14;47605:58;47697:11;47692:2;47684:6;47680:15;47673:36;47488:228;:::o;47722:::-;47862:34;47858:1;47850:6;47846:14;47839:58;47931:11;47926:2;47918:6;47914:15;47907:36;47722:228;:::o;47956:227::-;48096:34;48092:1;48084:6;48080:14;48073:58;48165:10;48160:2;48152:6;48148:15;48141:35;47956:227;:::o;48189:220::-;48329:34;48325:1;48317:6;48313:14;48306:58;48398:3;48393:2;48385:6;48381:15;48374:28;48189:220;:::o;48415:167::-;48555:19;48551:1;48543:6;48539:14;48532:43;48415:167;:::o;48588:234::-;48728:34;48724:1;48716:6;48712:14;48705:58;48797:17;48792:2;48784:6;48780:15;48773:42;48588:234;:::o;48828:711::-;48867:3;48905:4;48887:16;48884:26;48881:39;;;48913:5;;48881:39;48942:20;;:::i;:::-;49017:1;48999:16;48995:24;48992:1;48986:4;48971:49;49050:4;49044:11;49149:16;49142:4;49134:6;49130:17;49127:39;49094:18;49086:6;49083:30;49067:113;49064:146;;;49195:5;;;;49064:146;49241:6;49235:4;49231:17;49277:3;49271:10;49304:18;49296:6;49293:30;49290:43;;;49326:5;;;;;;49290:43;49374:6;49367:4;49362:3;49358:14;49354:27;49433:1;49415:16;49411:24;49405:4;49401:35;49396:3;49393:44;49390:57;;;49440:5;;;;;;;49390:57;49457;49505:6;49499:4;49495:17;49487:6;49483:30;49477:4;49457:57;:::i;:::-;49530:3;49523:10;;48871:668;;;;;48828:711;;:::o;49545:122::-;49618:24;49636:5;49618:24;:::i;:::-;49611:5;49608:35;49598:63;;49657:1;49654;49647:12;49598:63;49545:122;:::o;49673:116::-;49743:21;49758:5;49743:21;:::i;:::-;49736:5;49733:32;49723:60;;49779:1;49776;49769:12;49723:60;49673:116;:::o;49795:122::-;49868:24;49886:5;49868:24;:::i;:::-;49861:5;49858:35;49848:63;;49907:1;49904;49897:12;49848:63;49795:122;:::o;49923:120::-;49995:23;50012:5;49995:23;:::i;:::-;49988:5;49985:34;49975:62;;50033:1;50030;50023:12;49975:62;49923:120;:::o;50049:122::-;50122:24;50140:5;50122:24;:::i;:::-;50115:5;50112:35;50102:63;;50161:1;50158;50151:12;50102:63;50049:122;:::o

Swarm Source

ipfs://e5a9fc5edb63cb0dd8bdd97d4ec6c93da0e379302da02f2032b0bb4edec5a6ca
Loading...
Loading
Loading...
Loading
[ 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.