ETH Price: $2,972.56 (+1.41%)
Gas: 2 Gwei

Token

Bored Ape Rock Club (BARC)
 

Overview

Max Total Supply

999 BARC

Holders

413

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 BARC
0x2bb08ab147eadd9efb14e6a26afa99622e768fd4
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:
BARC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// 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/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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/interfaces/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// 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/interfaces/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// 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/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

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

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

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

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

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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

//SPDX-License-Identifier: MIT
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity ^0.8.0;









contract BARC is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://QmQHSdzhVLgomtHY1EXBLpJ6HWvMJZyk7yLHh83ZpydFw7";
    address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    bool private isOpenSeaProxyActive = true;

    uint256 public constant MAX_MINTS_PER_TX = 2;
    uint256 public maxSupply = 999;

    uint256 public constant PUBLIC_SALE_PRICE = 0 ether;
    uint256 public NUM_FREE_MINTS = 999;
    bool public isPublicSaleActive = true;




    // ============ ACCESS CONTROL/SANITY MODIFIERS ============

    modifier publicSaleActive() {
        require(isPublicSaleActive, "Public sale is not open");
        _;
    }



    modifier maxMintsPerTX(uint256 numberOfTokens) {
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        _;
    }

    modifier canMintNFTs(uint256 numberOfTokens) {
        require(
            totalSupply() + numberOfTokens <=
                maxSupply,
            "Not enough mints remaining to mint"
        );
        _;
    }

    modifier freeMintsAvailable() {
        require(
            totalSupply() <=
                NUM_FREE_MINTS,
            "Not enough free mints remain"
        );
        _;
    }



    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        if(totalSupply()>NUM_FREE_MINTS){
        require(
            (price * numberOfTokens) == msg.value,
            "Incorrect ETH value sent"
        );
        }
        _;
    }


    constructor(
    ) ERC721A("Bored Ape Rock Club", "BARC", 100, maxSupply) {
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
    {

        _safeMint(msg.sender, numberOfTokens);
    }



    //A simple free mint function to avoid confusion
    //The normal mint function with a cost of 0 would work too

    // ============ PUBLIC READ-ONLY FUNCTIONS ============

    function getBaseURI() external view returns (string memory) {
        return baseURI;
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    // function to disable gasless listings for security in case
    // opensea ever shuts down or is compromised
    function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive)
        external
        onlyOwner
    {
        isOpenSeaProxyActive = _isOpenSeaProxyActive;
    }

    function setIsPublicSaleActive(bool _isPublicSaleActive)
        external
        onlyOwner
    {
        isPublicSaleActive = _isPublicSaleActive;
    }


    function setNumFreeMints(uint256 _numfreemints)
        external
        onlyOwner
    {
        NUM_FREE_MINTS = _numfreemints;
    }


    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdrawTokens(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }



    // ============ SUPPORTING FUNCTIONS ============

    function nextTokenId() private returns (uint256) {
        tokenCounter.increment();
        return tokenCounter.current();
    }

    // ============ FUNCTION OVERRIDES ============

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Get a reference to OpenSea's proxy registry contract by instantiating
        // the contract using the already existing address.
        ProxyRegistry proxyRegistry = ProxyRegistry(
            openSeaProxyRegistryAddress
        );
        if (
            isOpenSeaProxyActive &&
            address(proxyRegistry.proxies(owner)) == operator
        ) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

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

        return
            string(abi.encodePacked(baseURI, "/", (tokenId+1).toString(), ".json"));
    }

    /**
     * @dev See {IERC165-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Nonexistent token");

        return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
    }
}

// These contract definitions are used to create a reference to the OpenSea
// ProxyRegistry contract by using the registry's address (see isApprovedForAll).
contract OwnableDelegateProxy {

}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600080556000600755604051806060016040528060358152602001620051b360359139600b90805190602001906200003e92919062000323565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60146101000a81548160ff0219169083151502179055506103e7600d556103e7600e556001600f60006101000a81548160ff021916908315150217905550348015620000e357600080fd5b506040518060400160405280601381526020017f426f7265642041706520526f636b20436c7562000000000000000000000000008152506040518060400160405280600481526020017f42415243000000000000000000000000000000000000000000000000000000008152506064600d54600081116200019b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001929062000443565b60405180910390fd5b60008211620001e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d89062000421565b60405180910390fd5b8360019080519060200190620001f992919062000323565b5082600290805190602001906200021292919062000323565b508160a08181525050806080818152505050505050620002476200023b6200025560201b60201c565b6200025d60201b60201c565b600160098190555062000579565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003319062000476565b90600052602060002090601f016020900481019282620003555760008555620003a1565b82601f106200037057805160ff1916838001178555620003a1565b82800160010185558215620003a1579182015b82811115620003a057825182559160200191906001019062000383565b5b509050620003b09190620003b4565b5090565b5b80821115620003cf576000816000905550600101620003b5565b5090565b6000620003e260278362000465565b9150620003ef82620004db565b604082019050919050565b600062000409602e8362000465565b915062000416826200052a565b604082019050919050565b600060208201905081810360008301526200043c81620003d3565b9050919050565b600060208201905081810360008301526200045e81620003fa565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200048f57607f821691505b60208210811415620004a657620004a5620004ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051614c09620005aa600039600081816123d8015281816124010152612b2e015260005050614c096000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610725578063d7224ba014610750578063e43082f71461077b578063e985e9c5146107a4578063f2fde38b146107e1576101f9565b8063a22cb4651461066b578063b88d4fde14610694578063c6a91b42146106bd578063c87b56dd146106e8576101f9565b80638da5cb5b116100dc5780638da5cb5b146105ce57806395d89b41146105f9578063982d669e14610624578063a0712d681461064f576101f9565b80636352211e1461051257806370a082311461054f578063714c53981461058c578063715018a6146105b7576101f9565b806323b872dd116101905780633ccfd60b1161015f5780633ccfd60b1461044357806342842e0e1461045a57806349df728c146104835780634f6ccce7146104ac57806355f804b3146104e9576101f9565b806323b872dd1461037657806328cad13d1461039f5780632a55205a146103c85780632f745c5914610406576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631e84c4131461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906133f6565b61080a565b6040516102329190613b57565b60405180910390f35b34801561024757600080fd5b50610250610884565b60405161025d9190613b72565b60405180910390f35b34801561027257600080fd5b5061027b610916565b6040516102889190613eb4565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b391906134f3565b61091b565b6040516102c59190613ac7565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f0919061335c565b6109a0565b005b34801561030357600080fd5b5061031e600480360381019061031991906134f3565b610ab9565b005b34801561032c57600080fd5b50610335610b3f565b6040516103429190613eb4565b60405180910390f35b34801561035757600080fd5b50610360610b48565b60405161036d9190613b57565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190613246565b610b5b565b005b3480156103ab57600080fd5b506103c660048036038101906103c1919061339c565b610b6b565b005b3480156103d457600080fd5b506103ef60048036038101906103ea919061354d565b610c04565b6040516103fd929190613b2e565b60405180910390f35b34801561041257600080fd5b5061042d6004803603810190610428919061335c565b610c70565b60405161043a9190613eb4565b60405180910390f35b34801561044f57600080fd5b50610458610e6e565b005b34801561046657600080fd5b50610481600480360381019061047c9190613246565b610f39565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613450565b610f59565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906134f3565b6110f4565b6040516104e09190613eb4565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b91906134aa565b611147565b005b34801561051e57600080fd5b50610539600480360381019061053491906134f3565b6111dd565b6040516105469190613ac7565b60405180910390f35b34801561055b57600080fd5b50610576600480360381019061057191906131d9565b6111f3565b6040516105839190613eb4565b60405180910390f35b34801561059857600080fd5b506105a16112dc565b6040516105ae9190613b72565b60405180910390f35b3480156105c357600080fd5b506105cc61136e565b005b3480156105da57600080fd5b506105e36113f6565b6040516105f09190613ac7565b60405180910390f35b34801561060557600080fd5b5061060e611420565b60405161061b9190613b72565b60405180910390f35b34801561063057600080fd5b506106396114b2565b6040516106469190613eb4565b60405180910390f35b610669600480360381019061066491906134f3565b6114b8565b005b34801561067757600080fd5b50610692600480360381019061068d919061331c565b61166d565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190613299565b6117ee565b005b3480156106c957600080fd5b506106d261184a565b6040516106df9190613eb4565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906134f3565b61184f565b60405161071c9190613b72565b60405180910390f35b34801561073157600080fd5b5061073a6118d7565b6040516107479190613eb4565b60405180910390f35b34801561075c57600080fd5b506107656118dd565b6040516107729190613eb4565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d919061339c565b6118e3565b005b3480156107b057600080fd5b506107cb60048036038101906107c69190613206565b61197c565b6040516107d89190613b57565b60405180910390f35b3480156107ed57600080fd5b50610808600480360381019061080391906131d9565b611a96565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087d575061087c82611b8e565b5b9050919050565b6060600180546108939061425d565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf9061425d565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b600081565b600061092682611cd8565b610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c90613e74565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ab826111dd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390613d54565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3b611ce5565b73ffffffffffffffffffffffffffffffffffffffff161480610a6a5750610a6981610a64611ce5565b61197c565b5b610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090613c94565b60405180910390fd5b610ab4838383611ced565b505050565b610ac1611ce5565b73ffffffffffffffffffffffffffffffffffffffff16610adf6113f6565b73ffffffffffffffffffffffffffffffffffffffff1614610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90613cf4565b60405180910390fd5b80600e8190555050565b60008054905090565b600f60009054906101000a900460ff1681565b610b66838383611d9f565b505050565b610b73611ce5565b73ffffffffffffffffffffffffffffffffffffffff16610b916113f6565b73ffffffffffffffffffffffffffffffffffffffff1614610be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bde90613cf4565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610c1084611cd8565b610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690613c74565b60405180910390fd5b30610c65610c5e856005612358565b606461236e565b915091509250929050565b6000610c7b836111f3565b8210610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613b94565b60405180910390fd5b6000610cc6610b3f565b905060008060005b83811015610e2c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dc057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e185786841415610e09578195505050505050610e68565b8380610e14906142c0565b9450505b508080610e24906142c0565b915050610cce565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f90613df4565b60405180910390fd5b92915050565b610e76611ce5565b73ffffffffffffffffffffffffffffffffffffffff16610e946113f6565b73ffffffffffffffffffffffffffffffffffffffff1614610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190613cf4565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f35573d6000803e3d6000fd5b5050565b610f54838383604051806020016040528060008152506117ee565b505050565b610f61611ce5565b73ffffffffffffffffffffffffffffffffffffffff16610f7f6113f6565b73ffffffffffffffffffffffffffffffffffffffff1614610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90613cf4565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110109190613ac7565b60206040518083038186803b15801561102857600080fd5b505afa15801561103c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110609190613520565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161109d929190613b2e565b602060405180830381600087803b1580156110b757600080fd5b505af11580156110cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ef91906133c9565b505050565b60006110fe610b3f565b821061113f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113690613bf4565b60405180910390fd5b819050919050565b61114f611ce5565b73ffffffffffffffffffffffffffffffffffffffff1661116d6113f6565b73ffffffffffffffffffffffffffffffffffffffff16146111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba90613cf4565b60405180910390fd5b80600b90805190602001906111d9929190612f5f565b5050565b60006111e882612384565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90613cb4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546112eb9061425d565b80601f01602080910402602001604051908101604052809291908181526020018280546113179061425d565b80156113645780601f1061133957610100808354040283529160200191611364565b820191906000526020600020905b81548152906001019060200180831161134757829003601f168201915b5050505050905090565b611376611ce5565b73ffffffffffffffffffffffffffffffffffffffff166113946113f6565b73ffffffffffffffffffffffffffffffffffffffff16146113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e190613cf4565b60405180910390fd5b6113f46000612587565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461142f9061425d565b80601f016020809104026020016040519081016040528092919081815260200182805461145b9061425d565b80156114a85780601f1061147d576101008083540402835291602001916114a8565b820191906000526020600020905b81548152906001019060200180831161148b57829003601f168201915b5050505050905090565b600e5481565b600260095414156114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590613e14565b60405180910390fd5b6002600981905550600081600e54611514610b3f565b111561156857348183611527919061407b565b14611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e90613dd4565b60405180910390fd5b5b600f60009054906101000a900460ff166115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90613e54565b60405180910390fd5b82600d54816115c4610b3f565b6115ce9190613ff4565b111561160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690613c14565b60405180910390fd5b836002811115611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b90613c54565b60405180910390fd5b61165e338661264d565b50505050600160098190555050565b611675611ce5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90613d14565b60405180910390fd5b80600660006116f0611ce5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661179d611ce5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117e29190613b57565b60405180910390a35050565b6117f9848484611d9f565b6118058484848461266b565b611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b90613d74565b60405180910390fd5b50505050565b600281565b606061185a82611cd8565b611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090613c74565b60405180910390fd5b600b6118b06001846118ab9190613ff4565b612802565b6040516020016118c1929190613a8d565b6040516020818303038152906040529050919050565b600d5481565b60075481565b6118eb611ce5565b73ffffffffffffffffffffffffffffffffffffffff166119096113f6565b73ffffffffffffffffffffffffffffffffffffffff161461195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690613cf4565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611a7357508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611a0b9190613ac7565b60206040518083038186803b158015611a2357600080fd5b505afa158015611a37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5b919061347d565b73ffffffffffffffffffffffffffffffffffffffff16145b15611a82576001915050611a90565b611a8c8484612963565b9150505b92915050565b611a9e611ce5565b73ffffffffffffffffffffffffffffffffffffffff16611abc6113f6565b73ffffffffffffffffffffffffffffffffffffffff1614611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0990613cf4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7990613bb4565b60405180910390fd5b611b8b81612587565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c5957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cc157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cd15750611cd0826129f7565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611daa82612384565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dd1611ce5565b73ffffffffffffffffffffffffffffffffffffffff161480611e2d5750611df6611ce5565b73ffffffffffffffffffffffffffffffffffffffff16611e158461091b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e495750611e488260000151611e43611ce5565b61197c565b5b905080611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8290613d34565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490613cd4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6490613c34565b60405180910390fd5b611f7a8585856001612a61565b611f8a6000848460000151611ced565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ff891906140d5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661209c9190613fae565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121a29190613ff4565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122e85761221881611cd8565b156122e7576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123508686866001612a67565b505050505050565b60008183612366919061407b565b905092915050565b6000818361237c919061404a565b905092915050565b61238c612fe5565b61239582611cd8565b6123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb90613bd4565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106124385760017f00000000000000000000000000000000000000000000000000000000000000008461242b9190614109565b6124359190613ff4565b90505b60008390505b818110612546576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461253257809350505050612582565b50808061253e90614233565b91505061243e565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257990613e34565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612667828260405180602001604052806000815250612a6d565b5050565b600061268c8473ffffffffffffffffffffffffffffffffffffffff16612f4c565b156127f5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126b5611ce5565b8786866040518563ffffffff1660e01b81526004016126d79493929190613ae2565b602060405180830381600087803b1580156126f157600080fd5b505af192505050801561272257506040513d601f19601f8201168201806040525081019061271f9190613423565b60015b6127a5573d8060008114612752576040519150601f19603f3d011682016040523d82523d6000602084013e612757565b606091505b5060008151141561279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490613d74565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127fa565b600190505b949350505050565b6060600082141561284a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061295e565b600082905060005b6000821461287c578080612865906142c0565b915050600a82612875919061404a565b9150612852565b60008167ffffffffffffffff811115612898576128976143f6565b5b6040519080825280601f01601f1916602001820160405280156128ca5781602001600182028036833780820191505090505b5090505b60008514612957576001826128e39190614109565b9150600a856128f29190614309565b60306128fe9190613ff4565b60f81b818381518110612914576129136143c7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612950919061404a565b94506128ce565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada90613db4565b60405180910390fd5b612aec81611cd8565b15612b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2390613d94565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8690613e94565b60405180910390fd5b612b9c6000858386612a61565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612c999190613fae565b6fffffffffffffffffffffffffffffffff168152602001858360200151612cc09190613fae565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612f2f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ecf600088848861266b565b612f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0590613d74565b60405180910390fd5b8180612f19906142c0565b9250508080612f27906142c0565b915050612e5e565b5080600081905550612f446000878588612a67565b505050505050565b600080823b905060008111915050919050565b828054612f6b9061425d565b90600052602060002090601f016020900481019282612f8d5760008555612fd4565b82601f10612fa657805160ff1916838001178555612fd4565b82800160010185558215612fd4579182015b82811115612fd3578251825591602001919060010190612fb8565b5b509050612fe1919061301f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613038576000816000905550600101613020565b5090565b600061304f61304a84613ef4565b613ecf565b90508281526020810184848401111561306b5761306a61442a565b5b6130768482856141f1565b509392505050565b600061309161308c84613f25565b613ecf565b9050828152602081018484840111156130ad576130ac61442a565b5b6130b88482856141f1565b509392505050565b6000813590506130cf81614b49565b92915050565b6000813590506130e481614b60565b92915050565b6000815190506130f981614b60565b92915050565b60008135905061310e81614b77565b92915050565b60008151905061312381614b77565b92915050565b600082601f83011261313e5761313d614425565b5b813561314e84826020860161303c565b91505092915050565b60008135905061316681614b8e565b92915050565b60008151905061317b81614ba5565b92915050565b600082601f83011261319657613195614425565b5b81356131a684826020860161307e565b91505092915050565b6000813590506131be81614bbc565b92915050565b6000815190506131d381614bbc565b92915050565b6000602082840312156131ef576131ee614434565b5b60006131fd848285016130c0565b91505092915050565b6000806040838503121561321d5761321c614434565b5b600061322b858286016130c0565b925050602061323c858286016130c0565b9150509250929050565b60008060006060848603121561325f5761325e614434565b5b600061326d868287016130c0565b935050602061327e868287016130c0565b925050604061328f868287016131af565b9150509250925092565b600080600080608085870312156132b3576132b2614434565b5b60006132c1878288016130c0565b94505060206132d2878288016130c0565b93505060406132e3878288016131af565b925050606085013567ffffffffffffffff8111156133045761330361442f565b5b61331087828801613129565b91505092959194509250565b6000806040838503121561333357613332614434565b5b6000613341858286016130c0565b9250506020613352858286016130d5565b9150509250929050565b6000806040838503121561337357613372614434565b5b6000613381858286016130c0565b9250506020613392858286016131af565b9150509250929050565b6000602082840312156133b2576133b1614434565b5b60006133c0848285016130d5565b91505092915050565b6000602082840312156133df576133de614434565b5b60006133ed848285016130ea565b91505092915050565b60006020828403121561340c5761340b614434565b5b600061341a848285016130ff565b91505092915050565b60006020828403121561343957613438614434565b5b600061344784828501613114565b91505092915050565b60006020828403121561346657613465614434565b5b600061347484828501613157565b91505092915050565b60006020828403121561349357613492614434565b5b60006134a18482850161316c565b91505092915050565b6000602082840312156134c0576134bf614434565b5b600082013567ffffffffffffffff8111156134de576134dd61442f565b5b6134ea84828501613181565b91505092915050565b60006020828403121561350957613508614434565b5b6000613517848285016131af565b91505092915050565b60006020828403121561353657613535614434565b5b6000613544848285016131c4565b91505092915050565b6000806040838503121561356457613563614434565b5b6000613572858286016131af565b9250506020613583858286016131af565b9150509250929050565b6135968161413d565b82525050565b6135a58161414f565b82525050565b60006135b682613f6b565b6135c08185613f81565b93506135d0818560208601614200565b6135d981614439565b840191505092915050565b60006135ef82613f76565b6135f98185613f92565b9350613609818560208601614200565b61361281614439565b840191505092915050565b600061362882613f76565b6136328185613fa3565b9350613642818560208601614200565b80840191505092915050565b6000815461365b8161425d565b6136658186613fa3565b945060018216600081146136805760018114613691576136c4565b60ff198316865281860193506136c4565b61369a85613f56565b60005b838110156136bc5781548189015260018201915060208101905061369d565b838801955050505b50505092915050565b60006136da602283613f92565b91506136e58261444a565b604082019050919050565b60006136fd602683613f92565b915061370882614499565b604082019050919050565b6000613720602a83613f92565b915061372b826144e8565b604082019050919050565b6000613743602383613f92565b915061374e82614537565b604082019050919050565b6000613766602283613f92565b915061377182614586565b604082019050919050565b6000613789602583613f92565b9150613794826145d5565b604082019050919050565b60006137ac602283613f92565b91506137b782614624565b604082019050919050565b60006137cf601183613f92565b91506137da82614673565b602082019050919050565b60006137f2603983613f92565b91506137fd8261469c565b604082019050919050565b6000613815602b83613f92565b9150613820826146eb565b604082019050919050565b6000613838602683613f92565b91506138438261473a565b604082019050919050565b600061385b600583613fa3565b915061386682614789565b600582019050919050565b600061387e602083613f92565b9150613889826147b2565b602082019050919050565b60006138a1601a83613f92565b91506138ac826147db565b602082019050919050565b60006138c4603283613f92565b91506138cf82614804565b604082019050919050565b60006138e7602283613f92565b91506138f282614853565b604082019050919050565b600061390a603383613f92565b9150613915826148a2565b604082019050919050565b600061392d601d83613f92565b9150613938826148f1565b602082019050919050565b6000613950602183613f92565b915061395b8261491a565b604082019050919050565b6000613973601883613f92565b915061397e82614969565b602082019050919050565b6000613996602e83613f92565b91506139a182614992565b604082019050919050565b60006139b9601f83613f92565b91506139c4826149e1565b602082019050919050565b60006139dc602f83613f92565b91506139e782614a0a565b604082019050919050565b60006139ff601783613f92565b9150613a0a82614a59565b602082019050919050565b6000613a22602d83613f92565b9150613a2d82614a82565b604082019050919050565b6000613a45602283613f92565b9150613a5082614ad1565b604082019050919050565b6000613a68600183613fa3565b9150613a7382614b20565b600182019050919050565b613a87816141e7565b82525050565b6000613a99828561364e565b9150613aa482613a5b565b9150613ab0828461361d565b9150613abb8261384e565b91508190509392505050565b6000602082019050613adc600083018461358d565b92915050565b6000608082019050613af7600083018761358d565b613b04602083018661358d565b613b116040830185613a7e565b8181036060830152613b2381846135ab565b905095945050505050565b6000604082019050613b43600083018561358d565b613b506020830184613a7e565b9392505050565b6000602082019050613b6c600083018461359c565b92915050565b60006020820190508181036000830152613b8c81846135e4565b905092915050565b60006020820190508181036000830152613bad816136cd565b9050919050565b60006020820190508181036000830152613bcd816136f0565b9050919050565b60006020820190508181036000830152613bed81613713565b9050919050565b60006020820190508181036000830152613c0d81613736565b9050919050565b60006020820190508181036000830152613c2d81613759565b9050919050565b60006020820190508181036000830152613c4d8161377c565b9050919050565b60006020820190508181036000830152613c6d8161379f565b9050919050565b60006020820190508181036000830152613c8d816137c2565b9050919050565b60006020820190508181036000830152613cad816137e5565b9050919050565b60006020820190508181036000830152613ccd81613808565b9050919050565b60006020820190508181036000830152613ced8161382b565b9050919050565b60006020820190508181036000830152613d0d81613871565b9050919050565b60006020820190508181036000830152613d2d81613894565b9050919050565b60006020820190508181036000830152613d4d816138b7565b9050919050565b60006020820190508181036000830152613d6d816138da565b9050919050565b60006020820190508181036000830152613d8d816138fd565b9050919050565b60006020820190508181036000830152613dad81613920565b9050919050565b60006020820190508181036000830152613dcd81613943565b9050919050565b60006020820190508181036000830152613ded81613966565b9050919050565b60006020820190508181036000830152613e0d81613989565b9050919050565b60006020820190508181036000830152613e2d816139ac565b9050919050565b60006020820190508181036000830152613e4d816139cf565b9050919050565b60006020820190508181036000830152613e6d816139f2565b9050919050565b60006020820190508181036000830152613e8d81613a15565b9050919050565b60006020820190508181036000830152613ead81613a38565b9050919050565b6000602082019050613ec96000830184613a7e565b92915050565b6000613ed9613eea565b9050613ee5828261428f565b919050565b6000604051905090565b600067ffffffffffffffff821115613f0f57613f0e6143f6565b5b613f1882614439565b9050602081019050919050565b600067ffffffffffffffff821115613f4057613f3f6143f6565b5b613f4982614439565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fb9826141ab565b9150613fc4836141ab565b9250826fffffffffffffffffffffffffffffffff03821115613fe957613fe861433a565b5b828201905092915050565b6000613fff826141e7565b915061400a836141e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561403f5761403e61433a565b5b828201905092915050565b6000614055826141e7565b9150614060836141e7565b9250826140705761406f614369565b5b828204905092915050565b6000614086826141e7565b9150614091836141e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140ca576140c961433a565b5b828202905092915050565b60006140e0826141ab565b91506140eb836141ab565b9250828210156140fe576140fd61433a565b5b828203905092915050565b6000614114826141e7565b915061411f836141e7565b9250828210156141325761413161433a565b5b828203905092915050565b6000614148826141c7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006141928261413d565b9050919050565b60006141a48261413d565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561421e578082015181840152602081019050614203565b8381111561422d576000848401525b50505050565b600061423e826141e7565b915060008214156142525761425161433a565b5b600182039050919050565b6000600282049050600182168061427557607f821691505b6020821081141561428957614288614398565b5b50919050565b61429882614439565b810181811067ffffffffffffffff821117156142b7576142b66143f6565b5b80604052505050565b60006142cb826141e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142fe576142fd61433a565b5b600182019050919050565b6000614314826141e7565b915061431f836141e7565b92508261432f5761432e614369565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b614b528161413d565b8114614b5d57600080fd5b50565b614b698161414f565b8114614b7457600080fd5b50565b614b808161415b565b8114614b8b57600080fd5b50565b614b9781614187565b8114614ba257600080fd5b50565b614bae81614199565b8114614bb957600080fd5b50565b614bc5816141e7565b8114614bd057600080fd5b5056fea2646970667358221220c72efdf8aa4ab8c6b89ecbebba31e0d7e6796823e7de5c53aab7b9da8e34121464736f6c63430008070033697066733a2f2f516d514853647a68564c676f6d744859314558424c704a364857764d4a5a796b37794c486838335a707964467737

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610725578063d7224ba014610750578063e43082f71461077b578063e985e9c5146107a4578063f2fde38b146107e1576101f9565b8063a22cb4651461066b578063b88d4fde14610694578063c6a91b42146106bd578063c87b56dd146106e8576101f9565b80638da5cb5b116100dc5780638da5cb5b146105ce57806395d89b41146105f9578063982d669e14610624578063a0712d681461064f576101f9565b80636352211e1461051257806370a082311461054f578063714c53981461058c578063715018a6146105b7576101f9565b806323b872dd116101905780633ccfd60b1161015f5780633ccfd60b1461044357806342842e0e1461045a57806349df728c146104835780634f6ccce7146104ac57806355f804b3146104e9576101f9565b806323b872dd1461037657806328cad13d1461039f5780632a55205a146103c85780632f745c5914610406576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631e84c4131461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906133f6565b61080a565b6040516102329190613b57565b60405180910390f35b34801561024757600080fd5b50610250610884565b60405161025d9190613b72565b60405180910390f35b34801561027257600080fd5b5061027b610916565b6040516102889190613eb4565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b391906134f3565b61091b565b6040516102c59190613ac7565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f0919061335c565b6109a0565b005b34801561030357600080fd5b5061031e600480360381019061031991906134f3565b610ab9565b005b34801561032c57600080fd5b50610335610b3f565b6040516103429190613eb4565b60405180910390f35b34801561035757600080fd5b50610360610b48565b60405161036d9190613b57565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190613246565b610b5b565b005b3480156103ab57600080fd5b506103c660048036038101906103c1919061339c565b610b6b565b005b3480156103d457600080fd5b506103ef60048036038101906103ea919061354d565b610c04565b6040516103fd929190613b2e565b60405180910390f35b34801561041257600080fd5b5061042d6004803603810190610428919061335c565b610c70565b60405161043a9190613eb4565b60405180910390f35b34801561044f57600080fd5b50610458610e6e565b005b34801561046657600080fd5b50610481600480360381019061047c9190613246565b610f39565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613450565b610f59565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906134f3565b6110f4565b6040516104e09190613eb4565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b91906134aa565b611147565b005b34801561051e57600080fd5b50610539600480360381019061053491906134f3565b6111dd565b6040516105469190613ac7565b60405180910390f35b34801561055b57600080fd5b50610576600480360381019061057191906131d9565b6111f3565b6040516105839190613eb4565b60405180910390f35b34801561059857600080fd5b506105a16112dc565b6040516105ae9190613b72565b60405180910390f35b3480156105c357600080fd5b506105cc61136e565b005b3480156105da57600080fd5b506105e36113f6565b6040516105f09190613ac7565b60405180910390f35b34801561060557600080fd5b5061060e611420565b60405161061b9190613b72565b60405180910390f35b34801561063057600080fd5b506106396114b2565b6040516106469190613eb4565b60405180910390f35b610669600480360381019061066491906134f3565b6114b8565b005b34801561067757600080fd5b50610692600480360381019061068d919061331c565b61166d565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190613299565b6117ee565b005b3480156106c957600080fd5b506106d261184a565b6040516106df9190613eb4565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906134f3565b61184f565b60405161071c9190613b72565b60405180910390f35b34801561073157600080fd5b5061073a6118d7565b6040516107479190613eb4565b60405180910390f35b34801561075c57600080fd5b506107656118dd565b6040516107729190613eb4565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d919061339c565b6118e3565b005b3480156107b057600080fd5b506107cb60048036038101906107c69190613206565b61197c565b6040516107d89190613b57565b60405180910390f35b3480156107ed57600080fd5b50610808600480360381019061080391906131d9565b611a96565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087d575061087c82611b8e565b5b9050919050565b6060600180546108939061425d565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf9061425d565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b600081565b600061092682611cd8565b610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c90613e74565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ab826111dd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390613d54565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3b611ce5565b73ffffffffffffffffffffffffffffffffffffffff161480610a6a5750610a6981610a64611ce5565b61197c565b5b610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090613c94565b60405180910390fd5b610ab4838383611ced565b505050565b610ac1611ce5565b73ffffffffffffffffffffffffffffffffffffffff16610adf6113f6565b73ffffffffffffffffffffffffffffffffffffffff1614610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90613cf4565b60405180910390fd5b80600e8190555050565b60008054905090565b600f60009054906101000a900460ff1681565b610b66838383611d9f565b505050565b610b73611ce5565b73ffffffffffffffffffffffffffffffffffffffff16610b916113f6565b73ffffffffffffffffffffffffffffffffffffffff1614610be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bde90613cf4565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610c1084611cd8565b610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690613c74565b60405180910390fd5b30610c65610c5e856005612358565b606461236e565b915091509250929050565b6000610c7b836111f3565b8210610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613b94565b60405180910390fd5b6000610cc6610b3f565b905060008060005b83811015610e2c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dc057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e185786841415610e09578195505050505050610e68565b8380610e14906142c0565b9450505b508080610e24906142c0565b915050610cce565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f90613df4565b60405180910390fd5b92915050565b610e76611ce5565b73ffffffffffffffffffffffffffffffffffffffff16610e946113f6565b73ffffffffffffffffffffffffffffffffffffffff1614610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190613cf4565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f35573d6000803e3d6000fd5b5050565b610f54838383604051806020016040528060008152506117ee565b505050565b610f61611ce5565b73ffffffffffffffffffffffffffffffffffffffff16610f7f6113f6565b73ffffffffffffffffffffffffffffffffffffffff1614610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90613cf4565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110109190613ac7565b60206040518083038186803b15801561102857600080fd5b505afa15801561103c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110609190613520565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161109d929190613b2e565b602060405180830381600087803b1580156110b757600080fd5b505af11580156110cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ef91906133c9565b505050565b60006110fe610b3f565b821061113f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113690613bf4565b60405180910390fd5b819050919050565b61114f611ce5565b73ffffffffffffffffffffffffffffffffffffffff1661116d6113f6565b73ffffffffffffffffffffffffffffffffffffffff16146111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba90613cf4565b60405180910390fd5b80600b90805190602001906111d9929190612f5f565b5050565b60006111e882612384565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90613cb4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546112eb9061425d565b80601f01602080910402602001604051908101604052809291908181526020018280546113179061425d565b80156113645780601f1061133957610100808354040283529160200191611364565b820191906000526020600020905b81548152906001019060200180831161134757829003601f168201915b5050505050905090565b611376611ce5565b73ffffffffffffffffffffffffffffffffffffffff166113946113f6565b73ffffffffffffffffffffffffffffffffffffffff16146113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e190613cf4565b60405180910390fd5b6113f46000612587565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461142f9061425d565b80601f016020809104026020016040519081016040528092919081815260200182805461145b9061425d565b80156114a85780601f1061147d576101008083540402835291602001916114a8565b820191906000526020600020905b81548152906001019060200180831161148b57829003601f168201915b5050505050905090565b600e5481565b600260095414156114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590613e14565b60405180910390fd5b6002600981905550600081600e54611514610b3f565b111561156857348183611527919061407b565b14611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e90613dd4565b60405180910390fd5b5b600f60009054906101000a900460ff166115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90613e54565b60405180910390fd5b82600d54816115c4610b3f565b6115ce9190613ff4565b111561160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690613c14565b60405180910390fd5b836002811115611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b90613c54565b60405180910390fd5b61165e338661264d565b50505050600160098190555050565b611675611ce5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90613d14565b60405180910390fd5b80600660006116f0611ce5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661179d611ce5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117e29190613b57565b60405180910390a35050565b6117f9848484611d9f565b6118058484848461266b565b611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b90613d74565b60405180910390fd5b50505050565b600281565b606061185a82611cd8565b611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090613c74565b60405180910390fd5b600b6118b06001846118ab9190613ff4565b612802565b6040516020016118c1929190613a8d565b6040516020818303038152906040529050919050565b600d5481565b60075481565b6118eb611ce5565b73ffffffffffffffffffffffffffffffffffffffff166119096113f6565b73ffffffffffffffffffffffffffffffffffffffff161461195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690613cf4565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611a7357508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611a0b9190613ac7565b60206040518083038186803b158015611a2357600080fd5b505afa158015611a37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5b919061347d565b73ffffffffffffffffffffffffffffffffffffffff16145b15611a82576001915050611a90565b611a8c8484612963565b9150505b92915050565b611a9e611ce5565b73ffffffffffffffffffffffffffffffffffffffff16611abc6113f6565b73ffffffffffffffffffffffffffffffffffffffff1614611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0990613cf4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7990613bb4565b60405180910390fd5b611b8b81612587565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c5957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cc157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cd15750611cd0826129f7565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611daa82612384565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dd1611ce5565b73ffffffffffffffffffffffffffffffffffffffff161480611e2d5750611df6611ce5565b73ffffffffffffffffffffffffffffffffffffffff16611e158461091b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e495750611e488260000151611e43611ce5565b61197c565b5b905080611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8290613d34565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490613cd4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6490613c34565b60405180910390fd5b611f7a8585856001612a61565b611f8a6000848460000151611ced565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ff891906140d5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661209c9190613fae565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121a29190613ff4565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122e85761221881611cd8565b156122e7576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123508686866001612a67565b505050505050565b60008183612366919061407b565b905092915050565b6000818361237c919061404a565b905092915050565b61238c612fe5565b61239582611cd8565b6123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb90613bd4565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106124385760017f00000000000000000000000000000000000000000000000000000000000000648461242b9190614109565b6124359190613ff4565b90505b60008390505b818110612546576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461253257809350505050612582565b50808061253e90614233565b91505061243e565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257990613e34565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612667828260405180602001604052806000815250612a6d565b5050565b600061268c8473ffffffffffffffffffffffffffffffffffffffff16612f4c565b156127f5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126b5611ce5565b8786866040518563ffffffff1660e01b81526004016126d79493929190613ae2565b602060405180830381600087803b1580156126f157600080fd5b505af192505050801561272257506040513d601f19601f8201168201806040525081019061271f9190613423565b60015b6127a5573d8060008114612752576040519150601f19603f3d011682016040523d82523d6000602084013e612757565b606091505b5060008151141561279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490613d74565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127fa565b600190505b949350505050565b6060600082141561284a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061295e565b600082905060005b6000821461287c578080612865906142c0565b915050600a82612875919061404a565b9150612852565b60008167ffffffffffffffff811115612898576128976143f6565b5b6040519080825280601f01601f1916602001820160405280156128ca5781602001600182028036833780820191505090505b5090505b60008514612957576001826128e39190614109565b9150600a856128f29190614309565b60306128fe9190613ff4565b60f81b818381518110612914576129136143c7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612950919061404a565b94506128ce565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada90613db4565b60405180910390fd5b612aec81611cd8565b15612b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2390613d94565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000064831115612b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8690613e94565b60405180910390fd5b612b9c6000858386612a61565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612c999190613fae565b6fffffffffffffffffffffffffffffffff168152602001858360200151612cc09190613fae565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612f2f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ecf600088848861266b565b612f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0590613d74565b60405180910390fd5b8180612f19906142c0565b9250508080612f27906142c0565b915050612e5e565b5080600081905550612f446000878588612a67565b505050505050565b600080823b905060008111915050919050565b828054612f6b9061425d565b90600052602060002090601f016020900481019282612f8d5760008555612fd4565b82601f10612fa657805160ff1916838001178555612fd4565b82800160010185558215612fd4579182015b82811115612fd3578251825591602001919060010190612fb8565b5b509050612fe1919061301f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613038576000816000905550600101613020565b5090565b600061304f61304a84613ef4565b613ecf565b90508281526020810184848401111561306b5761306a61442a565b5b6130768482856141f1565b509392505050565b600061309161308c84613f25565b613ecf565b9050828152602081018484840111156130ad576130ac61442a565b5b6130b88482856141f1565b509392505050565b6000813590506130cf81614b49565b92915050565b6000813590506130e481614b60565b92915050565b6000815190506130f981614b60565b92915050565b60008135905061310e81614b77565b92915050565b60008151905061312381614b77565b92915050565b600082601f83011261313e5761313d614425565b5b813561314e84826020860161303c565b91505092915050565b60008135905061316681614b8e565b92915050565b60008151905061317b81614ba5565b92915050565b600082601f83011261319657613195614425565b5b81356131a684826020860161307e565b91505092915050565b6000813590506131be81614bbc565b92915050565b6000815190506131d381614bbc565b92915050565b6000602082840312156131ef576131ee614434565b5b60006131fd848285016130c0565b91505092915050565b6000806040838503121561321d5761321c614434565b5b600061322b858286016130c0565b925050602061323c858286016130c0565b9150509250929050565b60008060006060848603121561325f5761325e614434565b5b600061326d868287016130c0565b935050602061327e868287016130c0565b925050604061328f868287016131af565b9150509250925092565b600080600080608085870312156132b3576132b2614434565b5b60006132c1878288016130c0565b94505060206132d2878288016130c0565b93505060406132e3878288016131af565b925050606085013567ffffffffffffffff8111156133045761330361442f565b5b61331087828801613129565b91505092959194509250565b6000806040838503121561333357613332614434565b5b6000613341858286016130c0565b9250506020613352858286016130d5565b9150509250929050565b6000806040838503121561337357613372614434565b5b6000613381858286016130c0565b9250506020613392858286016131af565b9150509250929050565b6000602082840312156133b2576133b1614434565b5b60006133c0848285016130d5565b91505092915050565b6000602082840312156133df576133de614434565b5b60006133ed848285016130ea565b91505092915050565b60006020828403121561340c5761340b614434565b5b600061341a848285016130ff565b91505092915050565b60006020828403121561343957613438614434565b5b600061344784828501613114565b91505092915050565b60006020828403121561346657613465614434565b5b600061347484828501613157565b91505092915050565b60006020828403121561349357613492614434565b5b60006134a18482850161316c565b91505092915050565b6000602082840312156134c0576134bf614434565b5b600082013567ffffffffffffffff8111156134de576134dd61442f565b5b6134ea84828501613181565b91505092915050565b60006020828403121561350957613508614434565b5b6000613517848285016131af565b91505092915050565b60006020828403121561353657613535614434565b5b6000613544848285016131c4565b91505092915050565b6000806040838503121561356457613563614434565b5b6000613572858286016131af565b9250506020613583858286016131af565b9150509250929050565b6135968161413d565b82525050565b6135a58161414f565b82525050565b60006135b682613f6b565b6135c08185613f81565b93506135d0818560208601614200565b6135d981614439565b840191505092915050565b60006135ef82613f76565b6135f98185613f92565b9350613609818560208601614200565b61361281614439565b840191505092915050565b600061362882613f76565b6136328185613fa3565b9350613642818560208601614200565b80840191505092915050565b6000815461365b8161425d565b6136658186613fa3565b945060018216600081146136805760018114613691576136c4565b60ff198316865281860193506136c4565b61369a85613f56565b60005b838110156136bc5781548189015260018201915060208101905061369d565b838801955050505b50505092915050565b60006136da602283613f92565b91506136e58261444a565b604082019050919050565b60006136fd602683613f92565b915061370882614499565b604082019050919050565b6000613720602a83613f92565b915061372b826144e8565b604082019050919050565b6000613743602383613f92565b915061374e82614537565b604082019050919050565b6000613766602283613f92565b915061377182614586565b604082019050919050565b6000613789602583613f92565b9150613794826145d5565b604082019050919050565b60006137ac602283613f92565b91506137b782614624565b604082019050919050565b60006137cf601183613f92565b91506137da82614673565b602082019050919050565b60006137f2603983613f92565b91506137fd8261469c565b604082019050919050565b6000613815602b83613f92565b9150613820826146eb565b604082019050919050565b6000613838602683613f92565b91506138438261473a565b604082019050919050565b600061385b600583613fa3565b915061386682614789565b600582019050919050565b600061387e602083613f92565b9150613889826147b2565b602082019050919050565b60006138a1601a83613f92565b91506138ac826147db565b602082019050919050565b60006138c4603283613f92565b91506138cf82614804565b604082019050919050565b60006138e7602283613f92565b91506138f282614853565b604082019050919050565b600061390a603383613f92565b9150613915826148a2565b604082019050919050565b600061392d601d83613f92565b9150613938826148f1565b602082019050919050565b6000613950602183613f92565b915061395b8261491a565b604082019050919050565b6000613973601883613f92565b915061397e82614969565b602082019050919050565b6000613996602e83613f92565b91506139a182614992565b604082019050919050565b60006139b9601f83613f92565b91506139c4826149e1565b602082019050919050565b60006139dc602f83613f92565b91506139e782614a0a565b604082019050919050565b60006139ff601783613f92565b9150613a0a82614a59565b602082019050919050565b6000613a22602d83613f92565b9150613a2d82614a82565b604082019050919050565b6000613a45602283613f92565b9150613a5082614ad1565b604082019050919050565b6000613a68600183613fa3565b9150613a7382614b20565b600182019050919050565b613a87816141e7565b82525050565b6000613a99828561364e565b9150613aa482613a5b565b9150613ab0828461361d565b9150613abb8261384e565b91508190509392505050565b6000602082019050613adc600083018461358d565b92915050565b6000608082019050613af7600083018761358d565b613b04602083018661358d565b613b116040830185613a7e565b8181036060830152613b2381846135ab565b905095945050505050565b6000604082019050613b43600083018561358d565b613b506020830184613a7e565b9392505050565b6000602082019050613b6c600083018461359c565b92915050565b60006020820190508181036000830152613b8c81846135e4565b905092915050565b60006020820190508181036000830152613bad816136cd565b9050919050565b60006020820190508181036000830152613bcd816136f0565b9050919050565b60006020820190508181036000830152613bed81613713565b9050919050565b60006020820190508181036000830152613c0d81613736565b9050919050565b60006020820190508181036000830152613c2d81613759565b9050919050565b60006020820190508181036000830152613c4d8161377c565b9050919050565b60006020820190508181036000830152613c6d8161379f565b9050919050565b60006020820190508181036000830152613c8d816137c2565b9050919050565b60006020820190508181036000830152613cad816137e5565b9050919050565b60006020820190508181036000830152613ccd81613808565b9050919050565b60006020820190508181036000830152613ced8161382b565b9050919050565b60006020820190508181036000830152613d0d81613871565b9050919050565b60006020820190508181036000830152613d2d81613894565b9050919050565b60006020820190508181036000830152613d4d816138b7565b9050919050565b60006020820190508181036000830152613d6d816138da565b9050919050565b60006020820190508181036000830152613d8d816138fd565b9050919050565b60006020820190508181036000830152613dad81613920565b9050919050565b60006020820190508181036000830152613dcd81613943565b9050919050565b60006020820190508181036000830152613ded81613966565b9050919050565b60006020820190508181036000830152613e0d81613989565b9050919050565b60006020820190508181036000830152613e2d816139ac565b9050919050565b60006020820190508181036000830152613e4d816139cf565b9050919050565b60006020820190508181036000830152613e6d816139f2565b9050919050565b60006020820190508181036000830152613e8d81613a15565b9050919050565b60006020820190508181036000830152613ead81613a38565b9050919050565b6000602082019050613ec96000830184613a7e565b92915050565b6000613ed9613eea565b9050613ee5828261428f565b919050565b6000604051905090565b600067ffffffffffffffff821115613f0f57613f0e6143f6565b5b613f1882614439565b9050602081019050919050565b600067ffffffffffffffff821115613f4057613f3f6143f6565b5b613f4982614439565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fb9826141ab565b9150613fc4836141ab565b9250826fffffffffffffffffffffffffffffffff03821115613fe957613fe861433a565b5b828201905092915050565b6000613fff826141e7565b915061400a836141e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561403f5761403e61433a565b5b828201905092915050565b6000614055826141e7565b9150614060836141e7565b9250826140705761406f614369565b5b828204905092915050565b6000614086826141e7565b9150614091836141e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140ca576140c961433a565b5b828202905092915050565b60006140e0826141ab565b91506140eb836141ab565b9250828210156140fe576140fd61433a565b5b828203905092915050565b6000614114826141e7565b915061411f836141e7565b9250828210156141325761413161433a565b5b828203905092915050565b6000614148826141c7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006141928261413d565b9050919050565b60006141a48261413d565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561421e578082015181840152602081019050614203565b8381111561422d576000848401525b50505050565b600061423e826141e7565b915060008214156142525761425161433a565b5b600182039050919050565b6000600282049050600182168061427557607f821691505b6020821081141561428957614288614398565b5b50919050565b61429882614439565b810181811067ffffffffffffffff821117156142b7576142b66143f6565b5b80604052505050565b60006142cb826141e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142fe576142fd61433a565b5b600182019050919050565b6000614314826141e7565b915061431f836141e7565b92508261432f5761432e614369565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b614b528161413d565b8114614b5d57600080fd5b50565b614b698161414f565b8114614b7457600080fd5b50565b614b808161415b565b8114614b8b57600080fd5b50565b614b9781614187565b8114614ba257600080fd5b50565b614bae81614199565b8114614bb957600080fd5b50565b614bc5816141e7565b8114614bd057600080fd5b5056fea2646970667358221220c72efdf8aa4ab8c6b89ecbebba31e0d7e6796823e7de5c53aab7b9da8e34121464736f6c63430008070033

Deployed Bytecode Sourcemap

55020:5703:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58912:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44239:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55531:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45764:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45327:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58180:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41074:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55631:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46614:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58012:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60402:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41705:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58329:143;;;;;;;;;;;;;:::i;:::-;;46819:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58480:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41237:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57614:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44062:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42939:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57450:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19097:103;;;;;;;;;;;;;:::i;:::-;;18446:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44394:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55589:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56934:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46032:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47039:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55441:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60029:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55492:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51454:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57838:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59341:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19355:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58912:292;59060:4;59117:26;59102:41;;;:11;:41;;;;:94;;;;59160:36;59184:11;59160:23;:36::i;:::-;59102:94;59082:114;;58912:292;;;:::o;44239:94::-;44293:13;44322:5;44315:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44239:94;:::o;55531:51::-;55575:7;55531:51;:::o;45764:204::-;45832:7;45856:16;45864:7;45856;:16::i;:::-;45848:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45938:15;:24;45954:7;45938:24;;;;;;;;;;;;;;;;;;;;;45931:31;;45764:204;;;:::o;45327:379::-;45396:13;45412:24;45428:7;45412:15;:24::i;:::-;45396:40;;45457:5;45451:11;;:2;:11;;;;45443:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45542:5;45526:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45551:37;45568:5;45575:12;:10;:12::i;:::-;45551:16;:37::i;:::-;45526:62;45510:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45672:28;45681:2;45685:7;45694:5;45672:8;:28::i;:::-;45389:317;45327:379;;:::o;58180:139::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58298:13:::1;58281:14;:30;;;;58180:139:::0;:::o;41074:94::-;41127:7;41150:12;;41143:19;;41074:94;:::o;55631:37::-;;;;;;;;;;;;;:::o;46614:142::-;46722:28;46732:4;46738:2;46742:7;46722:9;:28::i;:::-;46614:142;;;:::o;58012:158::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58143:19:::1;58122:18;;:40;;;;;;;;;;;;;;;;;;58012:158:::0;:::o;60402:318::-;60527:16;60545:21;60592:16;60600:7;60592;:16::i;:::-;60584:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60659:4;60666:45;60679:26;60692:9;60703:1;60679:12;:26::i;:::-;60707:3;60666:12;:45::i;:::-;60643:69;;;;60402:318;;;;;:::o;41705:744::-;41814:7;41849:16;41859:5;41849:9;:16::i;:::-;41841:5;:24;41833:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41911:22;41936:13;:11;:13::i;:::-;41911:38;;41956:19;41986:25;42036:9;42031:350;42055:14;42051:1;:18;42031:350;;;42085:31;42119:11;:14;42131:1;42119:14;;;;;;;;;;;42085:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42172:1;42146:28;;:9;:14;;;:28;;;42142:89;;42207:9;:14;;;42187:34;;42142:89;42264:5;42243:26;;:17;:26;;;42239:135;;;42301:5;42286:11;:20;42282:59;;;42328:1;42321:8;;;;;;;;;42282:59;42351:13;;;;;:::i;:::-;;;;42239:135;42076:305;42071:3;;;;;:::i;:::-;;;;42031:350;;;;42387:56;;;;;;;;;;:::i;:::-;;;;;;;;41705:744;;;;;:::o;58329:143::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58377:15:::1;58395:21;58377:39;;58435:10;58427:28;;:37;58456:7;58427:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58366:106;58329:143::o:0;46819:157::-;46931:39;46948:4;46954:2;46958:7;46931:39;;;;;;;;;;;;:16;:39::i;:::-;46819:157;;;:::o;58480:168::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58546:15:::1;58564:5;:15;;;58588:4;58564:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58546:48;;58605:5;:14;;;58620:10;58632:7;58605:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58535:113;58480:168:::0;:::o;41237:177::-;41304:7;41336:13;:11;:13::i;:::-;41328:5;:21;41320:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41403:5;41396:12;;41237:177;;;:::o;57614:100::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57698:8:::1;57688:7;:18;;;;;;;;;;;;:::i;:::-;;57614:100:::0;:::o;44062:118::-;44126:7;44149:20;44161:7;44149:11;:20::i;:::-;:25;;;44142:32;;44062:118;;;:::o;42939:211::-;43003:7;43044:1;43027:19;;:5;:19;;;;43019:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43116:12;:19;43129:5;43116:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43108:36;;43101:43;;42939:211;;;:::o;57450:93::-;57495:13;57528:7;57521:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57450:93;:::o;19097:103::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19162:30:::1;19189:1;19162:18;:30::i;:::-;19097:103::o:0;18446:87::-;18492:7;18519:6;;;;;;;;;;;18512:13;;18446:87;:::o;44394:98::-;44450:13;44479:7;44472:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44394:98;:::o;55589:35::-;;;;:::o;56934:321::-;10375:1;10973:7;;:19;;10965:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10375:1;11106:7;:18;;;;55575:7:::1;57074:14;56600;;56586:13;:11;:13::i;:::-;:28;56583:166;;;56676:9;56657:14;56649:5;:22;;;;:::i;:::-;56648:37;56626:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56583:166;55798:18:::2;;;;;;;;;;;55790:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57137:14:::3;56209:9;;56174:14;56158:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56136:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57176:14:::4;55484:1;55956:14;:34;;55934:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57210:37:::5;57220:10;57232:14;57210:9;:37::i;:::-;56291:1:::4;55855::::3;11137::::1;;10331::::0;11285:7;:22;;;;56934:321;:::o;46032:274::-;46135:12;:10;:12::i;:::-;46123:24;;:8;:24;;;;46115:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46232:8;46187:18;:32;46206:12;:10;:12::i;:::-;46187:32;;;;;;;;;;;;;;;:42;46220:8;46187:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46281:8;46252:48;;46267:12;:10;:12::i;:::-;46252:48;;;46291:8;46252:48;;;;;;:::i;:::-;;;;;;;;46032:274;;:::o;47039:311::-;47176:28;47186:4;47192:2;47196:7;47176:9;:28::i;:::-;47227:48;47250:4;47256:2;47260:7;47269:5;47227:22;:48::i;:::-;47211:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47039:311;;;;:::o;55441:44::-;55484:1;55441:44;:::o;60029:307::-;60147:13;60186:16;60194:7;60186;:16::i;:::-;60178:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60281:7;60295:22;60304:1;60296:7;:9;;;;:::i;:::-;60295:20;:22::i;:::-;60264:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60237:91;;60029:307;;;:::o;55492:30::-;;;;:::o;51454:43::-;;;;:::o;57838:166::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57975:21:::1;57952:20;;:44;;;;;;;;;;;;;;;;;;57838:166:::0;:::o;59341:617::-;59466:4;59631:27;59689;;;;;;;;;;;59631:96;;59756:20;;;;;;;;;;;:86;;;;;59834:8;59793:49;;59801:13;:21;;;59823:5;59801:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59793:49;;;59756:86;59738:154;;;59876:4;59869:11;;;;;59738:154;59911:39;59934:5;59941:8;59911:22;:39::i;:::-;59904:46;;;59341:617;;;;;:::o;19355:201::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19464:1:::1;19444:22;;:8;:22;;;;19436:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19520:28;19539:8;19520:18;:28::i;:::-;19355:201:::0;:::o;42513:370::-;42640:4;42685:25;42670:40;;;:11;:40;;;;:99;;;;42736:33;42721:48;;;:11;:48;;;;42670:99;:160;;;;42795:35;42780:50;;;:11;:50;;;;42670:160;:207;;;;42841:36;42865:11;42841:23;:36::i;:::-;42670:207;42656:221;;42513:370;;;:::o;47589:105::-;47646:4;47676:12;;47666:7;:22;47659:29;;47589:105;;;:::o;17170:98::-;17223:7;17250:10;17243:17;;17170:98;:::o;51276:172::-;51400:2;51373:15;:24;51389:7;51373:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51434:7;51430:2;51414:28;;51423:5;51414:28;;;;;;;;;;;;51276:172;;;:::o;49641:1529::-;49738:35;49776:20;49788:7;49776:11;:20::i;:::-;49738:58;;49805:22;49847:13;:18;;;49831:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;49900:12;:10;:12::i;:::-;49876:36;;:20;49888:7;49876:11;:20::i;:::-;:36;;;49831:81;:142;;;;49923:50;49940:13;:18;;;49960:12;:10;:12::i;:::-;49923:16;:50::i;:::-;49831:142;49805:169;;49999:17;49983:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50131:4;50109:26;;:13;:18;;;:26;;;50093:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50220:1;50206:16;;:2;:16;;;;50198:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50273:43;50295:4;50301:2;50305:7;50314:1;50273:21;:43::i;:::-;50373:49;50390:1;50394:7;50403:13;:18;;;50373:8;:49::i;:::-;50461:1;50431:12;:18;50444:4;50431:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50497:1;50469:12;:16;50482:2;50469:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50528:43;;;;;;;;50543:2;50528:43;;;;;;50554:15;50528:43;;;;;50505:11;:20;50517:7;50505:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50799:19;50831:1;50821:7;:11;;;;:::i;:::-;50799:33;;50884:1;50843:43;;:11;:24;50855:11;50843:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50839:236;;;50901:20;50909:11;50901:7;:20::i;:::-;50897:171;;;50961:97;;;;;;;;50988:13;:18;;;50961:97;;;;;;51019:13;:28;;;50961:97;;;;;50934:11;:24;50946:11;50934:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50897:171;50839:236;51107:7;51103:2;51088:27;;51097:4;51088:27;;;;;;;;;;;;51122:42;51143:4;51149:2;51153:7;51162:1;51122:20;:42::i;:::-;49731:1439;;;49641:1529;;;:::o;3671:98::-;3729:7;3760:1;3756;:5;;;;:::i;:::-;3749:12;;3671:98;;;;:::o;4070:::-;4128:7;4159:1;4155;:5;;;;:::i;:::-;4148:12;;4070:98;;;;:::o;43402:606::-;43478:21;;:::i;:::-;43519:16;43527:7;43519;:16::i;:::-;43511:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43591:26;43639:12;43628:7;:23;43624:93;;43708:1;43693:12;43683:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43662:47;;43624:93;43730:12;43745:7;43730:22;;43725:212;43762:18;43754:4;:26;43725:212;;43799:31;43833:11;:17;43845:4;43833:17;;;;;;;;;;;43799:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43889:1;43863:28;;:9;:14;;;:28;;;43859:71;;43911:9;43904:16;;;;;;;43859:71;43790:147;43782:6;;;;;:::i;:::-;;;;43725:212;;;;43945:57;;;;;;;;;;:::i;:::-;;;;;;;;43402:606;;;;:::o;19716:191::-;19790:16;19809:6;;;;;;;;;;;19790:25;;19835:8;19826:6;;:17;;;;;;;;;;;;;;;;;;19890:8;19859:40;;19880:8;19859:40;;;;;;;;;;;;19779:128;19716:191;:::o;47700:98::-;47765:27;47775:2;47779:8;47765:27;;;;;;;;;;;;:9;:27::i;:::-;47700:98;;:::o;52991:690::-;53128:4;53145:15;:2;:13;;;:15::i;:::-;53141:535;;;53200:2;53184:36;;;53221:12;:10;:12::i;:::-;53235:4;53241:7;53250:5;53184:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53171:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53432:1;53415:6;:13;:18;53411:215;;;53448:61;;;;;;;;;;:::i;:::-;;;;;;;;53411:215;53594:6;53588:13;53579:6;53575:2;53571:15;53564:38;53171:464;53316:45;;;53306:55;;;:6;:55;;;;53299:62;;;;;53141:535;53664:4;53657:11;;52991:690;;;;;;;:::o;14732:723::-;14788:13;15018:1;15009:5;:10;15005:53;;;15036:10;;;;;;;;;;;;;;;;;;;;;15005:53;15068:12;15083:5;15068:20;;15099:14;15124:78;15139:1;15131:4;:9;15124:78;;15157:8;;;;;:::i;:::-;;;;15188:2;15180:10;;;;;:::i;:::-;;;15124:78;;;15212:19;15244:6;15234:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15212:39;;15262:154;15278:1;15269:5;:10;15262:154;;15306:1;15296:11;;;;;:::i;:::-;;;15373:2;15365:5;:10;;;;:::i;:::-;15352:2;:24;;;;:::i;:::-;15339:39;;15322:6;15329;15322:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;15402:2;15393:11;;;;;:::i;:::-;;;15262:154;;;15440:6;15426:21;;;;;14732:723;;;;:::o;46369:186::-;46491:4;46514:18;:25;46533:5;46514:25;;;;;;;;;;;;;;;:35;46540:8;46514:35;;;;;;;;;;;;;;;;;;;;;;;;;46507:42;;46369:186;;;;:::o;31846:157::-;31931:4;31970:25;31955:40;;;:11;:40;;;;31948:47;;31846:157;;;:::o;54143:141::-;;;;;:::o;54670:140::-;;;;;:::o;48137:1272::-;48242:20;48265:12;;48242:35;;48306:1;48292:16;;:2;:16;;;;48284:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48483:21;48491:12;48483:7;:21::i;:::-;48482:22;48474:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48565:12;48553:8;:24;;48545:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48625:61;48655:1;48659:2;48663:12;48677:8;48625:21;:61::i;:::-;48695:30;48728:12;:16;48741:2;48728:16;;;;;;;;;;;;;;;48695:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48770:119;;;;;;;;48820:8;48790:11;:19;;;:39;;;;:::i;:::-;48770:119;;;;;;48873:8;48838:11;:24;;;:44;;;;:::i;:::-;48770:119;;;;;48751:12;:16;48764:2;48751:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48924:43;;;;;;;;48939:2;48924:43;;;;;;48950:15;48924:43;;;;;48896:11;:25;48908:12;48896:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48976:20;48999:12;48976:35;;49025:9;49020:281;49044:8;49040:1;:12;49020:281;;;49098:12;49094:2;49073:38;;49090:1;49073:38;;;;;;;;;;;;49138:59;49169:1;49173:2;49177:12;49191:5;49138:22;:59::i;:::-;49120:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49279:14;;;;;:::i;:::-;;;;49054:3;;;;;:::i;:::-;;;;49020:281;;;;49324:12;49309;:27;;;;49343:60;49372:1;49376:2;49380:12;49394:8;49343:20;:60::i;:::-;48235:1174;;;48137:1272;;;:::o;20734:387::-;20794:4;21002:12;21069:7;21057:20;21049:28;;21112:1;21105:4;:8;21098:15;;;20734:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1915:167::-;1975:5;2013:6;2000:20;1991:29;;2029:47;2070:5;2029:47;:::i;:::-;1915:167;;;;:::o;2088:201::-;2174:5;2205:6;2199:13;2190:22;;2221:62;2277:5;2221:62;:::i;:::-;2088:201;;;;:::o;2309:340::-;2365:5;2414:3;2407:4;2399:6;2395:17;2391:27;2381:122;;2422:79;;:::i;:::-;2381:122;2539:6;2526:20;2564:79;2639:3;2631:6;2624:4;2616:6;2612:17;2564:79;:::i;:::-;2555:88;;2371:278;2309:340;;;;:::o;2655:139::-;2701:5;2739:6;2726:20;2717:29;;2755:33;2782:5;2755:33;:::i;:::-;2655:139;;;;:::o;2800:143::-;2857:5;2888:6;2882:13;2873:22;;2904:33;2931:5;2904:33;:::i;:::-;2800:143;;;;:::o;2949:329::-;3008:6;3057:2;3045:9;3036:7;3032:23;3028:32;3025:119;;;3063:79;;:::i;:::-;3025:119;3183:1;3208:53;3253:7;3244:6;3233:9;3229:22;3208:53;:::i;:::-;3198:63;;3154:117;2949:329;;;;:::o;3284:474::-;3352:6;3360;3409:2;3397:9;3388:7;3384:23;3380:32;3377:119;;;3415:79;;:::i;:::-;3377:119;3535:1;3560:53;3605:7;3596:6;3585:9;3581:22;3560:53;:::i;:::-;3550:63;;3506:117;3662:2;3688:53;3733:7;3724:6;3713:9;3709:22;3688:53;:::i;:::-;3678:63;;3633:118;3284:474;;;;;:::o;3764:619::-;3841:6;3849;3857;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;4159:2;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4130:118;4287:2;4313:53;4358:7;4349:6;4338:9;4334:22;4313:53;:::i;:::-;4303:63;;4258:118;3764:619;;;;;:::o;4389:943::-;4484:6;4492;4500;4508;4557:3;4545:9;4536:7;4532:23;4528:33;4525:120;;;4564:79;;:::i;:::-;4525:120;4684:1;4709:53;4754:7;4745:6;4734:9;4730:22;4709:53;:::i;:::-;4699:63;;4655:117;4811:2;4837:53;4882:7;4873:6;4862:9;4858:22;4837:53;:::i;:::-;4827:63;;4782:118;4939:2;4965:53;5010:7;5001:6;4990:9;4986:22;4965:53;:::i;:::-;4955:63;;4910:118;5095:2;5084:9;5080:18;5067:32;5126:18;5118:6;5115:30;5112:117;;;5148:79;;:::i;:::-;5112:117;5253:62;5307:7;5298:6;5287:9;5283:22;5253:62;:::i;:::-;5243:72;;5038:287;4389:943;;;;;;;:::o;5338:468::-;5403:6;5411;5460:2;5448:9;5439:7;5435:23;5431:32;5428:119;;;5466:79;;:::i;:::-;5428:119;5586:1;5611:53;5656:7;5647:6;5636:9;5632:22;5611:53;:::i;:::-;5601:63;;5557:117;5713:2;5739:50;5781:7;5772:6;5761:9;5757:22;5739:50;:::i;:::-;5729:60;;5684:115;5338:468;;;;;:::o;5812:474::-;5880:6;5888;5937:2;5925:9;5916:7;5912:23;5908:32;5905:119;;;5943:79;;:::i;:::-;5905:119;6063:1;6088:53;6133:7;6124:6;6113:9;6109:22;6088:53;:::i;:::-;6078:63;;6034:117;6190:2;6216:53;6261:7;6252:6;6241:9;6237:22;6216:53;:::i;:::-;6206:63;;6161:118;5812:474;;;;;:::o;6292:323::-;6348:6;6397:2;6385:9;6376:7;6372:23;6368:32;6365:119;;;6403:79;;:::i;:::-;6365:119;6523:1;6548:50;6590:7;6581:6;6570:9;6566:22;6548:50;:::i;:::-;6538:60;;6494:114;6292:323;;;;:::o;6621:345::-;6688:6;6737:2;6725:9;6716:7;6712:23;6708:32;6705:119;;;6743:79;;:::i;:::-;6705:119;6863:1;6888:61;6941:7;6932:6;6921:9;6917:22;6888:61;:::i;:::-;6878:71;;6834:125;6621:345;;;;:::o;6972:327::-;7030:6;7079:2;7067:9;7058:7;7054:23;7050:32;7047:119;;;7085:79;;:::i;:::-;7047:119;7205:1;7230:52;7274:7;7265:6;7254:9;7250:22;7230:52;:::i;:::-;7220:62;;7176:116;6972:327;;;;:::o;7305:349::-;7374:6;7423:2;7411:9;7402:7;7398:23;7394:32;7391:119;;;7429:79;;:::i;:::-;7391:119;7549:1;7574:63;7629:7;7620:6;7609:9;7605:22;7574:63;:::i;:::-;7564:73;;7520:127;7305:349;;;;:::o;7660:357::-;7733:6;7782:2;7770:9;7761:7;7757:23;7753:32;7750:119;;;7788:79;;:::i;:::-;7750:119;7908:1;7933:67;7992:7;7983:6;7972:9;7968:22;7933:67;:::i;:::-;7923:77;;7879:131;7660:357;;;;:::o;8023:409::-;8122:6;8171:2;8159:9;8150:7;8146:23;8142:32;8139:119;;;8177:79;;:::i;:::-;8139:119;8297:1;8322:93;8407:7;8398:6;8387:9;8383:22;8322:93;:::i;:::-;8312:103;;8268:157;8023:409;;;;:::o;8438:509::-;8507:6;8556:2;8544:9;8535:7;8531:23;8527:32;8524:119;;;8562:79;;:::i;:::-;8524:119;8710:1;8699:9;8695:17;8682:31;8740:18;8732:6;8729:30;8726:117;;;8762:79;;:::i;:::-;8726:117;8867:63;8922:7;8913:6;8902:9;8898:22;8867:63;:::i;:::-;8857:73;;8653:287;8438:509;;;;:::o;8953:329::-;9012:6;9061:2;9049:9;9040:7;9036:23;9032:32;9029:119;;;9067:79;;:::i;:::-;9029:119;9187:1;9212:53;9257:7;9248:6;9237:9;9233:22;9212:53;:::i;:::-;9202:63;;9158:117;8953:329;;;;:::o;9288:351::-;9358:6;9407:2;9395:9;9386:7;9382:23;9378:32;9375:119;;;9413:79;;:::i;:::-;9375:119;9533:1;9558:64;9614:7;9605:6;9594:9;9590:22;9558:64;:::i;:::-;9548:74;;9504:128;9288:351;;;;:::o;9645:474::-;9713:6;9721;9770:2;9758:9;9749:7;9745:23;9741:32;9738:119;;;9776:79;;:::i;:::-;9738:119;9896:1;9921:53;9966:7;9957:6;9946:9;9942:22;9921:53;:::i;:::-;9911:63;;9867:117;10023:2;10049:53;10094:7;10085:6;10074:9;10070:22;10049:53;:::i;:::-;10039:63;;9994:118;9645:474;;;;;:::o;10125:118::-;10212:24;10230:5;10212:24;:::i;:::-;10207:3;10200:37;10125:118;;:::o;10249:109::-;10330:21;10345:5;10330:21;:::i;:::-;10325:3;10318:34;10249:109;;:::o;10364:360::-;10450:3;10478:38;10510:5;10478:38;:::i;:::-;10532:70;10595:6;10590:3;10532:70;:::i;:::-;10525:77;;10611:52;10656:6;10651:3;10644:4;10637:5;10633:16;10611:52;:::i;:::-;10688:29;10710:6;10688:29;:::i;:::-;10683:3;10679:39;10672:46;;10454:270;10364:360;;;;:::o;10730:364::-;10818:3;10846:39;10879:5;10846:39;:::i;:::-;10901:71;10965:6;10960:3;10901:71;:::i;:::-;10894:78;;10981:52;11026:6;11021:3;11014:4;11007:5;11003:16;10981:52;:::i;:::-;11058:29;11080:6;11058:29;:::i;:::-;11053:3;11049:39;11042:46;;10822:272;10730:364;;;;:::o;11100:377::-;11206:3;11234:39;11267:5;11234:39;:::i;:::-;11289:89;11371:6;11366:3;11289:89;:::i;:::-;11282:96;;11387:52;11432:6;11427:3;11420:4;11413:5;11409:16;11387:52;:::i;:::-;11464:6;11459:3;11455:16;11448:23;;11210:267;11100:377;;;;:::o;11507:845::-;11610:3;11647:5;11641:12;11676:36;11702:9;11676:36;:::i;:::-;11728:89;11810:6;11805:3;11728:89;:::i;:::-;11721:96;;11848:1;11837:9;11833:17;11864:1;11859:137;;;;12010:1;12005:341;;;;11826:520;;11859:137;11943:4;11939:9;11928;11924:25;11919:3;11912:38;11979:6;11974:3;11970:16;11963:23;;11859:137;;12005:341;12072:38;12104:5;12072:38;:::i;:::-;12132:1;12146:154;12160:6;12157:1;12154:13;12146:154;;;12234:7;12228:14;12224:1;12219:3;12215:11;12208:35;12284:1;12275:7;12271:15;12260:26;;12182:4;12179:1;12175:12;12170:17;;12146:154;;;12329:6;12324:3;12320:16;12313:23;;12012:334;;11826:520;;11614:738;;11507:845;;;;:::o;12358:366::-;12500:3;12521:67;12585:2;12580:3;12521:67;:::i;:::-;12514:74;;12597:93;12686:3;12597:93;:::i;:::-;12715:2;12710:3;12706:12;12699:19;;12358:366;;;:::o;12730:::-;12872:3;12893:67;12957:2;12952:3;12893:67;:::i;:::-;12886:74;;12969:93;13058:3;12969:93;:::i;:::-;13087:2;13082:3;13078:12;13071:19;;12730:366;;;:::o;13102:::-;13244:3;13265:67;13329:2;13324:3;13265:67;:::i;:::-;13258:74;;13341:93;13430:3;13341:93;:::i;:::-;13459:2;13454:3;13450:12;13443:19;;13102:366;;;:::o;13474:::-;13616:3;13637:67;13701:2;13696:3;13637:67;:::i;:::-;13630:74;;13713:93;13802:3;13713:93;:::i;:::-;13831:2;13826:3;13822:12;13815:19;;13474:366;;;:::o;13846:::-;13988:3;14009:67;14073:2;14068:3;14009:67;:::i;:::-;14002:74;;14085:93;14174:3;14085:93;:::i;:::-;14203:2;14198:3;14194:12;14187:19;;13846:366;;;:::o;14218:::-;14360:3;14381:67;14445:2;14440:3;14381:67;:::i;:::-;14374:74;;14457:93;14546:3;14457:93;:::i;:::-;14575:2;14570:3;14566:12;14559:19;;14218:366;;;:::o;14590:::-;14732:3;14753:67;14817:2;14812:3;14753:67;:::i;:::-;14746:74;;14829:93;14918:3;14829:93;:::i;:::-;14947:2;14942:3;14938:12;14931:19;;14590:366;;;:::o;14962:::-;15104:3;15125:67;15189:2;15184:3;15125:67;:::i;:::-;15118:74;;15201:93;15290:3;15201:93;:::i;:::-;15319:2;15314:3;15310:12;15303:19;;14962:366;;;:::o;15334:::-;15476:3;15497:67;15561:2;15556:3;15497:67;:::i;:::-;15490:74;;15573:93;15662:3;15573:93;:::i;:::-;15691:2;15686:3;15682:12;15675:19;;15334:366;;;:::o;15706:::-;15848:3;15869:67;15933:2;15928:3;15869:67;:::i;:::-;15862:74;;15945:93;16034:3;15945:93;:::i;:::-;16063:2;16058:3;16054:12;16047:19;;15706:366;;;:::o;16078:::-;16220:3;16241:67;16305:2;16300:3;16241:67;:::i;:::-;16234:74;;16317:93;16406:3;16317:93;:::i;:::-;16435:2;16430:3;16426:12;16419:19;;16078:366;;;:::o;16450:400::-;16610:3;16631:84;16713:1;16708:3;16631:84;:::i;:::-;16624:91;;16724:93;16813:3;16724:93;:::i;:::-;16842:1;16837:3;16833:11;16826:18;;16450:400;;;:::o;16856:366::-;16998:3;17019:67;17083:2;17078:3;17019:67;:::i;:::-;17012:74;;17095:93;17184:3;17095:93;:::i;:::-;17213:2;17208:3;17204:12;17197:19;;16856:366;;;:::o;17228:::-;17370:3;17391:67;17455:2;17450:3;17391:67;:::i;:::-;17384:74;;17467:93;17556:3;17467:93;:::i;:::-;17585:2;17580:3;17576:12;17569:19;;17228:366;;;:::o;17600:::-;17742:3;17763:67;17827:2;17822:3;17763:67;:::i;:::-;17756:74;;17839:93;17928:3;17839:93;:::i;:::-;17957:2;17952:3;17948:12;17941:19;;17600:366;;;:::o;17972:::-;18114:3;18135:67;18199:2;18194:3;18135:67;:::i;:::-;18128:74;;18211:93;18300:3;18211:93;:::i;:::-;18329:2;18324:3;18320:12;18313:19;;17972:366;;;:::o;18344:::-;18486:3;18507:67;18571:2;18566:3;18507:67;:::i;:::-;18500:74;;18583:93;18672:3;18583:93;:::i;:::-;18701:2;18696:3;18692:12;18685:19;;18344:366;;;:::o;18716:::-;18858:3;18879:67;18943:2;18938:3;18879:67;:::i;:::-;18872:74;;18955:93;19044:3;18955:93;:::i;:::-;19073:2;19068:3;19064:12;19057:19;;18716:366;;;:::o;19088:::-;19230:3;19251:67;19315:2;19310:3;19251:67;:::i;:::-;19244:74;;19327:93;19416:3;19327:93;:::i;:::-;19445:2;19440:3;19436:12;19429:19;;19088:366;;;:::o;19460:::-;19602:3;19623:67;19687:2;19682:3;19623:67;:::i;:::-;19616:74;;19699:93;19788:3;19699:93;:::i;:::-;19817:2;19812:3;19808:12;19801:19;;19460:366;;;:::o;19832:::-;19974:3;19995:67;20059:2;20054:3;19995:67;:::i;:::-;19988:74;;20071:93;20160:3;20071:93;:::i;:::-;20189:2;20184:3;20180:12;20173:19;;19832:366;;;:::o;20204:::-;20346:3;20367:67;20431:2;20426:3;20367:67;:::i;:::-;20360:74;;20443:93;20532:3;20443:93;:::i;:::-;20561:2;20556:3;20552:12;20545:19;;20204:366;;;:::o;20576:::-;20718:3;20739:67;20803:2;20798:3;20739:67;:::i;:::-;20732:74;;20815:93;20904:3;20815:93;:::i;:::-;20933:2;20928:3;20924:12;20917:19;;20576:366;;;:::o;20948:::-;21090:3;21111:67;21175:2;21170:3;21111:67;:::i;:::-;21104:74;;21187:93;21276:3;21187:93;:::i;:::-;21305:2;21300:3;21296:12;21289:19;;20948:366;;;:::o;21320:::-;21462:3;21483:67;21547:2;21542:3;21483:67;:::i;:::-;21476:74;;21559:93;21648:3;21559:93;:::i;:::-;21677:2;21672:3;21668:12;21661:19;;21320:366;;;:::o;21692:::-;21834:3;21855:67;21919:2;21914:3;21855:67;:::i;:::-;21848:74;;21931:93;22020:3;21931:93;:::i;:::-;22049:2;22044:3;22040:12;22033:19;;21692:366;;;:::o;22064:400::-;22224:3;22245:84;22327:1;22322:3;22245:84;:::i;:::-;22238:91;;22338:93;22427:3;22338:93;:::i;:::-;22456:1;22451:3;22447:11;22440:18;;22064:400;;;:::o;22470:118::-;22557:24;22575:5;22557:24;:::i;:::-;22552:3;22545:37;22470:118;;:::o;22594:961::-;22973:3;22995:92;23083:3;23074:6;22995:92;:::i;:::-;22988:99;;23104:148;23248:3;23104:148;:::i;:::-;23097:155;;23269:95;23360:3;23351:6;23269:95;:::i;:::-;23262:102;;23381:148;23525:3;23381:148;:::i;:::-;23374:155;;23546:3;23539:10;;22594:961;;;;;:::o;23561:222::-;23654:4;23692:2;23681:9;23677:18;23669:26;;23705:71;23773:1;23762:9;23758:17;23749:6;23705:71;:::i;:::-;23561:222;;;;:::o;23789:640::-;23984:4;24022:3;24011:9;24007:19;23999:27;;24036:71;24104:1;24093:9;24089:17;24080:6;24036:71;:::i;:::-;24117:72;24185:2;24174:9;24170:18;24161:6;24117:72;:::i;:::-;24199;24267:2;24256:9;24252:18;24243:6;24199:72;:::i;:::-;24318:9;24312:4;24308:20;24303:2;24292:9;24288:18;24281:48;24346:76;24417:4;24408:6;24346:76;:::i;:::-;24338:84;;23789:640;;;;;;;:::o;24435:332::-;24556:4;24594:2;24583:9;24579:18;24571:26;;24607:71;24675:1;24664:9;24660:17;24651:6;24607:71;:::i;:::-;24688:72;24756:2;24745:9;24741:18;24732:6;24688:72;:::i;:::-;24435:332;;;;;:::o;24773:210::-;24860:4;24898:2;24887:9;24883:18;24875:26;;24911:65;24973:1;24962:9;24958:17;24949:6;24911:65;:::i;:::-;24773:210;;;;:::o;24989:313::-;25102:4;25140:2;25129:9;25125:18;25117:26;;25189:9;25183:4;25179:20;25175:1;25164:9;25160:17;25153:47;25217:78;25290:4;25281:6;25217:78;:::i;:::-;25209:86;;24989:313;;;;:::o;25308:419::-;25474:4;25512:2;25501:9;25497:18;25489:26;;25561:9;25555:4;25551:20;25547:1;25536:9;25532:17;25525:47;25589:131;25715:4;25589:131;:::i;:::-;25581:139;;25308:419;;;:::o;25733:::-;25899:4;25937:2;25926:9;25922:18;25914:26;;25986:9;25980:4;25976:20;25972:1;25961:9;25957:17;25950:47;26014:131;26140:4;26014:131;:::i;:::-;26006:139;;25733:419;;;:::o;26158:::-;26324:4;26362:2;26351:9;26347:18;26339:26;;26411:9;26405:4;26401:20;26397:1;26386:9;26382:17;26375:47;26439:131;26565:4;26439:131;:::i;:::-;26431:139;;26158:419;;;:::o;26583:::-;26749:4;26787:2;26776:9;26772:18;26764:26;;26836:9;26830:4;26826:20;26822:1;26811:9;26807:17;26800:47;26864:131;26990:4;26864:131;:::i;:::-;26856:139;;26583:419;;;:::o;27008:::-;27174:4;27212:2;27201:9;27197:18;27189:26;;27261:9;27255:4;27251:20;27247:1;27236:9;27232:17;27225:47;27289:131;27415:4;27289:131;:::i;:::-;27281:139;;27008:419;;;:::o;27433:::-;27599:4;27637:2;27626:9;27622:18;27614:26;;27686:9;27680:4;27676:20;27672:1;27661:9;27657:17;27650:47;27714:131;27840:4;27714:131;:::i;:::-;27706:139;;27433:419;;;:::o;27858:::-;28024:4;28062:2;28051:9;28047:18;28039:26;;28111:9;28105:4;28101:20;28097:1;28086:9;28082:17;28075:47;28139:131;28265:4;28139:131;:::i;:::-;28131:139;;27858:419;;;:::o;28283:::-;28449:4;28487:2;28476:9;28472:18;28464:26;;28536:9;28530:4;28526:20;28522:1;28511:9;28507:17;28500:47;28564:131;28690:4;28564:131;:::i;:::-;28556:139;;28283:419;;;:::o;28708:::-;28874:4;28912:2;28901:9;28897:18;28889:26;;28961:9;28955:4;28951:20;28947:1;28936:9;28932:17;28925:47;28989:131;29115:4;28989:131;:::i;:::-;28981:139;;28708:419;;;:::o;29133:::-;29299:4;29337:2;29326:9;29322:18;29314:26;;29386:9;29380:4;29376:20;29372:1;29361:9;29357:17;29350:47;29414:131;29540:4;29414:131;:::i;:::-;29406:139;;29133:419;;;:::o;29558:::-;29724:4;29762:2;29751:9;29747:18;29739:26;;29811:9;29805:4;29801:20;29797:1;29786:9;29782:17;29775:47;29839:131;29965:4;29839:131;:::i;:::-;29831:139;;29558:419;;;:::o;29983:::-;30149:4;30187:2;30176:9;30172:18;30164:26;;30236:9;30230:4;30226:20;30222:1;30211:9;30207:17;30200:47;30264:131;30390:4;30264:131;:::i;:::-;30256:139;;29983:419;;;:::o;30408:::-;30574:4;30612:2;30601:9;30597:18;30589:26;;30661:9;30655:4;30651:20;30647:1;30636:9;30632:17;30625:47;30689:131;30815:4;30689:131;:::i;:::-;30681:139;;30408:419;;;:::o;30833:::-;30999:4;31037:2;31026:9;31022:18;31014:26;;31086:9;31080:4;31076:20;31072:1;31061:9;31057:17;31050:47;31114:131;31240:4;31114:131;:::i;:::-;31106:139;;30833:419;;;:::o;31258:::-;31424:4;31462:2;31451:9;31447:18;31439:26;;31511:9;31505:4;31501:20;31497:1;31486:9;31482:17;31475:47;31539:131;31665:4;31539:131;:::i;:::-;31531:139;;31258:419;;;:::o;31683:::-;31849:4;31887:2;31876:9;31872:18;31864:26;;31936:9;31930:4;31926:20;31922:1;31911:9;31907:17;31900:47;31964:131;32090:4;31964:131;:::i;:::-;31956:139;;31683:419;;;:::o;32108:::-;32274:4;32312:2;32301:9;32297:18;32289:26;;32361:9;32355:4;32351:20;32347:1;32336:9;32332:17;32325:47;32389:131;32515:4;32389:131;:::i;:::-;32381:139;;32108:419;;;:::o;32533:::-;32699:4;32737:2;32726:9;32722:18;32714:26;;32786:9;32780:4;32776:20;32772:1;32761:9;32757:17;32750:47;32814:131;32940:4;32814:131;:::i;:::-;32806:139;;32533:419;;;:::o;32958:::-;33124:4;33162:2;33151:9;33147:18;33139:26;;33211:9;33205:4;33201:20;33197:1;33186:9;33182:17;33175:47;33239:131;33365:4;33239:131;:::i;:::-;33231:139;;32958:419;;;:::o;33383:::-;33549:4;33587:2;33576:9;33572:18;33564:26;;33636:9;33630:4;33626:20;33622:1;33611:9;33607:17;33600:47;33664:131;33790:4;33664:131;:::i;:::-;33656:139;;33383:419;;;:::o;33808:::-;33974:4;34012:2;34001:9;33997:18;33989:26;;34061:9;34055:4;34051:20;34047:1;34036:9;34032:17;34025:47;34089:131;34215:4;34089:131;:::i;:::-;34081:139;;33808:419;;;:::o;34233:::-;34399:4;34437:2;34426:9;34422:18;34414:26;;34486:9;34480:4;34476:20;34472:1;34461:9;34457:17;34450:47;34514:131;34640:4;34514:131;:::i;:::-;34506:139;;34233:419;;;:::o;34658:::-;34824:4;34862:2;34851:9;34847:18;34839:26;;34911:9;34905:4;34901:20;34897:1;34886:9;34882:17;34875:47;34939:131;35065:4;34939:131;:::i;:::-;34931:139;;34658:419;;;:::o;35083:::-;35249:4;35287:2;35276:9;35272:18;35264:26;;35336:9;35330:4;35326:20;35322:1;35311:9;35307:17;35300:47;35364:131;35490:4;35364:131;:::i;:::-;35356:139;;35083:419;;;:::o;35508:::-;35674:4;35712:2;35701:9;35697:18;35689:26;;35761:9;35755:4;35751:20;35747:1;35736:9;35732:17;35725:47;35789:131;35915:4;35789:131;:::i;:::-;35781:139;;35508:419;;;:::o;35933:222::-;36026:4;36064:2;36053:9;36049:18;36041:26;;36077:71;36145:1;36134:9;36130:17;36121:6;36077:71;:::i;:::-;35933:222;;;;:::o;36161:129::-;36195:6;36222:20;;:::i;:::-;36212:30;;36251:33;36279:4;36271:6;36251:33;:::i;:::-;36161:129;;;:::o;36296:75::-;36329:6;36362:2;36356:9;36346:19;;36296:75;:::o;36377:307::-;36438:4;36528:18;36520:6;36517:30;36514:56;;;36550:18;;:::i;:::-;36514:56;36588:29;36610:6;36588:29;:::i;:::-;36580:37;;36672:4;36666;36662:15;36654:23;;36377:307;;;:::o;36690:308::-;36752:4;36842:18;36834:6;36831:30;36828:56;;;36864:18;;:::i;:::-;36828:56;36902:29;36924:6;36902:29;:::i;:::-;36894:37;;36986:4;36980;36976:15;36968:23;;36690:308;;;:::o;37004:141::-;37053:4;37076:3;37068:11;;37099:3;37096:1;37089:14;37133:4;37130:1;37120:18;37112:26;;37004:141;;;:::o;37151:98::-;37202:6;37236:5;37230:12;37220:22;;37151:98;;;:::o;37255:99::-;37307:6;37341:5;37335:12;37325:22;;37255:99;;;:::o;37360:168::-;37443:11;37477:6;37472:3;37465:19;37517:4;37512:3;37508:14;37493:29;;37360:168;;;;:::o;37534:169::-;37618:11;37652:6;37647:3;37640:19;37692:4;37687:3;37683:14;37668:29;;37534:169;;;;:::o;37709:148::-;37811:11;37848:3;37833:18;;37709:148;;;;:::o;37863:273::-;37903:3;37922:20;37940:1;37922:20;:::i;:::-;37917:25;;37956:20;37974:1;37956:20;:::i;:::-;37951:25;;38078:1;38042:34;38038:42;38035:1;38032:49;38029:75;;;38084:18;;:::i;:::-;38029:75;38128:1;38125;38121:9;38114:16;;37863:273;;;;:::o;38142:305::-;38182:3;38201:20;38219:1;38201:20;:::i;:::-;38196:25;;38235:20;38253:1;38235:20;:::i;:::-;38230:25;;38389:1;38321:66;38317:74;38314:1;38311:81;38308:107;;;38395:18;;:::i;:::-;38308:107;38439:1;38436;38432:9;38425:16;;38142:305;;;;:::o;38453:185::-;38493:1;38510:20;38528:1;38510:20;:::i;:::-;38505:25;;38544:20;38562:1;38544:20;:::i;:::-;38539:25;;38583:1;38573:35;;38588:18;;:::i;:::-;38573:35;38630:1;38627;38623:9;38618:14;;38453:185;;;;:::o;38644:348::-;38684:7;38707:20;38725:1;38707:20;:::i;:::-;38702:25;;38741:20;38759:1;38741:20;:::i;:::-;38736:25;;38929:1;38861:66;38857:74;38854:1;38851:81;38846:1;38839:9;38832:17;38828:105;38825:131;;;38936:18;;:::i;:::-;38825:131;38984:1;38981;38977:9;38966:20;;38644:348;;;;:::o;38998:191::-;39038:4;39058:20;39076:1;39058:20;:::i;:::-;39053:25;;39092:20;39110:1;39092:20;:::i;:::-;39087:25;;39131:1;39128;39125:8;39122:34;;;39136:18;;:::i;:::-;39122:34;39181:1;39178;39174:9;39166:17;;38998:191;;;;:::o;39195:::-;39235:4;39255:20;39273:1;39255:20;:::i;:::-;39250:25;;39289:20;39307:1;39289:20;:::i;:::-;39284:25;;39328:1;39325;39322:8;39319:34;;;39333:18;;:::i;:::-;39319:34;39378:1;39375;39371:9;39363:17;;39195:191;;;;:::o;39392:96::-;39429:7;39458:24;39476:5;39458:24;:::i;:::-;39447:35;;39392:96;;;:::o;39494:90::-;39528:7;39571:5;39564:13;39557:21;39546:32;;39494:90;;;:::o;39590:149::-;39626:7;39666:66;39659:5;39655:78;39644:89;;39590:149;;;:::o;39745:110::-;39796:7;39825:24;39843:5;39825:24;:::i;:::-;39814:35;;39745:110;;;:::o;39861:125::-;39927:7;39956:24;39974:5;39956:24;:::i;:::-;39945:35;;39861:125;;;:::o;39992:118::-;40029:7;40069:34;40062:5;40058:46;40047:57;;39992:118;;;:::o;40116:126::-;40153:7;40193:42;40186:5;40182:54;40171:65;;40116:126;;;:::o;40248:77::-;40285:7;40314:5;40303:16;;40248:77;;;:::o;40331:154::-;40415:6;40410:3;40405;40392:30;40477:1;40468:6;40463:3;40459:16;40452:27;40331:154;;;:::o;40491:307::-;40559:1;40569:113;40583:6;40580:1;40577:13;40569:113;;;40668:1;40663:3;40659:11;40653:18;40649:1;40644:3;40640:11;40633:39;40605:2;40602:1;40598:10;40593:15;;40569:113;;;40700:6;40697:1;40694:13;40691:101;;;40780:1;40771:6;40766:3;40762:16;40755:27;40691:101;40540:258;40491:307;;;:::o;40804:171::-;40843:3;40866:24;40884:5;40866:24;:::i;:::-;40857:33;;40912:4;40905:5;40902:15;40899:41;;;40920:18;;:::i;:::-;40899:41;40967:1;40960:5;40956:13;40949:20;;40804:171;;;:::o;40981:320::-;41025:6;41062:1;41056:4;41052:12;41042:22;;41109:1;41103:4;41099:12;41130:18;41120:81;;41186:4;41178:6;41174:17;41164:27;;41120:81;41248:2;41240:6;41237:14;41217:18;41214:38;41211:84;;;41267:18;;:::i;:::-;41211:84;41032:269;40981:320;;;:::o;41307:281::-;41390:27;41412:4;41390:27;:::i;:::-;41382:6;41378:40;41520:6;41508:10;41505:22;41484:18;41472:10;41469:34;41466:62;41463:88;;;41531:18;;:::i;:::-;41463:88;41571:10;41567:2;41560:22;41350:238;41307:281;;:::o;41594:233::-;41633:3;41656:24;41674:5;41656:24;:::i;:::-;41647:33;;41702:66;41695:5;41692:77;41689:103;;;41772:18;;:::i;:::-;41689:103;41819:1;41812:5;41808:13;41801:20;;41594:233;;;:::o;41833:176::-;41865:1;41882:20;41900:1;41882:20;:::i;:::-;41877:25;;41916:20;41934:1;41916:20;:::i;:::-;41911:25;;41955:1;41945:35;;41960:18;;:::i;:::-;41945:35;42001:1;41998;41994:9;41989:14;;41833:176;;;;:::o;42015:180::-;42063:77;42060:1;42053:88;42160:4;42157:1;42150:15;42184:4;42181:1;42174:15;42201:180;42249:77;42246:1;42239:88;42346:4;42343:1;42336:15;42370:4;42367:1;42360:15;42387:180;42435:77;42432:1;42425:88;42532:4;42529:1;42522:15;42556:4;42553:1;42546:15;42573:180;42621:77;42618:1;42611:88;42718:4;42715:1;42708:15;42742:4;42739:1;42732:15;42759:180;42807:77;42804:1;42797:88;42904:4;42901:1;42894:15;42928:4;42925:1;42918:15;42945:117;43054:1;43051;43044:12;43068:117;43177:1;43174;43167:12;43191:117;43300:1;43297;43290:12;43314:117;43423:1;43420;43413:12;43437:102;43478:6;43529:2;43525:7;43520:2;43513:5;43509:14;43505:28;43495:38;;43437:102;;;:::o;43545:221::-;43685:34;43681:1;43673:6;43669:14;43662:58;43754:4;43749:2;43741:6;43737:15;43730:29;43545:221;:::o;43772:225::-;43912:34;43908:1;43900:6;43896:14;43889:58;43981:8;43976:2;43968:6;43964:15;43957:33;43772:225;:::o;44003:229::-;44143:34;44139:1;44131:6;44127:14;44120:58;44212:12;44207:2;44199:6;44195:15;44188:37;44003:229;:::o;44238:222::-;44378:34;44374:1;44366:6;44362:14;44355:58;44447:5;44442:2;44434:6;44430:15;44423:30;44238:222;:::o;44466:221::-;44606:34;44602:1;44594:6;44590:14;44583:58;44675:4;44670:2;44662:6;44658:15;44651:29;44466:221;:::o;44693:224::-;44833:34;44829:1;44821:6;44817:14;44810:58;44902:7;44897:2;44889:6;44885:15;44878:32;44693:224;:::o;44923:221::-;45063:34;45059:1;45051:6;45047:14;45040:58;45132:4;45127:2;45119:6;45115:15;45108:29;44923:221;:::o;45150:167::-;45290:19;45286:1;45278:6;45274:14;45267:43;45150:167;:::o;45323:244::-;45463:34;45459:1;45451:6;45447:14;45440:58;45532:27;45527:2;45519:6;45515:15;45508:52;45323:244;:::o;45573:230::-;45713:34;45709:1;45701:6;45697:14;45690:58;45782:13;45777:2;45769:6;45765:15;45758:38;45573:230;:::o;45809:225::-;45949:34;45945:1;45937:6;45933:14;45926:58;46018:8;46013:2;46005:6;46001:15;45994:33;45809:225;:::o;46040:155::-;46180:7;46176:1;46168:6;46164:14;46157:31;46040:155;:::o;46201:182::-;46341:34;46337:1;46329:6;46325:14;46318:58;46201:182;:::o;46389:176::-;46529:28;46525:1;46517:6;46513:14;46506:52;46389:176;:::o;46571:237::-;46711:34;46707:1;46699:6;46695:14;46688:58;46780:20;46775:2;46767:6;46763:15;46756:45;46571:237;:::o;46814:221::-;46954:34;46950:1;46942:6;46938:14;46931:58;47023:4;47018:2;47010:6;47006:15;46999:29;46814:221;:::o;47041:238::-;47181:34;47177:1;47169:6;47165:14;47158:58;47250:21;47245:2;47237:6;47233:15;47226:46;47041:238;:::o;47285:179::-;47425:31;47421:1;47413:6;47409:14;47402:55;47285:179;:::o;47470:220::-;47610:34;47606:1;47598:6;47594:14;47587:58;47679:3;47674:2;47666:6;47662:15;47655:28;47470:220;:::o;47696:174::-;47836:26;47832:1;47824:6;47820:14;47813:50;47696:174;:::o;47876:233::-;48016:34;48012:1;48004:6;48000:14;47993:58;48085:16;48080:2;48072:6;48068:15;48061:41;47876:233;:::o;48115:181::-;48255:33;48251:1;48243:6;48239:14;48232:57;48115:181;:::o;48302:234::-;48442:34;48438:1;48430:6;48426:14;48419:58;48511:17;48506:2;48498:6;48494:15;48487:42;48302:234;:::o;48542:173::-;48682:25;48678:1;48670:6;48666:14;48659:49;48542:173;:::o;48721:232::-;48861:34;48857:1;48849:6;48845:14;48838:58;48930:15;48925:2;48917:6;48913:15;48906:40;48721:232;:::o;48959:221::-;49099:34;49095:1;49087:6;49083:14;49076:58;49168:4;49163:2;49155:6;49151:15;49144:29;48959:221;:::o;49186:151::-;49326:3;49322:1;49314:6;49310:14;49303:27;49186:151;:::o;49343:122::-;49416:24;49434:5;49416:24;:::i;:::-;49409:5;49406:35;49396:63;;49455:1;49452;49445:12;49396:63;49343:122;:::o;49471:116::-;49541:21;49556:5;49541:21;:::i;:::-;49534:5;49531:32;49521:60;;49577:1;49574;49567:12;49521:60;49471:116;:::o;49593:120::-;49665:23;49682:5;49665:23;:::i;:::-;49658:5;49655:34;49645:62;;49703:1;49700;49693:12;49645:62;49593:120;:::o;49719:150::-;49806:38;49838:5;49806:38;:::i;:::-;49799:5;49796:49;49786:77;;49859:1;49856;49849:12;49786:77;49719:150;:::o;49875:180::-;49977:53;50024:5;49977:53;:::i;:::-;49970:5;49967:64;49957:92;;50045:1;50042;50035:12;49957:92;49875:180;:::o;50061:122::-;50134:24;50152:5;50134:24;:::i;:::-;50127:5;50124:35;50114:63;;50173:1;50170;50163:12;50114:63;50061:122;:::o

Swarm Source

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