ETH Price: $2,948.83 (-6.60%)
Gas: 7 Gwei

Token

KalebsEditions (KJEDT)
 

Overview

Max Total Supply

184 KJEDT

Holders

131

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dingleberry.eth
0x807ea4c5d7945dfea05d358473fee6042e92cf37
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:
KalebsEditions

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/utils/Counters.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

// 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 v4.4.1 (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 Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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 v4.4.1 (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, _msgSender());
        _;
    }

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

    /**
     * @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 {
        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 override returns (bytes32) {
        return _roles[role].adminRole;
    }

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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.
        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. 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 v4.4.1 (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 be 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 v4.4.1 (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: balance query for the zero address");
        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 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: transfer caller is not 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();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), 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);

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

        _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();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * 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);

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

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * 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();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * 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);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "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 `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 _beforeTokenTransfer(
        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/ERC1155Supply.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    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);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

// 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 v4.4.1 (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 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 owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

// File: AbstractEditionContract.sol



pragma solidity ^0.8.4;






abstract contract AbstractEditionContract is AccessControl, ERC1155Pausable, ERC1155Supply, ERC1155Burnable, Ownable {
    
    string public name_;
    string public symbol_;
    
    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }    

    function setURI(string memory baseURI) external onlyOwner {
        _setURI(baseURI);
    }    

    function name() public view returns (string memory) {
        return name_;
    }

    function symbol() public view returns (string memory) {
        return symbol_;
    }          

    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override {
        super._mint(account, id, amount, data);
    }

    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override{
        super._mintBatch(to, ids, amounts, data);
    }

    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual override {
        super._burn(account, id, amount);
    }

    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual override {
        super._burnBatch(account, ids, amounts);
    }  

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155Pausable, ERC1155, ERC1155Supply) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }  

    function setOwner(address _addr) public onlyOwner {
        transferOwnership(_addr);
    }

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

}
// File: KalebsEditions.sol


// Based on contract by  Dev by @bitcoinski +  @ultra_dao. Extended by @georgefatlion
pragma solidity ^0.8.4;







contract KalebsEditions is AbstractEditionContract  {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private editionCounter; 
    
    event Claimed(uint index, address indexed account, uint amount);
    event ClaimedMultiple(uint[] index, address indexed account, uint[] amount);

    mapping(uint256 => Edition) public editions;
    string public _contractURI;

    struct Edition {
        bytes32 merkleRoot;
        bool saleIsOpen;
        uint256 mintPrice;
        uint256 maxSupply;
        uint256 maxPerWallet;
        uint256 maxMintPerTxn;
        string metadataLink;
        bool merkleProtect;
        bool claimMultiple;
        mapping(address => uint256) claimedAddress;
    }
   
    constructor(
        string memory _name, 
        string memory _symbol
    ) ERC1155("Editions") {
        name_ = _name;
        symbol_ = _symbol;
    }

    function addEdition(
        bytes32 _merkleRoot, 
        uint256 _mintPrice, 
        uint256 _maxSupply,
        uint256 _maxMintPerTxn,
        string memory _metadataLink,
        uint256 _maxPerWallet,
        bool _merkleProtect
    ) external onlyOwner {
        Edition storage edition = editions[editionCounter.current()];
        edition.saleIsOpen = false;
        edition.merkleRoot = _merkleRoot;
        edition.mintPrice = _mintPrice;
        edition.maxSupply = _maxSupply;
        edition.maxMintPerTxn = _maxMintPerTxn;
        edition.maxPerWallet = _maxPerWallet;
        edition.metadataLink = _metadataLink;
        edition.merkleProtect = _merkleProtect;
        edition.claimMultiple = false;
        editionCounter.increment();
    }

    function editEdition(
        bytes32 _merkleRoot, 
        uint256 _mintPrice, 
        uint256 _maxSupply,
        uint256 _maxMintPerTxn,
        string memory _metadataLink,        
        uint256 _editionIndex,
        bool _saleIsOpen,
        uint256 _maxPerWallet,
        bool _merkleProtect,
        bool _claimMultiple

    ) external onlyOwner {
        if(editions[_editionIndex].merkleRoot != _merkleRoot){
            editions[_editionIndex].merkleRoot = _merkleRoot;
        }
        if(editions[_editionIndex].mintPrice != _mintPrice){
            editions[_editionIndex].mintPrice = _mintPrice;  
        }
        if(editions[_editionIndex].maxSupply != _maxSupply){
            editions[_editionIndex].maxSupply = _maxSupply;    
        }
        if(editions[_editionIndex].maxMintPerTxn != _maxMintPerTxn){
            editions[_editionIndex].maxMintPerTxn = _maxMintPerTxn; 
        }
        editions[_editionIndex].metadataLink = _metadataLink;   
         
        if(editions[_editionIndex].saleIsOpen != _saleIsOpen){
            editions[_editionIndex].saleIsOpen = _saleIsOpen; 
        }
        if(editions[_editionIndex].maxPerWallet != _maxPerWallet){
            editions[_editionIndex].maxPerWallet = _maxPerWallet; 
        }
        if(editions[_editionIndex].merkleProtect != _merkleProtect){
            editions[_editionIndex].merkleProtect = _merkleProtect;
        }
        if(editions[_editionIndex].claimMultiple = _claimMultiple){
            editions[_editionIndex].claimMultiple = _claimMultiple;
        }
    }       

    function claim(
        uint256 numPieces,
        uint256 amount,
        uint256 editionIndex,
        bytes32[] calldata merkleProof
    ) external payable {
        // verify call is valid
        require(isValidClaim(numPieces,amount,editionIndex,merkleProof));
        
        _mint(msg.sender, editionIndex, numPieces, "");
        editions[editionIndex].claimedAddress[msg.sender] = editions[editionIndex].claimedAddress[msg.sender].add(numPieces);

        emit Claimed(editionIndex, msg.sender, numPieces);
    }

    function claimMultiple(
        uint256[] calldata numPieces,
        uint256[] calldata amounts,
        uint256[] calldata editionIndexes,
        bytes32[][] calldata merkleProofs
    ) external payable {

         // verify contract is not paused
        require(!paused(), "Claim: claiming is paused");

        //validate all tokens being claimed and aggregate a total cost due
        uint256 totalPrice = 0;
        for (uint i=0; i< editionIndexes.length; i++) {
            require(isValidClaim(numPieces[i],amounts[i],editionIndexes[i],merkleProofs[i]), "One or more claims are invalid");
            require(editions[editionIndexes[i]].claimMultiple, "Claim multiple not enabled.");

            totalPrice.add(numPieces[i].mul(editions[editionIndexes[i]].mintPrice));
        }
        // check the message has enough value to cover all tokens. 
        require(msg.value >= totalPrice, "Value not enough to cover all transactions");

        for (uint i=0; i< editionIndexes.length; i++) {
            require(isValidClaim(numPieces[i],amounts[i],editionIndexes[i],merkleProofs[i]), "One or more claims are invalid");

            editions[editionIndexes[i]].claimedAddress[msg.sender] = editions[editionIndexes[i]].claimedAddress[msg.sender].add(numPieces[i]);
        } 

        _mintBatch(msg.sender, editionIndexes, numPieces, "");

        emit ClaimedMultiple(editionIndexes, msg.sender, numPieces);
    }

    function mint(
        address to,
        uint256 editionIndex,
        uint256 numPieces
    ) public onlyOwner
    {
        _mint(to, editionIndex, numPieces, "");
    }

    function mintBatch(
        address to,
        uint256[] calldata editionIndexes,
        uint256[] calldata numPieces
    ) public onlyOwner
    {
        _mintBatch(to, editionIndexes, numPieces, "");
    }

    function isValidClaim( uint256 numPieces,
        uint256 amount,
        uint256 editionIndex,
        bytes32[] calldata merkleProof) internal view returns (bool) {
         // verify contract is not paused
        require(!paused(), "Claim: claiming is paused");
        // verify edition for given index exists
        require(editions[editionIndex].maxSupply != 0, "Claim: Edition does not exist");
        // verify sale for given edition is open. 
        require(editions[editionIndex].saleIsOpen, "Sale is paused");
        // Verify minting price
        require(msg.value >= numPieces.mul(editions[editionIndex].mintPrice), "Claim: Ether value incorrect");
        // Verify numPieces is within remaining claimable amount 
        require(editions[editionIndex].claimedAddress[msg.sender].add(numPieces) <= amount, "Claim: Not allowed to claim given amount");
        require(editions[editionIndex].claimedAddress[msg.sender].add(numPieces) <= editions[editionIndex].maxPerWallet, "Claim: Not allowed to claim that many from one wallet");
        require(numPieces <= editions[editionIndex].maxMintPerTxn, "Max quantity per transaction exceeded");

        require(totalSupply(editionIndex) + numPieces <= editions[editionIndex].maxSupply, "Purchase would exceed max supply");
                
        bool isValid = true;
        if (editions[editionIndex].merkleProtect)
        {
            isValid = verifyMerkleProof(merkleProof, editions[editionIndex].merkleRoot);
            require(
                isValid,
                "MerkleDistributor: Invalid proof." 
            );  
        }
        return isValid;
    }

    function isSaleOpen(uint256 editionIndex) public view returns (bool) {
        return editions[editionIndex].saleIsOpen;
    }

    function setSaleState(uint256 editionIndex, bool state) external onlyOwner{
         editions[editionIndex].saleIsOpen = state;
    }

    function verifyMerkleProof(bytes32[] memory proof, bytes32 root)
        public
        view
        returns (bool)
    {

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, root, leaf);
    }

    function char(bytes1 b) internal pure returns (bytes1 c) {
        if (uint8(b) < 10) return bytes1(uint8(b) + 0x30);
        else return bytes1(uint8(b) + 0x57);
    }
    
    function withdrawEther(address payable _to, uint256 _amount) public onlyOwner
    {
        _to.transfer(_amount);
    }
    
    function getClaimedMps(uint256 poolId, address userAdress) public view returns (uint256) {
        return editions[poolId].claimedAddress[userAdress];
    }

    function uri(uint256 _id) public view override returns (string memory) {
            require(totalSupply(_id) > 0, "URI: nonexistent token");
            return string(editions[_id].metadataLink);
    } 

    function setContractURI(string memory newURI) external onlyOwner{
        _contractURI = newURI;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":"uint256","name":"index","type":"uint256"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"index","type":"uint256[]"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"ClaimedMultiple","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintPerTxn","type":"uint256"},{"internalType":"string","name":"_metadataLink","type":"string"},{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"},{"internalType":"bool","name":"_merkleProtect","type":"bool"}],"name":"addEdition","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":"uint256","name":"numPieces","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"editionIndex","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"numPieces","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256[]","name":"editionIndexes","type":"uint256[]"},{"internalType":"bytes32[][]","name":"merkleProofs","type":"bytes32[][]"}],"name":"claimMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintPerTxn","type":"uint256"},{"internalType":"string","name":"_metadataLink","type":"string"},{"internalType":"uint256","name":"_editionIndex","type":"uint256"},{"internalType":"bool","name":"_saleIsOpen","type":"bool"},{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"},{"internalType":"bool","name":"_merkleProtect","type":"bool"},{"internalType":"bool","name":"_claimMultiple","type":"bool"}],"name":"editEdition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"editions","outputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"bool","name":"saleIsOpen","type":"bool"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTxn","type":"uint256"},{"internalType":"string","name":"metadataLink","type":"string"},{"internalType":"bool","name":"merkleProtect","type":"bool"},{"internalType":"bool","name":"claimMultiple","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"poolId","type":"uint256"},{"internalType":"address","name":"userAdress","type":"address"}],"name":"getClaimedMps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"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":"uint256","name":"editionIndex","type":"uint256"}],"name":"isSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"editionIndex","type":"uint256"},{"internalType":"uint256","name":"numPieces","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"editionIndexes","type":"uint256[]"},{"internalType":"uint256[]","name":"numPieces","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionIndex","type":"uint256"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"verifyMerkleProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200467f3803806200467f833981016040819052620000349162000270565b60408051808201909152600881526745646974696f6e7360c01b60208201526200005e81620000a8565b506004805460ff191690556200007433620000c1565b81516200008990600790602085019062000113565b5080516200009f90600890602084019062000113565b5050506200032d565b8051620000bd90600390602084019062000113565b5050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012190620002da565b90600052602060002090601f01602090048101928262000145576000855562000190565b82601f106200016057805160ff191683800117855562000190565b8280016001018555821562000190579182015b828111156200019057825182559160200191906001019062000173565b506200019e929150620001a2565b5090565b5b808211156200019e5760008155600101620001a3565b600082601f830112620001cb57600080fd5b81516001600160401b0380821115620001e857620001e862000317565b604051601f8301601f19908116603f0116810190828211818310171562000213576200021362000317565b816040528381526020925086838588010111156200023057600080fd5b600091505b8382101562000254578582018301518183018401529082019062000235565b83821115620002665760008385830101525b9695505050505050565b600080604083850312156200028457600080fd5b82516001600160401b03808211156200029c57600080fd5b620002aa86838701620001b9565b93506020850151915080821115620002c157600080fd5b50620002d085828601620001b9565b9150509250929050565b600181811c90821680620002ef57607f821691505b602082108114156200031157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b614342806200033d6000396000f3fe6080604052600436106102715760003560e01c80636b20c4541161014f578063bd85b039116100c1578063e8a3d4851161007a578063e8a3d485146107a0578063e985e9c5146107b5578063ea25e176146107fe578063f242432a14610811578063f2fde38b14610831578063f5298aca1461085157600080fd5b8063bd85b039146106c2578063c0e72740146106ef578063c195a4ef14610704578063d547741f1461074b578063d81d0a151461076b578063e2b9e1861461078b57600080fd5b806391d148541161011357806391d1485414610623578063938e3d7b1461064357806395d89b4114610663578063a217fddf14610678578063a22cb4651461068d578063af17dea6146106ad57600080fd5b80636b20c45414610591578063715018a6146105b15780638456cb59146105c657806385a222ae146105db5780638da5cb5b146105fb57600080fd5b80632eb2c2d6116101e85780634e1273f4116101ac5780634e1273f4146104ca5780634f558e79146104f7578063522f6815146105265780635c975abb146105465780635f0440521461055e578063632c6f1f1461057e57600080fd5b80632eb2c2d6146104225780632f2ff15d1461044257806336568abe146104625780633f4ba83a146104825780634044556d1461049757600080fd5b806313af40351161023a57806313af40351461033d578063156e29f61461035d5780631d0a43941461037d578063248a9ca31461039d578063279c806e146103cd5780632913ebc01461040257600080fd5b8062fdd58e1461027657806301ffc9a7146102a957806302fe5305146102d957806306fdde03146102fb5780630e89341c1461031d575b600080fd5b34801561028257600080fd5b50610296610291366004613431565b610871565b6040519081526020015b60405180910390f35b3480156102b557600080fd5b506102c96102c4366004613aad565b61090a565b60405190151581526020016102a0565b3480156102e557600080fd5b506102f96102f4366004613ae7565b61091b565b005b34801561030757600080fd5b50610310610951565b6040516102a09190613e03565b34801561032957600080fd5b50610310610338366004613948565b6109e3565b34801561034957600080fd5b506102f9610358366004613414565b610adc565b34801561036957600080fd5b506102f96103783660046136d7565b610b0f565b34801561038957600080fd5b506102f9610398366004613986565b610b59565b3480156103a957600080fd5b506102966103b8366004613948565b60009081526020819052604090206001015490565b3480156103d957600080fd5b506103ed6103e8366004613948565b610c0f565b6040516102a099989796959493929190613daa565b34801561040e57600080fd5b506102f961041d366004613a03565b610cec565b34801561042e57600080fd5b506102f961043d366004613496565b610eed565b34801561044e57600080fd5b506102f961045d366004613961565b610f84565b34801561046e57600080fd5b506102f961047d366004613961565b610faa565b34801561048e57600080fd5b506102f9611028565b3480156104a357600080fd5b506102c96104b2366004613948565b6000908152600a602052604090206001015460ff1690565b3480156104d657600080fd5b506104ea6104e536600461370c565b61105c565b6040516102a09190613d69565b34801561050357600080fd5b506102c9610512366004613948565b600090815260056020526040902054151590565b34801561053257600080fd5b506102f9610541366004613431565b611185565b34801561055257600080fd5b5060045460ff166102c9565b34801561056a57600080fd5b506102c96105793660046137de565b6111e5565b6102f961058c366004613885565b611233565b34801561059d57600080fd5b506102f96105ac36600461362d565b6116b3565b3480156105bd57600080fd5b506102f96116f6565b3480156105d257600080fd5b506102f961172a565b3480156105e757600080fd5b506102f96105f6366004613b1b565b61175c565b34801561060757600080fd5b506006546040516001600160a01b0390911681526020016102a0565b34801561062f57600080fd5b506102c961063e366004613961565b6117a9565b34801561064f57600080fd5b506102f961065e366004613ae7565b6117d2565b34801561066f57600080fd5b5061031061180f565b34801561068457600080fd5b50610296600081565b34801561069957600080fd5b506102f96106a83660046136a2565b61181e565b3480156106b957600080fd5b50610310611829565b3480156106ce57600080fd5b506102966106dd366004613948565b60009081526005602052604090205490565b3480156106fb57600080fd5b506103106118b7565b34801561071057600080fd5b5061029661071f366004613961565b6000828152600a602090815260408083206001600160a01b038516845260080190915290205492915050565b34801561075757600080fd5b506102f9610766366004613961565b6118c4565b34801561077757600080fd5b506102f96107863660046135ab565b6118ea565b34801561079757600080fd5b50610310611990565b3480156107ac57600080fd5b5061031061199d565b3480156107c157600080fd5b506102c96107d036600461345d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6102f961080c366004613b3e565b6119ac565b34801561081d57600080fd5b506102f961082c366004613543565b611a67565b34801561083d57600080fd5b506102f961084c366004613414565b611aac565b34801561085d57600080fd5b506102f961086c3660046136d7565b611b44565b60006001600160a01b0383166108e25760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b600061091582611b87565b92915050565b6006546001600160a01b031633146109455760405162461bcd60e51b81526004016108d990613fbd565b61094e81611bc7565b50565b60606007805461096090614178565b80601f016020809104026020016040519081016040528092919081815260200182805461098c90614178565b80156109d95780601f106109ae576101008083540402835291602001916109d9565b820191906000526020600020905b8154815290600101906020018083116109bc57829003601f168201915b5050505050905090565b60008181526005602052604081205460609110610a3b5760405162461bcd60e51b81526020600482015260166024820152752aa9249d103737b732bc34b9ba32b73a103a37b5b2b760511b60448201526064016108d9565b6000828152600a602052604090206006018054610a5790614178565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8390614178565b8015610ad05780601f10610aa557610100808354040283529160200191610ad0565b820191906000526020600020905b815481529060010190602001808311610ab357829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610b065760405162461bcd60e51b81526004016108d990613fbd565b61094e81611aac565b6006546001600160a01b03163314610b395760405162461bcd60e51b81526004016108d990613fbd565b610b5483838360405180602001604052806000815250611bda565b505050565b6006546001600160a01b03163314610b835760405162461bcd60e51b81526004016108d990613fbd565b6000600a6000610b9260095490565b815260208082019290925260400160002060018101805460ff19169055898155600281018990556003810188905560058101879055600481018590558551909250610be591600684019190870190613231565b5060078101805461ffff191683151561ff0019161790556009805460010190555050505050505050565b600a602052600090815260409020805460018201546002830154600384015460048501546005860154600687018054969760ff909616969495939492939192610c5790614178565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8390614178565b8015610cd05780601f10610ca557610100808354040283529160200191610cd0565b820191906000526020600020905b815481529060010190602001808311610cb357829003601f168201915b5050506007909301549192505060ff8082169161010090041689565b6006546001600160a01b03163314610d165760405162461bcd60e51b81526004016108d990613fbd565b6000858152600a60205260409020548a14610d3d576000858152600a602052604090208a90555b6000858152600a60205260409020600201548914610d6a576000858152600a602052604090206002018990555b6000858152600a60205260409020600301548814610d97576000858152600a602052604090206003018890555b6000858152600a60205260409020600501548714610dc4576000858152600a602052604090206005018790555b6000858152600a602090815260409091208751610de992600690920191890190613231565b506000858152600a602052604090206001015460ff16151584151514610e27576000858152600a60205260409020600101805460ff19168515151790555b6000858152600a60205260409020600401548314610e54576000858152600a602052604090206004018390555b6000858152600a602052604090206007015460ff16151582151514610e91576000858152600a60205260409020600701805460ff19168315151790555b6000858152600a602052604090206007018054821580156101000261ff001990921691909117909155610ee1576000858152600a60205260409020600701805461ff001916610100831515021790555b50505050505050505050565b6001600160a01b038516331480610f095750610f0985336107d0565b610f705760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108d9565b610f7d8585858585611bec565b5050505050565b600082815260208190526040902060010154610fa08133611d99565b610b548383611dfd565b6001600160a01b038116331461101a5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016108d9565b6110248282611e81565b5050565b6006546001600160a01b031633146110525760405162461bcd60e51b81526004016108d990613fbd565b61105a611ee6565b565b606081518351146110c15760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016108d9565b600083516001600160401b038111156110dc576110dc614226565b604051908082528060200260200182016040528015611105578160200160208202803683370190505b50905060005b845181101561117d5761115085828151811061112957611129614210565b602002602001015185838151811061114357611143614210565b6020026020010151610871565b82828151811061116257611162614210565b6020908102919091010152611176816141df565b905061110b565b509392505050565b6006546001600160a01b031633146111af5760405162461bcd60e51b81526004016108d990613fbd565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610b54573d6000803e3d6000fd5b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160405160208183030381529060405280519060200120905061122b848483611f79565b949350505050565b60045460ff16156112825760405162461bcd60e51b815260206004820152601960248201527810db185a5b4e8818db185a5b5a5b99c81a5cc81c185d5cd959603a1b60448201526064016108d9565b6000805b8481101561144f576113058a8a838181106112a3576112a3614210565b905060200201358989848181106112bc576112bc614210565b905060200201358888858181106112d5576112d5614210565b905060200201358787868181106112ee576112ee614210565b9050602002810190611300919061407b565b611f8f565b6113515760405162461bcd60e51b815260206004820152601e60248201527f4f6e65206f72206d6f726520636c61696d732061726520696e76616c6964000060448201526064016108d9565b600a600087878481811061136757611367614210565b90506020020135815260200190815260200160002060070160019054906101000a900460ff166113d95760405162461bcd60e51b815260206004820152601b60248201527f436c61696d206d756c7469706c65206e6f7420656e61626c65642e000000000060448201526064016108d9565b61143c611435600a60008989868181106113f5576113f5614210565b905060200201358152602001908152602001600020600201548c8c8581811061142057611420614210565b905060200201356123d490919063ffffffff16565b83906123e7565b5080611447816141df565b915050611286565b50803410156114b35760405162461bcd60e51b815260206004820152602a60248201527f56616c7565206e6f7420656e6f75676820746f20636f76657220616c6c207472604482015269616e73616374696f6e7360b01b60648201526084016108d9565b60005b848110156115d3576114d38a8a838181106112a3576112a3614210565b61151f5760405162461bcd60e51b815260206004820152601e60248201527f4f6e65206f72206d6f726520636c61696d732061726520696e76616c6964000060448201526064016108d9565b6115818a8a8381811061153457611534614210565b90506020020135600a600089898681811061155157611551614210565b602090810292909201358352508181019290925260409081016000908120338252600801909252902054906123e7565b600a600088888581811061159757611597614210565b602090810292909201358352508181019290925260409081016000908120338252600801909252902055806115cb816141df565b9150506114b6565b5061166133868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508b8b808060200260200160405190810160405280939291908181526020018383602002808284376000920182905250604080516020810190915290815292506123f3915050565b336001600160a01b03167f1f36743b8f77937c5a06ebeca4819ea0c795222f7ecf5a42583ff5d0063adabf86868c8c6040516116a09493929190613d42565b60405180910390a2505050505050505050565b6001600160a01b0383163314806116cf57506116cf83336107d0565b6116eb5760405162461bcd60e51b81526004016108d990613ea2565b610b548383836123ff565b6006546001600160a01b031633146117205760405162461bcd60e51b81526004016108d990613fbd565b61105a600061240a565b6006546001600160a01b031633146117545760405162461bcd60e51b81526004016108d990613fbd565b61105a61245c565b6006546001600160a01b031633146117865760405162461bcd60e51b81526004016108d990613fbd565b6000918252600a6020526040909120600101805460ff1916911515919091179055565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6006546001600160a01b031633146117fc5760405162461bcd60e51b81526004016108d990613fbd565b805161102490600b906020840190613231565b60606008805461096090614178565b6110243383836124d7565b6008805461183690614178565b80601f016020809104026020016040519081016040528092919081815260200182805461186290614178565b80156118af5780601f10611884576101008083540402835291602001916118af565b820191906000526020600020905b81548152906001019060200180831161189257829003601f168201915b505050505081565b600b805461183690614178565b6000828152602081905260409020600101546118e08133611d99565b610b548383611e81565b6006546001600160a01b031633146119145760405162461bcd60e51b81526004016108d990613fbd565b610f7d85858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040805160208089028281018201909352888252909350889250879182918501908490808284376000920182905250604080516020810190915290815292506123f3915050565b6007805461183690614178565b6060600b805461096090614178565b6119b98585858585611f8f565b6119c257600080fd5b6119dd33848760405180602001604052806000815250611bda565b6000838152600a60209081526040808320338452600801909152902054611a0490866123e7565b6000848152600a6020908152604080832033808552600890910183529281902093909355825186815290810188905290917f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed026910160405180910390a25050505050565b6001600160a01b038516331480611a835750611a8385336107d0565b611a9f5760405162461bcd60e51b81526004016108d990613ea2565b610f7d85858585856125b8565b6006546001600160a01b03163314611ad65760405162461bcd60e51b81526004016108d990613fbd565b6001600160a01b038116611b3b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d9565b61094e8161240a565b6001600160a01b038316331480611b605750611b6083336107d0565b611b7c5760405162461bcd60e51b81526004016108d990613ea2565b610b548383836126e8565b60006001600160e01b03198216636cdb3d1360e11b1480611bb857506001600160e01b031982166303a24d0760e21b145b806109155750610915826126f3565b8051611024906003906020840190613231565b611be684848484612728565b50505050565b8151835114611c0d5760405162461bcd60e51b81526004016108d990613ff2565b6001600160a01b038416611c335760405162461bcd60e51b81526004016108d990613eeb565b33611c428187878787876127f1565b60005b8451811015611d2b576000858281518110611c6257611c62614210565b602002602001015190506000858381518110611c8057611c80614210565b60209081029190910181015160008481526001835260408082206001600160a01b038e168352909352919091205490915081811015611cd15760405162461bcd60e51b81526004016108d990613f73565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611d109084906140e7565b9250508190555050505080611d24906141df565b9050611c45565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611d7b929190613d7c565b60405180910390a4611d918187878787876127ff565b505050505050565b611da382826117a9565b61102457611dbb816001600160a01b0316601461296a565b611dc683602061296a565b604051602001611dd7929190613c2a565b60408051601f198184030181529082905262461bcd60e51b82526108d991600401613e03565b611e0782826117a9565b611024576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611e3d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611e8b82826117a9565b15611024576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60045460ff16611f2f5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108d9565b6004805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600082611f868584612b05565b14949350505050565b6000611f9d60045460ff1690565b15611fe65760405162461bcd60e51b815260206004820152601960248201527810db185a5b4e8818db185a5b5a5b99c81a5cc81c185d5cd959603a1b60448201526064016108d9565b6000848152600a60205260409020600301546120445760405162461bcd60e51b815260206004820152601d60248201527f436c61696d3a2045646974696f6e20646f6573206e6f7420657869737400000060448201526064016108d9565b6000848152600a602052604090206001015460ff166120965760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b60448201526064016108d9565b6000848152600a60205260409020600201546120b39087906123d4565b3410156121025760405162461bcd60e51b815260206004820152601c60248201527f436c61696d3a2045746865722076616c756520696e636f72726563740000000060448201526064016108d9565b6000848152600a60209081526040808320338452600801909152902054859061212b90886123e7565b111561218a5760405162461bcd60e51b815260206004820152602860248201527f436c61696d3a204e6f7420616c6c6f77656420746f20636c61696d20676976656044820152671b88185b5bdd5b9d60c21b60648201526084016108d9565b6000848152600a6020908152604080832060048101543385526008909101909252909120546121b990886123e7565b11156122255760405162461bcd60e51b815260206004820152603560248201527f436c61696d3a204e6f7420616c6c6f77656420746f20636c61696d2074686174604482015274081b585b9e48199c9bdb481bdb99481dd85b1b195d605a1b60648201526084016108d9565b6000848152600a60205260409020600501548611156122945760405162461bcd60e51b815260206004820152602560248201527f4d6178207175616e7469747920706572207472616e73616374696f6e20657863604482015264195959195960da1b60648201526084016108d9565b6000848152600a60209081526040808320600301546005909252909120546122bd9088906140e7565b111561230b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016108d9565b6000848152600a602052604090206007015460019060ff16156123ca5761237184848080602002602001604051908101604052809392919081815260200183836020028082843760009201829052508a8152600a602052604090205492506111e5915050565b9050806123ca5760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b60648201526084016108d9565b9695505050505050565b60006123e082846140ff565b9392505050565b60006123e082846140e7565b611be684848484612ba9565b610b54838383612d04565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60045460ff16156124a25760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108d9565b6004805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f5c3390565b816001600160a01b0316836001600160a01b0316141561254b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016108d9565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166125de5760405162461bcd60e51b81526004016108d990613eeb565b336125fd8187876125ee88612e95565b6125f788612e95565b876127f1565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156126405760405162461bcd60e51b81526004016108d990613f73565b60008581526001602090815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061267f9084906140e7565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46126df828888888888612ee0565b50505050505050565b610b54838383612faa565b60006001600160e01b03198216637965db0b60e01b148061091557506301ffc9a760e01b6001600160e01b0319831614610915565b6001600160a01b03841661274e5760405162461bcd60e51b81526004016108d99061403a565b3361275f816000876125ee88612e95565b60008481526001602090815260408083206001600160a01b0389168452909152812080548592906127919084906140e7565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f7d81600087878787612ee0565b611d918686868686866130af565b6001600160a01b0384163b15611d915760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906128439089908990889088908890600401613c9f565b602060405180830381600087803b15801561285d57600080fd5b505af192505050801561288d575060408051601f3d908101601f1916820190925261288a91810190613aca565b60015b61293a5761289961423c565b806308c379a014156128d357506128ae614258565b806128b957506128d5565b8060405162461bcd60e51b81526004016108d99190613e03565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016108d9565b6001600160e01b0319811663bc197c8160e01b146126df5760405162461bcd60e51b81526004016108d990613e16565b606060006129798360026140ff565b6129849060026140e7565b6001600160401b0381111561299b5761299b614226565b6040519080825280601f01601f1916602001820160405280156129c5576020820181803683370190505b509050600360fc1b816000815181106129e0576129e0614210565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612a0f57612a0f614210565b60200101906001600160f81b031916908160001a9053506000612a338460026140ff565b612a3e9060016140e7565b90505b6001811115612ab6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612a7257612a72614210565b1a60f81b828281518110612a8857612a88614210565b60200101906001600160f81b031916908160001a90535060049490941c93612aaf81614161565b9050612a41565b5083156123e05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016108d9565b600081815b845181101561117d576000858281518110612b2757612b27614210565b60200260200101519050808311612b69576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612b96565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612ba1816141df565b915050612b0a565b6001600160a01b038416612bcf5760405162461bcd60e51b81526004016108d99061403a565b8151835114612bf05760405162461bcd60e51b81526004016108d990613ff2565b33612c00816000878787876127f1565b60005b8451811015612c9c57838181518110612c1e57612c1e614210565b602002602001015160016000878481518110612c3c57612c3c614210565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254612c8491906140e7565b90915550819050612c94816141df565b915050612c03565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612ced929190613d7c565b60405180910390a4610f7d816000878787876127ff565b6001600160a01b038316612d2a5760405162461bcd60e51b81526004016108d990613f30565b8051825114612d4b5760405162461bcd60e51b81526004016108d990613ff2565b6000339050612d6e818560008686604051806020016040528060008152506127f1565b60005b8351811015612e36576000848281518110612d8e57612d8e614210565b602002602001015190506000848381518110612dac57612dac614210565b60209081029190910181015160008481526001835260408082206001600160a01b038c168352909352919091205490915081811015612dfd5760405162461bcd60e51b81526004016108d990613e5e565b60009283526001602090815260408085206001600160a01b038b1686529091529092209103905580612e2e816141df565b915050612d71565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612e87929190613d7c565b60405180910390a450505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612ecf57612ecf614210565b602090810291909101015292915050565b6001600160a01b0384163b15611d915760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612f249089908990889088908890600401613cfd565b602060405180830381600087803b158015612f3e57600080fd5b505af1925050508015612f6e575060408051601f3d908101601f19168201909252612f6b91810190613aca565b60015b612f7a5761289961423c565b6001600160e01b0319811663f23a6e6160e01b146126df5760405162461bcd60e51b81526004016108d990613e16565b6001600160a01b038316612fd05760405162461bcd60e51b81526004016108d990613f30565b33612fff81856000612fe187612e95565b612fea87612e95565b604051806020016040528060008152506127f1565b60008381526001602090815260408083206001600160a01b0388168452909152902054828110156130425760405162461bcd60e51b81526004016108d990613e5e565b60008481526001602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6130bd8686868686866131c9565b6001600160a01b0385166131445760005b8351811015613142578281815181106130e9576130e9614210565b60200260200101516005600086848151811061310757613107614210565b60200260200101518152602001908152602001600020600082825461312c91906140e7565b9091555061313b9050816141df565b90506130ce565b505b6001600160a01b038416611d915760005b83518110156126df5782818151811061317057613170614210565b60200260200101516005600086848151811061318e5761318e614210565b6020026020010151815260200190815260200160002060008282546131b3919061411e565b909155506131c29050816141df565b9050613155565b60045460ff1615611d915760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b60648201526084016108d9565b82805461323d90614178565b90600052602060002090601f01602090048101928261325f57600085556132a5565b82601f1061327857805160ff19168380011785556132a5565b828001600101855582156132a5579182015b828111156132a557825182559160200191906001019061328a565b506132b19291506132b5565b5090565b5b808211156132b157600081556001016132b6565b60008083601f8401126132dc57600080fd5b5081356001600160401b038111156132f357600080fd5b6020830191508360208260051b850101111561330e57600080fd5b9250929050565b600082601f83011261332657600080fd5b81356020613333826140c4565b60405161334082826141b3565b8381528281019150858301600585901b8701840188101561336057600080fd5b60005b8581101561337f57813584529284019290840190600101613363565b5090979650505050505050565b8035801515811461339c57600080fd5b919050565b600082601f8301126133b257600080fd5b81356001600160401b038111156133cb576133cb614226565b6040516133e2601f8301601f1916602001826141b3565b8181528460208386010111156133f757600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561342657600080fd5b81356123e0816142e1565b6000806040838503121561344457600080fd5b823561344f816142e1565b946020939093013593505050565b6000806040838503121561347057600080fd5b823561347b816142e1565b9150602083013561348b816142e1565b809150509250929050565b600080600080600060a086880312156134ae57600080fd5b85356134b9816142e1565b945060208601356134c9816142e1565b935060408601356001600160401b03808211156134e557600080fd5b6134f189838a01613315565b9450606088013591508082111561350757600080fd5b61351389838a01613315565b9350608088013591508082111561352957600080fd5b50613536888289016133a1565b9150509295509295909350565b600080600080600060a0868803121561355b57600080fd5b8535613566816142e1565b94506020860135613576816142e1565b9350604086013592506060860135915060808601356001600160401b0381111561359f57600080fd5b613536888289016133a1565b6000806000806000606086880312156135c357600080fd5b85356135ce816142e1565b945060208601356001600160401b03808211156135ea57600080fd5b6135f689838a016132ca565b9096509450604088013591508082111561360f57600080fd5b5061361c888289016132ca565b969995985093965092949392505050565b60008060006060848603121561364257600080fd5b833561364d816142e1565b925060208401356001600160401b038082111561366957600080fd5b61367587838801613315565b9350604086013591508082111561368b57600080fd5b5061369886828701613315565b9150509250925092565b600080604083850312156136b557600080fd5b82356136c0816142e1565b91506136ce6020840161338c565b90509250929050565b6000806000606084860312156136ec57600080fd5b83356136f7816142e1565b95602085013595506040909401359392505050565b6000806040838503121561371f57600080fd5b82356001600160401b038082111561373657600080fd5b818501915085601f83011261374a57600080fd5b81356020613757826140c4565b60405161376482826141b3565b8381528281019150858301600585901b870184018b101561378457600080fd5b600096505b848710156137b057803561379c816142e1565b835260019690960195918301918301613789565b50965050860135925050808211156137c757600080fd5b506137d485828601613315565b9150509250929050565b600080604083850312156137f157600080fd5b82356001600160401b0381111561380757600080fd5b8301601f8101851361381857600080fd5b80356020613825826140c4565b60405161383282826141b3565b8381528281019150848301600585901b860184018a101561385257600080fd5b600095505b84861015613875578035835260019590950194918301918301613857565b5098969091013596505050505050565b6000806000806000806000806080898b0312156138a157600080fd5b88356001600160401b03808211156138b857600080fd5b6138c48c838d016132ca565b909a50985060208b01359150808211156138dd57600080fd5b6138e98c838d016132ca565b909850965060408b013591508082111561390257600080fd5b61390e8c838d016132ca565b909650945060608b013591508082111561392757600080fd5b506139348b828c016132ca565b999c989b5096995094979396929594505050565b60006020828403121561395a57600080fd5b5035919050565b6000806040838503121561397457600080fd5b82359150602083013561348b816142e1565b600080600080600080600060e0888a0312156139a157600080fd5b8735965060208801359550604088013594506060880135935060808801356001600160401b038111156139d357600080fd5b6139df8a828b016133a1565b93505060a088013591506139f560c0890161338c565b905092959891949750929550565b6000806000806000806000806000806101408b8d031215613a2357600080fd5b8a35995060208b0135985060408b0135975060608b0135965060808b01356001600160401b03811115613a5557600080fd5b613a618d828e016133a1565b96505060a08b01359450613a7760c08c0161338c565b935060e08b01359250613a8d6101008c0161338c565b9150613a9c6101208c0161338c565b90509295989b9194979a5092959850565b600060208284031215613abf57600080fd5b81356123e0816142f6565b600060208284031215613adc57600080fd5b81516123e0816142f6565b600060208284031215613af957600080fd5b81356001600160401b03811115613b0f57600080fd5b61122b848285016133a1565b60008060408385031215613b2e57600080fd5b823591506136ce6020840161338c565b600080600080600060808688031215613b5657600080fd5b85359450602086013593506040860135925060608601356001600160401b03811115613b8157600080fd5b61361c888289016132ca565b81835260006001600160fb1b03831115613ba657600080fd5b8260051b8083602087013760009401602001938452509192915050565b600081518084526020808501945080840160005b83811015613bf357815187529582019590820190600101613bd7565b509495945050505050565b60008151808452613c16816020860160208601614135565b601f01601f19169290920160200192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613c62816017850160208801614135565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613c93816028840160208801614135565b01602801949350505050565b6001600160a01b0386811682528516602082015260a060408201819052600090613ccb90830186613bc3565b8281036060840152613cdd8186613bc3565b90508281036080840152613cf18185613bfe565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090613d3790830184613bfe565b979650505050505050565b604081526000613d56604083018688613b8d565b8281036020840152613d37818587613b8d565b6020815260006123e06020830184613bc3565b604081526000613d8f6040830185613bc3565b8281036020840152613da18185613bc3565b95945050505050565b60006101208b83528a151560208401528960408401528860608401528760808401528660a08401528060c0840152613de481840187613bfe565b94151560e0840152505090151561010090910152979650505050505050565b6020815260006123e06020830184613bfe565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6000808335601e1984360301811261409257600080fd5b8301803591506001600160401b038211156140ac57600080fd5b6020019150600581901b360382131561330e57600080fd5b60006001600160401b038211156140dd576140dd614226565b5060051b60200190565b600082198211156140fa576140fa6141fa565b500190565b6000816000190483118215151615614119576141196141fa565b500290565b600082821015614130576141306141fa565b500390565b60005b83811015614150578181015183820152602001614138565b83811115611be65750506000910152565b600081614170576141706141fa565b506000190190565b600181811c9082168061418c57607f821691505b602082108114156141ad57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b03811182821017156141d8576141d8614226565b6040525050565b60006000198214156141f3576141f36141fa565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156142555760046000803e5060005160e01c5b90565b600060443d10156142665790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561429557505050505090565b82850191508151818111156142ad5750505050505090565b843d87010160208285010111156142c75750505050505090565b6142d6602082860101876141b3565b509095945050505050565b6001600160a01b038116811461094e57600080fd5b6001600160e01b03198116811461094e57600080fdfea2646970667358221220bd7d8ebe47d7580f12079dac325d04cf03adeace8a00a244066c7776cd11ab0e64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e4b616c65627345646974696f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054b4a454454000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102715760003560e01c80636b20c4541161014f578063bd85b039116100c1578063e8a3d4851161007a578063e8a3d485146107a0578063e985e9c5146107b5578063ea25e176146107fe578063f242432a14610811578063f2fde38b14610831578063f5298aca1461085157600080fd5b8063bd85b039146106c2578063c0e72740146106ef578063c195a4ef14610704578063d547741f1461074b578063d81d0a151461076b578063e2b9e1861461078b57600080fd5b806391d148541161011357806391d1485414610623578063938e3d7b1461064357806395d89b4114610663578063a217fddf14610678578063a22cb4651461068d578063af17dea6146106ad57600080fd5b80636b20c45414610591578063715018a6146105b15780638456cb59146105c657806385a222ae146105db5780638da5cb5b146105fb57600080fd5b80632eb2c2d6116101e85780634e1273f4116101ac5780634e1273f4146104ca5780634f558e79146104f7578063522f6815146105265780635c975abb146105465780635f0440521461055e578063632c6f1f1461057e57600080fd5b80632eb2c2d6146104225780632f2ff15d1461044257806336568abe146104625780633f4ba83a146104825780634044556d1461049757600080fd5b806313af40351161023a57806313af40351461033d578063156e29f61461035d5780631d0a43941461037d578063248a9ca31461039d578063279c806e146103cd5780632913ebc01461040257600080fd5b8062fdd58e1461027657806301ffc9a7146102a957806302fe5305146102d957806306fdde03146102fb5780630e89341c1461031d575b600080fd5b34801561028257600080fd5b50610296610291366004613431565b610871565b6040519081526020015b60405180910390f35b3480156102b557600080fd5b506102c96102c4366004613aad565b61090a565b60405190151581526020016102a0565b3480156102e557600080fd5b506102f96102f4366004613ae7565b61091b565b005b34801561030757600080fd5b50610310610951565b6040516102a09190613e03565b34801561032957600080fd5b50610310610338366004613948565b6109e3565b34801561034957600080fd5b506102f9610358366004613414565b610adc565b34801561036957600080fd5b506102f96103783660046136d7565b610b0f565b34801561038957600080fd5b506102f9610398366004613986565b610b59565b3480156103a957600080fd5b506102966103b8366004613948565b60009081526020819052604090206001015490565b3480156103d957600080fd5b506103ed6103e8366004613948565b610c0f565b6040516102a099989796959493929190613daa565b34801561040e57600080fd5b506102f961041d366004613a03565b610cec565b34801561042e57600080fd5b506102f961043d366004613496565b610eed565b34801561044e57600080fd5b506102f961045d366004613961565b610f84565b34801561046e57600080fd5b506102f961047d366004613961565b610faa565b34801561048e57600080fd5b506102f9611028565b3480156104a357600080fd5b506102c96104b2366004613948565b6000908152600a602052604090206001015460ff1690565b3480156104d657600080fd5b506104ea6104e536600461370c565b61105c565b6040516102a09190613d69565b34801561050357600080fd5b506102c9610512366004613948565b600090815260056020526040902054151590565b34801561053257600080fd5b506102f9610541366004613431565b611185565b34801561055257600080fd5b5060045460ff166102c9565b34801561056a57600080fd5b506102c96105793660046137de565b6111e5565b6102f961058c366004613885565b611233565b34801561059d57600080fd5b506102f96105ac36600461362d565b6116b3565b3480156105bd57600080fd5b506102f96116f6565b3480156105d257600080fd5b506102f961172a565b3480156105e757600080fd5b506102f96105f6366004613b1b565b61175c565b34801561060757600080fd5b506006546040516001600160a01b0390911681526020016102a0565b34801561062f57600080fd5b506102c961063e366004613961565b6117a9565b34801561064f57600080fd5b506102f961065e366004613ae7565b6117d2565b34801561066f57600080fd5b5061031061180f565b34801561068457600080fd5b50610296600081565b34801561069957600080fd5b506102f96106a83660046136a2565b61181e565b3480156106b957600080fd5b50610310611829565b3480156106ce57600080fd5b506102966106dd366004613948565b60009081526005602052604090205490565b3480156106fb57600080fd5b506103106118b7565b34801561071057600080fd5b5061029661071f366004613961565b6000828152600a602090815260408083206001600160a01b038516845260080190915290205492915050565b34801561075757600080fd5b506102f9610766366004613961565b6118c4565b34801561077757600080fd5b506102f96107863660046135ab565b6118ea565b34801561079757600080fd5b50610310611990565b3480156107ac57600080fd5b5061031061199d565b3480156107c157600080fd5b506102c96107d036600461345d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6102f961080c366004613b3e565b6119ac565b34801561081d57600080fd5b506102f961082c366004613543565b611a67565b34801561083d57600080fd5b506102f961084c366004613414565b611aac565b34801561085d57600080fd5b506102f961086c3660046136d7565b611b44565b60006001600160a01b0383166108e25760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b600061091582611b87565b92915050565b6006546001600160a01b031633146109455760405162461bcd60e51b81526004016108d990613fbd565b61094e81611bc7565b50565b60606007805461096090614178565b80601f016020809104026020016040519081016040528092919081815260200182805461098c90614178565b80156109d95780601f106109ae576101008083540402835291602001916109d9565b820191906000526020600020905b8154815290600101906020018083116109bc57829003601f168201915b5050505050905090565b60008181526005602052604081205460609110610a3b5760405162461bcd60e51b81526020600482015260166024820152752aa9249d103737b732bc34b9ba32b73a103a37b5b2b760511b60448201526064016108d9565b6000828152600a602052604090206006018054610a5790614178565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8390614178565b8015610ad05780601f10610aa557610100808354040283529160200191610ad0565b820191906000526020600020905b815481529060010190602001808311610ab357829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610b065760405162461bcd60e51b81526004016108d990613fbd565b61094e81611aac565b6006546001600160a01b03163314610b395760405162461bcd60e51b81526004016108d990613fbd565b610b5483838360405180602001604052806000815250611bda565b505050565b6006546001600160a01b03163314610b835760405162461bcd60e51b81526004016108d990613fbd565b6000600a6000610b9260095490565b815260208082019290925260400160002060018101805460ff19169055898155600281018990556003810188905560058101879055600481018590558551909250610be591600684019190870190613231565b5060078101805461ffff191683151561ff0019161790556009805460010190555050505050505050565b600a602052600090815260409020805460018201546002830154600384015460048501546005860154600687018054969760ff909616969495939492939192610c5790614178565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8390614178565b8015610cd05780601f10610ca557610100808354040283529160200191610cd0565b820191906000526020600020905b815481529060010190602001808311610cb357829003601f168201915b5050506007909301549192505060ff8082169161010090041689565b6006546001600160a01b03163314610d165760405162461bcd60e51b81526004016108d990613fbd565b6000858152600a60205260409020548a14610d3d576000858152600a602052604090208a90555b6000858152600a60205260409020600201548914610d6a576000858152600a602052604090206002018990555b6000858152600a60205260409020600301548814610d97576000858152600a602052604090206003018890555b6000858152600a60205260409020600501548714610dc4576000858152600a602052604090206005018790555b6000858152600a602090815260409091208751610de992600690920191890190613231565b506000858152600a602052604090206001015460ff16151584151514610e27576000858152600a60205260409020600101805460ff19168515151790555b6000858152600a60205260409020600401548314610e54576000858152600a602052604090206004018390555b6000858152600a602052604090206007015460ff16151582151514610e91576000858152600a60205260409020600701805460ff19168315151790555b6000858152600a602052604090206007018054821580156101000261ff001990921691909117909155610ee1576000858152600a60205260409020600701805461ff001916610100831515021790555b50505050505050505050565b6001600160a01b038516331480610f095750610f0985336107d0565b610f705760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108d9565b610f7d8585858585611bec565b5050505050565b600082815260208190526040902060010154610fa08133611d99565b610b548383611dfd565b6001600160a01b038116331461101a5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016108d9565b6110248282611e81565b5050565b6006546001600160a01b031633146110525760405162461bcd60e51b81526004016108d990613fbd565b61105a611ee6565b565b606081518351146110c15760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016108d9565b600083516001600160401b038111156110dc576110dc614226565b604051908082528060200260200182016040528015611105578160200160208202803683370190505b50905060005b845181101561117d5761115085828151811061112957611129614210565b602002602001015185838151811061114357611143614210565b6020026020010151610871565b82828151811061116257611162614210565b6020908102919091010152611176816141df565b905061110b565b509392505050565b6006546001600160a01b031633146111af5760405162461bcd60e51b81526004016108d990613fbd565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610b54573d6000803e3d6000fd5b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160405160208183030381529060405280519060200120905061122b848483611f79565b949350505050565b60045460ff16156112825760405162461bcd60e51b815260206004820152601960248201527810db185a5b4e8818db185a5b5a5b99c81a5cc81c185d5cd959603a1b60448201526064016108d9565b6000805b8481101561144f576113058a8a838181106112a3576112a3614210565b905060200201358989848181106112bc576112bc614210565b905060200201358888858181106112d5576112d5614210565b905060200201358787868181106112ee576112ee614210565b9050602002810190611300919061407b565b611f8f565b6113515760405162461bcd60e51b815260206004820152601e60248201527f4f6e65206f72206d6f726520636c61696d732061726520696e76616c6964000060448201526064016108d9565b600a600087878481811061136757611367614210565b90506020020135815260200190815260200160002060070160019054906101000a900460ff166113d95760405162461bcd60e51b815260206004820152601b60248201527f436c61696d206d756c7469706c65206e6f7420656e61626c65642e000000000060448201526064016108d9565b61143c611435600a60008989868181106113f5576113f5614210565b905060200201358152602001908152602001600020600201548c8c8581811061142057611420614210565b905060200201356123d490919063ffffffff16565b83906123e7565b5080611447816141df565b915050611286565b50803410156114b35760405162461bcd60e51b815260206004820152602a60248201527f56616c7565206e6f7420656e6f75676820746f20636f76657220616c6c207472604482015269616e73616374696f6e7360b01b60648201526084016108d9565b60005b848110156115d3576114d38a8a838181106112a3576112a3614210565b61151f5760405162461bcd60e51b815260206004820152601e60248201527f4f6e65206f72206d6f726520636c61696d732061726520696e76616c6964000060448201526064016108d9565b6115818a8a8381811061153457611534614210565b90506020020135600a600089898681811061155157611551614210565b602090810292909201358352508181019290925260409081016000908120338252600801909252902054906123e7565b600a600088888581811061159757611597614210565b602090810292909201358352508181019290925260409081016000908120338252600801909252902055806115cb816141df565b9150506114b6565b5061166133868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508b8b808060200260200160405190810160405280939291908181526020018383602002808284376000920182905250604080516020810190915290815292506123f3915050565b336001600160a01b03167f1f36743b8f77937c5a06ebeca4819ea0c795222f7ecf5a42583ff5d0063adabf86868c8c6040516116a09493929190613d42565b60405180910390a2505050505050505050565b6001600160a01b0383163314806116cf57506116cf83336107d0565b6116eb5760405162461bcd60e51b81526004016108d990613ea2565b610b548383836123ff565b6006546001600160a01b031633146117205760405162461bcd60e51b81526004016108d990613fbd565b61105a600061240a565b6006546001600160a01b031633146117545760405162461bcd60e51b81526004016108d990613fbd565b61105a61245c565b6006546001600160a01b031633146117865760405162461bcd60e51b81526004016108d990613fbd565b6000918252600a6020526040909120600101805460ff1916911515919091179055565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6006546001600160a01b031633146117fc5760405162461bcd60e51b81526004016108d990613fbd565b805161102490600b906020840190613231565b60606008805461096090614178565b6110243383836124d7565b6008805461183690614178565b80601f016020809104026020016040519081016040528092919081815260200182805461186290614178565b80156118af5780601f10611884576101008083540402835291602001916118af565b820191906000526020600020905b81548152906001019060200180831161189257829003601f168201915b505050505081565b600b805461183690614178565b6000828152602081905260409020600101546118e08133611d99565b610b548383611e81565b6006546001600160a01b031633146119145760405162461bcd60e51b81526004016108d990613fbd565b610f7d85858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040805160208089028281018201909352888252909350889250879182918501908490808284376000920182905250604080516020810190915290815292506123f3915050565b6007805461183690614178565b6060600b805461096090614178565b6119b98585858585611f8f565b6119c257600080fd5b6119dd33848760405180602001604052806000815250611bda565b6000838152600a60209081526040808320338452600801909152902054611a0490866123e7565b6000848152600a6020908152604080832033808552600890910183529281902093909355825186815290810188905290917f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed026910160405180910390a25050505050565b6001600160a01b038516331480611a835750611a8385336107d0565b611a9f5760405162461bcd60e51b81526004016108d990613ea2565b610f7d85858585856125b8565b6006546001600160a01b03163314611ad65760405162461bcd60e51b81526004016108d990613fbd565b6001600160a01b038116611b3b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d9565b61094e8161240a565b6001600160a01b038316331480611b605750611b6083336107d0565b611b7c5760405162461bcd60e51b81526004016108d990613ea2565b610b548383836126e8565b60006001600160e01b03198216636cdb3d1360e11b1480611bb857506001600160e01b031982166303a24d0760e21b145b806109155750610915826126f3565b8051611024906003906020840190613231565b611be684848484612728565b50505050565b8151835114611c0d5760405162461bcd60e51b81526004016108d990613ff2565b6001600160a01b038416611c335760405162461bcd60e51b81526004016108d990613eeb565b33611c428187878787876127f1565b60005b8451811015611d2b576000858281518110611c6257611c62614210565b602002602001015190506000858381518110611c8057611c80614210565b60209081029190910181015160008481526001835260408082206001600160a01b038e168352909352919091205490915081811015611cd15760405162461bcd60e51b81526004016108d990613f73565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611d109084906140e7565b9250508190555050505080611d24906141df565b9050611c45565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611d7b929190613d7c565b60405180910390a4611d918187878787876127ff565b505050505050565b611da382826117a9565b61102457611dbb816001600160a01b0316601461296a565b611dc683602061296a565b604051602001611dd7929190613c2a565b60408051601f198184030181529082905262461bcd60e51b82526108d991600401613e03565b611e0782826117a9565b611024576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611e3d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611e8b82826117a9565b15611024576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60045460ff16611f2f5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108d9565b6004805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600082611f868584612b05565b14949350505050565b6000611f9d60045460ff1690565b15611fe65760405162461bcd60e51b815260206004820152601960248201527810db185a5b4e8818db185a5b5a5b99c81a5cc81c185d5cd959603a1b60448201526064016108d9565b6000848152600a60205260409020600301546120445760405162461bcd60e51b815260206004820152601d60248201527f436c61696d3a2045646974696f6e20646f6573206e6f7420657869737400000060448201526064016108d9565b6000848152600a602052604090206001015460ff166120965760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b60448201526064016108d9565b6000848152600a60205260409020600201546120b39087906123d4565b3410156121025760405162461bcd60e51b815260206004820152601c60248201527f436c61696d3a2045746865722076616c756520696e636f72726563740000000060448201526064016108d9565b6000848152600a60209081526040808320338452600801909152902054859061212b90886123e7565b111561218a5760405162461bcd60e51b815260206004820152602860248201527f436c61696d3a204e6f7420616c6c6f77656420746f20636c61696d20676976656044820152671b88185b5bdd5b9d60c21b60648201526084016108d9565b6000848152600a6020908152604080832060048101543385526008909101909252909120546121b990886123e7565b11156122255760405162461bcd60e51b815260206004820152603560248201527f436c61696d3a204e6f7420616c6c6f77656420746f20636c61696d2074686174604482015274081b585b9e48199c9bdb481bdb99481dd85b1b195d605a1b60648201526084016108d9565b6000848152600a60205260409020600501548611156122945760405162461bcd60e51b815260206004820152602560248201527f4d6178207175616e7469747920706572207472616e73616374696f6e20657863604482015264195959195960da1b60648201526084016108d9565b6000848152600a60209081526040808320600301546005909252909120546122bd9088906140e7565b111561230b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016108d9565b6000848152600a602052604090206007015460019060ff16156123ca5761237184848080602002602001604051908101604052809392919081815260200183836020028082843760009201829052508a8152600a602052604090205492506111e5915050565b9050806123ca5760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b60648201526084016108d9565b9695505050505050565b60006123e082846140ff565b9392505050565b60006123e082846140e7565b611be684848484612ba9565b610b54838383612d04565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60045460ff16156124a25760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108d9565b6004805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f5c3390565b816001600160a01b0316836001600160a01b0316141561254b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016108d9565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166125de5760405162461bcd60e51b81526004016108d990613eeb565b336125fd8187876125ee88612e95565b6125f788612e95565b876127f1565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156126405760405162461bcd60e51b81526004016108d990613f73565b60008581526001602090815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061267f9084906140e7565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46126df828888888888612ee0565b50505050505050565b610b54838383612faa565b60006001600160e01b03198216637965db0b60e01b148061091557506301ffc9a760e01b6001600160e01b0319831614610915565b6001600160a01b03841661274e5760405162461bcd60e51b81526004016108d99061403a565b3361275f816000876125ee88612e95565b60008481526001602090815260408083206001600160a01b0389168452909152812080548592906127919084906140e7565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f7d81600087878787612ee0565b611d918686868686866130af565b6001600160a01b0384163b15611d915760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906128439089908990889088908890600401613c9f565b602060405180830381600087803b15801561285d57600080fd5b505af192505050801561288d575060408051601f3d908101601f1916820190925261288a91810190613aca565b60015b61293a5761289961423c565b806308c379a014156128d357506128ae614258565b806128b957506128d5565b8060405162461bcd60e51b81526004016108d99190613e03565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016108d9565b6001600160e01b0319811663bc197c8160e01b146126df5760405162461bcd60e51b81526004016108d990613e16565b606060006129798360026140ff565b6129849060026140e7565b6001600160401b0381111561299b5761299b614226565b6040519080825280601f01601f1916602001820160405280156129c5576020820181803683370190505b509050600360fc1b816000815181106129e0576129e0614210565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612a0f57612a0f614210565b60200101906001600160f81b031916908160001a9053506000612a338460026140ff565b612a3e9060016140e7565b90505b6001811115612ab6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612a7257612a72614210565b1a60f81b828281518110612a8857612a88614210565b60200101906001600160f81b031916908160001a90535060049490941c93612aaf81614161565b9050612a41565b5083156123e05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016108d9565b600081815b845181101561117d576000858281518110612b2757612b27614210565b60200260200101519050808311612b69576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612b96565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612ba1816141df565b915050612b0a565b6001600160a01b038416612bcf5760405162461bcd60e51b81526004016108d99061403a565b8151835114612bf05760405162461bcd60e51b81526004016108d990613ff2565b33612c00816000878787876127f1565b60005b8451811015612c9c57838181518110612c1e57612c1e614210565b602002602001015160016000878481518110612c3c57612c3c614210565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254612c8491906140e7565b90915550819050612c94816141df565b915050612c03565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612ced929190613d7c565b60405180910390a4610f7d816000878787876127ff565b6001600160a01b038316612d2a5760405162461bcd60e51b81526004016108d990613f30565b8051825114612d4b5760405162461bcd60e51b81526004016108d990613ff2565b6000339050612d6e818560008686604051806020016040528060008152506127f1565b60005b8351811015612e36576000848281518110612d8e57612d8e614210565b602002602001015190506000848381518110612dac57612dac614210565b60209081029190910181015160008481526001835260408082206001600160a01b038c168352909352919091205490915081811015612dfd5760405162461bcd60e51b81526004016108d990613e5e565b60009283526001602090815260408085206001600160a01b038b1686529091529092209103905580612e2e816141df565b915050612d71565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612e87929190613d7c565b60405180910390a450505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612ecf57612ecf614210565b602090810291909101015292915050565b6001600160a01b0384163b15611d915760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612f249089908990889088908890600401613cfd565b602060405180830381600087803b158015612f3e57600080fd5b505af1925050508015612f6e575060408051601f3d908101601f19168201909252612f6b91810190613aca565b60015b612f7a5761289961423c565b6001600160e01b0319811663f23a6e6160e01b146126df5760405162461bcd60e51b81526004016108d990613e16565b6001600160a01b038316612fd05760405162461bcd60e51b81526004016108d990613f30565b33612fff81856000612fe187612e95565b612fea87612e95565b604051806020016040528060008152506127f1565b60008381526001602090815260408083206001600160a01b0388168452909152902054828110156130425760405162461bcd60e51b81526004016108d990613e5e565b60008481526001602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6130bd8686868686866131c9565b6001600160a01b0385166131445760005b8351811015613142578281815181106130e9576130e9614210565b60200260200101516005600086848151811061310757613107614210565b60200260200101518152602001908152602001600020600082825461312c91906140e7565b9091555061313b9050816141df565b90506130ce565b505b6001600160a01b038416611d915760005b83518110156126df5782818151811061317057613170614210565b60200260200101516005600086848151811061318e5761318e614210565b6020026020010151815260200190815260200160002060008282546131b3919061411e565b909155506131c29050816141df565b9050613155565b60045460ff1615611d915760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b60648201526084016108d9565b82805461323d90614178565b90600052602060002090601f01602090048101928261325f57600085556132a5565b82601f1061327857805160ff19168380011785556132a5565b828001600101855582156132a5579182015b828111156132a557825182559160200191906001019061328a565b506132b19291506132b5565b5090565b5b808211156132b157600081556001016132b6565b60008083601f8401126132dc57600080fd5b5081356001600160401b038111156132f357600080fd5b6020830191508360208260051b850101111561330e57600080fd5b9250929050565b600082601f83011261332657600080fd5b81356020613333826140c4565b60405161334082826141b3565b8381528281019150858301600585901b8701840188101561336057600080fd5b60005b8581101561337f57813584529284019290840190600101613363565b5090979650505050505050565b8035801515811461339c57600080fd5b919050565b600082601f8301126133b257600080fd5b81356001600160401b038111156133cb576133cb614226565b6040516133e2601f8301601f1916602001826141b3565b8181528460208386010111156133f757600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561342657600080fd5b81356123e0816142e1565b6000806040838503121561344457600080fd5b823561344f816142e1565b946020939093013593505050565b6000806040838503121561347057600080fd5b823561347b816142e1565b9150602083013561348b816142e1565b809150509250929050565b600080600080600060a086880312156134ae57600080fd5b85356134b9816142e1565b945060208601356134c9816142e1565b935060408601356001600160401b03808211156134e557600080fd5b6134f189838a01613315565b9450606088013591508082111561350757600080fd5b61351389838a01613315565b9350608088013591508082111561352957600080fd5b50613536888289016133a1565b9150509295509295909350565b600080600080600060a0868803121561355b57600080fd5b8535613566816142e1565b94506020860135613576816142e1565b9350604086013592506060860135915060808601356001600160401b0381111561359f57600080fd5b613536888289016133a1565b6000806000806000606086880312156135c357600080fd5b85356135ce816142e1565b945060208601356001600160401b03808211156135ea57600080fd5b6135f689838a016132ca565b9096509450604088013591508082111561360f57600080fd5b5061361c888289016132ca565b969995985093965092949392505050565b60008060006060848603121561364257600080fd5b833561364d816142e1565b925060208401356001600160401b038082111561366957600080fd5b61367587838801613315565b9350604086013591508082111561368b57600080fd5b5061369886828701613315565b9150509250925092565b600080604083850312156136b557600080fd5b82356136c0816142e1565b91506136ce6020840161338c565b90509250929050565b6000806000606084860312156136ec57600080fd5b83356136f7816142e1565b95602085013595506040909401359392505050565b6000806040838503121561371f57600080fd5b82356001600160401b038082111561373657600080fd5b818501915085601f83011261374a57600080fd5b81356020613757826140c4565b60405161376482826141b3565b8381528281019150858301600585901b870184018b101561378457600080fd5b600096505b848710156137b057803561379c816142e1565b835260019690960195918301918301613789565b50965050860135925050808211156137c757600080fd5b506137d485828601613315565b9150509250929050565b600080604083850312156137f157600080fd5b82356001600160401b0381111561380757600080fd5b8301601f8101851361381857600080fd5b80356020613825826140c4565b60405161383282826141b3565b8381528281019150848301600585901b860184018a101561385257600080fd5b600095505b84861015613875578035835260019590950194918301918301613857565b5098969091013596505050505050565b6000806000806000806000806080898b0312156138a157600080fd5b88356001600160401b03808211156138b857600080fd5b6138c48c838d016132ca565b909a50985060208b01359150808211156138dd57600080fd5b6138e98c838d016132ca565b909850965060408b013591508082111561390257600080fd5b61390e8c838d016132ca565b909650945060608b013591508082111561392757600080fd5b506139348b828c016132ca565b999c989b5096995094979396929594505050565b60006020828403121561395a57600080fd5b5035919050565b6000806040838503121561397457600080fd5b82359150602083013561348b816142e1565b600080600080600080600060e0888a0312156139a157600080fd5b8735965060208801359550604088013594506060880135935060808801356001600160401b038111156139d357600080fd5b6139df8a828b016133a1565b93505060a088013591506139f560c0890161338c565b905092959891949750929550565b6000806000806000806000806000806101408b8d031215613a2357600080fd5b8a35995060208b0135985060408b0135975060608b0135965060808b01356001600160401b03811115613a5557600080fd5b613a618d828e016133a1565b96505060a08b01359450613a7760c08c0161338c565b935060e08b01359250613a8d6101008c0161338c565b9150613a9c6101208c0161338c565b90509295989b9194979a5092959850565b600060208284031215613abf57600080fd5b81356123e0816142f6565b600060208284031215613adc57600080fd5b81516123e0816142f6565b600060208284031215613af957600080fd5b81356001600160401b03811115613b0f57600080fd5b61122b848285016133a1565b60008060408385031215613b2e57600080fd5b823591506136ce6020840161338c565b600080600080600060808688031215613b5657600080fd5b85359450602086013593506040860135925060608601356001600160401b03811115613b8157600080fd5b61361c888289016132ca565b81835260006001600160fb1b03831115613ba657600080fd5b8260051b8083602087013760009401602001938452509192915050565b600081518084526020808501945080840160005b83811015613bf357815187529582019590820190600101613bd7565b509495945050505050565b60008151808452613c16816020860160208601614135565b601f01601f19169290920160200192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613c62816017850160208801614135565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613c93816028840160208801614135565b01602801949350505050565b6001600160a01b0386811682528516602082015260a060408201819052600090613ccb90830186613bc3565b8281036060840152613cdd8186613bc3565b90508281036080840152613cf18185613bfe565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090613d3790830184613bfe565b979650505050505050565b604081526000613d56604083018688613b8d565b8281036020840152613d37818587613b8d565b6020815260006123e06020830184613bc3565b604081526000613d8f6040830185613bc3565b8281036020840152613da18185613bc3565b95945050505050565b60006101208b83528a151560208401528960408401528860608401528760808401528660a08401528060c0840152613de481840187613bfe565b94151560e0840152505090151561010090910152979650505050505050565b6020815260006123e06020830184613bfe565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6000808335601e1984360301811261409257600080fd5b8301803591506001600160401b038211156140ac57600080fd5b6020019150600581901b360382131561330e57600080fd5b60006001600160401b038211156140dd576140dd614226565b5060051b60200190565b600082198211156140fa576140fa6141fa565b500190565b6000816000190483118215151615614119576141196141fa565b500290565b600082821015614130576141306141fa565b500390565b60005b83811015614150578181015183820152602001614138565b83811115611be65750506000910152565b600081614170576141706141fa565b506000190190565b600181811c9082168061418c57607f821691505b602082108114156141ad57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b03811182821017156141d8576141d8614226565b6040525050565b60006000198214156141f3576141f36141fa565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156142555760046000803e5060005160e01c5b90565b600060443d10156142665790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561429557505050505090565b82850191508151818111156142ad5750505050505090565b843d87010160208285010111156142c75750505050505090565b6142d6602082860101876141b3565b509095945050505050565b6001600160a01b038116811461094e57600080fd5b6001600160e01b03198116811461094e57600080fdfea2646970667358221220bd7d8ebe47d7580f12079dac325d04cf03adeace8a00a244066c7776cd11ab0e64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e4b616c65627345646974696f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054b4a454454000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): KalebsEditions
Arg [1] : _symbol (string): KJEDT

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 4b616c65627345646974696f6e73000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4b4a454454000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

68625:8897:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48658:231;;;;;;;;;;-1:-1:-1;48658:231:0;;;;;:::i;:::-;;:::i;:::-;;;21198:25:1;;;21186:2;21171:18;48658:231:0;;;;;;;;68282:177;;;;;;;;;;-1:-1:-1;68282:177:0;;;;;:::i;:::-;;:::i;:::-;;;21025:14:1;;21018:22;21000:41;;20988:2;20973:18;68282:177:0;20860:187:1;66614:93:0;;;;;;;;;;-1:-1:-1;66614:93:0;;;;;:::i;:::-;;:::i;:::-;;66719:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;77096:205::-;;;;;;;;;;-1:-1:-1;77096:205:0;;;;;:::i;:::-;;:::i;68118:93::-;;;;;;;;;;-1:-1:-1;68118:93:0;;;;;:::i;:::-;;:::i;73984:180::-;;;;;;;;;;-1:-1:-1;73984:180:0;;;;;:::i;:::-;;:::i;69572:779::-;;;;;;;;;;-1:-1:-1;69572:779:0;;;;;:::i;:::-;;:::i;35650:123::-;;;;;;;;;;-1:-1:-1;35650:123:0;;;;;:::i;:::-;35716:7;35743:12;;;;;;;;;;:22;;;;35650:123;68968:43;;;;;;;;;;-1:-1:-1;68968:43:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;:::i;70359:1602::-;;;;;;;;;;-1:-1:-1;70359:1602:0;;;;;:::i;:::-;;:::i;50597:442::-;;;;;;;;;;-1:-1:-1;50597:442:0;;;;;:::i;:::-;;:::i;36035:147::-;;;;;;;;;;-1:-1:-1;36035:147:0;;;;;:::i;:::-;;:::i;37083:218::-;;;;;;;;;;-1:-1:-1;37083:218:0;;;;;:::i;:::-;;:::i;66535:67::-;;;;;;;;;;;;;:::i;76071:128::-;;;;;;;;;;-1:-1:-1;76071:128:0;;;;;:::i;:::-;76134:4;76158:22;;;:8;:22;;;;;:33;;;;;;76071:128;49055:524;;;;;;;;;;-1:-1:-1;49055:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;63097:122::-;;;;;;;;;;-1:-1:-1;63097:122:0;;;;;:::i;:::-;63154:4;62975:16;;;:12;:16;;;;;;-1:-1:-1;;;63097:122:0;76795:123;;;;;;;;;;-1:-1:-1;76795:123:0;;;;;:::i;:::-;;:::i;17850:86::-;;;;;;;;;;-1:-1:-1;17921:7:0;;;;17850:86;;76350:254;;;;;;;;;;-1:-1:-1;76350:254:0;;;;;:::i;:::-;;:::i;72520:1456::-;;;;;;:::i;:::-;;:::i;65833:353::-;;;;;;;;;;-1:-1:-1;65833:353:0;;;;;:::i;:::-;;:::i;20749:103::-;;;;;;;;;;;;;:::i;66464:63::-;;;;;;;;;;;;;:::i;76207:135::-;;;;;;;;;;-1:-1:-1;76207:135:0;;;;;:::i;:::-;;:::i;20098:87::-;;;;;;;;;;-1:-1:-1;20171:6:0;;20098:87;;-1:-1:-1;;;;;20171:6:0;;;18142:51:1;;18130:2;18115:18;20098:87:0;17996:203:1;34535:139:0;;;;;;;;;;-1:-1:-1;34535:139:0;;;;;:::i;:::-;;:::i;77310:104::-;;;;;;;;;;-1:-1:-1;77310:104:0;;;;;:::i;:::-;;:::i;66810:87::-;;;;;;;;;;;;;:::i;33626:49::-;;;;;;;;;;-1:-1:-1;33626:49:0;33671:4;33626:49;;49652:155;;;;;;;;;;-1:-1:-1;49652:155:0;;;;;:::i;:::-;;:::i;66430:21::-;;;;;;;;;;;;;:::i;62886:113::-;;;;;;;;;;-1:-1:-1;62886:113:0;;;;;:::i;:::-;62948:7;62975:16;;;:12;:16;;;;;;;62886:113;69018:26;;;;;;;;;;;;;:::i;76930:158::-;;;;;;;;;;-1:-1:-1;76930:158:0;;;;;:::i;:::-;77010:7;77037:16;;;:8;:16;;;;;;;;-1:-1:-1;;;;;77037:43:0;;;;:31;;:43;;;;;;76930:158;;;;;36427:149;;;;;;;;;;-1:-1:-1;36427:149:0;;;;;:::i;:::-;;:::i;74172:216::-;;;;;;;;;;-1:-1:-1;74172:216:0;;;;;:::i;:::-;;:::i;66404:19::-;;;;;;;;;;;;;:::i;77422:97::-;;;;;;;;;;;;;:::i;49879:168::-;;;;;;;;;;-1:-1:-1;49879:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;50002:27:0;;;49978:4;50002:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;49879:168;71976:536;;;;;;:::i;:::-;;:::i;50119:401::-;;;;;;;;;;-1:-1:-1;50119:401:0;;;;;:::i;:::-;;:::i;21007:201::-;;;;;;;;;;-1:-1:-1;21007:201:0;;;;;:::i;:::-;;:::i;65504:321::-;;;;;;;;;;-1:-1:-1;65504:321:0;;;;;:::i;:::-;;:::i;48658:231::-;48744:7;-1:-1:-1;;;;;48772:21:0;;48764:77;;;;-1:-1:-1;;;48764:77:0;;24049:2:1;48764:77:0;;;24031:21:1;24088:2;24068:18;;;24061:30;24127:34;24107:18;;;24100:62;-1:-1:-1;;;24178:18:1;;;24171:41;24229:19;;48764:77:0;;;;;;;;;-1:-1:-1;48859:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;48859:22:0;;;;;;;;;;;;48658:231::o;68282:177::-;68391:4;68415:36;68439:11;68415:23;:36::i;:::-;68408:43;68282:177;-1:-1:-1;;68282:177:0:o;66614:93::-;20171:6;;-1:-1:-1;;;;;20171:6:0;16584:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;66683:16:::1;66691:7;66683;:16::i;:::-;66614:93:::0;:::o;66719:83::-;66756:13;66789:5;66782:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66719:83;:::o;77096:205::-;77209:1;62975:16;;;:12;:16;;;;;;77152:13;;-1:-1:-1;77182:55:0;;;;-1:-1:-1;;;77182:55:0;;31856:2:1;77182:55:0;;;31838:21:1;31895:2;31875:18;;;31868:30;-1:-1:-1;;;31914:18:1;;;31907:52;31976:18;;77182:55:0;31654:346:1;77182:55:0;77266:13;;;;:8;:13;;;;;:26;;77252:41;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77096:205;;;:::o;68118:93::-;20171:6;;-1:-1:-1;;;;;20171:6:0;16584:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;68179:24:::1;68197:5;68179:17;:24::i;73984:180::-:0;20171:6;;-1:-1:-1;;;;;20171:6:0;16584:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;74118:38:::1;74124:2;74128:12;74142:9;74118:38;;;;;;;;;;;::::0;:5:::1;:38::i;:::-;73984:180:::0;;;:::o;69572:779::-;20171:6;;-1:-1:-1;;;;;20171:6:0;16584:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;69852:23:::1;69878:8;:34;69887:24;:14;4005::::0;;3913:114;69887:24:::1;69878:34:::0;;::::1;::::0;;::::1;::::0;;;;;;-1:-1:-1;69878:34:0;69923:18:::1;::::0;::::1;:26:::0;;-1:-1:-1;;69923:26:0::1;::::0;;69960:32;;;70003:17:::1;::::0;::::1;:30:::0;;;70044:17:::1;::::0;::::1;:30:::0;;;70085:21:::1;::::0;::::1;:38:::0;;;70134:20:::1;::::0;::::1;:36:::0;;;70181;;69878:34;;-1:-1:-1;70181:36:0::1;::::0;:20:::1;::::0;::::1;::::0;:36;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;70228:21:0::1;::::0;::::1;:38:::0;;-1:-1:-1;;70277:29:0;70228:38;::::1;;-1:-1:-1::0;;70277:29:0;;;;70317:14:::1;4124:19:::0;;-1:-1:-1;4124:19:0;;;69841:510:::1;69572:779:::0;;;;;;;:::o;68968:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;68968:43:0;;;;;;;-1:-1:-1;;68968:43:0;;;;;;;;;;:::o;70359:1602::-;20171:6;;-1:-1:-1;;;;;20171:6:0;16584:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;70742:23:::1;::::0;;;:8:::1;:23;::::0;;;;:34;:49;::::1;70739:128;;70807:23;::::0;;;:8:::1;:23;::::0;;;;:48;;;70739:128:::1;70880:23;::::0;;;:8:::1;:23;::::0;;;;:33:::1;;::::0;:47;::::1;70877:126;;70943:23;::::0;;;:8:::1;:23;::::0;;;;:33:::1;;:46:::0;;;70877:126:::1;71016:23;::::0;;;:8:::1;:23;::::0;;;;:33:::1;;::::0;:47;::::1;71013:128;;71079:23;::::0;;;:8:::1;:23;::::0;;;;:33:::1;;:46:::0;;;71013:128:::1;71154:23;::::0;;;:8:::1;:23;::::0;;;;:37:::1;;::::0;:55;::::1;71151:141;;71225:23;::::0;;;:8:::1;:23;::::0;;;;:37:::1;;:54:::0;;;71151:141:::1;71302:23;::::0;;;:8:::1;:23;::::0;;;;;;;:52;;::::1;::::0;:36:::1;::::0;;::::1;::::0;:52;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;71382:23:0::1;::::0;;;:8:::1;:23;::::0;;;;:34:::1;;::::0;::::1;;:49;;::::0;::::1;;;71379:129;;71447:23;::::0;;;:8:::1;:23;::::0;;;;:34:::1;;:48:::0;;-1:-1:-1;;71447:48:0::1;::::0;::::1;;;::::0;;71379:129:::1;71521:23;::::0;;;:8:::1;:23;::::0;;;;:36:::1;;::::0;:53;::::1;71518:137;;71590:23;::::0;;;:8:::1;:23;::::0;;;;:36:::1;;:52:::0;;;71518:137:::1;71668:23;::::0;;;:8:::1;:23;::::0;;;;:37:::1;;::::0;::::1;;:55;;::::0;::::1;;;71665:140;;71739:23;::::0;;;:8:::1;:23;::::0;;;;:37:::1;;:54:::0;;-1:-1:-1;;71739:54:0::1;::::0;::::1;;;::::0;;71665:140:::1;71818:23;::::0;;;:8:::1;:23;::::0;;;;:37:::1;;:54:::0;;;::::1;::::0;::::1;;;-1:-1:-1::0;;71818:54:0;;::::1;::::0;;;::::1;::::0;;;71815:139:::1;;71888:23;::::0;;;:8:::1;:23;::::0;;;;:37:::1;;:54:::0;;-1:-1:-1;;71888:54:0::1;;::::0;::::1;;;;::::0;;71815:139:::1;70359:1602:::0;;;;;;;;;;:::o;50597:442::-;-1:-1:-1;;;;;50830:20:0;;16584:10;50830:20;;:60;;-1:-1:-1;50854:36:0;50871:4;16584:10;49879:168;:::i;50854:36::-;50808:160;;;;-1:-1:-1;;;50808:160:0;;29137:2:1;50808:160:0;;;29119:21:1;29176:2;29156:18;;;29149:30;29215:34;29195:18;;;29188:62;-1:-1:-1;;;29266:18:1;;;29259:48;29324:19;;50808:160:0;28935:414:1;50808:160:0;50979:52;51002:4;51008:2;51012:3;51017:7;51026:4;50979:22;:52::i;:::-;50597:442;;;;;:::o;36035:147::-;35716:7;35743:12;;;;;;;;;;:22;;;34117:30;34128:4;16584:10;34117;:30::i;:::-;36149:25:::1;36160:4;36166:7;36149:10;:25::i;37083:218::-:0;-1:-1:-1;;;;;37179:23:0;;16584:10;37179:23;37171:83;;;;-1:-1:-1;;;37171:83:0;;34962:2:1;37171:83:0;;;34944:21:1;35001:2;34981:18;;;34974:30;35040:34;35020:18;;;35013:62;-1:-1:-1;;;35091:18:1;;;35084:45;35146:19;;37171:83:0;34760:411:1;37171:83:0;37267:26;37279:4;37285:7;37267:11;:26::i;:::-;37083:218;;:::o;66535:67::-;20171:6;;-1:-1:-1;;;;;20171:6:0;16584:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;66584:10:::1;:8;:10::i;:::-;66535:67::o:0;49055:524::-;49211:16;49272:3;:10;49253:8;:15;:29;49245:83;;;;-1:-1:-1;;;49245:83:0;;33398:2:1;49245:83:0;;;33380:21:1;33437:2;33417:18;;;33410:30;33476:34;33456:18;;;33449:62;-1:-1:-1;;;33527:18:1;;;33520:39;33576:19;;49245:83:0;33196:405:1;49245:83:0;49341:30;49388:8;:15;-1:-1:-1;;;;;49374:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49374:30:0;;49341:63;;49422:9;49417:122;49441:8;:15;49437:1;:19;49417:122;;;49497:30;49507:8;49516:1;49507:11;;;;;;;;:::i;:::-;;;;;;;49520:3;49524:1;49520:6;;;;;;;;:::i;:::-;;;;;;;49497:9;:30::i;:::-;49478:13;49492:1;49478:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;49458:3;;;:::i;:::-;;;49417:122;;;-1:-1:-1;49558:13:0;49055:524;-1:-1:-1;;;49055:524:0:o;76795:123::-;20171:6;;-1:-1:-1;;;;;20171:6:0;16584:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;76889:21:::1;::::0;-1:-1:-1;;;;;76889:12:0;::::1;::::0;:21;::::1;;;::::0;76902:7;;76889:21:::1;::::0;;;76902:7;76889:12;:21;::::1;;;;;;;;;;;;;::::0;::::1;;;;76350:254:::0;76512:28;;-1:-1:-1;;76529:10:0;16868:2:1;16864:15;16860:53;76512:28:0;;;16848:66:1;76463:4:0;;;;16930:12:1;;76512:28:0;;;;;;;;;;;;76502:39;;;;;;76487:54;;76559:37;76578:5;76585:4;76591;76559:18;:37::i;:::-;76552:44;76350:254;-1:-1:-1;;;;76350:254:0:o;72520:1456::-;17921:7;;;;72795:9;72787:47;;;;-1:-1:-1;;;72787:47:0;;27274:2:1;72787:47:0;;;27256:21:1;27313:2;27293:18;;;27286:30;-1:-1:-1;;;27332:18:1;;;27325:55;27397:18;;72787:47:0;27072:349:1;72787:47:0;72923:18;72961:6;72956:371;72971:24;;;72956:371;;;73025:71;73038:9;;73048:1;73038:12;;;;;;;:::i;:::-;;;;;;;73051:7;;73059:1;73051:10;;;;;;;:::i;:::-;;;;;;;73062:14;;73077:1;73062:17;;;;;;;:::i;:::-;;;;;;;73080:12;;73093:1;73080:15;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;73025:12;:71::i;:::-;73017:114;;;;-1:-1:-1;;;73017:114:0;;32629:2:1;73017:114:0;;;32611:21:1;32668:2;32648:18;;;32641:30;32707:32;32687:18;;;32680:60;32757:18;;73017:114:0;32427:354:1;73017:114:0;73154:8;:27;73163:14;;73178:1;73163:17;;;;;;;:::i;:::-;;;;;;;73154:27;;;;;;;;;;;:41;;;;;;;;;;;;73146:81;;;;-1:-1:-1;;;73146:81:0;;27973:2:1;73146:81:0;;;27955:21:1;28012:2;27992:18;;;27985:30;28051:29;28031:18;;;28024:57;28098:18;;73146:81:0;27771:351:1;73146:81:0;73244:71;73259:55;73276:8;:27;73285:14;;73300:1;73285:17;;;;;;;:::i;:::-;;;;;;;73276:27;;;;;;;;;;;:37;;;73259:9;;73269:1;73259:12;;;;;;;:::i;:::-;;;;;;;:16;;:55;;;;:::i;:::-;73244:10;;:14;:71::i;:::-;-1:-1:-1;72997:3:0;;;;:::i;:::-;;;;72956:371;;;;73427:10;73414:9;:23;;73406:78;;;;-1:-1:-1;;;73406:78:0;;26863:2:1;73406:78:0;;;26845:21:1;26902:2;26882:18;;;26875:30;26941:34;26921:18;;;26914:62;-1:-1:-1;;;26992:18:1;;;26985:40;27042:19;;73406:78:0;26661:406:1;73406:78:0;73502:6;73497:333;73512:24;;;73497:333;;;73566:71;73579:9;;73589:1;73579:12;;;;;;;:::i;73566:71::-;73558:114;;;;-1:-1:-1;;;73558:114:0;;32629:2:1;73558:114:0;;;32611:21:1;32668:2;32648:18;;;32641:30;32707:32;32687:18;;;32680:60;32757:18;;73558:114:0;32427:354:1;73558:114:0;73746:72;73805:9;;73815:1;73805:12;;;;;;;:::i;:::-;;;;;;;73746:8;:27;73755:14;;73770:1;73755:17;;;;;;;:::i;:::-;;;;;;;;;;73746:27;;-1:-1:-1;73746:27:0;;;;;;;;;;;-1:-1:-1;73746:27:0;;;73789:10;73746:54;;:42;;:54;;;;;;;:58;:72::i;:::-;73689:8;:27;73698:14;;73713:1;73698:17;;;;;;;:::i;:::-;;;;;;;;;;73689:27;;-1:-1:-1;73689:27:0;;;;;;;;;;;-1:-1:-1;73689:27:0;;;73732:10;73689:54;;:42;;:54;;;;;:129;73538:3;;;;:::i;:::-;;;;73497:333;;;;73843:53;73854:10;73866:14;;73843:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73882:9;;73843:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73843:53:0;;;;;;;;;;;;;-1:-1:-1;73843:10:0;;-1:-1:-1;;73843:53:0:i;:::-;73946:10;-1:-1:-1;;;;;73914:54:0;;73930:14;;73958:9;;73914:54;;;;;;;;;:::i;:::-;;;;;;;;72731:1245;72520:1456;;;;;;;;:::o;65833:353::-;-1:-1:-1;;;;;65998:23:0;;16584:10;65998:23;;:66;;-1:-1:-1;66025:39:0;66042:7;16584:10;49879:168;:::i;66025:39::-;65976:157;;;;-1:-1:-1;;;65976:157:0;;;;;;;:::i;:::-;66146:32;66157:7;66166:3;66171:6;66146:10;:32::i;20749:103::-;20171:6;;-1:-1:-1;;;;;20171:6:0;16584:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;20814:30:::1;20841:1;20814:18;:30::i;66464:63::-:0;20171:6;;-1:-1:-1;;;;;20171:6:0;16584:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;66511:8:::1;:6;:8::i;76207:135::-:0;20171:6;;-1:-1:-1;;;;;20171:6:0;16584:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;76293:22:::1;::::0;;;:8:::1;:22;::::0;;;;;:33:::1;;:41:::0;;-1:-1:-1;;76293:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;76207:135::o;34535:139::-;34613:4;34637:12;;;;;;;;;;;-1:-1:-1;;;;;34637:29:0;;;;;;;;;;;;;;;34535:139::o;77310:104::-;20171:6;;-1:-1:-1;;;;;20171:6:0;16584:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;77385:21;;::::1;::::0;:12:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;66810:87::-:0;66849:13;66882:7;66875:14;;;;;:::i;49652:155::-;49747:52;16584:10;49780:8;49790;49747:18;:52::i;66430:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69018:26::-;;;;;;;:::i;36427:149::-;35716:7;35743:12;;;;;;;;;;:22;;;34117:30;34128:4;16584:10;34117;:30::i;:::-;36542:26:::1;36554:4;36560:7;36542:11;:26::i;74172:216::-:0;20171:6;;-1:-1:-1;;;;;20171:6:0;16584:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;74335:45:::1;74346:2;74350:14;;74335:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;74335:45:0::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;-1:-1:-1;74366:9:0;;-1:-1:-1;74366:9:0;;;;74335:45;::::1;::::0;74366:9;;74335:45;74366:9;74335:45;::::1;;::::0;::::1;::::0;;;-1:-1:-1;74335:45:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;-1:-1:-1;74335:10:0::1;::::0;-1:-1:-1;;74335:45:0:i:1;66404:19::-:0;;;;;;;:::i;77422:97::-;77466:13;77499:12;77492:19;;;;;:::i;71976:536::-;72192:55;72205:9;72215:6;72222:12;72235:11;;72192:12;:55::i;:::-;72184:64;;;;;;72269:46;72275:10;72287:12;72301:9;72269:46;;;;;;;;;;;;:5;:46::i;:::-;72378:22;;;;:8;:22;;;;;;;;72416:10;72378:49;;:37;;:49;;;;;;:64;;72432:9;72378:53;:64::i;:::-;72326:22;;;;:8;:22;;;;;;;;72364:10;72326:49;;;:37;;;;:49;;;;;;:116;;;;72460:44;;35532:25:1;;;35573:18;;;35566:34;;;72364:10:0;;72460:44;;35505:18:1;72460:44:0;;;;;;;71976:536;;;;;:::o;50119:401::-;-1:-1:-1;;;;;50327:20:0;;16584:10;50327:20;;:60;;-1:-1:-1;50351:36:0;50368:4;16584:10;49879:168;:::i;50351:36::-;50305:151;;;;-1:-1:-1;;;50305:151:0;;;;;;;:::i;:::-;50467:45;50485:4;50491:2;50495;50499:6;50507:4;50467:17;:45::i;21007:201::-;20171:6;;-1:-1:-1;;;;;20171:6:0;16584:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21096:22:0;::::1;21088:73;;;::::0;-1:-1:-1;;;21088:73:0;;24870:2:1;21088:73:0::1;::::0;::::1;24852:21:1::0;24909:2;24889:18;;;24882:30;24948:34;24928:18;;;24921:62;-1:-1:-1;;;24999:18:1;;;24992:36;25045:19;;21088:73:0::1;24668:402:1::0;21088:73:0::1;21172:28;21191:8;21172:18;:28::i;65504:321::-:0;-1:-1:-1;;;;;65644:23:0;;16584:10;65644:23;;:66;;-1:-1:-1;65671:39:0;65688:7;16584:10;49879:168;:::i;65671:39::-;65622:157;;;;-1:-1:-1;;;65622:157:0;;;;;;;:::i;:::-;65792:25;65798:7;65807:2;65811:5;65792;:25::i;47681:310::-;47783:4;-1:-1:-1;;;;;;47820:41:0;;-1:-1:-1;;;47820:41:0;;:110;;-1:-1:-1;;;;;;;47878:52:0;;-1:-1:-1;;;47878:52:0;47820:110;:163;;;;47947:36;47971:11;47947:23;:36::i;54599:88::-;54666:13;;;;:4;;:13;;;;;:::i;66915:205::-;67074:38;67086:7;67095:2;67099:6;67107:4;67074:11;:38::i;:::-;66915:205;;;;:::o;52681:1074::-;52908:7;:14;52894:3;:10;:28;52886:81;;;;-1:-1:-1;;;52886:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52986:16:0;;52978:66;;;;-1:-1:-1;;;52978:66:0;;;;;;;:::i;:::-;16584:10;53101:60;16584:10;53132:4;53138:2;53142:3;53147:7;53156:4;53101:20;:60::i;:::-;53179:9;53174:421;53198:3;:10;53194:1;:14;53174:421;;;53230:10;53243:3;53247:1;53243:6;;;;;;;;:::i;:::-;;;;;;;53230:19;;53264:14;53281:7;53289:1;53281:10;;;;;;;;:::i;:::-;;;;;;;;;;;;53308:19;53330:13;;;:9;:13;;;;;;-1:-1:-1;;;;;53330:19:0;;;;;;;;;;;;53281:10;;-1:-1:-1;53372:21:0;;;;53364:76;;;;-1:-1:-1;;;53364:76:0;;;;;;;:::i;:::-;53484:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;53484:19:0;;;;;;;;;;53506:20;;;53484:42;;53556:17;;;;;;;:27;;53506:20;;53484:13;53556:27;;53506:20;;53556:27;:::i;:::-;;;;;;;;53215:380;;;53210:3;;;;:::i;:::-;;;53174:421;;;;53642:2;-1:-1:-1;;;;;53612:47:0;53636:4;-1:-1:-1;;;;;53612:47:0;53626:8;-1:-1:-1;;;;;53612:47:0;;53646:3;53651:7;53612:47;;;;;;;:::i;:::-;;;;;;;;53672:75;53708:8;53718:4;53724:2;53728:3;53733:7;53742:4;53672:35;:75::i;:::-;52875:880;52681:1074;;;;;:::o;34964:497::-;35045:22;35053:4;35059:7;35045;:22::i;:::-;35040:414;;35233:41;35261:7;-1:-1:-1;;;;;35233:41:0;35271:2;35233:19;:41::i;:::-;35347:38;35375:4;35382:2;35347:19;:38::i;:::-;35138:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;35138:270:0;;;;;;;;;;-1:-1:-1;;;35084:358:0;;;;;;;:::i;38584:238::-;38668:22;38676:4;38682:7;38668;:22::i;:::-;38663:152;;38707:6;:12;;;;;;;;;;;-1:-1:-1;;;;;38707:29:0;;;;;;;;;:36;;-1:-1:-1;;38707:36:0;38739:4;38707:36;;;38790:12;16584:10;;16504:98;38790:12;-1:-1:-1;;;;;38763:40:0;38781:7;-1:-1:-1;;;;;38763:40:0;38775:4;38763:40;;;;;;;;;;38584:238;;:::o;38954:239::-;39038:22;39046:4;39052:7;39038;:22::i;:::-;39034:152;;;39109:5;39077:12;;;;;;;;;;;-1:-1:-1;;;;;39077:29:0;;;;;;;;;;:37;;-1:-1:-1;;39077:37:0;;;39134:40;16584:10;;39077:12;;39134:40;;39109:5;39134:40;38954:239;;:::o;18909:120::-;17921:7;;;;18445:41;;;;-1:-1:-1;;;18445:41:0;;23700:2:1;18445:41:0;;;23682:21:1;23739:2;23719:18;;;23712:30;-1:-1:-1;;;23758:18:1;;;23751:50;23818:18;;18445:41:0;23498:344:1;18445:41:0;18968:7:::1;:15:::0;;-1:-1:-1;;18968:15:0::1;::::0;;18999:22:::1;16584:10:::0;19008:12:::1;18999:22;::::0;-1:-1:-1;;;;;18160:32:1;;;18142:51;;18130:2;18115:18;18999:22:0::1;;;;;;;18909:120::o:0;14565:190::-;14690:4;14743;14714:25;14727:5;14734:4;14714:12;:25::i;:::-;:33;;14565:190;-1:-1:-1;;;;14565:190:0:o;74396:1667::-;74558:4;74627:8;17921:7;;;;;17850:86;74627:8;74626:9;74618:47;;;;-1:-1:-1;;;74618:47:0;;27274:2:1;74618:47:0;;;27256:21:1;27313:2;27293:18;;;27286:30;-1:-1:-1;;;27332:18:1;;;27325:55;27397:18;;74618:47:0;27072:349:1;74618:47:0;74734:22;;;;:8;:22;;;;;:32;;;74726:79;;;;-1:-1:-1;;;74726:79:0;;25277:2:1;74726:79:0;;;25259:21:1;25316:2;25296:18;;;25289:30;25355:31;25335:18;;;25328:59;25404:18;;74726:79:0;25075:353:1;74726:79:0;74876:22;;;;:8;:22;;;;;:33;;;;;74868:60;;;;-1:-1:-1;;;74868:60:0;;34217:2:1;74868:60:0;;;34199:21:1;34256:2;34236:18;;;34229:30;-1:-1:-1;;;34275:18:1;;;34268:44;34329:18;;74868:60:0;34015:338:1;74868:60:0;75007:22;;;;:8;:22;;;;;:32;;;74993:47;;:9;;:13;:47::i;:::-;74980:9;:60;;74972:101;;;;-1:-1:-1;;;74972:101:0;;31499:2:1;74972:101:0;;;31481:21:1;31538:2;31518:18;;;31511:30;31577;31557:18;;;31550:58;31625:18;;74972:101:0;31297:352:1;74972:101:0;75159:22;;;;:8;:22;;;;;;;;75197:10;75159:49;;:37;;:49;;;;;;75227:6;;75159:64;;75213:9;75159:53;:64::i;:::-;:74;;75151:127;;;;-1:-1:-1;;;75151:127:0;;24461:2:1;75151:127:0;;;24443:21:1;24500:2;24480:18;;;24473:30;24539:34;24519:18;;;24512:62;-1:-1:-1;;;24590:18:1;;;24583:38;24638:19;;75151:127:0;24259:404:1;75151:127:0;75365:22;;;;:8;:22;;;;;;;;:35;;;;75335:10;75297:49;;:37;;;;:49;;;;;;;:64;;75351:9;75297:53;:64::i;:::-;:103;;75289:169;;;;-1:-1:-1;;;75289:169:0;;32207:2:1;75289:169:0;;;32189:21:1;32246:2;32226:18;;;32219:30;32285:34;32265:18;;;32258:62;-1:-1:-1;;;32336:18:1;;;32329:51;32397:19;;75289:169:0;32005:417:1;75289:169:0;75490:22;;;;:8;:22;;;;;:36;;;75477:49;;;75469:99;;;;-1:-1:-1;;;75469:99:0;;30732:2:1;75469:99:0;;;30714:21:1;30771:2;30751:18;;;30744:30;30810:34;30790:18;;;30783:62;-1:-1:-1;;;30861:18:1;;;30854:35;30906:19;;75469:99:0;30530:401:1;75469:99:0;75630:22;;;;:8;:22;;;;;;;;:32;;;62975:12;:16;;;;;;;75589:37;;75617:9;;75589:37;:::i;:::-;:73;;75581:118;;;;-1:-1:-1;;;75581:118:0;;29556:2:1;75581:118:0;;;29538:21:1;;;29575:18;;;29568:30;29634:34;29614:18;;;29607:62;29686:18;;75581:118:0;29354:356:1;75581:118:0;75728:12;75762:22;;;:8;:22;;;;;:36;;;75743:4;;75762:36;;75758:273;;;75834:65;75852:11;;75834:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75865:22:0;;;:8;:22;;;;;:33;;-1:-1:-1;75834:17:0;;-1:-1:-1;;75834:65:0:i;:::-;75824:75;;75940:7;75914:103;;;;-1:-1:-1;;;75914:103:0;;28329:2:1;75914:103:0;;;28311:21:1;28368:2;28348:18;;;28341:30;28407:34;28387:18;;;28380:62;-1:-1:-1;;;28458:18:1;;;28451:31;28499:19;;75914:103:0;28127:397:1;75914:103:0;76048:7;74396:1667;-1:-1:-1;;;;;;74396:1667:0:o;8106:98::-;8164:7;8191:5;8195:1;8191;:5;:::i;:::-;8184:12;8106:98;-1:-1:-1;;;8106:98:0:o;7368:::-;7426:7;7453:5;7457:1;7453;:5;:::i;67128:226::-;67306:40;67323:2;67327:3;67332:7;67341:4;67306:16;:40::i;67541:203::-;67697:39;67714:7;67723:3;67728:7;67697:16;:39::i;21368:191::-;21461:6;;;-1:-1:-1;;;;;21478:17:0;;;-1:-1:-1;;;;;;21478:17:0;;;;;;;21511:40;;21461:6;;;21478:17;21461:6;;21511:40;;21442:16;;21511:40;21431:128;21368:191;:::o;18650:118::-;17921:7;;;;18175:9;18167:38;;;;-1:-1:-1;;;18167:38:0;;27628:2:1;18167:38:0;;;27610:21:1;27667:2;27647:18;;;27640:30;-1:-1:-1;;;27686:18:1;;;27679:46;27742:18;;18167:38:0;27426:340:1;18167:38:0;18710:7:::1;:14:::0;;-1:-1:-1;;18710:14:0::1;18720:4;18710:14;::::0;;18740:20:::1;18747:12;16584:10:::0;;16504:98;58867:331;59022:8;-1:-1:-1;;;;;59013:17:0;:5;-1:-1:-1;;;;;59013:17:0;;;59005:71;;;;-1:-1:-1;;;59005:71:0;;32988:2:1;59005:71:0;;;32970:21:1;33027:2;33007:18;;;33000:30;33066:34;33046:18;;;33039:62;-1:-1:-1;;;33117:18:1;;;33110:39;33166:19;;59005:71:0;32786:405:1;59005:71:0;-1:-1:-1;;;;;59087:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;59087:46:0;;;;;;;;;;59149:41;;21000::1;;;59149::0;;20973:18:1;59149:41:0;;;;;;;58867:331;;;:::o;51503:820::-;-1:-1:-1;;;;;51691:16:0;;51683:66;;;;-1:-1:-1;;;51683:66:0;;;;;;;:::i;:::-;16584:10;51806:96;16584:10;51837:4;51843:2;51847:21;51865:2;51847:17;:21::i;:::-;51870:25;51888:6;51870:17;:25::i;:::-;51897:4;51806:20;:96::i;:::-;51915:19;51937:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;51937:19:0;;;;;;;;;;51975:21;;;;51967:76;;;;-1:-1:-1;;;51967:76:0;;;;;;;:::i;:::-;52079:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;52079:19:0;;;;;;;;;;52101:20;;;52079:42;;52143:17;;;;;;;:27;;52101:20;;52079:13;52143:27;;52101:20;;52143:27;:::i;:::-;;;;-1:-1:-1;;52188:46:0;;;35532:25:1;;;35588:2;35573:18;;35566:34;;;-1:-1:-1;;;;;52188:46:0;;;;;;;;;;;;;;35505:18:1;52188:46:0;;;;;;;52247:68;52278:8;52288:4;52294:2;52298;52302:6;52310:4;52247:30;:68::i;:::-;51672:651;;51503:820;;;;;:::o;67362:171::-;67493:32;67505:7;67514:2;67518:6;67493:11;:32::i;34239:204::-;34324:4;-1:-1:-1;;;;;;34348:47:0;;-1:-1:-1;;;34348:47:0;;:87;;-1:-1:-1;;;;;;;;;;31608:40:0;;;34399:36;31499:157;55073:569;-1:-1:-1;;;;;55226:16:0;;55218:62;;;;-1:-1:-1;;;55218:62:0;;;;;;;:::i;:::-;16584:10;55337:102;16584:10;55293:16;55380:2;55384:21;55402:2;55384:17;:21::i;55337:102::-;55452:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;55452:17:0;;;;;;;;;:27;;55473:6;;55452:13;:27;;55473:6;;55452:27;:::i;:::-;;;;-1:-1:-1;;55495:52:0;;;35532:25:1;;;35588:2;35573:18;;35566:34;;;-1:-1:-1;;;;;55495:52:0;;;;55528:1;;55495:52;;;;;;35505:18:1;55495:52:0;;;;;;;55560:74;55591:8;55609:1;55613:2;55617;55621:6;55629:4;55560:30;:74::i;67754:354::-;68034:66;68061:8;68071:4;68077:2;68081:3;68086:7;68095:4;68034:26;:66::i;61135:813::-;-1:-1:-1;;;;;61375:13:0;;22709:20;22757:8;61371:570;;61411:79;;-1:-1:-1;;;61411:79:0;;-1:-1:-1;;;;;61411:43:0;;;;;:79;;61455:8;;61465:4;;61471:3;;61476:7;;61485:4;;61411:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61411:79:0;;;;;;;;-1:-1:-1;;61411:79:0;;;;;;;;;;;;:::i;:::-;;;61407:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;61803:6;61796:14;;-1:-1:-1;;;61796:14:0;;;;;;;;:::i;61407:523::-;;;61852:62;;-1:-1:-1;;;61852:62:0;;22509:2:1;61852:62:0;;;22491:21:1;22548:2;22528:18;;;22521:30;22587:34;22567:18;;;22560:62;-1:-1:-1;;;22638:18:1;;;22631:50;22698:19;;61852:62:0;22307:416:1;61407:523:0;-1:-1:-1;;;;;;61572:60:0;;-1:-1:-1;;;61572:60:0;61568:159;;61657:50;;-1:-1:-1;;;61657:50:0;;;;;;;:::i;13199:451::-;13274:13;13300:19;13332:10;13336:6;13332:1;:10;:::i;:::-;:14;;13345:1;13332:14;:::i;:::-;-1:-1:-1;;;;;13322:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13322:25:0;;13300:47;;-1:-1:-1;;;13358:6:0;13365:1;13358:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;13358:15:0;;;;;;;;;-1:-1:-1;;;13384:6:0;13391:1;13384:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;13384:15:0;;;;;;;;-1:-1:-1;13415:9:0;13427:10;13431:6;13427:1;:10;:::i;:::-;:14;;13440:1;13427:14;:::i;:::-;13415:26;;13410:135;13447:1;13443;:5;13410:135;;;-1:-1:-1;;;13495:5:0;13503:3;13495:11;13482:25;;;;;;;:::i;:::-;;;;13470:6;13477:1;13470:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;13470:37:0;;;;;;;;-1:-1:-1;13532:1:0;13522:11;;;;;13450:3;;;:::i;:::-;;;13410:135;;;-1:-1:-1;13563:10:0;;13555:55;;;;-1:-1:-1;;;13555:55:0;;22930:2:1;13555:55:0;;;22912:21:1;;;22949:18;;;22942:30;23008:34;22988:18;;;22981:62;23060:18;;13555:55:0;22728:356:1;15117:701:0;15200:7;15243:4;15200:7;15258:523;15282:5;:12;15278:1;:16;15258:523;;;15316:20;15339:5;15345:1;15339:8;;;;;;;;:::i;:::-;;;;;;;15316:31;;15382:12;15366;:28;15362:408;;15519:44;;;;;;17110:19:1;;;17145:12;;;17138:28;;;17182:12;;15519:44:0;;;;;;;;;;;;15509:55;;;;;;15494:70;;15362:408;;;15709:44;;;;;;17110:19:1;;;17145:12;;;17138:28;;;17182:12;;15709:44:0;;;;;;;;;;;;15699:55;;;;;;15684:70;;15362:408;-1:-1:-1;15296:3:0;;;;:::i;:::-;;;;15258:523;;55998:735;-1:-1:-1;;;;;56176:16:0;;56168:62;;;;-1:-1:-1;;;56168:62:0;;;;;;;:::i;:::-;56263:7;:14;56249:3;:10;:28;56241:81;;;;-1:-1:-1;;;56241:81:0;;;;;;;:::i;:::-;16584:10;56379:66;16584:10;56335:16;56422:2;56426:3;56431:7;56440:4;56379:20;:66::i;:::-;56463:9;56458:103;56482:3;:10;56478:1;:14;56458:103;;;56539:7;56547:1;56539:10;;;;;;;;:::i;:::-;;;;;;;56514:9;:17;56524:3;56528:1;56524:6;;;;;;;;:::i;:::-;;;;;;;56514:17;;;;;;;;;;;:21;56532:2;-1:-1:-1;;;;;56514:21:0;-1:-1:-1;;;;;56514:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;56494:3:0;;-1:-1:-1;56494:3:0;;;:::i;:::-;;;;56458:103;;;;56614:2;-1:-1:-1;;;;;56578:53:0;56610:1;-1:-1:-1;;;;;56578:53:0;56592:8;-1:-1:-1;;;;;56578:53:0;;56618:3;56623:7;56578:53;;;;;;;:::i;:::-;;;;;;;;56644:81;56680:8;56698:1;56702:2;56706:3;56711:7;56720:4;56644:35;:81::i;57834:891::-;-1:-1:-1;;;;;57986:18:0;;57978:66;;;;-1:-1:-1;;;57978:66:0;;;;;;;:::i;:::-;58077:7;:14;58063:3;:10;:28;58055:81;;;;-1:-1:-1;;;58055:81:0;;;;;;;:::i;:::-;58149:16;16584:10;58149:31;;58193:66;58214:8;58224:4;58238:1;58242:3;58247:7;58193:66;;;;;;;;;;;;:20;:66::i;:::-;58277:9;58272:373;58296:3;:10;58292:1;:14;58272:373;;;58328:10;58341:3;58345:1;58341:6;;;;;;;;:::i;:::-;;;;;;;58328:19;;58362:14;58379:7;58387:1;58379:10;;;;;;;;:::i;:::-;;;;;;;;;;;;58406:19;58428:13;;;:9;:13;;;;;;-1:-1:-1;;;;;58428:19:0;;;;;;;;;;;;58379:10;;-1:-1:-1;58470:21:0;;;;58462:70;;;;-1:-1:-1;;;58462:70:0;;;;;;;:::i;:::-;58576:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;58576:19:0;;;;;;;;;;58598:20;;58576:42;;58308:3;;;;:::i;:::-;;;;58272:373;;;;58700:1;-1:-1:-1;;;;;58662:55:0;58686:4;-1:-1:-1;;;;;58662:55:0;58676:8;-1:-1:-1;;;;;58662:55:0;;58704:3;58709:7;58662:55;;;;;;;:::i;:::-;;;;;;;;57967:758;57834:891;;;:::o;61956:198::-;62076:16;;;62090:1;62076:16;;;;;;;;;62022;;62051:22;;62076:16;;;;;;;;;;;;-1:-1:-1;62076:16:0;62051:41;;62114:7;62103:5;62109:1;62103:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;62141:5;61956:198;-1:-1:-1;;61956:198:0:o;60383:744::-;-1:-1:-1;;;;;60598:13:0;;22709:20;22757:8;60594:526;;60634:72;;-1:-1:-1;;;60634:72:0;;-1:-1:-1;;;;;60634:38:0;;;;;:72;;60673:8;;60683:4;;60689:2;;60693:6;;60701:4;;60634:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60634:72:0;;;;;;;;-1:-1:-1;;60634:72:0;;;;;;;;;;;;:::i;:::-;;;60630:479;;;;:::i;:::-;-1:-1:-1;;;;;;60756:55:0;;-1:-1:-1;;;60756:55:0;60752:154;;60836:50;;-1:-1:-1;;;60836:50:0;;;;;;;:::i;56983:648::-;-1:-1:-1;;;;;57110:18:0;;57102:66;;;;-1:-1:-1;;;57102:66:0;;;;;;;:::i;:::-;16584:10;57225:102;16584:10;57256:4;57181:16;57274:21;57292:2;57274:17;:21::i;:::-;57297:25;57315:6;57297:17;:25::i;:::-;57225:102;;;;;;;;;;;;:20;:102::i;:::-;57340:19;57362:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;57362:19:0;;;;;;;;;;57400:21;;;;57392:70;;;;-1:-1:-1;;;57392:70:0;;;;;;;:::i;:::-;57498:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;57498:19:0;;;;;;;;;;;;57520:20;;;57498:42;;57569:54;;35532:25:1;;;35573:18;;;35566:34;;;57498:19:0;;57569:54;;;;;;35505:18:1;57569:54:0;;;;;;;57091:540;;56983:648;;;:::o;63294:655::-;63533:66;63560:8;63570:4;63576:2;63580:3;63585:7;63594:4;63533:26;:66::i;:::-;-1:-1:-1;;;;;63616:18:0;;63612:160;;63656:9;63651:110;63675:3;:10;63671:1;:14;63651:110;;;63735:7;63743:1;63735:10;;;;;;;;:::i;:::-;;;;;;;63711:12;:20;63724:3;63728:1;63724:6;;;;;;;;:::i;:::-;;;;;;;63711:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;63687:3:0;;-1:-1:-1;63687:3:0;;:::i;:::-;;;63651:110;;;;63612:160;-1:-1:-1;;;;;63788:16:0;;63784:158;;63826:9;63821:110;63845:3;:10;63841:1;:14;63821:110;;;63905:7;63913:1;63905:10;;;;;;;;:::i;:::-;;;;;;;63881:12;:20;63894:3;63898:1;63894:6;;;;;;;;:::i;:::-;;;;;;;63881:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;63857:3:0;;-1:-1:-1;63857:3:0;;:::i;:::-;;;63821:110;;64674:392;17921:7;;;;65000:9;64992:66;;;;-1:-1:-1;;;64992:66:0;;26040:2:1;64992:66:0;;;26022:21:1;26079:2;26059:18;;;26052:30;26118:34;26098:18;;;26091:62;-1:-1:-1;;;26169:18:1;;;26162:42;26221:19;;64992:66:0;25838:408:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:386:1;96:8;106:6;160:3;153:4;145:6;141:17;137:27;127:55;;178:1;175;168:12;127:55;-1:-1:-1;201:20:1;;-1:-1:-1;;;;;233:30:1;;230:50;;;276:1;273;266:12;230:50;313:4;305:6;301:17;289:29;;373:3;366:4;356:6;353:1;349:14;341:6;337:27;333:38;330:47;327:67;;;390:1;387;380:12;327:67;14:386;;;;;:::o;405:735::-;459:5;512:3;505:4;497:6;493:17;489:27;479:55;;530:1;527;520:12;479:55;566:6;553:20;592:4;615:43;655:2;615:43;:::i;:::-;687:2;681:9;699:31;727:2;719:6;699:31;:::i;:::-;765:18;;;799:15;;;;-1:-1:-1;834:15:1;;;884:1;880:10;;;868:23;;864:32;;861:41;-1:-1:-1;858:61:1;;;915:1;912;905:12;858:61;937:1;947:163;961:2;958:1;955:9;947:163;;;1018:17;;1006:30;;1056:12;;;;1088;;;;979:1;972:9;947:163;;;-1:-1:-1;1128:6:1;;405:735;-1:-1:-1;;;;;;;405:735:1:o;1145:160::-;1210:20;;1266:13;;1259:21;1249:32;;1239:60;;1295:1;1292;1285:12;1239:60;1145:160;;;:::o;1310:555::-;1352:5;1405:3;1398:4;1390:6;1386:17;1382:27;1372:55;;1423:1;1420;1413:12;1372:55;1459:6;1446:20;-1:-1:-1;;;;;1481:2:1;1478:26;1475:52;;;1507:18;;:::i;:::-;1556:2;1550:9;1568:67;1623:2;1604:13;;-1:-1:-1;;1600:27:1;1629:4;1596:38;1550:9;1568:67;:::i;:::-;1659:2;1651:6;1644:18;1705:3;1698:4;1693:2;1685:6;1681:15;1677:26;1674:35;1671:55;;;1722:1;1719;1712:12;1671:55;1786:2;1779:4;1771:6;1767:17;1760:4;1752:6;1748:17;1735:54;1833:1;1809:15;;;1826:4;1805:26;1798:37;;;;1813:6;1310:555;-1:-1:-1;;;1310:555:1:o;1870:247::-;1929:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:52;;;1998:1;1995;1988:12;1950:52;2037:9;2024:23;2056:31;2081:5;2056:31;:::i;2122:323::-;2198:6;2206;2259:2;2247:9;2238:7;2234:23;2230:32;2227:52;;;2275:1;2272;2265:12;2227:52;2314:9;2301:23;2333:31;2358:5;2333:31;:::i;:::-;2383:5;2435:2;2420:18;;;;2407:32;;-1:-1:-1;;;2122:323:1:o;2450:388::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2634:9;2621:23;2653:31;2678:5;2653:31;:::i;:::-;2703:5;-1:-1:-1;2760:2:1;2745:18;;2732:32;2773:33;2732:32;2773:33;:::i;:::-;2825:7;2815:17;;;2450:388;;;;;:::o;2843:1071::-;2997:6;3005;3013;3021;3029;3082:3;3070:9;3061:7;3057:23;3053:33;3050:53;;;3099:1;3096;3089:12;3050:53;3138:9;3125:23;3157:31;3182:5;3157:31;:::i;:::-;3207:5;-1:-1:-1;3264:2:1;3249:18;;3236:32;3277:33;3236:32;3277:33;:::i;:::-;3329:7;-1:-1:-1;3387:2:1;3372:18;;3359:32;-1:-1:-1;;;;;3440:14:1;;;3437:34;;;3467:1;3464;3457:12;3437:34;3490:61;3543:7;3534:6;3523:9;3519:22;3490:61;:::i;:::-;3480:71;;3604:2;3593:9;3589:18;3576:32;3560:48;;3633:2;3623:8;3620:16;3617:36;;;3649:1;3646;3639:12;3617:36;3672:63;3727:7;3716:8;3705:9;3701:24;3672:63;:::i;:::-;3662:73;;3788:3;3777:9;3773:19;3760:33;3744:49;;3818:2;3808:8;3805:16;3802:36;;;3834:1;3831;3824:12;3802:36;;3857:51;3900:7;3889:8;3878:9;3874:24;3857:51;:::i;:::-;3847:61;;;2843:1071;;;;;;;;:::o;3919:734::-;4023:6;4031;4039;4047;4055;4108:3;4096:9;4087:7;4083:23;4079:33;4076:53;;;4125:1;4122;4115:12;4076:53;4164:9;4151:23;4183:31;4208:5;4183:31;:::i;:::-;4233:5;-1:-1:-1;4290:2:1;4275:18;;4262:32;4303:33;4262:32;4303:33;:::i;:::-;4355:7;-1:-1:-1;4409:2:1;4394:18;;4381:32;;-1:-1:-1;4460:2:1;4445:18;;4432:32;;-1:-1:-1;4515:3:1;4500:19;;4487:33;-1:-1:-1;;;;;4532:30:1;;4529:50;;;4575:1;4572;4565:12;4529:50;4598:49;4639:7;4630:6;4619:9;4615:22;4598:49;:::i;4658:946::-;4789:6;4797;4805;4813;4821;4874:2;4862:9;4853:7;4849:23;4845:32;4842:52;;;4890:1;4887;4880:12;4842:52;4929:9;4916:23;4948:31;4973:5;4948:31;:::i;:::-;4998:5;-1:-1:-1;5054:2:1;5039:18;;5026:32;-1:-1:-1;;;;;5107:14:1;;;5104:34;;;5134:1;5131;5124:12;5104:34;5173:89;5254:7;5245:6;5234:9;5230:22;5173:89;:::i;:::-;5281:8;;-1:-1:-1;5147:115:1;-1:-1:-1;5369:2:1;5354:18;;5341:32;;-1:-1:-1;5385:16:1;;;5382:36;;;5414:1;5411;5404:12;5382:36;;5453:91;5536:7;5525:8;5514:9;5510:24;5453:91;:::i;:::-;4658:946;;;;-1:-1:-1;4658:946:1;;-1:-1:-1;5563:8:1;;5427:117;4658:946;-1:-1:-1;;;4658:946:1:o;5609:730::-;5736:6;5744;5752;5805:2;5793:9;5784:7;5780:23;5776:32;5773:52;;;5821:1;5818;5811:12;5773:52;5860:9;5847:23;5879:31;5904:5;5879:31;:::i;:::-;5929:5;-1:-1:-1;5985:2:1;5970:18;;5957:32;-1:-1:-1;;;;;6038:14:1;;;6035:34;;;6065:1;6062;6055:12;6035:34;6088:61;6141:7;6132:6;6121:9;6117:22;6088:61;:::i;:::-;6078:71;;6202:2;6191:9;6187:18;6174:32;6158:48;;6231:2;6221:8;6218:16;6215:36;;;6247:1;6244;6237:12;6215:36;;6270:63;6325:7;6314:8;6303:9;6299:24;6270:63;:::i;:::-;6260:73;;;5609:730;;;;;:::o;6344:315::-;6409:6;6417;6470:2;6458:9;6449:7;6445:23;6441:32;6438:52;;;6486:1;6483;6476:12;6438:52;6525:9;6512:23;6544:31;6569:5;6544:31;:::i;:::-;6594:5;-1:-1:-1;6618:35:1;6649:2;6634:18;;6618:35;:::i;:::-;6608:45;;6344:315;;;;;:::o;6984:383::-;7061:6;7069;7077;7130:2;7118:9;7109:7;7105:23;7101:32;7098:52;;;7146:1;7143;7136:12;7098:52;7185:9;7172:23;7204:31;7229:5;7204:31;:::i;:::-;7254:5;7306:2;7291:18;;7278:32;;-1:-1:-1;7357:2:1;7342:18;;;7329:32;;6984:383;-1:-1:-1;;;6984:383:1:o;7372:1288::-;7490:6;7498;7551:2;7539:9;7530:7;7526:23;7522:32;7519:52;;;7567:1;7564;7557:12;7519:52;7607:9;7594:23;-1:-1:-1;;;;;7677:2:1;7669:6;7666:14;7663:34;;;7693:1;7690;7683:12;7663:34;7731:6;7720:9;7716:22;7706:32;;7776:7;7769:4;7765:2;7761:13;7757:27;7747:55;;7798:1;7795;7788:12;7747:55;7834:2;7821:16;7856:4;7879:43;7919:2;7879:43;:::i;:::-;7951:2;7945:9;7963:31;7991:2;7983:6;7963:31;:::i;:::-;8029:18;;;8063:15;;;;-1:-1:-1;8098:11:1;;;8140:1;8136:10;;;8128:19;;8124:28;;8121:41;-1:-1:-1;8118:61:1;;;8175:1;8172;8165:12;8118:61;8197:1;8188:10;;8207:238;8221:2;8218:1;8215:9;8207:238;;;8292:3;8279:17;8309:31;8334:5;8309:31;:::i;:::-;8353:18;;8239:1;8232:9;;;;;8391:12;;;;8423;;8207:238;;;-1:-1:-1;8464:6:1;-1:-1:-1;;8508:18:1;;8495:32;;-1:-1:-1;;8539:16:1;;;8536:36;;;8568:1;8565;8558:12;8536:36;;8591:63;8646:7;8635:8;8624:9;8620:24;8591:63;:::i;:::-;8581:73;;;7372:1288;;;;;:::o;8665:1034::-;8758:6;8766;8819:2;8807:9;8798:7;8794:23;8790:32;8787:52;;;8835:1;8832;8825:12;8787:52;8875:9;8862:23;-1:-1:-1;;;;;8900:6:1;8897:30;8894:50;;;8940:1;8937;8930:12;8894:50;8963:22;;9016:4;9008:13;;9004:27;-1:-1:-1;8994:55:1;;9045:1;9042;9035:12;8994:55;9081:2;9068:16;9103:4;9126:43;9166:2;9126:43;:::i;:::-;9198:2;9192:9;9210:31;9238:2;9230:6;9210:31;:::i;:::-;9276:18;;;9310:15;;;;-1:-1:-1;9345:11:1;;;9387:1;9383:10;;;9375:19;;9371:28;;9368:41;-1:-1:-1;9365:61:1;;;9422:1;9419;9412:12;9365:61;9444:1;9435:10;;9454:163;9468:2;9465:1;9462:9;9454:163;;;9525:17;;9513:30;;9486:1;9479:9;;;;;9563:12;;;;9595;;9454:163;;;-1:-1:-1;9636:6:1;9674:18;;;;9661:32;;-1:-1:-1;;;;;;8665:1034:1:o;9704:1507::-;9925:6;9933;9941;9949;9957;9965;9973;9981;10034:3;10022:9;10013:7;10009:23;10005:33;10002:53;;;10051:1;10048;10041:12;10002:53;10091:9;10078:23;-1:-1:-1;;;;;10161:2:1;10153:6;10150:14;10147:34;;;10177:1;10174;10167:12;10147:34;10216:89;10297:7;10288:6;10277:9;10273:22;10216:89;:::i;:::-;10324:8;;-1:-1:-1;10190:115:1;-1:-1:-1;10412:2:1;10397:18;;10384:32;;-1:-1:-1;10428:16:1;;;10425:36;;;10457:1;10454;10447:12;10425:36;10496:91;10579:7;10568:8;10557:9;10553:24;10496:91;:::i;:::-;10606:8;;-1:-1:-1;10470:117:1;-1:-1:-1;10694:2:1;10679:18;;10666:32;;-1:-1:-1;10710:16:1;;;10707:36;;;10739:1;10736;10729:12;10707:36;10778:91;10861:7;10850:8;10839:9;10835:24;10778:91;:::i;:::-;10888:8;;-1:-1:-1;10752:117:1;-1:-1:-1;10976:2:1;10961:18;;10948:32;;-1:-1:-1;10992:16:1;;;10989:36;;;11021:1;11018;11011:12;10989:36;;11060:91;11143:7;11132:8;11121:9;11117:24;11060:91;:::i;:::-;9704:1507;;;;-1:-1:-1;9704:1507:1;;-1:-1:-1;9704:1507:1;;;;;;11170:8;-1:-1:-1;;;9704:1507:1:o;11216:180::-;11275:6;11328:2;11316:9;11307:7;11303:23;11299:32;11296:52;;;11344:1;11341;11334:12;11296:52;-1:-1:-1;11367:23:1;;11216:180;-1:-1:-1;11216:180:1:o;11401:315::-;11469:6;11477;11530:2;11518:9;11509:7;11505:23;11501:32;11498:52;;;11546:1;11543;11536:12;11498:52;11582:9;11569:23;11559:33;;11642:2;11631:9;11627:18;11614:32;11655:31;11680:5;11655:31;:::i;11721:733::-;11841:6;11849;11857;11865;11873;11881;11889;11942:3;11930:9;11921:7;11917:23;11913:33;11910:53;;;11959:1;11956;11949:12;11910:53;11995:9;11982:23;11972:33;;12052:2;12041:9;12037:18;12024:32;12014:42;;12103:2;12092:9;12088:18;12075:32;12065:42;;12154:2;12143:9;12139:18;12126:32;12116:42;;12209:3;12198:9;12194:19;12181:33;-1:-1:-1;;;;;12229:6:1;12226:30;12223:50;;;12269:1;12266;12259:12;12223:50;12292:49;12333:7;12324:6;12313:9;12309:22;12292:49;:::i;:::-;12282:59;;;12388:3;12377:9;12373:19;12360:33;12350:43;;12412:36;12443:3;12432:9;12428:19;12412:36;:::i;:::-;12402:46;;11721:733;;;;;;;;;;:::o;12459:940::-;12600:6;12608;12616;12624;12632;12640;12648;12656;12664;12672;12725:3;12713:9;12704:7;12700:23;12696:33;12693:53;;;12742:1;12739;12732:12;12693:53;12778:9;12765:23;12755:33;;12835:2;12824:9;12820:18;12807:32;12797:42;;12886:2;12875:9;12871:18;12858:32;12848:42;;12937:2;12926:9;12922:18;12909:32;12899:42;;12992:3;12981:9;12977:19;12964:33;-1:-1:-1;;;;;13012:6:1;13009:30;13006:50;;;13052:1;13049;13042:12;13006:50;13075:49;13116:7;13107:6;13096:9;13092:22;13075:49;:::i;:::-;13065:59;;;13171:3;13160:9;13156:19;13143:33;13133:43;;13195:36;13226:3;13215:9;13211:19;13195:36;:::i;:::-;13185:46;;13278:3;13267:9;13263:19;13250:33;13240:43;;13302:36;13333:3;13322:9;13318:19;13302:36;:::i;:::-;13292:46;;13357:36;13388:3;13377:9;13373:19;13357:36;:::i;:::-;13347:46;;12459:940;;;;;;;;;;;;;:::o;13404:245::-;13462:6;13515:2;13503:9;13494:7;13490:23;13486:32;13483:52;;;13531:1;13528;13521:12;13483:52;13570:9;13557:23;13589:30;13613:5;13589:30;:::i;13654:249::-;13723:6;13776:2;13764:9;13755:7;13751:23;13747:32;13744:52;;;13792:1;13789;13782:12;13744:52;13824:9;13818:16;13843:30;13867:5;13843:30;:::i;13908:321::-;13977:6;14030:2;14018:9;14009:7;14005:23;14001:32;13998:52;;;14046:1;14043;14036:12;13998:52;14086:9;14073:23;-1:-1:-1;;;;;14111:6:1;14108:30;14105:50;;;14151:1;14148;14141:12;14105:50;14174:49;14215:7;14206:6;14195:9;14191:22;14174:49;:::i;14739:248::-;14804:6;14812;14865:2;14853:9;14844:7;14840:23;14836:32;14833:52;;;14881:1;14878;14871:12;14833:52;14917:9;14904:23;14894:33;;14946:35;14977:2;14966:9;14962:18;14946:35;:::i;14992:661::-;15105:6;15113;15121;15129;15137;15190:3;15178:9;15169:7;15165:23;15161:33;15158:53;;;15207:1;15204;15197:12;15158:53;15243:9;15230:23;15220:33;;15300:2;15289:9;15285:18;15272:32;15262:42;;15351:2;15340:9;15336:18;15323:32;15313:42;;15406:2;15395:9;15391:18;15378:32;-1:-1:-1;;;;;15425:6:1;15422:30;15419:50;;;15465:1;15462;15455:12;15419:50;15504:89;15585:7;15576:6;15565:9;15561:22;15504:89;:::i;15658:354::-;15746:19;;;15728:3;-1:-1:-1;;;;;15777:31:1;;15774:51;;;15821:1;15818;15811:12;15774:51;15857:6;15854:1;15850:14;15909:8;15902:5;15895:4;15890:3;15886:14;15873:45;15986:1;15941:18;;15961:4;15937:29;15975:13;;;-1:-1:-1;15937:29:1;;15658:354;-1:-1:-1;;15658:354:1:o;16017:435::-;16070:3;16108:5;16102:12;16135:6;16130:3;16123:19;16161:4;16190:2;16185:3;16181:12;16174:19;;16227:2;16220:5;16216:14;16248:1;16258:169;16272:6;16269:1;16266:13;16258:169;;;16333:13;;16321:26;;16367:12;;;;16402:15;;;;16294:1;16287:9;16258:169;;;-1:-1:-1;16443:3:1;;16017:435;-1:-1:-1;;;;;16017:435:1:o;16457:257::-;16498:3;16536:5;16530:12;16563:6;16558:3;16551:19;16579:63;16635:6;16628:4;16623:3;16619:14;16612:4;16605:5;16601:16;16579:63;:::i;:::-;16696:2;16675:15;-1:-1:-1;;16671:29:1;16662:39;;;;16703:4;16658:50;;16457:257;-1:-1:-1;;16457:257:1:o;17205:786::-;17616:25;17611:3;17604:38;17586:3;17671:6;17665:13;17687:62;17742:6;17737:2;17732:3;17728:12;17721:4;17713:6;17709:17;17687:62;:::i;:::-;-1:-1:-1;;;17808:2:1;17768:16;;;17800:11;;;17793:40;17858:13;;17880:63;17858:13;17929:2;17921:11;;17914:4;17902:17;;17880:63;:::i;:::-;17963:17;17982:2;17959:26;;17205:786;-1:-1:-1;;;;17205:786:1:o;18204:826::-;-1:-1:-1;;;;;18601:15:1;;;18583:34;;18653:15;;18648:2;18633:18;;18626:43;18563:3;18700:2;18685:18;;18678:31;;;18526:4;;18732:57;;18769:19;;18761:6;18732:57;:::i;:::-;18837:9;18829:6;18825:22;18820:2;18809:9;18805:18;18798:50;18871:44;18908:6;18900;18871:44;:::i;:::-;18857:58;;18964:9;18956:6;18952:22;18946:3;18935:9;18931:19;18924:51;18992:32;19017:6;19009;18992:32;:::i;:::-;18984:40;18204:826;-1:-1:-1;;;;;;;;18204:826:1:o;19035:560::-;-1:-1:-1;;;;;19332:15:1;;;19314:34;;19384:15;;19379:2;19364:18;;19357:43;19431:2;19416:18;;19409:34;;;19474:2;19459:18;;19452:34;;;19294:3;19517;19502:19;;19495:32;;;19257:4;;19544:45;;19569:19;;19561:6;19544:45;:::i;:::-;19536:53;19035:560;-1:-1:-1;;;;;;;19035:560:1:o;19600:519::-;19877:2;19866:9;19859:21;19840:4;19903:73;19972:2;19961:9;19957:18;19949:6;19941;19903:73;:::i;:::-;20024:9;20016:6;20012:22;20007:2;19996:9;19992:18;19985:50;20052:61;20106:6;20098;20090;20052:61;:::i;20124:261::-;20303:2;20292:9;20285:21;20266:4;20323:56;20375:2;20364:9;20360:18;20352:6;20323:56;:::i;20390:465::-;20647:2;20636:9;20629:21;20610:4;20673:56;20725:2;20714:9;20710:18;20702:6;20673:56;:::i;:::-;20777:9;20769:6;20765:22;20760:2;20749:9;20745:18;20738:50;20805:44;20842:6;20834;20805:44;:::i;:::-;20797:52;20390:465;-1:-1:-1;;;;;20390:465:1:o;21234:844::-;21552:4;21581:3;21611:6;21600:9;21593:25;21668:6;21661:14;21654:22;21649:2;21638:9;21634:18;21627:50;21713:6;21708:2;21697:9;21693:18;21686:34;21756:6;21751:2;21740:9;21736:18;21729:34;21800:6;21794:3;21783:9;21779:19;21772:35;21844:6;21838:3;21827:9;21823:19;21816:35;21888:2;21882:3;21871:9;21867:19;21860:31;21908:44;21948:2;21937:9;21933:18;21925:6;21908:44;:::i;:::-;21996:14;;21989:22;21983:3;21968:19;;21961:51;-1:-1:-1;;22056:14:1;;22049:22;22043:3;22028:19;;;22021:51;21900:52;21234:844;-1:-1:-1;;;;;;;21234:844:1:o;22083:219::-;22232:2;22221:9;22214:21;22195:4;22252:44;22292:2;22281:9;22277:18;22269:6;22252:44;:::i;23089:404::-;23291:2;23273:21;;;23330:2;23310:18;;;23303:30;23369:34;23364:2;23349:18;;23342:62;-1:-1:-1;;;23435:2:1;23420:18;;23413:38;23483:3;23468:19;;23089:404::o;25433:400::-;25635:2;25617:21;;;25674:2;25654:18;;;25647:30;25713:34;25708:2;25693:18;;25686:62;-1:-1:-1;;;25779:2:1;25764:18;;25757:34;25823:3;25808:19;;25433:400::o;26251:405::-;26453:2;26435:21;;;26492:2;26472:18;;;26465:30;26531:34;26526:2;26511:18;;26504:62;-1:-1:-1;;;26597:2:1;26582:18;;26575:39;26646:3;26631:19;;26251:405::o;28529:401::-;28731:2;28713:21;;;28770:2;28750:18;;;28743:30;28809:34;28804:2;28789:18;;28782:62;-1:-1:-1;;;28875:2:1;28860:18;;28853:35;28920:3;28905:19;;28529:401::o;29715:399::-;29917:2;29899:21;;;29956:2;29936:18;;;29929:30;29995:34;29990:2;29975:18;;29968:62;-1:-1:-1;;;30061:2:1;30046:18;;30039:33;30104:3;30089:19;;29715:399::o;30119:406::-;30321:2;30303:21;;;30360:2;30340:18;;;30333:30;30399:34;30394:2;30379:18;;30372:62;-1:-1:-1;;;30465:2:1;30450:18;;30443:40;30515:3;30500:19;;30119:406::o;30936:356::-;31138:2;31120:21;;;31157:18;;;31150:30;31216:34;31211:2;31196:18;;31189:62;31283:2;31268:18;;30936:356::o;33606:404::-;33808:2;33790:21;;;33847:2;33827:18;;;33820:30;33886:34;33881:2;33866:18;;33859:62;-1:-1:-1;;;33952:2:1;33937:18;;33930:38;34000:3;33985:19;;33606:404::o;34358:397::-;34560:2;34542:21;;;34599:2;34579:18;;;34572:30;34638:34;34633:2;34618:18;;34611:62;-1:-1:-1;;;34704:2:1;34689:18;;34682:31;34745:3;34730:19;;34358:397::o;35611:545::-;35704:4;35710:6;35770:11;35757:25;35864:2;35860:7;35849:8;35833:14;35829:29;35825:43;35805:18;35801:68;35791:96;;35883:1;35880;35873:12;35791:96;35910:33;;35962:20;;;-1:-1:-1;;;;;;35994:30:1;;35991:50;;;36037:1;36034;36027:12;35991:50;36070:4;36058:17;;-1:-1:-1;36121:1:1;36117:14;;;36101;36097:35;36087:46;;36084:66;;;36146:1;36143;36136:12;36161:183;36221:4;-1:-1:-1;;;;;36246:6:1;36243:30;36240:56;;;36276:18;;:::i;:::-;-1:-1:-1;36321:1:1;36317:14;36333:4;36313:25;;36161:183::o;36349:128::-;36389:3;36420:1;36416:6;36413:1;36410:13;36407:39;;;36426:18;;:::i;:::-;-1:-1:-1;36462:9:1;;36349:128::o;36482:168::-;36522:7;36588:1;36584;36580:6;36576:14;36573:1;36570:21;36565:1;36558:9;36551:17;36547:45;36544:71;;;36595:18;;:::i;:::-;-1:-1:-1;36635:9:1;;36482:168::o;36655:125::-;36695:4;36723:1;36720;36717:8;36714:34;;;36728:18;;:::i;:::-;-1:-1:-1;36765:9:1;;36655:125::o;36785:258::-;36857:1;36867:113;36881:6;36878:1;36875:13;36867:113;;;36957:11;;;36951:18;36938:11;;;36931:39;36903:2;36896:10;36867:113;;;36998:6;36995:1;36992:13;36989:48;;;-1:-1:-1;;37033:1:1;37015:16;;37008:27;36785:258::o;37048:136::-;37087:3;37115:5;37105:39;;37124:18;;:::i;:::-;-1:-1:-1;;;37160:18:1;;37048:136::o;37189:380::-;37268:1;37264:12;;;;37311;;;37332:61;;37386:4;37378:6;37374:17;37364:27;;37332:61;37439:2;37431:6;37428:14;37408:18;37405:38;37402:161;;;37485:10;37480:3;37476:20;37473:1;37466:31;37520:4;37517:1;37510:15;37548:4;37545:1;37538:15;37402:161;;37189:380;;;:::o;37574:249::-;37684:2;37665:13;;-1:-1:-1;;37661:27:1;37649:40;;-1:-1:-1;;;;;37704:34:1;;37740:22;;;37701:62;37698:88;;;37766:18;;:::i;:::-;37802:2;37795:22;-1:-1:-1;;37574:249:1:o;37828:135::-;37867:3;-1:-1:-1;;37888:17:1;;37885:43;;;37908:18;;:::i;:::-;-1:-1:-1;37955:1:1;37944:13;;37828:135::o;37968:127::-;38029:10;38024:3;38020:20;38017:1;38010:31;38060:4;38057:1;38050:15;38084:4;38081:1;38074:15;38100:127;38161:10;38156:3;38152:20;38149:1;38142:31;38192:4;38189:1;38182:15;38216:4;38213:1;38206:15;38232:127;38293:10;38288:3;38284:20;38281:1;38274:31;38324:4;38321:1;38314:15;38348:4;38345:1;38338:15;38364:179;38399:3;38441:1;38423:16;38420:23;38417:120;;;38487:1;38484;38481;38466:23;-1:-1:-1;38524:1:1;38518:8;38513:3;38509:18;38417:120;38364:179;:::o;38548:671::-;38587:3;38629:4;38611:16;38608:26;38605:39;;;38548:671;:::o;38605:39::-;38671:2;38665:9;-1:-1:-1;;38736:16:1;38732:25;;38729:1;38665:9;38708:50;38787:4;38781:11;38811:16;-1:-1:-1;;;;;38917:2:1;38910:4;38902:6;38898:17;38895:25;38890:2;38882:6;38879:14;38876:45;38873:58;;;38924:5;;;;;38548:671;:::o;38873:58::-;38961:6;38955:4;38951:17;38940:28;;38997:3;38991:10;39024:2;39016:6;39013:14;39010:27;;;39030:5;;;;;;38548:671;:::o;39010:27::-;39114:2;39095:16;39089:4;39085:27;39081:36;39074:4;39065:6;39060:3;39056:16;39052:27;39049:69;39046:82;;;39121:5;;;;;;38548:671;:::o;39046:82::-;39137:57;39188:4;39179:6;39171;39167:19;39163:30;39157:4;39137:57;:::i;:::-;-1:-1:-1;39210:3:1;;38548:671;-1:-1:-1;;;;;38548:671:1:o;39224:131::-;-1:-1:-1;;;;;39299:31:1;;39289:42;;39279:70;;39345:1;39342;39335:12;39360:131;-1:-1:-1;;;;;;39434:32:1;;39424:43;;39414:71;;39481:1;39478;39471:12

Swarm Source

ipfs://bd7d8ebe47d7580f12079dac325d04cf03adeace8a00a244066c7776cd11ab0e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.