ETH Price: $2,266.67 (+2.91%)

Token

No Limit Llamas (NLL)
 

Overview

Max Total Supply

301 NLL

Holders

167

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
NoLimitLlamas

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/finance/PaymentSplitter.sol


// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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);

    /**
     * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


////   //   //       //
// //  //   //       //
//  // //   //       //
//   ////   //////   //////

contract NoLimitLlamas is ERC721Enumerable, Ownable, PaymentSplitter {

    using Strings for uint256;

    uint256 public constant maxSupply = 10000;
    uint256 private _price;
    uint256 private _reserved = 300;
    uint256 public maxMintAmount = 30;
    uint256 public nftPerAddressLimit = 5;

    string public provenanceHash = "";
    string public baseURI;
    string public baseExtension = ".json";

    bool public _saleStarted = false;
    bool public onlyWhitelisted = true;
    bool public revealed = false;
    
    mapping(address => bool) private whitelistedAddresses;
    mapping(address => uint256) public addressMintedBalance;
    address[] private _team = [
        0x3b68935DEbf3BE9fcED7702c352dAc0d118223a3,
        0x12Ec2B7A3490CDd3cA67AEb1E212e34b121Bf66F,
        0xcFBec7f118D28fb2a75D1ef77b046733B29328D9,
        0xfE10502945D0BaDB57C9Ab9db6fB8A2F7301d183,
        0x80B08457d05C19FC061e3a0454EF38DebE247Eb2
    ];
    uint256[] private _teamShares = [8500, 1000, 200, 150, 150];

    modifier whenSaleStarted() {
        require(_saleStarted);
        _;
    }

    constructor(
    uint256 _presalePrice,
    string memory _initNotRevealedUri
    ) ERC721("No Limit Llamas", "NLL")
    PaymentSplitter(_team, _teamShares) {
    setPrice(_presalePrice);
    setBaseURI(_initNotRevealedUri);
    }


    function mint(uint256 _nbTokens) external payable whenSaleStarted {
        uint256 supply = totalSupply();
    require(_nbTokens > 0, "need to mint at least 1 NFT");
    require(_nbTokens <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _nbTokens <= maxSupply - _reserved, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWhitelisted) {
            require(isWhitelisted(msg.sender) == true, "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _nbTokens <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= _price * _nbTokens, "insufficient funds");
    }

    for (uint256 i = 1; i <= _nbTokens; i++) {
      addressMintedBalance[msg.sender] = addressMintedBalance[msg.sender] + 1;
      _safeMint(msg.sender, supply + i);
    }
  }

    function flipSaleStarted() public onlyOwner {
        _saleStarted = !_saleStarted;
    }
  
    function isWhitelisted(address _user) public view returns (bool) {
      return whitelistedAddresses[_user];
    }

    function addToWhitelist(address[] calldata _addresses) external onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            require(_addresses[i] != address(0), "Can't add a zero address");
            if (whitelistedAddresses[_addresses[i]] == false) {
                whitelistedAddresses[_addresses[i]] = true;
            }
        }
    }

    function removeFromWhitelist(address[] calldata _addresses) external onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            require(_addresses[i] != address(0), "Can't remove a zero address");
            if (whitelistedAddresses[_addresses[i]] == true) {
                whitelistedAddresses[_addresses[i]] = false;
            }
        }
    }
    
    function reveal() public onlyOwner {
      revealed = true;
    }
    
    function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
    }

    function setBaseURI(string memory _URI) public onlyOwner {
        baseURI = _URI;
    }

    function _baseURI() internal view override(ERC721) returns(string memory) {
        return baseURI;
    }

    // Make it possible to change the price
    function setPrice(uint256 _newPrice) public onlyOwner {
        _price = _newPrice;
    }

    function getPrice() public view returns (uint256){
        return _price;
    }

    function getReservedLeft() public view returns (uint256) {
        return _reserved;
    }

    // This should be set before sales open.
    function setProvenanceHash(string memory _provenanceHash) public onlyOwner {
        provenanceHash = _provenanceHash;
    }

    // Helper to list all the Llamas of a wallet
    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i = 0; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function claimReserved(uint256 _number, address _receiver) external onlyOwner {
        uint256 supply = totalSupply();
        require(_number <= _reserved, "That would exceed the max reserved.");

        for (uint256 i = 1; i <= _number; i++) {
            addressMintedBalance[_receiver] = addressMintedBalance[_receiver] + 1;
            _safeMint(_receiver, supply + i);
        }

        _reserved = _reserved - _number;
    }
    
    function setNftPerAddressLimit(uint256 _limit) public onlyOwner() {
    nftPerAddressLimit = _limit;
    }

    function setMaxMintAmount(uint256 _maxMint) public onlyOwner() {
        maxMintAmount = _maxMint;
    }
    
    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
    }
    
    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
    return baseURI;
    }

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"_presalePrice","type":"uint256"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"_saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReservedLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nbTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

61012c601355601e601455600560155560a06040819052600060808190526200002b91601691620006fd565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005a91601891620006fd565b506019805462ffffff19166101001790556040805160a081018252733b68935debf3be9fced7702c352dac0d118223a381527312ec2b7a3490cdd3ca67aeb1e212e34b121bf66f602082015273cfbec7f118d28fb2a75d1ef77b046733b29328d99181019190915273fe10502945d0badb57c9ab9db6fb8a2f7301d18360608201527380b08457d05c19fc061e3a0454ef38debe247eb260808201526200010690601c9060056200078c565b506040805160a08101825261213481526103e8602082015260c89181019190915260966060820181905260808201526200014590601d906005620007e4565b503480156200015357600080fd5b506040516200413a3803806200413a83398101604081905262000176916200083f565b601c805480602002602001604051908101604052809291908181526020018280548015620001ce57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620001af575b5050505050601d8054806020026020016040519081016040528092919081815260200182805480156200022157602002820191906000526020600020905b8154815260200190600101908083116200020c575b5050604080518082018252600f81526e4e6f204c696d6974204c6c616d617360881b60208083019182528351808501909452600384526213931360ea1b9084015281519195509193506200027a925060009190620006fd565b50805162000290906001906020840190620006fd565b505050620002ad620002a76200040560201b60201c565b62000409565b80518251146200031f5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003725760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000316565b60005b8251811015620003de57620003c9838281518110620003985762000398620009b5565b6020026020010151838381518110620003b557620003b5620009b5565b60200260200101516200045b60201b60201c565b80620003d58162000981565b91505062000375565b505050620003f2826200064960201b60201c565b620003fd8162000699565b5050620009e1565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004c85760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000316565b600081116200051a5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000316565b6001600160a01b0382166000908152600d602052604090205415620005965760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000316565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b546200060090829062000929565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b600a546001600160a01b03163314620006945760405162461bcd60e51b815260206004820181905260248201526000805160206200411a833981519152604482015260640162000316565b601255565b600a546001600160a01b03163314620006e45760405162461bcd60e51b815260206004820181905260248201526000805160206200411a833981519152604482015260640162000316565b8051620006f9906017906020840190620006fd565b5050565b8280546200070b9062000944565b90600052602060002090601f0160209004810192826200072f57600085556200077a565b82601f106200074a57805160ff19168380011785556200077a565b828001600101855582156200077a579182015b828111156200077a5782518255916020019190600101906200075d565b506200078892915062000828565b5090565b8280548282559060005260206000209081019282156200077a579160200282015b828111156200077a57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620007ad565b8280548282559060005260206000209081019282156200077a579160200282015b828111156200077a578251829061ffff1690559160200191906001019062000805565b5b8082111562000788576000815560010162000829565b600080604083850312156200085357600080fd5b8251602080850151919350906001600160401b03808211156200087557600080fd5b818601915086601f8301126200088a57600080fd5b8151818111156200089f576200089f620009cb565b604051601f8201601f19908116603f01168101908382118183101715620008ca57620008ca620009cb565b816040528281528986848701011115620008e357600080fd5b600093505b82841015620009075784840186015181850187015292850192620008e8565b82841115620009195760008684830101525b8096505050505050509250929050565b600082198211156200093f576200093f6200099f565b500190565b600181811c908216806200095957607f821691505b602082108114156200097b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200099857620009986200099f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61372980620009f16000396000f3fe6080604052600436106103545760003560e01c80637f649783116101c6578063b88d4fde116100f7578063d5abeb0111610095578063daa023aa1161006f578063daa023aa14610a36578063e33b7de314610a4b578063e985e9c514610a60578063f2fde38b14610aa957600080fd5b8063d5abeb01146109ca578063d79779b2146109e0578063da3ef23f14610a1657600080fd5b8063c6ab67a3116100d1578063c6ab67a31461093f578063c87b56dd14610954578063ce7c2ac214610974578063d0eb26b0146109aa57600080fd5b8063b88d4fde146108f4578063ba7d2c7614610914578063c66828621461092a57600080fd5b80639852595c11610164578063a0712d681161013e578063a0712d681461088c578063a22cb4651461089f578063a475b5dd146108bf578063b0e1d7f3146108d457600080fd5b80639852595c1461082257806398d5fdca146108585780639c70b5121461086d57600080fd5b80638b83209b116101a05780638b83209b146107af5780638da5cb5b146107cf57806391b7f5ed146107ed57806395d89b411461080d57600080fd5b80637f6497831461076057806387c348bf14610780578063899d7b381461079a57600080fd5b80633af32abf116102a0578063518302271161023e5780636352211e116102185780636352211e146106f65780636c0360eb1461071657806370a082311461072b578063715018a61461074b57600080fd5b80635183022714610696578063548db174146106b657806355f804b3146106d657600080fd5b806342842e0e1161027a57806342842e0e14610609578063438b63001461062957806348b75044146106565780634f6ccce71461067657600080fd5b80633af32abf1461056a5780633c952764146105a3578063406072a9146105c357600080fd5b806318160ddd1161030d578063239c70ae116102e7578063239c70ae146104ff57806323b872dd146105155780632f745c59146105355780633a98ef391461055557600080fd5b806318160ddd1461049357806318cae269146104b257806319165587146104df57600080fd5b806301ffc9a7146103a257806306fdde03146103d7578063081812fc146103f9578063088a4ed014610431578063095ea7b314610453578063109695231461047357600080fd5b3661039d577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103ae57600080fd5b506103c26103bd366004613171565b610ac9565b60405190151581526020015b60405180910390f35b3480156103e357600080fd5b506103ec610af4565b6040516103ce91906133d8565b34801561040557600080fd5b506104196104143660046131f4565b610b86565b6040516001600160a01b0390911681526020016103ce565b34801561043d57600080fd5b5061045161044c3660046131f4565b610c20565b005b34801561045f57600080fd5b5061045161046e366004613096565b610c4f565b34801561047f57600080fd5b5061045161048e3660046131ab565b610d65565b34801561049f57600080fd5b506008545b6040519081526020016103ce565b3480156104be57600080fd5b506104a46104cd366004612f51565b601b6020526000908152604090205481565b3480156104eb57600080fd5b506104516104fa366004612f51565b610da6565b34801561050b57600080fd5b506104a460145481565b34801561052157600080fd5b50610451610530366004612fa7565b610ed4565b34801561054157600080fd5b506104a4610550366004613096565b610f05565b34801561056157600080fd5b50600b546104a4565b34801561057657600080fd5b506103c2610585366004612f51565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156105af57600080fd5b506104516105be366004613137565b610f9b565b3480156105cf57600080fd5b506104a46105de366004612f6e565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b34801561061557600080fd5b50610451610624366004612fa7565b610fdf565b34801561063557600080fd5b50610649610644366004612f51565b610ffa565b6040516103ce9190613394565b34801561066257600080fd5b50610451610671366004612f6e565b61109c565b34801561068257600080fd5b506104a46106913660046131f4565b611284565b3480156106a257600080fd5b506019546103c29062010000900460ff1681565b3480156106c257600080fd5b506104516106d13660046130c2565b611317565b3480156106e257600080fd5b506104516106f13660046131ab565b611486565b34801561070257600080fd5b506104196107113660046131f4565b6114c3565b34801561072257600080fd5b506103ec61153a565b34801561073757600080fd5b506104a4610746366004612f51565b6115c8565b34801561075757600080fd5b5061045161164f565b34801561076c57600080fd5b5061045161077b3660046130c2565b611685565b34801561078c57600080fd5b506019546103c29060ff1681565b3480156107a657600080fd5b506104516117ee565b3480156107bb57600080fd5b506104196107ca3660046131f4565b61182c565b3480156107db57600080fd5b50600a546001600160a01b0316610419565b3480156107f957600080fd5b506104516108083660046131f4565b61185c565b34801561081957600080fd5b506103ec61188b565b34801561082e57600080fd5b506104a461083d366004612f51565b6001600160a01b03166000908152600e602052604090205490565b34801561086457600080fd5b506012546104a4565b34801561087957600080fd5b506019546103c290610100900460ff1681565b61045161089a3660046131f4565b61189a565b3480156108ab57600080fd5b506104516108ba366004613068565b611b66565b3480156108cb57600080fd5b50610451611b71565b3480156108e057600080fd5b506104516108ef366004613226565b611bae565b34801561090057600080fd5b5061045161090f366004612fe8565b611cc1565b34801561092057600080fd5b506104a460155481565b34801561093657600080fd5b506103ec611cf9565b34801561094b57600080fd5b506103ec611d06565b34801561096057600080fd5b506103ec61096f3660046131f4565b611d13565b34801561098057600080fd5b506104a461098f366004612f51565b6001600160a01b03166000908152600d602052604090205490565b3480156109b657600080fd5b506104516109c53660046131f4565b611e93565b3480156109d657600080fd5b506104a461271081565b3480156109ec57600080fd5b506104a46109fb366004612f51565b6001600160a01b031660009081526010602052604090205490565b348015610a2257600080fd5b50610451610a313660046131ab565b611ec2565b348015610a4257600080fd5b506013546104a4565b348015610a5757600080fd5b50600c546104a4565b348015610a6c57600080fd5b506103c2610a7b366004612f6e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610ab557600080fd5b50610451610ac4366004612f51565b611eff565b60006001600160e01b0319821663780e9d6360e01b1480610aee5750610aee82611f9a565b92915050565b606060008054610b03906135e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2f906135e2565b8015610b7c5780601f10610b5157610100808354040283529160200191610b7c565b820191906000526020600020905b815481529060010190602001808311610b5f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b03163314610c4a5760405162461bcd60e51b8152600401610bfb906134ce565b601455565b6000610c5a826114c3565b9050806001600160a01b0316836001600160a01b03161415610cc85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bfb565b336001600160a01b0382161480610ce45750610ce48133610a7b565b610d565760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bfb565b610d608383611fea565b505050565b600a546001600160a01b03163314610d8f5760405162461bcd60e51b8152600401610bfb906134ce565b8051610da2906016906020840190612e42565b5050565b6001600160a01b0381166000908152600d6020526040902054610ddb5760405162461bcd60e51b8152600401610bfb9061343d565b6000610de6600c5490565b610df09047613554565b90506000610e1d8383610e18866001600160a01b03166000908152600e602052604090205490565b612058565b905080610e3c5760405162461bcd60e51b8152600401610bfb90613483565b6001600160a01b0383166000908152600e602052604081208054839290610e64908490613554565b9250508190555080600c6000828254610e7d9190613554565b90915550610e8d9050838261209e565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610ede33826121b7565b610efa5760405162461bcd60e51b8152600401610bfb90613503565b610d608383836122ad565b6000610f10836115c8565b8210610f725760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bfb565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610fc55760405162461bcd60e51b8152600401610bfb906134ce565b601980549115156101000261ff0019909216919091179055565b610d6083838360405180602001604052806000815250611cc1565b60606000611007836115c8565b905060008167ffffffffffffffff811115611024576110246136a4565b60405190808252806020026020018201604052801561104d578160200160208202803683370190505b50905060005b82811015611094576110658582610f05565b8282815181106110775761107761368e565b60209081029190910101528061108c8161361d565b915050611053565b509392505050565b6001600160a01b0381166000908152600d60205260409020546110d15760405162461bcd60e51b8152600401610bfb9061343d565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561112957600080fd5b505afa15801561113d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611161919061320d565b61116b9190613554565b905060006111a48383610e1887876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806111c35760405162461bcd60e51b8152600401610bfb90613483565b6001600160a01b038085166000908152601160209081526040808320938716835292905290812080548392906111fa908490613554565b90915550506001600160a01b03841660009081526010602052604081208054839290611227908490613554565b909155506112389050848483612454565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061128f60085490565b82106112f25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bfb565b600882815481106113055761130561368e565b90600052602060002001549050919050565b600a546001600160a01b031633146113415760405162461bcd60e51b8152600401610bfb906134ce565b60005b81811015610d605760008383838181106113605761136061368e565b90506020020160208101906113759190612f51565b6001600160a01b031614156113cc5760405162461bcd60e51b815260206004820152601b60248201527f43616e27742072656d6f76652061207a65726f206164647265737300000000006044820152606401610bfb565b601a60008484848181106113e2576113e261368e565b90506020020160208101906113f79190612f51565b6001600160a01b0316815260208101919091526040016000205460ff16151560011415611474576000601a60008585858181106114365761143661368e565b905060200201602081019061144b9190612f51565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b8061147e8161361d565b915050611344565b600a546001600160a01b031633146114b05760405162461bcd60e51b8152600401610bfb906134ce565b8051610da2906017906020840190612e42565b6000818152600260205260408120546001600160a01b031680610aee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bfb565b60178054611547906135e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611573906135e2565b80156115c05780601f10611595576101008083540402835291602001916115c0565b820191906000526020600020905b8154815290600101906020018083116115a357829003601f168201915b505050505081565b60006001600160a01b0382166116335760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bfb565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116795760405162461bcd60e51b8152600401610bfb906134ce565b61168360006124a6565b565b600a546001600160a01b031633146116af5760405162461bcd60e51b8152600401610bfb906134ce565b60005b81811015610d605760008383838181106116ce576116ce61368e565b90506020020160208101906116e39190612f51565b6001600160a01b0316141561173a5760405162461bcd60e51b815260206004820152601860248201527f43616e2774206164642061207a65726f206164647265737300000000000000006044820152606401610bfb565b601a60008484848181106117505761175061368e565b90506020020160208101906117659190612f51565b6001600160a01b0316815260208101919091526040016000205460ff166117dc576001601a600085858581811061179e5761179e61368e565b90506020020160208101906117b39190612f51565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b806117e68161361d565b9150506116b2565b600a546001600160a01b031633146118185760405162461bcd60e51b8152600401610bfb906134ce565b6019805460ff19811660ff90911615179055565b6000600f82815481106118415761184161368e565b6000918252602090912001546001600160a01b031692915050565b600a546001600160a01b031633146118865760405162461bcd60e51b8152600401610bfb906134ce565b601255565b606060018054610b03906135e2565b60195460ff166118a957600080fd5b60006118b460085490565b9050600082116119065760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610bfb565b6014548211156119645760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610bfb565b6013546119739061271061359f565b61197d8383613554565b11156119c45760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610bfb565b600a546001600160a01b03163314611b0957601954610100900460ff1615611ab757336000908152601a602052604090205460ff161515600114611a4a5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610bfb565b336000908152601b6020526040902054601554611a678483613554565b1115611ab55760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610bfb565b505b81601254611ac59190613580565b341015611b095760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610bfb565b60015b828111610d6057336000908152601b6020526040902054611b2e906001613554565b336000818152601b6020526040902091909155611b5490611b4f8385613554565b6124f8565b80611b5e8161361d565b915050611b0c565b610da2338383612512565b600a546001600160a01b03163314611b9b5760405162461bcd60e51b8152600401610bfb906134ce565b6019805462ff0000191662010000179055565b600a546001600160a01b03163314611bd85760405162461bcd60e51b8152600401610bfb906134ce565b6000611be360085490565b9050601354831115611c435760405162461bcd60e51b815260206004820152602360248201527f5468617420776f756c642065786365656420746865206d61782072657365727660448201526232b21760e91b6064820152608401610bfb565b60015b838111611caa576001600160a01b0383166000908152601b6020526040902054611c71906001613554565b6001600160a01b0384166000908152601b6020526040902055611c9883611b4f8385613554565b80611ca28161361d565b915050611c46565b5082601354611cb9919061359f565b601355505050565b611ccb33836121b7565b611ce75760405162461bcd60e51b8152600401610bfb90613503565b611cf3848484846125e1565b50505050565b60188054611547906135e2565b60168054611547906135e2565b6000818152600260205260409020546060906001600160a01b0316611d925760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bfb565b60195462010000900460ff16611e345760178054611daf906135e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611ddb906135e2565b8015611e285780601f10611dfd57610100808354040283529160200191611e28565b820191906000526020600020905b815481529060010190602001808311611e0b57829003601f168201915b50505050509050919050565b6000611e3e612614565b90506000815111611e5e5760405180602001604052806000815250611e8c565b80611e6884612623565b6018604051602001611e7c93929190613293565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611ebd5760405162461bcd60e51b8152600401610bfb906134ce565b601555565b600a546001600160a01b03163314611eec5760405162461bcd60e51b8152600401610bfb906134ce565b8051610da2906018906020840190612e42565b600a546001600160a01b03163314611f295760405162461bcd60e51b8152600401610bfb906134ce565b6001600160a01b038116611f8e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bfb565b611f97816124a6565b50565b60006001600160e01b031982166380ac58cd60e01b1480611fcb57506001600160e01b03198216635b5e139f60e01b145b80610aee57506301ffc9a760e01b6001600160e01b0319831614610aee565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061201f826114c3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d6020526040812054909183916120829086613580565b61208c919061356c565b612096919061359f565b949350505050565b804710156120ee5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bfb565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461213b576040519150601f19603f3d011682016040523d82523d6000602084013e612140565b606091505b5050905080610d605760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bfb565b6000818152600260205260408120546001600160a01b03166122305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bfb565b600061223b836114c3565b9050806001600160a01b0316846001600160a01b031614806122765750836001600160a01b031661226b84610b86565b6001600160a01b0316145b8061209657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b03166122c0826114c3565b6001600160a01b0316146123245760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610bfb565b6001600160a01b0382166123865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bfb565b612391838383612721565b61239c600082611fea565b6001600160a01b03831660009081526003602052604081208054600192906123c590849061359f565b90915550506001600160a01b03821660009081526003602052604081208054600192906123f3908490613554565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d609084906127d9565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610da28282604051806020016040528060008152506128ab565b816001600160a01b0316836001600160a01b031614156125745760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bfb565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6125ec8484846122ad565b6125f8848484846128de565b611cf35760405162461bcd60e51b8152600401610bfb906133eb565b606060178054610b03906135e2565b6060816126475750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612671578061265b8161361d565b915061266a9050600a8361356c565b915061264b565b60008167ffffffffffffffff81111561268c5761268c6136a4565b6040519080825280601f01601f1916602001820160405280156126b6576020820181803683370190505b5090505b8415612096576126cb60018361359f565b91506126d8600a86613638565b6126e3906030613554565b60f81b8183815181106126f8576126f861368e565b60200101906001600160f81b031916908160001a90535061271a600a8661356c565b94506126ba565b6001600160a01b03831661277c5761277781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61279f565b816001600160a01b0316836001600160a01b03161461279f5761279f83826129eb565b6001600160a01b0382166127b657610d6081612a88565b826001600160a01b0316826001600160a01b031614610d6057610d608282612b37565b600061282e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612b7b9092919063ffffffff16565b805190915015610d60578080602001905181019061284c9190613154565b610d605760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bfb565b6128b58383612b8a565b6128c260008484846128de565b610d605760405162461bcd60e51b8152600401610bfb906133eb565b60006001600160a01b0384163b156129e057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612922903390899088908890600401613357565b602060405180830381600087803b15801561293c57600080fd5b505af192505050801561296c575060408051601f3d908101601f191682019092526129699181019061318e565b60015b6129c6573d80801561299a576040519150601f19603f3d011682016040523d82523d6000602084013e61299f565b606091505b5080516129be5760405162461bcd60e51b8152600401610bfb906133eb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612096565b506001949350505050565b600060016129f8846115c8565b612a02919061359f565b600083815260076020526040902054909150808214612a55576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a9a9060019061359f565b60008381526009602052604081205460088054939450909284908110612ac257612ac261368e565b906000526020600020015490508060088381548110612ae357612ae361368e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b1b57612b1b613678565b6001900381819060005260206000200160009055905550505050565b6000612b42836115c8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60606120968484600085612cd8565b6001600160a01b038216612be05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bfb565b6000818152600260205260409020546001600160a01b031615612c455760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bfb565b612c5160008383612721565b6001600160a01b0382166000908152600360205260408120805460019290612c7a908490613554565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606082471015612d395760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610bfb565b6001600160a01b0385163b612d905760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bfb565b600080866001600160a01b03168587604051612dac9190613277565b60006040518083038185875af1925050503d8060008114612de9576040519150601f19603f3d011682016040523d82523d6000602084013e612dee565b606091505b5091509150612dfe828286612e09565b979650505050505050565b60608315612e18575081611e8c565b825115612e285782518084602001fd5b8160405162461bcd60e51b8152600401610bfb91906133d8565b828054612e4e906135e2565b90600052602060002090601f016020900481019282612e705760008555612eb6565b82601f10612e8957805160ff1916838001178555612eb6565b82800160010185558215612eb6579182015b82811115612eb6578251825591602001919060010190612e9b565b50612ec2929150612ec6565b5090565b5b80821115612ec25760008155600101612ec7565b600067ffffffffffffffff80841115612ef657612ef66136a4565b604051601f8501601f19908116603f01168101908282118183101715612f1e57612f1e6136a4565b81604052809350858152868686011115612f3757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612f6357600080fd5b8135611e8c816136ba565b60008060408385031215612f8157600080fd5b8235612f8c816136ba565b91506020830135612f9c816136ba565b809150509250929050565b600080600060608486031215612fbc57600080fd5b8335612fc7816136ba565b92506020840135612fd7816136ba565b929592945050506040919091013590565b60008060008060808587031215612ffe57600080fd5b8435613009816136ba565b93506020850135613019816136ba565b925060408501359150606085013567ffffffffffffffff81111561303c57600080fd5b8501601f8101871361304d57600080fd5b61305c87823560208401612edb565b91505092959194509250565b6000806040838503121561307b57600080fd5b8235613086816136ba565b91506020830135612f9c816136cf565b600080604083850312156130a957600080fd5b82356130b4816136ba565b946020939093013593505050565b600080602083850312156130d557600080fd5b823567ffffffffffffffff808211156130ed57600080fd5b818501915085601f83011261310157600080fd5b81358181111561311057600080fd5b8660208260051b850101111561312557600080fd5b60209290920196919550909350505050565b60006020828403121561314957600080fd5b8135611e8c816136cf565b60006020828403121561316657600080fd5b8151611e8c816136cf565b60006020828403121561318357600080fd5b8135611e8c816136dd565b6000602082840312156131a057600080fd5b8151611e8c816136dd565b6000602082840312156131bd57600080fd5b813567ffffffffffffffff8111156131d457600080fd5b8201601f810184136131e557600080fd5b61209684823560208401612edb565b60006020828403121561320657600080fd5b5035919050565b60006020828403121561321f57600080fd5b5051919050565b6000806040838503121561323957600080fd5b823591506020830135612f9c816136ba565b600081518084526132638160208601602086016135b6565b601f01601f19169290920160200192915050565b600082516132898184602087016135b6565b9190910192915050565b6000845160206132a68285838a016135b6565b8551918401916132b98184848a016135b6565b8554920191600090600181811c90808316806132d657607f831692505b8583108114156132f457634e487b7160e01b85526022600452602485fd5b808015613308576001811461331957613346565b60ff19851688528388019550613346565b60008b81526020902060005b8581101561333e5781548a820152908401908801613325565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061338a9083018461324b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156133cc578351835292840192918401916001016133b0565b50909695505050505050565b602081526000611e8c602083018461324b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156135675761356761364c565b500190565b60008261357b5761357b613662565b500490565b600081600019048311821515161561359a5761359a61364c565b500290565b6000828210156135b1576135b161364c565b500390565b60005b838110156135d15781810151838201526020016135b9565b83811115611cf35750506000910152565b600181811c908216806135f657607f821691505b6020821081141561361757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156136315761363161364c565b5060010190565b60008261364757613647613662565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611f9757600080fd5b8015158114611f9757600080fd5b6001600160e01b031981168114611f9757600080fdfea2646970667358221220ad2c3b5b28ee22cc6b86ba6842739371ec5e0a9d43fcd4b9e292bcf8225dcfc064736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000016345785d8a000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b72656966717067796d71323437616e346c777435786a3635776668786a36736a6677696c33647535707779783673666f676d723337776d000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103545760003560e01c80637f649783116101c6578063b88d4fde116100f7578063d5abeb0111610095578063daa023aa1161006f578063daa023aa14610a36578063e33b7de314610a4b578063e985e9c514610a60578063f2fde38b14610aa957600080fd5b8063d5abeb01146109ca578063d79779b2146109e0578063da3ef23f14610a1657600080fd5b8063c6ab67a3116100d1578063c6ab67a31461093f578063c87b56dd14610954578063ce7c2ac214610974578063d0eb26b0146109aa57600080fd5b8063b88d4fde146108f4578063ba7d2c7614610914578063c66828621461092a57600080fd5b80639852595c11610164578063a0712d681161013e578063a0712d681461088c578063a22cb4651461089f578063a475b5dd146108bf578063b0e1d7f3146108d457600080fd5b80639852595c1461082257806398d5fdca146108585780639c70b5121461086d57600080fd5b80638b83209b116101a05780638b83209b146107af5780638da5cb5b146107cf57806391b7f5ed146107ed57806395d89b411461080d57600080fd5b80637f6497831461076057806387c348bf14610780578063899d7b381461079a57600080fd5b80633af32abf116102a0578063518302271161023e5780636352211e116102185780636352211e146106f65780636c0360eb1461071657806370a082311461072b578063715018a61461074b57600080fd5b80635183022714610696578063548db174146106b657806355f804b3146106d657600080fd5b806342842e0e1161027a57806342842e0e14610609578063438b63001461062957806348b75044146106565780634f6ccce71461067657600080fd5b80633af32abf1461056a5780633c952764146105a3578063406072a9146105c357600080fd5b806318160ddd1161030d578063239c70ae116102e7578063239c70ae146104ff57806323b872dd146105155780632f745c59146105355780633a98ef391461055557600080fd5b806318160ddd1461049357806318cae269146104b257806319165587146104df57600080fd5b806301ffc9a7146103a257806306fdde03146103d7578063081812fc146103f9578063088a4ed014610431578063095ea7b314610453578063109695231461047357600080fd5b3661039d577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103ae57600080fd5b506103c26103bd366004613171565b610ac9565b60405190151581526020015b60405180910390f35b3480156103e357600080fd5b506103ec610af4565b6040516103ce91906133d8565b34801561040557600080fd5b506104196104143660046131f4565b610b86565b6040516001600160a01b0390911681526020016103ce565b34801561043d57600080fd5b5061045161044c3660046131f4565b610c20565b005b34801561045f57600080fd5b5061045161046e366004613096565b610c4f565b34801561047f57600080fd5b5061045161048e3660046131ab565b610d65565b34801561049f57600080fd5b506008545b6040519081526020016103ce565b3480156104be57600080fd5b506104a46104cd366004612f51565b601b6020526000908152604090205481565b3480156104eb57600080fd5b506104516104fa366004612f51565b610da6565b34801561050b57600080fd5b506104a460145481565b34801561052157600080fd5b50610451610530366004612fa7565b610ed4565b34801561054157600080fd5b506104a4610550366004613096565b610f05565b34801561056157600080fd5b50600b546104a4565b34801561057657600080fd5b506103c2610585366004612f51565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156105af57600080fd5b506104516105be366004613137565b610f9b565b3480156105cf57600080fd5b506104a46105de366004612f6e565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b34801561061557600080fd5b50610451610624366004612fa7565b610fdf565b34801561063557600080fd5b50610649610644366004612f51565b610ffa565b6040516103ce9190613394565b34801561066257600080fd5b50610451610671366004612f6e565b61109c565b34801561068257600080fd5b506104a46106913660046131f4565b611284565b3480156106a257600080fd5b506019546103c29062010000900460ff1681565b3480156106c257600080fd5b506104516106d13660046130c2565b611317565b3480156106e257600080fd5b506104516106f13660046131ab565b611486565b34801561070257600080fd5b506104196107113660046131f4565b6114c3565b34801561072257600080fd5b506103ec61153a565b34801561073757600080fd5b506104a4610746366004612f51565b6115c8565b34801561075757600080fd5b5061045161164f565b34801561076c57600080fd5b5061045161077b3660046130c2565b611685565b34801561078c57600080fd5b506019546103c29060ff1681565b3480156107a657600080fd5b506104516117ee565b3480156107bb57600080fd5b506104196107ca3660046131f4565b61182c565b3480156107db57600080fd5b50600a546001600160a01b0316610419565b3480156107f957600080fd5b506104516108083660046131f4565b61185c565b34801561081957600080fd5b506103ec61188b565b34801561082e57600080fd5b506104a461083d366004612f51565b6001600160a01b03166000908152600e602052604090205490565b34801561086457600080fd5b506012546104a4565b34801561087957600080fd5b506019546103c290610100900460ff1681565b61045161089a3660046131f4565b61189a565b3480156108ab57600080fd5b506104516108ba366004613068565b611b66565b3480156108cb57600080fd5b50610451611b71565b3480156108e057600080fd5b506104516108ef366004613226565b611bae565b34801561090057600080fd5b5061045161090f366004612fe8565b611cc1565b34801561092057600080fd5b506104a460155481565b34801561093657600080fd5b506103ec611cf9565b34801561094b57600080fd5b506103ec611d06565b34801561096057600080fd5b506103ec61096f3660046131f4565b611d13565b34801561098057600080fd5b506104a461098f366004612f51565b6001600160a01b03166000908152600d602052604090205490565b3480156109b657600080fd5b506104516109c53660046131f4565b611e93565b3480156109d657600080fd5b506104a461271081565b3480156109ec57600080fd5b506104a46109fb366004612f51565b6001600160a01b031660009081526010602052604090205490565b348015610a2257600080fd5b50610451610a313660046131ab565b611ec2565b348015610a4257600080fd5b506013546104a4565b348015610a5757600080fd5b50600c546104a4565b348015610a6c57600080fd5b506103c2610a7b366004612f6e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610ab557600080fd5b50610451610ac4366004612f51565b611eff565b60006001600160e01b0319821663780e9d6360e01b1480610aee5750610aee82611f9a565b92915050565b606060008054610b03906135e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2f906135e2565b8015610b7c5780601f10610b5157610100808354040283529160200191610b7c565b820191906000526020600020905b815481529060010190602001808311610b5f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b03163314610c4a5760405162461bcd60e51b8152600401610bfb906134ce565b601455565b6000610c5a826114c3565b9050806001600160a01b0316836001600160a01b03161415610cc85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bfb565b336001600160a01b0382161480610ce45750610ce48133610a7b565b610d565760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bfb565b610d608383611fea565b505050565b600a546001600160a01b03163314610d8f5760405162461bcd60e51b8152600401610bfb906134ce565b8051610da2906016906020840190612e42565b5050565b6001600160a01b0381166000908152600d6020526040902054610ddb5760405162461bcd60e51b8152600401610bfb9061343d565b6000610de6600c5490565b610df09047613554565b90506000610e1d8383610e18866001600160a01b03166000908152600e602052604090205490565b612058565b905080610e3c5760405162461bcd60e51b8152600401610bfb90613483565b6001600160a01b0383166000908152600e602052604081208054839290610e64908490613554565b9250508190555080600c6000828254610e7d9190613554565b90915550610e8d9050838261209e565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610ede33826121b7565b610efa5760405162461bcd60e51b8152600401610bfb90613503565b610d608383836122ad565b6000610f10836115c8565b8210610f725760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bfb565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610fc55760405162461bcd60e51b8152600401610bfb906134ce565b601980549115156101000261ff0019909216919091179055565b610d6083838360405180602001604052806000815250611cc1565b60606000611007836115c8565b905060008167ffffffffffffffff811115611024576110246136a4565b60405190808252806020026020018201604052801561104d578160200160208202803683370190505b50905060005b82811015611094576110658582610f05565b8282815181106110775761107761368e565b60209081029190910101528061108c8161361d565b915050611053565b509392505050565b6001600160a01b0381166000908152600d60205260409020546110d15760405162461bcd60e51b8152600401610bfb9061343d565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561112957600080fd5b505afa15801561113d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611161919061320d565b61116b9190613554565b905060006111a48383610e1887876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806111c35760405162461bcd60e51b8152600401610bfb90613483565b6001600160a01b038085166000908152601160209081526040808320938716835292905290812080548392906111fa908490613554565b90915550506001600160a01b03841660009081526010602052604081208054839290611227908490613554565b909155506112389050848483612454565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061128f60085490565b82106112f25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bfb565b600882815481106113055761130561368e565b90600052602060002001549050919050565b600a546001600160a01b031633146113415760405162461bcd60e51b8152600401610bfb906134ce565b60005b81811015610d605760008383838181106113605761136061368e565b90506020020160208101906113759190612f51565b6001600160a01b031614156113cc5760405162461bcd60e51b815260206004820152601b60248201527f43616e27742072656d6f76652061207a65726f206164647265737300000000006044820152606401610bfb565b601a60008484848181106113e2576113e261368e565b90506020020160208101906113f79190612f51565b6001600160a01b0316815260208101919091526040016000205460ff16151560011415611474576000601a60008585858181106114365761143661368e565b905060200201602081019061144b9190612f51565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b8061147e8161361d565b915050611344565b600a546001600160a01b031633146114b05760405162461bcd60e51b8152600401610bfb906134ce565b8051610da2906017906020840190612e42565b6000818152600260205260408120546001600160a01b031680610aee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bfb565b60178054611547906135e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611573906135e2565b80156115c05780601f10611595576101008083540402835291602001916115c0565b820191906000526020600020905b8154815290600101906020018083116115a357829003601f168201915b505050505081565b60006001600160a01b0382166116335760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bfb565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116795760405162461bcd60e51b8152600401610bfb906134ce565b61168360006124a6565b565b600a546001600160a01b031633146116af5760405162461bcd60e51b8152600401610bfb906134ce565b60005b81811015610d605760008383838181106116ce576116ce61368e565b90506020020160208101906116e39190612f51565b6001600160a01b0316141561173a5760405162461bcd60e51b815260206004820152601860248201527f43616e2774206164642061207a65726f206164647265737300000000000000006044820152606401610bfb565b601a60008484848181106117505761175061368e565b90506020020160208101906117659190612f51565b6001600160a01b0316815260208101919091526040016000205460ff166117dc576001601a600085858581811061179e5761179e61368e565b90506020020160208101906117b39190612f51565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b806117e68161361d565b9150506116b2565b600a546001600160a01b031633146118185760405162461bcd60e51b8152600401610bfb906134ce565b6019805460ff19811660ff90911615179055565b6000600f82815481106118415761184161368e565b6000918252602090912001546001600160a01b031692915050565b600a546001600160a01b031633146118865760405162461bcd60e51b8152600401610bfb906134ce565b601255565b606060018054610b03906135e2565b60195460ff166118a957600080fd5b60006118b460085490565b9050600082116119065760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610bfb565b6014548211156119645760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610bfb565b6013546119739061271061359f565b61197d8383613554565b11156119c45760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610bfb565b600a546001600160a01b03163314611b0957601954610100900460ff1615611ab757336000908152601a602052604090205460ff161515600114611a4a5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610bfb565b336000908152601b6020526040902054601554611a678483613554565b1115611ab55760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610bfb565b505b81601254611ac59190613580565b341015611b095760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610bfb565b60015b828111610d6057336000908152601b6020526040902054611b2e906001613554565b336000818152601b6020526040902091909155611b5490611b4f8385613554565b6124f8565b80611b5e8161361d565b915050611b0c565b610da2338383612512565b600a546001600160a01b03163314611b9b5760405162461bcd60e51b8152600401610bfb906134ce565b6019805462ff0000191662010000179055565b600a546001600160a01b03163314611bd85760405162461bcd60e51b8152600401610bfb906134ce565b6000611be360085490565b9050601354831115611c435760405162461bcd60e51b815260206004820152602360248201527f5468617420776f756c642065786365656420746865206d61782072657365727660448201526232b21760e91b6064820152608401610bfb565b60015b838111611caa576001600160a01b0383166000908152601b6020526040902054611c71906001613554565b6001600160a01b0384166000908152601b6020526040902055611c9883611b4f8385613554565b80611ca28161361d565b915050611c46565b5082601354611cb9919061359f565b601355505050565b611ccb33836121b7565b611ce75760405162461bcd60e51b8152600401610bfb90613503565b611cf3848484846125e1565b50505050565b60188054611547906135e2565b60168054611547906135e2565b6000818152600260205260409020546060906001600160a01b0316611d925760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bfb565b60195462010000900460ff16611e345760178054611daf906135e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611ddb906135e2565b8015611e285780601f10611dfd57610100808354040283529160200191611e28565b820191906000526020600020905b815481529060010190602001808311611e0b57829003601f168201915b50505050509050919050565b6000611e3e612614565b90506000815111611e5e5760405180602001604052806000815250611e8c565b80611e6884612623565b6018604051602001611e7c93929190613293565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611ebd5760405162461bcd60e51b8152600401610bfb906134ce565b601555565b600a546001600160a01b03163314611eec5760405162461bcd60e51b8152600401610bfb906134ce565b8051610da2906018906020840190612e42565b600a546001600160a01b03163314611f295760405162461bcd60e51b8152600401610bfb906134ce565b6001600160a01b038116611f8e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bfb565b611f97816124a6565b50565b60006001600160e01b031982166380ac58cd60e01b1480611fcb57506001600160e01b03198216635b5e139f60e01b145b80610aee57506301ffc9a760e01b6001600160e01b0319831614610aee565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061201f826114c3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d6020526040812054909183916120829086613580565b61208c919061356c565b612096919061359f565b949350505050565b804710156120ee5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bfb565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461213b576040519150601f19603f3d011682016040523d82523d6000602084013e612140565b606091505b5050905080610d605760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bfb565b6000818152600260205260408120546001600160a01b03166122305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bfb565b600061223b836114c3565b9050806001600160a01b0316846001600160a01b031614806122765750836001600160a01b031661226b84610b86565b6001600160a01b0316145b8061209657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b03166122c0826114c3565b6001600160a01b0316146123245760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610bfb565b6001600160a01b0382166123865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bfb565b612391838383612721565b61239c600082611fea565b6001600160a01b03831660009081526003602052604081208054600192906123c590849061359f565b90915550506001600160a01b03821660009081526003602052604081208054600192906123f3908490613554565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d609084906127d9565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610da28282604051806020016040528060008152506128ab565b816001600160a01b0316836001600160a01b031614156125745760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bfb565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6125ec8484846122ad565b6125f8848484846128de565b611cf35760405162461bcd60e51b8152600401610bfb906133eb565b606060178054610b03906135e2565b6060816126475750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612671578061265b8161361d565b915061266a9050600a8361356c565b915061264b565b60008167ffffffffffffffff81111561268c5761268c6136a4565b6040519080825280601f01601f1916602001820160405280156126b6576020820181803683370190505b5090505b8415612096576126cb60018361359f565b91506126d8600a86613638565b6126e3906030613554565b60f81b8183815181106126f8576126f861368e565b60200101906001600160f81b031916908160001a90535061271a600a8661356c565b94506126ba565b6001600160a01b03831661277c5761277781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61279f565b816001600160a01b0316836001600160a01b03161461279f5761279f83826129eb565b6001600160a01b0382166127b657610d6081612a88565b826001600160a01b0316826001600160a01b031614610d6057610d608282612b37565b600061282e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612b7b9092919063ffffffff16565b805190915015610d60578080602001905181019061284c9190613154565b610d605760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bfb565b6128b58383612b8a565b6128c260008484846128de565b610d605760405162461bcd60e51b8152600401610bfb906133eb565b60006001600160a01b0384163b156129e057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612922903390899088908890600401613357565b602060405180830381600087803b15801561293c57600080fd5b505af192505050801561296c575060408051601f3d908101601f191682019092526129699181019061318e565b60015b6129c6573d80801561299a576040519150601f19603f3d011682016040523d82523d6000602084013e61299f565b606091505b5080516129be5760405162461bcd60e51b8152600401610bfb906133eb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612096565b506001949350505050565b600060016129f8846115c8565b612a02919061359f565b600083815260076020526040902054909150808214612a55576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a9a9060019061359f565b60008381526009602052604081205460088054939450909284908110612ac257612ac261368e565b906000526020600020015490508060088381548110612ae357612ae361368e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b1b57612b1b613678565b6001900381819060005260206000200160009055905550505050565b6000612b42836115c8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60606120968484600085612cd8565b6001600160a01b038216612be05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bfb565b6000818152600260205260409020546001600160a01b031615612c455760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bfb565b612c5160008383612721565b6001600160a01b0382166000908152600360205260408120805460019290612c7a908490613554565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606082471015612d395760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610bfb565b6001600160a01b0385163b612d905760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bfb565b600080866001600160a01b03168587604051612dac9190613277565b60006040518083038185875af1925050503d8060008114612de9576040519150601f19603f3d011682016040523d82523d6000602084013e612dee565b606091505b5091509150612dfe828286612e09565b979650505050505050565b60608315612e18575081611e8c565b825115612e285782518084602001fd5b8160405162461bcd60e51b8152600401610bfb91906133d8565b828054612e4e906135e2565b90600052602060002090601f016020900481019282612e705760008555612eb6565b82601f10612e8957805160ff1916838001178555612eb6565b82800160010185558215612eb6579182015b82811115612eb6578251825591602001919060010190612e9b565b50612ec2929150612ec6565b5090565b5b80821115612ec25760008155600101612ec7565b600067ffffffffffffffff80841115612ef657612ef66136a4565b604051601f8501601f19908116603f01168101908282118183101715612f1e57612f1e6136a4565b81604052809350858152868686011115612f3757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612f6357600080fd5b8135611e8c816136ba565b60008060408385031215612f8157600080fd5b8235612f8c816136ba565b91506020830135612f9c816136ba565b809150509250929050565b600080600060608486031215612fbc57600080fd5b8335612fc7816136ba565b92506020840135612fd7816136ba565b929592945050506040919091013590565b60008060008060808587031215612ffe57600080fd5b8435613009816136ba565b93506020850135613019816136ba565b925060408501359150606085013567ffffffffffffffff81111561303c57600080fd5b8501601f8101871361304d57600080fd5b61305c87823560208401612edb565b91505092959194509250565b6000806040838503121561307b57600080fd5b8235613086816136ba565b91506020830135612f9c816136cf565b600080604083850312156130a957600080fd5b82356130b4816136ba565b946020939093013593505050565b600080602083850312156130d557600080fd5b823567ffffffffffffffff808211156130ed57600080fd5b818501915085601f83011261310157600080fd5b81358181111561311057600080fd5b8660208260051b850101111561312557600080fd5b60209290920196919550909350505050565b60006020828403121561314957600080fd5b8135611e8c816136cf565b60006020828403121561316657600080fd5b8151611e8c816136cf565b60006020828403121561318357600080fd5b8135611e8c816136dd565b6000602082840312156131a057600080fd5b8151611e8c816136dd565b6000602082840312156131bd57600080fd5b813567ffffffffffffffff8111156131d457600080fd5b8201601f810184136131e557600080fd5b61209684823560208401612edb565b60006020828403121561320657600080fd5b5035919050565b60006020828403121561321f57600080fd5b5051919050565b6000806040838503121561323957600080fd5b823591506020830135612f9c816136ba565b600081518084526132638160208601602086016135b6565b601f01601f19169290920160200192915050565b600082516132898184602087016135b6565b9190910192915050565b6000845160206132a68285838a016135b6565b8551918401916132b98184848a016135b6565b8554920191600090600181811c90808316806132d657607f831692505b8583108114156132f457634e487b7160e01b85526022600452602485fd5b808015613308576001811461331957613346565b60ff19851688528388019550613346565b60008b81526020902060005b8581101561333e5781548a820152908401908801613325565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061338a9083018461324b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156133cc578351835292840192918401916001016133b0565b50909695505050505050565b602081526000611e8c602083018461324b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156135675761356761364c565b500190565b60008261357b5761357b613662565b500490565b600081600019048311821515161561359a5761359a61364c565b500290565b6000828210156135b1576135b161364c565b500390565b60005b838110156135d15781810151838201526020016135b9565b83811115611cf35750506000910152565b600181811c908216806135f657607f821691505b6020821081141561361757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156136315761363161364c565b5060010190565b60008261364757613647613662565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611f9757600080fd5b8015158114611f9757600080fd5b6001600160e01b031981168114611f9757600080fdfea2646970667358221220ad2c3b5b28ee22cc6b86ba6842739371ec5e0a9d43fcd4b9e292bcf8225dcfc064736f6c63430008070033

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

000000000000000000000000000000000000000000000000016345785d8a000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b72656966717067796d71323437616e346c777435786a3635776668786a36736a6677696c33647535707779783673666f676d723337776d000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _presalePrice (uint256): 100000000000000000
Arg [1] : _initNotRevealedUri (string): ipfs://bafkreifqpgymq247an4lwt5xj65wfhxj6sjfwil3du5pwyx6sfogmr37wm

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [3] : 697066733a2f2f6261666b72656966717067796d71323437616e346c77743578
Arg [4] : 6a3635776668786a36736a6677696c33647535707779783673666f676d723337
Arg [5] : 776d000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

60875:5952:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24539:40;5938:10;24539:40;;;-1:-1:-1;;;;;9653:32:1;;;9635:51;;24569:9:0;9717:2:1;9702:18;;9695:34;9608:18;24539:40:0;;;;;;;60875:5952;;;;;54556:224;;;;;;;;;;-1:-1:-1;54556:224:0;;;;;:::i;:::-;;:::i;:::-;;;11314:14:1;;11307:22;11289:41;;11277:2;11262:18;54556:224:0;;;;;;;;41323:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42882:221::-;;;;;;;;;;-1:-1:-1;42882:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9409:32:1;;;9391:51;;9379:2;9364:18;42882:221:0;9245:203:1;66084:106:0;;;;;;;;;;-1:-1:-1;66084:106:0;;;;;:::i;:::-;;:::i;:::-;;42405:411;;;;;;;;;;-1:-1:-1;42405:411:0;;;;;:::i;:::-;;:::i;64974:126::-;;;;;;;;;;-1:-1:-1;64974:126:0;;;;;:::i;:::-;;:::i;55196:113::-;;;;;;;;;;-1:-1:-1;55284:10:0;:17;55196:113;;;24975:25:1;;;24963:2;24948:18;55196:113:0;24829:177:1;61483:55:0;;;;;;;;;;-1:-1:-1;61483:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;26325:566;;;;;;;;;;-1:-1:-1;26325:566:0;;;;;:::i;:::-;;:::i;61102:33::-;;;;;;;;;;;;;;;;43632:339;;;;;;;;;;-1:-1:-1;43632:339:0;;;;;:::i;:::-;;:::i;54864:256::-;;;;;;;;;;-1:-1:-1;54864:256:0;;;;;:::i;:::-;;:::i;24670:91::-;;;;;;;;;;-1:-1:-1;24741:12:0;;24670:91;;63302:116;;;;;;;;;;-1:-1:-1;63302:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;63383:27:0;63361:4;63383:27;;;:20;:27;;;;;;;;;63302:116;64277:97;;;;;;;;;;-1:-1:-1;64277:97:0;;;;;:::i;:::-;;:::i;25799:135::-;;;;;;;;;;-1:-1:-1;25799:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;25896:21:0;;;25869:7;25896:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;25799:135;44042:185;;;;;;;;;;-1:-1:-1;44042:185:0;;;;;:::i;:::-;;:::i;65158:346::-;;;;;;;;;;-1:-1:-1;65158:346:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27159:641::-;;;;;;;;;;-1:-1:-1;27159:641:0;;;;;:::i;:::-;;:::i;55386:233::-;;;;;;;;;;-1:-1:-1;55386:233:0;;;;;:::i;:::-;;:::i;61382:28::-;;;;;;;;;;-1:-1:-1;61382:28:0;;;;;;;;;;;63806:380;;;;;;;;;;-1:-1:-1;63806:380:0;;;;;:::i;:::-;;:::i;64382:90::-;;;;;;;;;;-1:-1:-1;64382:90:0;;;;;:::i;:::-;;:::i;41017:239::-;;;;;;;;;;-1:-1:-1;41017:239:0;;;;;:::i;:::-;;:::i;61228:21::-;;;;;;;;;;;;;:::i;40747:208::-;;;;;;;;;;-1:-1:-1;40747:208:0;;;;;:::i;:::-;;:::i;7838:103::-;;;;;;;;;;;;;:::i;63426:372::-;;;;;;;;;;-1:-1:-1;63426:372:0;;;;;:::i;:::-;;:::i;61302:32::-;;;;;;;;;;-1:-1:-1;61302:32:0;;;;;;;;63201:91;;;;;;;;;;;;;:::i;26025:100::-;;;;;;;;;;-1:-1:-1;26025:100:0;;;;;:::i;:::-;;:::i;7187:87::-;;;;;;;;;;-1:-1:-1;7260:6:0;;-1:-1:-1;;;;;7260:6:0;7187:87;;64640:91;;;;;;;;;;-1:-1:-1;64640:91:0;;;;;:::i;:::-;;:::i;41492:104::-;;;;;;;;;;;;;:::i;25521:109::-;;;;;;;;;;-1:-1:-1;25521:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;25604:18:0;25577:7;25604:18;;;:9;:18;;;;;;;25521:109;64739:81;;;;;;;;;;-1:-1:-1;64806:6:0;;64739:81;;61341:34;;;;;;;;;;-1:-1:-1;61341:34:0;;;;;;;;;;;62252:941;;;;;;:::i;:::-;;:::i;43175:155::-;;;;;;;;;;-1:-1:-1;43175:155:0;;;;;:::i;:::-;;:::i;64198:67::-;;;;;;;;;;;;;:::i;65512:444::-;;;;;;;;;;-1:-1:-1;65512:444:0;;;;;:::i;:::-;;:::i;44298:328::-;;;;;;;;;;-1:-1:-1;44298:328:0;;;;;:::i;:::-;;:::i;61142:37::-;;;;;;;;;;;;;;;;61256;;;;;;;;;;;;;:::i;61188:33::-;;;;;;;;;;;;;:::i;66338:486::-;;;;;;;;;;-1:-1:-1;66338:486:0;;;;;:::i;:::-;;:::i;25317:105::-;;;;;;;;;;-1:-1:-1;25317:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;25398:16:0;25371:7;25398:16;;;:7;:16;;;;;;;25317:105;65968:108;;;;;;;;;;-1:-1:-1;65968:108:0;;;;;:::i;:::-;;:::i;60987:41::-;;;;;;;;;;;;61023:5;60987:41;;25107:119;;;;;;;;;;-1:-1:-1;25107:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;25192:26:0;25165:7;25192:26;;;:19;:26;;;;;;;25107:119;66202:124;;;;;;;;;;-1:-1:-1;66202:124:0;;;;;:::i;:::-;;:::i;64828:92::-;;;;;;;;;;-1:-1:-1;64903:9:0;;64828:92;;24855:95;;;;;;;;;;-1:-1:-1;24928:14:0;;24855:95;;43401:164;;;;;;;;;;-1:-1:-1;43401:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43522:25:0;;;43498:4;43522:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43401:164;8096:201;;;;;;;;;;-1:-1:-1;8096:201:0;;;;;:::i;:::-;;:::i;54556:224::-;54658:4;-1:-1:-1;;;;;;54682:50:0;;-1:-1:-1;;;54682:50:0;;:90;;;54736:36;54760:11;54736:23;:36::i;:::-;54675:97;54556:224;-1:-1:-1;;54556:224:0:o;41323:100::-;41377:13;41410:5;41403:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41323:100;:::o;42882:221::-;42958:7;46225:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46225:16:0;42978:73;;;;-1:-1:-1;;;42978:73:0;;20380:2:1;42978:73:0;;;20362:21:1;20419:2;20399:18;;;20392:30;20458:34;20438:18;;;20431:62;-1:-1:-1;;;20509:18:1;;;20502:42;20561:19;;42978:73:0;;;;;;;;;-1:-1:-1;43071:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43071:24:0;;42882:221::o;66084:106::-;7260:6;;-1:-1:-1;;;;;7260:6:0;5938:10;7407:23;7399:68;;;;-1:-1:-1;;;7399:68:0;;;;;;;:::i;:::-;66158:13:::1;:24:::0;66084:106::o;42405:411::-;42486:13;42502:23;42517:7;42502:14;:23::i;:::-;42486:39;;42550:5;-1:-1:-1;;;;;42544:11:0;:2;-1:-1:-1;;;;;42544:11:0;;;42536:57;;;;-1:-1:-1;;;42536:57:0;;21570:2:1;42536:57:0;;;21552:21:1;21609:2;21589:18;;;21582:30;21648:34;21628:18;;;21621:62;-1:-1:-1;;;21699:18:1;;;21692:31;21740:19;;42536:57:0;21368:397:1;42536:57:0;5938:10;-1:-1:-1;;;;;42628:21:0;;;;:62;;-1:-1:-1;42653:37:0;42670:5;5938:10;43401:164;:::i;42653:37::-;42606:168;;;;-1:-1:-1;;;42606:168:0;;18017:2:1;42606:168:0;;;17999:21:1;18056:2;18036:18;;;18029:30;18095:34;18075:18;;;18068:62;18166:26;18146:18;;;18139:54;18210:19;;42606:168:0;17815:420:1;42606:168:0;42787:21;42796:2;42800:7;42787:8;:21::i;:::-;42475:341;42405:411;;:::o;64974:126::-;7260:6;;-1:-1:-1;;;;;7260:6:0;5938:10;7407:23;7399:68;;;;-1:-1:-1;;;7399:68:0;;;;;;;:::i;:::-;65060:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;64974:126:::0;:::o;26325:566::-;-1:-1:-1;;;;;26401:16:0;;26420:1;26401:16;;;:7;:16;;;;;;26393:71;;;;-1:-1:-1;;;26393:71:0;;;;;;;:::i;:::-;26477:21;26525:15;24928:14;;;24855:95;26525:15;26501:39;;:21;:39;:::i;:::-;26477:63;;26551:15;26569:58;26585:7;26594:13;26609:17;26618:7;-1:-1:-1;;;;;25604:18:0;25577:7;25604:18;;;:9;:18;;;;;;;25521:109;26609:17;26569:15;:58::i;:::-;26551:76;-1:-1:-1;26648:12:0;26640:68;;;;-1:-1:-1;;;26640:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26721:18:0;;;;;;:9;:18;;;;;:29;;26743:7;;26721:18;:29;;26743:7;;26721:29;:::i;:::-;;;;;;;;26779:7;26761:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;26799:35:0;;-1:-1:-1;26817:7:0;26826;26799:17;:35::i;:::-;26850:33;;;-1:-1:-1;;;;;9653:32:1;;9635:51;;9717:2;9702:18;;9695:34;;;26850:33:0;;9608:18:1;26850:33:0;;;;;;;26382:509;;26325:566;:::o;43632:339::-;43827:41;5938:10;43860:7;43827:18;:41::i;:::-;43819:103;;;;-1:-1:-1;;;43819:103:0;;;;;;;:::i;:::-;43935:28;43945:4;43951:2;43955:7;43935:9;:28::i;54864:256::-;54961:7;54997:23;55014:5;54997:16;:23::i;:::-;54989:5;:31;54981:87;;;;-1:-1:-1;;;54981:87:0;;11767:2:1;54981:87:0;;;11749:21:1;11806:2;11786:18;;;11779:30;11845:34;11825:18;;;11818:62;-1:-1:-1;;;11896:18:1;;;11889:41;11947:19;;54981:87:0;11565:407:1;54981:87:0;-1:-1:-1;;;;;;55086:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;54864:256::o;64277:97::-;7260:6;;-1:-1:-1;;;;;7260:6:0;5938:10;7407:23;7399:68;;;;-1:-1:-1;;;7399:68:0;;;;;;;:::i;:::-;64342:15:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;64342:24:0;;::::1;::::0;;;::::1;::::0;;64277:97::o;44042:185::-;44180:39;44197:4;44203:2;44207:7;44180:39;;;;;;;;;;;;:16;:39::i;65158:346::-;65217:16;65246:18;65267:17;65277:6;65267:9;:17::i;:::-;65246:38;;65297:25;65339:10;65325:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65325:25:0;;65297:53;;65365:9;65361:110;65384:10;65380:1;:14;65361:110;;;65429:30;65449:6;65457:1;65429:19;:30::i;:::-;65415:8;65424:1;65415:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;65396:3;;;;:::i;:::-;;;;65361:110;;;-1:-1:-1;65488:8:0;65158:346;-1:-1:-1;;;65158:346:0:o;27159:641::-;-1:-1:-1;;;;;27241:16:0;;27260:1;27241:16;;;:7;:16;;;;;;27233:71;;;;-1:-1:-1;;;27233:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25192:26:0;;27317:21;25192:26;;;:19;:26;;;;;;27341:30;;-1:-1:-1;;;27341:30:0;;27365:4;27341:30;;;9391:51:1;-1:-1:-1;;;;;27341:15:0;;;;;9364:18:1;;27341:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;27317:77;;27405:15;27423:65;27439:7;27448:13;27463:24;27472:5;27479:7;-1:-1:-1;;;;;25896:21:0;;;25869:7;25896:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;25799:135;27423:65;27405:83;-1:-1:-1;27509:12:0;27501:68;;;;-1:-1:-1;;;27501:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27582:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;27616:7;;27582:21;:41;;27616:7;;27582:41;:::i;:::-;;;;-1:-1:-1;;;;;;;27634:26:0;;;;;;:19;:26;;;;;:37;;27664:7;;27634:26;:37;;27664:7;;27634:37;:::i;:::-;;;;-1:-1:-1;27684:47:0;;-1:-1:-1;27707:5:0;27714:7;27723;27684:22;:47::i;:::-;27747:45;;;-1:-1:-1;;;;;9653:32:1;;;9635:51;;9717:2;9702:18;;9695:34;;;27747:45:0;;;;;9608:18:1;27747:45:0;;;;;;;27222:578;;27159:641;;:::o;55386:233::-;55461:7;55497:30;55284:10;:17;;55196:113;55497:30;55489:5;:38;55481:95;;;;-1:-1:-1;;;55481:95:0;;23499:2:1;55481:95:0;;;23481:21:1;23538:2;23518:18;;;23511:30;23577:34;23557:18;;;23550:62;-1:-1:-1;;;23628:18:1;;;23621:42;23680:19;;55481:95:0;23297:408:1;55481:95:0;55594:10;55605:5;55594:17;;;;;;;;:::i;:::-;;;;;;;;;55587:24;;55386:233;;;:::o;63806:380::-;7260:6;;-1:-1:-1;;;;;7260:6:0;5938:10;7407:23;7399:68;;;;-1:-1:-1;;;7399:68:0;;;;;;;:::i;:::-;63901:9:::1;63896:283;63916:21:::0;;::::1;63896:283;;;63992:1;63967:10:::0;;63978:1;63967:13;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;63967:27:0::1;;;63959:67;;;::::0;-1:-1:-1;;;63959:67:0;;17661:2:1;63959:67:0::1;::::0;::::1;17643:21:1::0;17700:2;17680:18;;;17673:30;17739:29;17719:18;;;17712:57;17786:18;;63959:67:0::1;17459:351:1::0;63959:67:0::1;64045:20;:35;64066:10;;64077:1;64066:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;64045:35:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;64045:35:0;;::::1;;:43;;:35:::0;:43:::1;64041:127;;;64147:5;64109:20;:35;64130:10;;64141:1;64130:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;64109:35:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;64109:35:0;:43;;-1:-1:-1;;64109:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64041:127:::1;63939:3:::0;::::1;::::0;::::1;:::i;:::-;;;;63896:283;;64382:90:::0;7260:6;;-1:-1:-1;;;;;7260:6:0;5938:10;7407:23;7399:68;;;;-1:-1:-1;;;7399:68:0;;;;;;;:::i;:::-;64450:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;41017:239::-:0;41089:7;41125:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41125:16:0;41160:19;41152:73;;;;-1:-1:-1;;;41152:73:0;;18853:2:1;41152:73:0;;;18835:21:1;18892:2;18872:18;;;18865:30;18931:34;18911:18;;;18904:62;-1:-1:-1;;;18982:18:1;;;18975:39;19031:19;;41152:73:0;18651:405:1;61228:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40747:208::-;40819:7;-1:-1:-1;;;;;40847:19:0;;40839:74;;;;-1:-1:-1;;;40839:74:0;;18442:2:1;40839:74:0;;;18424:21:1;18481:2;18461:18;;;18454:30;18520:34;18500:18;;;18493:62;-1:-1:-1;;;18571:18:1;;;18564:40;18621:19;;40839:74:0;18240:406:1;40839:74:0;-1:-1:-1;;;;;;40931:16:0;;;;;:9;:16;;;;;;;40747:208::o;7838:103::-;7260:6;;-1:-1:-1;;;;;7260:6:0;5938:10;7407:23;7399:68;;;;-1:-1:-1;;;7399:68:0;;;;;;;:::i;:::-;7903:30:::1;7930:1;7903:18;:30::i;:::-;7838:103::o:0;63426:372::-;7260:6;;-1:-1:-1;;;;;7260:6:0;5938:10;7407:23;7399:68;;;;-1:-1:-1;;;7399:68:0;;;;;;;:::i;:::-;63516:9:::1;63511:280;63531:21:::0;;::::1;63511:280;;;63607:1;63582:10:::0;;63593:1;63582:13;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;63582:27:0::1;;;63574:64;;;::::0;-1:-1:-1;;;63574:64:0;;12598:2:1;63574:64:0::1;::::0;::::1;12580:21:1::0;12637:2;12617:18;;;12610:30;12676:26;12656:18;;;12649:54;12720:18;;63574:64:0::1;12396:348:1::0;63574:64:0::1;63657:20;:35;63678:10;;63689:1;63678:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;63657:35:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;63657:35:0;;::::1;;63653:127;;63760:4;63722:20;:35;63743:10;;63754:1;63743:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;63722:35:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;63722:35:0;:42;;-1:-1:-1;;63722:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;63653:127:::1;63554:3:::0;::::1;::::0;::::1;:::i;:::-;;;;63511:280;;63201:91:::0;7260:6;;-1:-1:-1;;;;;7260:6:0;5938:10;7407:23;7399:68;;;;-1:-1:-1;;;7399:68:0;;;;;;;:::i;:::-;63272:12:::1;::::0;;-1:-1:-1;;63256:28:0;::::1;63272:12;::::0;;::::1;63271:13;63256:28;::::0;;63201:91::o;26025:100::-;26076:7;26103;26111:5;26103:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;26103:14:0;;26025:100;-1:-1:-1;;26025:100:0:o;64640:91::-;7260:6;;-1:-1:-1;;;;;7260:6:0;5938:10;7407:23;7399:68;;;;-1:-1:-1;;;7399:68:0;;;;;;;:::i;:::-;64705:6:::1;:18:::0;64640:91::o;41492:104::-;41548:13;41581:7;41574:14;;;;;:::i;62252:941::-;61964:12;;;;61956:21;;;;;;62329:14:::1;62346:13;55284:10:::0;:17;;55196:113;62346:13:::1;62329:30;;62386:1;62374:9;:13;62366:53;;;::::0;-1:-1:-1;;;62366:53:0;;24675:2:1;62366:53:0::1;::::0;::::1;24657:21:1::0;24714:2;24694:18;;;24687:30;24753:29;24733:18;;;24726:57;24800:18;;62366:53:0::1;24473:351:1::0;62366:53:0::1;62447:13;;62434:9;:26;;62426:75;;;::::0;-1:-1:-1;;;62426:75:0;;19614:2:1;62426:75:0::1;::::0;::::1;19596:21:1::0;19653:2;19633:18;;;19626:30;19692:34;19672:18;;;19665:62;-1:-1:-1;;;19743:18:1;;;19736:34;19787:19;;62426:75:0::1;19412:400:1::0;62426:75:0::1;62550:9;::::0;62538:21:::1;::::0;61023:5:::1;62538:21;:::i;:::-;62516:18;62525:9:::0;62516:6;:18:::1;:::i;:::-;:43;;62508:78;;;::::0;-1:-1:-1;;;62508:78:0;;19263:2:1;62508:78:0::1;::::0;::::1;19245:21:1::0;19302:2;19282:18;;;19275:30;-1:-1:-1;;;19321:18:1;;;19314:52;19383:18;;62508:78:0::1;19061:346:1::0;62508:78:0::1;7260:6:::0;;-1:-1:-1;;;;;7260:6:0;62599:10:::1;:21;62595:414;;62636:15;::::0;::::1;::::0;::::1;;;62633:296;;;62690:10;63361:4:::0;63383:27;;;:20;:27;;;;;;;;62676:33:::1;;62705:4;62676:33;62668:69;;;::::0;-1:-1:-1;;;62668:69:0;;24323:2:1;62668:69:0::1;::::0;::::1;24305:21:1::0;24362:2;24342:18;;;24335:30;24401:25;24381:18;;;24374:53;24444:18;;62668:69:0::1;24121:347:1::0;62668:69:0::1;62800:10;62752:24;62779:32:::0;;;:20:::1;:32;::::0;;;;;62866:18:::1;::::0;62834:28:::1;62853:9:::0;62779:32;62834:28:::1;:::i;:::-;:50;;62826:91;;;::::0;-1:-1:-1;;;62826:91:0;;14121:2:1;62826:91:0::1;::::0;::::1;14103:21:1::0;14160:2;14140:18;;;14133:30;14199;14179:18;;;14172:58;14247:18;;62826:91:0::1;13919:352:1::0;62826:91:0::1;62653:276;62633:296;62969:9;62960:6;;:18;;;;:::i;:::-;62947:9;:31;;62939:62;;;::::0;-1:-1:-1;;;62939:62:0;;22376:2:1;62939:62:0::1;::::0;::::1;22358:21:1::0;22415:2;22395:18;;;22388:30;-1:-1:-1;;;22434:18:1;;;22427:48;22492:18;;62939:62:0::1;22174:342:1::0;62939:62:0::1;63034:1;63017:171;63042:9;63037:1;:14;63017:171;;63123:10;63102:32;::::0;;;:20:::1;:32;::::0;;;;;:36:::1;::::0;63137:1:::1;63102:36;:::i;:::-;63088:10;63067:32;::::0;;;:20:::1;:32;::::0;;;;:71;;;;63147:33:::1;::::0;63169:10:::1;63178:1:::0;63169:6;:10:::1;:::i;:::-;63147:9;:33::i;:::-;63053:3:::0;::::1;::::0;::::1;:::i;:::-;;;;63017:171;;43175:155:::0;43270:52;5938:10;43303:8;43313;43270:18;:52::i;64198:67::-;7260:6;;-1:-1:-1;;;;;7260:6:0;5938:10;7407:23;7399:68;;;;-1:-1:-1;;;7399:68:0;;;;;;;:::i;:::-;64242:8:::1;:15:::0;;-1:-1:-1;;64242:15:0::1;::::0;::::1;::::0;;64198:67::o;65512:444::-;7260:6;;-1:-1:-1;;;;;7260:6:0;5938:10;7407:23;7399:68;;;;-1:-1:-1;;;7399:68:0;;;;;;;:::i;:::-;65601:14:::1;65618:13;55284:10:::0;:17;;55196:113;65618:13:::1;65601:30;;65661:9;;65650:7;:20;;65642:68;;;::::0;-1:-1:-1;;;65642:68:0;;21972:2:1;65642:68:0::1;::::0;::::1;21954:21:1::0;22011:2;21991:18;;;21984:30;22050:34;22030:18;;;22023:62;-1:-1:-1;;;22101:18:1;;;22094:33;22144:19;;65642:68:0::1;21770:399:1::0;65642:68:0::1;65740:1;65723:182;65748:7;65743:1;:12;65723:182;;-1:-1:-1::0;;;;;65811:31:0;::::1;;::::0;;;:20:::1;:31;::::0;;;;;:35:::1;::::0;65845:1:::1;65811:35;:::i;:::-;-1:-1:-1::0;;;;;65777:31:0;::::1;;::::0;;;:20:::1;:31;::::0;;;;:69;65861:32:::1;65798:9:::0;65882:10:::1;65891:1:::0;65882:6;:10:::1;:::i;65861:32::-;65757:3:::0;::::1;::::0;::::1;:::i;:::-;;;;65723:182;;;;65941:7;65929:9;;:19;;;;:::i;:::-;65917:9;:31:::0;-1:-1:-1;;;65512:444:0:o;44298:328::-;44473:41;5938:10;44506:7;44473:18;:41::i;:::-;44465:103;;;;-1:-1:-1;;;44465:103:0;;;;;;;:::i;:::-;44579:39;44593:4;44599:2;44603:7;44612:5;44579:13;:39::i;:::-;44298:328;;;;:::o;61256:37::-;;;;;;;:::i;61188:33::-;;;;;;;:::i;66338:486::-;46201:4;46225:16;;;:7;:16;;;;;;66436:13;;-1:-1:-1;;;;;46225:16:0;66461:97;;;;-1:-1:-1;;;66461:97:0;;21154:2:1;66461:97:0;;;21136:21:1;21193:2;21173:18;;;21166:30;21232:34;21212:18;;;21205:62;-1:-1:-1;;;21283:18:1;;;21276:45;21338:19;;66461:97:0;20952:411:1;66461:97:0;66574:8;;;;;;;66571:51;;66607:7;66600:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66338:486;;;:::o;66571:51::-;66630:28;66661:10;:8;:10::i;:::-;66630:41;;66716:1;66691:14;66685:28;:32;:133;;;;;;;;;;;;;;;;;66753:14;66769:18;:7;:16;:18::i;:::-;66789:13;66736:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66685:133;66678:140;66338:486;-1:-1:-1;;;66338:486:0:o;65968:108::-;7260:6;;-1:-1:-1;;;;;7260:6:0;5938:10;7407:23;7399:68;;;;-1:-1:-1;;;7399:68:0;;;;;;;:::i;:::-;66041:18:::1;:27:::0;65968:108::o;66202:124::-;7260:6;;-1:-1:-1;;;;;7260:6:0;5938:10;7407:23;7399:68;;;;-1:-1:-1;;;7399:68:0;;;;;;;:::i;:::-;66285:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;8096:201::-:0;7260:6;;-1:-1:-1;;;;;7260:6:0;5938:10;7407:23;7399:68;;;;-1:-1:-1;;;7399:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8185:22:0;::::1;8177:73;;;::::0;-1:-1:-1;;;8177:73:0;;12951:2:1;8177:73:0::1;::::0;::::1;12933:21:1::0;12990:2;12970:18;;;12963:30;13029:34;13009:18;;;13002:62;-1:-1:-1;;;13080:18:1;;;13073:36;13126:19;;8177:73:0::1;12749:402:1::0;8177:73:0::1;8261:28;8280:8;8261:18;:28::i;:::-;8096:201:::0;:::o;40378:305::-;40480:4;-1:-1:-1;;;;;;40517:40:0;;-1:-1:-1;;;40517:40:0;;:105;;-1:-1:-1;;;;;;;40574:48:0;;-1:-1:-1;;;40574:48:0;40517:105;:158;;;-1:-1:-1;;;;;;;;;;31979:40:0;;;40639:36;31870:157;50282:174;50357:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;50357:29:0;-1:-1:-1;;;;;50357:29:0;;;;;;;;:24;;50411:23;50357:24;50411:14;:23::i;:::-;-1:-1:-1;;;;;50402:46:0;;;;;;;;;;;50282:174;;:::o;27978:248::-;28188:12;;-1:-1:-1;;;;;28168:16:0;;28124:7;28168:16;;;:7;:16;;;;;;28124:7;;28203:15;;28152:32;;:13;:32;:::i;:::-;28151:49;;;;:::i;:::-;:67;;;;:::i;:::-;28144:74;27978:248;-1:-1:-1;;;;27978:248:0:o;11187:317::-;11302:6;11277:21;:31;;11269:73;;;;-1:-1:-1;;;11269:73:0;;16071:2:1;11269:73:0;;;16053:21:1;16110:2;16090:18;;;16083:30;16149:31;16129:18;;;16122:59;16198:18;;11269:73:0;15869:353:1;11269:73:0;11356:12;11374:9;-1:-1:-1;;;;;11374:14:0;11396:6;11374:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11355:52;;;11426:7;11418:78;;;;-1:-1:-1;;;11418:78:0;;15644:2:1;11418:78:0;;;15626:21:1;15683:2;15663:18;;;15656:30;15722:34;15702:18;;;15695:62;15793:28;15773:18;;;15766:56;15839:19;;11418:78:0;15442:422:1;46430:348:0;46523:4;46225:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46225:16:0;46540:73;;;;-1:-1:-1;;;46540:73:0;;16836:2:1;46540:73:0;;;16818:21:1;16875:2;16855:18;;;16848:30;16914:34;16894:18;;;16887:62;-1:-1:-1;;;16965:18:1;;;16958:42;17017:19;;46540:73:0;16634:408:1;46540:73:0;46624:13;46640:23;46655:7;46640:14;:23::i;:::-;46624:39;;46693:5;-1:-1:-1;;;;;46682:16:0;:7;-1:-1:-1;;;;;46682:16:0;;:51;;;;46726:7;-1:-1:-1;;;;;46702:31:0;:20;46714:7;46702:11;:20::i;:::-;-1:-1:-1;;;;;46702:31:0;;46682:51;:87;;;-1:-1:-1;;;;;;43522:25:0;;;43498:4;43522:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46674:96;46430:348;-1:-1:-1;;;;46430:348:0:o;49539:625::-;49698:4;-1:-1:-1;;;;;49671:31:0;:23;49686:7;49671:14;:23::i;:::-;-1:-1:-1;;;;;49671:31:0;;49663:81;;;;-1:-1:-1;;;49663:81:0;;13358:2:1;49663:81:0;;;13340:21:1;13397:2;13377:18;;;13370:30;13436:34;13416:18;;;13409:62;-1:-1:-1;;;13487:18:1;;;13480:35;13532:19;;49663:81:0;13156:401:1;49663:81:0;-1:-1:-1;;;;;49763:16:0;;49755:65;;;;-1:-1:-1;;;49755:65:0;;14885:2:1;49755:65:0;;;14867:21:1;14924:2;14904:18;;;14897:30;14963:34;14943:18;;;14936:62;-1:-1:-1;;;15014:18:1;;;15007:34;15058:19;;49755:65:0;14683:400:1;49755:65:0;49833:39;49854:4;49860:2;49864:7;49833:20;:39::i;:::-;49937:29;49954:1;49958:7;49937:8;:29::i;:::-;-1:-1:-1;;;;;49979:15:0;;;;;;:9;:15;;;;;:20;;49998:1;;49979:15;:20;;49998:1;;49979:20;:::i;:::-;;;;-1:-1:-1;;;;;;;50010:13:0;;;;;;:9;:13;;;;;:18;;50027:1;;50010:13;:18;;50027:1;;50010:18;:::i;:::-;;;;-1:-1:-1;;50039:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;50039:21:0;-1:-1:-1;;;;;50039:21:0;;;;;;;;;50078:27;;50039:16;;50078:27;;;;;;;42475:341;42405:411;;:::o;17946:211::-;18090:58;;;-1:-1:-1;;;;;9653:32:1;;18090:58:0;;;9635:51:1;9702:18;;;;9695:34;;;18090:58:0;;;;;;;;;;9608:18:1;;;;18090:58:0;;;;;;;;-1:-1:-1;;;;;18090:58:0;-1:-1:-1;;;18090:58:0;;;18063:86;;18083:5;;18063:19;:86::i;8457:191::-;8550:6;;;-1:-1:-1;;;;;8567:17:0;;;-1:-1:-1;;;;;;8567:17:0;;;;;;;8600:40;;8550:6;;;8567:17;8550:6;;8600:40;;8531:16;;8600:40;8520:128;8457:191;:::o;47120:110::-;47196:26;47206:2;47210:7;47196:26;;;;;;;;;;;;:9;:26::i;50598:315::-;50753:8;-1:-1:-1;;;;;50744:17:0;:5;-1:-1:-1;;;;;50744:17:0;;;50736:55;;;;-1:-1:-1;;;50736:55:0;;15290:2:1;50736:55:0;;;15272:21:1;15329:2;15309:18;;;15302:30;15368:27;15348:18;;;15341:55;15413:18;;50736:55:0;15088:349:1;50736:55:0;-1:-1:-1;;;;;50802:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;50802:46:0;;;;;;;;;;50864:41;;11289::1;;;50864::0;;11262:18:1;50864:41:0;;;;;;;50598:315;;;:::o;45508:::-;45665:28;45675:4;45681:2;45685:7;45665:9;:28::i;:::-;45712:48;45735:4;45741:2;45745:7;45754:5;45712:22;:48::i;:::-;45704:111;;;;-1:-1:-1;;;45704:111:0;;;;;;;:::i;64480:107::-;64539:13;64572:7;64565:14;;;;;:::i;3367:723::-;3423:13;3644:10;3640:53;;-1:-1:-1;;3671:10:0;;;;;;;;;;;;-1:-1:-1;;;3671:10:0;;;;;3367:723::o;3640:53::-;3718:5;3703:12;3759:78;3766:9;;3759:78;;3792:8;;;;:::i;:::-;;-1:-1:-1;3815:10:0;;-1:-1:-1;3823:2:0;3815:10;;:::i;:::-;;;3759:78;;;3847:19;3879:6;3869:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3869:17:0;;3847:39;;3897:154;3904:10;;3897:154;;3931:11;3941:1;3931:11;;:::i;:::-;;-1:-1:-1;4000:10:0;4008:2;4000:5;:10;:::i;:::-;3987:24;;:2;:24;:::i;:::-;3974:39;;3957:6;3964;3957:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3957:56:0;;;;;;;;-1:-1:-1;4028:11:0;4037:2;4028:11;;:::i;:::-;;;3897:154;;56232:589;-1:-1:-1;;;;;56438:18:0;;56434:187;;56473:40;56505:7;57648:10;:17;;57621:24;;;;:15;:24;;;;;:44;;;57676:24;;;;;;;;;;;;57544:164;56473:40;56434:187;;;56543:2;-1:-1:-1;;;;;56535:10:0;:4;-1:-1:-1;;;;;56535:10:0;;56531:90;;56562:47;56595:4;56601:7;56562:32;:47::i;:::-;-1:-1:-1;;;;;56635:16:0;;56631:183;;56668:45;56705:7;56668:36;:45::i;56631:183::-;56741:4;-1:-1:-1;;;;;56735:10:0;:2;-1:-1:-1;;;;;56735:10:0;;56731:83;;56762:40;56790:2;56794:7;56762:27;:40::i;20519:716::-;20943:23;20969:69;20997:4;20969:69;;;;;;;;;;;;;;;;;20977:5;-1:-1:-1;;;;;20969:27:0;;;:69;;;;;:::i;:::-;21053:17;;20943:95;;-1:-1:-1;21053:21:0;21049:179;;21150:10;21139:30;;;;;;;;;;;;:::i;:::-;21131:85;;;;-1:-1:-1;;;21131:85:0;;23912:2:1;21131:85:0;;;23894:21:1;23951:2;23931:18;;;23924:30;23990:34;23970:18;;;23963:62;-1:-1:-1;;;24041:18:1;;;24034:40;24091:19;;21131:85:0;23710:406:1;47457:321:0;47587:18;47593:2;47597:7;47587:5;:18::i;:::-;47638:54;47669:1;47673:2;47677:7;47686:5;47638:22;:54::i;:::-;47616:154;;;;-1:-1:-1;;;47616:154:0;;;;;;;:::i;51478:799::-;51633:4;-1:-1:-1;;;;;51654:13:0;;10221:19;:23;51650:620;;51690:72;;-1:-1:-1;;;51690:72:0;;-1:-1:-1;;;;;51690:36:0;;;;;:72;;5938:10;;51741:4;;51747:7;;51756:5;;51690:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51690:72:0;;;;;;;;-1:-1:-1;;51690:72:0;;;;;;;;;;;;:::i;:::-;;;51686:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51932:13:0;;51928:272;;51975:60;;-1:-1:-1;;;51975:60:0;;;;;;;:::i;51928:272::-;52150:6;52144:13;52135:6;52131:2;52127:15;52120:38;51686:529;-1:-1:-1;;;;;;51813:51:0;-1:-1:-1;;;51813:51:0;;-1:-1:-1;51806:58:0;;51650:620;-1:-1:-1;52254:4:0;51478:799;;;;;;:::o;58335:988::-;58601:22;58651:1;58626:22;58643:4;58626:16;:22::i;:::-;:26;;;;:::i;:::-;58663:18;58684:26;;;:17;:26;;;;;;58601:51;;-1:-1:-1;58817:28:0;;;58813:328;;-1:-1:-1;;;;;58884:18:0;;58862:19;58884:18;;;:12;:18;;;;;;;;:34;;;;;;;;;58935:30;;;;;;:44;;;59052:30;;:17;:30;;;;;:43;;;58813:328;-1:-1:-1;59237:26:0;;;;:17;:26;;;;;;;;59230:33;;;-1:-1:-1;;;;;59281:18:0;;;;;:12;:18;;;;;:34;;;;;;;59274:41;58335:988::o;59618:1079::-;59896:10;:17;59871:22;;59896:21;;59916:1;;59896:21;:::i;:::-;59928:18;59949:24;;;:15;:24;;;;;;60322:10;:26;;59871:46;;-1:-1:-1;59949:24:0;;59871:46;;60322:26;;;;;;:::i;:::-;;;;;;;;;60300:48;;60386:11;60361:10;60372;60361:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;60466:28;;;:15;:28;;;;;;;:41;;;60638:24;;;;;60631:31;60673:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;59689:1008;;;59618:1079;:::o;57122:221::-;57207:14;57224:20;57241:2;57224:16;:20::i;:::-;-1:-1:-1;;;;;57255:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;57300:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;57122:221:0:o;12671:229::-;12808:12;12840:52;12862:6;12870:4;12876:1;12879:12;12840:21;:52::i;48114:439::-;-1:-1:-1;;;;;48194:16:0;;48186:61;;;;-1:-1:-1;;;48186:61:0;;20019:2:1;48186:61:0;;;20001:21:1;;;20038:18;;;20031:30;20097:34;20077:18;;;20070:62;20149:18;;48186:61:0;19817:356:1;48186:61:0;46201:4;46225:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46225:16:0;:30;48258:58;;;;-1:-1:-1;;;48258:58:0;;13764:2:1;48258:58:0;;;13746:21:1;13803:2;13783:18;;;13776:30;13842;13822:18;;;13815:58;13890:18;;48258:58:0;13562:352:1;48258:58:0;48329:45;48358:1;48362:2;48366:7;48329:20;:45::i;:::-;-1:-1:-1;;;;;48387:13:0;;;;;;:9;:13;;;;;:18;;48404:1;;48387:13;:18;;48404:1;;48387:18;:::i;:::-;;;;-1:-1:-1;;48416:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48416:21:0;-1:-1:-1;;;;;48416:21:0;;;;;;;;48455:33;;48416:16;;;48455:33;;48416:16;;48455:33;65060:32:::1;64974:126:::0;:::o;13791:510::-;13961:12;14019:5;13994:21;:30;;13986:81;;;;-1:-1:-1;;;13986:81:0;;16429:2:1;13986:81:0;;;16411:21:1;16468:2;16448:18;;;16441:30;16507:34;16487:18;;;16480:62;-1:-1:-1;;;16558:18:1;;;16551:36;16604:19;;13986:81:0;16227:402:1;13986:81:0;-1:-1:-1;;;;;10221:19:0;;;14078:60;;;;-1:-1:-1;;;14078:60:0;;23141:2:1;14078:60:0;;;23123:21:1;23180:2;23160:18;;;23153:30;23219:31;23199:18;;;23192:59;23268:18;;14078:60:0;22939:353:1;14078:60:0;14152:12;14166:23;14193:6;-1:-1:-1;;;;;14193:11:0;14212:5;14219:4;14193:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14151:73;;;;14242:51;14259:7;14268:10;14280:12;14242:16;:51::i;:::-;14235:58;13791:510;-1:-1:-1;;;;;;;13791:510:0:o;16477:712::-;16627:12;16656:7;16652:530;;;-1:-1:-1;16687:10:0;16680:17;;16652:530;16801:17;;:21;16797:374;;16999:10;16993:17;17060:15;17047:10;17043:2;17039:19;17032:44;16797:374;17142:12;17135:20;;-1:-1:-1;;;17135:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;1162:388::-;1230:6;1238;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1346:9;1333:23;1365:31;1390:5;1365:31;:::i;:::-;1415:5;-1:-1:-1;1472:2:1;1457:18;;1444:32;1485:33;1444:32;1485:33;:::i;:::-;1537:7;1527:17;;;1162:388;;;;;:::o;1555:456::-;1632:6;1640;1648;1701:2;1689:9;1680:7;1676:23;1672:32;1669:52;;;1717:1;1714;1707:12;1669:52;1756:9;1743:23;1775:31;1800:5;1775:31;:::i;:::-;1825:5;-1:-1:-1;1882:2:1;1867:18;;1854:32;1895:33;1854:32;1895:33;:::i;:::-;1555:456;;1947:7;;-1:-1:-1;;;2001:2:1;1986:18;;;;1973:32;;1555:456::o;2016:794::-;2111:6;2119;2127;2135;2188:3;2176:9;2167:7;2163:23;2159:33;2156:53;;;2205:1;2202;2195:12;2156:53;2244:9;2231:23;2263:31;2288:5;2263:31;:::i;:::-;2313:5;-1:-1:-1;2370:2:1;2355:18;;2342:32;2383:33;2342:32;2383:33;:::i;:::-;2435:7;-1:-1:-1;2489:2:1;2474:18;;2461:32;;-1:-1:-1;2544:2:1;2529:18;;2516:32;2571:18;2560:30;;2557:50;;;2603:1;2600;2593:12;2557:50;2626:22;;2679:4;2671:13;;2667:27;-1:-1:-1;2657:55:1;;2708:1;2705;2698:12;2657:55;2731:73;2796:7;2791:2;2778:16;2773:2;2769;2765:11;2731:73;:::i;:::-;2721:83;;;2016:794;;;;;;;:::o;2815:382::-;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;-1:-1:-1;3122:2:1;3107:18;;3094:32;3135:30;3094:32;3135:30;:::i;3202:315::-;3270:6;3278;3331:2;3319:9;3310:7;3306:23;3302:32;3299:52;;;3347:1;3344;3337:12;3299:52;3386:9;3373:23;3405:31;3430:5;3405:31;:::i;:::-;3455:5;3507:2;3492:18;;;;3479:32;;-1:-1:-1;;;3202:315:1:o;3522:615::-;3608:6;3616;3669:2;3657:9;3648:7;3644:23;3640:32;3637:52;;;3685:1;3682;3675:12;3637:52;3725:9;3712:23;3754:18;3795:2;3787:6;3784:14;3781:34;;;3811:1;3808;3801:12;3781:34;3849:6;3838:9;3834:22;3824:32;;3894:7;3887:4;3883:2;3879:13;3875:27;3865:55;;3916:1;3913;3906:12;3865:55;3956:2;3943:16;3982:2;3974:6;3971:14;3968:34;;;3998:1;3995;3988:12;3968:34;4051:7;4046:2;4036:6;4033:1;4029:14;4025:2;4021:23;4017:32;4014:45;4011:65;;;4072:1;4069;4062:12;4011:65;4103:2;4095:11;;;;;4125:6;;-1:-1:-1;3522:615:1;;-1:-1:-1;;;;3522:615:1:o;4142:241::-;4198:6;4251:2;4239:9;4230:7;4226:23;4222:32;4219:52;;;4267:1;4264;4257:12;4219:52;4306:9;4293:23;4325:28;4347:5;4325:28;:::i;4388:245::-;4455:6;4508:2;4496:9;4487:7;4483:23;4479:32;4476:52;;;4524:1;4521;4514:12;4476:52;4556:9;4550:16;4575:28;4597:5;4575:28;:::i;4638:245::-;4696:6;4749:2;4737:9;4728:7;4724:23;4720:32;4717:52;;;4765:1;4762;4755:12;4717:52;4804:9;4791:23;4823:30;4847:5;4823:30;:::i;4888:249::-;4957:6;5010:2;4998:9;4989:7;4985:23;4981:32;4978:52;;;5026:1;5023;5016:12;4978:52;5058:9;5052:16;5077:30;5101:5;5077:30;:::i;5813:450::-;5882:6;5935:2;5923:9;5914:7;5910:23;5906:32;5903:52;;;5951:1;5948;5941:12;5903:52;5991:9;5978:23;6024:18;6016:6;6013:30;6010:50;;;6056:1;6053;6046:12;6010:50;6079:22;;6132:4;6124:13;;6120:27;-1:-1:-1;6110:55:1;;6161:1;6158;6151:12;6110:55;6184:73;6249:7;6244:2;6231:16;6226:2;6222;6218:11;6184:73;:::i;6268:180::-;6327:6;6380:2;6368:9;6359:7;6355:23;6351:32;6348:52;;;6396:1;6393;6386:12;6348:52;-1:-1:-1;6419:23:1;;6268:180;-1:-1:-1;6268:180:1:o;6453:184::-;6523:6;6576:2;6564:9;6555:7;6551:23;6547:32;6544:52;;;6592:1;6589;6582:12;6544:52;-1:-1:-1;6615:16:1;;6453:184;-1:-1:-1;6453:184:1:o;6642:315::-;6710:6;6718;6771:2;6759:9;6750:7;6746:23;6742:32;6739:52;;;6787:1;6784;6777:12;6739:52;6823:9;6810:23;6800:33;;6883:2;6872:9;6868:18;6855:32;6896:31;6921:5;6896:31;:::i;6962:257::-;7003:3;7041:5;7035:12;7068:6;7063:3;7056:19;7084:63;7140:6;7133:4;7128:3;7124:14;7117:4;7110:5;7106:16;7084:63;:::i;:::-;7201:2;7180:15;-1:-1:-1;;7176:29:1;7167:39;;;;7208:4;7163:50;;6962:257;-1:-1:-1;;6962:257:1:o;7224:274::-;7353:3;7391:6;7385:13;7407:53;7453:6;7448:3;7441:4;7433:6;7429:17;7407:53;:::i;:::-;7476:16;;;;;7224:274;-1:-1:-1;;7224:274:1:o;7503:1527::-;7727:3;7765:6;7759:13;7791:4;7804:51;7848:6;7843:3;7838:2;7830:6;7826:15;7804:51;:::i;:::-;7918:13;;7877:16;;;;7940:55;7918:13;7877:16;7962:15;;;7940:55;:::i;:::-;8084:13;;8017:20;;;8057:1;;8144;8166:18;;;;8219;;;;8246:93;;8324:4;8314:8;8310:19;8298:31;;8246:93;8387:2;8377:8;8374:16;8354:18;8351:40;8348:167;;;-1:-1:-1;;;8414:33:1;;8470:4;8467:1;8460:15;8500:4;8421:3;8488:17;8348:167;8531:18;8558:110;;;;8682:1;8677:328;;;;8524:481;;8558:110;-1:-1:-1;;8593:24:1;;8579:39;;8638:20;;;;-1:-1:-1;8558:110:1;;8677:328;25084:1;25077:14;;;25121:4;25108:18;;8772:1;8786:169;8800:8;8797:1;8794:15;8786:169;;;8882:14;;8867:13;;;8860:37;8925:16;;;;8817:10;;8786:169;;;8790:3;;8986:8;8979:5;8975:20;8968:27;;8524:481;-1:-1:-1;9021:3:1;;7503:1527;-1:-1:-1;;;;;;;;;;;7503:1527:1:o;9740:488::-;-1:-1:-1;;;;;10009:15:1;;;9991:34;;10061:15;;10056:2;10041:18;;10034:43;10108:2;10093:18;;10086:34;;;10156:3;10151:2;10136:18;;10129:31;;;9934:4;;10177:45;;10202:19;;10194:6;10177:45;:::i;:::-;10169:53;9740:488;-1:-1:-1;;;;;;9740:488:1:o;10512:632::-;10683:2;10735:21;;;10805:13;;10708:18;;;10827:22;;;10654:4;;10683:2;10906:15;;;;10880:2;10865:18;;;10654:4;10949:169;10963:6;10960:1;10957:13;10949:169;;;11024:13;;11012:26;;11093:15;;;;11058:12;;;;10985:1;10978:9;10949:169;;;-1:-1:-1;11135:3:1;;10512:632;-1:-1:-1;;;;;;10512:632:1:o;11341:219::-;11490:2;11479:9;11472:21;11453:4;11510:44;11550:2;11539:9;11535:18;11527:6;11510:44;:::i;11977:414::-;12179:2;12161:21;;;12218:2;12198:18;;;12191:30;12257:34;12252:2;12237:18;;12230:62;-1:-1:-1;;;12323:2:1;12308:18;;12301:48;12381:3;12366:19;;11977:414::o;14276:402::-;14478:2;14460:21;;;14517:2;14497:18;;;14490:30;14556:34;14551:2;14536:18;;14529:62;-1:-1:-1;;;14622:2:1;14607:18;;14600:36;14668:3;14653:19;;14276:402::o;17047:407::-;17249:2;17231:21;;;17288:2;17268:18;;;17261:30;17327:34;17322:2;17307:18;;17300:62;-1:-1:-1;;;17393:2:1;17378:18;;17371:41;17444:3;17429:19;;17047:407::o;20591:356::-;20793:2;20775:21;;;20812:18;;;20805:30;20871:34;20866:2;20851:18;;20844:62;20938:2;20923:18;;20591:356::o;22521:413::-;22723:2;22705:21;;;22762:2;22742:18;;;22735:30;22801:34;22796:2;22781:18;;22774:62;-1:-1:-1;;;22867:2:1;22852:18;;22845:47;22924:3;22909:19;;22521:413::o;25137:128::-;25177:3;25208:1;25204:6;25201:1;25198:13;25195:39;;;25214:18;;:::i;:::-;-1:-1:-1;25250:9:1;;25137:128::o;25270:120::-;25310:1;25336;25326:35;;25341:18;;:::i;:::-;-1:-1:-1;25375:9:1;;25270:120::o;25395:168::-;25435:7;25501:1;25497;25493:6;25489:14;25486:1;25483:21;25478:1;25471:9;25464:17;25460:45;25457:71;;;25508:18;;:::i;:::-;-1:-1:-1;25548:9:1;;25395:168::o;25568:125::-;25608:4;25636:1;25633;25630:8;25627:34;;;25641:18;;:::i;:::-;-1:-1:-1;25678:9:1;;25568:125::o;25698:258::-;25770:1;25780:113;25794:6;25791:1;25788:13;25780:113;;;25870:11;;;25864:18;25851:11;;;25844:39;25816:2;25809:10;25780:113;;;25911:6;25908:1;25905:13;25902:48;;;-1:-1:-1;;25946:1:1;25928:16;;25921:27;25698:258::o;25961:380::-;26040:1;26036:12;;;;26083;;;26104:61;;26158:4;26150:6;26146:17;26136:27;;26104:61;26211:2;26203:6;26200:14;26180:18;26177:38;26174:161;;;26257:10;26252:3;26248:20;26245:1;26238:31;26292:4;26289:1;26282:15;26320:4;26317:1;26310:15;26174:161;;25961:380;;;:::o;26346:135::-;26385:3;-1:-1:-1;;26406:17:1;;26403:43;;;26426:18;;:::i;:::-;-1:-1:-1;26473:1:1;26462:13;;26346:135::o;26486:112::-;26518:1;26544;26534:35;;26549:18;;:::i;:::-;-1:-1:-1;26583:9:1;;26486:112::o;26603:127::-;26664:10;26659:3;26655:20;26652:1;26645:31;26695:4;26692:1;26685:15;26719:4;26716:1;26709:15;26735:127;26796:10;26791:3;26787:20;26784:1;26777:31;26827:4;26824:1;26817:15;26851:4;26848:1;26841:15;26867:127;26928:10;26923:3;26919:20;26916:1;26909:31;26959:4;26956:1;26949:15;26983:4;26980:1;26973:15;26999:127;27060:10;27055:3;27051:20;27048:1;27041:31;27091:4;27088:1;27081:15;27115:4;27112:1;27105:15;27131:127;27192:10;27187:3;27183:20;27180:1;27173:31;27223:4;27220:1;27213:15;27247:4;27244:1;27237:15;27263:131;-1:-1:-1;;;;;27338:31:1;;27328:42;;27318:70;;27384:1;27381;27374:12;27399:118;27485:5;27478:13;27471:21;27464:5;27461:32;27451:60;;27507:1;27504;27497:12;27522:131;-1:-1:-1;;;;;;27596:32:1;;27586:43;;27576:71;;27643:1;27640;27633:12

Swarm Source

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